From 451224b9699f70a6f3d372c9467dd203140acc99 Mon Sep 17 00:00:00 2001 From: AayushSaini101 Date: Sun, 12 Jul 2026 09:12:58 +0530 Subject: [PATCH] fix: expose server summary() on ServerInterface for v3 documents --- packages/parser/src/models/server.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/parser/src/models/server.ts b/packages/parser/src/models/server.ts index 52e2ece50..62ade0137 100644 --- a/packages/parser/src/models/server.ts +++ b/packages/parser/src/models/server.ts @@ -1,12 +1,12 @@ import type { BaseModel } from './base'; import type { ChannelsInterface } from './channels'; import type { MessagesInterface } from './messages'; -import type { BindingsMixinInterface, DescriptionMixinInterface, ExtensionsMixinInterface, TagsMixinInterface } from './mixins'; +import type { BindingsMixinInterface, DescriptionMixinInterface, ExtensionsMixinInterface, SummaryMixinInterface, TagsMixinInterface } from './mixins'; import type { OperationsInterface } from './operations'; import type { ServerVariablesInterface } from './server-variables'; import type { SecurityRequirementsInterface } from './security-requirements'; -export interface ServerInterface extends BaseModel, DescriptionMixinInterface, BindingsMixinInterface, ExtensionsMixinInterface, TagsMixinInterface { +export interface ServerInterface extends BaseModel, DescriptionMixinInterface, BindingsMixinInterface, ExtensionsMixinInterface, TagsMixinInterface, Partial { id(): string url(): string; host(): string;