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;