@kubb/plugin-react-query 3.0.0-alpha.2 → 3.0.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -4
- package/dist/chunk-ESENIDWJ.js +608 -0
- package/dist/chunk-ESENIDWJ.js.map +1 -0
- package/dist/chunk-HAC4WPCC.js +608 -0
- package/dist/chunk-HAC4WPCC.js.map +1 -0
- package/dist/chunk-JQEH3UHY.cjs +618 -0
- package/dist/chunk-JQEH3UHY.cjs.map +1 -0
- package/dist/chunk-JYBGTT23.cjs +618 -0
- package/dist/chunk-JYBGTT23.cjs.map +1 -0
- package/dist/components.cjs +35 -14
- package/dist/components.cjs.map +1 -1
- package/dist/components.d.cts +143 -7
- package/dist/components.d.ts +143 -7
- package/dist/components.js +2 -14
- package/dist/components.js.map +1 -1
- package/dist/generators.cjs +25 -0
- package/dist/generators.cjs.map +1 -0
- package/dist/generators.d.cts +14 -0
- package/dist/generators.d.ts +14 -0
- package/dist/generators.js +4 -0
- package/dist/generators.js.map +1 -0
- package/dist/index.cjs +77 -154
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -5
- package/dist/index.d.ts +1 -5
- package/dist/index.js +56 -140
- package/dist/index.js.map +1 -1
- package/dist/types-DFHc63S9.d.cts +179 -0
- package/dist/types-DFHc63S9.d.ts +179 -0
- package/package.json +22 -17
- package/src/components/InfiniteQuery.tsx +129 -0
- package/src/components/InfiniteQueryOptions.tsx +121 -0
- package/src/components/Mutation.tsx +113 -321
- package/src/components/Query.tsx +91 -598
- package/src/components/QueryKey.tsx +51 -178
- package/src/components/QueryOptions.tsx +65 -468
- package/src/components/SuspenseQuery.tsx +129 -0
- package/src/components/index.ts +3 -1
- package/src/generators/__snapshots__/clientDataReturnTypeFull.ts +50 -0
- package/src/generators/__snapshots__/clientGetImportPath.ts +50 -0
- package/src/generators/__snapshots__/clientPostImportPath.ts +38 -0
- package/src/generators/__snapshots__/findByTags.ts +50 -0
- package/src/generators/__snapshots__/findByTagsPathParamsObject.ts +50 -0
- package/src/generators/__snapshots__/findByTagsWithCustomQueryKey.ts +50 -0
- package/src/generators/__snapshots__/findByTagsWithZod.ts +50 -0
- package/src/generators/__snapshots__/findInfiniteByTags.ts +56 -0
- package/src/generators/__snapshots__/findInfiniteByTagsCursor.ts +56 -0
- package/src/generators/__snapshots__/getAsMutation.ts +31 -0
- package/src/generators/__snapshots__/postAsQuery.ts +48 -0
- package/src/generators/__snapshots__/updatePetById.ts +38 -0
- package/src/generators/__snapshots__/updatePetByIdPathParamsObject.ts +40 -0
- package/src/generators/index.ts +4 -0
- package/src/generators/infiniteQueryGenerator.tsx +125 -0
- package/src/generators/mutationGenerator.tsx +96 -0
- package/src/generators/queryGenerator.tsx +122 -0
- package/src/generators/suspenseQueryGenerator.tsx +121 -0
- package/src/plugin.ts +51 -73
- package/src/types.ts +43 -91
- package/dist/chunk-5IL6M74X.js +0 -1504
- package/dist/chunk-5IL6M74X.js.map +0 -1
- package/dist/chunk-JFX7DCS7.cjs +0 -1504
- package/dist/chunk-JFX7DCS7.cjs.map +0 -1
- package/dist/index-C9fwRDH7.d.cts +0 -579
- package/dist/index-C9fwRDH7.d.ts +0 -579
- package/src/OperationGenerator.tsx +0 -86
- package/src/__snapshots__/mutateAsQuery/updatePetWithForm.ts +0 -64
- package/src/__snapshots__/pathParamsTypeInline/getPetById.ts +0 -57
- package/src/__snapshots__/pathParamsTypeObject/getPetById.ts +0 -63
- package/src/__snapshots__/queryOptions/getPetById.ts +0 -37
- package/src/__snapshots__/queryWithoutQueryOptions/getPetById.ts +0 -47
- package/src/__snapshots__/upload/UploadFile.ts +0 -67
- package/src/__snapshots__/uploadMutation/UploadFile.ts +0 -44
- package/src/__snapshots__/variablesTypeMutate/deletePet.ts +0 -21
- package/src/components/Operations.tsx +0 -74
- package/src/components/QueryImports.tsx +0 -167
- package/src/components/SchemaType.tsx +0 -55
- package/src/components/__snapshots__/gen/showPetById.ts +0 -57
- package/src/components/__snapshots__/gen/useCreatePets.ts +0 -46
- package/src/components/__snapshots__/gen/useCreatePetsMutate.ts +0 -47
- package/src/utils.ts +0 -96
package/dist/index.cjs
CHANGED
|
@@ -1,112 +1,50 @@
|
|
|
1
|
-
|
|
1
|
+
'use strict';
|
|
2
2
|
|
|
3
|
+
var chunkJYBGTT23_cjs = require('./chunk-JYBGTT23.cjs');
|
|
4
|
+
require('./chunk-JQEH3UHY.cjs');
|
|
5
|
+
var path = require('path');
|
|
6
|
+
var core = require('@kubb/core');
|
|
7
|
+
var transformers = require('@kubb/core/transformers');
|
|
8
|
+
var utils = require('@kubb/core/utils');
|
|
9
|
+
var pluginOas = require('@kubb/plugin-oas');
|
|
10
|
+
var pluginTs = require('@kubb/plugin-ts');
|
|
11
|
+
var pluginZod = require('@kubb/plugin-zod');
|
|
3
12
|
|
|
13
|
+
function _interopDefault (e) { return e && e.__esModule ? e : { default: e }; }
|
|
4
14
|
|
|
15
|
+
var path__default = /*#__PURE__*/_interopDefault(path);
|
|
5
16
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
var _chunkJFX7DCS7cjs = require('./chunk-JFX7DCS7.cjs');
|
|
9
|
-
|
|
10
|
-
// src/plugin.ts
|
|
11
|
-
var _path = require('path'); var _path2 = _interopRequireDefault(_path);
|
|
12
|
-
var _core = require('@kubb/core');
|
|
13
|
-
var _transformers = require('@kubb/core/transformers');
|
|
14
|
-
var _utils = require('@kubb/core/utils');
|
|
15
|
-
var _pluginoas = require('@kubb/plugin-oas');
|
|
16
|
-
var _utils3 = require('@kubb/plugin-oas/utils');
|
|
17
|
-
var _plugints = require('@kubb/plugin-ts');
|
|
18
|
-
var _pluginzod = require('@kubb/plugin-zod');
|
|
19
|
-
|
|
20
|
-
// src/OperationGenerator.tsx
|
|
21
|
-
|
|
22
|
-
var _components = require('@kubb/plugin-oas/components');
|
|
23
|
-
var _react = require('@kubb/react');
|
|
24
|
-
var _jsxruntime = require('@kubb/react/jsx-runtime');
|
|
25
|
-
var OperationGenerator = class extends _pluginoas.OperationGenerator {
|
|
26
|
-
async all(operations) {
|
|
27
|
-
const { pluginManager, oas, plugin, mode } = this.context;
|
|
28
|
-
const root = _react.createRoot.call(void 0, {
|
|
29
|
-
logger: pluginManager.logger
|
|
30
|
-
});
|
|
31
|
-
const templates = {
|
|
32
|
-
mutation: _chunkJFX7DCS7cjs.Mutation.templates,
|
|
33
|
-
query: _chunkJFX7DCS7cjs.Query.templates,
|
|
34
|
-
queryOptions: _chunkJFX7DCS7cjs.QueryOptions.templates,
|
|
35
|
-
queryKey: _chunkJFX7DCS7cjs.QueryKey.templates,
|
|
36
|
-
queryImports: _chunkJFX7DCS7cjs.QueryImports.templates,
|
|
37
|
-
operations: _chunkJFX7DCS7cjs.Operations.templates,
|
|
38
|
-
...this.options.templates
|
|
39
|
-
};
|
|
40
|
-
root.render(
|
|
41
|
-
/* @__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, _chunkJFX7DCS7cjs.Operations.File, { templates: templates.operations }) }) })
|
|
42
|
-
);
|
|
43
|
-
return root.files;
|
|
44
|
-
}
|
|
45
|
-
async operation(operation, options) {
|
|
46
|
-
const { oas, pluginManager, plugin, mode } = this.context;
|
|
47
|
-
const root = _react.createRoot.call(void 0, {
|
|
48
|
-
logger: pluginManager.logger
|
|
49
|
-
});
|
|
50
|
-
const templates = {
|
|
51
|
-
mutation: _chunkJFX7DCS7cjs.Mutation.templates,
|
|
52
|
-
query: _chunkJFX7DCS7cjs.Query.templates,
|
|
53
|
-
queryOptions: _chunkJFX7DCS7cjs.QueryOptions.templates,
|
|
54
|
-
queryKey: _chunkJFX7DCS7cjs.QueryKey.templates,
|
|
55
|
-
queryImports: _chunkJFX7DCS7cjs.QueryImports.templates,
|
|
56
|
-
...options.templates
|
|
57
|
-
};
|
|
58
|
-
const isQuery = typeof options.query === "boolean" ? true : _optionalChain([options, 'access', _ => _.query, 'optionalAccess', _2 => _2.methods, 'access', _3 => _3.some, 'call', _4 => _4((method) => operation.method === method)]);
|
|
59
|
-
const isMutate = !isQuery && options.mutate && options.mutate.methods.some((method) => operation.method === method);
|
|
60
|
-
root.render(
|
|
61
|
-
/* @__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.jsxs.call(void 0, _components.Oas.Operation, { operation, children: [
|
|
62
|
-
isMutate && _optionalChain([templates, 'optionalAccess', _5 => _5.mutation]) && /* @__PURE__ */ _jsxruntime.jsx.call(void 0, _chunkJFX7DCS7cjs.Mutation.File, { templates: templates.mutation }),
|
|
63
|
-
isQuery && _optionalChain([templates, 'optionalAccess', _6 => _6.query]) && templates.queryKey && templates.queryOptions && templates.queryImports && /* @__PURE__ */ _jsxruntime.jsx.call(void 0,
|
|
64
|
-
_chunkJFX7DCS7cjs.Query.File,
|
|
65
|
-
{
|
|
66
|
-
templates: {
|
|
67
|
-
query: templates.query,
|
|
68
|
-
queryKey: templates.queryKey,
|
|
69
|
-
queryOptions: templates.queryOptions,
|
|
70
|
-
queryImports: templates.queryImports
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
)
|
|
74
|
-
] }) }) })
|
|
75
|
-
);
|
|
76
|
-
return root.files;
|
|
77
|
-
}
|
|
78
|
-
};
|
|
79
|
-
|
|
80
|
-
// src/plugin.ts
|
|
81
17
|
var pluginReactQueryName = "plugin-react-query";
|
|
82
|
-
var pluginReactQuery =
|
|
18
|
+
var pluginReactQuery = core.createPlugin((options) => {
|
|
83
19
|
const {
|
|
84
20
|
output = { path: "hooks" },
|
|
85
21
|
group,
|
|
86
22
|
exclude = [],
|
|
87
23
|
include,
|
|
88
24
|
override = [],
|
|
89
|
-
parser,
|
|
25
|
+
parser = "client",
|
|
90
26
|
suspense = {},
|
|
91
27
|
infinite,
|
|
92
|
-
transformers = {},
|
|
93
|
-
dataReturnType = "data",
|
|
28
|
+
transformers: transformers$1 = {},
|
|
94
29
|
pathParamsType = "inline",
|
|
95
|
-
|
|
96
|
-
query = {}
|
|
97
|
-
queryOptions = {},
|
|
98
|
-
templates
|
|
30
|
+
mutation = {},
|
|
31
|
+
query = {}
|
|
99
32
|
} = options;
|
|
100
|
-
const template =
|
|
33
|
+
const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`;
|
|
101
34
|
return {
|
|
102
35
|
name: pluginReactQueryName,
|
|
103
36
|
options: {
|
|
37
|
+
output: {
|
|
38
|
+
exportType: "barrelNamed",
|
|
39
|
+
...output
|
|
40
|
+
},
|
|
41
|
+
baseURL: void 0,
|
|
104
42
|
client: {
|
|
105
43
|
importPath: "@kubb/plugin-client/client",
|
|
44
|
+
dataReturnType: "data",
|
|
45
|
+
pathParamsType: "inline",
|
|
106
46
|
...options.client
|
|
107
47
|
},
|
|
108
|
-
dataReturnType,
|
|
109
|
-
pathParamsType,
|
|
110
48
|
infinite: infinite ? {
|
|
111
49
|
queryParam: "id",
|
|
112
50
|
initialPageParam: 0,
|
|
@@ -114,104 +52,89 @@ var pluginReactQuery = _core.createPlugin.call(void 0, (options) => {
|
|
|
114
52
|
...infinite
|
|
115
53
|
} : false,
|
|
116
54
|
suspense,
|
|
117
|
-
query:
|
|
118
|
-
|
|
55
|
+
query: {
|
|
56
|
+
key: (key) => key,
|
|
119
57
|
methods: ["get"],
|
|
120
58
|
importPath: "@tanstack/react-query",
|
|
121
59
|
...query
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
mutate: mutate ? {
|
|
125
|
-
variablesType: "hook",
|
|
60
|
+
},
|
|
61
|
+
mutation: {
|
|
126
62
|
methods: ["post", "put", "patch", "delete"],
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
templates: {
|
|
130
|
-
mutation: _chunkJFX7DCS7cjs.Mutation.templates,
|
|
131
|
-
query: _chunkJFX7DCS7cjs.Query.templates,
|
|
132
|
-
queryOptions: _chunkJFX7DCS7cjs.QueryOptions.templates,
|
|
133
|
-
queryKey: _chunkJFX7DCS7cjs.QueryKey.templates,
|
|
134
|
-
queryImports: _chunkJFX7DCS7cjs.QueryImports.templates,
|
|
135
|
-
operations: _chunkJFX7DCS7cjs.Operations.templates,
|
|
136
|
-
...templates
|
|
63
|
+
importPath: "@tanstack/react-query",
|
|
64
|
+
...mutation
|
|
137
65
|
},
|
|
66
|
+
pathParamsType,
|
|
138
67
|
parser
|
|
139
68
|
},
|
|
140
|
-
pre: [
|
|
69
|
+
pre: [pluginOas.pluginOasName, pluginTs.pluginTsName, parser === "zod" ? pluginZod.pluginZodName : void 0].filter(Boolean),
|
|
141
70
|
resolvePath(baseName, pathMode, options2) {
|
|
142
|
-
const root =
|
|
143
|
-
const mode =
|
|
71
|
+
const root = path__default.default.resolve(this.config.root, this.config.output.path);
|
|
72
|
+
const mode = pathMode ?? core.FileManager.getMode(path__default.default.resolve(root, output.path));
|
|
144
73
|
if (mode === "single") {
|
|
145
|
-
return
|
|
74
|
+
return path__default.default.resolve(root, output.path);
|
|
146
75
|
}
|
|
147
|
-
if (
|
|
148
|
-
const tag =
|
|
149
|
-
return
|
|
76
|
+
if (options2?.tag && group?.type === "tag") {
|
|
77
|
+
const tag = transformers.camelCase(options2.tag);
|
|
78
|
+
return path__default.default.resolve(root, utils.renderTemplate(template, { tag }), baseName);
|
|
150
79
|
}
|
|
151
|
-
return
|
|
80
|
+
return path__default.default.resolve(root, output.path, baseName);
|
|
152
81
|
},
|
|
153
82
|
resolveName(name, type) {
|
|
154
|
-
let resolvedName =
|
|
83
|
+
let resolvedName = transformers.camelCase(name);
|
|
155
84
|
if (type === "file" || type === "function") {
|
|
156
|
-
resolvedName =
|
|
157
|
-
prefix: "use",
|
|
85
|
+
resolvedName = transformers.camelCase(name, {
|
|
158
86
|
isFile: type === "file"
|
|
159
87
|
});
|
|
160
88
|
}
|
|
161
89
|
if (type === "type") {
|
|
162
|
-
resolvedName =
|
|
90
|
+
resolvedName = transformers.pascalCase(name);
|
|
163
91
|
}
|
|
164
92
|
if (type) {
|
|
165
|
-
return
|
|
93
|
+
return transformers$1?.name?.(resolvedName, type) || resolvedName;
|
|
166
94
|
}
|
|
167
95
|
return resolvedName;
|
|
168
96
|
},
|
|
169
97
|
async buildStart() {
|
|
170
|
-
const [swaggerPlugin] =
|
|
98
|
+
const [swaggerPlugin] = core.PluginManager.getDependedPlugins(this.plugins, [pluginOas.pluginOasName]);
|
|
171
99
|
const oas = await swaggerPlugin.context.getOas();
|
|
172
|
-
const root =
|
|
173
|
-
const mode =
|
|
174
|
-
const
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
});
|
|
184
|
-
const files = await operationGenerator.build();
|
|
185
|
-
await this.addFile(...files);
|
|
186
|
-
},
|
|
187
|
-
async buildEnd() {
|
|
188
|
-
if (this.config.output.write === false) {
|
|
189
|
-
return;
|
|
190
|
-
}
|
|
191
|
-
const root = _path2.default.resolve(this.config.root, this.config.output.path);
|
|
192
|
-
if (_optionalChain([group, 'optionalAccess', _12 => _12.type]) === "tag") {
|
|
193
|
-
const rootFiles = await _utils3.getGroupedByTagFiles.call(void 0, {
|
|
194
|
-
logger: this.logger,
|
|
195
|
-
files: this.fileManager.files,
|
|
100
|
+
const root = path__default.default.resolve(this.config.root, this.config.output.path);
|
|
101
|
+
const mode = core.FileManager.getMode(path__default.default.resolve(root, output.path));
|
|
102
|
+
const baseURL = await swaggerPlugin.context.getBaseURL();
|
|
103
|
+
const operationGenerator = new pluginOas.OperationGenerator(
|
|
104
|
+
{
|
|
105
|
+
...this.plugin.options,
|
|
106
|
+
baseURL
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
oas,
|
|
110
|
+
pluginManager: this.pluginManager,
|
|
196
111
|
plugin: this.plugin,
|
|
197
|
-
|
|
198
|
-
|
|
112
|
+
contentType: swaggerPlugin.context.contentType,
|
|
113
|
+
exclude,
|
|
114
|
+
include,
|
|
115
|
+
override,
|
|
116
|
+
mode
|
|
117
|
+
}
|
|
118
|
+
);
|
|
119
|
+
const files = await operationGenerator.build(chunkJYBGTT23_cjs.queryGenerator, chunkJYBGTT23_cjs.suspenseQueryGenerator, chunkJYBGTT23_cjs.infiniteQueryGenerator, chunkJYBGTT23_cjs.mutationGenerator);
|
|
120
|
+
await this.addFile(...files);
|
|
121
|
+
if (this.config.output.exportType) {
|
|
122
|
+
const barrelFiles = await this.fileManager.getBarrelFiles({
|
|
199
123
|
root,
|
|
200
|
-
output
|
|
124
|
+
output,
|
|
125
|
+
files: this.fileManager.files,
|
|
126
|
+
meta: {
|
|
127
|
+
pluginKey: this.plugin.key
|
|
128
|
+
},
|
|
129
|
+
logger: this.logger
|
|
201
130
|
});
|
|
202
|
-
await this.addFile(...
|
|
131
|
+
await this.addFile(...barrelFiles);
|
|
203
132
|
}
|
|
204
|
-
await this.fileManager.addIndexes({
|
|
205
|
-
root,
|
|
206
|
-
output,
|
|
207
|
-
meta: { pluginKey: this.plugin.key },
|
|
208
|
-
logger: this.logger
|
|
209
|
-
});
|
|
210
133
|
}
|
|
211
134
|
};
|
|
212
135
|
});
|
|
213
136
|
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
137
|
+
exports.pluginReactQuery = pluginReactQuery;
|
|
138
|
+
exports.pluginReactQueryName = pluginReactQueryName;
|
|
139
|
+
//# sourceMappingURL=index.cjs.map
|
|
217
140
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["/home/runner/work/kubb/kubb/packages/plugin-react-query/dist/index.cjs","../src/plugin.ts","../src/OperationGenerator.tsx"],"names":[],"mappings":"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","file":"/home/runner/work/kubb/kubb/packages/plugin-react-query/dist/index.cjs","sourcesContent":[null,"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'\nimport { getGroupedByTagFiles } from '@kubb/plugin-oas/utils'\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { pluginZodName } from '@kubb/plugin-zod'\n\nimport { OperationGenerator } from './OperationGenerator.tsx'\nimport { Mutation, Operations, Query, QueryKey, QueryOptions } from './components/index.ts'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas } from '@kubb/plugin-oas'\nimport { QueryImports } from './components/QueryImports.tsx'\nimport type { PluginReactQuery } from './types.ts'\n\nexport const pluginReactQueryName = 'plugin-react-query' satisfies PluginReactQuery['name']\n\nexport const pluginReactQuery = createPlugin<PluginReactQuery>((options) => {\n const {\n output = { path: 'hooks' },\n group,\n exclude = [],\n include,\n override = [],\n parser,\n suspense = {},\n infinite,\n transformers = {},\n dataReturnType = 'data',\n pathParamsType = 'inline',\n mutate = {},\n query = {},\n queryOptions = {},\n templates,\n } = options\n const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`\n\n return {\n name: pluginReactQueryName,\n options: {\n client: {\n importPath: '@kubb/plugin-client/client',\n ...options.client,\n },\n dataReturnType,\n pathParamsType,\n infinite: infinite\n ? {\n queryParam: 'id',\n initialPageParam: 0,\n cursorParam: undefined,\n ...infinite,\n }\n : false,\n suspense,\n query: query\n ? {\n queryKey: (key: unknown[]) => key,\n methods: ['get'],\n importPath: '@tanstack/react-query',\n ...query,\n }\n : false,\n queryOptions,\n mutate: mutate\n ? {\n variablesType: 'hook',\n methods: ['post', 'put', 'patch', 'delete'],\n ...mutate,\n }\n : false,\n templates: {\n mutation: Mutation.templates,\n query: Query.templates,\n queryOptions: QueryOptions.templates,\n queryKey: QueryKey.templates,\n queryImports: QueryImports.templates,\n operations: Operations.templates,\n ...templates,\n },\n parser,\n },\n pre: [pluginOasName, pluginTsName, parser === 'zod' ? pluginZodName : 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\n if (type === 'file' || type === 'function') {\n resolvedName = camelCase(name, {\n prefix: 'use',\n isFile: type === 'file',\n })\n }\n if (type === 'type') {\n resolvedName = pascalCase(name)\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<PluginOas>] = PluginManager.getDependedPlugins<PluginOas>(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 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 files = await operationGenerator.build()\n await this.addFile(...files)\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}}Hooks',\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 { OperationGenerator as Generator } from '@kubb/plugin-oas'\nimport { Oas } from '@kubb/plugin-oas/components'\nimport { App, createRoot } from '@kubb/react'\n\nimport { Mutation } from './components/Mutation.tsx'\nimport { Operations } from './components/Operations.tsx'\nimport { Query } from './components/Query.tsx'\nimport { QueryKey } from './components/QueryKey.tsx'\nimport { QueryOptions } from './components/QueryOptions.tsx'\n\nimport type { Operation } from '@kubb/oas'\nimport type { OperationMethodResult } from '@kubb/plugin-oas'\nimport { QueryImports } from './components/QueryImports.tsx'\nimport type { FileMeta, PluginReactQuery } from './types.ts'\n\nexport class OperationGenerator extends Generator<PluginReactQuery['resolvedOptions'], PluginReactQuery, FileMeta> {\n async all(operations: Operation[]): OperationMethodResult<FileMeta> {\n const { pluginManager, oas, plugin, mode } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n const templates = {\n mutation: Mutation.templates,\n query: Query.templates,\n queryOptions: QueryOptions.templates,\n queryKey: QueryKey.templates,\n queryImports: QueryImports.templates,\n operations: Operations.templates,\n ...this.options.templates,\n }\n\n root.render(\n <App pluginManager={pluginManager} plugin={plugin} mode={mode}>\n <Oas oas={oas} operations={operations} generator={this}>\n {templates.operations && <Operations.File templates={templates.operations} />}\n </Oas>\n </App>,\n )\n\n return root.files\n }\n\n async operation(operation: Operation, options: PluginReactQuery['resolvedOptions']): OperationMethodResult<FileMeta> {\n const { oas, pluginManager, plugin, mode } = this.context\n\n const root = createRoot({\n logger: pluginManager.logger,\n })\n\n const templates = {\n mutation: Mutation.templates,\n query: Query.templates,\n queryOptions: QueryOptions.templates,\n queryKey: QueryKey.templates,\n queryImports: QueryImports.templates,\n ...options.templates,\n }\n\n const isQuery = typeof options.query === 'boolean' ? true : options.query?.methods.some((method) => operation.method === method)\n const isMutate = !isQuery && options.mutate && options.mutate.methods.some((method) => operation.method === method)\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 {isMutate && templates?.mutation && <Mutation.File templates={templates.mutation} />}\n {isQuery && templates?.query && templates.queryKey && templates.queryOptions && templates.queryImports && (\n <Query.File\n templates={{\n query: templates.query,\n queryKey: templates.queryKey,\n queryOptions: templates.queryOptions,\n queryImports: templates.queryImports,\n }}\n />\n )}\n </Oas.Operation>\n </Oas>\n </App>,\n )\n\n return root.files\n }\n}\n"]}
|
|
1
|
+
{"version":3,"sources":["../src/plugin.ts"],"names":["createPlugin","transformers","pluginOasName","pluginTsName","pluginZodName","options","path","FileManager","camelCase","renderTemplate","pascalCase","PluginManager","OperationGenerator","queryGenerator","suspenseQueryGenerator","infiniteQueryGenerator","mutationGenerator"],"mappings":"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","file":"index.cjs","sourcesContent":["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 } from '@kubb/plugin-oas'\n\nimport { pluginTsName } from '@kubb/plugin-ts'\nimport { pluginZodName } from '@kubb/plugin-zod'\n\nimport type { Plugin } from '@kubb/core'\nimport type { PluginOas } from '@kubb/plugin-oas'\nimport { infiniteQueryGenerator, mutationGenerator, queryGenerator, suspenseQueryGenerator } from './generators'\nimport type { PluginReactQuery } from './types.ts'\n\nexport const pluginReactQueryName = 'plugin-react-query' satisfies PluginReactQuery['name']\n\nexport const pluginReactQuery = createPlugin<PluginReactQuery>((options) => {\n const {\n output = { path: 'hooks' },\n group,\n exclude = [],\n include,\n override = [],\n parser = 'client',\n suspense = {},\n infinite,\n transformers = {},\n pathParamsType = 'inline',\n mutation = {},\n query = {},\n } = options\n const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`\n\n return {\n name: pluginReactQueryName,\n options: {\n output: {\n exportType: 'barrelNamed',\n ...output,\n },\n baseURL: undefined,\n client: {\n importPath: '@kubb/plugin-client/client',\n dataReturnType: 'data',\n pathParamsType: 'inline',\n ...options.client,\n },\n infinite: infinite\n ? {\n queryParam: 'id',\n initialPageParam: 0,\n cursorParam: undefined,\n ...infinite,\n }\n : false,\n suspense,\n query: {\n key: (key: unknown[]) => key,\n methods: ['get'],\n importPath: '@tanstack/react-query',\n ...query,\n },\n mutation: {\n methods: ['post', 'put', 'patch', 'delete'],\n importPath: '@tanstack/react-query',\n ...mutation,\n },\n pathParamsType,\n parser,\n },\n pre: [pluginOasName, pluginTsName, parser === 'zod' ? pluginZodName : 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\n if (type === 'file' || type === 'function') {\n resolvedName = camelCase(name, {\n isFile: type === 'file',\n })\n }\n if (type === 'type') {\n resolvedName = pascalCase(name)\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<PluginOas>] = PluginManager.getDependedPlugins<PluginOas>(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 const baseURL = await swaggerPlugin.context.getBaseURL()\n\n const operationGenerator = new OperationGenerator(\n {\n ...this.plugin.options,\n baseURL,\n },\n {\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\n const files = await operationGenerator.build(queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator)\n await this.addFile(...files)\n\n if (this.config.output.exportType) {\n const barrelFiles = await this.fileManager.getBarrelFiles({\n root,\n output,\n files: this.fileManager.files,\n meta: {\n pluginKey: this.plugin.key,\n },\n logger: this.logger,\n })\n\n await this.addFile(...barrelFiles)\n }\n },\n }\n})\n"]}
|
package/dist/index.d.cts
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import * as _kubb_core from '@kubb/core';
|
|
2
|
-
import { O as Options, P as PluginReactQuery } from './
|
|
3
|
-
import '@kubb/core/utils';
|
|
2
|
+
import { O as Options, P as PluginReactQuery } from './types-DFHc63S9.cjs';
|
|
4
3
|
import '@kubb/oas';
|
|
5
|
-
import 'react';
|
|
6
|
-
import '@kubb/fs/types';
|
|
7
4
|
import '@kubb/plugin-oas';
|
|
8
|
-
import '@kubb/react';
|
|
9
5
|
|
|
10
6
|
declare const pluginReactQueryName = "plugin-react-query";
|
|
11
7
|
declare const pluginReactQuery: (options?: Options | undefined) => _kubb_core.UserPluginWithLifeCycle<PluginReactQuery>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
import * as _kubb_core from '@kubb/core';
|
|
2
|
-
import { O as Options, P as PluginReactQuery } from './
|
|
3
|
-
import '@kubb/core/utils';
|
|
2
|
+
import { O as Options, P as PluginReactQuery } from './types-DFHc63S9.js';
|
|
4
3
|
import '@kubb/oas';
|
|
5
|
-
import 'react';
|
|
6
|
-
import '@kubb/fs/types';
|
|
7
4
|
import '@kubb/plugin-oas';
|
|
8
|
-
import '@kubb/react';
|
|
9
5
|
|
|
10
6
|
declare const pluginReactQueryName = "plugin-react-query";
|
|
11
7
|
declare const pluginReactQuery: (options?: Options | undefined) => _kubb_core.UserPluginWithLifeCycle<PluginReactQuery>;
|
package/dist/index.js
CHANGED
|
@@ -1,83 +1,13 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
} from
|
|
1
|
+
import { queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator } from './chunk-HAC4WPCC.js';
|
|
2
|
+
import './chunk-ESENIDWJ.js';
|
|
3
|
+
import path from 'node:path';
|
|
4
|
+
import { createPlugin, FileManager, PluginManager } from '@kubb/core';
|
|
5
|
+
import { camelCase, pascalCase } from '@kubb/core/transformers';
|
|
6
|
+
import { renderTemplate } from '@kubb/core/utils';
|
|
7
|
+
import { pluginOasName, OperationGenerator } from '@kubb/plugin-oas';
|
|
8
|
+
import { pluginTsName } from '@kubb/plugin-ts';
|
|
9
|
+
import { pluginZodName } from '@kubb/plugin-zod';
|
|
9
10
|
|
|
10
|
-
// src/plugin.ts
|
|
11
|
-
import path from "path";
|
|
12
|
-
import { FileManager, PluginManager, createPlugin } from "@kubb/core";
|
|
13
|
-
import { camelCase, pascalCase } from "@kubb/core/transformers";
|
|
14
|
-
import { renderTemplate } from "@kubb/core/utils";
|
|
15
|
-
import { pluginOasName } from "@kubb/plugin-oas";
|
|
16
|
-
import { getGroupedByTagFiles } from "@kubb/plugin-oas/utils";
|
|
17
|
-
import { pluginTsName } from "@kubb/plugin-ts";
|
|
18
|
-
import { pluginZodName } from "@kubb/plugin-zod";
|
|
19
|
-
|
|
20
|
-
// src/OperationGenerator.tsx
|
|
21
|
-
import { OperationGenerator as Generator } from "@kubb/plugin-oas";
|
|
22
|
-
import { Oas } from "@kubb/plugin-oas/components";
|
|
23
|
-
import { App, createRoot } from "@kubb/react";
|
|
24
|
-
import { jsx, jsxs } from "@kubb/react/jsx-runtime";
|
|
25
|
-
var OperationGenerator = class extends Generator {
|
|
26
|
-
async all(operations) {
|
|
27
|
-
const { pluginManager, oas, plugin, mode } = this.context;
|
|
28
|
-
const root = createRoot({
|
|
29
|
-
logger: pluginManager.logger
|
|
30
|
-
});
|
|
31
|
-
const templates = {
|
|
32
|
-
mutation: Mutation.templates,
|
|
33
|
-
query: Query.templates,
|
|
34
|
-
queryOptions: QueryOptions.templates,
|
|
35
|
-
queryKey: QueryKey.templates,
|
|
36
|
-
queryImports: QueryImports.templates,
|
|
37
|
-
operations: Operations.templates,
|
|
38
|
-
...this.options.templates
|
|
39
|
-
};
|
|
40
|
-
root.render(
|
|
41
|
-
/* @__PURE__ */ jsx(App, { pluginManager, plugin, mode, children: /* @__PURE__ */ jsx(Oas, { oas, operations, generator: this, children: templates.operations && /* @__PURE__ */ jsx(Operations.File, { templates: templates.operations }) }) })
|
|
42
|
-
);
|
|
43
|
-
return root.files;
|
|
44
|
-
}
|
|
45
|
-
async operation(operation, options) {
|
|
46
|
-
const { oas, pluginManager, plugin, mode } = this.context;
|
|
47
|
-
const root = createRoot({
|
|
48
|
-
logger: pluginManager.logger
|
|
49
|
-
});
|
|
50
|
-
const templates = {
|
|
51
|
-
mutation: Mutation.templates,
|
|
52
|
-
query: Query.templates,
|
|
53
|
-
queryOptions: QueryOptions.templates,
|
|
54
|
-
queryKey: QueryKey.templates,
|
|
55
|
-
queryImports: QueryImports.templates,
|
|
56
|
-
...options.templates
|
|
57
|
-
};
|
|
58
|
-
const isQuery = typeof options.query === "boolean" ? true : options.query?.methods.some((method) => operation.method === method);
|
|
59
|
-
const isMutate = !isQuery && options.mutate && options.mutate.methods.some((method) => operation.method === method);
|
|
60
|
-
root.render(
|
|
61
|
-
/* @__PURE__ */ jsx(App, { pluginManager, plugin: { ...plugin, options }, mode, children: /* @__PURE__ */ jsx(Oas, { oas, operations: [operation], generator: this, children: /* @__PURE__ */ jsxs(Oas.Operation, { operation, children: [
|
|
62
|
-
isMutate && templates?.mutation && /* @__PURE__ */ jsx(Mutation.File, { templates: templates.mutation }),
|
|
63
|
-
isQuery && templates?.query && templates.queryKey && templates.queryOptions && templates.queryImports && /* @__PURE__ */ jsx(
|
|
64
|
-
Query.File,
|
|
65
|
-
{
|
|
66
|
-
templates: {
|
|
67
|
-
query: templates.query,
|
|
68
|
-
queryKey: templates.queryKey,
|
|
69
|
-
queryOptions: templates.queryOptions,
|
|
70
|
-
queryImports: templates.queryImports
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
)
|
|
74
|
-
] }) }) })
|
|
75
|
-
);
|
|
76
|
-
return root.files;
|
|
77
|
-
}
|
|
78
|
-
};
|
|
79
|
-
|
|
80
|
-
// src/plugin.ts
|
|
81
11
|
var pluginReactQueryName = "plugin-react-query";
|
|
82
12
|
var pluginReactQuery = createPlugin((options) => {
|
|
83
13
|
const {
|
|
@@ -86,27 +16,29 @@ var pluginReactQuery = createPlugin((options) => {
|
|
|
86
16
|
exclude = [],
|
|
87
17
|
include,
|
|
88
18
|
override = [],
|
|
89
|
-
parser,
|
|
19
|
+
parser = "client",
|
|
90
20
|
suspense = {},
|
|
91
21
|
infinite,
|
|
92
22
|
transformers = {},
|
|
93
|
-
dataReturnType = "data",
|
|
94
23
|
pathParamsType = "inline",
|
|
95
|
-
|
|
96
|
-
query = {}
|
|
97
|
-
queryOptions = {},
|
|
98
|
-
templates
|
|
24
|
+
mutation = {},
|
|
25
|
+
query = {}
|
|
99
26
|
} = options;
|
|
100
27
|
const template = group?.output ? group.output : `${output.path}/{{tag}}Controller`;
|
|
101
28
|
return {
|
|
102
29
|
name: pluginReactQueryName,
|
|
103
30
|
options: {
|
|
31
|
+
output: {
|
|
32
|
+
exportType: "barrelNamed",
|
|
33
|
+
...output
|
|
34
|
+
},
|
|
35
|
+
baseURL: void 0,
|
|
104
36
|
client: {
|
|
105
37
|
importPath: "@kubb/plugin-client/client",
|
|
38
|
+
dataReturnType: "data",
|
|
39
|
+
pathParamsType: "inline",
|
|
106
40
|
...options.client
|
|
107
41
|
},
|
|
108
|
-
dataReturnType,
|
|
109
|
-
pathParamsType,
|
|
110
42
|
infinite: infinite ? {
|
|
111
43
|
queryParam: "id",
|
|
112
44
|
initialPageParam: 0,
|
|
@@ -114,27 +46,18 @@ var pluginReactQuery = createPlugin((options) => {
|
|
|
114
46
|
...infinite
|
|
115
47
|
} : false,
|
|
116
48
|
suspense,
|
|
117
|
-
query:
|
|
118
|
-
|
|
49
|
+
query: {
|
|
50
|
+
key: (key) => key,
|
|
119
51
|
methods: ["get"],
|
|
120
52
|
importPath: "@tanstack/react-query",
|
|
121
53
|
...query
|
|
122
|
-
}
|
|
123
|
-
|
|
124
|
-
mutate: mutate ? {
|
|
125
|
-
variablesType: "hook",
|
|
54
|
+
},
|
|
55
|
+
mutation: {
|
|
126
56
|
methods: ["post", "put", "patch", "delete"],
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
templates: {
|
|
130
|
-
mutation: Mutation.templates,
|
|
131
|
-
query: Query.templates,
|
|
132
|
-
queryOptions: QueryOptions.templates,
|
|
133
|
-
queryKey: QueryKey.templates,
|
|
134
|
-
queryImports: QueryImports.templates,
|
|
135
|
-
operations: Operations.templates,
|
|
136
|
-
...templates
|
|
57
|
+
importPath: "@tanstack/react-query",
|
|
58
|
+
...mutation
|
|
137
59
|
},
|
|
60
|
+
pathParamsType,
|
|
138
61
|
parser
|
|
139
62
|
},
|
|
140
63
|
pre: [pluginOasName, pluginTsName, parser === "zod" ? pluginZodName : void 0].filter(Boolean),
|
|
@@ -154,7 +77,6 @@ var pluginReactQuery = createPlugin((options) => {
|
|
|
154
77
|
let resolvedName = camelCase(name);
|
|
155
78
|
if (type === "file" || type === "function") {
|
|
156
79
|
resolvedName = camelCase(name, {
|
|
157
|
-
prefix: "use",
|
|
158
80
|
isFile: type === "file"
|
|
159
81
|
});
|
|
160
82
|
}
|
|
@@ -171,47 +93,41 @@ var pluginReactQuery = createPlugin((options) => {
|
|
|
171
93
|
const oas = await swaggerPlugin.context.getOas();
|
|
172
94
|
const root = path.resolve(this.config.root, this.config.output.path);
|
|
173
95
|
const mode = FileManager.getMode(path.resolve(root, output.path));
|
|
174
|
-
const
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
});
|
|
184
|
-
const files = await operationGenerator.build();
|
|
185
|
-
await this.addFile(...files);
|
|
186
|
-
},
|
|
187
|
-
async buildEnd() {
|
|
188
|
-
if (this.config.output.write === false) {
|
|
189
|
-
return;
|
|
190
|
-
}
|
|
191
|
-
const root = path.resolve(this.config.root, this.config.output.path);
|
|
192
|
-
if (group?.type === "tag") {
|
|
193
|
-
const rootFiles = await getGroupedByTagFiles({
|
|
194
|
-
logger: this.logger,
|
|
195
|
-
files: this.fileManager.files,
|
|
96
|
+
const baseURL = await swaggerPlugin.context.getBaseURL();
|
|
97
|
+
const operationGenerator = new OperationGenerator(
|
|
98
|
+
{
|
|
99
|
+
...this.plugin.options,
|
|
100
|
+
baseURL
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
oas,
|
|
104
|
+
pluginManager: this.pluginManager,
|
|
196
105
|
plugin: this.plugin,
|
|
197
|
-
|
|
198
|
-
|
|
106
|
+
contentType: swaggerPlugin.context.contentType,
|
|
107
|
+
exclude,
|
|
108
|
+
include,
|
|
109
|
+
override,
|
|
110
|
+
mode
|
|
111
|
+
}
|
|
112
|
+
);
|
|
113
|
+
const files = await operationGenerator.build(queryGenerator, suspenseQueryGenerator, infiniteQueryGenerator, mutationGenerator);
|
|
114
|
+
await this.addFile(...files);
|
|
115
|
+
if (this.config.output.exportType) {
|
|
116
|
+
const barrelFiles = await this.fileManager.getBarrelFiles({
|
|
199
117
|
root,
|
|
200
|
-
output
|
|
118
|
+
output,
|
|
119
|
+
files: this.fileManager.files,
|
|
120
|
+
meta: {
|
|
121
|
+
pluginKey: this.plugin.key
|
|
122
|
+
},
|
|
123
|
+
logger: this.logger
|
|
201
124
|
});
|
|
202
|
-
await this.addFile(...
|
|
125
|
+
await this.addFile(...barrelFiles);
|
|
203
126
|
}
|
|
204
|
-
await this.fileManager.addIndexes({
|
|
205
|
-
root,
|
|
206
|
-
output,
|
|
207
|
-
meta: { pluginKey: this.plugin.key },
|
|
208
|
-
logger: this.logger
|
|
209
|
-
});
|
|
210
127
|
}
|
|
211
128
|
};
|
|
212
129
|
});
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
};
|
|
130
|
+
|
|
131
|
+
export { pluginReactQuery, pluginReactQueryName };
|
|
132
|
+
//# sourceMappingURL=index.js.map
|
|
217
133
|
//# sourceMappingURL=index.js.map
|