From c10c17c5cc6bd28002d8e549b620f7657ed03668 Mon Sep 17 00:00:00 2001 From: Jeongho Nam Date: Mon, 8 Jul 2024 15:59:59 +0900 Subject: [PATCH] Fix: export omitted ISwaggerSchema --- package.json | 2 +- src/module.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ab1a107..29ab2e0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wrtnio/openai-function-schema", - "version": "0.1.1", + "version": "0.1.2", "description": "OpenAI LLM function schema from OpenAPI (Swagger) document", "main": "lib/index.js", "typings": "lib/index.d.ts", diff --git a/src/module.ts b/src/module.ts index ab67535..a204ae2 100644 --- a/src/module.ts +++ b/src/module.ts @@ -9,6 +9,7 @@ export * from "./structures/ISwaggerMigrate"; export * from "./structures/ISwaggerMigrateRoute"; export * from "./structures/ISwaggerOperation"; export * from "./structures/ISwaggerPath"; +export * from "./structures/ISwaggerSchema"; export * from "./structures/ISwaggerSecurityScheme"; export * from "./structures/ISwaggerServer"; export * from "./structures/ISwaggerTag";