From 4ad3e1fb2fa2a0af765af3112a125d5c111abae3 Mon Sep 17 00:00:00 2001 From: Adler Faulkner Date: Wed, 18 Oct 2023 12:04:32 -0700 Subject: [PATCH] fix: openapi types in openapi-operation-executor --- package-lock.json | 38 +++++++++++++++++++++++++++++--------- package.json | 4 ++-- tsconfig.json | 1 + 3 files changed, 32 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6926b22..26a83f6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,15 +1,15 @@ { "name": "@comake/standard-sdk-js", - "version": "2.2.2", + "version": "2.2.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@comake/standard-sdk-js", - "version": "2.2.2", + "version": "2.2.3", "license": "MIT", "dependencies": { - "@comake/openapi-operation-executor": "^0.10.0", + "@comake/openapi-operation-executor": "^0.11.2", "@comake/skl-js-engine": "^0.11.1", "@commitlint/cli": "^17.4.1", "@commitlint/config-conventional": "^17.4.0", @@ -700,9 +700,9 @@ "dev": true }, "node_modules/@comake/openapi-operation-executor": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/@comake/openapi-operation-executor/-/openapi-operation-executor-0.10.0.tgz", - "integrity": "sha512-UNOamGLgYvclw5H+PoVp/O81rLAI7W1actVqSCdhtDhEhin1YHMBqd5941pp9YE6UrRLXXHdoND5BOiozarWFg==", + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/@comake/openapi-operation-executor/-/openapi-operation-executor-0.11.2.tgz", + "integrity": "sha512-MaGoondCDpEuL9XL5Q13lLN9ShE2ukY+wrOvQxCo2aodp/8ocCfFvbk87tHhQyHTxSiPRUvKZl8t0jJ/u3XoRA==", "dependencies": { "@apidevtools/json-schema-ref-parser": "^9.0.9", "axios": "^0.27.2" @@ -746,6 +746,15 @@ "axios": "^0.27.2" } }, + "node_modules/@comake/skl-js-engine/node_modules/@comake/openapi-operation-executor": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@comake/openapi-operation-executor/-/openapi-operation-executor-0.10.0.tgz", + "integrity": "sha512-UNOamGLgYvclw5H+PoVp/O81rLAI7W1actVqSCdhtDhEhin1YHMBqd5941pp9YE6UrRLXXHdoND5BOiozarWFg==", + "dependencies": { + "@apidevtools/json-schema-ref-parser": "^9.0.9", + "axios": "^0.27.2" + } + }, "node_modules/@commitlint/cli": { "version": "17.4.1", "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.4.1.tgz", @@ -9332,9 +9341,9 @@ "dev": true }, "@comake/openapi-operation-executor": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/@comake/openapi-operation-executor/-/openapi-operation-executor-0.10.0.tgz", - "integrity": "sha512-UNOamGLgYvclw5H+PoVp/O81rLAI7W1actVqSCdhtDhEhin1YHMBqd5941pp9YE6UrRLXXHdoND5BOiozarWFg==", + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/@comake/openapi-operation-executor/-/openapi-operation-executor-0.11.2.tgz", + "integrity": "sha512-MaGoondCDpEuL9XL5Q13lLN9ShE2ukY+wrOvQxCo2aodp/8ocCfFvbk87tHhQyHTxSiPRUvKZl8t0jJ/u3XoRA==", "requires": { "@apidevtools/json-schema-ref-parser": "^9.0.9", "axios": "^0.27.2" @@ -9373,6 +9382,17 @@ "rdf-validate-shacl": "^0.4.4", "sparql-http-client": "^2.4.1", "sparqljs": "^3.6.2" + }, + "dependencies": { + "@comake/openapi-operation-executor": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@comake/openapi-operation-executor/-/openapi-operation-executor-0.10.0.tgz", + "integrity": "sha512-UNOamGLgYvclw5H+PoVp/O81rLAI7W1actVqSCdhtDhEhin1YHMBqd5941pp9YE6UrRLXXHdoND5BOiozarWFg==", + "requires": { + "@apidevtools/json-schema-ref-parser": "^9.0.9", + "axios": "^0.27.2" + } + } } }, "@commitlint/cli": { diff --git a/package.json b/package.json index e91ef19..f3ab84b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@comake/standard-sdk-js", - "version": "2.2.2", + "version": "2.2.3", "description": "An open source SDK to integrate and interact with any API", "main": "./dist/index.js", "types": "./dist/index.d.ts", @@ -56,7 +56,7 @@ "dist" ], "dependencies": { - "@comake/openapi-operation-executor": "^0.10.0", + "@comake/openapi-operation-executor": "^0.11.2", "@comake/skl-js-engine": "^0.11.1", "@commitlint/cli": "^17.4.1", "@commitlint/config-conventional": "^17.4.0", diff --git a/tsconfig.json b/tsconfig.json index 318486b..64f9027 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,7 @@ "sourceMap": true, "outDir": "dist", "resolveJsonModule": true, + "moduleResolution": "Node16", "module": "node16", "noErrorTruncation": true },