@kubb/plugin-zod 3.0.0-alpha.2 → 3.0.0-alpha.3

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.
@@ -1,11 +1,77 @@
1
- "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// src/components/Schema.tsx
2
- var _components = require('@kubb/plugin-oas/components');
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { newObj[key] = obj[key]; } } } newObj.default = obj; return newObj; } } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }// src/components/Operations.tsx
2
+ var _hooks = require('@kubb/plugin-oas/hooks');
3
3
  var _react = require('@kubb/react');
4
+ var _transformers = require('@kubb/core/transformers'); var _transformers2 = _interopRequireDefault(_transformers);
5
+ var _jsxruntime = require('@kubb/react/jsx-runtime');
6
+ function Template({ operationsName, pathsName, operations }) {
7
+ const { groupSchemasByName } = _hooks.useOperationManager.call(void 0, );
8
+ const transformedOperations = operations.map((operation) => ({ operation, data: groupSchemasByName(operation, { type: "function" }) }));
9
+ const operationsJSON = transformedOperations.reduce(
10
+ (prev, acc) => {
11
+ prev[`"${acc.operation.getOperationId()}"`] = acc.data;
12
+ return prev;
13
+ },
14
+ {}
15
+ );
16
+ const pathsJSON = transformedOperations.reduce(
17
+ (prev, acc) => {
18
+ prev[`"${acc.operation.path}"`] = {
19
+ ...prev[`"${acc.operation.path}"`] || {},
20
+ [acc.operation.method]: `operations["${acc.operation.getOperationId()}"]`
21
+ };
22
+ return prev;
23
+ },
24
+ {}
25
+ );
26
+ return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
27
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Const, { export: true, name: operationsName, asConst: true, children: `{${_transformers2.default.stringifyObject(operationsJSON)}}` }),
28
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Const, { export: true, name: pathsName, asConst: true, children: `{${_transformers2.default.stringifyObject(pathsJSON)}}` })
29
+ ] });
30
+ }
31
+ function RootTemplate({ children }) {
32
+ const {
33
+ mode,
34
+ pluginManager,
35
+ plugin: {
36
+ key: pluginKey,
37
+ options: { extName }
38
+ }
39
+ } = _react.useApp.call(void 0, );
40
+ const { getFile } = _hooks.useOperationManager.call(void 0, );
41
+ const operations = _hooks.useOperations.call(void 0, );
42
+ const { groupSchemasByName } = _hooks.useOperationManager.call(void 0, );
43
+ const transformedOperations = operations.map((operation) => ({ operation, data: groupSchemasByName(operation, { type: "function" }) }));
44
+ const file = pluginManager.getFile({ name: "operations", extName: ".ts", pluginKey });
45
+ const imports = Object.entries(transformedOperations).map(([_key, { data, operation }], index) => {
46
+ const names = [data.request, ...Object.values(data.responses), ...Object.values(data.parameters)].filter(Boolean);
47
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.File.Import, { extName, name: names, root: file.path, path: getFile(operation).path }, index);
48
+ }).filter(Boolean);
49
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Parser, { language: "typescript", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _react.File, { baseName: file.baseName, path: file.path, meta: file.meta, exportable: false, children: [
50
+ mode === "split" && imports,
51
+ /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.File.Source, { children })
52
+ ] }) });
53
+ }
54
+ var defaultTemplates = { default: Template, root: RootTemplate };
55
+ function Operations({ Template: Template3 = defaultTemplates.default }) {
56
+ const operations = _hooks.useOperations.call(void 0, );
57
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Template3, { operationsName: "operations", pathsName: "paths", operations });
58
+ }
59
+ Operations.File = function(props) {
60
+ const templates = { ...defaultTemplates, ...props.templates };
61
+ const Template3 = templates.default;
62
+ const RootTemplate2 = templates.root;
63
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, RootTemplate2, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Operations, { Template: Template3 }) });
64
+ };
65
+ Operations.templates = defaultTemplates;
66
+
67
+ // src/components/Schema.tsx
68
+ var _components = require('@kubb/plugin-oas/components');
69
+
4
70
 
5
71
  // ../plugin-ts/src/plugin.ts
6
72
  var _path = require('path'); var _path2 = _interopRequireDefault(_path);
7
73
  var _core = require('@kubb/core');
8
- var _transformers = require('@kubb/core/transformers'); var _transformers2 = _interopRequireDefault(_transformers);
74
+
9
75
  var _utils = require('@kubb/core/utils');
10
76
  var _pluginoas = require('@kubb/plugin-oas');
11
77
 
@@ -16,21 +82,21 @@ var _pluginoas = require('@kubb/plugin-oas');
16
82
 
17
83
  // ../plugin-ts/src/components/OasType.tsx
18
84
 
19
- var _hooks = require('@kubb/plugin-oas/hooks');
20
- var _jsxruntime = require('@kubb/react/jsx-runtime');
21
- function Template({ name, typeName, api }) {
85
+
86
+
87
+ function Template2({ name, typeName, api }) {
22
88
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
23
89
  `export const ${name} = ${JSON.stringify(api, void 0, 2)} as const`,
24
90
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, "br", {}),
25
91
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Type, { name: typeName, export: true, children: `Infer<typeof ${name}>` })
26
92
  ] });
27
93
  }
28
- var defaultTemplates = { default: Template };
29
- function OasType({ name, typeName, Template: Template3 = defaultTemplates.default }) {
94
+ var defaultTemplates2 = { default: Template2 };
95
+ function OasType({ name, typeName, Template: Template3 = defaultTemplates2.default }) {
30
96
  const oas = _hooks.useOas.call(void 0, );
31
97
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Template3, { name, typeName, api: oas.api });
32
98
  }
33
- OasType.File = function({ name, typeName, templates = defaultTemplates }) {
99
+ OasType.File = function({ name, typeName, templates = defaultTemplates2 }) {
34
100
  const {
35
101
  pluginManager,
36
102
  plugin: { key: pluginKey }
@@ -42,7 +108,7 @@ OasType.File = function({ name, typeName, templates = defaultTemplates }) {
42
108
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.File.Source, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, OasType, { Template: Template3, name, typeName }) })
43
109
  ] }) });
44
110
  };
45
- OasType.templates = defaultTemplates;
111
+ OasType.templates = defaultTemplates2;
46
112
 
47
113
  // ../plugin-ts/src/components/OperationSchema.tsx
48
114
 
@@ -873,9 +939,7 @@ function parse2(parent, current, options) {
873
939
 
874
940
  var _utils3 = require('@kubb/plugin-oas/utils');
875
941
 
876
- // src/OperationGenerator.tsx
877
-
878
-
942
+ // src/SchemaGenerator.tsx
879
943
 
880
944
 
881
945
  // src/components/OperationSchema.tsx
@@ -884,27 +948,6 @@ var _utils3 = require('@kubb/plugin-oas/utils');
884
948
 
885
949
 
886
950
 
887
- // src/SchemaGenerator.tsx
888
-
889
-
890
-
891
-
892
- var SchemaGenerator3 = class extends _pluginoas.SchemaGenerator {
893
- async schema(name, schema, options) {
894
- const { oas, pluginManager, plugin, mode, output } = this.context;
895
- const root = _react.createRoot.call(void 0, {
896
- logger: pluginManager.logger
897
- });
898
- const tree = this.parse({ schema, name });
899
- root.render(
900
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.App, { pluginManager, plugin: { ...plugin, options }, mode, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _components.Oas, { oas, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _components.Oas.Schema, { name, value: schema, tree, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Schema2.File, {}) }) }) })
901
- );
902
- return root.files;
903
- }
904
- };
905
-
906
- // src/components/OperationSchema.tsx
907
-
908
951
  function OperationSchema2({ description, keysToOmit }) {
909
952
  return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Schema2, { keysToOmit, withTypeAnnotation: false, description });
910
953
  }
@@ -915,7 +958,7 @@ OperationSchema2.File = function({}) {
915
958
  const operation = _hooks.useOperation.call(void 0, );
916
959
  const file = getFile(operation);
917
960
  const schemas = getSchemas(operation);
918
- const generator = new SchemaGenerator3(plugin.options, {
961
+ const generator = new (0, _pluginoas.SchemaGenerator)(plugin.options, {
919
962
  oas,
920
963
  plugin,
921
964
  pluginManager,
@@ -938,100 +981,23 @@ OperationSchema2.File = function({}) {
938
981
  ] }) });
939
982
  };
940
983
 
941
- // src/components/Operations.tsx
942
-
943
-
944
-
984
+ // src/SchemaGenerator.tsx
945
985
 
946
- function Template2({ operationsName, pathsName, operations }) {
947
- const { groupSchemasByName } = _hooks.useOperationManager.call(void 0, );
948
- const transformedOperations = operations.map((operation) => ({ operation, data: groupSchemasByName(operation, { type: "function" }) }));
949
- const operationsJSON = transformedOperations.reduce(
950
- (prev, acc) => {
951
- prev[`"${acc.operation.getOperationId()}"`] = acc.data;
952
- return prev;
953
- },
954
- {}
955
- );
956
- const pathsJSON = transformedOperations.reduce(
957
- (prev, acc) => {
958
- prev[`"${acc.operation.path}"`] = {
959
- ...prev[`"${acc.operation.path}"`] || {},
960
- [acc.operation.method]: `operations["${acc.operation.getOperationId()}"]`
961
- };
962
- return prev;
963
- },
964
- {}
965
- );
966
- return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _jsxruntime.Fragment, { children: [
967
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Const, { export: true, name: operationsName, asConst: true, children: `{${_transformers2.default.stringifyObject(operationsJSON)}}` }),
968
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Const, { export: true, name: pathsName, asConst: true, children: `{${_transformers2.default.stringifyObject(pathsJSON)}}` })
969
- ] });
970
- }
971
- function RootTemplate({ children }) {
972
- const {
973
- mode,
974
- pluginManager,
975
- plugin: {
976
- key: pluginKey,
977
- options: { extName }
986
+ var zodParser = _pluginoas.createReactParser.call(void 0, {
987
+ name: "plugin-zod",
988
+ Operations({ options }) {
989
+ if (!options.templates.operations) {
990
+ return null;
978
991
  }
979
- } = _react.useApp.call(void 0, );
980
- const { getFile } = _hooks.useOperationManager.call(void 0, );
981
- const operations = _hooks.useOperations.call(void 0, );
982
- const { groupSchemasByName } = _hooks.useOperationManager.call(void 0, );
983
- const transformedOperations = operations.map((operation) => ({ operation, data: groupSchemasByName(operation, { type: "function" }) }));
984
- const file = pluginManager.getFile({ name: "operations", extName: ".ts", pluginKey });
985
- const imports = Object.entries(transformedOperations).map(([_key, { data, operation }], index) => {
986
- const names = [data.request, ...Object.values(data.responses), ...Object.values(data.parameters)].filter(Boolean);
987
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.File.Import, { extName, name: names, root: file.path, path: getFile(operation).path }, index);
988
- }).filter(Boolean);
989
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.Parser, { language: "typescript", children: /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _react.File, { baseName: file.baseName, path: file.path, meta: file.meta, exportable: false, children: [
990
- mode === "split" && imports,
991
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.File.Source, { children })
992
- ] }) });
993
- }
994
- var defaultTemplates2 = { default: Template2, root: RootTemplate };
995
- function Operations({ Template: Template3 = defaultTemplates2.default }) {
996
- const operations = _hooks.useOperations.call(void 0, );
997
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Template3, { operationsName: "operations", pathsName: "paths", operations });
998
- }
999
- Operations.File = function(props) {
1000
- const templates = { ...defaultTemplates2, ...props.templates };
1001
- const Template3 = templates.default;
1002
- const RootTemplate2 = templates.root;
1003
- return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, RootTemplate2, { children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Operations, { Template: Template3 }) });
1004
- };
1005
- Operations.templates = defaultTemplates2;
1006
-
1007
- // src/OperationGenerator.tsx
1008
-
1009
- var OperationGenerator2 = class extends _pluginoas.OperationGenerator {
1010
- async all(operations, _operationsByMethod) {
1011
- const { pluginManager, oas, plugin, mode } = this.context;
1012
- const root = _react.createRoot.call(void 0, {
1013
- logger: pluginManager.logger
1014
- });
1015
- const templates = {
1016
- operations: Operations.templates,
1017
- ...this.options.templates
1018
- };
1019
- root.render(
1020
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.App, { pluginManager, plugin, mode, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _components.Oas, { oas, operations, generator: this, children: templates.operations && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Operations.File, { templates: templates.operations }) }) })
1021
- );
1022
- return root.files;
1023
- }
1024
- async operation(operation, options) {
1025
- const { oas, pluginManager, plugin, mode } = this.context;
1026
- const root = _react.createRoot.call(void 0, {
1027
- logger: pluginManager.logger
1028
- });
1029
- root.render(
1030
- /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _react.App, { pluginManager, plugin: { ...plugin, options }, mode, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _components.Oas, { oas, operations: [operation], generator: this, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _components.Oas.Operation, { operation, children: /* @__PURE__ */ _jsxruntime.jsx.call(void 0, OperationSchema2.File, {}) }) }) })
1031
- );
1032
- return root.files;
992
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Operations.File, { templates: options.templates.operations });
993
+ },
994
+ Operation() {
995
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, OperationSchema2.File, {});
996
+ },
997
+ Schema({ schema, name }) {
998
+ return /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Schema2.File, {});
1033
999
  }
1034
- };
1000
+ });
1035
1001
 
1036
1002
  // src/plugin.ts
1037
1003
  var pluginZodName = "plugin-zod";
@@ -1104,7 +1070,7 @@ var pluginZod = _core.createPlugin.call(void 0, (options) => {
1104
1070
  const oas = await swaggerPlugin.context.getOas();
1105
1071
  const root = _path2.default.resolve(this.config.root, this.config.output.path);
1106
1072
  const mode = _core.FileManager.getMode(_path2.default.resolve(root, output.path));
1107
- const schemaGenerator = new SchemaGenerator3(this.plugin.options, {
1073
+ const schemaGenerator = new (0, _pluginoas.SchemaGenerator)(this.plugin.options, {
1108
1074
  oas,
1109
1075
  pluginManager: this.pluginManager,
1110
1076
  plugin: this.plugin,
@@ -1114,9 +1080,9 @@ var pluginZod = _core.createPlugin.call(void 0, (options) => {
1114
1080
  mode,
1115
1081
  output: output.path
1116
1082
  });
1117
- const schemaFiles = await schemaGenerator.build();
1083
+ const schemaFiles = await schemaGenerator.build(zodParser);
1118
1084
  await this.addFile(...schemaFiles);
1119
- const operationGenerator = new OperationGenerator2(this.plugin.options, {
1085
+ const operationGenerator = new (0, _pluginoas.OperationGenerator)(this.plugin.options, {
1120
1086
  oas,
1121
1087
  pluginManager: this.pluginManager,
1122
1088
  plugin: this.plugin,
@@ -1126,7 +1092,7 @@ var pluginZod = _core.createPlugin.call(void 0, (options) => {
1126
1092
  override,
1127
1093
  mode
1128
1094
  });
1129
- const operationFiles = await operationGenerator.build();
1095
+ const operationFiles = await operationGenerator.build(zodParser);
1130
1096
  await this.addFile(...operationFiles);
1131
1097
  },
1132
1098
  async buildEnd() {
@@ -1229,10 +1195,7 @@ Schema2.File = function({}) {
1229
1195
  options: { typed }
1230
1196
  }
1231
1197
  } = _react.useApp.call(void 0, );
1232
- const { tree, schema } = _hooks.useSchema.call(void 0, );
1233
- const withData = tree.some(
1234
- (schema2) => schema2.keyword === _pluginoas.schemaKeywords.array || schema2.keyword === _pluginoas.schemaKeywords.and || schema2.keyword === _pluginoas.schemaKeywords.object || schema2.keyword === _pluginoas.schemaKeywords.union || schema2.keyword === _pluginoas.schemaKeywords.tuple
1235
- );
1198
+ const { schema } = _hooks.useSchema.call(void 0, );
1236
1199
  const withTypeAnnotation = !!typed;
1237
1200
  return /* @__PURE__ */ _jsxruntime.jsxs.call(void 0, _components.Oas.Schema.File, { output: pluginManager.config.output.path, children: [
1238
1201
  /* @__PURE__ */ _jsxruntime.jsx.call(void 0, Schema2.Imports, {}),
@@ -1275,5 +1238,5 @@ Schema2.Imports = () => {
1275
1238
 
1276
1239
 
1277
1240
 
1278
- exports.Schema = Schema2; exports.OperationSchema = OperationSchema2; exports.Operations = Operations; exports.pluginZodName = pluginZodName; exports.pluginZod = pluginZod;
1279
- //# sourceMappingURL=chunk-KP7GRUCO.cjs.map
1241
+ exports.Operations = Operations; exports.Schema = Schema2; exports.OperationSchema = OperationSchema2; exports.pluginZodName = pluginZodName; exports.pluginZod = pluginZod;
1242
+ //# sourceMappingURL=chunk-7X3NWYUN.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["/home/runner/work/kubb/kubb/packages/plugin-zod/dist/chunk-7X3NWYUN.cjs","../src/components/Operations.tsx","../src/components/Schema.tsx","../../plugin-ts/src/plugin.ts","../../plugin-ts/src/OperationGenerator.tsx","../../plugin-ts/src/components/OasType.tsx","../../plugin-ts/src/components/OperationSchema.tsx","../../plugin-ts/src/SchemaGenerator.tsx","../../plugin-ts/src/components/Schema.tsx","../../plugin-ts/src/parser/index.ts","../src/parser/index.ts","../src/plugin.ts","../src/SchemaGenerator.tsx","../src/components/OperationSchema.tsx"],"names":["Template","RootTemplate","jsxs","Fragment","jsx","defaultTemplates","useApp","Parser","File","transformers","parse","createPlugin","useOperationManager","Const","schemaKeywords"],"mappings":"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","file":"/home/runner/work/kubb/kubb/packages/plugin-zod/dist/chunk-7X3NWYUN.cjs","sourcesContent":[null,"import { useOperationManager, useOperations } from '@kubb/plugin-oas/hooks'\nimport { Const, File, Parser, useApp } from '@kubb/react'\n\nimport transformers from '@kubb/core/transformers'\nimport type { HttpMethod, Operation } from '@kubb/oas'\nimport type { KubbNode } from '@kubb/react'\nimport type { ComponentProps, ComponentType } from 'react'\nimport type { FileMeta, PluginZod } from '../types.ts'\n\ntype TemplateProps = {\n /**\n * Name of the function\n */\n operationsName: string\n /**\n * Name of the function\n */\n pathsName: string\n operations: Operation[]\n}\n\nfunction Template({ operationsName, pathsName, operations }: TemplateProps): KubbNode {\n const { groupSchemasByName } = useOperationManager()\n const transformedOperations = operations.map((operation) => ({ operation, data: groupSchemasByName(operation, { type: 'function' }) }))\n\n const operationsJSON = transformedOperations.reduce(\n (prev, acc) => {\n prev[`\"${acc.operation.getOperationId()}\"`] = acc.data\n\n return prev\n },\n {} as Record<string, unknown>,\n )\n\n const pathsJSON = transformedOperations.reduce(\n (prev, acc) => {\n prev[`\"${acc.operation.path}\"`] = {\n ...(prev[`\"${acc.operation.path}\"`] || ({} as Record<HttpMethod, string>)),\n [acc.operation.method]: `operations[\"${acc.operation.getOperationId()}\"]`,\n }\n\n return prev\n },\n {} as Record<string, Record<HttpMethod, string>>,\n )\n\n return (\n <>\n <Const export name={operationsName} asConst>\n {`{${transformers.stringifyObject(operationsJSON)}}`}\n </Const>\n <Const export name={pathsName} asConst>\n {`{${transformers.stringifyObject(pathsJSON)}}`}\n </Const>\n </>\n )\n}\n\ntype RootTemplateProps = {\n children?: React.ReactNode\n}\n\nfunction RootTemplate({ children }: RootTemplateProps) {\n const {\n mode,\n pluginManager,\n plugin: {\n key: pluginKey,\n options: { extName },\n },\n } = useApp<PluginZod>()\n const { getFile } = useOperationManager()\n const operations = useOperations()\n const { groupSchemasByName } = useOperationManager()\n const transformedOperations = operations.map((operation) => ({ operation, data: groupSchemasByName(operation, { type: 'function' }) }))\n\n const file = pluginManager.getFile({ name: 'operations', extName: '.ts', pluginKey })\n const imports = Object.entries(transformedOperations)\n .map(([_key, { data, operation }], index) => {\n const names = [data.request, ...Object.values(data.responses), ...Object.values(data.parameters)].filter(Boolean)\n\n return <File.Import key={index} extName={extName} name={names} root={file.path} path={getFile(operation).path} />\n })\n .filter(Boolean)\n\n return (\n <Parser language=\"typescript\">\n <File<FileMeta> baseName={file.baseName} path={file.path} meta={file.meta} exportable={false}>\n {mode === 'split' && imports}\n <File.Source>{children}</File.Source>\n </File>\n </Parser>\n )\n}\n\nconst defaultTemplates = { default: Template, root: RootTemplate } as const\n\ntype Templates = Partial<typeof defaultTemplates>\n\ntype Props = {\n /**\n * This will make it possible to override the default behaviour.\n */\n Template?: ComponentType<ComponentProps<typeof Template>>\n}\n\nexport function Operations({ Template = defaultTemplates.default }: Props): KubbNode {\n const operations = useOperations()\n\n return <Template operationsName=\"operations\" pathsName=\"paths\" operations={operations} />\n}\n\ntype FileProps = {\n /**\n * This will make it possible to override the default behaviour.\n */\n templates?: Templates\n}\n\nOperations.File = function (props: FileProps): KubbNode {\n const templates = { ...defaultTemplates, ...props.templates }\n\n const Template = templates.default\n const RootTemplate = templates.root\n\n return (\n <RootTemplate>\n <Operations Template={Template} />\n </RootTemplate>\n )\n}\n\nOperations.templates = defaultTemplates\n","import { Oas } from '@kubb/plugin-oas/components'\nimport { Const, File, Type, useApp, useFile } from '@kubb/react'\nimport { pluginTsName } from '@kubb/plugin-ts'\n\nimport transformers from '@kubb/core/transformers'\nimport { isKeyword, schemaKeywords } from '@kubb/plugin-oas'\nimport { useSchema } from '@kubb/plugin-oas/hooks'\nimport type { ReactNode } from 'react'\nimport * as parserZod from '../parser/index.ts'\nimport { pluginZodName } from '../plugin.ts'\nimport type { PluginZod } from '../types.ts'\n\ntype Props = {\n description?: string\n withTypeAnnotation?: boolean\n keysToOmit?: string[]\n}\n\nexport function Schema(props: Props): ReactNode {\n const { keysToOmit, withTypeAnnotation, description } = props\n const { tree, name } = useSchema()\n const {\n pluginManager,\n plugin: {\n options: { mapper, typedSchema, coercion },\n },\n } = useApp<PluginZod>()\n\n // all checks are also inside this.schema(React)\n const resolvedName = pluginManager.resolveName({\n name,\n pluginKey: [pluginZodName],\n type: 'function',\n })\n const resolvedTypeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginZodName],\n type: 'type',\n })\n\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n\n if (!tree.length) {\n return (\n <Const\n name={resolvedName}\n export\n JSDoc={{\n comments: [description ? `@description ${transformers.jsStringEscape(description)}` : undefined].filter(Boolean),\n }}\n >\n undefined\n </Const>\n )\n }\n\n const hasTuple = tree.some((item) => isKeyword(item, schemaKeywords.tuple))\n\n const output = parserZod\n .sort(tree)\n .filter((item) => {\n if (hasTuple && (isKeyword(item, schemaKeywords.min) || isKeyword(item, schemaKeywords.max))) {\n return false\n }\n\n return true\n })\n .map((item) => parserZod.parse(undefined, item, { name, typeName, description, mapper, coercion, keysToOmit }))\n .filter(Boolean)\n .join('')\n\n const suffix = output.endsWith('.nullable()') ? '.unwrap().and' : '.and'\n\n return (\n <>\n <Const\n export\n name={resolvedName}\n JSDoc={{\n comments: [description ? `@description ${transformers.jsStringEscape(description)}` : undefined].filter(Boolean),\n }}\n >\n {[\n output,\n keysToOmit?.length ? `${suffix}(z.object({ ${keysToOmit.map((key) => `${key}: z.never()`).join(',')} }))` : undefined,\n withTypeAnnotation && typeName ? ` as z.ZodType<${typeName}>` : '',\n ]\n .filter(Boolean)\n .join('') || ''}\n </Const>\n {typedSchema && (\n <Type export name={resolvedTypeName}>\n {`z.infer<typeof ${resolvedName}>`}\n </Type>\n )}\n </>\n )\n}\n\ntype FileProps = {}\n\nSchema.File = function ({}: FileProps): ReactNode {\n const {\n pluginManager,\n plugin: {\n options: { typed },\n },\n } = useApp<PluginZod>()\n const { schema } = useSchema()\n\n const withTypeAnnotation = !!typed\n\n return (\n <Oas.Schema.File output={pluginManager.config.output.path}>\n <Schema.Imports />\n <File.Source>\n <Schema withTypeAnnotation={withTypeAnnotation} description={schema?.description} />\n </File.Source>\n </Oas.Schema.File>\n )\n}\nSchema.Imports = (): ReactNode => {\n const {\n pluginManager,\n plugin: {\n options: { typed, importPath },\n },\n } = useApp<PluginZod>()\n const { path: root } = useFile()\n const { name, tree, schema } = useSchema()\n\n // used for this.options.typed\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n\n const typeFileName = pluginManager.resolveName({\n name: name,\n pluginKey: [pluginTsName],\n type: 'file',\n })\n\n const typePath = pluginManager.resolvePath({\n baseName: typeFileName,\n pluginKey: [pluginTsName],\n })\n\n const withTypeAnnotation = !!typed\n\n return (\n <>\n <File.Import name={['z']} path={importPath} />\n {withTypeAnnotation && typeName && typePath && <File.Import isTypeOnly root={root} path={typePath} name={[typeName]} />}\n </>\n )\n}\n","import path from 'node:path'\n\nimport { FileManager, PluginManager, createPlugin } from '@kubb/core'\nimport { camelCase, pascalCase } from '@kubb/core/transformers'\nimport { renderTemplate } from '@kubb/core/utils'\nimport { pluginOasName } from '@kubb/plugin-oas'\n\nimport { OperationGenerator } from './OperationGenerator.tsx'\nimport { SchemaGenerator } from './SchemaGenerator.tsx'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas as SwaggerPluginOptions } from '@kubb/plugin-oas'\nimport type { PluginTs } from './types.ts'\n\nexport const pluginTsName = 'plugin-ts' satisfies PluginTs['name']\n\nexport const pluginTs = createPlugin<PluginTs>((options) => {\n const {\n output = { path: 'types' },\n group,\n exclude = [],\n include,\n override = [],\n enumType = 'asConst',\n enumSuffix = '',\n dateType = 'string',\n unknownType = 'any',\n optionalType = 'questionToken',\n transformers = {},\n oasType = false,\n mapper = {},\n } = options\n const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`\n\n return {\n name: pluginTsName,\n options: {\n extName: output.extName,\n transformers,\n dateType,\n optionalType,\n oasType,\n enumType,\n enumSuffix,\n // keep the used enumnames between SchemaGenerator and OperationGenerator per plugin(pluginKey)\n usedEnumNames: {},\n unknownType,\n override,\n mapper,\n },\n pre: [pluginOasName],\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 if (options?.tag && group?.type === 'tag') {\n const tag = camelCase(options.tag)\n\n return path.resolve(root, renderTemplate(template, { tag }), baseName)\n }\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n const resolvedName = pascalCase(name, { isFile: type === 'file' })\n\n if (type) {\n return transformers?.name?.(resolvedName, type) || resolvedName\n }\n\n return resolvedName\n },\n async buildStart() {\n const [swaggerPlugin]: [Plugin<SwaggerPluginOptions>] = PluginManager.getDependedPlugins<SwaggerPluginOptions>(this.plugins, [pluginOasName])\n\n const oas = await swaggerPlugin.context.getOas()\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = FileManager.getMode(path.resolve(root, output.path))\n\n const schemaGenerator = new SchemaGenerator(this.plugin.options, {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType: swaggerPlugin.context.contentType,\n include: undefined,\n override,\n mode,\n output: output.path,\n })\n\n const schemaFiles = await schemaGenerator.build()\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: swaggerPlugin.context.contentType,\n exclude,\n include,\n override,\n mode,\n })\n\n const operationFiles = await operationGenerator.build()\n await this.addFile(...operationFiles)\n },\n async buildEnd() {\n if (this.config.output.write === false) {\n return\n }\n\n const root = path.resolve(this.config.root, this.config.output.path)\n\n await this.fileManager.addIndexes({\n root,\n output,\n meta: { pluginKey: this.plugin.key },\n logger: this.logger,\n })\n },\n }\n})\n","import { OperationGenerator as Generator } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { App, createRoot } from '@kubb/react'\n\nimport { OasType } from './components/OasType.tsx'\nimport { OperationSchema } from './components/OperationSchema.tsx'\n\nimport type { Operation } from '@kubb/oas'\nimport type { OperationMethodResult } from '@kubb/plugin-oas'\nimport type { FileMeta, PluginTs } from './types.ts'\n\nexport class OperationGenerator extends Generator<PluginTs['resolvedOptions'], PluginTs> {\n async all(operations: Operation[]): OperationMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n root.render(\n <App pluginManager={pluginManager} plugin={plugin} mode={mode}>\n <Oas oas={oas} operations={operations} generator={this}>\n {plugin.options.oasType && <OasType.File name=\"oas\" typeName=\"Oas\" />}\n </Oas>\n </App>,\n )\n\n return root.files\n }\n\n async operation(operation: Operation, options: PluginTs['resolvedOptions']): OperationMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas} operations={[operation]} generator={this}>\n <Oas.Operation operation={operation}>\n <OperationSchema.File />\n </Oas.Operation>\n </Oas>\n </App>,\n )\n\n return root.files\n }\n}\n","import { Parser, File, Type, useApp } from '@kubb/react'\nimport { useOas } from '@kubb/plugin-oas/hooks'\n\nimport type { OasTypes } from '@kubb/oas'\nimport type { ReactNode } from 'react'\nimport type { FileMeta, PluginTs } from '../types.ts'\n\ntype TemplateProps = {\n /**\n * Name of the function\n */\n name: string\n typeName: string\n api: OasTypes.OASDocument\n}\n\nfunction Template({ name, typeName, api }: TemplateProps): ReactNode {\n return (\n <>\n {`export const ${name} = ${JSON.stringify(api, undefined, 2)} as const`}\n <br />\n <Type name={typeName} export>\n {`Infer<typeof ${name}>`}\n </Type>\n </>\n )\n}\n\nconst defaultTemplates = { default: Template } as const\n\ntype Props = {\n name: string\n typeName: string\n /**\n * This will make it possible to override the default behaviour.\n */\n Template?: React.ComponentType<React.ComponentProps<typeof Template>>\n}\n\nexport function OasType({ name, typeName, Template = defaultTemplates.default }: Props): ReactNode {\n const oas = useOas()\n\n return <Template name={name} typeName={typeName} api={oas.api} />\n}\n\ntype FileProps = {\n name: string\n typeName: string\n /**\n * This will make it possible to override the default behaviour.\n */\n templates?: typeof defaultTemplates\n}\n\nOasType.File = function ({ name, typeName, templates = defaultTemplates }: FileProps): ReactNode {\n const {\n pluginManager,\n plugin: { key: pluginKey },\n } = useApp<PluginTs>()\n const file = pluginManager.getFile({ name, extName: '.ts', pluginKey })\n\n const Template = templates.default\n\n return (\n <Parser language=\"typescript\">\n <File<FileMeta> baseName={file.baseName} path={file.path} meta={file.meta}>\n <File.Import name={['Infer']} path=\"@kubb/oas\" isTypeOnly />\n <File.Source>\n <OasType Template={Template} name={name} typeName={typeName} />\n </File.Source>\n </File>\n </Parser>\n )\n}\n\nOasType.templates = defaultTemplates\n","import transformers from '@kubb/core/transformers'\nimport { print } from '@kubb/parser-ts'\nimport * as factory from '@kubb/parser-ts/factory'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { useOas, useOperation, useOperationManager } from '@kubb/plugin-oas/hooks'\nimport { File, Parser, useApp } from '@kubb/react'\n\nimport { SchemaGenerator } from '../SchemaGenerator.tsx'\n\nimport type { PluginManager } from '@kubb/core'\nimport type { Operation } from '@kubb/oas'\nimport type { ts } from '@kubb/parser-ts'\nimport type { OperationSchema as OperationSchemaType } from '@kubb/plugin-oas'\nimport type { OperationSchemas } from '@kubb/plugin-oas'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport type { ReactNode } from 'react'\nimport type { FileMeta, PluginTs } from '../types.ts'\nimport { Schema } from './Schema.tsx'\n\nfunction printCombinedSchema({\n name,\n operation,\n schemas,\n pluginManager,\n}: { name: string; operation: Operation; schemas: OperationSchemas; pluginManager: PluginManager }): string {\n const properties: Record<string, ts.TypeNode> = {}\n\n if (schemas.response) {\n const identifier = pluginManager.resolveName({\n name: schemas.response.name,\n pluginKey: [pluginTsName],\n type: 'function',\n })\n properties['response'] = factory.createTypeReferenceNode(factory.createIdentifier(identifier), undefined)\n }\n\n if (schemas.request) {\n const identifier = pluginManager.resolveName({\n name: schemas.request.name,\n pluginKey: [pluginTsName],\n type: 'function',\n })\n properties['request'] = factory.createTypeReferenceNode(factory.createIdentifier(identifier), undefined)\n }\n\n if (schemas.pathParams) {\n const identifier = pluginManager.resolveName({\n name: schemas.pathParams.name,\n pluginKey: [pluginTsName],\n type: 'function',\n })\n properties['pathParams'] = factory.createTypeReferenceNode(factory.createIdentifier(identifier), undefined)\n }\n\n if (schemas.queryParams) {\n const identifier = pluginManager.resolveName({\n name: schemas.queryParams.name,\n pluginKey: [pluginTsName],\n type: 'function',\n })\n properties['queryParams'] = factory.createTypeReferenceNode(factory.createIdentifier(identifier), undefined)\n }\n\n if (schemas.headerParams) {\n const identifier = pluginManager.resolveName({\n name: schemas.headerParams.name,\n pluginKey: [pluginTsName],\n type: 'function',\n })\n properties['headerParams'] = factory.createTypeReferenceNode(factory.createIdentifier(identifier), undefined)\n }\n\n if (schemas.errors) {\n properties['errors'] = factory.createUnionDeclaration({\n nodes: schemas.errors.map((error) => {\n const identifier = pluginManager.resolveName({\n name: error.name,\n pluginKey: [pluginTsName],\n type: 'function',\n })\n\n return factory.createTypeReferenceNode(factory.createIdentifier(identifier), undefined)\n }),\n })!\n }\n\n const namespaceNode = factory.createTypeAliasDeclaration({\n name: operation.method === 'get' ? `${name}Query` : `${name}Mutation`,\n type: factory.createTypeLiteralNode(\n Object.keys(properties)\n .map((key) => {\n const type = properties[key]\n if (!type) {\n return undefined\n }\n\n return factory.createPropertySignature({\n name: transformers.pascalCase(key),\n type,\n })\n })\n .filter(Boolean),\n ),\n modifiers: [factory.modifiers.export],\n })\n\n return print(namespaceNode)\n}\n\ntype Props = {\n description?: string\n keysToOmit?: string[]\n}\n\nexport function OperationSchema({ keysToOmit, description }: Props): ReactNode {\n return <Schema keysToOmit={keysToOmit} description={description} />\n}\n\ntype FileProps = {}\n\nOperationSchema.File = function ({}: FileProps): ReactNode {\n const { pluginManager, plugin, mode, fileManager } = useApp<PluginTs>()\n const oas = useOas()\n const { getSchemas, getFile, getName } = useOperationManager()\n const operation = useOperation()\n\n const file = getFile(operation)\n const schemas = getSchemas(operation)\n const factoryName = getName(operation, { type: 'type' })\n const generator = new SchemaGenerator(plugin.options, {\n oas,\n plugin,\n pluginManager,\n mode,\n override: plugin.options.override,\n })\n const items = [schemas.pathParams, schemas.queryParams, schemas.headerParams, schemas.statusCodes, schemas.request, schemas.response].flat().filter(Boolean)\n\n const mapItem = ({ name, schema, description, keysToOmit, ...options }: OperationSchemaType, i: number) => {\n const tree = generator.parse({ schema, name })\n\n return (\n <Oas.Schema key={i} name={name} value={schema} tree={tree}>\n {mode === 'split' && <Oas.Schema.Imports extName={plugin.options.extName} isTypeOnly />}\n <File.Source>\n <OperationSchema description={description} keysToOmit={keysToOmit} />\n </File.Source>\n </Oas.Schema>\n )\n }\n\n return (\n <Parser language=\"typescript\">\n <File<FileMeta> baseName={file.baseName} path={file.path} meta={file.meta}>\n {items.map(mapItem)}\n\n <File.Source>{printCombinedSchema({ name: factoryName, operation, schemas, pluginManager })}</File.Source>\n </File>\n </Parser>\n )\n}\n","import type { SchemaObject } from '@kubb/oas'\nimport { SchemaGenerator as Generator } from '@kubb/plugin-oas'\nimport type { SchemaMethodResult } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { App, createRoot } from '@kubb/react'\nimport { Schema } from './components/Schema.tsx'\nimport type { FileMeta, PluginTs } from './types.ts'\n\nexport class SchemaGenerator extends Generator<PluginTs['resolvedOptions'], PluginTs> {\n async schema(name: string, schema: SchemaObject, options: PluginTs['resolvedOptions']): SchemaMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode, output } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n const tree = this.parse({ schema, name })\n\n root.render(\n <App pluginManager={pluginManager} plugin={{ ...plugin, options }} mode={mode}>\n <Oas oas={oas}>\n <Oas.Schema name={name} value={schema} tree={tree}>\n <Schema.File />\n </Oas.Schema>\n </Oas>\n </App>,\n )\n\n return root.files\n }\n}\n","import { Oas } from '@kubb/plugin-oas/components'\nimport { File, useApp } from '@kubb/react'\n\nimport transformers from '@kubb/core/transformers'\nimport { print, type ts } from '@kubb/parser-ts'\nimport * as factory from '@kubb/parser-ts/factory'\nimport { SchemaGenerator, schemaKeywords } from '@kubb/plugin-oas'\nimport { useSchema } from '@kubb/plugin-oas/hooks'\nimport type { ReactNode } from 'react'\nimport { parse, typeKeywordMapper } from '../parser/index.ts'\nimport { pluginTsName } from '../plugin.ts'\nimport type { PluginTs } from '../types.ts'\n\ntype Props = {\n description?: string\n keysToOmit?: string[]\n}\n\nexport function Schema(props: Props): ReactNode {\n const { keysToOmit, description } = props\n const { tree, name } = useSchema()\n const {\n pluginManager,\n plugin: {\n options: { mapper, enumType, optionalType },\n },\n } = useApp<PluginTs>()\n\n // all checks are also inside this.schema(React)\n const resolvedName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'function',\n })\n\n const typeName = pluginManager.resolveName({\n name,\n pluginKey: [pluginTsName],\n type: 'type',\n })\n\n const nodes: ts.Node[] = []\n const extraNodes: ts.Node[] = []\n\n if (!tree.length) {\n return ''\n }\n\n const isNullish = tree.some((item) => item.keyword === schemaKeywords.nullish)\n const isNullable = tree.some((item) => item.keyword === schemaKeywords.nullable)\n const isOptional = tree.some((item) => item.keyword === schemaKeywords.optional)\n\n let type =\n (tree\n .map((schema) => parse(undefined, schema, { name: resolvedName, typeName, description, keysToOmit, optionalType, enumType, mapper }))\n .filter(Boolean)\n .at(0) as ts.TypeNode) || typeKeywordMapper.undefined()\n\n if (isNullable) {\n type = factory.createUnionDeclaration({\n nodes: [type, factory.keywordTypeNodes.null],\n }) as ts.TypeNode\n }\n\n if (isNullish && ['undefined', 'questionTokenAndUndefined'].includes(optionalType as string)) {\n type = factory.createUnionDeclaration({\n nodes: [type, factory.keywordTypeNodes.undefined],\n }) as ts.TypeNode\n }\n\n if (isOptional && ['undefined', 'questionTokenAndUndefined'].includes(optionalType as string)) {\n type = factory.createUnionDeclaration({\n nodes: [type, factory.keywordTypeNodes.undefined],\n }) as ts.TypeNode\n }\n\n const node = factory.createTypeAliasDeclaration({\n modifiers: [factory.modifiers.export],\n name: resolvedName,\n type: keysToOmit?.length\n ? factory.createOmitDeclaration({\n keys: keysToOmit,\n type,\n nonNullable: true,\n })\n : type,\n })\n\n const enumSchemas = SchemaGenerator.deepSearch(tree, schemaKeywords.enum)\n if (enumSchemas) {\n enumSchemas.forEach((enumSchema) => {\n extraNodes.push(\n ...factory.createEnumDeclaration({\n name: transformers.camelCase(enumSchema.args.name),\n typeName: enumSchema.args.typeName,\n enums: enumSchema.args.items\n .map((item) => (item.value === undefined ? undefined : [transformers.trimQuotes(item.name?.toString()), item.value]))\n .filter(Boolean) as unknown as [string, string][],\n type: enumType,\n }),\n )\n })\n }\n\n nodes.push(\n factory.appendJSDocToNode({\n node,\n comments: [description ? `@description ${transformers.jsStringEscape(description)}` : undefined].filter(Boolean),\n }),\n )\n\n const filterdNodes = nodes.filter(\n (node: ts.Node) =>\n !extraNodes.some(\n (extraNode: ts.Node) => (extraNode as ts.TypeAliasDeclaration)?.name?.escapedText === (node as ts.TypeAliasDeclaration)?.name?.escapedText,\n ),\n )\n\n return print([...extraNodes, ...filterdNodes])\n}\n\ntype FileProps = {}\n\nSchema.File = function ({}: FileProps): ReactNode {\n const { pluginManager } = useApp<PluginTs>()\n const { schema } = useSchema()\n\n return (\n <Oas.Schema.File output={pluginManager.config.output.path}>\n <File.Source>\n <Schema description={schema?.description} />\n </File.Source>\n </Oas.Schema.File>\n )\n}\n","import transformers from '@kubb/core/transformers'\nimport * as factory from '@kubb/parser-ts/factory'\nimport { isKeyword, schemaKeywords } from '@kubb/plugin-oas'\n\nimport type { ts } from '@kubb/parser-ts'\nimport type { Schema, SchemaKeywordMapper, SchemaMapper } from '@kubb/plugin-oas'\n\nexport const typeKeywordMapper = {\n any: () => factory.keywordTypeNodes.any,\n unknown: () => factory.keywordTypeNodes.unknown,\n number: () => factory.keywordTypeNodes.number,\n integer: () => factory.keywordTypeNodes.number,\n object: (nodes?: ts.TypeElement[]) => {\n if (!nodes || !nodes.length) {\n return factory.keywordTypeNodes.object\n }\n\n return factory.createTypeLiteralNode(nodes)\n },\n string: () => factory.keywordTypeNodes.string,\n boolean: () => factory.keywordTypeNodes.boolean,\n undefined: () => factory.keywordTypeNodes.undefined,\n nullable: undefined,\n null: () => factory.keywordTypeNodes.null,\n nullish: undefined,\n array: (nodes?: ts.TypeNode[]) => {\n if (!nodes) {\n return undefined\n }\n\n return factory.createArrayDeclaration({ nodes })\n },\n tuple: (nodes?: ts.TypeNode[]) => {\n if (!nodes) {\n return undefined\n }\n\n return factory.createTupleTypeNode(nodes)\n },\n enum: (name?: string) => {\n if (!name) {\n return undefined\n }\n\n return factory.createTypeReferenceNode(name, undefined)\n },\n union: (nodes?: ts.TypeNode[]) => {\n if (!nodes) {\n return undefined\n }\n\n return factory.createUnionDeclaration({\n withParentheses: true,\n nodes,\n })\n },\n const: (name?: string | number, format?: 'string' | 'number') => {\n if (!name) {\n return undefined\n }\n\n if (format === 'number') {\n return factory.createLiteralTypeNode(factory.createNumericLiteral(name))\n }\n\n return factory.createLiteralTypeNode(factory.createStringLiteral(name.toString()))\n },\n datetime: () => factory.keywordTypeNodes.string,\n date: (type: 'date' | 'string' = 'string') =>\n type === 'string' ? factory.keywordTypeNodes.string : factory.createTypeReferenceNode(factory.createIdentifier('Date')),\n time: (type: 'date' | 'string' = 'string') =>\n type === 'string' ? factory.keywordTypeNodes.string : factory.createTypeReferenceNode(factory.createIdentifier('Date')),\n uuid: undefined,\n url: undefined,\n strict: undefined,\n default: undefined,\n and: (nodes?: ts.TypeNode[]) => {\n if (!nodes) {\n return undefined\n }\n\n return factory.createIntersectionDeclaration({\n withParentheses: true,\n nodes,\n })\n },\n describe: undefined,\n min: undefined,\n max: undefined,\n optional: undefined,\n matches: undefined,\n email: undefined,\n firstName: undefined,\n lastName: undefined,\n password: undefined,\n phone: undefined,\n readOnly: undefined,\n ref: (propertyName?: string) => {\n if (!propertyName) {\n return undefined\n }\n\n return factory.createTypeReferenceNode(propertyName, undefined)\n },\n blob: () => factory.createTypeReferenceNode('Blob', []),\n deprecated: undefined,\n example: undefined,\n schema: undefined,\n catchall: undefined,\n name: undefined,\n} satisfies SchemaMapper<ts.Node | null | undefined>\n\ntype ParserOptions = {\n name: string\n typeName?: string\n description?: string\n /**\n * @default `'questionToken'`\n */\n optionalType: 'questionToken' | 'undefined' | 'questionTokenAndUndefined'\n /**\n * @default `'asConst'`\n */\n enumType: 'enum' | 'asConst' | 'asPascalConst' | 'constEnum' | 'literal'\n keysToOmit?: string[]\n mapper?: Record<string, ts.PropertySignature>\n}\n\nexport function parse(parent: Schema | undefined, current: Schema, options: ParserOptions): ts.Node | null | undefined {\n const value = typeKeywordMapper[current.keyword as keyof typeof typeKeywordMapper]\n\n if (!value) {\n return undefined\n }\n\n if (isKeyword(current, schemaKeywords.union)) {\n return typeKeywordMapper.union(current.args.map((schema) => parse(current, schema, options)).filter(Boolean) as ts.TypeNode[])\n }\n\n if (isKeyword(current, schemaKeywords.and)) {\n return typeKeywordMapper.and(current.args.map((schema) => parse(current, schema, options)).filter(Boolean) as ts.TypeNode[])\n }\n\n if (isKeyword(current, schemaKeywords.array)) {\n return typeKeywordMapper.array(current.args.items.map((schema) => parse(current, schema, options)).filter(Boolean) as ts.TypeNode[])\n }\n\n if (isKeyword(current, schemaKeywords.enum)) {\n return typeKeywordMapper.enum(current.args.typeName)\n }\n\n if (isKeyword(current, schemaKeywords.ref)) {\n return typeKeywordMapper.ref(current.args.name)\n }\n\n if (isKeyword(current, schemaKeywords.blob)) {\n return value()\n }\n\n if (isKeyword(current, schemaKeywords.tuple)) {\n return typeKeywordMapper.tuple(current.args.items.map((schema) => parse(current, schema, options)).filter(Boolean) as ts.TypeNode[])\n }\n\n if (isKeyword(current, schemaKeywords.const)) {\n return typeKeywordMapper.const(current.args.name, current.args.format)\n }\n\n if (isKeyword(current, schemaKeywords.object)) {\n const properties = Object.entries(current.args?.properties || {})\n .filter((item) => {\n const schemas = item[1]\n return schemas && typeof schemas.map === 'function'\n })\n .map(([name, schemas]) => {\n const nameSchema = schemas.find((schema) => schema.keyword === schemaKeywords.name) as SchemaKeywordMapper['name']\n const mappedName = nameSchema?.args || name\n\n // custom mapper(pluginOptions)\n if (options.mapper?.[mappedName]) {\n return options.mapper?.[mappedName]\n }\n\n const isNullish = schemas.some((schema) => schema.keyword === schemaKeywords.nullish)\n const isNullable = schemas.some((schema) => schema.keyword === schemaKeywords.nullable)\n const isOptional = schemas.some((schema) => schema.keyword === schemaKeywords.optional)\n const isReadonly = schemas.some((schema) => schema.keyword === schemaKeywords.readOnly)\n const describeSchema = schemas.find((schema) => schema.keyword === schemaKeywords.describe) as SchemaKeywordMapper['describe'] | undefined\n const deprecatedSchema = schemas.find((schema) => schema.keyword === schemaKeywords.deprecated) as SchemaKeywordMapper['deprecated'] | undefined\n const defaultSchema = schemas.find((schema) => schema.keyword === schemaKeywords.default) as SchemaKeywordMapper['default'] | undefined\n const exampleSchema = schemas.find((schema) => schema.keyword === schemaKeywords.example) as SchemaKeywordMapper['example'] | undefined\n const schemaSchema = schemas.find((schema) => schema.keyword === schemaKeywords.schema) as SchemaKeywordMapper['schema'] | undefined\n\n let type = schemas.map((schema) => parse(current, schema, options)).filter(Boolean)[0] as ts.TypeNode\n\n if (isNullable) {\n type = factory.createUnionDeclaration({\n nodes: [type, factory.keywordTypeNodes.null],\n }) as ts.TypeNode\n }\n\n if (isNullish && ['undefined', 'questionTokenAndUndefined'].includes(options.optionalType as string)) {\n type = factory.createUnionDeclaration({\n nodes: [type, factory.keywordTypeNodes.undefined],\n }) as ts.TypeNode\n }\n\n if (isOptional && ['undefined', 'questionTokenAndUndefined'].includes(options.optionalType as string)) {\n type = factory.createUnionDeclaration({\n nodes: [type, factory.keywordTypeNodes.undefined],\n }) as ts.TypeNode\n }\n\n const propertySignature = factory.createPropertySignature({\n questionToken: isOptional || isNullish ? ['questionToken', 'questionTokenAndUndefined'].includes(options.optionalType as string) : false,\n name: mappedName,\n type,\n readOnly: isReadonly,\n })\n\n return factory.appendJSDocToNode({\n node: propertySignature,\n comments: [\n describeSchema ? `@description ${transformers.jsStringEscape(describeSchema.args)}` : undefined,\n deprecatedSchema ? '@deprecated' : undefined,\n defaultSchema ? `@default ${defaultSchema.args}` : undefined,\n exampleSchema ? `@example ${exampleSchema.args}` : undefined,\n schemaSchema?.args?.type || schemaSchema?.args?.format\n ? [`@type ${schemaSchema?.args?.type || 'unknown'}${!isOptional ? '' : ' | undefined'}`, schemaSchema?.args?.format].filter(Boolean).join(', ')\n : undefined,\n ].filter(Boolean),\n })\n })\n\n const additionalProperties = current.args?.additionalProperties?.length\n ? factory.createIndexSignature(\n current.args.additionalProperties\n .map((schema) => parse(current, schema, options))\n .filter(Boolean)\n .at(0) as ts.TypeNode,\n )\n : undefined\n\n return typeKeywordMapper.object([...properties, additionalProperties].filter(Boolean))\n }\n\n if (isKeyword(current, schemaKeywords.datetime)) {\n return typeKeywordMapper.datetime()\n }\n\n if (isKeyword(current, schemaKeywords.date)) {\n return typeKeywordMapper.date(current.args.type)\n }\n\n if (isKeyword(current, schemaKeywords.time)) {\n return typeKeywordMapper.time(current.args.type)\n }\n\n if (current.keyword in typeKeywordMapper) {\n return value()\n }\n\n return undefined\n}\n","import transformers, { createJSDocBlockText } from '@kubb/core/transformers'\nimport { type SchemaKeywordMapper, isKeyword, schemaKeywords } from '@kubb/plugin-oas'\n\nimport type { Schema, SchemaKeywordBase, SchemaMapper } from '@kubb/plugin-oas'\n\nexport const zodKeywordMapper = {\n any: () => 'z.any()',\n unknown: () => 'z.unknown()',\n number: (coercion?: boolean, min?: number, max?: number) => {\n return [coercion ? 'z.coerce.number()' : 'z.number()', min !== undefined ? `.min(${min})` : undefined, max !== undefined ? `.max(${max})` : undefined]\n .filter(Boolean)\n .join('')\n },\n integer: (coercion?: boolean, min?: number, max?: number) => {\n return [coercion ? 'z.coerce.number()' : 'z.number()', min !== undefined ? `.min(${min})` : undefined, max !== undefined ? `.max(${max})` : undefined]\n .filter(Boolean)\n .join('')\n },\n object: (value?: string) => `z.object({${value}})`,\n string: (coercion?: boolean, min?: number, max?: number) => {\n return [coercion ? 'z.coerce.string()' : 'z.string()', min !== undefined ? `.min(${min})` : undefined, max !== undefined ? `.max(${max})` : undefined]\n .filter(Boolean)\n .join('')\n },\n boolean: () => 'z.boolean()',\n undefined: () => 'z.undefined()',\n nullable: () => '.nullable()',\n null: () => 'z.null()',\n nullish: () => '.nullish()',\n array: (items: string[] = [], min?: number, max?: number) => {\n return [`z.array(${items?.join('')})`, min !== undefined ? `.min(${min})` : undefined, max !== undefined ? `.max(${max})` : undefined]\n .filter(Boolean)\n .join('')\n },\n tuple: (items: string[] = []) => `z.tuple([${items?.join(', ')}])`,\n enum: (items: string[] = []) => `z.enum([${items?.join(', ')}])`,\n union: (items: string[] = []) => `z.union([${items?.join(', ')}])`,\n const: (value?: string | number) => `z.literal(${value ?? ''})`,\n /**\n * ISO 8601\n */\n datetime: (offset = false, local = false) => {\n if (offset) {\n return `z.string().datetime({ offset: ${offset} })`\n }\n\n if (local) {\n return `z.string().datetime({ local: ${local} })`\n }\n\n return 'z.string().datetime()'\n },\n /**\n * Type `'date'` Date\n * Type `'string'` ISO date format (YYYY-MM-DD)\n * @default ISO date format (YYYY-MM-DD)\n */\n date: (type: 'date' | 'string' = 'string', coercion?: boolean) => {\n if (type === 'string') {\n return 'z.string().date()'\n }\n\n if (coercion) {\n return 'z.coerce.date()'\n }\n\n return 'z.date()'\n },\n /**\n * Type `'date'` Date\n * Type `'string'` ISO time format (HH:mm:ss[.SSSSSS])\n * @default ISO time format (HH:mm:ss[.SSSSSS])\n */\n time: (type: 'date' | 'string' = 'string', coercion?: boolean) => {\n if (type === 'string') {\n return 'z.string().time()'\n }\n\n if (coercion) {\n return 'z.coerce.date()'\n }\n\n return 'z.date()'\n },\n uuid: () => '.uuid()',\n url: () => '.url()',\n strict: () => '.strict()',\n default: (value?: string | number | true) => `.default(${value ?? ''})`,\n and: (items: string[] = []) => items?.map((item) => `.and(${item})`).join(''),\n describe: (value = '') => `.describe(${value})`,\n min: (value?: number) => `.min(${value ?? ''})`,\n max: (value?: number) => `.max(${value ?? ''})`,\n optional: () => '.optional()',\n matches: (value = '') => `.regex(${value})`,\n email: () => '.email()',\n firstName: undefined,\n lastName: undefined,\n password: undefined,\n phone: undefined,\n readOnly: undefined,\n ref: (value?: string) => (value ? `z.lazy(() => ${value})` : undefined),\n blob: () => 'z.string()',\n deprecated: undefined,\n example: undefined,\n schema: undefined,\n catchall: (value?: string) => (value ? `.catchall(${value})` : undefined),\n name: undefined,\n} satisfies SchemaMapper<string | null | undefined>\n\n/**\n * @link based on https://github.com/cellular/oazapfts/blob/7ba226ebb15374e8483cc53e7532f1663179a22c/src/codegen/generate.ts#L398\n */\n\nexport function sort(items?: Schema[]): Schema[] {\n const order: string[] = [\n schemaKeywords.string,\n schemaKeywords.datetime,\n schemaKeywords.date,\n schemaKeywords.time,\n schemaKeywords.tuple,\n schemaKeywords.number,\n schemaKeywords.object,\n schemaKeywords.enum,\n schemaKeywords.url,\n schemaKeywords.email,\n schemaKeywords.firstName,\n schemaKeywords.lastName,\n schemaKeywords.password,\n schemaKeywords.matches,\n schemaKeywords.uuid,\n schemaKeywords.min,\n schemaKeywords.max,\n schemaKeywords.default,\n schemaKeywords.describe,\n schemaKeywords.optional,\n schemaKeywords.nullable,\n schemaKeywords.nullish,\n schemaKeywords.null,\n ]\n\n if (!items) {\n return []\n }\n\n return transformers.orderBy(items, [(v) => order.indexOf(v.keyword)], ['asc'])\n}\n\ntype ParserOptions = {\n name: string\n typeName?: string\n description?: string\n\n keysToOmit?: string[]\n mapper?: Record<string, string>\n coercion?: boolean\n}\n\nexport function parse(parent: Schema | undefined, current: Schema, options: ParserOptions): string | undefined {\n const value = zodKeywordMapper[current.keyword as keyof typeof zodKeywordMapper]\n\n if (!value) {\n return undefined\n }\n\n if (isKeyword(current, schemaKeywords.union)) {\n // zod union type needs at least 2 items\n if (Array.isArray(current.args) && current.args.length === 1) {\n return parse(parent, current.args[0] as Schema, options)\n }\n if (Array.isArray(current.args) && !current.args.length) {\n return ''\n }\n\n return zodKeywordMapper.union(\n sort(current.args)\n .map((schema) => parse(current, schema, options))\n .filter(Boolean),\n )\n }\n\n if (isKeyword(current, schemaKeywords.and)) {\n const items = sort(current.args)\n .filter((schema: Schema) => {\n return ![schemaKeywords.optional, schemaKeywords.describe].includes(schema.keyword as typeof schemaKeywords.describe)\n })\n .map((schema: Schema) => parse(current, schema, options))\n .filter(Boolean)\n\n return `${items.slice(0, 1)}${zodKeywordMapper.and(items.slice(1))}`\n }\n\n if (isKeyword(current, schemaKeywords.array)) {\n return zodKeywordMapper.array(\n sort(current.args.items)\n .map((schemas) => parse(current, schemas, options))\n .filter(Boolean),\n current.args.min,\n current.args.max,\n )\n }\n\n if (isKeyword(current, schemaKeywords.enum)) {\n if (current.args.asConst) {\n return zodKeywordMapper.union(\n current.args.items\n .map((schema) => {\n return parse(\n current,\n {\n keyword: schemaKeywords.const,\n args: schema,\n },\n options,\n )\n })\n .filter(Boolean),\n )\n }\n\n return zodKeywordMapper.enum(\n current.args.items.map((schema) => {\n if (schema.format === 'number') {\n return transformers.stringify(schema.value)\n }\n return transformers.stringify(schema.value)\n }),\n )\n }\n\n if (isKeyword(current, schemaKeywords.ref)) {\n return zodKeywordMapper.ref(current.args?.name)\n }\n\n if (isKeyword(current, schemaKeywords.object)) {\n const properties = Object.entries(current.args?.properties || {})\n .filter((item) => {\n const schema = item[1]\n return schema && typeof schema.map === 'function'\n })\n .map(([name, schemas]) => {\n const nameSchema = schemas.find((schema) => schema.keyword === schemaKeywords.name) as SchemaKeywordMapper['name']\n const mappedName = nameSchema?.args || name\n\n // custom mapper(pluginOptions)\n if (options.mapper?.[mappedName]) {\n return `\"${name}\": ${options.mapper?.[mappedName]}`\n }\n\n return `\"${name}\": ${sort(schemas)\n .map((schema, array) => {\n return parse(current, schema, options)\n })\n .filter(Boolean)\n .join('')}`\n })\n .join(',')\n\n const additionalProperties = current.args?.additionalProperties?.length\n ? current.args.additionalProperties\n .map((schema) => parse(current, schema, options))\n .filter(Boolean)\n .at(0)\n : undefined\n\n const text = [\n zodKeywordMapper.object(properties),\n current.args?.strict ? zodKeywordMapper.strict() : undefined,\n additionalProperties ? zodKeywordMapper.catchall(additionalProperties) : undefined,\n ].filter(Boolean)\n\n return text.join('')\n }\n\n if (isKeyword(current, schemaKeywords.tuple)) {\n return zodKeywordMapper.tuple(\n sort(current.args.items)\n .map((schema) => parse(current, schema, options))\n .filter(Boolean),\n )\n }\n\n if (isKeyword(current, schemaKeywords.const)) {\n if (current.args.format === 'number' && current.args.value !== undefined) {\n return zodKeywordMapper.const(Number.parseInt(current.args.value?.toString()))\n }\n return zodKeywordMapper.const(transformers.stringify(current.args.value))\n }\n\n if (isKeyword(current, schemaKeywords.matches)) {\n if (current.args) {\n return zodKeywordMapper.matches(transformers.toRegExpString(current.args))\n }\n }\n\n if (isKeyword(current, schemaKeywords.default)) {\n if (current.args) {\n return zodKeywordMapper.default(current.args)\n }\n }\n\n if (isKeyword(current, schemaKeywords.describe)) {\n if (current.args) {\n return zodKeywordMapper.describe(transformers.stringify(current.args.toString()))\n }\n }\n\n if (isKeyword(current, schemaKeywords.string)) {\n return zodKeywordMapper.string(options.coercion)\n }\n\n if (isKeyword(current, schemaKeywords.number) || isKeyword(current, schemaKeywords.integer)) {\n return zodKeywordMapper.number(options.coercion)\n }\n\n if (isKeyword(current, schemaKeywords.min)) {\n return zodKeywordMapper.min(current.args)\n }\n if (isKeyword(current, schemaKeywords.max)) {\n return zodKeywordMapper.max(current.args)\n }\n\n if (isKeyword(current, schemaKeywords.datetime)) {\n return zodKeywordMapper.datetime(current.args.offset, current.args.local)\n }\n\n if (isKeyword(current, schemaKeywords.date)) {\n return zodKeywordMapper.date(current.args.type, options.coercion)\n }\n\n if (isKeyword(current, schemaKeywords.time)) {\n return zodKeywordMapper.time(current.args.type, options.coercion)\n }\n\n if (current.keyword in zodKeywordMapper && 'args' in current) {\n const value = zodKeywordMapper[current.keyword as keyof typeof zodKeywordMapper] as (typeof zodKeywordMapper)['const']\n\n return value((current as SchemaKeywordBase<unknown>).args as any)\n }\n\n if (current.keyword in zodKeywordMapper) {\n return value()\n }\n\n return undefined\n}\n","import path from 'node:path'\n\nimport { FileManager, PluginManager, createPlugin } from '@kubb/core'\nimport { camelCase, pascalCase } from '@kubb/core/transformers'\nimport { renderTemplate } from '@kubb/core/utils'\nimport { OperationGenerator, pluginOasName, SchemaGenerator } from '@kubb/plugin-oas'\nimport { getGroupedByTagFiles } from '@kubb/plugin-oas/utils'\nimport { pluginTsName } from '@kubb/plugin-ts'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas as SwaggerPluginOptions } from '@kubb/plugin-oas'\nimport { Operations } from './components/Operations.tsx'\nimport type { PluginZod } from './types.ts'\nimport { zodParser } from './SchemaGenerator.tsx'\n\nexport const pluginZodName = 'plugin-zod' satisfies PluginZod['name']\n\nexport const pluginZod = createPlugin<PluginZod>((options) => {\n const {\n output = { path: 'zod' },\n group,\n exclude = [],\n include,\n override = [],\n transformers = {},\n dateType = 'string',\n unknownType = 'any',\n typed = false,\n typedSchema = false,\n mapper = {},\n templates,\n importPath = 'zod',\n coercion = false,\n } = options\n const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`\n\n return {\n name: pluginZodName,\n options: {\n extName: output.extName,\n transformers,\n include,\n exclude,\n override,\n typed,\n typedSchema,\n dateType,\n unknownType,\n mapper,\n importPath,\n coercion,\n templates: {\n operations: Operations.templates,\n ...templates,\n },\n },\n pre: [pluginOasName, typed ? pluginTsName : undefined].filter(Boolean),\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 if (options?.tag && group?.type === 'tag') {\n const tag = camelCase(options.tag)\n\n return path.resolve(root, renderTemplate(template, { tag }), baseName)\n }\n\n return path.resolve(root, output.path, baseName)\n },\n resolveName(name, type) {\n let resolvedName = camelCase(name, {\n suffix: type ? 'schema' : undefined,\n isFile: type === 'file',\n })\n\n if (type === 'type') {\n resolvedName = pascalCase(resolvedName)\n }\n\n if (type) {\n return transformers?.name?.(resolvedName, type) || resolvedName\n }\n\n return resolvedName\n },\n async buildStart() {\n const [swaggerPlugin]: [Plugin<SwaggerPluginOptions>] = PluginManager.getDependedPlugins<SwaggerPluginOptions>(this.plugins, [pluginOasName])\n\n const oas = await swaggerPlugin.context.getOas()\n const root = path.resolve(this.config.root, this.config.output.path)\n const mode = FileManager.getMode(path.resolve(root, output.path))\n\n const schemaGenerator = new SchemaGenerator(this.plugin.options, {\n oas,\n pluginManager: this.pluginManager,\n plugin: this.plugin,\n contentType: swaggerPlugin.context.contentType,\n include: undefined,\n override,\n mode,\n output: output.path,\n })\n\n const schemaFiles = await schemaGenerator.build(zodParser)\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: swaggerPlugin.context.contentType,\n exclude,\n include,\n override,\n mode,\n })\n\n const operationFiles = await operationGenerator.build(zodParser)\n await this.addFile(...operationFiles)\n },\n async buildEnd() {\n if (this.config.output.write === false) {\n return\n }\n\n const root = path.resolve(this.config.root, this.config.output.path)\n\n if (group?.type === 'tag') {\n const rootFiles = await getGroupedByTagFiles({\n logger: this.logger,\n files: this.fileManager.files,\n plugin: this.plugin,\n template,\n exportAs: group.exportAs || '{{tag}}Schemas',\n root,\n output,\n })\n\n await this.addFile(...rootFiles)\n }\n\n await this.fileManager.addIndexes({\n root,\n output,\n meta: { pluginKey: this.plugin.key },\n logger: this.logger,\n })\n },\n }\n})\n","import { createReactParser } from '@kubb/plugin-oas'\nimport { Schema } from './components/Schema.tsx'\nimport type { PluginZod } from './types.ts'\nimport { Operations } from './components/Operations.tsx'\nimport { OperationSchema } from './components/OperationSchema.tsx'\n\nexport const zodParser = createReactParser<PluginZod>({\n name: 'plugin-zod',\n Operations({ options }) {\n if (!options.templates.operations) {\n return null\n }\n\n return <Operations.File templates={options.templates.operations} />\n },\n Operation() {\n return <OperationSchema.File />\n },\n Schema({ schema, name }) {\n return <Schema.File />\n },\n})\n","import { SchemaGenerator, schemaKeywords } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { useOas, useOperation, useOperationManager } from '@kubb/plugin-oas/hooks'\nimport { File, Parser, useApp } from '@kubb/react'\n\nimport type { OperationSchema as OperationSchemaType } from '@kubb/plugin-oas'\nimport type { ReactNode } from 'react'\nimport type { FileMeta, PluginZod } from '../types.ts'\nimport { Schema } from './Schema.tsx'\n\ntype Props = {\n description?: string\n keysToOmit?: string[]\n}\n\nexport function OperationSchema({ description, keysToOmit }: Props): ReactNode {\n return <Schema keysToOmit={keysToOmit} withTypeAnnotation={false} description={description} />\n}\n\ntype FileProps = {}\n\nOperationSchema.File = function ({}: FileProps): ReactNode {\n const { pluginManager, plugin, mode } = useApp<PluginZod>()\n const { getSchemas, getFile } = useOperationManager()\n const oas = useOas()\n const operation = useOperation()\n\n const file = getFile(operation)\n const schemas = getSchemas(operation)\n const generator = new SchemaGenerator(plugin.options, {\n oas,\n plugin,\n pluginManager,\n mode,\n override: plugin.options.override,\n })\n\n const items = [schemas.pathParams, schemas.queryParams, schemas.headerParams, schemas.statusCodes, schemas.request, schemas.response].flat().filter(Boolean)\n\n const mapItem = ({ name, schema, description, keysToOmit, ...options }: OperationSchemaType, i: number) => {\n // hack so Params can be optional when needed\n const required = Array.isArray(schema?.required) ? !!schema.required.length : !!schema?.required\n const optional = !required && !!name.includes('Params')\n const tree = generator.parse({ schema, name })\n\n return (\n <Oas.Schema key={i} name={name} value={schema} tree={[...tree, optional ? { keyword: schemaKeywords.optional } : undefined].filter(Boolean)}>\n {mode === 'split' && <Oas.Schema.Imports extName={plugin.options.extName} />}\n <File.Source>\n <OperationSchema description={description} keysToOmit={keysToOmit} />\n </File.Source>\n </Oas.Schema>\n )\n }\n\n return (\n <Parser language=\"typescript\">\n <File<FileMeta> baseName={file.baseName} path={file.path} meta={file.meta}>\n <File.Import name={['z']} path={plugin.options.importPath} />\n {items.map(mapItem)}\n </File>\n </Parser>\n )\n}\n"]}