@kubb/plugin-oas 3.0.0-alpha.17 → 3.0.0-alpha.18

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.
Files changed (61) hide show
  1. package/README.md +0 -4
  2. package/dist/{chunk-AWRVBD2X.js → chunk-4CQVMYRG.js} +7 -16
  3. package/dist/chunk-4CQVMYRG.js.map +1 -0
  4. package/dist/{chunk-XIFGKAM3.js → chunk-DFQJ57GH.js} +4 -35
  5. package/dist/chunk-DFQJ57GH.js.map +1 -0
  6. package/dist/chunk-GF26SDHQ.js +28 -0
  7. package/dist/chunk-GF26SDHQ.js.map +1 -0
  8. package/dist/{chunk-IVSE3A7W.cjs → chunk-HP5WAFBU.cjs} +2 -38
  9. package/dist/chunk-HP5WAFBU.cjs.map +1 -0
  10. package/dist/{chunk-BEKIIF6H.cjs → chunk-OO5R4UIK.cjs} +5 -407
  11. package/dist/chunk-OO5R4UIK.cjs.map +1 -0
  12. package/dist/chunk-PADR76WZ.cjs +4 -0
  13. package/dist/chunk-PADR76WZ.cjs.map +1 -0
  14. package/dist/chunk-R47XMJ32.js +3 -0
  15. package/dist/chunk-R47XMJ32.js.map +1 -0
  16. package/dist/{chunk-XON3FUPP.cjs → chunk-RQG4KIFG.cjs} +7 -16
  17. package/dist/chunk-RQG4KIFG.cjs.map +1 -0
  18. package/dist/chunk-THGCWF2O.js +30 -0
  19. package/dist/chunk-THGCWF2O.js.map +1 -0
  20. package/dist/chunk-UO57DZPV.cjs +36 -0
  21. package/dist/chunk-UO57DZPV.cjs.map +1 -0
  22. package/dist/{chunk-VLHK3XAR.js → chunk-V4LP5BFJ.js} +5 -403
  23. package/dist/chunk-V4LP5BFJ.js.map +1 -0
  24. package/dist/chunk-ZWHQ54JM.cjs +32 -0
  25. package/dist/chunk-ZWHQ54JM.cjs.map +1 -0
  26. package/dist/components.cjs +5 -5
  27. package/dist/components.js +2 -2
  28. package/dist/generators.cjs +4 -4
  29. package/dist/generators.js +3 -3
  30. package/dist/hooks.cjs +9 -31
  31. package/dist/hooks.cjs.map +1 -1
  32. package/dist/hooks.js +3 -25
  33. package/dist/hooks.js.map +1 -1
  34. package/dist/index.cjs +402 -25
  35. package/dist/index.cjs.map +1 -1
  36. package/dist/index.js +392 -5
  37. package/dist/index.js.map +1 -1
  38. package/dist/utils.cjs +8 -29
  39. package/dist/utils.cjs.map +1 -1
  40. package/dist/utils.d.cts +2 -10
  41. package/dist/utils.d.ts +2 -10
  42. package/dist/utils.js +3 -23
  43. package/dist/utils.js.map +1 -1
  44. package/package.json +8 -11
  45. package/src/hooks/useSchemaManager.ts +3 -2
  46. package/src/utils/index.ts +0 -1
  47. package/dist/chunk-AWRVBD2X.js.map +0 -1
  48. package/dist/chunk-BEKIIF6H.cjs.map +0 -1
  49. package/dist/chunk-CQMUJN22.cjs +0 -42
  50. package/dist/chunk-CQMUJN22.cjs.map +0 -1
  51. package/dist/chunk-FGOPORE3.js +0 -38
  52. package/dist/chunk-FGOPORE3.js.map +0 -1
  53. package/dist/chunk-FZABPEYO.cjs +0 -3176
  54. package/dist/chunk-FZABPEYO.cjs.map +0 -1
  55. package/dist/chunk-I6N3YPCE.js +0 -3171
  56. package/dist/chunk-I6N3YPCE.js.map +0 -1
  57. package/dist/chunk-IVSE3A7W.cjs.map +0 -1
  58. package/dist/chunk-VLHK3XAR.js.map +0 -1
  59. package/dist/chunk-XIFGKAM3.js.map +0 -1
  60. package/dist/chunk-XON3FUPP.cjs.map +0 -1
  61. package/src/utils/refSorter.ts +0 -13
package/dist/index.js CHANGED
@@ -1,7 +1,394 @@
1
- export { OperationGenerator, SchemaGenerator, isKeyword, pluginOas, pluginOasName, schemaKeywords } from './chunk-VLHK3XAR.js';
2
- import './chunk-XIFGKAM3.js';
3
- export { createGenerator, createReactGenerator } from './chunk-AWRVBD2X.js';
4
- import './chunk-I6N3YPCE.js';
5
- import './chunk-FGOPORE3.js';
1
+ import { parseFromConfig } from './chunk-THGCWF2O.js';
2
+ import { jsonGenerator } from './chunk-4CQVMYRG.js';
3
+ export { createGenerator, createReactGenerator } from './chunk-4CQVMYRG.js';
4
+ import './chunk-R47XMJ32.js';
5
+ import { SchemaGenerator } from './chunk-V4LP5BFJ.js';
6
+ export { SchemaGenerator, isKeyword, schemaKeywords } from './chunk-V4LP5BFJ.js';
7
+ import { getSchemas } from './chunk-DFQJ57GH.js';
8
+ import './chunk-GF26SDHQ.js';
9
+ import { createPlugin, FileManager, BaseGenerator } from '@kubb/core';
10
+ import transformers from '@kubb/core/transformers';
11
+ import path from 'node:path';
12
+
13
+ var OperationGenerator = class extends BaseGenerator {
14
+ #operationsByMethod = {};
15
+ get operationsByMethod() {
16
+ return this.#operationsByMethod;
17
+ }
18
+ set operationsByMethod(paths) {
19
+ this.#operationsByMethod = paths;
20
+ }
21
+ #getOptions(operation, method) {
22
+ const { override = [] } = this.context;
23
+ return override.find(({ pattern, type }) => {
24
+ if (type === "tag") {
25
+ return !!operation.getTags()[0]?.name.match(pattern);
26
+ }
27
+ if (type === "operationId") {
28
+ return !!operation.getOperationId().match(pattern);
29
+ }
30
+ if (type === "path") {
31
+ return !!operation.path.match(pattern);
32
+ }
33
+ if (type === "method") {
34
+ return !!method.match(pattern);
35
+ }
36
+ return false;
37
+ })?.options || {};
38
+ }
39
+ /**
40
+ *
41
+ * @deprecated
42
+ */
43
+ #isExcluded(operation, method) {
44
+ const { exclude = [] } = this.context;
45
+ let matched = false;
46
+ exclude.forEach(({ pattern, type }) => {
47
+ if (type === "tag" && !matched) {
48
+ matched = !!operation.getTags()[0]?.name.match(pattern);
49
+ }
50
+ if (type === "operationId" && !matched) {
51
+ matched = !!operation.getOperationId().match(pattern);
52
+ }
53
+ if (type === "path" && !matched) {
54
+ matched = !!operation.path.match(pattern);
55
+ }
56
+ if (type === "method" && !matched) {
57
+ matched = !!method.match(pattern);
58
+ }
59
+ });
60
+ return matched;
61
+ }
62
+ /**
63
+ *
64
+ * @deprecated
65
+ */
66
+ #isIncluded(operation, method) {
67
+ const { include = [] } = this.context;
68
+ let matched = false;
69
+ include.forEach(({ pattern, type }) => {
70
+ if (type === "tag" && !matched) {
71
+ matched = !!operation.getTags()[0]?.name.match(pattern);
72
+ }
73
+ if (type === "operationId" && !matched) {
74
+ matched = !!operation.getOperationId().match(pattern);
75
+ }
76
+ if (type === "path" && !matched) {
77
+ matched = !!operation.path.match(pattern);
78
+ }
79
+ if (type === "method" && !matched) {
80
+ matched = !!method.match(pattern);
81
+ }
82
+ });
83
+ return matched;
84
+ }
85
+ getSchemas(operation, {
86
+ resolveName = (name) => name
87
+ } = {}) {
88
+ const pathParamsSchema = this.context.oas.getParametersSchema(operation, "path");
89
+ const queryParamsSchema = this.context.oas.getParametersSchema(operation, "query");
90
+ const headerParamsSchema = this.context.oas.getParametersSchema(operation, "header");
91
+ const requestSchema = this.context.oas.getRequestSchema(operation);
92
+ const responseStatusCode = operation.schema.responses && Object.keys(operation.schema.responses).find((key) => key.startsWith("2")) || 200;
93
+ const responseSchema = this.context.oas.getResponseSchema(operation, responseStatusCode);
94
+ const statusCodes = operation.getResponseStatusCodes().map((statusCode) => {
95
+ let name = statusCode;
96
+ if (name === "default") {
97
+ name = "error";
98
+ }
99
+ const schema = this.context.oas.getResponseSchema(operation, statusCode);
100
+ return {
101
+ name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${name}`)),
102
+ description: operation.getResponseByStatusCode(statusCode)?.description,
103
+ schema,
104
+ operation,
105
+ operationName: transformers.pascalCase(`${operation.getOperationId()}`),
106
+ statusCode: name === "error" ? void 0 : Number(statusCode),
107
+ keys: schema?.properties ? Object.keys(schema.properties) : void 0
108
+ };
109
+ });
110
+ return {
111
+ pathParams: pathParamsSchema ? {
112
+ name: resolveName(transformers.pascalCase(`${operation.getOperationId()} PathParams`)),
113
+ operation,
114
+ operationName: transformers.pascalCase(`${operation.getOperationId()}`),
115
+ schema: pathParamsSchema,
116
+ keys: pathParamsSchema.properties ? Object.keys(pathParamsSchema.properties) : void 0
117
+ } : void 0,
118
+ queryParams: queryParamsSchema ? {
119
+ name: resolveName(transformers.pascalCase(`${operation.getOperationId()} QueryParams`)),
120
+ operation,
121
+ operationName: transformers.pascalCase(`${operation.getOperationId()}`),
122
+ schema: queryParamsSchema,
123
+ keys: queryParamsSchema.properties ? Object.keys(queryParamsSchema.properties) : []
124
+ } : void 0,
125
+ headerParams: headerParamsSchema ? {
126
+ name: resolveName(transformers.pascalCase(`${operation.getOperationId()} HeaderParams`)),
127
+ operation,
128
+ operationName: transformers.pascalCase(`${operation.getOperationId()}`),
129
+ schema: headerParamsSchema,
130
+ keys: headerParamsSchema.properties ? Object.keys(headerParamsSchema.properties) : void 0
131
+ } : void 0,
132
+ request: requestSchema ? {
133
+ name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === "get" ? "queryRequest" : "mutationRequest"}`)),
134
+ description: operation.schema.requestBody?.description,
135
+ operation,
136
+ operationName: transformers.pascalCase(`${operation.getOperationId()}`),
137
+ schema: requestSchema,
138
+ keys: requestSchema.properties ? Object.keys(requestSchema.properties) : void 0,
139
+ keysToOmit: requestSchema.properties ? Object.keys(requestSchema.properties).filter((key) => {
140
+ const item = requestSchema.properties?.[key];
141
+ return item?.readOnly;
142
+ }) : void 0
143
+ } : void 0,
144
+ response: {
145
+ name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === "get" ? "queryResponse" : "mutationResponse"}`)),
146
+ description: operation.getResponseAsJSONSchema(responseStatusCode)?.at(0)?.description,
147
+ operation,
148
+ operationName: transformers.pascalCase(`${operation.getOperationId()}`),
149
+ schema: responseSchema,
150
+ statusCode: Number(responseStatusCode),
151
+ keys: responseSchema?.properties ? Object.keys(responseSchema.properties) : void 0,
152
+ keysToOmit: responseSchema?.properties ? Object.keys(responseSchema.properties).filter((key) => {
153
+ const item = responseSchema.properties?.[key];
154
+ return item?.writeOnly;
155
+ }) : void 0
156
+ },
157
+ errors: statusCodes.filter((item) => item.statusCode?.toString().startsWith("4") || item.statusCode?.toString().startsWith("5")),
158
+ statusCodes
159
+ };
160
+ }
161
+ #methods = ["get", "post", "patch", "put", "delete"];
162
+ async build(...generators) {
163
+ const { oas } = this.context;
164
+ const paths = oas.getPaths();
165
+ this.operationsByMethod = Object.entries(paths).reduce((acc, [path2, method]) => {
166
+ const methods = Object.keys(method);
167
+ methods.forEach((method2) => {
168
+ const operation = oas.operation(path2, method2);
169
+ if (operation && [this.#methods].some((methods2) => method2 === operation.method)) {
170
+ const isExcluded = this.#isExcluded(operation, method2);
171
+ const isIncluded = this.context.include ? this.#isIncluded(operation, method2) : true;
172
+ if (isIncluded && !isExcluded) {
173
+ if (!acc[path2]) {
174
+ acc[path2] = {};
175
+ }
176
+ acc[path2] = {
177
+ ...acc[path2],
178
+ [method2]: {
179
+ operation,
180
+ schemas: this.getSchemas(operation)
181
+ }
182
+ };
183
+ }
184
+ }
185
+ });
186
+ return acc;
187
+ }, {});
188
+ const promises = Object.keys(this.operationsByMethod).reduce((acc, path2) => {
189
+ const methods = this.operationsByMethod[path2] ? Object.keys(this.operationsByMethod[path2]) : [];
190
+ methods.forEach((method) => {
191
+ const { operation } = this.operationsByMethod[path2]?.[method];
192
+ const options = this.#getOptions(operation, method);
193
+ const methodToCall = this[method];
194
+ if (typeof methodToCall === "function") {
195
+ const promiseMethod = methodToCall?.call(this, operation, {
196
+ ...this.options,
197
+ ...options
198
+ });
199
+ if (promiseMethod) {
200
+ acc.push(promiseMethod);
201
+ }
202
+ }
203
+ const promiseOperation = this.operation.call(this, operation, {
204
+ ...this.options,
205
+ ...options
206
+ });
207
+ if (promiseOperation) {
208
+ acc.push(promiseOperation);
209
+ }
210
+ generators?.forEach((generator) => {
211
+ const promise = generator.operation?.({
212
+ instance: this,
213
+ operation,
214
+ options: {
215
+ ...this.options,
216
+ ...options
217
+ }
218
+ });
219
+ if (promise) {
220
+ acc.push(promise);
221
+ }
222
+ });
223
+ });
224
+ return acc;
225
+ }, []);
226
+ const operations = Object.values(this.operationsByMethod).map((item) => Object.values(item).map((item2) => item2.operation));
227
+ promises.push(this.all(operations.flat().filter(Boolean), this.operationsByMethod));
228
+ generators?.forEach((generator) => {
229
+ const promise = generator.operations?.({
230
+ instance: this,
231
+ operations: operations.flat().filter(Boolean),
232
+ operationsByMethod: this.operationsByMethod,
233
+ options: this.options
234
+ });
235
+ if (promise) {
236
+ promises.push(promise);
237
+ }
238
+ });
239
+ const files = await Promise.all(promises);
240
+ return files.flat().filter(Boolean);
241
+ }
242
+ /**
243
+ * Operation
244
+ */
245
+ async operation(operation, options) {
246
+ return [];
247
+ }
248
+ /**
249
+ * GET
250
+ */
251
+ async get(operation, options) {
252
+ return [];
253
+ }
254
+ /**
255
+ * POST
256
+ */
257
+ async post(operation, options) {
258
+ return [];
259
+ }
260
+ /**
261
+ * PATCH
262
+ */
263
+ async patch(operation, options) {
264
+ return [];
265
+ }
266
+ /**
267
+ * PUT
268
+ */
269
+ async put(operation, options) {
270
+ return [];
271
+ }
272
+ /**
273
+ * DELETE
274
+ */
275
+ async delete(operation, options) {
276
+ return [];
277
+ }
278
+ /**
279
+ * Combination of GET, POST, PATCH, PUT, DELETE
280
+ */
281
+ async all(operations, paths) {
282
+ return [];
283
+ }
284
+ };
285
+ var pluginOasName = "plugin-oas";
286
+ var pluginOas = createPlugin((options) => {
287
+ const {
288
+ output = {
289
+ path: "schemas",
290
+ export: false,
291
+ exportType: "barrelNamed"
292
+ },
293
+ experimentalFilter: filter,
294
+ experimentalSort: sort,
295
+ validate = true,
296
+ generators = [jsonGenerator],
297
+ serverIndex = 0,
298
+ contentType,
299
+ oasClass
300
+ } = options;
301
+ const getOas = async ({ config, logger, formatOptions }) => {
302
+ try {
303
+ const oas = await parseFromConfig(config, formatOptions, oasClass);
304
+ if (validate) {
305
+ await oas.valdiate();
306
+ }
307
+ return oas;
308
+ } catch (e) {
309
+ const error = e;
310
+ logger.emit("warning", error?.message);
311
+ return parseFromConfig(config, {}, oasClass);
312
+ }
313
+ };
314
+ return {
315
+ name: pluginOasName,
316
+ output,
317
+ options,
318
+ context() {
319
+ const { config, logger } = this;
320
+ return {
321
+ getOas(formatOptions) {
322
+ return getOas({ config, logger, formatOptions });
323
+ },
324
+ async getSchemas({ includes } = {}) {
325
+ const oas = await this.getOas();
326
+ return getSchemas({ oas, contentType, includes });
327
+ },
328
+ async getBaseURL() {
329
+ const oasInstance = await this.getOas();
330
+ return oasInstance.api.servers?.at(serverIndex)?.url;
331
+ },
332
+ contentType
333
+ };
334
+ },
335
+ resolvePath(baseName, pathMode, options2) {
336
+ const root = path.resolve(this.config.root, this.config.output.path);
337
+ const mode = pathMode ?? FileManager.getMode(path.resolve(root, output.path));
338
+ if (mode === "single") {
339
+ return path.resolve(root, output.path);
340
+ }
341
+ return path.resolve(root, output.path, baseName);
342
+ },
343
+ async buildStart() {
344
+ if (!output) {
345
+ return;
346
+ }
347
+ const oas = await getOas({
348
+ config: this.config,
349
+ logger: this.logger,
350
+ formatOptions: {
351
+ filterSet: filter,
352
+ sortSet: sort
353
+ }
354
+ });
355
+ await oas.dereference();
356
+ const schemaGenerator = new SchemaGenerator(
357
+ {
358
+ unknownType: "unknown",
359
+ dateType: "date",
360
+ transformers: {},
361
+ ...this.plugin.options
362
+ },
363
+ {
364
+ oas,
365
+ pluginManager: this.pluginManager,
366
+ plugin: this.plugin,
367
+ contentType,
368
+ include: void 0,
369
+ override: void 0,
370
+ mode: "split",
371
+ output: output.path
372
+ }
373
+ );
374
+ const schemaFiles = await schemaGenerator.build(...generators);
375
+ await this.addFile(...schemaFiles);
376
+ const operationGenerator = new OperationGenerator(this.plugin.options, {
377
+ oas,
378
+ pluginManager: this.pluginManager,
379
+ plugin: this.plugin,
380
+ contentType,
381
+ exclude: void 0,
382
+ include: void 0,
383
+ override: void 0,
384
+ mode: "split"
385
+ });
386
+ const operationFiles = await operationGenerator.build(...generators);
387
+ await this.addFile(...operationFiles);
388
+ }
389
+ };
390
+ });
391
+
392
+ export { OperationGenerator, pluginOas, pluginOasName };
6
393
  //# sourceMappingURL=index.js.map
7
394
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":[],"names":[],"mappings":"","file":"index.js"}
1
+ {"version":3,"sources":["../src/OperationGenerator.ts","../src/plugin.ts"],"names":["path","method","methods","item","options"],"mappings":"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","file":"index.js","sourcesContent":["import { BaseGenerator, type FileMetaBase } from '@kubb/core'\nimport transformers from '@kubb/core/transformers'\n\nimport type { PluginFactoryOptions, PluginManager } from '@kubb/core'\nimport type * as KubbFile from '@kubb/fs/types'\n\nimport type { Plugin } from '@kubb/core'\nimport type { HttpMethod, Oas, OasTypes, Operation, contentType } from '@kubb/oas'\nimport type { Generator } from './generator.tsx'\nimport type { Exclude, Include, OperationSchemas, OperationsByMethod, Override } from './types.ts'\n\n/**\n * @deprecated\n */\nexport type GetOperationGeneratorOptions<T = any> = any\n\nexport type OperationMethodResult<TFileMeta extends FileMetaBase> = Promise<KubbFile.File<TFileMeta> | Array<KubbFile.File<TFileMeta>> | null>\n\ntype Context<TOptions, TPluginOptions extends PluginFactoryOptions> = {\n oas: Oas\n exclude: Array<Exclude> | undefined\n include: Array<Include> | undefined\n override: Array<Override<TOptions>> | undefined\n contentType: contentType | undefined\n pluginManager: PluginManager\n /**\n * Current plugin\n */\n plugin: Plugin<TPluginOptions>\n mode: KubbFile.Mode\n}\n\nexport class OperationGenerator<\n TPluginOptions extends PluginFactoryOptions = PluginFactoryOptions,\n TFileMeta extends FileMetaBase = FileMetaBase,\n> extends BaseGenerator<TPluginOptions['resolvedOptions'], Context<TPluginOptions['resolvedOptions'], TPluginOptions>> {\n #operationsByMethod: OperationsByMethod = {}\n get operationsByMethod(): OperationsByMethod {\n return this.#operationsByMethod\n }\n\n set operationsByMethod(paths: OperationsByMethod) {\n this.#operationsByMethod = paths\n }\n\n #getOptions(operation: Operation, method: HttpMethod): Partial<TPluginOptions['resolvedOptions']> {\n const { override = [] } = this.context\n\n return (\n override.find(({ pattern, type }) => {\n if (type === 'tag') {\n return !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId') {\n return !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path') {\n return !!operation.path.match(pattern)\n }\n\n if (type === 'method') {\n return !!method.match(pattern)\n }\n\n return false\n })?.options || {}\n )\n }\n\n /**\n *\n * @deprecated\n */\n #isExcluded(operation: Operation, method: HttpMethod): boolean {\n const { exclude = [] } = this.context\n let matched = false\n\n exclude.forEach(({ pattern, type }) => {\n if (type === 'tag' && !matched) {\n matched = !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId' && !matched) {\n matched = !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path' && !matched) {\n matched = !!operation.path.match(pattern)\n }\n\n if (type === 'method' && !matched) {\n matched = !!method.match(pattern)\n }\n })\n\n return matched\n }\n\n /**\n *\n * @deprecated\n */\n #isIncluded(operation: Operation, method: HttpMethod): boolean {\n const { include = [] } = this.context\n let matched = false\n\n include.forEach(({ pattern, type }) => {\n if (type === 'tag' && !matched) {\n matched = !!operation.getTags()[0]?.name.match(pattern)\n }\n\n if (type === 'operationId' && !matched) {\n matched = !!operation.getOperationId().match(pattern)\n }\n\n if (type === 'path' && !matched) {\n matched = !!operation.path.match(pattern)\n }\n\n if (type === 'method' && !matched) {\n matched = !!method.match(pattern)\n }\n })\n\n return matched\n }\n\n getSchemas(\n operation: Operation,\n {\n resolveName = (name) => name,\n }: {\n resolveName?: (name: string) => string\n } = {},\n ): OperationSchemas {\n const pathParamsSchema = this.context.oas.getParametersSchema(operation, 'path')\n const queryParamsSchema = this.context.oas.getParametersSchema(operation, 'query')\n const headerParamsSchema = this.context.oas.getParametersSchema(operation, 'header')\n const requestSchema = this.context.oas.getRequestSchema(operation)\n const responseStatusCode = (operation.schema.responses && Object.keys(operation.schema.responses).find((key) => key.startsWith('2'))) || 200\n const responseSchema = this.context.oas.getResponseSchema(operation, responseStatusCode)\n const statusCodes = operation.getResponseStatusCodes().map((statusCode) => {\n let name = statusCode\n if (name === 'default') {\n name = 'error'\n }\n\n const schema = this.context.oas.getResponseSchema(operation, statusCode)\n\n return {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${name}`)),\n description: (operation.getResponseByStatusCode(statusCode) as OasTypes.ResponseObject)?.description,\n schema,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n statusCode: name === 'error' ? undefined : Number(statusCode),\n keys: schema?.properties ? Object.keys(schema.properties) : undefined,\n }\n })\n\n return {\n pathParams: pathParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} PathParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: pathParamsSchema,\n keys: pathParamsSchema.properties ? Object.keys(pathParamsSchema.properties) : undefined,\n }\n : undefined,\n queryParams: queryParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} QueryParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: queryParamsSchema,\n keys: queryParamsSchema.properties ? Object.keys(queryParamsSchema.properties) : [],\n }\n : undefined,\n headerParams: headerParamsSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} HeaderParams`)),\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: headerParamsSchema,\n keys: headerParamsSchema.properties ? Object.keys(headerParamsSchema.properties) : undefined,\n }\n : undefined,\n request: requestSchema\n ? {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === 'get' ? 'queryRequest' : 'mutationRequest'}`)),\n description: (operation.schema.requestBody as OasTypes.RequestBodyObject)?.description,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: requestSchema,\n keys: requestSchema.properties ? Object.keys(requestSchema.properties) : undefined,\n keysToOmit: requestSchema.properties\n ? Object.keys(requestSchema.properties).filter((key) => {\n const item = requestSchema.properties?.[key] as OasTypes.SchemaObject\n\n return item?.readOnly\n })\n : undefined,\n }\n : undefined,\n response: {\n name: resolveName(transformers.pascalCase(`${operation.getOperationId()} ${operation.method === 'get' ? 'queryResponse' : 'mutationResponse'}`)),\n description: operation.getResponseAsJSONSchema(responseStatusCode)?.at(0)?.description,\n operation,\n operationName: transformers.pascalCase(`${operation.getOperationId()}`),\n schema: responseSchema,\n statusCode: Number(responseStatusCode),\n keys: responseSchema?.properties ? Object.keys(responseSchema.properties) : undefined,\n keysToOmit: responseSchema?.properties\n ? Object.keys(responseSchema.properties).filter((key) => {\n const item = responseSchema.properties?.[key] as OasTypes.SchemaObject\n return item?.writeOnly\n })\n : undefined,\n },\n errors: statusCodes.filter((item) => item.statusCode?.toString().startsWith('4') || item.statusCode?.toString().startsWith('5')),\n statusCodes,\n }\n }\n\n #methods = ['get', 'post', 'patch', 'put', 'delete']\n\n async build(...generators: Array<Generator<TPluginOptions>>): Promise<Array<KubbFile.File<TFileMeta>>> {\n const { oas } = this.context\n\n const paths = oas.getPaths()\n this.operationsByMethod = Object.entries(paths).reduce((acc, [path, method]) => {\n const methods = Object.keys(method) as HttpMethod[]\n\n methods.forEach((method) => {\n const operation = oas.operation(path, method)\n if (operation && [this.#methods].some((methods) => method === operation.method)) {\n const isExcluded = this.#isExcluded(operation, method)\n const isIncluded = this.context.include ? this.#isIncluded(operation, method) : true\n\n if (isIncluded && !isExcluded) {\n if (!acc[path]) {\n acc[path] = {} as OperationsByMethod['get']\n }\n acc[path] = {\n ...acc[path],\n [method]: {\n operation,\n schemas: this.getSchemas(operation),\n },\n } as OperationsByMethod['get']\n }\n }\n })\n\n return acc\n }, {} as OperationsByMethod)\n\n const promises = Object.keys(this.operationsByMethod).reduce((acc, path) => {\n const methods = this.operationsByMethod[path] ? (Object.keys(this.operationsByMethod[path]!) as HttpMethod[]) : []\n\n methods.forEach((method) => {\n const { operation } = this.operationsByMethod[path]?.[method]!\n const options = this.#getOptions(operation, method)\n\n const methodToCall = this[method as keyof typeof this] as any\n\n if (typeof methodToCall === 'function') {\n const promiseMethod = methodToCall?.call(this, operation, {\n ...this.options,\n ...options,\n })\n\n if (promiseMethod) {\n acc.push(promiseMethod)\n }\n }\n\n const promiseOperation = this.operation.call(this, operation, {\n ...this.options,\n ...options,\n })\n\n if (promiseOperation) {\n acc.push(promiseOperation)\n }\n\n generators?.forEach((generator) => {\n const promise = generator.operation?.({\n instance: this,\n operation,\n options: {\n ...this.options,\n ...options,\n },\n } as any) as Promise<Array<KubbFile.File<TFileMeta>>>\n\n if (promise) {\n acc.push(promise)\n }\n })\n })\n\n return acc\n }, [] as OperationMethodResult<TFileMeta>[])\n\n const operations = Object.values(this.operationsByMethod).map((item) => Object.values(item).map((item) => item.operation))\n\n promises.push(this.all(operations.flat().filter(Boolean), this.operationsByMethod))\n\n generators?.forEach((generator) => {\n const promise = generator.operations?.({\n instance: this,\n operations: operations.flat().filter(Boolean),\n operationsByMethod: this.operationsByMethod,\n options: this.options,\n } as any) as Promise<Array<KubbFile.File<TFileMeta>>>\n\n if (promise) {\n promises.push(promise)\n }\n })\n\n const files = await Promise.all(promises)\n\n // using .flat because operationGenerator[method] can return a array of files or just one file\n return files.flat().filter(Boolean)\n }\n\n /**\n * Operation\n */\n async operation(operation: Operation, options: TPluginOptions['resolvedOptions']): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * GET\n */\n async get(operation: Operation, options: TPluginOptions['resolvedOptions']): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * POST\n */\n async post(operation: Operation, options: TPluginOptions['resolvedOptions']): OperationMethodResult<TFileMeta> {\n return []\n }\n /**\n * PATCH\n */\n async patch(operation: Operation, options: TPluginOptions['resolvedOptions']): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * PUT\n */\n async put(operation: Operation, options: TPluginOptions['resolvedOptions']): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * DELETE\n */\n async delete(operation: Operation, options: TPluginOptions['resolvedOptions']): OperationMethodResult<TFileMeta> {\n return []\n }\n\n /**\n * Combination of GET, POST, PATCH, PUT, DELETE\n */\n async all(operations: Operation[], paths: OperationsByMethod): OperationMethodResult<TFileMeta> {\n return []\n }\n}\n","import { FileManager, createPlugin } from '@kubb/core'\n\nimport { getSchemas } from './utils/getSchemas.ts'\nimport { parseFromConfig } from './utils/parseFromConfig.ts'\n\nimport path from 'node:path'\nimport type { Config } from '@kubb/core'\nimport type { Logger } from '@kubb/core/logger'\nimport type { Oas } from '@kubb/oas'\nimport type { FormatOptions } from '@kubb/oas/parser'\nimport { OperationGenerator } from './OperationGenerator.ts'\nimport { SchemaGenerator } from './SchemaGenerator.ts'\nimport { jsonGenerator } from './generators'\nimport type { PluginOas } from './types.ts'\n\nexport const pluginOasName = 'plugin-oas' satisfies PluginOas['name']\n\nexport const pluginOas = createPlugin<PluginOas>((options) => {\n const {\n output = {\n path: 'schemas',\n export: false,\n exportType: 'barrelNamed',\n },\n experimentalFilter: filter,\n experimentalSort: sort,\n validate = true,\n generators = [jsonGenerator],\n serverIndex = 0,\n contentType,\n oasClass,\n } = options\n\n const getOas = async ({ config, logger, formatOptions }: { config: Config; logger: Logger; formatOptions?: FormatOptions }): Promise<Oas> => {\n try {\n // needs to be in a different variable or the catch here will not work(return of a promise instead)\n const oas = await parseFromConfig(config, formatOptions, oasClass)\n\n if (validate) {\n await oas.valdiate()\n }\n\n return oas\n } catch (e) {\n const error = e as Error\n\n logger.emit('warning', error?.message)\n return parseFromConfig(config, {}, oasClass)\n }\n }\n\n return {\n name: pluginOasName,\n output,\n options,\n context() {\n const { config, logger } = this\n\n return {\n getOas(formatOptions) {\n return getOas({ config, logger, formatOptions })\n },\n async getSchemas({ includes } = {}) {\n const oas = await this.getOas()\n return getSchemas({ oas, contentType, includes })\n },\n async getBaseURL() {\n const oasInstance = await this.getOas()\n return oasInstance.api.servers?.at(serverIndex)?.url\n },\n contentType,\n }\n },\n resolvePath(baseName, pathMode, options) {\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = pathMode ?? FileManager.getMode(path.resolve(root, output.path))\n\n if (mode === 'single') {\n /**\n * when output is a file then we will always append to the same file(output file), see fileManager.addOrAppend\n * Other plugins then need to call addOrAppend instead of just add from the fileManager class\n */\n return path.resolve(root, output.path)\n }\n\n return path.resolve(root, output.path, baseName)\n },\n async buildStart() {\n if (!output) {\n return\n }\n\n const oas = await getOas({\n config: this.config,\n logger: this.logger,\n formatOptions: {\n filterSet: filter,\n sortSet: sort,\n },\n })\n await oas.dereference()\n\n const schemaGenerator = new SchemaGenerator(\n {\n unknownType: 'unknown',\n dateType: 'date',\n transformers: {},\n ...this.plugin.options,\n },\n {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType,\n include: undefined,\n override: undefined,\n mode: 'split',\n output: output.path,\n },\n )\n\n const schemaFiles = await schemaGenerator.build(...generators)\n await this.addFile(...schemaFiles)\n\n const operationGenerator = new OperationGenerator(this.plugin.options, {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType,\n exclude: undefined,\n include: undefined,\n override: undefined,\n mode: 'split',\n })\n\n const operationFiles = await operationGenerator.build(...generators)\n\n await this.addFile(...operationFiles)\n },\n }\n})\n"]}
package/dist/utils.cjs CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var chunkIVSE3A7W_cjs = require('./chunk-IVSE3A7W.cjs');
4
- var chunkCQMUJN22_cjs = require('./chunk-CQMUJN22.cjs');
3
+ var chunkUO57DZPV_cjs = require('./chunk-UO57DZPV.cjs');
4
+ var chunkHP5WAFBU_cjs = require('./chunk-HP5WAFBU.cjs');
5
5
  var transformers = require('@kubb/core/transformers');
6
6
  var utils = require('@kubb/core/utils');
7
7
  var oas = require('@kubb/oas');
@@ -10,11 +10,6 @@ function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
10
10
 
11
11
  var transformers__default = /*#__PURE__*/_interopDefault(transformers);
12
12
 
13
- // src/utils/index.ts
14
- chunkCQMUJN22_cjs.init_cjs_shims();
15
-
16
- // src/utils/getComments.ts
17
- chunkCQMUJN22_cjs.init_cjs_shims();
18
13
  function getComments(operation) {
19
14
  return [
20
15
  operation.getDescription() && `@description ${operation.getDescription()}`,
@@ -23,9 +18,6 @@ function getComments(operation) {
23
18
  operation.isDeprecated() && "@deprecated"
24
19
  ].filter(Boolean).map((text) => transformers__default.default.trim(text));
25
20
  }
26
-
27
- // src/utils/getParams.ts
28
- chunkCQMUJN22_cjs.init_cjs_shims();
29
21
  function getASTParams(operationSchema, {
30
22
  typed = false,
31
23
  override
@@ -57,29 +49,17 @@ function getPathParams(operationSchema, options = {}) {
57
49
  }, {});
58
50
  }
59
51
 
60
- // src/utils/refSorter.ts
61
- chunkCQMUJN22_cjs.init_cjs_shims();
62
- function refsSorter(a, b) {
63
- if (Object.keys(a.import.refs)?.length < Object.keys(b.import.refs)?.length) {
64
- return -1;
65
- }
66
- if (Object.keys(a.import.refs)?.length > Object.keys(b.import.refs)?.length) {
67
- return 1;
68
- }
69
- return 0;
70
- }
71
-
72
- Object.defineProperty(exports, "getSchemaFactory", {
52
+ Object.defineProperty(exports, "parseFromConfig", {
73
53
  enumerable: true,
74
- get: function () { return chunkIVSE3A7W_cjs.getSchemaFactory; }
54
+ get: function () { return chunkUO57DZPV_cjs.parseFromConfig; }
75
55
  });
76
- Object.defineProperty(exports, "getSchemas", {
56
+ Object.defineProperty(exports, "getSchemaFactory", {
77
57
  enumerable: true,
78
- get: function () { return chunkIVSE3A7W_cjs.getSchemas; }
58
+ get: function () { return chunkHP5WAFBU_cjs.getSchemaFactory; }
79
59
  });
80
- Object.defineProperty(exports, "parseFromConfig", {
60
+ Object.defineProperty(exports, "getSchemas", {
81
61
  enumerable: true,
82
- get: function () { return chunkIVSE3A7W_cjs.parseFromConfig; }
62
+ get: function () { return chunkHP5WAFBU_cjs.getSchemas; }
83
63
  });
84
64
  Object.defineProperty(exports, "isOptional", {
85
65
  enumerable: true,
@@ -88,6 +68,5 @@ Object.defineProperty(exports, "isOptional", {
88
68
  exports.getASTParams = getASTParams;
89
69
  exports.getComments = getComments;
90
70
  exports.getPathParams = getPathParams;
91
- exports.refsSorter = refsSorter;
92
71
  //# sourceMappingURL=utils.cjs.map
93
72
  //# sourceMappingURL=utils.cjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/utils/index.ts","../src/utils/getComments.ts","../src/utils/getParams.ts","../src/utils/refSorter.ts"],"names":["init_cjs_shims","URLPath","transformers","isParameterObject","camelCase"],"mappings":";;;;;;;;;;;;;AAAAA,gCAAA,EAAA,CAAA;;;ACAAA,gCAAA,EAAA,CAAA;AAKO,SAAS,YAAY,SAAgC,EAAA;AAC1D,EAAO,OAAA;AAAA,IACL,UAAU,cAAe,EAAA,IAAK,CAAgB,aAAA,EAAA,SAAA,CAAU,gBAAgB,CAAA,CAAA;AAAA,IACxE,UAAU,UAAW,EAAA,IAAK,CAAY,SAAA,EAAA,SAAA,CAAU,YAAY,CAAA,CAAA;AAAA,IAC5D,SAAA,CAAU,QAAQ,CAAS,MAAA,EAAA,IAAIC,cAAQ,SAAU,CAAA,IAAI,EAAE,GAAG,CAAA,CAAA;AAAA,IAC1D,SAAA,CAAU,cAAkB,IAAA,aAAA;AAAA,GAC9B,CACG,MAAO,CAAA,OAAO,CACd,CAAA,GAAA,CAAI,CAAC,IAAS,KAAAC,6BAAA,CAAa,IAAK,CAAA,IAAI,CAAC,CAAA,CAAA;AAC1C,CAAA;;;ACdAF,gCAAA,EAAA,CAAA;AAYO,SAAS,aACd,eACA,EAAA;AAAA,EACE,KAAQ,GAAA,KAAA;AAAA,EACR,QAAA;AACF,CAAA,GAGI,EACiB,EAAA;AACrB,EAAI,IAAA,CAAC,mBAAmB,CAAC,eAAA,CAAgB,OAAO,UAAc,IAAA,CAAC,gBAAgB,IAAM,EAAA;AACnF,IAAA,OAAO,EAAC,CAAA;AAAA,GACV;AAEA,EAAO,OAAA,MAAA,CAAO,OAAQ,CAAA,eAAA,CAAgB,MAAO,CAAA,UAAU,CAAE,CAAA,GAAA,CAAI,CAAC,CAAC,IAAM,EAAA,MAAM,CAAuC,KAAA;AAChH,IAAM,MAAA,OAAA,GAAUG,sBAAkB,MAAM,CAAA,CAAA;AACxC,IAAA,MAAM,IAA0B,GAAA;AAAA,MAC9B,IAAA;AAAA,MACA,OAAA,EAAS,CAAC,CAAC,IAAA;AAAA,MACX,QAAA,EAAU,OAAU,GAAA,MAAA,CAAO,QAAW,GAAA,IAAA;AAAA,MACtC,MAAM,KAAQ,GAAA,CAAA,EAAG,gBAAgB,IAAI,CAAA,EAAA,EAAK,IAAI,CAAO,EAAA,CAAA,GAAA,KAAA,CAAA;AAAA,KACvD,CAAA;AAEA,IAAO,OAAA,QAAA,GAAW,QAAS,CAAA,IAAI,CAAI,GAAA,IAAA,CAAA;AAAA,GACpC,CAAA,CAAA;AACH,CAAA;AAEO,SAAS,aACd,CAAA,eAAA,EACA,OAGI,GAAA,EACJ,EAAA;AACA,EAAA,OAAO,aAAa,eAAiB,EAAA,OAAO,EAAE,MAAO,CAAA,CAAC,KAAK,IAAS,KAAA;AAClE,IAAI,IAAA,IAAA,CAAK,IAAQ,IAAA,IAAA,CAAK,OAAS,EAAA;AAC7B,MAAA,GAAA,CAAIC,sBAAU,CAAA,IAAA,CAAK,IAAI,CAAC,CAAI,GAAA;AAAA,QAC1B,SAAS,IAAK,CAAA,OAAA;AAAA,QACd,MAAM,IAAK,CAAA,IAAA;AAAA,QACX,QAAA,EAAU,CAAC,IAAK,CAAA,QAAA;AAAA,OAClB,CAAA;AAAA,KACF;AAEA,IAAO,OAAA,GAAA,CAAA;AAAA,GACT,EAAG,EAAY,CAAA,CAAA;AACjB,CAAA;;;ACzDAJ,gCAAA,EAAA,CAAA;AAIO,SAAS,UAAA,CAAgC,GAAM,CAAc,EAAA;AAClE,EAAA,IAAI,MAAO,CAAA,IAAA,CAAK,CAAE,CAAA,MAAA,CAAO,IAAI,CAAA,EAAG,MAAS,GAAA,MAAA,CAAO,IAAK,CAAA,CAAA,CAAE,MAAO,CAAA,IAAI,GAAG,MAAQ,EAAA;AAC3E,IAAO,OAAA,CAAA,CAAA,CAAA;AAAA,GACT;AACA,EAAA,IAAI,MAAO,CAAA,IAAA,CAAK,CAAE,CAAA,MAAA,CAAO,IAAI,CAAA,EAAG,MAAS,GAAA,MAAA,CAAO,IAAK,CAAA,CAAA,CAAE,MAAO,CAAA,IAAI,GAAG,MAAQ,EAAA;AAC3E,IAAO,OAAA,CAAA,CAAA;AAAA,GACT;AACA,EAAO,OAAA,CAAA,CAAA;AACT","file":"utils.cjs","sourcesContent":["export { getComments } from './getComments.ts'\nexport { getASTParams, getPathParams } from './getParams.ts'\nexport { getSchemaFactory } from './getSchemaFactory.ts'\nexport type { GetSchemasProps } from './getSchemas.ts'\nexport { getSchemas } from './getSchemas.ts'\nexport { refsSorter } from './refSorter.ts'\nexport { parseFromConfig } from './parseFromConfig.ts'\n\nexport { isOptional } from '@kubb/oas'\n","import transformers from '@kubb/core/transformers'\nimport { URLPath } from '@kubb/core/utils'\n\nimport type { Operation } from '@kubb/oas'\n\nexport function getComments(operation: Operation): string[] {\n return [\n operation.getDescription() && `@description ${operation.getDescription()}`,\n operation.getSummary() && `@summary ${operation.getSummary()}`,\n operation.path && `@link ${new URLPath(operation.path).URL}`,\n operation.isDeprecated() && '@deprecated',\n ]\n .filter(Boolean)\n .map((text) => transformers.trim(text))\n}\n","import { isParameterObject } from '@kubb/oas'\n\nimport { camelCase } from '@kubb/core/transformers'\nimport type { FunctionParamsAST } from '@kubb/core/utils'\nimport type { OasTypes } from '@kubb/oas'\nimport type { Params } from '@kubb/react/types'\nimport type { OperationSchema } from '../types.ts'\n/**\n *\n * @deprecated\n * TODO move to operationManager hook\n */\nexport function getASTParams(\n operationSchema: OperationSchema | undefined,\n {\n typed = false,\n override,\n }: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n): FunctionParamsAST[] {\n if (!operationSchema || !operationSchema.schema.properties || !operationSchema.name) {\n return []\n }\n\n return Object.entries(operationSchema.schema.properties).map(([name, schema]: [string, OasTypes.SchemaObject]) => {\n const isParam = isParameterObject(schema)\n const data: FunctionParamsAST = {\n name,\n enabled: !!name,\n required: isParam ? schema.required : true,\n type: typed ? `${operationSchema.name}[\"${name}\"]` : undefined,\n }\n\n return override ? override(data) : data\n })\n}\n\nexport function getPathParams(\n operationSchema: OperationSchema | undefined,\n options: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n) {\n return getASTParams(operationSchema, options).reduce((acc, curr) => {\n if (curr.name && curr.enabled) {\n acc[camelCase(curr.name)] = {\n default: curr.default,\n type: curr.type,\n optional: !curr.required,\n }\n }\n\n return acc\n }, {} as Params)\n}\n","import type { Refs } from '../types.ts'\n\ntype Generated = { import: { refs: Refs; name: string } }\n\nexport function refsSorter<T extends Generated>(a: T, b: T): number {\n if (Object.keys(a.import.refs)?.length < Object.keys(b.import.refs)?.length) {\n return -1\n }\n if (Object.keys(a.import.refs)?.length > Object.keys(b.import.refs)?.length) {\n return 1\n }\n return 0\n}\n"]}
1
+ {"version":3,"sources":["../src/utils/getComments.ts","../src/utils/getParams.ts"],"names":["URLPath","transformers","isParameterObject","camelCase"],"mappings":";;;;;;;;;;;;AAKO,SAAS,YAAY,SAAgC,EAAA;AAC1D,EAAO,OAAA;AAAA,IACL,UAAU,cAAe,EAAA,IAAK,CAAgB,aAAA,EAAA,SAAA,CAAU,gBAAgB,CAAA,CAAA;AAAA,IACxE,UAAU,UAAW,EAAA,IAAK,CAAY,SAAA,EAAA,SAAA,CAAU,YAAY,CAAA,CAAA;AAAA,IAC5D,SAAA,CAAU,QAAQ,CAAS,MAAA,EAAA,IAAIA,cAAQ,SAAU,CAAA,IAAI,EAAE,GAAG,CAAA,CAAA;AAAA,IAC1D,SAAA,CAAU,cAAkB,IAAA,aAAA;AAAA,GAC9B,CACG,MAAO,CAAA,OAAO,CACd,CAAA,GAAA,CAAI,CAAC,IAAS,KAAAC,6BAAA,CAAa,IAAK,CAAA,IAAI,CAAC,CAAA,CAAA;AAC1C,CAAA;ACFO,SAAS,aACd,eACA,EAAA;AAAA,EACE,KAAQ,GAAA,KAAA;AAAA,EACR,QAAA;AACF,CAAA,GAGI,EACiB,EAAA;AACrB,EAAI,IAAA,CAAC,mBAAmB,CAAC,eAAA,CAAgB,OAAO,UAAc,IAAA,CAAC,gBAAgB,IAAM,EAAA;AACnF,IAAA,OAAO,EAAC,CAAA;AAAA,GACV;AAEA,EAAO,OAAA,MAAA,CAAO,OAAQ,CAAA,eAAA,CAAgB,MAAO,CAAA,UAAU,CAAE,CAAA,GAAA,CAAI,CAAC,CAAC,IAAM,EAAA,MAAM,CAAuC,KAAA;AAChH,IAAM,MAAA,OAAA,GAAUC,sBAAkB,MAAM,CAAA,CAAA;AACxC,IAAA,MAAM,IAA0B,GAAA;AAAA,MAC9B,IAAA;AAAA,MACA,OAAA,EAAS,CAAC,CAAC,IAAA;AAAA,MACX,QAAA,EAAU,OAAU,GAAA,MAAA,CAAO,QAAW,GAAA,IAAA;AAAA,MACtC,MAAM,KAAQ,GAAA,CAAA,EAAG,gBAAgB,IAAI,CAAA,EAAA,EAAK,IAAI,CAAO,EAAA,CAAA,GAAA,KAAA,CAAA;AAAA,KACvD,CAAA;AAEA,IAAO,OAAA,QAAA,GAAW,QAAS,CAAA,IAAI,CAAI,GAAA,IAAA,CAAA;AAAA,GACpC,CAAA,CAAA;AACH,CAAA;AAEO,SAAS,aACd,CAAA,eAAA,EACA,OAGI,GAAA,EACJ,EAAA;AACA,EAAA,OAAO,aAAa,eAAiB,EAAA,OAAO,EAAE,MAAO,CAAA,CAAC,KAAK,IAAS,KAAA;AAClE,IAAI,IAAA,IAAA,CAAK,IAAQ,IAAA,IAAA,CAAK,OAAS,EAAA;AAC7B,MAAA,GAAA,CAAIC,sBAAU,CAAA,IAAA,CAAK,IAAI,CAAC,CAAI,GAAA;AAAA,QAC1B,SAAS,IAAK,CAAA,OAAA;AAAA,QACd,MAAM,IAAK,CAAA,IAAA;AAAA,QACX,QAAA,EAAU,CAAC,IAAK,CAAA,QAAA;AAAA,OAClB,CAAA;AAAA,KACF;AAEA,IAAO,OAAA,GAAA,CAAA;AAAA,GACT,EAAG,EAAY,CAAA,CAAA;AACjB","file":"utils.cjs","sourcesContent":["import transformers from '@kubb/core/transformers'\nimport { URLPath } from '@kubb/core/utils'\n\nimport type { Operation } from '@kubb/oas'\n\nexport function getComments(operation: Operation): string[] {\n return [\n operation.getDescription() && `@description ${operation.getDescription()}`,\n operation.getSummary() && `@summary ${operation.getSummary()}`,\n operation.path && `@link ${new URLPath(operation.path).URL}`,\n operation.isDeprecated() && '@deprecated',\n ]\n .filter(Boolean)\n .map((text) => transformers.trim(text))\n}\n","import { isParameterObject } from '@kubb/oas'\n\nimport { camelCase } from '@kubb/core/transformers'\nimport type { FunctionParamsAST } from '@kubb/core/utils'\nimport type { OasTypes } from '@kubb/oas'\nimport type { Params } from '@kubb/react/types'\nimport type { OperationSchema } from '../types.ts'\n/**\n *\n * @deprecated\n * TODO move to operationManager hook\n */\nexport function getASTParams(\n operationSchema: OperationSchema | undefined,\n {\n typed = false,\n override,\n }: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n): FunctionParamsAST[] {\n if (!operationSchema || !operationSchema.schema.properties || !operationSchema.name) {\n return []\n }\n\n return Object.entries(operationSchema.schema.properties).map(([name, schema]: [string, OasTypes.SchemaObject]) => {\n const isParam = isParameterObject(schema)\n const data: FunctionParamsAST = {\n name,\n enabled: !!name,\n required: isParam ? schema.required : true,\n type: typed ? `${operationSchema.name}[\"${name}\"]` : undefined,\n }\n\n return override ? override(data) : data\n })\n}\n\nexport function getPathParams(\n operationSchema: OperationSchema | undefined,\n options: {\n typed?: boolean\n override?: (data: FunctionParamsAST) => FunctionParamsAST\n } = {},\n) {\n return getASTParams(operationSchema, options).reduce((acc, curr) => {\n if (curr.name && curr.enabled) {\n acc[camelCase(curr.name)] = {\n default: curr.default,\n type: curr.type,\n optional: !curr.required,\n }\n }\n\n return acc\n }, {} as Params)\n}\n"]}
package/dist/utils.d.cts CHANGED
@@ -2,7 +2,7 @@ import { Operation, Oas, SchemaObject, OpenAPIV3, OpenAPIV3_1 } from '@kubb/oas'
2
2
  export { isOptional } from '@kubb/oas';
3
3
  import { FunctionParamsAST } from '@kubb/core/utils';
4
4
  import { Params } from '@kubb/react/types';
5
- import { v as OperationSchema, t as Refs } from './OperationGenerator-B5CoXmjA.cjs';
5
+ import { v as OperationSchema } from './OperationGenerator-B5CoXmjA.cjs';
6
6
  export { z as GetSchemasProps, B as getSchemas } from './OperationGenerator-B5CoXmjA.cjs';
7
7
  import { FormatOptions } from '@kubb/oas/parser';
8
8
  import { Config } from '@kubb/core';
@@ -42,14 +42,6 @@ type SchemaResult<TWithRef extends boolean = false> = {
42
42
  };
43
43
  declare function getSchemaFactory<TWithRef extends boolean = false>(oas: Oas): (schema?: SchemaObject) => SchemaResult<TWithRef>;
44
44
 
45
- type Generated = {
46
- import: {
47
- refs: Refs;
48
- name: string;
49
- };
50
- };
51
- declare function refsSorter<T extends Generated>(a: T, b: T): number;
52
-
53
45
  declare function parseFromConfig(config: Config, options?: FormatOptions, oasClass?: typeof Oas): Promise<Oas>;
54
46
 
55
- export { getASTParams, getComments, getPathParams, getSchemaFactory, parseFromConfig, refsSorter };
47
+ export { getASTParams, getComments, getPathParams, getSchemaFactory, parseFromConfig };
package/dist/utils.d.ts CHANGED
@@ -2,7 +2,7 @@ import { Operation, Oas, SchemaObject, OpenAPIV3, OpenAPIV3_1 } from '@kubb/oas'
2
2
  export { isOptional } from '@kubb/oas';
3
3
  import { FunctionParamsAST } from '@kubb/core/utils';
4
4
  import { Params } from '@kubb/react/types';
5
- import { v as OperationSchema, t as Refs } from './OperationGenerator-B5CoXmjA.js';
5
+ import { v as OperationSchema } from './OperationGenerator-B5CoXmjA.js';
6
6
  export { z as GetSchemasProps, B as getSchemas } from './OperationGenerator-B5CoXmjA.js';
7
7
  import { FormatOptions } from '@kubb/oas/parser';
8
8
  import { Config } from '@kubb/core';
@@ -42,14 +42,6 @@ type SchemaResult<TWithRef extends boolean = false> = {
42
42
  };
43
43
  declare function getSchemaFactory<TWithRef extends boolean = false>(oas: Oas): (schema?: SchemaObject) => SchemaResult<TWithRef>;
44
44
 
45
- type Generated = {
46
- import: {
47
- refs: Refs;
48
- name: string;
49
- };
50
- };
51
- declare function refsSorter<T extends Generated>(a: T, b: T): number;
52
-
53
45
  declare function parseFromConfig(config: Config, options?: FormatOptions, oasClass?: typeof Oas): Promise<Oas>;
54
46
 
55
- export { getASTParams, getComments, getPathParams, getSchemaFactory, parseFromConfig, refsSorter };
47
+ export { getASTParams, getComments, getPathParams, getSchemaFactory, parseFromConfig };
package/dist/utils.js CHANGED
@@ -1,15 +1,10 @@
1
- export { getSchemaFactory, getSchemas, parseFromConfig } from './chunk-XIFGKAM3.js';
2
- import { init_esm_shims } from './chunk-FGOPORE3.js';
1
+ export { parseFromConfig } from './chunk-THGCWF2O.js';
2
+ export { getSchemaFactory, getSchemas } from './chunk-DFQJ57GH.js';
3
3
  import transformers, { camelCase } from '@kubb/core/transformers';
4
4
  import { URLPath } from '@kubb/core/utils';
5
5
  import { isParameterObject } from '@kubb/oas';
6
6
  export { isOptional } from '@kubb/oas';
7
7
 
8
- // src/utils/index.ts
9
- init_esm_shims();
10
-
11
- // src/utils/getComments.ts
12
- init_esm_shims();
13
8
  function getComments(operation) {
14
9
  return [
15
10
  operation.getDescription() && `@description ${operation.getDescription()}`,
@@ -18,9 +13,6 @@ function getComments(operation) {
18
13
  operation.isDeprecated() && "@deprecated"
19
14
  ].filter(Boolean).map((text) => transformers.trim(text));
20
15
  }
21
-
22
- // src/utils/getParams.ts
23
- init_esm_shims();
24
16
  function getASTParams(operationSchema, {
25
17
  typed = false,
26
18
  override
@@ -52,18 +44,6 @@ function getPathParams(operationSchema, options = {}) {
52
44
  }, {});
53
45
  }
54
46
 
55
- // src/utils/refSorter.ts
56
- init_esm_shims();
57
- function refsSorter(a, b) {
58
- if (Object.keys(a.import.refs)?.length < Object.keys(b.import.refs)?.length) {
59
- return -1;
60
- }
61
- if (Object.keys(a.import.refs)?.length > Object.keys(b.import.refs)?.length) {
62
- return 1;
63
- }
64
- return 0;
65
- }
66
-
67
- export { getASTParams, getComments, getPathParams, refsSorter };
47
+ export { getASTParams, getComments, getPathParams };
68
48
  //# sourceMappingURL=utils.js.map
69
49
  //# sourceMappingURL=utils.js.map