@povio/openapi-codegen-cli 3.0.0-rc.12 → 3.0.0-rc.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{generate.runner-CmQsbF8c.mjs → generate.runner-FyKVhmec.mjs} +1 -1
- package/dist/{generateCodeFromOpenAPIDoc-oWuHuxoy.mjs → generateCodeFromOpenAPIDoc-BtabB7FW.mjs} +8 -5
- package/dist/generator.mjs +1 -1
- package/dist/index.mjs +2 -1
- package/dist/sh.mjs +3 -3
- package/dist/vite.mjs +2 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { S as Profiler, h as deepMerge, i as writeGenerateFileData, p as DEFAULT_GENERATE_OPTIONS, r as removeStaleGeneratedFiles, t as generateCodeFromOpenAPIDoc } from "./generateCodeFromOpenAPIDoc-
|
|
1
|
+
import { S as Profiler, h as deepMerge, i as writeGenerateFileData, p as DEFAULT_GENERATE_OPTIONS, r as removeStaleGeneratedFiles, t as generateCodeFromOpenAPIDoc } from "./generateCodeFromOpenAPIDoc-BtabB7FW.mjs";
|
|
2
2
|
import path from "path";
|
|
3
3
|
import SwaggerParser from "@apidevtools/swagger-parser";
|
|
4
4
|
|
package/dist/{generateCodeFromOpenAPIDoc-oWuHuxoy.mjs → generateCodeFromOpenAPIDoc-BtabB7FW.mjs}
RENAMED
|
@@ -1988,7 +1988,8 @@ const getEndpointBody$1 = (endpoint) => endpoint.parameters.find((param) => para
|
|
|
1988
1988
|
const hasEndpointConfig = (endpoint, resolver) => {
|
|
1989
1989
|
const endpointConfig = getEndpointConfig(endpoint);
|
|
1990
1990
|
const hasAxiosRequestConfig = resolver.options.axiosRequestConfig;
|
|
1991
|
-
|
|
1991
|
+
const needsBlobConfig = endpoint.mediaDownload || endpoint.response === "z.instanceof(Blob)";
|
|
1992
|
+
return Object.keys(endpointConfig).length > 0 || hasAxiosRequestConfig || needsBlobConfig;
|
|
1992
1993
|
};
|
|
1993
1994
|
const getEndpointPath = (endpoint) => endpoint.path.replace(/:([a-zA-Z0-9_]+)/g, "${$1}");
|
|
1994
1995
|
function mapEndpointParamsToFunctionParams(resolver, endpoint, options) {
|
|
@@ -2365,7 +2366,7 @@ function getEndpointsFromOpenAPIDoc(resolver) {
|
|
|
2365
2366
|
}) ?? mediaTypes.find(isMediaTypeAllowed);
|
|
2366
2367
|
let schema;
|
|
2367
2368
|
if (matchingMediaType) {
|
|
2368
|
-
endpoint.responseFormat = matchingMediaType;
|
|
2369
|
+
if (isMainResponseStatus(Number(statusCode)) || statusCode === "default" && !endpoint.responseFormat) endpoint.responseFormat = matchingMediaType;
|
|
2369
2370
|
schema = responseObj.content?.[matchingMediaType]?.schema;
|
|
2370
2371
|
} else if (statusCode === "200") resolver.validationErrors.push(getInvalidStatusCodeError({
|
|
2371
2372
|
received: "200",
|
|
@@ -3913,7 +3914,8 @@ function getSortingPresenceChain$1(resolver, param) {
|
|
|
3913
3914
|
function renderEndpointConfig(resolver, endpoint, modelNamespaceTag) {
|
|
3914
3915
|
const endpointConfig = getEndpointConfig(endpoint);
|
|
3915
3916
|
const hasAxiosRequestConfig = resolver.options.axiosRequestConfig;
|
|
3916
|
-
|
|
3917
|
+
const needsBlobConfig = endpoint.mediaDownload || endpoint.response === "z.instanceof(Blob)";
|
|
3918
|
+
if (Object.keys(endpointConfig).length === 0 && !needsBlobConfig) return hasAxiosRequestConfig ? AXIOS_REQUEST_CONFIG_NAME : "";
|
|
3917
3919
|
const lines = [];
|
|
3918
3920
|
lines.push("{");
|
|
3919
3921
|
if (hasAxiosRequestConfig) lines.push(` ...${AXIOS_REQUEST_CONFIG_NAME},`);
|
|
@@ -4457,7 +4459,8 @@ function getSortingPresenceChain(resolver, param) {
|
|
|
4457
4459
|
function renderInlineEndpointConfig(resolver, endpoint, modelNamespaceTag) {
|
|
4458
4460
|
const endpointConfig = getEndpointConfig(endpoint);
|
|
4459
4461
|
const hasAxiosRequestConfig = resolver.options.axiosRequestConfig;
|
|
4460
|
-
|
|
4462
|
+
const needsBlobConfig = endpoint.mediaDownload || endpoint.response === "z.instanceof(Blob)";
|
|
4463
|
+
if (Object.keys(endpointConfig).length === 0 && !needsBlobConfig) return hasAxiosRequestConfig ? AXIOS_REQUEST_CONFIG_NAME : "";
|
|
4461
4464
|
const lines = [];
|
|
4462
4465
|
lines.push("{");
|
|
4463
4466
|
if (hasAxiosRequestConfig) lines.push(` ...${AXIOS_REQUEST_CONFIG_NAME},`);
|
|
@@ -4507,7 +4510,7 @@ function renderInfiniteQueryOptions({ resolver, endpoint, inlineEndpoints }) {
|
|
|
4507
4510
|
lines.push(" initialPageParam: 1,");
|
|
4508
4511
|
lines.push(` getNextPageParam: ({ ${resolver.options.infiniteQueryResponseParamNames.page}, ${resolver.options.infiniteQueryResponseParamNames.totalItems}, ${resolver.options.infiniteQueryResponseParamNames.limit}: limitParam }: Awaited<ReturnType<typeof ${endpointFunction}>>) => {`);
|
|
4509
4512
|
lines.push(` const pageParam = ${resolver.options.infiniteQueryResponseParamNames.page} ?? 1;`);
|
|
4510
|
-
lines.push(` return pageParam * limitParam < ${resolver.options.infiniteQueryResponseParamNames.totalItems} ? pageParam + 1 : null;`);
|
|
4513
|
+
lines.push(` return pageParam * limitParam < (${resolver.options.infiniteQueryResponseParamNames.totalItems} ?? 0) ? pageParam + 1 : null;`);
|
|
4511
4514
|
lines.push(" },");
|
|
4512
4515
|
lines.push("});");
|
|
4513
4516
|
return lines.join("\n");
|
package/dist/generator.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { _ as getNamespaceName, a as getDataFromOpenAPIDoc, b as isParamMediaTypeAllowed, c as getSchemaTsMetaType, d as getTagImportPath, f as getQueryName, g as invalidVariableNameCharactersToCamel, l as getTsTypeBase, o as isMutation, p as DEFAULT_GENERATE_OPTIONS, s as isQuery, t as generateCodeFromOpenAPIDoc, v as GenerateType, x as formatTag, y as isMediaTypeAllowed } from "./generateCodeFromOpenAPIDoc-
|
|
1
|
+
import { _ as getNamespaceName, a as getDataFromOpenAPIDoc, b as isParamMediaTypeAllowed, c as getSchemaTsMetaType, d as getTagImportPath, f as getQueryName, g as invalidVariableNameCharactersToCamel, l as getTsTypeBase, o as isMutation, p as DEFAULT_GENERATE_OPTIONS, s as isQuery, t as generateCodeFromOpenAPIDoc, v as GenerateType, x as formatTag, y as isMediaTypeAllowed } from "./generateCodeFromOpenAPIDoc-BtabB7FW.mjs";
|
|
2
2
|
import SwaggerParser from "@apidevtools/swagger-parser";
|
|
3
3
|
|
|
4
4
|
//#region src/generators/core/getMetadataFromOpenAPIDoc.ts
|
package/dist/index.mjs
CHANGED
|
@@ -68,7 +68,8 @@ var RestClient = class {
|
|
|
68
68
|
try {
|
|
69
69
|
const { rawResponse, ...config } = requestConfig;
|
|
70
70
|
const res = await this.client(config);
|
|
71
|
-
const
|
|
71
|
+
const responseData = res.status === 204 && res.data === "" ? void 0 : res.data;
|
|
72
|
+
const resData = requestInfo.resSchema.parse(responseData);
|
|
72
73
|
return rawResponse ? {
|
|
73
74
|
...res,
|
|
74
75
|
data: resData
|
package/dist/sh.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { C as VALIDATION_ERROR_TYPE_TITLE, S as Profiler, a as getDataFromOpenAPIDoc, m as groupByType, n as getOutputFileName, u as getTagFileName, v as GenerateType } from "./generateCodeFromOpenAPIDoc-
|
|
3
|
-
import { n as resolveConfig, t as runGenerate } from "./generate.runner-
|
|
2
|
+
import { C as VALIDATION_ERROR_TYPE_TITLE, S as Profiler, a as getDataFromOpenAPIDoc, m as groupByType, n as getOutputFileName, u as getTagFileName, v as GenerateType } from "./generateCodeFromOpenAPIDoc-BtabB7FW.mjs";
|
|
3
|
+
import { n as resolveConfig, t as runGenerate } from "./generate.runner-FyKVhmec.mjs";
|
|
4
4
|
import { createRequire } from "node:module";
|
|
5
5
|
import yargs from "yargs";
|
|
6
6
|
import { hideBin } from "yargs/helpers";
|
|
@@ -39,7 +39,7 @@ function logBanner(message) {
|
|
|
39
39
|
* Fetch the version from package.json
|
|
40
40
|
*/
|
|
41
41
|
function getVersion() {
|
|
42
|
-
return "3.0.0-rc.
|
|
42
|
+
return "3.0.0-rc.14";
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
//#endregion
|
package/dist/vite.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S as Profiler } from "./generateCodeFromOpenAPIDoc-
|
|
2
|
-
import { t as runGenerate } from "./generate.runner-
|
|
1
|
+
import { S as Profiler } from "./generateCodeFromOpenAPIDoc-BtabB7FW.mjs";
|
|
2
|
+
import { t as runGenerate } from "./generate.runner-FyKVhmec.mjs";
|
|
3
3
|
import path from "path";
|
|
4
4
|
|
|
5
5
|
//#region src/vite/openapi-codegen.plugin.ts
|