From 107456e96abc69cd193a383094d675dcf0c22882 Mon Sep 17 00:00:00 2001 From: Sergio Moya <1083296+smoya@users.noreply.github.com> Date: Tue, 7 Nov 2023 12:31:08 +0100 Subject: [PATCH] fix: change ParserAPIVersion constant to 3 --- src/models/asyncapi.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/asyncapi.ts b/src/models/asyncapi.ts index ce1e2b8a5..cd08f7d48 100644 --- a/src/models/asyncapi.ts +++ b/src/models/asyncapi.ts @@ -11,8 +11,8 @@ import type { ServersInterface } from './servers'; import type { v2, v3 } from '../spec-types'; -// https://github.com/asyncapi/parser-api/releases/tag/v2.0.0 -export const ParserAPIVersion = 2; +// https://github.com/asyncapi/parser-api/releases/tag/v3.0.0 +export const ParserAPIVersion = 3; export interface AsyncAPIDocumentInterface extends BaseModel, ExtensionsMixinInterface { version(): string;