@orval/query 7.11.1 → 7.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +15 -9
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +927 -2821
- package/dist/index.js.map +1 -1
- package/package.json +21 -11
package/dist/index.js
CHANGED
|
@@ -1,2860 +1,1000 @@
|
|
|
1
|
-
|
|
1
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
2
|
+
//#region rolldown:runtime
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
6
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
7
|
var __getProtoOf = Object.getPrototypeOf;
|
|
7
8
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __commonJS = (cb, mod) => function __require() {
|
|
9
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
10
|
-
};
|
|
11
|
-
var __export = (target, all) => {
|
|
12
|
-
for (var name in all)
|
|
13
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
14
|
-
};
|
|
15
9
|
var __copyProps = (to, from, except, desc) => {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
10
|
+
if (from && typeof from === "object" || typeof from === "function") for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
11
|
+
key = keys[i];
|
|
12
|
+
if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
|
|
13
|
+
get: ((k) => from[k]).bind(null, key),
|
|
14
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
return to;
|
|
22
18
|
};
|
|
23
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
28
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
29
|
-
mod
|
|
30
|
-
));
|
|
31
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
32
|
-
|
|
33
|
-
// ../../node_modules/chalk/node_modules/color-name/index.js
|
|
34
|
-
var require_color_name = __commonJS({
|
|
35
|
-
"../../node_modules/chalk/node_modules/color-name/index.js"(exports2, module2) {
|
|
36
|
-
"use strict";
|
|
37
|
-
module2.exports = {
|
|
38
|
-
"aliceblue": [240, 248, 255],
|
|
39
|
-
"antiquewhite": [250, 235, 215],
|
|
40
|
-
"aqua": [0, 255, 255],
|
|
41
|
-
"aquamarine": [127, 255, 212],
|
|
42
|
-
"azure": [240, 255, 255],
|
|
43
|
-
"beige": [245, 245, 220],
|
|
44
|
-
"bisque": [255, 228, 196],
|
|
45
|
-
"black": [0, 0, 0],
|
|
46
|
-
"blanchedalmond": [255, 235, 205],
|
|
47
|
-
"blue": [0, 0, 255],
|
|
48
|
-
"blueviolet": [138, 43, 226],
|
|
49
|
-
"brown": [165, 42, 42],
|
|
50
|
-
"burlywood": [222, 184, 135],
|
|
51
|
-
"cadetblue": [95, 158, 160],
|
|
52
|
-
"chartreuse": [127, 255, 0],
|
|
53
|
-
"chocolate": [210, 105, 30],
|
|
54
|
-
"coral": [255, 127, 80],
|
|
55
|
-
"cornflowerblue": [100, 149, 237],
|
|
56
|
-
"cornsilk": [255, 248, 220],
|
|
57
|
-
"crimson": [220, 20, 60],
|
|
58
|
-
"cyan": [0, 255, 255],
|
|
59
|
-
"darkblue": [0, 0, 139],
|
|
60
|
-
"darkcyan": [0, 139, 139],
|
|
61
|
-
"darkgoldenrod": [184, 134, 11],
|
|
62
|
-
"darkgray": [169, 169, 169],
|
|
63
|
-
"darkgreen": [0, 100, 0],
|
|
64
|
-
"darkgrey": [169, 169, 169],
|
|
65
|
-
"darkkhaki": [189, 183, 107],
|
|
66
|
-
"darkmagenta": [139, 0, 139],
|
|
67
|
-
"darkolivegreen": [85, 107, 47],
|
|
68
|
-
"darkorange": [255, 140, 0],
|
|
69
|
-
"darkorchid": [153, 50, 204],
|
|
70
|
-
"darkred": [139, 0, 0],
|
|
71
|
-
"darksalmon": [233, 150, 122],
|
|
72
|
-
"darkseagreen": [143, 188, 143],
|
|
73
|
-
"darkslateblue": [72, 61, 139],
|
|
74
|
-
"darkslategray": [47, 79, 79],
|
|
75
|
-
"darkslategrey": [47, 79, 79],
|
|
76
|
-
"darkturquoise": [0, 206, 209],
|
|
77
|
-
"darkviolet": [148, 0, 211],
|
|
78
|
-
"deeppink": [255, 20, 147],
|
|
79
|
-
"deepskyblue": [0, 191, 255],
|
|
80
|
-
"dimgray": [105, 105, 105],
|
|
81
|
-
"dimgrey": [105, 105, 105],
|
|
82
|
-
"dodgerblue": [30, 144, 255],
|
|
83
|
-
"firebrick": [178, 34, 34],
|
|
84
|
-
"floralwhite": [255, 250, 240],
|
|
85
|
-
"forestgreen": [34, 139, 34],
|
|
86
|
-
"fuchsia": [255, 0, 255],
|
|
87
|
-
"gainsboro": [220, 220, 220],
|
|
88
|
-
"ghostwhite": [248, 248, 255],
|
|
89
|
-
"gold": [255, 215, 0],
|
|
90
|
-
"goldenrod": [218, 165, 32],
|
|
91
|
-
"gray": [128, 128, 128],
|
|
92
|
-
"green": [0, 128, 0],
|
|
93
|
-
"greenyellow": [173, 255, 47],
|
|
94
|
-
"grey": [128, 128, 128],
|
|
95
|
-
"honeydew": [240, 255, 240],
|
|
96
|
-
"hotpink": [255, 105, 180],
|
|
97
|
-
"indianred": [205, 92, 92],
|
|
98
|
-
"indigo": [75, 0, 130],
|
|
99
|
-
"ivory": [255, 255, 240],
|
|
100
|
-
"khaki": [240, 230, 140],
|
|
101
|
-
"lavender": [230, 230, 250],
|
|
102
|
-
"lavenderblush": [255, 240, 245],
|
|
103
|
-
"lawngreen": [124, 252, 0],
|
|
104
|
-
"lemonchiffon": [255, 250, 205],
|
|
105
|
-
"lightblue": [173, 216, 230],
|
|
106
|
-
"lightcoral": [240, 128, 128],
|
|
107
|
-
"lightcyan": [224, 255, 255],
|
|
108
|
-
"lightgoldenrodyellow": [250, 250, 210],
|
|
109
|
-
"lightgray": [211, 211, 211],
|
|
110
|
-
"lightgreen": [144, 238, 144],
|
|
111
|
-
"lightgrey": [211, 211, 211],
|
|
112
|
-
"lightpink": [255, 182, 193],
|
|
113
|
-
"lightsalmon": [255, 160, 122],
|
|
114
|
-
"lightseagreen": [32, 178, 170],
|
|
115
|
-
"lightskyblue": [135, 206, 250],
|
|
116
|
-
"lightslategray": [119, 136, 153],
|
|
117
|
-
"lightslategrey": [119, 136, 153],
|
|
118
|
-
"lightsteelblue": [176, 196, 222],
|
|
119
|
-
"lightyellow": [255, 255, 224],
|
|
120
|
-
"lime": [0, 255, 0],
|
|
121
|
-
"limegreen": [50, 205, 50],
|
|
122
|
-
"linen": [250, 240, 230],
|
|
123
|
-
"magenta": [255, 0, 255],
|
|
124
|
-
"maroon": [128, 0, 0],
|
|
125
|
-
"mediumaquamarine": [102, 205, 170],
|
|
126
|
-
"mediumblue": [0, 0, 205],
|
|
127
|
-
"mediumorchid": [186, 85, 211],
|
|
128
|
-
"mediumpurple": [147, 112, 219],
|
|
129
|
-
"mediumseagreen": [60, 179, 113],
|
|
130
|
-
"mediumslateblue": [123, 104, 238],
|
|
131
|
-
"mediumspringgreen": [0, 250, 154],
|
|
132
|
-
"mediumturquoise": [72, 209, 204],
|
|
133
|
-
"mediumvioletred": [199, 21, 133],
|
|
134
|
-
"midnightblue": [25, 25, 112],
|
|
135
|
-
"mintcream": [245, 255, 250],
|
|
136
|
-
"mistyrose": [255, 228, 225],
|
|
137
|
-
"moccasin": [255, 228, 181],
|
|
138
|
-
"navajowhite": [255, 222, 173],
|
|
139
|
-
"navy": [0, 0, 128],
|
|
140
|
-
"oldlace": [253, 245, 230],
|
|
141
|
-
"olive": [128, 128, 0],
|
|
142
|
-
"olivedrab": [107, 142, 35],
|
|
143
|
-
"orange": [255, 165, 0],
|
|
144
|
-
"orangered": [255, 69, 0],
|
|
145
|
-
"orchid": [218, 112, 214],
|
|
146
|
-
"palegoldenrod": [238, 232, 170],
|
|
147
|
-
"palegreen": [152, 251, 152],
|
|
148
|
-
"paleturquoise": [175, 238, 238],
|
|
149
|
-
"palevioletred": [219, 112, 147],
|
|
150
|
-
"papayawhip": [255, 239, 213],
|
|
151
|
-
"peachpuff": [255, 218, 185],
|
|
152
|
-
"peru": [205, 133, 63],
|
|
153
|
-
"pink": [255, 192, 203],
|
|
154
|
-
"plum": [221, 160, 221],
|
|
155
|
-
"powderblue": [176, 224, 230],
|
|
156
|
-
"purple": [128, 0, 128],
|
|
157
|
-
"rebeccapurple": [102, 51, 153],
|
|
158
|
-
"red": [255, 0, 0],
|
|
159
|
-
"rosybrown": [188, 143, 143],
|
|
160
|
-
"royalblue": [65, 105, 225],
|
|
161
|
-
"saddlebrown": [139, 69, 19],
|
|
162
|
-
"salmon": [250, 128, 114],
|
|
163
|
-
"sandybrown": [244, 164, 96],
|
|
164
|
-
"seagreen": [46, 139, 87],
|
|
165
|
-
"seashell": [255, 245, 238],
|
|
166
|
-
"sienna": [160, 82, 45],
|
|
167
|
-
"silver": [192, 192, 192],
|
|
168
|
-
"skyblue": [135, 206, 235],
|
|
169
|
-
"slateblue": [106, 90, 205],
|
|
170
|
-
"slategray": [112, 128, 144],
|
|
171
|
-
"slategrey": [112, 128, 144],
|
|
172
|
-
"snow": [255, 250, 250],
|
|
173
|
-
"springgreen": [0, 255, 127],
|
|
174
|
-
"steelblue": [70, 130, 180],
|
|
175
|
-
"tan": [210, 180, 140],
|
|
176
|
-
"teal": [0, 128, 128],
|
|
177
|
-
"thistle": [216, 191, 216],
|
|
178
|
-
"tomato": [255, 99, 71],
|
|
179
|
-
"turquoise": [64, 224, 208],
|
|
180
|
-
"violet": [238, 130, 238],
|
|
181
|
-
"wheat": [245, 222, 179],
|
|
182
|
-
"white": [255, 255, 255],
|
|
183
|
-
"whitesmoke": [245, 245, 245],
|
|
184
|
-
"yellow": [255, 255, 0],
|
|
185
|
-
"yellowgreen": [154, 205, 50]
|
|
186
|
-
};
|
|
187
|
-
}
|
|
188
|
-
});
|
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
20
|
+
value: mod,
|
|
21
|
+
enumerable: true
|
|
22
|
+
}) : target, mod));
|
|
189
23
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
var convert = {
|
|
200
|
-
rgb: { channels: 3, labels: "rgb" },
|
|
201
|
-
hsl: { channels: 3, labels: "hsl" },
|
|
202
|
-
hsv: { channels: 3, labels: "hsv" },
|
|
203
|
-
hwb: { channels: 3, labels: "hwb" },
|
|
204
|
-
cmyk: { channels: 4, labels: "cmyk" },
|
|
205
|
-
xyz: { channels: 3, labels: "xyz" },
|
|
206
|
-
lab: { channels: 3, labels: "lab" },
|
|
207
|
-
lch: { channels: 3, labels: "lch" },
|
|
208
|
-
hex: { channels: 1, labels: ["hex"] },
|
|
209
|
-
keyword: { channels: 1, labels: ["keyword"] },
|
|
210
|
-
ansi16: { channels: 1, labels: ["ansi16"] },
|
|
211
|
-
ansi256: { channels: 1, labels: ["ansi256"] },
|
|
212
|
-
hcg: { channels: 3, labels: ["h", "c", "g"] },
|
|
213
|
-
apple: { channels: 3, labels: ["r16", "g16", "b16"] },
|
|
214
|
-
gray: { channels: 1, labels: ["gray"] }
|
|
215
|
-
};
|
|
216
|
-
module2.exports = convert;
|
|
217
|
-
for (const model of Object.keys(convert)) {
|
|
218
|
-
if (!("channels" in convert[model])) {
|
|
219
|
-
throw new Error("missing channels property: " + model);
|
|
220
|
-
}
|
|
221
|
-
if (!("labels" in convert[model])) {
|
|
222
|
-
throw new Error("missing channel labels property: " + model);
|
|
223
|
-
}
|
|
224
|
-
if (convert[model].labels.length !== convert[model].channels) {
|
|
225
|
-
throw new Error("channel and label counts mismatch: " + model);
|
|
226
|
-
}
|
|
227
|
-
const { channels, labels } = convert[model];
|
|
228
|
-
delete convert[model].channels;
|
|
229
|
-
delete convert[model].labels;
|
|
230
|
-
Object.defineProperty(convert[model], "channels", { value: channels });
|
|
231
|
-
Object.defineProperty(convert[model], "labels", { value: labels });
|
|
232
|
-
}
|
|
233
|
-
convert.rgb.hsl = function(rgb) {
|
|
234
|
-
const r = rgb[0] / 255;
|
|
235
|
-
const g = rgb[1] / 255;
|
|
236
|
-
const b = rgb[2] / 255;
|
|
237
|
-
const min = Math.min(r, g, b);
|
|
238
|
-
const max = Math.max(r, g, b);
|
|
239
|
-
const delta = max - min;
|
|
240
|
-
let h;
|
|
241
|
-
let s;
|
|
242
|
-
if (max === min) {
|
|
243
|
-
h = 0;
|
|
244
|
-
} else if (r === max) {
|
|
245
|
-
h = (g - b) / delta;
|
|
246
|
-
} else if (g === max) {
|
|
247
|
-
h = 2 + (b - r) / delta;
|
|
248
|
-
} else if (b === max) {
|
|
249
|
-
h = 4 + (r - g) / delta;
|
|
250
|
-
}
|
|
251
|
-
h = Math.min(h * 60, 360);
|
|
252
|
-
if (h < 0) {
|
|
253
|
-
h += 360;
|
|
254
|
-
}
|
|
255
|
-
const l = (min + max) / 2;
|
|
256
|
-
if (max === min) {
|
|
257
|
-
s = 0;
|
|
258
|
-
} else if (l <= 0.5) {
|
|
259
|
-
s = delta / (max + min);
|
|
260
|
-
} else {
|
|
261
|
-
s = delta / (2 - max - min);
|
|
262
|
-
}
|
|
263
|
-
return [h, s * 100, l * 100];
|
|
264
|
-
};
|
|
265
|
-
convert.rgb.hsv = function(rgb) {
|
|
266
|
-
let rdif;
|
|
267
|
-
let gdif;
|
|
268
|
-
let bdif;
|
|
269
|
-
let h;
|
|
270
|
-
let s;
|
|
271
|
-
const r = rgb[0] / 255;
|
|
272
|
-
const g = rgb[1] / 255;
|
|
273
|
-
const b = rgb[2] / 255;
|
|
274
|
-
const v = Math.max(r, g, b);
|
|
275
|
-
const diff = v - Math.min(r, g, b);
|
|
276
|
-
const diffc = function(c) {
|
|
277
|
-
return (v - c) / 6 / diff + 1 / 2;
|
|
278
|
-
};
|
|
279
|
-
if (diff === 0) {
|
|
280
|
-
h = 0;
|
|
281
|
-
s = 0;
|
|
282
|
-
} else {
|
|
283
|
-
s = diff / v;
|
|
284
|
-
rdif = diffc(r);
|
|
285
|
-
gdif = diffc(g);
|
|
286
|
-
bdif = diffc(b);
|
|
287
|
-
if (r === v) {
|
|
288
|
-
h = bdif - gdif;
|
|
289
|
-
} else if (g === v) {
|
|
290
|
-
h = 1 / 3 + rdif - bdif;
|
|
291
|
-
} else if (b === v) {
|
|
292
|
-
h = 2 / 3 + gdif - rdif;
|
|
293
|
-
}
|
|
294
|
-
if (h < 0) {
|
|
295
|
-
h += 1;
|
|
296
|
-
} else if (h > 1) {
|
|
297
|
-
h -= 1;
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
return [
|
|
301
|
-
h * 360,
|
|
302
|
-
s * 100,
|
|
303
|
-
v * 100
|
|
304
|
-
];
|
|
305
|
-
};
|
|
306
|
-
convert.rgb.hwb = function(rgb) {
|
|
307
|
-
const r = rgb[0];
|
|
308
|
-
const g = rgb[1];
|
|
309
|
-
let b = rgb[2];
|
|
310
|
-
const h = convert.rgb.hsl(rgb)[0];
|
|
311
|
-
const w = 1 / 255 * Math.min(r, Math.min(g, b));
|
|
312
|
-
b = 1 - 1 / 255 * Math.max(r, Math.max(g, b));
|
|
313
|
-
return [h, w * 100, b * 100];
|
|
314
|
-
};
|
|
315
|
-
convert.rgb.cmyk = function(rgb) {
|
|
316
|
-
const r = rgb[0] / 255;
|
|
317
|
-
const g = rgb[1] / 255;
|
|
318
|
-
const b = rgb[2] / 255;
|
|
319
|
-
const k = Math.min(1 - r, 1 - g, 1 - b);
|
|
320
|
-
const c = (1 - r - k) / (1 - k) || 0;
|
|
321
|
-
const m = (1 - g - k) / (1 - k) || 0;
|
|
322
|
-
const y = (1 - b - k) / (1 - k) || 0;
|
|
323
|
-
return [c * 100, m * 100, y * 100, k * 100];
|
|
324
|
-
};
|
|
325
|
-
function comparativeDistance(x, y) {
|
|
326
|
-
return (x[0] - y[0]) ** 2 + (x[1] - y[1]) ** 2 + (x[2] - y[2]) ** 2;
|
|
327
|
-
}
|
|
328
|
-
convert.rgb.keyword = function(rgb) {
|
|
329
|
-
const reversed = reverseKeywords[rgb];
|
|
330
|
-
if (reversed) {
|
|
331
|
-
return reversed;
|
|
332
|
-
}
|
|
333
|
-
let currentClosestDistance = Infinity;
|
|
334
|
-
let currentClosestKeyword;
|
|
335
|
-
for (const keyword of Object.keys(cssKeywords)) {
|
|
336
|
-
const value = cssKeywords[keyword];
|
|
337
|
-
const distance = comparativeDistance(rgb, value);
|
|
338
|
-
if (distance < currentClosestDistance) {
|
|
339
|
-
currentClosestDistance = distance;
|
|
340
|
-
currentClosestKeyword = keyword;
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
return currentClosestKeyword;
|
|
344
|
-
};
|
|
345
|
-
convert.keyword.rgb = function(keyword) {
|
|
346
|
-
return cssKeywords[keyword];
|
|
347
|
-
};
|
|
348
|
-
convert.rgb.xyz = function(rgb) {
|
|
349
|
-
let r = rgb[0] / 255;
|
|
350
|
-
let g = rgb[1] / 255;
|
|
351
|
-
let b = rgb[2] / 255;
|
|
352
|
-
r = r > 0.04045 ? ((r + 0.055) / 1.055) ** 2.4 : r / 12.92;
|
|
353
|
-
g = g > 0.04045 ? ((g + 0.055) / 1.055) ** 2.4 : g / 12.92;
|
|
354
|
-
b = b > 0.04045 ? ((b + 0.055) / 1.055) ** 2.4 : b / 12.92;
|
|
355
|
-
const x = r * 0.4124 + g * 0.3576 + b * 0.1805;
|
|
356
|
-
const y = r * 0.2126 + g * 0.7152 + b * 0.0722;
|
|
357
|
-
const z = r * 0.0193 + g * 0.1192 + b * 0.9505;
|
|
358
|
-
return [x * 100, y * 100, z * 100];
|
|
359
|
-
};
|
|
360
|
-
convert.rgb.lab = function(rgb) {
|
|
361
|
-
const xyz = convert.rgb.xyz(rgb);
|
|
362
|
-
let x = xyz[0];
|
|
363
|
-
let y = xyz[1];
|
|
364
|
-
let z = xyz[2];
|
|
365
|
-
x /= 95.047;
|
|
366
|
-
y /= 100;
|
|
367
|
-
z /= 108.883;
|
|
368
|
-
x = x > 8856e-6 ? x ** (1 / 3) : 7.787 * x + 16 / 116;
|
|
369
|
-
y = y > 8856e-6 ? y ** (1 / 3) : 7.787 * y + 16 / 116;
|
|
370
|
-
z = z > 8856e-6 ? z ** (1 / 3) : 7.787 * z + 16 / 116;
|
|
371
|
-
const l = 116 * y - 16;
|
|
372
|
-
const a = 500 * (x - y);
|
|
373
|
-
const b = 200 * (y - z);
|
|
374
|
-
return [l, a, b];
|
|
375
|
-
};
|
|
376
|
-
convert.hsl.rgb = function(hsl) {
|
|
377
|
-
const h = hsl[0] / 360;
|
|
378
|
-
const s = hsl[1] / 100;
|
|
379
|
-
const l = hsl[2] / 100;
|
|
380
|
-
let t2;
|
|
381
|
-
let t3;
|
|
382
|
-
let val;
|
|
383
|
-
if (s === 0) {
|
|
384
|
-
val = l * 255;
|
|
385
|
-
return [val, val, val];
|
|
386
|
-
}
|
|
387
|
-
if (l < 0.5) {
|
|
388
|
-
t2 = l * (1 + s);
|
|
389
|
-
} else {
|
|
390
|
-
t2 = l + s - l * s;
|
|
391
|
-
}
|
|
392
|
-
const t1 = 2 * l - t2;
|
|
393
|
-
const rgb = [0, 0, 0];
|
|
394
|
-
for (let i = 0; i < 3; i++) {
|
|
395
|
-
t3 = h + 1 / 3 * -(i - 1);
|
|
396
|
-
if (t3 < 0) {
|
|
397
|
-
t3++;
|
|
398
|
-
}
|
|
399
|
-
if (t3 > 1) {
|
|
400
|
-
t3--;
|
|
401
|
-
}
|
|
402
|
-
if (6 * t3 < 1) {
|
|
403
|
-
val = t1 + (t2 - t1) * 6 * t3;
|
|
404
|
-
} else if (2 * t3 < 1) {
|
|
405
|
-
val = t2;
|
|
406
|
-
} else if (3 * t3 < 2) {
|
|
407
|
-
val = t1 + (t2 - t1) * (2 / 3 - t3) * 6;
|
|
408
|
-
} else {
|
|
409
|
-
val = t1;
|
|
410
|
-
}
|
|
411
|
-
rgb[i] = val * 255;
|
|
412
|
-
}
|
|
413
|
-
return rgb;
|
|
414
|
-
};
|
|
415
|
-
convert.hsl.hsv = function(hsl) {
|
|
416
|
-
const h = hsl[0];
|
|
417
|
-
let s = hsl[1] / 100;
|
|
418
|
-
let l = hsl[2] / 100;
|
|
419
|
-
let smin = s;
|
|
420
|
-
const lmin = Math.max(l, 0.01);
|
|
421
|
-
l *= 2;
|
|
422
|
-
s *= l <= 1 ? l : 2 - l;
|
|
423
|
-
smin *= lmin <= 1 ? lmin : 2 - lmin;
|
|
424
|
-
const v = (l + s) / 2;
|
|
425
|
-
const sv = l === 0 ? 2 * smin / (lmin + smin) : 2 * s / (l + s);
|
|
426
|
-
return [h, sv * 100, v * 100];
|
|
427
|
-
};
|
|
428
|
-
convert.hsv.rgb = function(hsv) {
|
|
429
|
-
const h = hsv[0] / 60;
|
|
430
|
-
const s = hsv[1] / 100;
|
|
431
|
-
let v = hsv[2] / 100;
|
|
432
|
-
const hi = Math.floor(h) % 6;
|
|
433
|
-
const f = h - Math.floor(h);
|
|
434
|
-
const p = 255 * v * (1 - s);
|
|
435
|
-
const q = 255 * v * (1 - s * f);
|
|
436
|
-
const t = 255 * v * (1 - s * (1 - f));
|
|
437
|
-
v *= 255;
|
|
438
|
-
switch (hi) {
|
|
439
|
-
case 0:
|
|
440
|
-
return [v, t, p];
|
|
441
|
-
case 1:
|
|
442
|
-
return [q, v, p];
|
|
443
|
-
case 2:
|
|
444
|
-
return [p, v, t];
|
|
445
|
-
case 3:
|
|
446
|
-
return [p, q, v];
|
|
447
|
-
case 4:
|
|
448
|
-
return [t, p, v];
|
|
449
|
-
case 5:
|
|
450
|
-
return [v, p, q];
|
|
451
|
-
}
|
|
452
|
-
};
|
|
453
|
-
convert.hsv.hsl = function(hsv) {
|
|
454
|
-
const h = hsv[0];
|
|
455
|
-
const s = hsv[1] / 100;
|
|
456
|
-
const v = hsv[2] / 100;
|
|
457
|
-
const vmin = Math.max(v, 0.01);
|
|
458
|
-
let sl;
|
|
459
|
-
let l;
|
|
460
|
-
l = (2 - s) * v;
|
|
461
|
-
const lmin = (2 - s) * vmin;
|
|
462
|
-
sl = s * vmin;
|
|
463
|
-
sl /= lmin <= 1 ? lmin : 2 - lmin;
|
|
464
|
-
sl = sl || 0;
|
|
465
|
-
l /= 2;
|
|
466
|
-
return [h, sl * 100, l * 100];
|
|
467
|
-
};
|
|
468
|
-
convert.hwb.rgb = function(hwb) {
|
|
469
|
-
const h = hwb[0] / 360;
|
|
470
|
-
let wh = hwb[1] / 100;
|
|
471
|
-
let bl = hwb[2] / 100;
|
|
472
|
-
const ratio = wh + bl;
|
|
473
|
-
let f;
|
|
474
|
-
if (ratio > 1) {
|
|
475
|
-
wh /= ratio;
|
|
476
|
-
bl /= ratio;
|
|
477
|
-
}
|
|
478
|
-
const i = Math.floor(6 * h);
|
|
479
|
-
const v = 1 - bl;
|
|
480
|
-
f = 6 * h - i;
|
|
481
|
-
if ((i & 1) !== 0) {
|
|
482
|
-
f = 1 - f;
|
|
483
|
-
}
|
|
484
|
-
const n = wh + f * (v - wh);
|
|
485
|
-
let r;
|
|
486
|
-
let g;
|
|
487
|
-
let b;
|
|
488
|
-
switch (i) {
|
|
489
|
-
default:
|
|
490
|
-
case 6:
|
|
491
|
-
case 0:
|
|
492
|
-
r = v;
|
|
493
|
-
g = n;
|
|
494
|
-
b = wh;
|
|
495
|
-
break;
|
|
496
|
-
case 1:
|
|
497
|
-
r = n;
|
|
498
|
-
g = v;
|
|
499
|
-
b = wh;
|
|
500
|
-
break;
|
|
501
|
-
case 2:
|
|
502
|
-
r = wh;
|
|
503
|
-
g = v;
|
|
504
|
-
b = n;
|
|
505
|
-
break;
|
|
506
|
-
case 3:
|
|
507
|
-
r = wh;
|
|
508
|
-
g = n;
|
|
509
|
-
b = v;
|
|
510
|
-
break;
|
|
511
|
-
case 4:
|
|
512
|
-
r = n;
|
|
513
|
-
g = wh;
|
|
514
|
-
b = v;
|
|
515
|
-
break;
|
|
516
|
-
case 5:
|
|
517
|
-
r = v;
|
|
518
|
-
g = wh;
|
|
519
|
-
b = n;
|
|
520
|
-
break;
|
|
521
|
-
}
|
|
522
|
-
return [r * 255, g * 255, b * 255];
|
|
523
|
-
};
|
|
524
|
-
convert.cmyk.rgb = function(cmyk) {
|
|
525
|
-
const c = cmyk[0] / 100;
|
|
526
|
-
const m = cmyk[1] / 100;
|
|
527
|
-
const y = cmyk[2] / 100;
|
|
528
|
-
const k = cmyk[3] / 100;
|
|
529
|
-
const r = 1 - Math.min(1, c * (1 - k) + k);
|
|
530
|
-
const g = 1 - Math.min(1, m * (1 - k) + k);
|
|
531
|
-
const b = 1 - Math.min(1, y * (1 - k) + k);
|
|
532
|
-
return [r * 255, g * 255, b * 255];
|
|
533
|
-
};
|
|
534
|
-
convert.xyz.rgb = function(xyz) {
|
|
535
|
-
const x = xyz[0] / 100;
|
|
536
|
-
const y = xyz[1] / 100;
|
|
537
|
-
const z = xyz[2] / 100;
|
|
538
|
-
let r;
|
|
539
|
-
let g;
|
|
540
|
-
let b;
|
|
541
|
-
r = x * 3.2406 + y * -1.5372 + z * -0.4986;
|
|
542
|
-
g = x * -0.9689 + y * 1.8758 + z * 0.0415;
|
|
543
|
-
b = x * 0.0557 + y * -0.204 + z * 1.057;
|
|
544
|
-
r = r > 31308e-7 ? 1.055 * r ** (1 / 2.4) - 0.055 : r * 12.92;
|
|
545
|
-
g = g > 31308e-7 ? 1.055 * g ** (1 / 2.4) - 0.055 : g * 12.92;
|
|
546
|
-
b = b > 31308e-7 ? 1.055 * b ** (1 / 2.4) - 0.055 : b * 12.92;
|
|
547
|
-
r = Math.min(Math.max(0, r), 1);
|
|
548
|
-
g = Math.min(Math.max(0, g), 1);
|
|
549
|
-
b = Math.min(Math.max(0, b), 1);
|
|
550
|
-
return [r * 255, g * 255, b * 255];
|
|
551
|
-
};
|
|
552
|
-
convert.xyz.lab = function(xyz) {
|
|
553
|
-
let x = xyz[0];
|
|
554
|
-
let y = xyz[1];
|
|
555
|
-
let z = xyz[2];
|
|
556
|
-
x /= 95.047;
|
|
557
|
-
y /= 100;
|
|
558
|
-
z /= 108.883;
|
|
559
|
-
x = x > 8856e-6 ? x ** (1 / 3) : 7.787 * x + 16 / 116;
|
|
560
|
-
y = y > 8856e-6 ? y ** (1 / 3) : 7.787 * y + 16 / 116;
|
|
561
|
-
z = z > 8856e-6 ? z ** (1 / 3) : 7.787 * z + 16 / 116;
|
|
562
|
-
const l = 116 * y - 16;
|
|
563
|
-
const a = 500 * (x - y);
|
|
564
|
-
const b = 200 * (y - z);
|
|
565
|
-
return [l, a, b];
|
|
566
|
-
};
|
|
567
|
-
convert.lab.xyz = function(lab) {
|
|
568
|
-
const l = lab[0];
|
|
569
|
-
const a = lab[1];
|
|
570
|
-
const b = lab[2];
|
|
571
|
-
let x;
|
|
572
|
-
let y;
|
|
573
|
-
let z;
|
|
574
|
-
y = (l + 16) / 116;
|
|
575
|
-
x = a / 500 + y;
|
|
576
|
-
z = y - b / 200;
|
|
577
|
-
const y2 = y ** 3;
|
|
578
|
-
const x2 = x ** 3;
|
|
579
|
-
const z2 = z ** 3;
|
|
580
|
-
y = y2 > 8856e-6 ? y2 : (y - 16 / 116) / 7.787;
|
|
581
|
-
x = x2 > 8856e-6 ? x2 : (x - 16 / 116) / 7.787;
|
|
582
|
-
z = z2 > 8856e-6 ? z2 : (z - 16 / 116) / 7.787;
|
|
583
|
-
x *= 95.047;
|
|
584
|
-
y *= 100;
|
|
585
|
-
z *= 108.883;
|
|
586
|
-
return [x, y, z];
|
|
587
|
-
};
|
|
588
|
-
convert.lab.lch = function(lab) {
|
|
589
|
-
const l = lab[0];
|
|
590
|
-
const a = lab[1];
|
|
591
|
-
const b = lab[2];
|
|
592
|
-
let h;
|
|
593
|
-
const hr = Math.atan2(b, a);
|
|
594
|
-
h = hr * 360 / 2 / Math.PI;
|
|
595
|
-
if (h < 0) {
|
|
596
|
-
h += 360;
|
|
597
|
-
}
|
|
598
|
-
const c = Math.sqrt(a * a + b * b);
|
|
599
|
-
return [l, c, h];
|
|
600
|
-
};
|
|
601
|
-
convert.lch.lab = function(lch) {
|
|
602
|
-
const l = lch[0];
|
|
603
|
-
const c = lch[1];
|
|
604
|
-
const h = lch[2];
|
|
605
|
-
const hr = h / 360 * 2 * Math.PI;
|
|
606
|
-
const a = c * Math.cos(hr);
|
|
607
|
-
const b = c * Math.sin(hr);
|
|
608
|
-
return [l, a, b];
|
|
609
|
-
};
|
|
610
|
-
convert.rgb.ansi16 = function(args, saturation = null) {
|
|
611
|
-
const [r, g, b] = args;
|
|
612
|
-
let value = saturation === null ? convert.rgb.hsv(args)[2] : saturation;
|
|
613
|
-
value = Math.round(value / 50);
|
|
614
|
-
if (value === 0) {
|
|
615
|
-
return 30;
|
|
616
|
-
}
|
|
617
|
-
let ansi = 30 + (Math.round(b / 255) << 2 | Math.round(g / 255) << 1 | Math.round(r / 255));
|
|
618
|
-
if (value === 2) {
|
|
619
|
-
ansi += 60;
|
|
620
|
-
}
|
|
621
|
-
return ansi;
|
|
622
|
-
};
|
|
623
|
-
convert.hsv.ansi16 = function(args) {
|
|
624
|
-
return convert.rgb.ansi16(convert.hsv.rgb(args), args[2]);
|
|
625
|
-
};
|
|
626
|
-
convert.rgb.ansi256 = function(args) {
|
|
627
|
-
const r = args[0];
|
|
628
|
-
const g = args[1];
|
|
629
|
-
const b = args[2];
|
|
630
|
-
if (r === g && g === b) {
|
|
631
|
-
if (r < 8) {
|
|
632
|
-
return 16;
|
|
633
|
-
}
|
|
634
|
-
if (r > 248) {
|
|
635
|
-
return 231;
|
|
636
|
-
}
|
|
637
|
-
return Math.round((r - 8) / 247 * 24) + 232;
|
|
638
|
-
}
|
|
639
|
-
const ansi = 16 + 36 * Math.round(r / 255 * 5) + 6 * Math.round(g / 255 * 5) + Math.round(b / 255 * 5);
|
|
640
|
-
return ansi;
|
|
641
|
-
};
|
|
642
|
-
convert.ansi16.rgb = function(args) {
|
|
643
|
-
let color = args % 10;
|
|
644
|
-
if (color === 0 || color === 7) {
|
|
645
|
-
if (args > 50) {
|
|
646
|
-
color += 3.5;
|
|
647
|
-
}
|
|
648
|
-
color = color / 10.5 * 255;
|
|
649
|
-
return [color, color, color];
|
|
650
|
-
}
|
|
651
|
-
const mult = (~~(args > 50) + 1) * 0.5;
|
|
652
|
-
const r = (color & 1) * mult * 255;
|
|
653
|
-
const g = (color >> 1 & 1) * mult * 255;
|
|
654
|
-
const b = (color >> 2 & 1) * mult * 255;
|
|
655
|
-
return [r, g, b];
|
|
656
|
-
};
|
|
657
|
-
convert.ansi256.rgb = function(args) {
|
|
658
|
-
if (args >= 232) {
|
|
659
|
-
const c = (args - 232) * 10 + 8;
|
|
660
|
-
return [c, c, c];
|
|
661
|
-
}
|
|
662
|
-
args -= 16;
|
|
663
|
-
let rem;
|
|
664
|
-
const r = Math.floor(args / 36) / 5 * 255;
|
|
665
|
-
const g = Math.floor((rem = args % 36) / 6) / 5 * 255;
|
|
666
|
-
const b = rem % 6 / 5 * 255;
|
|
667
|
-
return [r, g, b];
|
|
668
|
-
};
|
|
669
|
-
convert.rgb.hex = function(args) {
|
|
670
|
-
const integer = ((Math.round(args[0]) & 255) << 16) + ((Math.round(args[1]) & 255) << 8) + (Math.round(args[2]) & 255);
|
|
671
|
-
const string = integer.toString(16).toUpperCase();
|
|
672
|
-
return "000000".substring(string.length) + string;
|
|
673
|
-
};
|
|
674
|
-
convert.hex.rgb = function(args) {
|
|
675
|
-
const match = args.toString(16).match(/[a-f0-9]{6}|[a-f0-9]{3}/i);
|
|
676
|
-
if (!match) {
|
|
677
|
-
return [0, 0, 0];
|
|
678
|
-
}
|
|
679
|
-
let colorString = match[0];
|
|
680
|
-
if (match[0].length === 3) {
|
|
681
|
-
colorString = colorString.split("").map((char) => {
|
|
682
|
-
return char + char;
|
|
683
|
-
}).join("");
|
|
684
|
-
}
|
|
685
|
-
const integer = parseInt(colorString, 16);
|
|
686
|
-
const r = integer >> 16 & 255;
|
|
687
|
-
const g = integer >> 8 & 255;
|
|
688
|
-
const b = integer & 255;
|
|
689
|
-
return [r, g, b];
|
|
690
|
-
};
|
|
691
|
-
convert.rgb.hcg = function(rgb) {
|
|
692
|
-
const r = rgb[0] / 255;
|
|
693
|
-
const g = rgb[1] / 255;
|
|
694
|
-
const b = rgb[2] / 255;
|
|
695
|
-
const max = Math.max(Math.max(r, g), b);
|
|
696
|
-
const min = Math.min(Math.min(r, g), b);
|
|
697
|
-
const chroma = max - min;
|
|
698
|
-
let grayscale;
|
|
699
|
-
let hue;
|
|
700
|
-
if (chroma < 1) {
|
|
701
|
-
grayscale = min / (1 - chroma);
|
|
702
|
-
} else {
|
|
703
|
-
grayscale = 0;
|
|
704
|
-
}
|
|
705
|
-
if (chroma <= 0) {
|
|
706
|
-
hue = 0;
|
|
707
|
-
} else if (max === r) {
|
|
708
|
-
hue = (g - b) / chroma % 6;
|
|
709
|
-
} else if (max === g) {
|
|
710
|
-
hue = 2 + (b - r) / chroma;
|
|
711
|
-
} else {
|
|
712
|
-
hue = 4 + (r - g) / chroma;
|
|
713
|
-
}
|
|
714
|
-
hue /= 6;
|
|
715
|
-
hue %= 1;
|
|
716
|
-
return [hue * 360, chroma * 100, grayscale * 100];
|
|
717
|
-
};
|
|
718
|
-
convert.hsl.hcg = function(hsl) {
|
|
719
|
-
const s = hsl[1] / 100;
|
|
720
|
-
const l = hsl[2] / 100;
|
|
721
|
-
const c = l < 0.5 ? 2 * s * l : 2 * s * (1 - l);
|
|
722
|
-
let f = 0;
|
|
723
|
-
if (c < 1) {
|
|
724
|
-
f = (l - 0.5 * c) / (1 - c);
|
|
725
|
-
}
|
|
726
|
-
return [hsl[0], c * 100, f * 100];
|
|
727
|
-
};
|
|
728
|
-
convert.hsv.hcg = function(hsv) {
|
|
729
|
-
const s = hsv[1] / 100;
|
|
730
|
-
const v = hsv[2] / 100;
|
|
731
|
-
const c = s * v;
|
|
732
|
-
let f = 0;
|
|
733
|
-
if (c < 1) {
|
|
734
|
-
f = (v - c) / (1 - c);
|
|
735
|
-
}
|
|
736
|
-
return [hsv[0], c * 100, f * 100];
|
|
737
|
-
};
|
|
738
|
-
convert.hcg.rgb = function(hcg) {
|
|
739
|
-
const h = hcg[0] / 360;
|
|
740
|
-
const c = hcg[1] / 100;
|
|
741
|
-
const g = hcg[2] / 100;
|
|
742
|
-
if (c === 0) {
|
|
743
|
-
return [g * 255, g * 255, g * 255];
|
|
744
|
-
}
|
|
745
|
-
const pure = [0, 0, 0];
|
|
746
|
-
const hi = h % 1 * 6;
|
|
747
|
-
const v = hi % 1;
|
|
748
|
-
const w = 1 - v;
|
|
749
|
-
let mg = 0;
|
|
750
|
-
switch (Math.floor(hi)) {
|
|
751
|
-
case 0:
|
|
752
|
-
pure[0] = 1;
|
|
753
|
-
pure[1] = v;
|
|
754
|
-
pure[2] = 0;
|
|
755
|
-
break;
|
|
756
|
-
case 1:
|
|
757
|
-
pure[0] = w;
|
|
758
|
-
pure[1] = 1;
|
|
759
|
-
pure[2] = 0;
|
|
760
|
-
break;
|
|
761
|
-
case 2:
|
|
762
|
-
pure[0] = 0;
|
|
763
|
-
pure[1] = 1;
|
|
764
|
-
pure[2] = v;
|
|
765
|
-
break;
|
|
766
|
-
case 3:
|
|
767
|
-
pure[0] = 0;
|
|
768
|
-
pure[1] = w;
|
|
769
|
-
pure[2] = 1;
|
|
770
|
-
break;
|
|
771
|
-
case 4:
|
|
772
|
-
pure[0] = v;
|
|
773
|
-
pure[1] = 0;
|
|
774
|
-
pure[2] = 1;
|
|
775
|
-
break;
|
|
776
|
-
default:
|
|
777
|
-
pure[0] = 1;
|
|
778
|
-
pure[1] = 0;
|
|
779
|
-
pure[2] = w;
|
|
780
|
-
}
|
|
781
|
-
mg = (1 - c) * g;
|
|
782
|
-
return [
|
|
783
|
-
(c * pure[0] + mg) * 255,
|
|
784
|
-
(c * pure[1] + mg) * 255,
|
|
785
|
-
(c * pure[2] + mg) * 255
|
|
786
|
-
];
|
|
787
|
-
};
|
|
788
|
-
convert.hcg.hsv = function(hcg) {
|
|
789
|
-
const c = hcg[1] / 100;
|
|
790
|
-
const g = hcg[2] / 100;
|
|
791
|
-
const v = c + g * (1 - c);
|
|
792
|
-
let f = 0;
|
|
793
|
-
if (v > 0) {
|
|
794
|
-
f = c / v;
|
|
795
|
-
}
|
|
796
|
-
return [hcg[0], f * 100, v * 100];
|
|
797
|
-
};
|
|
798
|
-
convert.hcg.hsl = function(hcg) {
|
|
799
|
-
const c = hcg[1] / 100;
|
|
800
|
-
const g = hcg[2] / 100;
|
|
801
|
-
const l = g * (1 - c) + 0.5 * c;
|
|
802
|
-
let s = 0;
|
|
803
|
-
if (l > 0 && l < 0.5) {
|
|
804
|
-
s = c / (2 * l);
|
|
805
|
-
} else if (l >= 0.5 && l < 1) {
|
|
806
|
-
s = c / (2 * (1 - l));
|
|
807
|
-
}
|
|
808
|
-
return [hcg[0], s * 100, l * 100];
|
|
809
|
-
};
|
|
810
|
-
convert.hcg.hwb = function(hcg) {
|
|
811
|
-
const c = hcg[1] / 100;
|
|
812
|
-
const g = hcg[2] / 100;
|
|
813
|
-
const v = c + g * (1 - c);
|
|
814
|
-
return [hcg[0], (v - c) * 100, (1 - v) * 100];
|
|
815
|
-
};
|
|
816
|
-
convert.hwb.hcg = function(hwb) {
|
|
817
|
-
const w = hwb[1] / 100;
|
|
818
|
-
const b = hwb[2] / 100;
|
|
819
|
-
const v = 1 - b;
|
|
820
|
-
const c = v - w;
|
|
821
|
-
let g = 0;
|
|
822
|
-
if (c < 1) {
|
|
823
|
-
g = (v - c) / (1 - c);
|
|
824
|
-
}
|
|
825
|
-
return [hwb[0], c * 100, g * 100];
|
|
826
|
-
};
|
|
827
|
-
convert.apple.rgb = function(apple) {
|
|
828
|
-
return [apple[0] / 65535 * 255, apple[1] / 65535 * 255, apple[2] / 65535 * 255];
|
|
829
|
-
};
|
|
830
|
-
convert.rgb.apple = function(rgb) {
|
|
831
|
-
return [rgb[0] / 255 * 65535, rgb[1] / 255 * 65535, rgb[2] / 255 * 65535];
|
|
832
|
-
};
|
|
833
|
-
convert.gray.rgb = function(args) {
|
|
834
|
-
return [args[0] / 100 * 255, args[0] / 100 * 255, args[0] / 100 * 255];
|
|
835
|
-
};
|
|
836
|
-
convert.gray.hsl = function(args) {
|
|
837
|
-
return [0, 0, args[0]];
|
|
838
|
-
};
|
|
839
|
-
convert.gray.hsv = convert.gray.hsl;
|
|
840
|
-
convert.gray.hwb = function(gray) {
|
|
841
|
-
return [0, 100, gray[0]];
|
|
842
|
-
};
|
|
843
|
-
convert.gray.cmyk = function(gray) {
|
|
844
|
-
return [0, 0, 0, gray[0]];
|
|
845
|
-
};
|
|
846
|
-
convert.gray.lab = function(gray) {
|
|
847
|
-
return [gray[0], 0, 0];
|
|
848
|
-
};
|
|
849
|
-
convert.gray.hex = function(gray) {
|
|
850
|
-
const val = Math.round(gray[0] / 100 * 255) & 255;
|
|
851
|
-
const integer = (val << 16) + (val << 8) + val;
|
|
852
|
-
const string = integer.toString(16).toUpperCase();
|
|
853
|
-
return "000000".substring(string.length) + string;
|
|
854
|
-
};
|
|
855
|
-
convert.rgb.gray = function(rgb) {
|
|
856
|
-
const val = (rgb[0] + rgb[1] + rgb[2]) / 3;
|
|
857
|
-
return [val / 255 * 100];
|
|
858
|
-
};
|
|
859
|
-
}
|
|
860
|
-
});
|
|
861
|
-
|
|
862
|
-
// ../../node_modules/chalk/node_modules/color-convert/route.js
|
|
863
|
-
var require_route = __commonJS({
|
|
864
|
-
"../../node_modules/chalk/node_modules/color-convert/route.js"(exports2, module2) {
|
|
865
|
-
"use strict";
|
|
866
|
-
var conversions = require_conversions();
|
|
867
|
-
function buildGraph() {
|
|
868
|
-
const graph = {};
|
|
869
|
-
const models = Object.keys(conversions);
|
|
870
|
-
for (let len = models.length, i = 0; i < len; i++) {
|
|
871
|
-
graph[models[i]] = {
|
|
872
|
-
// http://jsperf.com/1-vs-infinity
|
|
873
|
-
// micro-opt, but this is simple.
|
|
874
|
-
distance: -1,
|
|
875
|
-
parent: null
|
|
876
|
-
};
|
|
877
|
-
}
|
|
878
|
-
return graph;
|
|
879
|
-
}
|
|
880
|
-
function deriveBFS(fromModel) {
|
|
881
|
-
const graph = buildGraph();
|
|
882
|
-
const queue = [fromModel];
|
|
883
|
-
graph[fromModel].distance = 0;
|
|
884
|
-
while (queue.length) {
|
|
885
|
-
const current = queue.pop();
|
|
886
|
-
const adjacents = Object.keys(conversions[current]);
|
|
887
|
-
for (let len = adjacents.length, i = 0; i < len; i++) {
|
|
888
|
-
const adjacent = adjacents[i];
|
|
889
|
-
const node = graph[adjacent];
|
|
890
|
-
if (node.distance === -1) {
|
|
891
|
-
node.distance = graph[current].distance + 1;
|
|
892
|
-
node.parent = current;
|
|
893
|
-
queue.unshift(adjacent);
|
|
894
|
-
}
|
|
895
|
-
}
|
|
896
|
-
}
|
|
897
|
-
return graph;
|
|
898
|
-
}
|
|
899
|
-
function link(from, to) {
|
|
900
|
-
return function(args) {
|
|
901
|
-
return to(from(args));
|
|
902
|
-
};
|
|
903
|
-
}
|
|
904
|
-
function wrapConversion(toModel, graph) {
|
|
905
|
-
const path = [graph[toModel].parent, toModel];
|
|
906
|
-
let fn = conversions[graph[toModel].parent][toModel];
|
|
907
|
-
let cur = graph[toModel].parent;
|
|
908
|
-
while (graph[cur].parent) {
|
|
909
|
-
path.unshift(graph[cur].parent);
|
|
910
|
-
fn = link(conversions[graph[cur].parent][cur], fn);
|
|
911
|
-
cur = graph[cur].parent;
|
|
912
|
-
}
|
|
913
|
-
fn.conversion = path;
|
|
914
|
-
return fn;
|
|
915
|
-
}
|
|
916
|
-
module2.exports = function(fromModel) {
|
|
917
|
-
const graph = deriveBFS(fromModel);
|
|
918
|
-
const conversion = {};
|
|
919
|
-
const models = Object.keys(graph);
|
|
920
|
-
for (let len = models.length, i = 0; i < len; i++) {
|
|
921
|
-
const toModel = models[i];
|
|
922
|
-
const node = graph[toModel];
|
|
923
|
-
if (node.parent === null) {
|
|
924
|
-
continue;
|
|
925
|
-
}
|
|
926
|
-
conversion[toModel] = wrapConversion(toModel, graph);
|
|
927
|
-
}
|
|
928
|
-
return conversion;
|
|
929
|
-
};
|
|
930
|
-
}
|
|
931
|
-
});
|
|
24
|
+
//#endregion
|
|
25
|
+
let __orval_core = require("@orval/core");
|
|
26
|
+
__orval_core = __toESM(__orval_core);
|
|
27
|
+
let lodash_omitby = require("lodash.omitby");
|
|
28
|
+
lodash_omitby = __toESM(lodash_omitby);
|
|
29
|
+
let __orval_fetch = require("@orval/fetch");
|
|
30
|
+
__orval_fetch = __toESM(__orval_fetch);
|
|
31
|
+
let chalk = require("chalk");
|
|
32
|
+
chalk = __toESM(chalk);
|
|
932
33
|
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
return fn(args);
|
|
951
|
-
};
|
|
952
|
-
if ("conversion" in fn) {
|
|
953
|
-
wrappedFn.conversion = fn.conversion;
|
|
954
|
-
}
|
|
955
|
-
return wrappedFn;
|
|
956
|
-
}
|
|
957
|
-
function wrapRounded(fn) {
|
|
958
|
-
const wrappedFn = function(...args) {
|
|
959
|
-
const arg0 = args[0];
|
|
960
|
-
if (arg0 === void 0 || arg0 === null) {
|
|
961
|
-
return arg0;
|
|
962
|
-
}
|
|
963
|
-
if (arg0.length > 1) {
|
|
964
|
-
args = arg0;
|
|
965
|
-
}
|
|
966
|
-
const result = fn(args);
|
|
967
|
-
if (typeof result === "object") {
|
|
968
|
-
for (let len = result.length, i = 0; i < len; i++) {
|
|
969
|
-
result[i] = Math.round(result[i]);
|
|
970
|
-
}
|
|
971
|
-
}
|
|
972
|
-
return result;
|
|
973
|
-
};
|
|
974
|
-
if ("conversion" in fn) {
|
|
975
|
-
wrappedFn.conversion = fn.conversion;
|
|
976
|
-
}
|
|
977
|
-
return wrappedFn;
|
|
978
|
-
}
|
|
979
|
-
models.forEach((fromModel) => {
|
|
980
|
-
convert[fromModel] = {};
|
|
981
|
-
Object.defineProperty(convert[fromModel], "channels", { value: conversions[fromModel].channels });
|
|
982
|
-
Object.defineProperty(convert[fromModel], "labels", { value: conversions[fromModel].labels });
|
|
983
|
-
const routes = route(fromModel);
|
|
984
|
-
const routeModels = Object.keys(routes);
|
|
985
|
-
routeModels.forEach((toModel) => {
|
|
986
|
-
const fn = routes[toModel];
|
|
987
|
-
convert[fromModel][toModel] = wrapRounded(fn);
|
|
988
|
-
convert[fromModel][toModel].raw = wrapRaw(fn);
|
|
989
|
-
});
|
|
990
|
-
});
|
|
991
|
-
module2.exports = convert;
|
|
992
|
-
}
|
|
993
|
-
});
|
|
994
|
-
|
|
995
|
-
// ../../node_modules/chalk/node_modules/ansi-styles/index.js
|
|
996
|
-
var require_ansi_styles = __commonJS({
|
|
997
|
-
"../../node_modules/chalk/node_modules/ansi-styles/index.js"(exports2, module2) {
|
|
998
|
-
"use strict";
|
|
999
|
-
var wrapAnsi16 = (fn, offset) => (...args) => {
|
|
1000
|
-
const code = fn(...args);
|
|
1001
|
-
return `\x1B[${code + offset}m`;
|
|
1002
|
-
};
|
|
1003
|
-
var wrapAnsi256 = (fn, offset) => (...args) => {
|
|
1004
|
-
const code = fn(...args);
|
|
1005
|
-
return `\x1B[${38 + offset};5;${code}m`;
|
|
1006
|
-
};
|
|
1007
|
-
var wrapAnsi16m = (fn, offset) => (...args) => {
|
|
1008
|
-
const rgb = fn(...args);
|
|
1009
|
-
return `\x1B[${38 + offset};2;${rgb[0]};${rgb[1]};${rgb[2]}m`;
|
|
1010
|
-
};
|
|
1011
|
-
var ansi2ansi = (n) => n;
|
|
1012
|
-
var rgb2rgb = (r, g, b) => [r, g, b];
|
|
1013
|
-
var setLazyProperty = (object, property, get) => {
|
|
1014
|
-
Object.defineProperty(object, property, {
|
|
1015
|
-
get: () => {
|
|
1016
|
-
const value = get();
|
|
1017
|
-
Object.defineProperty(object, property, {
|
|
1018
|
-
value,
|
|
1019
|
-
enumerable: true,
|
|
1020
|
-
configurable: true
|
|
1021
|
-
});
|
|
1022
|
-
return value;
|
|
1023
|
-
},
|
|
1024
|
-
enumerable: true,
|
|
1025
|
-
configurable: true
|
|
1026
|
-
});
|
|
1027
|
-
};
|
|
1028
|
-
var colorConvert;
|
|
1029
|
-
var makeDynamicStyles = (wrap, targetSpace, identity, isBackground) => {
|
|
1030
|
-
if (colorConvert === void 0) {
|
|
1031
|
-
colorConvert = require_color_convert();
|
|
1032
|
-
}
|
|
1033
|
-
const offset = isBackground ? 10 : 0;
|
|
1034
|
-
const styles = {};
|
|
1035
|
-
for (const [sourceSpace, suite] of Object.entries(colorConvert)) {
|
|
1036
|
-
const name = sourceSpace === "ansi16" ? "ansi" : sourceSpace;
|
|
1037
|
-
if (sourceSpace === targetSpace) {
|
|
1038
|
-
styles[name] = wrap(identity, offset);
|
|
1039
|
-
} else if (typeof suite === "object") {
|
|
1040
|
-
styles[name] = wrap(suite[targetSpace], offset);
|
|
1041
|
-
}
|
|
1042
|
-
}
|
|
1043
|
-
return styles;
|
|
1044
|
-
};
|
|
1045
|
-
function assembleStyles() {
|
|
1046
|
-
const codes = /* @__PURE__ */ new Map();
|
|
1047
|
-
const styles = {
|
|
1048
|
-
modifier: {
|
|
1049
|
-
reset: [0, 0],
|
|
1050
|
-
// 21 isn't widely supported and 22 does the same thing
|
|
1051
|
-
bold: [1, 22],
|
|
1052
|
-
dim: [2, 22],
|
|
1053
|
-
italic: [3, 23],
|
|
1054
|
-
underline: [4, 24],
|
|
1055
|
-
inverse: [7, 27],
|
|
1056
|
-
hidden: [8, 28],
|
|
1057
|
-
strikethrough: [9, 29]
|
|
1058
|
-
},
|
|
1059
|
-
color: {
|
|
1060
|
-
black: [30, 39],
|
|
1061
|
-
red: [31, 39],
|
|
1062
|
-
green: [32, 39],
|
|
1063
|
-
yellow: [33, 39],
|
|
1064
|
-
blue: [34, 39],
|
|
1065
|
-
magenta: [35, 39],
|
|
1066
|
-
cyan: [36, 39],
|
|
1067
|
-
white: [37, 39],
|
|
1068
|
-
// Bright color
|
|
1069
|
-
blackBright: [90, 39],
|
|
1070
|
-
redBright: [91, 39],
|
|
1071
|
-
greenBright: [92, 39],
|
|
1072
|
-
yellowBright: [93, 39],
|
|
1073
|
-
blueBright: [94, 39],
|
|
1074
|
-
magentaBright: [95, 39],
|
|
1075
|
-
cyanBright: [96, 39],
|
|
1076
|
-
whiteBright: [97, 39]
|
|
1077
|
-
},
|
|
1078
|
-
bgColor: {
|
|
1079
|
-
bgBlack: [40, 49],
|
|
1080
|
-
bgRed: [41, 49],
|
|
1081
|
-
bgGreen: [42, 49],
|
|
1082
|
-
bgYellow: [43, 49],
|
|
1083
|
-
bgBlue: [44, 49],
|
|
1084
|
-
bgMagenta: [45, 49],
|
|
1085
|
-
bgCyan: [46, 49],
|
|
1086
|
-
bgWhite: [47, 49],
|
|
1087
|
-
// Bright color
|
|
1088
|
-
bgBlackBright: [100, 49],
|
|
1089
|
-
bgRedBright: [101, 49],
|
|
1090
|
-
bgGreenBright: [102, 49],
|
|
1091
|
-
bgYellowBright: [103, 49],
|
|
1092
|
-
bgBlueBright: [104, 49],
|
|
1093
|
-
bgMagentaBright: [105, 49],
|
|
1094
|
-
bgCyanBright: [106, 49],
|
|
1095
|
-
bgWhiteBright: [107, 49]
|
|
1096
|
-
}
|
|
1097
|
-
};
|
|
1098
|
-
styles.color.gray = styles.color.blackBright;
|
|
1099
|
-
styles.bgColor.bgGray = styles.bgColor.bgBlackBright;
|
|
1100
|
-
styles.color.grey = styles.color.blackBright;
|
|
1101
|
-
styles.bgColor.bgGrey = styles.bgColor.bgBlackBright;
|
|
1102
|
-
for (const [groupName, group] of Object.entries(styles)) {
|
|
1103
|
-
for (const [styleName, style] of Object.entries(group)) {
|
|
1104
|
-
styles[styleName] = {
|
|
1105
|
-
open: `\x1B[${style[0]}m`,
|
|
1106
|
-
close: `\x1B[${style[1]}m`
|
|
1107
|
-
};
|
|
1108
|
-
group[styleName] = styles[styleName];
|
|
1109
|
-
codes.set(style[0], style[1]);
|
|
1110
|
-
}
|
|
1111
|
-
Object.defineProperty(styles, groupName, {
|
|
1112
|
-
value: group,
|
|
1113
|
-
enumerable: false
|
|
1114
|
-
});
|
|
1115
|
-
}
|
|
1116
|
-
Object.defineProperty(styles, "codes", {
|
|
1117
|
-
value: codes,
|
|
1118
|
-
enumerable: false
|
|
1119
|
-
});
|
|
1120
|
-
styles.color.close = "\x1B[39m";
|
|
1121
|
-
styles.bgColor.close = "\x1B[49m";
|
|
1122
|
-
setLazyProperty(styles.color, "ansi", () => makeDynamicStyles(wrapAnsi16, "ansi16", ansi2ansi, false));
|
|
1123
|
-
setLazyProperty(styles.color, "ansi256", () => makeDynamicStyles(wrapAnsi256, "ansi256", ansi2ansi, false));
|
|
1124
|
-
setLazyProperty(styles.color, "ansi16m", () => makeDynamicStyles(wrapAnsi16m, "rgb", rgb2rgb, false));
|
|
1125
|
-
setLazyProperty(styles.bgColor, "ansi", () => makeDynamicStyles(wrapAnsi16, "ansi16", ansi2ansi, true));
|
|
1126
|
-
setLazyProperty(styles.bgColor, "ansi256", () => makeDynamicStyles(wrapAnsi256, "ansi256", ansi2ansi, true));
|
|
1127
|
-
setLazyProperty(styles.bgColor, "ansi16m", () => makeDynamicStyles(wrapAnsi16m, "rgb", rgb2rgb, true));
|
|
1128
|
-
return styles;
|
|
1129
|
-
}
|
|
1130
|
-
Object.defineProperty(module2, "exports", {
|
|
1131
|
-
enumerable: true,
|
|
1132
|
-
get: assembleStyles
|
|
1133
|
-
});
|
|
1134
|
-
}
|
|
1135
|
-
});
|
|
1136
|
-
|
|
1137
|
-
// ../../node_modules/chalk/node_modules/has-flag/index.js
|
|
1138
|
-
var require_has_flag = __commonJS({
|
|
1139
|
-
"../../node_modules/chalk/node_modules/has-flag/index.js"(exports2, module2) {
|
|
1140
|
-
"use strict";
|
|
1141
|
-
module2.exports = (flag, argv = process.argv) => {
|
|
1142
|
-
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
1143
|
-
const position = argv.indexOf(prefix + flag);
|
|
1144
|
-
const terminatorPosition = argv.indexOf("--");
|
|
1145
|
-
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
1146
|
-
};
|
|
1147
|
-
}
|
|
1148
|
-
});
|
|
1149
|
-
|
|
1150
|
-
// ../../node_modules/chalk/node_modules/supports-color/index.js
|
|
1151
|
-
var require_supports_color = __commonJS({
|
|
1152
|
-
"../../node_modules/chalk/node_modules/supports-color/index.js"(exports2, module2) {
|
|
1153
|
-
"use strict";
|
|
1154
|
-
var os = require("os");
|
|
1155
|
-
var tty = require("tty");
|
|
1156
|
-
var hasFlag = require_has_flag();
|
|
1157
|
-
var { env } = process;
|
|
1158
|
-
var forceColor;
|
|
1159
|
-
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
1160
|
-
forceColor = 0;
|
|
1161
|
-
} else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
|
|
1162
|
-
forceColor = 1;
|
|
1163
|
-
}
|
|
1164
|
-
if ("FORCE_COLOR" in env) {
|
|
1165
|
-
if (env.FORCE_COLOR === "true") {
|
|
1166
|
-
forceColor = 1;
|
|
1167
|
-
} else if (env.FORCE_COLOR === "false") {
|
|
1168
|
-
forceColor = 0;
|
|
1169
|
-
} else {
|
|
1170
|
-
forceColor = env.FORCE_COLOR.length === 0 ? 1 : Math.min(parseInt(env.FORCE_COLOR, 10), 3);
|
|
1171
|
-
}
|
|
1172
|
-
}
|
|
1173
|
-
function translateLevel(level) {
|
|
1174
|
-
if (level === 0) {
|
|
1175
|
-
return false;
|
|
1176
|
-
}
|
|
1177
|
-
return {
|
|
1178
|
-
level,
|
|
1179
|
-
hasBasic: true,
|
|
1180
|
-
has256: level >= 2,
|
|
1181
|
-
has16m: level >= 3
|
|
1182
|
-
};
|
|
1183
|
-
}
|
|
1184
|
-
function supportsColor(haveStream, streamIsTTY) {
|
|
1185
|
-
if (forceColor === 0) {
|
|
1186
|
-
return 0;
|
|
1187
|
-
}
|
|
1188
|
-
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
|
|
1189
|
-
return 3;
|
|
1190
|
-
}
|
|
1191
|
-
if (hasFlag("color=256")) {
|
|
1192
|
-
return 2;
|
|
1193
|
-
}
|
|
1194
|
-
if (haveStream && !streamIsTTY && forceColor === void 0) {
|
|
1195
|
-
return 0;
|
|
1196
|
-
}
|
|
1197
|
-
const min = forceColor || 0;
|
|
1198
|
-
if (env.TERM === "dumb") {
|
|
1199
|
-
return min;
|
|
1200
|
-
}
|
|
1201
|
-
if (process.platform === "win32") {
|
|
1202
|
-
const osRelease = os.release().split(".");
|
|
1203
|
-
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
1204
|
-
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
1205
|
-
}
|
|
1206
|
-
return 1;
|
|
1207
|
-
}
|
|
1208
|
-
if ("CI" in env) {
|
|
1209
|
-
if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
1210
|
-
return 1;
|
|
1211
|
-
}
|
|
1212
|
-
return min;
|
|
1213
|
-
}
|
|
1214
|
-
if ("TEAMCITY_VERSION" in env) {
|
|
1215
|
-
return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
1216
|
-
}
|
|
1217
|
-
if (env.COLORTERM === "truecolor") {
|
|
1218
|
-
return 3;
|
|
1219
|
-
}
|
|
1220
|
-
if ("TERM_PROGRAM" in env) {
|
|
1221
|
-
const version = parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
1222
|
-
switch (env.TERM_PROGRAM) {
|
|
1223
|
-
case "iTerm.app":
|
|
1224
|
-
return version >= 3 ? 3 : 2;
|
|
1225
|
-
case "Apple_Terminal":
|
|
1226
|
-
return 2;
|
|
1227
|
-
}
|
|
1228
|
-
}
|
|
1229
|
-
if (/-256(color)?$/i.test(env.TERM)) {
|
|
1230
|
-
return 2;
|
|
1231
|
-
}
|
|
1232
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
1233
|
-
return 1;
|
|
1234
|
-
}
|
|
1235
|
-
if ("COLORTERM" in env) {
|
|
1236
|
-
return 1;
|
|
1237
|
-
}
|
|
1238
|
-
return min;
|
|
1239
|
-
}
|
|
1240
|
-
function getSupportLevel(stream) {
|
|
1241
|
-
const level = supportsColor(stream, stream && stream.isTTY);
|
|
1242
|
-
return translateLevel(level);
|
|
1243
|
-
}
|
|
1244
|
-
module2.exports = {
|
|
1245
|
-
supportsColor: getSupportLevel,
|
|
1246
|
-
stdout: translateLevel(supportsColor(true, tty.isatty(1))),
|
|
1247
|
-
stderr: translateLevel(supportsColor(true, tty.isatty(2)))
|
|
1248
|
-
};
|
|
1249
|
-
}
|
|
1250
|
-
});
|
|
1251
|
-
|
|
1252
|
-
// ../../node_modules/chalk/source/util.js
|
|
1253
|
-
var require_util = __commonJS({
|
|
1254
|
-
"../../node_modules/chalk/source/util.js"(exports2, module2) {
|
|
1255
|
-
"use strict";
|
|
1256
|
-
var stringReplaceAll = (string, substring, replacer) => {
|
|
1257
|
-
let index = string.indexOf(substring);
|
|
1258
|
-
if (index === -1) {
|
|
1259
|
-
return string;
|
|
1260
|
-
}
|
|
1261
|
-
const substringLength = substring.length;
|
|
1262
|
-
let endIndex = 0;
|
|
1263
|
-
let returnValue = "";
|
|
1264
|
-
do {
|
|
1265
|
-
returnValue += string.substr(endIndex, index - endIndex) + substring + replacer;
|
|
1266
|
-
endIndex = index + substringLength;
|
|
1267
|
-
index = string.indexOf(substring, endIndex);
|
|
1268
|
-
} while (index !== -1);
|
|
1269
|
-
returnValue += string.substr(endIndex);
|
|
1270
|
-
return returnValue;
|
|
1271
|
-
};
|
|
1272
|
-
var stringEncaseCRLFWithFirstIndex = (string, prefix, postfix, index) => {
|
|
1273
|
-
let endIndex = 0;
|
|
1274
|
-
let returnValue = "";
|
|
1275
|
-
do {
|
|
1276
|
-
const gotCR = string[index - 1] === "\r";
|
|
1277
|
-
returnValue += string.substr(endIndex, (gotCR ? index - 1 : index) - endIndex) + prefix + (gotCR ? "\r\n" : "\n") + postfix;
|
|
1278
|
-
endIndex = index + 1;
|
|
1279
|
-
index = string.indexOf("\n", endIndex);
|
|
1280
|
-
} while (index !== -1);
|
|
1281
|
-
returnValue += string.substr(endIndex);
|
|
1282
|
-
return returnValue;
|
|
1283
|
-
};
|
|
1284
|
-
module2.exports = {
|
|
1285
|
-
stringReplaceAll,
|
|
1286
|
-
stringEncaseCRLFWithFirstIndex
|
|
1287
|
-
};
|
|
1288
|
-
}
|
|
1289
|
-
});
|
|
1290
|
-
|
|
1291
|
-
// ../../node_modules/chalk/source/templates.js
|
|
1292
|
-
var require_templates = __commonJS({
|
|
1293
|
-
"../../node_modules/chalk/source/templates.js"(exports2, module2) {
|
|
1294
|
-
"use strict";
|
|
1295
|
-
var TEMPLATE_REGEX = /(?:\\(u(?:[a-f\d]{4}|\{[a-f\d]{1,6}\})|x[a-f\d]{2}|.))|(?:\{(~)?(\w+(?:\([^)]*\))?(?:\.\w+(?:\([^)]*\))?)*)(?:[ \t]|(?=\r?\n)))|(\})|((?:.|[\r\n\f])+?)/gi;
|
|
1296
|
-
var STYLE_REGEX = /(?:^|\.)(\w+)(?:\(([^)]*)\))?/g;
|
|
1297
|
-
var STRING_REGEX = /^(['"])((?:\\.|(?!\1)[^\\])*)\1$/;
|
|
1298
|
-
var ESCAPE_REGEX = /\\(u(?:[a-f\d]{4}|{[a-f\d]{1,6}})|x[a-f\d]{2}|.)|([^\\])/gi;
|
|
1299
|
-
var ESCAPES = /* @__PURE__ */ new Map([
|
|
1300
|
-
["n", "\n"],
|
|
1301
|
-
["r", "\r"],
|
|
1302
|
-
["t", " "],
|
|
1303
|
-
["b", "\b"],
|
|
1304
|
-
["f", "\f"],
|
|
1305
|
-
["v", "\v"],
|
|
1306
|
-
["0", "\0"],
|
|
1307
|
-
["\\", "\\"],
|
|
1308
|
-
["e", "\x1B"],
|
|
1309
|
-
["a", "\x07"]
|
|
1310
|
-
]);
|
|
1311
|
-
function unescape(c) {
|
|
1312
|
-
const u = c[0] === "u";
|
|
1313
|
-
const bracket = c[1] === "{";
|
|
1314
|
-
if (u && !bracket && c.length === 5 || c[0] === "x" && c.length === 3) {
|
|
1315
|
-
return String.fromCharCode(parseInt(c.slice(1), 16));
|
|
1316
|
-
}
|
|
1317
|
-
if (u && bracket) {
|
|
1318
|
-
return String.fromCodePoint(parseInt(c.slice(2, -1), 16));
|
|
1319
|
-
}
|
|
1320
|
-
return ESCAPES.get(c) || c;
|
|
1321
|
-
}
|
|
1322
|
-
function parseArguments(name, arguments_) {
|
|
1323
|
-
const results = [];
|
|
1324
|
-
const chunks = arguments_.trim().split(/\s*,\s*/g);
|
|
1325
|
-
let matches;
|
|
1326
|
-
for (const chunk of chunks) {
|
|
1327
|
-
const number = Number(chunk);
|
|
1328
|
-
if (!Number.isNaN(number)) {
|
|
1329
|
-
results.push(number);
|
|
1330
|
-
} else if (matches = chunk.match(STRING_REGEX)) {
|
|
1331
|
-
results.push(matches[2].replace(ESCAPE_REGEX, (m, escape, character) => escape ? unescape(escape) : character));
|
|
1332
|
-
} else {
|
|
1333
|
-
throw new Error(`Invalid Chalk template style argument: ${chunk} (in style '${name}')`);
|
|
1334
|
-
}
|
|
1335
|
-
}
|
|
1336
|
-
return results;
|
|
1337
|
-
}
|
|
1338
|
-
function parseStyle(style) {
|
|
1339
|
-
STYLE_REGEX.lastIndex = 0;
|
|
1340
|
-
const results = [];
|
|
1341
|
-
let matches;
|
|
1342
|
-
while ((matches = STYLE_REGEX.exec(style)) !== null) {
|
|
1343
|
-
const name = matches[1];
|
|
1344
|
-
if (matches[2]) {
|
|
1345
|
-
const args = parseArguments(name, matches[2]);
|
|
1346
|
-
results.push([name].concat(args));
|
|
1347
|
-
} else {
|
|
1348
|
-
results.push([name]);
|
|
1349
|
-
}
|
|
1350
|
-
}
|
|
1351
|
-
return results;
|
|
1352
|
-
}
|
|
1353
|
-
function buildStyle(chalk2, styles) {
|
|
1354
|
-
const enabled = {};
|
|
1355
|
-
for (const layer of styles) {
|
|
1356
|
-
for (const style of layer.styles) {
|
|
1357
|
-
enabled[style[0]] = layer.inverse ? null : style.slice(1);
|
|
1358
|
-
}
|
|
1359
|
-
}
|
|
1360
|
-
let current = chalk2;
|
|
1361
|
-
for (const [styleName, styles2] of Object.entries(enabled)) {
|
|
1362
|
-
if (!Array.isArray(styles2)) {
|
|
1363
|
-
continue;
|
|
1364
|
-
}
|
|
1365
|
-
if (!(styleName in current)) {
|
|
1366
|
-
throw new Error(`Unknown Chalk style: ${styleName}`);
|
|
1367
|
-
}
|
|
1368
|
-
current = styles2.length > 0 ? current[styleName](...styles2) : current[styleName];
|
|
1369
|
-
}
|
|
1370
|
-
return current;
|
|
1371
|
-
}
|
|
1372
|
-
module2.exports = (chalk2, temporary) => {
|
|
1373
|
-
const styles = [];
|
|
1374
|
-
const chunks = [];
|
|
1375
|
-
let chunk = [];
|
|
1376
|
-
temporary.replace(TEMPLATE_REGEX, (m, escapeCharacter, inverse, style, close, character) => {
|
|
1377
|
-
if (escapeCharacter) {
|
|
1378
|
-
chunk.push(unescape(escapeCharacter));
|
|
1379
|
-
} else if (style) {
|
|
1380
|
-
const string = chunk.join("");
|
|
1381
|
-
chunk = [];
|
|
1382
|
-
chunks.push(styles.length === 0 ? string : buildStyle(chalk2, styles)(string));
|
|
1383
|
-
styles.push({ inverse, styles: parseStyle(style) });
|
|
1384
|
-
} else if (close) {
|
|
1385
|
-
if (styles.length === 0) {
|
|
1386
|
-
throw new Error("Found extraneous } in Chalk template literal");
|
|
1387
|
-
}
|
|
1388
|
-
chunks.push(buildStyle(chalk2, styles)(chunk.join("")));
|
|
1389
|
-
chunk = [];
|
|
1390
|
-
styles.pop();
|
|
1391
|
-
} else {
|
|
1392
|
-
chunk.push(character);
|
|
1393
|
-
}
|
|
1394
|
-
});
|
|
1395
|
-
chunks.push(chunk.join(""));
|
|
1396
|
-
if (styles.length > 0) {
|
|
1397
|
-
const errMessage = `Chalk template literal is missing ${styles.length} closing bracket${styles.length === 1 ? "" : "s"} (\`}\`)`;
|
|
1398
|
-
throw new Error(errMessage);
|
|
1399
|
-
}
|
|
1400
|
-
return chunks.join("");
|
|
1401
|
-
};
|
|
1402
|
-
}
|
|
1403
|
-
});
|
|
1404
|
-
|
|
1405
|
-
// ../../node_modules/chalk/source/index.js
|
|
1406
|
-
var require_source = __commonJS({
|
|
1407
|
-
"../../node_modules/chalk/source/index.js"(exports2, module2) {
|
|
1408
|
-
"use strict";
|
|
1409
|
-
var ansiStyles = require_ansi_styles();
|
|
1410
|
-
var { stdout: stdoutColor, stderr: stderrColor } = require_supports_color();
|
|
1411
|
-
var {
|
|
1412
|
-
stringReplaceAll,
|
|
1413
|
-
stringEncaseCRLFWithFirstIndex
|
|
1414
|
-
} = require_util();
|
|
1415
|
-
var { isArray } = Array;
|
|
1416
|
-
var levelMapping = [
|
|
1417
|
-
"ansi",
|
|
1418
|
-
"ansi",
|
|
1419
|
-
"ansi256",
|
|
1420
|
-
"ansi16m"
|
|
1421
|
-
];
|
|
1422
|
-
var styles = /* @__PURE__ */ Object.create(null);
|
|
1423
|
-
var applyOptions = (object, options = {}) => {
|
|
1424
|
-
if (options.level && !(Number.isInteger(options.level) && options.level >= 0 && options.level <= 3)) {
|
|
1425
|
-
throw new Error("The `level` option should be an integer from 0 to 3");
|
|
1426
|
-
}
|
|
1427
|
-
const colorLevel = stdoutColor ? stdoutColor.level : 0;
|
|
1428
|
-
object.level = options.level === void 0 ? colorLevel : options.level;
|
|
1429
|
-
};
|
|
1430
|
-
var ChalkClass = class {
|
|
1431
|
-
constructor(options) {
|
|
1432
|
-
return chalkFactory(options);
|
|
1433
|
-
}
|
|
1434
|
-
};
|
|
1435
|
-
var chalkFactory = (options) => {
|
|
1436
|
-
const chalk3 = {};
|
|
1437
|
-
applyOptions(chalk3, options);
|
|
1438
|
-
chalk3.template = (...arguments_) => chalkTag(chalk3.template, ...arguments_);
|
|
1439
|
-
Object.setPrototypeOf(chalk3, Chalk.prototype);
|
|
1440
|
-
Object.setPrototypeOf(chalk3.template, chalk3);
|
|
1441
|
-
chalk3.template.constructor = () => {
|
|
1442
|
-
throw new Error("`chalk.constructor()` is deprecated. Use `new chalk.Instance()` instead.");
|
|
1443
|
-
};
|
|
1444
|
-
chalk3.template.Instance = ChalkClass;
|
|
1445
|
-
return chalk3.template;
|
|
1446
|
-
};
|
|
1447
|
-
function Chalk(options) {
|
|
1448
|
-
return chalkFactory(options);
|
|
1449
|
-
}
|
|
1450
|
-
for (const [styleName, style] of Object.entries(ansiStyles)) {
|
|
1451
|
-
styles[styleName] = {
|
|
1452
|
-
get() {
|
|
1453
|
-
const builder2 = createBuilder(this, createStyler(style.open, style.close, this._styler), this._isEmpty);
|
|
1454
|
-
Object.defineProperty(this, styleName, { value: builder2 });
|
|
1455
|
-
return builder2;
|
|
1456
|
-
}
|
|
1457
|
-
};
|
|
1458
|
-
}
|
|
1459
|
-
styles.visible = {
|
|
1460
|
-
get() {
|
|
1461
|
-
const builder2 = createBuilder(this, this._styler, true);
|
|
1462
|
-
Object.defineProperty(this, "visible", { value: builder2 });
|
|
1463
|
-
return builder2;
|
|
1464
|
-
}
|
|
1465
|
-
};
|
|
1466
|
-
var usedModels = ["rgb", "hex", "keyword", "hsl", "hsv", "hwb", "ansi", "ansi256"];
|
|
1467
|
-
for (const model of usedModels) {
|
|
1468
|
-
styles[model] = {
|
|
1469
|
-
get() {
|
|
1470
|
-
const { level } = this;
|
|
1471
|
-
return function(...arguments_) {
|
|
1472
|
-
const styler = createStyler(ansiStyles.color[levelMapping[level]][model](...arguments_), ansiStyles.color.close, this._styler);
|
|
1473
|
-
return createBuilder(this, styler, this._isEmpty);
|
|
1474
|
-
};
|
|
1475
|
-
}
|
|
1476
|
-
};
|
|
1477
|
-
}
|
|
1478
|
-
for (const model of usedModels) {
|
|
1479
|
-
const bgModel = "bg" + model[0].toUpperCase() + model.slice(1);
|
|
1480
|
-
styles[bgModel] = {
|
|
1481
|
-
get() {
|
|
1482
|
-
const { level } = this;
|
|
1483
|
-
return function(...arguments_) {
|
|
1484
|
-
const styler = createStyler(ansiStyles.bgColor[levelMapping[level]][model](...arguments_), ansiStyles.bgColor.close, this._styler);
|
|
1485
|
-
return createBuilder(this, styler, this._isEmpty);
|
|
1486
|
-
};
|
|
1487
|
-
}
|
|
1488
|
-
};
|
|
1489
|
-
}
|
|
1490
|
-
var proto = Object.defineProperties(() => {
|
|
1491
|
-
}, {
|
|
1492
|
-
...styles,
|
|
1493
|
-
level: {
|
|
1494
|
-
enumerable: true,
|
|
1495
|
-
get() {
|
|
1496
|
-
return this._generator.level;
|
|
1497
|
-
},
|
|
1498
|
-
set(level) {
|
|
1499
|
-
this._generator.level = level;
|
|
1500
|
-
}
|
|
1501
|
-
}
|
|
1502
|
-
});
|
|
1503
|
-
var createStyler = (open, close, parent) => {
|
|
1504
|
-
let openAll;
|
|
1505
|
-
let closeAll;
|
|
1506
|
-
if (parent === void 0) {
|
|
1507
|
-
openAll = open;
|
|
1508
|
-
closeAll = close;
|
|
1509
|
-
} else {
|
|
1510
|
-
openAll = parent.openAll + open;
|
|
1511
|
-
closeAll = close + parent.closeAll;
|
|
1512
|
-
}
|
|
1513
|
-
return {
|
|
1514
|
-
open,
|
|
1515
|
-
close,
|
|
1516
|
-
openAll,
|
|
1517
|
-
closeAll,
|
|
1518
|
-
parent
|
|
1519
|
-
};
|
|
1520
|
-
};
|
|
1521
|
-
var createBuilder = (self, _styler, _isEmpty) => {
|
|
1522
|
-
const builder2 = (...arguments_) => {
|
|
1523
|
-
if (isArray(arguments_[0]) && isArray(arguments_[0].raw)) {
|
|
1524
|
-
return applyStyle(builder2, chalkTag(builder2, ...arguments_));
|
|
1525
|
-
}
|
|
1526
|
-
return applyStyle(builder2, arguments_.length === 1 ? "" + arguments_[0] : arguments_.join(" "));
|
|
1527
|
-
};
|
|
1528
|
-
Object.setPrototypeOf(builder2, proto);
|
|
1529
|
-
builder2._generator = self;
|
|
1530
|
-
builder2._styler = _styler;
|
|
1531
|
-
builder2._isEmpty = _isEmpty;
|
|
1532
|
-
return builder2;
|
|
1533
|
-
};
|
|
1534
|
-
var applyStyle = (self, string) => {
|
|
1535
|
-
if (self.level <= 0 || !string) {
|
|
1536
|
-
return self._isEmpty ? "" : string;
|
|
1537
|
-
}
|
|
1538
|
-
let styler = self._styler;
|
|
1539
|
-
if (styler === void 0) {
|
|
1540
|
-
return string;
|
|
1541
|
-
}
|
|
1542
|
-
const { openAll, closeAll } = styler;
|
|
1543
|
-
if (string.indexOf("\x1B") !== -1) {
|
|
1544
|
-
while (styler !== void 0) {
|
|
1545
|
-
string = stringReplaceAll(string, styler.close, styler.open);
|
|
1546
|
-
styler = styler.parent;
|
|
1547
|
-
}
|
|
1548
|
-
}
|
|
1549
|
-
const lfIndex = string.indexOf("\n");
|
|
1550
|
-
if (lfIndex !== -1) {
|
|
1551
|
-
string = stringEncaseCRLFWithFirstIndex(string, closeAll, openAll, lfIndex);
|
|
1552
|
-
}
|
|
1553
|
-
return openAll + string + closeAll;
|
|
1554
|
-
};
|
|
1555
|
-
var template;
|
|
1556
|
-
var chalkTag = (chalk3, ...strings) => {
|
|
1557
|
-
const [firstString] = strings;
|
|
1558
|
-
if (!isArray(firstString) || !isArray(firstString.raw)) {
|
|
1559
|
-
return strings.join(" ");
|
|
1560
|
-
}
|
|
1561
|
-
const arguments_ = strings.slice(1);
|
|
1562
|
-
const parts = [firstString.raw[0]];
|
|
1563
|
-
for (let i = 1; i < firstString.length; i++) {
|
|
1564
|
-
parts.push(
|
|
1565
|
-
String(arguments_[i - 1]).replace(/[{}\\]/g, "\\$&"),
|
|
1566
|
-
String(firstString.raw[i])
|
|
1567
|
-
);
|
|
1568
|
-
}
|
|
1569
|
-
if (template === void 0) {
|
|
1570
|
-
template = require_templates();
|
|
1571
|
-
}
|
|
1572
|
-
return template(chalk3, parts.join(""));
|
|
1573
|
-
};
|
|
1574
|
-
Object.defineProperties(Chalk.prototype, styles);
|
|
1575
|
-
var chalk2 = Chalk();
|
|
1576
|
-
chalk2.supportsColor = stdoutColor;
|
|
1577
|
-
chalk2.stderr = Chalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
1578
|
-
chalk2.stderr.supportsColor = stderrColor;
|
|
1579
|
-
module2.exports = chalk2;
|
|
1580
|
-
}
|
|
1581
|
-
});
|
|
1582
|
-
|
|
1583
|
-
// src/index.ts
|
|
1584
|
-
var index_exports = {};
|
|
1585
|
-
__export(index_exports, {
|
|
1586
|
-
builder: () => builder,
|
|
1587
|
-
default: () => index_default,
|
|
1588
|
-
generateQuery: () => generateQuery,
|
|
1589
|
-
generateQueryHeader: () => generateQueryHeader,
|
|
1590
|
-
getReactQueryDependencies: () => getReactQueryDependencies,
|
|
1591
|
-
getSvelteQueryDependencies: () => getSvelteQueryDependencies,
|
|
1592
|
-
getVueQueryDependencies: () => getVueQueryDependencies
|
|
1593
|
-
});
|
|
1594
|
-
module.exports = __toCommonJS(index_exports);
|
|
1595
|
-
var import_core3 = require("@orval/core");
|
|
1596
|
-
var import_lodash = __toESM(require("lodash.omitby"));
|
|
1597
|
-
|
|
1598
|
-
// src/client.ts
|
|
1599
|
-
var import_core2 = require("@orval/core");
|
|
1600
|
-
var import_fetch = require("@orval/fetch");
|
|
1601
|
-
|
|
1602
|
-
// src/utils.ts
|
|
1603
|
-
var import_core = require("@orval/core");
|
|
1604
|
-
var import_chalk = __toESM(require_source());
|
|
1605
|
-
var normalizeQueryOptions = (queryOptions = {}, outputWorkspace) => {
|
|
1606
|
-
return {
|
|
1607
|
-
...queryOptions.usePrefetch ? { usePrefetch: true } : {},
|
|
1608
|
-
...queryOptions.useQuery ? { useQuery: true } : {},
|
|
1609
|
-
...queryOptions.useInfinite ? { useInfinite: true } : {},
|
|
1610
|
-
...queryOptions.useInfiniteQueryParam ? { useInfiniteQueryParam: queryOptions.useInfiniteQueryParam } : {},
|
|
1611
|
-
...queryOptions.options ? { options: queryOptions.options } : {},
|
|
1612
|
-
...(queryOptions == null ? void 0 : queryOptions.queryKey) ? {
|
|
1613
|
-
queryKey: normalizeMutator(outputWorkspace, queryOptions == null ? void 0 : queryOptions.queryKey)
|
|
1614
|
-
} : {},
|
|
1615
|
-
...(queryOptions == null ? void 0 : queryOptions.queryOptions) ? {
|
|
1616
|
-
queryOptions: normalizeMutator(
|
|
1617
|
-
outputWorkspace,
|
|
1618
|
-
queryOptions == null ? void 0 : queryOptions.queryOptions
|
|
1619
|
-
)
|
|
1620
|
-
} : {},
|
|
1621
|
-
...(queryOptions == null ? void 0 : queryOptions.mutationOptions) ? {
|
|
1622
|
-
mutationOptions: normalizeMutator(
|
|
1623
|
-
outputWorkspace,
|
|
1624
|
-
queryOptions == null ? void 0 : queryOptions.mutationOptions
|
|
1625
|
-
)
|
|
1626
|
-
} : {},
|
|
1627
|
-
...queryOptions.signal ? { signal: true } : {},
|
|
1628
|
-
...queryOptions.shouldExportMutatorHooks ? { shouldExportMutatorHooks: true } : {},
|
|
1629
|
-
...queryOptions.shouldExportQueryKey ? { shouldExportQueryKey: true } : {},
|
|
1630
|
-
...queryOptions.shouldExportHttpClient ? { shouldExportHttpClient: true } : {},
|
|
1631
|
-
...queryOptions.shouldSplitQueryKey ? { shouldSplitQueryKey: true } : {}
|
|
1632
|
-
};
|
|
34
|
+
//#region src/utils.ts
|
|
35
|
+
const normalizeQueryOptions = (queryOptions = {}, outputWorkspace) => {
|
|
36
|
+
return {
|
|
37
|
+
...queryOptions.usePrefetch ? { usePrefetch: true } : {},
|
|
38
|
+
...queryOptions.useQuery ? { useQuery: true } : {},
|
|
39
|
+
...queryOptions.useInfinite ? { useInfinite: true } : {},
|
|
40
|
+
...queryOptions.useInfiniteQueryParam ? { useInfiniteQueryParam: queryOptions.useInfiniteQueryParam } : {},
|
|
41
|
+
...queryOptions.options ? { options: queryOptions.options } : {},
|
|
42
|
+
...queryOptions?.queryKey ? { queryKey: normalizeMutator(outputWorkspace, queryOptions?.queryKey) } : {},
|
|
43
|
+
...queryOptions?.queryOptions ? { queryOptions: normalizeMutator(outputWorkspace, queryOptions?.queryOptions) } : {},
|
|
44
|
+
...queryOptions?.mutationOptions ? { mutationOptions: normalizeMutator(outputWorkspace, queryOptions?.mutationOptions) } : {},
|
|
45
|
+
...queryOptions.signal ? { signal: true } : {},
|
|
46
|
+
...queryOptions.shouldExportMutatorHooks ? { shouldExportMutatorHooks: true } : {},
|
|
47
|
+
...queryOptions.shouldExportQueryKey ? { shouldExportQueryKey: true } : {},
|
|
48
|
+
...queryOptions.shouldExportHttpClient ? { shouldExportHttpClient: true } : {},
|
|
49
|
+
...queryOptions.shouldSplitQueryKey ? { shouldSplitQueryKey: true } : {}
|
|
50
|
+
};
|
|
1633
51
|
};
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
return {
|
|
1649
|
-
path: import_core.upath.resolve(workspace, mutator),
|
|
1650
|
-
default: true
|
|
1651
|
-
};
|
|
1652
|
-
}
|
|
1653
|
-
return mutator;
|
|
52
|
+
const normalizeMutator = (workspace, mutator) => {
|
|
53
|
+
if ((0, __orval_core.isObject)(mutator)) {
|
|
54
|
+
if (!mutator.path) throw new Error(chalk.default.red(`Mutator need a path`));
|
|
55
|
+
return {
|
|
56
|
+
...mutator,
|
|
57
|
+
path: __orval_core.upath.resolve(workspace, mutator.path),
|
|
58
|
+
default: (mutator.default || !mutator.name) ?? false
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
if ((0, __orval_core.isString)(mutator)) return {
|
|
62
|
+
path: __orval_core.upath.resolve(workspace, mutator),
|
|
63
|
+
default: true
|
|
64
|
+
};
|
|
65
|
+
return mutator;
|
|
1654
66
|
};
|
|
1655
67
|
function vueWrapTypeWithMaybeRef(props) {
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
68
|
+
return props.map((prop) => {
|
|
69
|
+
const [paramName, paramType] = prop.implementation.split(":");
|
|
70
|
+
if (!paramType) return prop;
|
|
71
|
+
const name = prop.type === __orval_core.GetterPropType.NAMED_PATH_PARAMS ? prop.name : paramName;
|
|
72
|
+
const [type, defaultValue] = paramType.split("=");
|
|
73
|
+
return {
|
|
74
|
+
...prop,
|
|
75
|
+
implementation: `${name}: MaybeRef<${type.trim()}>${defaultValue ? ` = ${defaultValue}` : ""}`
|
|
76
|
+
};
|
|
77
|
+
});
|
|
1666
78
|
}
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
return `${prop.name} = unref(${prop.name});`;
|
|
1673
|
-
}).join("\n");
|
|
79
|
+
const vueUnRefParams = (props) => {
|
|
80
|
+
return props.map((prop) => {
|
|
81
|
+
if (prop.type === __orval_core.GetterPropType.NAMED_PATH_PARAMS) return `const ${prop.destructured} = unref(${prop.name});`;
|
|
82
|
+
return `${prop.name} = unref(${prop.name});`;
|
|
83
|
+
}).join("\n");
|
|
1674
84
|
};
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
overrideQuerySignal = false,
|
|
1680
|
-
verb
|
|
1681
|
-
}) => overrideQuerySignal && (!(0, import_core.getIsBodyVerb)(verb) || verb === import_core.Verbs.POST);
|
|
85
|
+
const wrapRouteParameters = (route, prepend, append) => route.replaceAll(__orval_core.TEMPLATE_TAG_REGEX, `\${${prepend}$1${append}}`);
|
|
86
|
+
const makeRouteSafe = (route) => wrapRouteParameters(route, "encodeURIComponent(String(", "))");
|
|
87
|
+
const isVue = (client) => __orval_core.OutputClient.VUE_QUERY === client;
|
|
88
|
+
const getHasSignal = ({ overrideQuerySignal = false, verb }) => overrideQuerySignal && (!(0, __orval_core.getIsBodyVerb)(verb) || verb === __orval_core.Verbs.POST);
|
|
1682
89
|
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
if (options.context.output.httpClient === import_core2.OutputHttpClient.AXIOS) {
|
|
1702
|
-
return generateAxiosRequestFunction(verbOptions, options, isVue2);
|
|
1703
|
-
} else {
|
|
1704
|
-
return (0, import_fetch.generateRequestFunction)(verbOptions, options);
|
|
1705
|
-
}
|
|
90
|
+
//#endregion
|
|
91
|
+
//#region src/client.ts
|
|
92
|
+
const AXIOS_DEPENDENCIES = [{
|
|
93
|
+
exports: [
|
|
94
|
+
{
|
|
95
|
+
name: "axios",
|
|
96
|
+
default: true,
|
|
97
|
+
values: true,
|
|
98
|
+
syntheticDefaultImport: true
|
|
99
|
+
},
|
|
100
|
+
{ name: "AxiosRequestConfig" },
|
|
101
|
+
{ name: "AxiosResponse" },
|
|
102
|
+
{ name: "AxiosError" }
|
|
103
|
+
],
|
|
104
|
+
dependency: "axios"
|
|
105
|
+
}];
|
|
106
|
+
const generateQueryRequestFunction = (verbOptions, options, isVue$1) => {
|
|
107
|
+
return options.context.output.httpClient === __orval_core.OutputHttpClient.AXIOS ? generateAxiosRequestFunction(verbOptions, options, isVue$1) : (0, __orval_fetch.generateRequestFunction)(verbOptions, options);
|
|
1706
108
|
};
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
const mutatorConfig = (0, import_core2.generateMutatorConfig)({
|
|
1747
|
-
route,
|
|
1748
|
-
body,
|
|
1749
|
-
headers,
|
|
1750
|
-
queryParams,
|
|
1751
|
-
response,
|
|
1752
|
-
verb,
|
|
1753
|
-
isFormData,
|
|
1754
|
-
isFormUrlEncoded,
|
|
1755
|
-
hasSignal,
|
|
1756
|
-
isExactOptionalPropertyTypes,
|
|
1757
|
-
isVue: isVue2
|
|
1758
|
-
});
|
|
1759
|
-
const bodyDefinition = body.definition.replace("[]", "\\[\\]");
|
|
1760
|
-
const propsImplementation = (mutator == null ? void 0 : mutator.bodyTypeName) && body.definition ? (0, import_core2.toObjectString)(props, "implementation").replace(
|
|
1761
|
-
new RegExp(`(\\w*):\\s?${bodyDefinition}`),
|
|
1762
|
-
`$1: ${mutator.bodyTypeName}<${body.definition}>`
|
|
1763
|
-
) : (0, import_core2.toObjectString)(props, "implementation");
|
|
1764
|
-
const requestOptions = isRequestOptions ? (0, import_core2.generateMutatorRequestOptions)(
|
|
1765
|
-
override.requestOptions,
|
|
1766
|
-
mutator.hasSecondArg
|
|
1767
|
-
) : "";
|
|
1768
|
-
if (mutator.isHook) {
|
|
1769
|
-
const ret = `${override.query.shouldExportMutatorHooks ? "export " : ""}const use${(0, import_core2.pascal)(operationName)}Hook = () => {
|
|
109
|
+
const generateAxiosRequestFunction = ({ headers, queryParams, operationName, response, mutator, body, props: _props, verb, formData, formUrlEncoded, override, paramsSerializer }, { route: _route, context }, isVue$1) => {
|
|
110
|
+
let props = _props;
|
|
111
|
+
let route = _route;
|
|
112
|
+
if (isVue$1) props = vueWrapTypeWithMaybeRef(_props);
|
|
113
|
+
if (context.output?.urlEncodeParameters) route = makeRouteSafe(route);
|
|
114
|
+
const isRequestOptions = override.requestOptions !== false;
|
|
115
|
+
const isFormData = !override.formData.disabled;
|
|
116
|
+
const isFormUrlEncoded = override.formUrlEncoded !== false;
|
|
117
|
+
const hasSignal = getHasSignal({
|
|
118
|
+
overrideQuerySignal: override.query.signal,
|
|
119
|
+
verb
|
|
120
|
+
});
|
|
121
|
+
const isExactOptionalPropertyTypes = !!context.output.tsconfig?.compilerOptions?.exactOptionalPropertyTypes;
|
|
122
|
+
const bodyForm = (0, __orval_core.generateFormDataAndUrlEncodedFunction)({
|
|
123
|
+
formData,
|
|
124
|
+
formUrlEncoded,
|
|
125
|
+
body,
|
|
126
|
+
isFormData,
|
|
127
|
+
isFormUrlEncoded
|
|
128
|
+
});
|
|
129
|
+
if (mutator) {
|
|
130
|
+
const mutatorConfig = (0, __orval_core.generateMutatorConfig)({
|
|
131
|
+
route,
|
|
132
|
+
body,
|
|
133
|
+
headers,
|
|
134
|
+
queryParams,
|
|
135
|
+
response,
|
|
136
|
+
verb,
|
|
137
|
+
isFormData,
|
|
138
|
+
isFormUrlEncoded,
|
|
139
|
+
hasSignal,
|
|
140
|
+
isExactOptionalPropertyTypes,
|
|
141
|
+
isVue: isVue$1
|
|
142
|
+
});
|
|
143
|
+
const bodyDefinition = body.definition.replace("[]", String.raw`\[\]`);
|
|
144
|
+
const propsImplementation = mutator?.bodyTypeName && body.definition ? (0, __orval_core.toObjectString)(props, "implementation").replace(/* @__PURE__ */ new RegExp(`(\\w*):\\s?${bodyDefinition}`), `$1: ${mutator.bodyTypeName}<${body.definition}>`) : (0, __orval_core.toObjectString)(props, "implementation");
|
|
145
|
+
const requestOptions = isRequestOptions ? (0, __orval_core.generateMutatorRequestOptions)(override.requestOptions, mutator.hasSecondArg) : "";
|
|
146
|
+
if (mutator.isHook) {
|
|
147
|
+
const ret = `${override.query.shouldExportMutatorHooks ? "export " : ""}const use${(0, __orval_core.pascal)(operationName)}Hook = () => {
|
|
1770
148
|
const ${operationName} = ${mutator.name}<${response.definition.success || "unknown"}>();
|
|
1771
149
|
|
|
1772
|
-
return useCallback((
|
|
1773
|
-
${propsImplementation}
|
|
1774
|
-
${isRequestOptions && mutator.hasSecondArg ? `options${context.output.optionsParamRequired ? "" : "?"}: SecondParameter<ReturnType<typeof ${mutator.name}>>,` : ""}${hasSignal ? "signal?: AbortSignal\n" : ""}) => {${bodyForm}
|
|
150
|
+
return useCallback((\n ${propsImplementation}\n ${isRequestOptions && mutator.hasSecondArg ? `options${context.output.optionsParamRequired ? "" : "?"}: SecondParameter<ReturnType<typeof ${mutator.name}>>,` : ""}${hasSignal ? "signal?: AbortSignal\n" : ""}) => {${bodyForm}
|
|
1775
151
|
return ${operationName}(
|
|
1776
152
|
${mutatorConfig},
|
|
1777
153
|
${requestOptions});
|
|
1778
154
|
}, [${operationName}])
|
|
1779
155
|
}
|
|
1780
156
|
`;
|
|
1781
|
-
|
|
157
|
+
const vueRet = `${override.query.shouldExportMutatorHooks ? "export " : ""}const use${(0, __orval_core.pascal)(operationName)}Hook = () => {
|
|
1782
158
|
const ${operationName} = ${mutator.name}<${response.definition.success || "unknown"}>();
|
|
1783
159
|
|
|
1784
|
-
return (
|
|
1785
|
-
${propsImplementation}
|
|
1786
|
-
${isRequestOptions && mutator.hasSecondArg ? `options${context.output.optionsParamRequired ? "" : "?"}: SecondParameter<ReturnType<typeof ${mutator.name}>>,` : ""}${hasSignal ? "signal?: AbortSignal\n" : ""}) => {${bodyForm}
|
|
160
|
+
return (\n ${propsImplementation}\n ${isRequestOptions && mutator.hasSecondArg ? `options${context.output.optionsParamRequired ? "" : "?"}: SecondParameter<ReturnType<typeof ${mutator.name}>>,` : ""}${hasSignal ? "signal?: AbortSignal\n" : ""}) => {${bodyForm}
|
|
1787
161
|
return ${operationName}(
|
|
1788
162
|
${mutatorConfig},
|
|
1789
163
|
${requestOptions});
|
|
1790
164
|
}
|
|
1791
165
|
}
|
|
1792
166
|
`;
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
${isRequestOptions && mutator.hasSecondArg ? `options${context.output.optionsParamRequired ? "" : "?"}: SecondParameter<typeof ${mutator.name}>,` : ""}${hasSignal ? "signal?: AbortSignal\n" : ""}) => {
|
|
1798
|
-
${isVue2 ? vueUnRefParams(props) : ""}
|
|
167
|
+
return isVue$1 ? vueRet : ret;
|
|
168
|
+
}
|
|
169
|
+
return `${override.query.shouldExportHttpClient ? "export " : ""}const ${operationName} = (\n ${propsImplementation}\n ${isRequestOptions && mutator.hasSecondArg ? `options${context.output.optionsParamRequired ? "" : "?"}: SecondParameter<typeof ${mutator.name}>,` : ""}${hasSignal ? "signal?: AbortSignal\n" : ""}) => {
|
|
170
|
+
${isVue$1 ? vueUnRefParams(props) : ""}
|
|
1799
171
|
${bodyForm}
|
|
1800
172
|
return ${mutator.name}<${response.definition.success || "unknown"}>(
|
|
1801
173
|
${mutatorConfig},
|
|
1802
174
|
${requestOptions});
|
|
1803
175
|
}
|
|
1804
176
|
`;
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
const httpRequestFunctionImplementation = `${override.query.shouldExportHttpClient ? "export " : ""}const ${operationName} = (
|
|
1831
|
-
${queryProps} ${optionsArgs} ): Promise<AxiosResponse<${response.definition.success || "unknown"}>> => {
|
|
1832
|
-
${isVue2 ? vueUnRefParams(props) : ""}
|
|
177
|
+
}
|
|
178
|
+
const isSyntheticDefaultImportsAllowed = (0, __orval_core.isSyntheticDefaultImportsAllow)(context.output.tsconfig);
|
|
179
|
+
const options = (0, __orval_core.generateOptions)({
|
|
180
|
+
route,
|
|
181
|
+
body,
|
|
182
|
+
headers,
|
|
183
|
+
queryParams,
|
|
184
|
+
response,
|
|
185
|
+
verb,
|
|
186
|
+
requestOptions: override?.requestOptions,
|
|
187
|
+
isFormData,
|
|
188
|
+
isFormUrlEncoded,
|
|
189
|
+
paramsSerializer,
|
|
190
|
+
paramsSerializerOptions: override?.paramsSerializerOptions,
|
|
191
|
+
isExactOptionalPropertyTypes,
|
|
192
|
+
hasSignal,
|
|
193
|
+
isVue: isVue$1
|
|
194
|
+
});
|
|
195
|
+
const optionsArgs = generateRequestOptionsArguments({
|
|
196
|
+
isRequestOptions,
|
|
197
|
+
hasSignal
|
|
198
|
+
});
|
|
199
|
+
const queryProps = (0, __orval_core.toObjectString)(props, "implementation");
|
|
200
|
+
return `${override.query.shouldExportHttpClient ? "export " : ""}const ${operationName} = (\n ${queryProps} ${optionsArgs} ): Promise<AxiosResponse<${response.definition.success || "unknown"}>> => {
|
|
201
|
+
${isVue$1 ? vueUnRefParams(props) : ""}
|
|
1833
202
|
${bodyForm}
|
|
1834
|
-
return axios${
|
|
203
|
+
return axios${isSyntheticDefaultImportsAllowed ? "" : ".default"}.${verb}(${options});
|
|
1835
204
|
}
|
|
1836
205
|
`;
|
|
1837
|
-
return httpRequestFunctionImplementation;
|
|
1838
206
|
};
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
}) => {
|
|
1843
|
-
if (isRequestOptions) {
|
|
1844
|
-
return "options?: AxiosRequestConfig\n";
|
|
1845
|
-
}
|
|
1846
|
-
return hasSignal ? "signal?: AbortSignal\n" : "";
|
|
207
|
+
const generateRequestOptionsArguments = ({ isRequestOptions, hasSignal }) => {
|
|
208
|
+
if (isRequestOptions) return "options?: AxiosRequestConfig\n";
|
|
209
|
+
return hasSignal ? "signal?: AbortSignal\n" : "";
|
|
1847
210
|
};
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
return `request?: SecondParameter<typeof ${mutator.name}>`;
|
|
1854
|
-
}
|
|
1855
|
-
if (mutator.hasSecondArg && mutator.isHook) {
|
|
1856
|
-
return `request?: SecondParameter<ReturnType<typeof ${mutator.name}>>`;
|
|
1857
|
-
}
|
|
1858
|
-
return "";
|
|
211
|
+
const getQueryArgumentsRequestType = (httpClient, mutator) => {
|
|
212
|
+
if (!mutator) return httpClient === __orval_core.OutputHttpClient.AXIOS ? `axios?: AxiosRequestConfig` : "fetch?: RequestInit";
|
|
213
|
+
if (mutator.hasSecondArg && !mutator.isHook) return `request?: SecondParameter<typeof ${mutator.name}>`;
|
|
214
|
+
if (mutator.hasSecondArg && mutator.isHook) return `request?: SecondParameter<ReturnType<typeof ${mutator.name}>>`;
|
|
215
|
+
return "";
|
|
1859
216
|
};
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
return `{ ${isExactOptionalPropertyTypes ? "...(signal ? { signal } : {})" : "signal"}, ...${options} }`;
|
|
1873
|
-
}
|
|
1874
|
-
if ((mutator == null ? void 0 : mutator.hasSecondArg) && isRequestOptions) {
|
|
1875
|
-
if (!hasSignal) {
|
|
1876
|
-
return "requestOptions";
|
|
1877
|
-
}
|
|
1878
|
-
return httpClient === import_core2.OutputHttpClient.AXIOS ? "requestOptions, signal" : "{ signal, ...requestOptions }";
|
|
1879
|
-
}
|
|
1880
|
-
if (hasSignal) {
|
|
1881
|
-
return "signal";
|
|
1882
|
-
}
|
|
1883
|
-
return "";
|
|
217
|
+
const getQueryOptions = ({ isRequestOptions, mutator, isExactOptionalPropertyTypes, hasSignal, httpClient }) => {
|
|
218
|
+
if (!mutator && isRequestOptions) {
|
|
219
|
+
const options = httpClient === __orval_core.OutputHttpClient.AXIOS ? "axiosOptions" : "fetchOptions";
|
|
220
|
+
if (!hasSignal) return options;
|
|
221
|
+
return `{ ${isExactOptionalPropertyTypes ? "...(signal ? { signal } : {})" : "signal"}, ...${options} }`;
|
|
222
|
+
}
|
|
223
|
+
if (mutator?.hasSecondArg && isRequestOptions) {
|
|
224
|
+
if (!hasSignal) return "requestOptions";
|
|
225
|
+
return httpClient === __orval_core.OutputHttpClient.AXIOS ? "requestOptions, signal" : "{ signal, ...requestOptions }";
|
|
226
|
+
}
|
|
227
|
+
if (hasSignal) return "signal";
|
|
228
|
+
return "";
|
|
1884
229
|
};
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
const options = httpClient === import_core2.OutputHttpClient.AXIOS ? ", axios: axiosOptions" : ", fetch: fetchOptions";
|
|
1896
|
-
value += options;
|
|
1897
|
-
}
|
|
1898
|
-
if (mutator == null ? void 0 : mutator.hasSecondArg) {
|
|
1899
|
-
value += ", request: requestOptions";
|
|
1900
|
-
}
|
|
1901
|
-
value += "} = options ?? {};";
|
|
1902
|
-
return value;
|
|
230
|
+
const getHookOptions = ({ isRequestOptions, httpClient, mutator }) => {
|
|
231
|
+
if (!isRequestOptions) return "";
|
|
232
|
+
let value = "const {query: queryOptions";
|
|
233
|
+
if (!mutator) {
|
|
234
|
+
const options = httpClient === __orval_core.OutputHttpClient.AXIOS ? ", axios: axiosOptions" : ", fetch: fetchOptions";
|
|
235
|
+
value += options;
|
|
236
|
+
}
|
|
237
|
+
if (mutator?.hasSecondArg) value += ", request: requestOptions";
|
|
238
|
+
value += "} = options ?? {};";
|
|
239
|
+
return value;
|
|
1903
240
|
};
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
} else {
|
|
1908
|
-
return httpClient === import_core2.OutputHttpClient.AXIOS ? `AxiosError<${response.definition.errors || "unknown"}>` : `${response.definition.errors || "unknown"}`;
|
|
1909
|
-
}
|
|
241
|
+
const getQueryErrorType = (operationName, response, httpClient, mutator) => {
|
|
242
|
+
if (mutator) return mutator.hasErrorType ? `${mutator.default ? (0, __orval_core.pascal)(operationName) : ""}ErrorType<${response.definition.errors || "unknown"}>` : response.definition.errors || "unknown";
|
|
243
|
+
else return httpClient === __orval_core.OutputHttpClient.AXIOS ? `AxiosError<${response.definition.errors || "unknown"}>` : response.definition.errors || "unknown";
|
|
1910
244
|
};
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
const {mutation: mutationOptions${
|
|
245
|
+
const getHooksOptionImplementation = (isRequestOptions, httpClient, operationName, mutator) => {
|
|
246
|
+
const options = httpClient === __orval_core.OutputHttpClient.AXIOS ? ", axios: axiosOptions" : ", fetch: fetchOptions";
|
|
247
|
+
return isRequestOptions ? `const mutationKey = ['${operationName}'];
|
|
248
|
+
const {mutation: mutationOptions${mutator ? mutator?.hasSecondArg ? ", request: requestOptions" : "" : options}} = options ?
|
|
1915
249
|
options.mutation && 'mutationKey' in options.mutation && options.mutation.mutationKey ?
|
|
1916
250
|
options
|
|
1917
251
|
: {...options, mutation: {...options.mutation, mutationKey}}
|
|
1918
|
-
: {mutation: { mutationKey, }${
|
|
252
|
+
: {mutation: { mutationKey, }${mutator?.hasSecondArg ? ", request: undefined" : ""}${mutator ? "" : httpClient === __orval_core.OutputHttpClient.AXIOS ? ", axios: undefined" : ", fetch: undefined"}};` : "";
|
|
1919
253
|
};
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
254
|
+
const getMutationRequestArgs = (isRequestOptions, httpClient, mutator) => {
|
|
255
|
+
const options = httpClient === __orval_core.OutputHttpClient.AXIOS ? "axiosOptions" : "fetchOptions";
|
|
256
|
+
return isRequestOptions ? mutator ? mutator?.hasSecondArg ? "requestOptions" : "" : options : "";
|
|
1923
257
|
};
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
}
|
|
1928
|
-
return queryProperties;
|
|
258
|
+
const getHttpFunctionQueryProps = (isVue$1, httpClient, queryProperties) => {
|
|
259
|
+
if (isVue$1 && httpClient === __orval_core.OutputHttpClient.FETCH && queryProperties) return queryProperties.split(",").map((prop) => `unref(${prop})`).join(",");
|
|
260
|
+
return queryProperties;
|
|
1929
261
|
};
|
|
1930
|
-
|
|
1931
|
-
|
|
262
|
+
const getQueryHeader = (params) => {
|
|
263
|
+
return params.output.httpClient === __orval_core.OutputHttpClient.FETCH ? (0, __orval_fetch.generateFetchHeader)(params) : "";
|
|
1932
264
|
};
|
|
1933
265
|
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
266
|
+
//#endregion
|
|
267
|
+
//#region src/index.ts
|
|
268
|
+
const REACT_DEPENDENCIES = [{
|
|
269
|
+
exports: [{
|
|
270
|
+
name: "useCallback",
|
|
271
|
+
values: true
|
|
272
|
+
}],
|
|
273
|
+
dependency: "react"
|
|
274
|
+
}];
|
|
275
|
+
const PARAMS_SERIALIZER_DEPENDENCIES = [{
|
|
276
|
+
exports: [{
|
|
277
|
+
name: "qs",
|
|
278
|
+
default: true,
|
|
279
|
+
values: true,
|
|
280
|
+
syntheticDefaultImport: true
|
|
281
|
+
}],
|
|
282
|
+
dependency: "qs"
|
|
283
|
+
}];
|
|
284
|
+
const SVELTE_QUERY_DEPENDENCIES_V3 = [{
|
|
285
|
+
exports: [
|
|
286
|
+
{
|
|
287
|
+
name: "useQuery",
|
|
288
|
+
values: true
|
|
289
|
+
},
|
|
290
|
+
{
|
|
291
|
+
name: "useInfiniteQuery",
|
|
292
|
+
values: true
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
name: "useMutation",
|
|
296
|
+
values: true
|
|
297
|
+
},
|
|
298
|
+
{ name: "UseQueryOptions" },
|
|
299
|
+
{ name: "UseInfiniteQueryOptions" },
|
|
300
|
+
{ name: "UseMutationOptions" },
|
|
301
|
+
{ name: "QueryFunction" },
|
|
302
|
+
{ name: "MutationFunction" },
|
|
303
|
+
{ name: "UseQueryStoreResult" },
|
|
304
|
+
{ name: "UseInfiniteQueryStoreResult" },
|
|
305
|
+
{ name: "QueryKey" },
|
|
306
|
+
{ name: "CreateMutationResult" }
|
|
307
|
+
],
|
|
308
|
+
dependency: "@sveltestack/svelte-query"
|
|
309
|
+
}];
|
|
310
|
+
const SVELTE_QUERY_DEPENDENCIES = [{
|
|
311
|
+
exports: [
|
|
312
|
+
{
|
|
313
|
+
name: "createQuery",
|
|
314
|
+
values: true
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
name: "createInfiniteQuery",
|
|
318
|
+
values: true
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
name: "createMutation",
|
|
322
|
+
values: true
|
|
323
|
+
},
|
|
324
|
+
{ name: "CreateQueryOptions" },
|
|
325
|
+
{ name: "CreateInfiniteQueryOptions" },
|
|
326
|
+
{ name: "CreateMutationOptions" },
|
|
327
|
+
{ name: "QueryFunction" },
|
|
328
|
+
{ name: "MutationFunction" },
|
|
329
|
+
{ name: "CreateQueryResult" },
|
|
330
|
+
{ name: "CreateInfiniteQueryResult" },
|
|
331
|
+
{ name: "QueryKey" },
|
|
332
|
+
{ name: "InfiniteData" },
|
|
333
|
+
{ name: "CreateMutationResult" },
|
|
334
|
+
{ name: "DataTag" },
|
|
335
|
+
{ name: "QueryClient" }
|
|
336
|
+
],
|
|
337
|
+
dependency: "@tanstack/svelte-query"
|
|
338
|
+
}];
|
|
339
|
+
const isSvelteQueryV3 = (packageJson) => {
|
|
340
|
+
const hasSvelteQuery = packageJson?.dependencies?.["@sveltestack/svelte-query"] ?? packageJson?.devDependencies?.["@sveltestack/svelte-query"] ?? packageJson?.peerDependencies?.["@sveltestack/svelte-query"];
|
|
341
|
+
const hasSvelteQueryV4 = packageJson?.dependencies?.["@tanstack/svelte-query"] ?? packageJson?.devDependencies?.["@tanstack/svelte-query"] ?? packageJson?.peerDependencies?.["@tanstack/svelte-query"];
|
|
342
|
+
return !!hasSvelteQuery && !hasSvelteQueryV4;
|
|
2009
343
|
};
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
344
|
+
const getSvelteQueryDependencies = (hasGlobalMutator, hasParamsSerializerOptions, packageJson, httpClient) => {
|
|
345
|
+
const hasSvelteQueryV3 = isSvelteQueryV3(packageJson);
|
|
346
|
+
return [
|
|
347
|
+
...!hasGlobalMutator && httpClient === __orval_core.OutputHttpClient.AXIOS ? AXIOS_DEPENDENCIES : [],
|
|
348
|
+
...hasParamsSerializerOptions ? PARAMS_SERIALIZER_DEPENDENCIES : [],
|
|
349
|
+
...hasSvelteQueryV3 ? SVELTE_QUERY_DEPENDENCIES_V3 : SVELTE_QUERY_DEPENDENCIES
|
|
350
|
+
];
|
|
2017
351
|
};
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
352
|
+
const REACT_QUERY_DEPENDENCIES_V3 = [{
|
|
353
|
+
exports: [
|
|
354
|
+
{
|
|
355
|
+
name: "useQuery",
|
|
356
|
+
values: true
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
name: "useInfiniteQuery",
|
|
360
|
+
values: true
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
name: "useMutation",
|
|
364
|
+
values: true
|
|
365
|
+
},
|
|
366
|
+
{ name: "UseQueryOptions" },
|
|
367
|
+
{ name: "UseInfiniteQueryOptions" },
|
|
368
|
+
{ name: "UseMutationOptions" },
|
|
369
|
+
{ name: "QueryFunction" },
|
|
370
|
+
{ name: "MutationFunction" },
|
|
371
|
+
{ name: "UseQueryResult" },
|
|
372
|
+
{ name: "UseInfiniteQueryResult" },
|
|
373
|
+
{ name: "QueryKey" },
|
|
374
|
+
{ name: "QueryClient" },
|
|
375
|
+
{ name: "UseMutationResult" }
|
|
376
|
+
],
|
|
377
|
+
dependency: "react-query"
|
|
378
|
+
}];
|
|
379
|
+
const REACT_QUERY_DEPENDENCIES = [{
|
|
380
|
+
exports: [
|
|
381
|
+
{
|
|
382
|
+
name: "useQuery",
|
|
383
|
+
values: true
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
name: "useSuspenseQuery",
|
|
387
|
+
values: true
|
|
388
|
+
},
|
|
389
|
+
{
|
|
390
|
+
name: "useInfiniteQuery",
|
|
391
|
+
values: true
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
name: "useSuspenseInfiniteQuery",
|
|
395
|
+
values: true
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
name: "useMutation",
|
|
399
|
+
values: true
|
|
400
|
+
},
|
|
401
|
+
{ name: "UseQueryOptions" },
|
|
402
|
+
{ name: "DefinedInitialDataOptions" },
|
|
403
|
+
{ name: "UndefinedInitialDataOptions" },
|
|
404
|
+
{ name: "UseSuspenseQueryOptions" },
|
|
405
|
+
{ name: "UseInfiniteQueryOptions" },
|
|
406
|
+
{ name: "UseSuspenseInfiniteQueryOptions" },
|
|
407
|
+
{ name: "UseMutationOptions" },
|
|
408
|
+
{ name: "QueryFunction" },
|
|
409
|
+
{ name: "MutationFunction" },
|
|
410
|
+
{ name: "UseQueryResult" },
|
|
411
|
+
{ name: "DefinedUseQueryResult" },
|
|
412
|
+
{ name: "UseSuspenseQueryResult" },
|
|
413
|
+
{ name: "UseInfiniteQueryResult" },
|
|
414
|
+
{ name: "DefinedUseInfiniteQueryResult" },
|
|
415
|
+
{ name: "UseSuspenseInfiniteQueryResult" },
|
|
416
|
+
{ name: "QueryKey" },
|
|
417
|
+
{ name: "QueryClient" },
|
|
418
|
+
{ name: "InfiniteData" },
|
|
419
|
+
{ name: "UseMutationResult" },
|
|
420
|
+
{ name: "DataTag" }
|
|
421
|
+
],
|
|
422
|
+
dependency: "@tanstack/react-query"
|
|
423
|
+
}];
|
|
424
|
+
const getReactQueryDependencies = (hasGlobalMutator, hasParamsSerializerOptions, packageJson, httpClient, hasTagsMutator, override) => {
|
|
425
|
+
const hasReactQuery = packageJson?.dependencies?.["react-query"] ?? packageJson?.devDependencies?.["react-query"] ?? packageJson?.peerDependencies?.["react-query"];
|
|
426
|
+
const hasReactQueryV4 = packageJson?.dependencies?.["@tanstack/react-query"] ?? packageJson?.devDependencies?.["@tanstack/react-query"] ?? packageJson?.peerDependencies?.["@tanstack/react-query"];
|
|
427
|
+
const useReactQueryV3 = override?.query.version === void 0 ? hasReactQuery && !hasReactQueryV4 : override?.query.version <= 3;
|
|
428
|
+
return [
|
|
429
|
+
...hasGlobalMutator || hasTagsMutator ? REACT_DEPENDENCIES : [],
|
|
430
|
+
...!hasGlobalMutator && httpClient === __orval_core.OutputHttpClient.AXIOS ? AXIOS_DEPENDENCIES : [],
|
|
431
|
+
...hasParamsSerializerOptions ? PARAMS_SERIALIZER_DEPENDENCIES : [],
|
|
432
|
+
...useReactQueryV3 ? REACT_QUERY_DEPENDENCIES_V3 : REACT_QUERY_DEPENDENCIES
|
|
433
|
+
];
|
|
2081
434
|
};
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
{ name: "QueryKey" },
|
|
2129
|
-
{ name: "UseQueryReturnType" },
|
|
2130
|
-
{ name: "UseInfiniteQueryReturnType" },
|
|
2131
|
-
{ name: "InfiniteData" },
|
|
2132
|
-
{ name: "UseMutationReturnType" },
|
|
2133
|
-
{ name: "DataTag" },
|
|
2134
|
-
{ name: "QueryClient" }
|
|
2135
|
-
],
|
|
2136
|
-
dependency: "@tanstack/vue-query"
|
|
2137
|
-
},
|
|
2138
|
-
{
|
|
2139
|
-
exports: [
|
|
2140
|
-
{ name: "unref", values: true },
|
|
2141
|
-
{ name: "MaybeRef" },
|
|
2142
|
-
{ name: "computed", values: true }
|
|
2143
|
-
],
|
|
2144
|
-
dependency: "vue"
|
|
2145
|
-
}
|
|
435
|
+
const VUE_QUERY_DEPENDENCIES_V3 = [
|
|
436
|
+
{
|
|
437
|
+
exports: [
|
|
438
|
+
{
|
|
439
|
+
name: "useQuery",
|
|
440
|
+
values: true
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
name: "useInfiniteQuery",
|
|
444
|
+
values: true
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
name: "useMutation",
|
|
448
|
+
values: true
|
|
449
|
+
}
|
|
450
|
+
],
|
|
451
|
+
dependency: "vue-query"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
exports: [
|
|
455
|
+
{ name: "UseQueryOptions" },
|
|
456
|
+
{ name: "UseInfiniteQueryOptions" },
|
|
457
|
+
{ name: "UseMutationOptions" },
|
|
458
|
+
{ name: "QueryFunction" },
|
|
459
|
+
{ name: "MutationFunction" },
|
|
460
|
+
{ name: "UseQueryResult" },
|
|
461
|
+
{ name: "UseInfiniteQueryResult" },
|
|
462
|
+
{ name: "QueryKey" },
|
|
463
|
+
{ name: "UseMutationReturnType" }
|
|
464
|
+
],
|
|
465
|
+
dependency: "vue-query/types"
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
exports: [{
|
|
469
|
+
name: "unref",
|
|
470
|
+
values: true
|
|
471
|
+
}, {
|
|
472
|
+
name: "computed",
|
|
473
|
+
values: true
|
|
474
|
+
}],
|
|
475
|
+
dependency: "vue"
|
|
476
|
+
},
|
|
477
|
+
{
|
|
478
|
+
exports: [{ name: "UseQueryReturnType" }],
|
|
479
|
+
dependency: "vue-query/lib/vue/useBaseQuery"
|
|
480
|
+
}
|
|
2146
481
|
];
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
482
|
+
const VUE_QUERY_DEPENDENCIES = [{
|
|
483
|
+
exports: [
|
|
484
|
+
{
|
|
485
|
+
name: "useQuery",
|
|
486
|
+
values: true
|
|
487
|
+
},
|
|
488
|
+
{
|
|
489
|
+
name: "useInfiniteQuery",
|
|
490
|
+
values: true
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
name: "useMutation",
|
|
494
|
+
values: true
|
|
495
|
+
},
|
|
496
|
+
{ name: "UseQueryOptions" },
|
|
497
|
+
{ name: "UseInfiniteQueryOptions" },
|
|
498
|
+
{ name: "UseMutationOptions" },
|
|
499
|
+
{ name: "QueryFunction" },
|
|
500
|
+
{ name: "MutationFunction" },
|
|
501
|
+
{ name: "QueryKey" },
|
|
502
|
+
{ name: "UseQueryReturnType" },
|
|
503
|
+
{ name: "UseInfiniteQueryReturnType" },
|
|
504
|
+
{ name: "InfiniteData" },
|
|
505
|
+
{ name: "UseMutationReturnType" },
|
|
506
|
+
{ name: "DataTag" },
|
|
507
|
+
{ name: "QueryClient" }
|
|
508
|
+
],
|
|
509
|
+
dependency: "@tanstack/vue-query"
|
|
510
|
+
}, {
|
|
511
|
+
exports: [
|
|
512
|
+
{
|
|
513
|
+
name: "unref",
|
|
514
|
+
values: true
|
|
515
|
+
},
|
|
516
|
+
{ name: "MaybeRef" },
|
|
517
|
+
{
|
|
518
|
+
name: "computed",
|
|
519
|
+
values: true
|
|
520
|
+
}
|
|
521
|
+
],
|
|
522
|
+
dependency: "vue"
|
|
523
|
+
}];
|
|
524
|
+
const isVueQueryV3 = (packageJson) => {
|
|
525
|
+
const hasVueQuery = packageJson?.dependencies?.["vue-query"] ?? packageJson?.devDependencies?.["vue-query"] ?? packageJson?.peerDependencies?.["vue-query"];
|
|
526
|
+
const hasVueQueryV4 = packageJson?.dependencies?.["@tanstack/vue-query"] ?? packageJson?.devDependencies?.["@tanstack/vue-query"] ?? packageJson?.peerDependencies?.["@tanstack/vue-query"];
|
|
527
|
+
return !!hasVueQuery && !hasVueQueryV4;
|
|
2152
528
|
};
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
529
|
+
const getVueQueryDependencies = (hasGlobalMutator, hasParamsSerializerOptions, packageJson, httpClient) => {
|
|
530
|
+
const hasVueQueryV3 = isVueQueryV3(packageJson);
|
|
531
|
+
return [
|
|
532
|
+
...!hasGlobalMutator && httpClient === __orval_core.OutputHttpClient.AXIOS ? AXIOS_DEPENDENCIES : [],
|
|
533
|
+
...hasParamsSerializerOptions ? PARAMS_SERIALIZER_DEPENDENCIES : [],
|
|
534
|
+
...hasVueQueryV3 ? VUE_QUERY_DEPENDENCIES_V3 : VUE_QUERY_DEPENDENCIES
|
|
535
|
+
];
|
|
2160
536
|
};
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
const withoutRc = version.split("-")[0];
|
|
2167
|
-
return (0, import_core3.compareVersions)(withoutRc, "5.0.0");
|
|
537
|
+
const isQueryV5 = (packageJson, queryClient) => {
|
|
538
|
+
const version = getPackageByQueryClient(packageJson, queryClient);
|
|
539
|
+
if (!version) return false;
|
|
540
|
+
const withoutRc = version.split("-")[0];
|
|
541
|
+
return (0, __orval_core.compareVersions)(withoutRc, "5.0.0");
|
|
2168
542
|
};
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
const withoutRc = version.split("-")[0];
|
|
2175
|
-
return (0, import_core3.compareVersions)(withoutRc, "5.62.0");
|
|
543
|
+
const isQueryV5WithDataTagError = (packageJson, queryClient) => {
|
|
544
|
+
const version = getPackageByQueryClient(packageJson, queryClient);
|
|
545
|
+
if (!version) return false;
|
|
546
|
+
const withoutRc = version.split("-")[0];
|
|
547
|
+
return (0, __orval_core.compareVersions)(withoutRc, "5.62.0");
|
|
2176
548
|
};
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
const withoutRc = version.split("-")[0];
|
|
2183
|
-
return (0, import_core3.compareVersions)(withoutRc, "5.80.0");
|
|
549
|
+
const isQueryV5WithInfiniteQueryOptionsError = (packageJson, queryClient) => {
|
|
550
|
+
const version = getPackageByQueryClient(packageJson, queryClient);
|
|
551
|
+
if (!version) return false;
|
|
552
|
+
const withoutRc = version.split("-")[0];
|
|
553
|
+
return (0, __orval_core.compareVersions)(withoutRc, "5.80.0");
|
|
2184
554
|
};
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
case "svelte-query": {
|
|
2192
|
-
return (_j = (_h = (_f = packageJson == null ? void 0 : packageJson.dependencies) == null ? void 0 : _f["@tanstack/svelte-query"]) != null ? _h : (_g = packageJson == null ? void 0 : packageJson.devDependencies) == null ? void 0 : _g["@tanstack/svelte-query"]) != null ? _j : (_i = packageJson == null ? void 0 : packageJson.peerDependencies) == null ? void 0 : _i["@tanstack/svelte-query"];
|
|
2193
|
-
}
|
|
2194
|
-
case "vue-query": {
|
|
2195
|
-
return (_o = (_m = (_k = packageJson == null ? void 0 : packageJson.dependencies) == null ? void 0 : _k["@tanstack/vue-query"]) != null ? _m : (_l = packageJson == null ? void 0 : packageJson.devDependencies) == null ? void 0 : _l["@tanstack/vue-query"]) != null ? _o : (_n = packageJson == null ? void 0 : packageJson.peerDependencies) == null ? void 0 : _n["@tanstack/vue-query"];
|
|
2196
|
-
}
|
|
2197
|
-
}
|
|
555
|
+
const getPackageByQueryClient = (packageJson, queryClient) => {
|
|
556
|
+
switch (queryClient) {
|
|
557
|
+
case "react-query": return packageJson?.dependencies?.["@tanstack/react-query"] ?? packageJson?.devDependencies?.["@tanstack/react-query"] ?? packageJson?.peerDependencies?.["@tanstack/react-query"];
|
|
558
|
+
case "svelte-query": return packageJson?.dependencies?.["@tanstack/svelte-query"] ?? packageJson?.devDependencies?.["@tanstack/svelte-query"] ?? packageJson?.peerDependencies?.["@tanstack/svelte-query"];
|
|
559
|
+
case "vue-query": return packageJson?.dependencies?.["@tanstack/vue-query"] ?? packageJson?.devDependencies?.["@tanstack/vue-query"] ?? packageJson?.peerDependencies?.["@tanstack/vue-query"];
|
|
560
|
+
}
|
|
2198
561
|
};
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
562
|
+
const QueryType = {
|
|
563
|
+
INFINITE: "infiniteQuery",
|
|
564
|
+
QUERY: "query",
|
|
565
|
+
SUSPENSE_QUERY: "suspenseQuery",
|
|
566
|
+
SUSPENSE_INFINITE: "suspenseInfiniteQuery"
|
|
2204
567
|
};
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
return "";
|
|
2215
|
-
}
|
|
2216
|
-
const queryConfig = (0, import_core3.isObject)(options) ? ` ${(_a = (0, import_core3.stringify)(
|
|
2217
|
-
(0, import_lodash.default)(
|
|
2218
|
-
options,
|
|
2219
|
-
(_, key) => (type !== QueryType.INFINITE || type !== QueryType.SUSPENSE_INFINITE) && INFINITE_QUERY_PROPERTIES.includes(key)
|
|
2220
|
-
)
|
|
2221
|
-
)) == null ? void 0 : _a.slice(1, -1)}` : "";
|
|
2222
|
-
if (!params.length || isSuspenseQuery(type)) {
|
|
2223
|
-
if (options) {
|
|
2224
|
-
return `${queryConfig} ...queryOptions`;
|
|
2225
|
-
}
|
|
2226
|
-
return "...queryOptions";
|
|
2227
|
-
}
|
|
2228
|
-
return `${!(0, import_core3.isObject)(options) || !options.hasOwnProperty("enabled") ? isVue(outputClient) ? `enabled: computed(() => !!(${params.map(({ name }) => `unref(${name})`).join(" && ")})),` : `enabled: !!(${params.map(({ name }) => name).join(" && ")}),` : ""}${queryConfig} ...queryOptions`;
|
|
568
|
+
const INFINITE_QUERY_PROPERTIES = new Set(["getNextPageParam", "getPreviousPageParam"]);
|
|
569
|
+
const generateQueryOptions = ({ params, options, type, outputClient }) => {
|
|
570
|
+
if (options === false) return "";
|
|
571
|
+
const queryConfig = (0, __orval_core.isObject)(options) ? ` ${(0, __orval_core.stringify)((0, lodash_omitby.default)(options, (_, key) => (type !== QueryType.INFINITE || type !== QueryType.SUSPENSE_INFINITE) && INFINITE_QUERY_PROPERTIES.has(key)))?.slice(1, -1)}` : "";
|
|
572
|
+
if (params.length === 0 || isSuspenseQuery(type)) {
|
|
573
|
+
if (options) return `${queryConfig} ...queryOptions`;
|
|
574
|
+
return "...queryOptions";
|
|
575
|
+
}
|
|
576
|
+
return `${!(0, __orval_core.isObject)(options) || !options.hasOwnProperty("enabled") ? isVue(outputClient) ? `enabled: computed(() => !!(${params.map(({ name }) => `unref(${name})`).join(" && ")})),` : `enabled: !!(${params.map(({ name }) => name).join(" && ")}),` : ""}${queryConfig} ...queryOptions`;
|
|
2229
577
|
};
|
|
2230
|
-
|
|
2231
|
-
|
|
578
|
+
const isSuspenseQuery = (type) => {
|
|
579
|
+
return [QueryType.SUSPENSE_INFINITE, QueryType.SUSPENSE_QUERY].includes(type);
|
|
2232
580
|
};
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
queryParams,
|
|
2242
|
-
queryParam,
|
|
2243
|
-
isReturnType,
|
|
2244
|
-
initialData
|
|
2245
|
-
}) => {
|
|
2246
|
-
const isMutatorHook = mutator == null ? void 0 : mutator.isHook;
|
|
2247
|
-
const prefix = !hasSvelteQueryV4 ? "Use" : "Create";
|
|
2248
|
-
const partialOptions = !isReturnType && hasQueryV5;
|
|
2249
|
-
if (type) {
|
|
2250
|
-
const funcReturnType = `Awaited<ReturnType<${isMutatorHook ? `ReturnType<typeof use${(0, import_core3.pascal)(operationName)}Hook>` : `typeof ${operationName}`}>>`;
|
|
2251
|
-
const optionTypeInitialDataPostfix = initialData && !isSuspenseQuery(type) ? ` & Pick<
|
|
2252
|
-
${(0, import_core3.pascal)(initialData)}InitialDataOptions<
|
|
581
|
+
const getQueryOptionsDefinition = ({ operationName, mutator, definitions, type, hasSvelteQueryV4, hasQueryV5, hasQueryV5WithInfiniteQueryOptionsError, queryParams, queryParam, isReturnType, initialData }) => {
|
|
582
|
+
const isMutatorHook = mutator?.isHook;
|
|
583
|
+
const prefix = hasSvelteQueryV4 ? "Create" : "Use";
|
|
584
|
+
const partialOptions = !isReturnType && hasQueryV5;
|
|
585
|
+
if (type) {
|
|
586
|
+
const funcReturnType = `Awaited<ReturnType<${isMutatorHook ? `ReturnType<typeof use${(0, __orval_core.pascal)(operationName)}Hook>` : `typeof ${operationName}`}>>`;
|
|
587
|
+
const optionTypeInitialDataPostfix = initialData && !isSuspenseQuery(type) ? ` & Pick<
|
|
588
|
+
${(0, __orval_core.pascal)(initialData)}InitialDataOptions<
|
|
2253
589
|
${funcReturnType},
|
|
2254
590
|
TError,
|
|
2255
591
|
${funcReturnType}${hasQueryV5 && (type === QueryType.INFINITE || type === QueryType.SUSPENSE_INFINITE) && queryParam && queryParams ? `, QueryKey` : ""}
|
|
2256
592
|
> , 'initialData'
|
|
2257
593
|
>` : "";
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
594
|
+
const optionType = `${prefix}${(0, __orval_core.pascal)(type)}Options<${funcReturnType}, TError, TData${hasQueryV5 && (type === QueryType.INFINITE || type === QueryType.SUSPENSE_INFINITE) && queryParam && queryParams ? hasQueryV5WithInfiniteQueryOptionsError ? `, QueryKey, ${queryParams?.schema.name}['${queryParam}']` : `, ${funcReturnType}, QueryKey, ${queryParams?.schema.name}['${queryParam}']` : ""}>`;
|
|
595
|
+
return `${partialOptions ? "Partial<" : ""}${optionType}${partialOptions ? ">" : ""}${optionTypeInitialDataPostfix}`;
|
|
596
|
+
}
|
|
597
|
+
return `${prefix}MutationOptions<Awaited<ReturnType<${isMutatorHook ? `ReturnType<typeof use${(0, __orval_core.pascal)(operationName)}Hook>` : `typeof ${operationName}`}>>, TError,${definitions ? `{${definitions}}` : "void"}, TContext>`;
|
|
2262
598
|
};
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
})
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
type,
|
|
2282
|
-
hasSvelteQueryV4,
|
|
2283
|
-
hasQueryV5,
|
|
2284
|
-
hasQueryV5WithInfiniteQueryOptionsError,
|
|
2285
|
-
queryParams,
|
|
2286
|
-
queryParam,
|
|
2287
|
-
isReturnType: false,
|
|
2288
|
-
initialData
|
|
2289
|
-
});
|
|
2290
|
-
if (!isRequestOptions) {
|
|
2291
|
-
return `${type ? "queryOptions" : "mutationOptions"}${initialData !== "defined" ? "?" : ""}: ${definition}`;
|
|
2292
|
-
}
|
|
2293
|
-
const requestType = getQueryArgumentsRequestType(httpClient, mutator);
|
|
2294
|
-
const isQueryRequired = initialData === "defined";
|
|
2295
|
-
return `options${isQueryRequired ? "" : "?"}: { ${type ? "query" : "mutation"}${isQueryRequired ? "" : "?"}:${definition}, ${requestType}}
|
|
2296
|
-
`;
|
|
599
|
+
const generateQueryArguments = ({ operationName, definitions, mutator, isRequestOptions, type, hasSvelteQueryV4, hasQueryV5, hasQueryV5WithInfiniteQueryOptionsError, queryParams, queryParam, initialData, httpClient }) => {
|
|
600
|
+
const definition = getQueryOptionsDefinition({
|
|
601
|
+
operationName,
|
|
602
|
+
mutator,
|
|
603
|
+
definitions,
|
|
604
|
+
type,
|
|
605
|
+
hasSvelteQueryV4,
|
|
606
|
+
hasQueryV5,
|
|
607
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
608
|
+
queryParams,
|
|
609
|
+
queryParam,
|
|
610
|
+
isReturnType: false,
|
|
611
|
+
initialData
|
|
612
|
+
});
|
|
613
|
+
if (!isRequestOptions) return `${type ? "queryOptions" : "mutationOptions"}${initialData === "defined" ? "" : "?"}: ${definition}`;
|
|
614
|
+
const requestType = getQueryArgumentsRequestType(httpClient, mutator);
|
|
615
|
+
const isQueryRequired = initialData === "defined";
|
|
616
|
+
return `options${isQueryRequired ? "" : "?"}: { ${type ? "query" : "mutation"}${isQueryRequired ? "" : "?"}:${definition}, ${requestType}}\n`;
|
|
2297
617
|
};
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
})
|
|
2309
|
-
|
|
2310
|
-
case import_core3.OutputClient.SVELTE_QUERY: {
|
|
2311
|
-
if (!hasSvelteQueryV4) {
|
|
2312
|
-
return `Use${(0, import_core3.pascal)(type)}StoreResult<Awaited<ReturnType<${isMutatorHook ? `ReturnType<typeof use${(0, import_core3.pascal)(operationName)}Hook>` : `typeof ${operationName}`}>>, TError, TData, QueryKey> & { queryKey: QueryKey} }`;
|
|
2313
|
-
}
|
|
2314
|
-
return `Create${(0, import_core3.pascal)(
|
|
2315
|
-
type
|
|
2316
|
-
)}Result<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
2317
|
-
}
|
|
2318
|
-
case import_core3.OutputClient.VUE_QUERY: {
|
|
2319
|
-
if (!hasVueQueryV4) {
|
|
2320
|
-
return ` UseQueryReturnType<TData, TError, Use${(0, import_core3.pascal)(
|
|
2321
|
-
type
|
|
2322
|
-
)}Result<TData, TError>> & { queryKey: QueryKey} }`;
|
|
2323
|
-
}
|
|
2324
|
-
if (type !== QueryType.INFINITE && type !== QueryType.SUSPENSE_INFINITE) {
|
|
2325
|
-
return `UseQueryReturnType<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
2326
|
-
}
|
|
2327
|
-
return `UseInfiniteQueryReturnType<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
2328
|
-
}
|
|
2329
|
-
case import_core3.OutputClient.REACT_QUERY:
|
|
2330
|
-
default: {
|
|
2331
|
-
return ` ${isInitialDataDefined && !isSuspenseQuery(type) ? "Defined" : ""}Use${(0, import_core3.pascal)(type)}Result<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
2332
|
-
}
|
|
2333
|
-
}
|
|
618
|
+
const generateQueryReturnType = ({ outputClient, type, isMutatorHook, operationName, hasVueQueryV4, hasSvelteQueryV4, hasQueryV5, hasQueryV5WithDataTagError, isInitialDataDefined }) => {
|
|
619
|
+
switch (outputClient) {
|
|
620
|
+
case __orval_core.OutputClient.SVELTE_QUERY:
|
|
621
|
+
if (!hasSvelteQueryV4) return `Use${(0, __orval_core.pascal)(type)}StoreResult<Awaited<ReturnType<${isMutatorHook ? `ReturnType<typeof use${(0, __orval_core.pascal)(operationName)}Hook>` : `typeof ${operationName}`}>>, TError, TData, QueryKey> & { queryKey: QueryKey} }`;
|
|
622
|
+
return `Create${(0, __orval_core.pascal)(type)}Result<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
623
|
+
case __orval_core.OutputClient.VUE_QUERY:
|
|
624
|
+
if (!hasVueQueryV4) return ` UseQueryReturnType<TData, TError, Use${(0, __orval_core.pascal)(type)}Result<TData, TError>> & { queryKey: QueryKey} }`;
|
|
625
|
+
if (type !== QueryType.INFINITE && type !== QueryType.SUSPENSE_INFINITE) return `UseQueryReturnType<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
626
|
+
return `UseInfiniteQueryReturnType<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
627
|
+
case __orval_core.OutputClient.REACT_QUERY:
|
|
628
|
+
default: return ` ${isInitialDataDefined && !isSuspenseQuery(type) ? "Defined" : ""}Use${(0, __orval_core.pascal)(type)}Result<TData, TError> & { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`;
|
|
629
|
+
}
|
|
2334
630
|
};
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
dataType,
|
|
2338
|
-
variableType
|
|
2339
|
-
}) => {
|
|
2340
|
-
if (outputClient === import_core3.OutputClient.REACT_QUERY) {
|
|
2341
|
-
return `: UseMutationResult<
|
|
631
|
+
const generateMutatorReturnType = ({ outputClient, dataType, variableType }) => {
|
|
632
|
+
if (outputClient === __orval_core.OutputClient.REACT_QUERY) return `: UseMutationResult<
|
|
2342
633
|
Awaited<ReturnType<${dataType}>>,
|
|
2343
634
|
TError,
|
|
2344
635
|
${variableType},
|
|
2345
636
|
TContext
|
|
2346
637
|
>`;
|
|
2347
|
-
|
|
2348
|
-
if (outputClient === import_core3.OutputClient.SVELTE_QUERY) {
|
|
2349
|
-
return `: CreateMutationResult<
|
|
638
|
+
if (outputClient === __orval_core.OutputClient.SVELTE_QUERY) return `: CreateMutationResult<
|
|
2350
639
|
Awaited<ReturnType<${dataType}>>,
|
|
2351
640
|
TError,
|
|
2352
641
|
${variableType},
|
|
2353
642
|
TContext
|
|
2354
643
|
>`;
|
|
2355
|
-
|
|
2356
|
-
if (outputClient === import_core3.OutputClient.VUE_QUERY) {
|
|
2357
|
-
return `: UseMutationReturnType<
|
|
644
|
+
if (outputClient === __orval_core.OutputClient.VUE_QUERY) return `: UseMutationReturnType<
|
|
2358
645
|
Awaited<ReturnType<${dataType}>>,
|
|
2359
646
|
TError,
|
|
2360
647
|
${variableType},
|
|
2361
648
|
TContext
|
|
2362
649
|
>`;
|
|
2363
|
-
|
|
2364
|
-
return "";
|
|
650
|
+
return "";
|
|
2365
651
|
};
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
if (hasQueryParam) {
|
|
2374
|
-
if (hasSignal) {
|
|
2375
|
-
return "{ signal, pageParam }";
|
|
2376
|
-
}
|
|
2377
|
-
return "{ pageParam }";
|
|
2378
|
-
}
|
|
2379
|
-
return "{ signal }";
|
|
652
|
+
const getQueryFnArguments = ({ hasQueryParam, hasSignal }) => {
|
|
653
|
+
if (!hasQueryParam && !hasSignal) return "";
|
|
654
|
+
if (hasQueryParam) {
|
|
655
|
+
if (hasSignal) return "{ signal, pageParam }";
|
|
656
|
+
return "{ pageParam }";
|
|
657
|
+
}
|
|
658
|
+
return "{ signal }";
|
|
2380
659
|
};
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
hasQueryV5,
|
|
2503
|
-
hasQueryV5WithInfiniteQueryOptionsError,
|
|
2504
|
-
queryParams,
|
|
2505
|
-
queryParam,
|
|
2506
|
-
httpClient
|
|
2507
|
-
});
|
|
2508
|
-
const queryOptions = getQueryOptions({
|
|
2509
|
-
isRequestOptions,
|
|
2510
|
-
isExactOptionalPropertyTypes,
|
|
2511
|
-
mutator,
|
|
2512
|
-
hasSignal,
|
|
2513
|
-
httpClient
|
|
2514
|
-
});
|
|
2515
|
-
const hookOptions = getHookOptions({
|
|
2516
|
-
isRequestOptions,
|
|
2517
|
-
httpClient,
|
|
2518
|
-
mutator
|
|
2519
|
-
});
|
|
2520
|
-
const queryFnArguments = getQueryFnArguments({
|
|
2521
|
-
hasQueryParam: !!queryParam && props.some(({ type: type2 }) => type2 === "queryParam"),
|
|
2522
|
-
hasSignal
|
|
2523
|
-
});
|
|
2524
|
-
const queryOptionFnReturnType = getQueryOptionsDefinition({
|
|
2525
|
-
operationName,
|
|
2526
|
-
mutator,
|
|
2527
|
-
definitions: "",
|
|
2528
|
-
type,
|
|
2529
|
-
hasSvelteQueryV4,
|
|
2530
|
-
hasQueryV5,
|
|
2531
|
-
hasQueryV5WithInfiniteQueryOptionsError,
|
|
2532
|
-
queryParams,
|
|
2533
|
-
queryParam,
|
|
2534
|
-
isReturnType: true
|
|
2535
|
-
});
|
|
2536
|
-
const queryOptionsImp = generateQueryOptions({
|
|
2537
|
-
params,
|
|
2538
|
-
options,
|
|
2539
|
-
type,
|
|
2540
|
-
outputClient
|
|
2541
|
-
});
|
|
2542
|
-
const queryOptionsFnName = (0, import_core3.camel)(
|
|
2543
|
-
queryKeyMutator || queryOptionsMutator || (mutator == null ? void 0 : mutator.isHook) ? `use-${name}-queryOptions` : `get-${name}-queryOptions`
|
|
2544
|
-
);
|
|
2545
|
-
const queryOptionsVarName = isRequestOptions ? "queryOptions" : "options";
|
|
2546
|
-
const hasParamReservedWord = props.some(
|
|
2547
|
-
(prop) => prop.name === "query"
|
|
2548
|
-
);
|
|
2549
|
-
const queryResultVarName = hasParamReservedWord ? "_query" : "query";
|
|
2550
|
-
const infiniteParam = queryParams && queryParam ? `, ${queryParams == null ? void 0 : queryParams.schema.name}['${queryParam}']` : "";
|
|
2551
|
-
const TData = hasQueryV5 && (type === QueryType.INFINITE || type === QueryType.SUSPENSE_INFINITE) ? `InfiniteData<Awaited<ReturnType<${dataType}>>${infiniteParam}>` : `Awaited<ReturnType<${dataType}>>`;
|
|
2552
|
-
const queryOptionsFn = `export const ${queryOptionsFnName} = <TData = ${TData}, TError = ${errorType}>(${queryProps} ${queryArguments}) => {
|
|
660
|
+
const generateQueryImplementation = ({ queryOption: { name, queryParam, options, type }, operationName, queryKeyFnName, queryProperties, queryKeyProperties, queryParams, params, props, mutator, queryOptionsMutator, queryKeyMutator, isRequestOptions, response, outputClient, httpClient, isExactOptionalPropertyTypes, hasSignal, route, hasVueQueryV4, hasSvelteQueryV4, hasQueryV5, hasQueryV5WithDataTagError, hasQueryV5WithInfiniteQueryOptionsError, doc, usePrefetch, useQuery, useInfinite }) => {
|
|
661
|
+
const queryPropDefinitions = (0, __orval_core.toObjectString)(props, "definition");
|
|
662
|
+
const definedInitialDataQueryPropsDefinitions = (0, __orval_core.toObjectString)(props.map((prop) => {
|
|
663
|
+
const regex = /* @__PURE__ */ new RegExp(`^${prop.name}\\s*\\?:`);
|
|
664
|
+
if (!regex.test(prop.definition)) return prop;
|
|
665
|
+
const definitionWithUndefined = prop.definition.replace(regex, `${prop.name}: undefined | `);
|
|
666
|
+
return {
|
|
667
|
+
...prop,
|
|
668
|
+
definition: definitionWithUndefined
|
|
669
|
+
};
|
|
670
|
+
}), "definition");
|
|
671
|
+
const queryProps = (0, __orval_core.toObjectString)(props, "implementation");
|
|
672
|
+
const hasInfiniteQueryParam = queryParam && queryParams?.schema.name;
|
|
673
|
+
const httpFunctionProps = queryParam ? props.map((param) => {
|
|
674
|
+
if (param.type === __orval_core.GetterPropType.NAMED_PATH_PARAMS && !isVue(outputClient)) return param.destructured;
|
|
675
|
+
return param.name === "params" ? `{...${isVue(outputClient) ? `unref(params)` : "params"}, '${queryParam}': pageParam || ${isVue(outputClient) ? `unref(params)?.['${queryParam}']` : `params?.['${queryParam}']`}}` : param.name;
|
|
676
|
+
}).join(",") : getHttpFunctionQueryProps(isVue(outputClient), httpClient, queryProperties);
|
|
677
|
+
const definedInitialDataReturnType = generateQueryReturnType({
|
|
678
|
+
outputClient,
|
|
679
|
+
type,
|
|
680
|
+
isMutatorHook: mutator?.isHook,
|
|
681
|
+
operationName,
|
|
682
|
+
hasVueQueryV4,
|
|
683
|
+
hasSvelteQueryV4,
|
|
684
|
+
hasQueryV5,
|
|
685
|
+
hasQueryV5WithDataTagError,
|
|
686
|
+
isInitialDataDefined: true
|
|
687
|
+
});
|
|
688
|
+
const returnType = generateQueryReturnType({
|
|
689
|
+
outputClient,
|
|
690
|
+
type,
|
|
691
|
+
isMutatorHook: mutator?.isHook,
|
|
692
|
+
operationName,
|
|
693
|
+
hasVueQueryV4,
|
|
694
|
+
hasSvelteQueryV4,
|
|
695
|
+
hasQueryV5,
|
|
696
|
+
hasQueryV5WithDataTagError
|
|
697
|
+
});
|
|
698
|
+
const errorType = getQueryErrorType(operationName, response, httpClient, mutator);
|
|
699
|
+
const dataType = mutator?.isHook ? `ReturnType<typeof use${(0, __orval_core.pascal)(operationName)}Hook>` : `typeof ${operationName}`;
|
|
700
|
+
const definedInitialDataQueryArguments = generateQueryArguments({
|
|
701
|
+
operationName,
|
|
702
|
+
mutator,
|
|
703
|
+
definitions: "",
|
|
704
|
+
isRequestOptions,
|
|
705
|
+
type,
|
|
706
|
+
hasSvelteQueryV4,
|
|
707
|
+
hasQueryV5,
|
|
708
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
709
|
+
queryParams,
|
|
710
|
+
queryParam,
|
|
711
|
+
initialData: "defined",
|
|
712
|
+
httpClient
|
|
713
|
+
});
|
|
714
|
+
const undefinedInitialDataQueryArguments = generateQueryArguments({
|
|
715
|
+
operationName,
|
|
716
|
+
definitions: "",
|
|
717
|
+
mutator,
|
|
718
|
+
isRequestOptions,
|
|
719
|
+
type,
|
|
720
|
+
hasSvelteQueryV4,
|
|
721
|
+
hasQueryV5,
|
|
722
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
723
|
+
queryParams,
|
|
724
|
+
queryParam,
|
|
725
|
+
initialData: "undefined",
|
|
726
|
+
httpClient
|
|
727
|
+
});
|
|
728
|
+
const queryArguments = generateQueryArguments({
|
|
729
|
+
operationName,
|
|
730
|
+
definitions: "",
|
|
731
|
+
mutator,
|
|
732
|
+
isRequestOptions,
|
|
733
|
+
type,
|
|
734
|
+
hasSvelteQueryV4,
|
|
735
|
+
hasQueryV5,
|
|
736
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
737
|
+
queryParams,
|
|
738
|
+
queryParam,
|
|
739
|
+
httpClient
|
|
740
|
+
});
|
|
741
|
+
const queryOptions = getQueryOptions({
|
|
742
|
+
isRequestOptions,
|
|
743
|
+
isExactOptionalPropertyTypes,
|
|
744
|
+
mutator,
|
|
745
|
+
hasSignal,
|
|
746
|
+
httpClient
|
|
747
|
+
});
|
|
748
|
+
const hookOptions = getHookOptions({
|
|
749
|
+
isRequestOptions,
|
|
750
|
+
httpClient,
|
|
751
|
+
mutator
|
|
752
|
+
});
|
|
753
|
+
const queryFnArguments = getQueryFnArguments({
|
|
754
|
+
hasQueryParam: !!queryParam && props.some(({ type: type$1 }) => type$1 === "queryParam"),
|
|
755
|
+
hasSignal
|
|
756
|
+
});
|
|
757
|
+
const queryOptionFnReturnType = getQueryOptionsDefinition({
|
|
758
|
+
operationName,
|
|
759
|
+
mutator,
|
|
760
|
+
definitions: "",
|
|
761
|
+
type,
|
|
762
|
+
hasSvelteQueryV4,
|
|
763
|
+
hasQueryV5,
|
|
764
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
765
|
+
queryParams,
|
|
766
|
+
queryParam,
|
|
767
|
+
isReturnType: true
|
|
768
|
+
});
|
|
769
|
+
const queryOptionsImp = generateQueryOptions({
|
|
770
|
+
params,
|
|
771
|
+
options,
|
|
772
|
+
type,
|
|
773
|
+
outputClient
|
|
774
|
+
});
|
|
775
|
+
const queryOptionsFnName = (0, __orval_core.camel)(queryKeyMutator || queryOptionsMutator || mutator?.isHook ? `use-${name}-queryOptions` : `get-${name}-queryOptions`);
|
|
776
|
+
const queryOptionsVarName = isRequestOptions ? "queryOptions" : "options";
|
|
777
|
+
const queryResultVarName = props.some((prop) => prop.name === "query") ? "_query" : "query";
|
|
778
|
+
const infiniteParam = queryParams && queryParam ? `, ${queryParams?.schema.name}['${queryParam}']` : "";
|
|
779
|
+
const TData = hasQueryV5 && (type === QueryType.INFINITE || type === QueryType.SUSPENSE_INFINITE) ? `InfiniteData<Awaited<ReturnType<${dataType}>>${infiniteParam}>` : `Awaited<ReturnType<${dataType}>>`;
|
|
780
|
+
const queryOptionsFn = `export const ${queryOptionsFnName} = <TData = ${TData}, TError = ${errorType}>(${queryProps} ${queryArguments}) => {
|
|
2553
781
|
|
|
2554
782
|
${hookOptions}
|
|
2555
783
|
|
|
2556
|
-
const queryKey = ${
|
|
784
|
+
const queryKey = ${queryKeyMutator ? `${queryKeyMutator.name}({ ${queryProperties} }${queryKeyMutator.hasSecondArg ? `, { url: \`${route}\`, queryOptions }` : ""});` : `${hasVueQueryV4 ? "" : "queryOptions?.queryKey ?? "}${queryKeyFnName}(${queryKeyProperties});`}
|
|
2557
785
|
|
|
2558
|
-
${
|
|
786
|
+
${mutator?.isHook ? `const ${operationName} = use${(0, __orval_core.pascal)(operationName)}Hook();` : ""}
|
|
2559
787
|
|
|
2560
|
-
const queryFn: QueryFunction<Awaited<ReturnType<${
|
|
788
|
+
const queryFn: QueryFunction<Awaited<ReturnType<${mutator?.isHook ? `ReturnType<typeof use${(0, __orval_core.pascal)(operationName)}Hook>` : `typeof ${operationName}`}>>${hasQueryV5 && hasInfiniteQueryParam ? `, QueryKey, ${queryParams?.schema.name}['${queryParam}']` : ""}> = (${queryFnArguments}) => ${operationName}(${httpFunctionProps}${httpFunctionProps ? ", " : ""}${queryOptions});
|
|
2561
789
|
|
|
2562
|
-
${isVue(outputClient) ? vueUnRefParams(
|
|
2563
|
-
props.filter(
|
|
2564
|
-
(prop) => prop.type === import_core3.GetterPropType.NAMED_PATH_PARAMS
|
|
2565
|
-
)
|
|
2566
|
-
) : ""}
|
|
790
|
+
${isVue(outputClient) ? vueUnRefParams(props.filter((prop) => prop.type === __orval_core.GetterPropType.NAMED_PATH_PARAMS)) : ""}
|
|
2567
791
|
|
|
2568
792
|
${queryOptionsMutator ? `const customOptions = ${queryOptionsMutator.name}({...queryOptions, queryKey, queryFn}${queryOptionsMutator.hasSecondArg ? `, { ${queryProperties} }` : ""}${queryOptionsMutator.hasThirdArg ? `, { url: \`${route}\` }` : ""});` : ""}
|
|
2569
793
|
|
|
2570
|
-
return ${
|
|
794
|
+
return ${queryOptionsMutator ? "customOptions" : `{ queryKey, queryFn, ${queryOptionsImp}}`} as ${queryOptionFnReturnType} ${isVue(outputClient) ? "" : `& { queryKey: ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"} }`}
|
|
2571
795
|
}`;
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
export function ${queryHookName}<TData = ${TData}, TError = ${errorType}>(
|
|
2577
|
-
${
|
|
2578
|
-
): ${
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
): ${returnType}`;
|
|
2585
|
-
const shouldGeneratePrefetch = usePrefetch && (type === QueryType.QUERY || type === QueryType.INFINITE || type === QueryType.SUSPENSE_QUERY && !useQuery || type === QueryType.SUSPENSE_INFINITE && !useInfinite);
|
|
2586
|
-
const prefetchType = type === QueryType.QUERY || type === QueryType.SUSPENSE_QUERY ? "query" : "infinite-query";
|
|
2587
|
-
const prefetchVarName = (0, import_core3.camel)(`prefetch-${operationName}-${prefetchType}`);
|
|
2588
|
-
const prefetchFnName = (0, import_core3.camel)(`prefetch-${prefetchType}`);
|
|
2589
|
-
return `
|
|
796
|
+
const operationPrefix = hasSvelteQueryV4 ? "create" : "use";
|
|
797
|
+
const optionalQueryClientArgument = hasQueryV5 ? ", queryClient?: QueryClient" : "";
|
|
798
|
+
const queryHookName = (0, __orval_core.camel)(`${operationPrefix}-${name}`);
|
|
799
|
+
const overrideTypes = `
|
|
800
|
+
export function ${queryHookName}<TData = ${TData}, TError = ${errorType}>(\n ${definedInitialDataQueryPropsDefinitions} ${definedInitialDataQueryArguments} ${optionalQueryClientArgument}\n ): ${definedInitialDataReturnType}
|
|
801
|
+
export function ${queryHookName}<TData = ${TData}, TError = ${errorType}>(\n ${queryPropDefinitions} ${undefinedInitialDataQueryArguments} ${optionalQueryClientArgument}\n ): ${returnType}
|
|
802
|
+
export function ${queryHookName}<TData = ${TData}, TError = ${errorType}>(\n ${queryPropDefinitions} ${queryArguments} ${optionalQueryClientArgument}\n ): ${returnType}`;
|
|
803
|
+
const shouldGeneratePrefetch = usePrefetch && (type === QueryType.QUERY || type === QueryType.INFINITE || type === QueryType.SUSPENSE_QUERY && !useQuery || type === QueryType.SUSPENSE_INFINITE && !useInfinite);
|
|
804
|
+
const prefetchType = type === QueryType.QUERY || type === QueryType.SUSPENSE_QUERY ? "query" : "infinite-query";
|
|
805
|
+
const prefetchVarName = (0, __orval_core.camel)(`prefetch-${operationName}-${prefetchType}`);
|
|
806
|
+
const prefetchFnName = (0, __orval_core.camel)(`prefetch-${prefetchType}`);
|
|
807
|
+
return `
|
|
2590
808
|
${queryOptionsFn}
|
|
2591
809
|
|
|
2592
|
-
export type ${(0,
|
|
2593
|
-
|
|
2594
|
-
)}QueryResult = NonNullable<Awaited<ReturnType<${dataType}>>>
|
|
2595
|
-
export type ${(0, import_core3.pascal)(name)}QueryError = ${errorType}
|
|
810
|
+
export type ${(0, __orval_core.pascal)(name)}QueryResult = NonNullable<Awaited<ReturnType<${dataType}>>>
|
|
811
|
+
export type ${(0, __orval_core.pascal)(name)}QueryError = ${errorType}
|
|
2596
812
|
|
|
2597
|
-
${hasQueryV5 &&
|
|
813
|
+
${hasQueryV5 && __orval_core.OutputClient.REACT_QUERY === outputClient ? overrideTypes : ""}
|
|
2598
814
|
${doc}
|
|
2599
|
-
export function ${queryHookName}<TData = ${TData}, TError = ${errorType}>(
|
|
2600
|
-
${queryProps} ${queryArguments} ${optionalQueryClientArgument}
|
|
2601
|
-
): ${returnType} {
|
|
815
|
+
export function ${queryHookName}<TData = ${TData}, TError = ${errorType}>(\n ${queryProps} ${queryArguments} ${optionalQueryClientArgument} \n ): ${returnType} {
|
|
2602
816
|
|
|
2603
817
|
const ${queryOptionsVarName} = ${queryOptionsFnName}(${queryProperties}${queryProperties ? "," : ""}${isRequestOptions ? "options" : "queryOptions"})
|
|
2604
818
|
|
|
2605
|
-
const ${queryResultVarName} = ${(0,
|
|
2606
|
-
`${operationPrefix}-${type}`
|
|
2607
|
-
)}(${queryOptionsVarName} ${optionalQueryClientArgument ? ", queryClient" : ""}) as ${returnType};
|
|
819
|
+
const ${queryResultVarName} = ${(0, __orval_core.camel)(`${operationPrefix}-${type}`)}(${queryOptionsVarName} ${optionalQueryClientArgument ? ", queryClient" : ""}) as ${returnType};
|
|
2608
820
|
|
|
2609
821
|
${queryResultVarName}.queryKey = ${isVue(outputClient) ? `unref(${queryOptionsVarName})` : queryOptionsVarName}.queryKey ${isVue(outputClient) ? `as ${hasQueryV5 ? `DataTag<QueryKey, TData${hasQueryV5WithDataTagError ? ", TError" : ""}>` : "QueryKey"}` : ""};
|
|
2610
822
|
|
|
2611
823
|
return ${queryResultVarName};
|
|
2612
|
-
}
|
|
2613
|
-
|
|
2614
|
-
${shouldGeneratePrefetch ? `${doc}export const ${prefetchVarName} = async <TData = Awaited<ReturnType<${dataType}>>, TError = ${errorType}>(
|
|
2615
|
-
queryClient: QueryClient, ${queryProps} ${queryArguments}
|
|
2616
|
-
): Promise<QueryClient> => {
|
|
824
|
+
}\n
|
|
825
|
+
${shouldGeneratePrefetch ? `${doc}export const ${prefetchVarName} = async <TData = Awaited<ReturnType<${dataType}>>, TError = ${errorType}>(\n queryClient: QueryClient, ${queryProps} ${queryArguments}\n ): Promise<QueryClient> => {
|
|
2617
826
|
|
|
2618
827
|
const ${queryOptionsVarName} = ${queryOptionsFnName}(${queryProperties}${queryProperties ? "," : ""}${isRequestOptions ? "options" : "queryOptions"})
|
|
2619
828
|
|
|
2620
829
|
await queryClient.${prefetchFnName}(${queryOptionsVarName});
|
|
2621
830
|
|
|
2622
831
|
return queryClient;
|
|
2623
|
-
}
|
|
2624
|
-
` : ""}
|
|
832
|
+
}\n` : ""}
|
|
2625
833
|
`;
|
|
2626
834
|
};
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
type: QueryType.INFINITE,
|
|
2712
|
-
queryParam: query == null ? void 0 : query.useInfiniteQueryParam
|
|
2713
|
-
}
|
|
2714
|
-
] : [],
|
|
2715
|
-
...(query == null ? void 0 : query.useQuery) || (operationQueryOptions == null ? void 0 : operationQueryOptions.useQuery) ? [
|
|
2716
|
-
{
|
|
2717
|
-
name: operationName,
|
|
2718
|
-
options: query == null ? void 0 : query.options,
|
|
2719
|
-
type: QueryType.QUERY
|
|
2720
|
-
}
|
|
2721
|
-
] : [],
|
|
2722
|
-
...(query == null ? void 0 : query.useSuspenseQuery) || (operationQueryOptions == null ? void 0 : operationQueryOptions.useSuspenseQuery) ? [
|
|
2723
|
-
{
|
|
2724
|
-
name: (0, import_core3.camel)(`${operationName}-suspense`),
|
|
2725
|
-
options: query == null ? void 0 : query.options,
|
|
2726
|
-
type: QueryType.SUSPENSE_QUERY
|
|
2727
|
-
}
|
|
2728
|
-
] : [],
|
|
2729
|
-
...(query == null ? void 0 : query.useSuspenseInfiniteQuery) || (operationQueryOptions == null ? void 0 : operationQueryOptions.useSuspenseInfiniteQuery) ? [
|
|
2730
|
-
{
|
|
2731
|
-
name: (0, import_core3.camel)(`${operationName}-suspense-infinite`),
|
|
2732
|
-
options: query == null ? void 0 : query.options,
|
|
2733
|
-
type: QueryType.SUSPENSE_INFINITE,
|
|
2734
|
-
queryParam: query == null ? void 0 : query.useInfiniteQueryParam
|
|
2735
|
-
}
|
|
2736
|
-
] : []
|
|
2737
|
-
];
|
|
2738
|
-
const queryKeyFnName = (0, import_core3.camel)(`get-${operationName}-queryKey`);
|
|
2739
|
-
const makeParamsOptional = (params2) => {
|
|
2740
|
-
if (!params2) return "";
|
|
2741
|
-
return params2.replace(
|
|
2742
|
-
/(\w+)(\?)?:\s*([^=,}]*?)\s*(=\s*[^,}]*)?([,}]|$)/g,
|
|
2743
|
-
(match, paramName, optionalMarker, type, defaultValue, suffix) => {
|
|
2744
|
-
if (defaultValue) {
|
|
2745
|
-
return `${paramName}: ${type.trim()}${defaultValue}${suffix}`;
|
|
2746
|
-
}
|
|
2747
|
-
return `${paramName}?: ${type.trim()}${suffix}`;
|
|
2748
|
-
}
|
|
2749
|
-
);
|
|
2750
|
-
};
|
|
2751
|
-
const queryKeyProps = makeParamsOptional(
|
|
2752
|
-
(0, import_core3.toObjectString)(
|
|
2753
|
-
props.filter((prop) => prop.type !== import_core3.GetterPropType.HEADER),
|
|
2754
|
-
"implementation"
|
|
2755
|
-
)
|
|
2756
|
-
);
|
|
2757
|
-
const routeString = isVue(outputClient) || override.query.shouldSplitQueryKey ? (0, import_core3.getRouteAsArray)(route) : `\`${route}\``;
|
|
2758
|
-
const queryKeyFn = `${override.query.shouldExportQueryKey ? "export " : ""}const ${queryKeyFnName} = (${queryKeyProps}) => {
|
|
835
|
+
const generateQueryHook = async ({ queryParams, operationName, body, props: _props, verb, params, override, mutator, response, operationId, summary, deprecated }, { route, override: { operations = {} }, context, output }, outputClient) => {
|
|
836
|
+
let props = _props;
|
|
837
|
+
if (isVue(outputClient)) props = vueWrapTypeWithMaybeRef(_props);
|
|
838
|
+
const query = override?.query;
|
|
839
|
+
const isRequestOptions = override?.requestOptions !== false;
|
|
840
|
+
const operationQueryOptions = operations[operationId]?.query;
|
|
841
|
+
const isExactOptionalPropertyTypes = !!context.output.tsconfig?.compilerOptions?.exactOptionalPropertyTypes;
|
|
842
|
+
const queryVersion = override.query.version ?? query?.version;
|
|
843
|
+
const hasVueQueryV4 = __orval_core.OutputClient.VUE_QUERY === outputClient && (!isVueQueryV3(context.output.packageJson) || queryVersion === 4);
|
|
844
|
+
const hasSvelteQueryV4 = __orval_core.OutputClient.SVELTE_QUERY === outputClient && (!isSvelteQueryV3(context.output.packageJson) || queryVersion === 4);
|
|
845
|
+
const hasQueryV5 = queryVersion === 5 || isQueryV5(context.output.packageJson, outputClient);
|
|
846
|
+
const hasQueryV5WithDataTagError = queryVersion === 5 || isQueryV5WithDataTagError(context.output.packageJson, outputClient);
|
|
847
|
+
const hasQueryV5WithInfiniteQueryOptionsError = queryVersion === 5 || isQueryV5WithInfiniteQueryOptionsError(context.output.packageJson, outputClient);
|
|
848
|
+
const httpClient = context.output.httpClient;
|
|
849
|
+
const doc = (0, __orval_core.jsDoc)({
|
|
850
|
+
summary,
|
|
851
|
+
deprecated
|
|
852
|
+
});
|
|
853
|
+
let implementation = "";
|
|
854
|
+
let mutators;
|
|
855
|
+
const hasOperationQueryOption = !!(operationQueryOptions && (operationQueryOptions.useQuery || operationQueryOptions.useSuspenseQuery || operationQueryOptions.useInfinite || operationQueryOptions.useSuspenseInfiniteQuery));
|
|
856
|
+
let isQuery = __orval_core.Verbs.GET === verb && (override.query.useQuery || override.query.useSuspenseQuery || override.query.useInfinite || override.query.useSuspenseInfiniteQuery) || hasOperationQueryOption;
|
|
857
|
+
let isMutation = override.query.useMutation && verb !== __orval_core.Verbs.GET;
|
|
858
|
+
if (operationQueryOptions?.useMutation !== void 0) isMutation = operationQueryOptions.useMutation;
|
|
859
|
+
if (verb !== __orval_core.Verbs.GET && isQuery) isMutation = false;
|
|
860
|
+
if (verb === __orval_core.Verbs.GET && isMutation) isQuery = false;
|
|
861
|
+
if (isQuery) {
|
|
862
|
+
const queryKeyMutator = query.queryKey ? await (0, __orval_core.generateMutator)({
|
|
863
|
+
output,
|
|
864
|
+
mutator: query.queryKey,
|
|
865
|
+
name: `${operationName}QueryKey`,
|
|
866
|
+
workspace: context.workspace,
|
|
867
|
+
tsconfig: context.output.tsconfig
|
|
868
|
+
}) : void 0;
|
|
869
|
+
const queryOptionsMutator = query.queryOptions ? await (0, __orval_core.generateMutator)({
|
|
870
|
+
output,
|
|
871
|
+
mutator: query.queryOptions,
|
|
872
|
+
name: `${operationName}QueryOptions`,
|
|
873
|
+
workspace: context.workspace,
|
|
874
|
+
tsconfig: context.output.tsconfig
|
|
875
|
+
}) : void 0;
|
|
876
|
+
const queryProperties = props.map((param) => {
|
|
877
|
+
if (param.type === __orval_core.GetterPropType.NAMED_PATH_PARAMS && !isVue(outputClient)) return param.destructured;
|
|
878
|
+
return param.type === __orval_core.GetterPropType.BODY ? body.implementation : param.name;
|
|
879
|
+
}).join(",");
|
|
880
|
+
const queryKeyProperties = props.filter((prop) => prop.type !== __orval_core.GetterPropType.HEADER).map((param) => {
|
|
881
|
+
if (param.type === __orval_core.GetterPropType.NAMED_PATH_PARAMS && !isVue(outputClient)) return param.destructured;
|
|
882
|
+
return param.type === __orval_core.GetterPropType.BODY ? body.implementation : param.name;
|
|
883
|
+
}).join(",");
|
|
884
|
+
const queries = [
|
|
885
|
+
...query?.useInfinite || operationQueryOptions?.useInfinite ? [{
|
|
886
|
+
name: (0, __orval_core.camel)(`${operationName}-infinite`),
|
|
887
|
+
options: query?.options,
|
|
888
|
+
type: QueryType.INFINITE,
|
|
889
|
+
queryParam: query?.useInfiniteQueryParam
|
|
890
|
+
}] : [],
|
|
891
|
+
...query?.useQuery || operationQueryOptions?.useQuery ? [{
|
|
892
|
+
name: operationName,
|
|
893
|
+
options: query?.options,
|
|
894
|
+
type: QueryType.QUERY
|
|
895
|
+
}] : [],
|
|
896
|
+
...query?.useSuspenseQuery || operationQueryOptions?.useSuspenseQuery ? [{
|
|
897
|
+
name: (0, __orval_core.camel)(`${operationName}-suspense`),
|
|
898
|
+
options: query?.options,
|
|
899
|
+
type: QueryType.SUSPENSE_QUERY
|
|
900
|
+
}] : [],
|
|
901
|
+
...query?.useSuspenseInfiniteQuery || operationQueryOptions?.useSuspenseInfiniteQuery ? [{
|
|
902
|
+
name: (0, __orval_core.camel)(`${operationName}-suspense-infinite`),
|
|
903
|
+
options: query?.options,
|
|
904
|
+
type: QueryType.SUSPENSE_INFINITE,
|
|
905
|
+
queryParam: query?.useInfiniteQueryParam
|
|
906
|
+
}] : []
|
|
907
|
+
];
|
|
908
|
+
const queryKeyFnName = (0, __orval_core.camel)(`get-${operationName}-queryKey`);
|
|
909
|
+
const makeParamsOptional = (params$1) => {
|
|
910
|
+
if (!params$1) return "";
|
|
911
|
+
return params$1.replaceAll(/(\w+)(\?)?:\s*([^=,}]*?)\s*(=\s*[^,}]*)?([,}]|$)/g, (match, paramName, optionalMarker, type, defaultValue, suffix) => {
|
|
912
|
+
if (defaultValue) return `${paramName}: ${type.trim()}${defaultValue}${suffix}`;
|
|
913
|
+
return `${paramName}?: ${type.trim()}${suffix}`;
|
|
914
|
+
});
|
|
915
|
+
};
|
|
916
|
+
const queryKeyProps = makeParamsOptional((0, __orval_core.toObjectString)(props.filter((prop) => prop.type !== __orval_core.GetterPropType.HEADER), "implementation"));
|
|
917
|
+
const routeString = isVue(outputClient) || override.query.shouldSplitQueryKey ? (0, __orval_core.getRouteAsArray)(route) : `\`${route}\``;
|
|
918
|
+
const queryKeyFn = `${override.query.shouldExportQueryKey ? "export " : ""}const ${queryKeyFnName} = (${queryKeyProps}) => {
|
|
2759
919
|
return [${routeString}${queryParams ? ", ...(params ? [params]: [])" : ""}${body.implementation ? `, ${body.implementation}` : ""}] as const;
|
|
2760
920
|
}`;
|
|
2761
|
-
|
|
921
|
+
implementation += `${queryKeyMutator ? "" : queryKeyFn}
|
|
2762
922
|
|
|
2763
|
-
${queries.reduce(
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
}),
|
|
2796
|
-
""
|
|
2797
|
-
)}
|
|
923
|
+
${queries.reduce((acc, queryOption) => acc + generateQueryImplementation({
|
|
924
|
+
queryOption,
|
|
925
|
+
operationName,
|
|
926
|
+
queryKeyFnName,
|
|
927
|
+
queryProperties,
|
|
928
|
+
queryKeyProperties,
|
|
929
|
+
params,
|
|
930
|
+
props,
|
|
931
|
+
mutator,
|
|
932
|
+
isRequestOptions,
|
|
933
|
+
queryParams,
|
|
934
|
+
response,
|
|
935
|
+
outputClient,
|
|
936
|
+
httpClient,
|
|
937
|
+
isExactOptionalPropertyTypes,
|
|
938
|
+
hasSignal: getHasSignal({
|
|
939
|
+
overrideQuerySignal: override.query.signal,
|
|
940
|
+
verb
|
|
941
|
+
}),
|
|
942
|
+
queryOptionsMutator,
|
|
943
|
+
queryKeyMutator,
|
|
944
|
+
route,
|
|
945
|
+
hasVueQueryV4,
|
|
946
|
+
hasSvelteQueryV4,
|
|
947
|
+
hasQueryV5,
|
|
948
|
+
hasQueryV5WithDataTagError,
|
|
949
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
950
|
+
doc,
|
|
951
|
+
usePrefetch: query.usePrefetch,
|
|
952
|
+
useQuery: query.useQuery,
|
|
953
|
+
useInfinite: query.useInfinite
|
|
954
|
+
}), "")}
|
|
2798
955
|
`;
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
isRequestOptions,
|
|
2837
|
-
hasSvelteQueryV4,
|
|
2838
|
-
hasQueryV5,
|
|
2839
|
-
hasQueryV5WithInfiniteQueryOptionsError,
|
|
2840
|
-
httpClient
|
|
2841
|
-
});
|
|
2842
|
-
const mutationOptionsFnName = (0, import_core3.camel)(
|
|
2843
|
-
mutationOptionsMutator || (mutator == null ? void 0 : mutator.isHook) ? `use-${operationName}-mutationOptions` : `get-${operationName}-mutationOptions`
|
|
2844
|
-
);
|
|
2845
|
-
const mutationOptionsVarName = isRequestOptions ? "mutationOptions" : "options";
|
|
2846
|
-
const hooksOptionImplementation = getHooksOptionImplementation(
|
|
2847
|
-
isRequestOptions,
|
|
2848
|
-
httpClient,
|
|
2849
|
-
(0, import_core3.camel)(operationName),
|
|
2850
|
-
mutator
|
|
2851
|
-
);
|
|
2852
|
-
const mutationOptionsFn = `export const ${mutationOptionsFnName} = <TError = ${errorType},
|
|
956
|
+
mutators = queryOptionsMutator || queryKeyMutator ? [...queryOptionsMutator ? [queryOptionsMutator] : [], ...queryKeyMutator ? [queryKeyMutator] : []] : void 0;
|
|
957
|
+
}
|
|
958
|
+
if (isMutation) {
|
|
959
|
+
const mutationOptionsMutator = query.mutationOptions ? await (0, __orval_core.generateMutator)({
|
|
960
|
+
output,
|
|
961
|
+
mutator: query.mutationOptions,
|
|
962
|
+
name: `${operationName}MutationOptions`,
|
|
963
|
+
workspace: context.workspace,
|
|
964
|
+
tsconfig: context.output.tsconfig
|
|
965
|
+
}) : void 0;
|
|
966
|
+
const definitions = props.map(({ definition, type }) => type === __orval_core.GetterPropType.BODY ? mutator?.bodyTypeName ? `data: ${mutator.bodyTypeName}<${body.definition}>` : `data: ${body.definition}` : definition).join(";");
|
|
967
|
+
const properties = props.map(({ name, type }) => type === __orval_core.GetterPropType.BODY ? "data" : name).join(",");
|
|
968
|
+
const errorType = getQueryErrorType(operationName, response, httpClient, mutator);
|
|
969
|
+
const dataType = mutator?.isHook ? `ReturnType<typeof use${(0, __orval_core.pascal)(operationName)}Hook>` : `typeof ${operationName}`;
|
|
970
|
+
const mutationOptionFnReturnType = getQueryOptionsDefinition({
|
|
971
|
+
operationName,
|
|
972
|
+
mutator,
|
|
973
|
+
definitions,
|
|
974
|
+
hasSvelteQueryV4,
|
|
975
|
+
hasQueryV5,
|
|
976
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
977
|
+
isReturnType: true
|
|
978
|
+
});
|
|
979
|
+
const mutationArguments = generateQueryArguments({
|
|
980
|
+
operationName,
|
|
981
|
+
definitions,
|
|
982
|
+
mutator,
|
|
983
|
+
isRequestOptions,
|
|
984
|
+
hasSvelteQueryV4,
|
|
985
|
+
hasQueryV5,
|
|
986
|
+
hasQueryV5WithInfiniteQueryOptionsError,
|
|
987
|
+
httpClient
|
|
988
|
+
});
|
|
989
|
+
const mutationOptionsFnName = (0, __orval_core.camel)(mutationOptionsMutator || mutator?.isHook ? `use-${operationName}-mutationOptions` : `get-${operationName}-mutationOptions`);
|
|
990
|
+
const mutationOptionsVarName = isRequestOptions ? "mutationOptions" : "options";
|
|
991
|
+
const hooksOptionImplementation = getHooksOptionImplementation(isRequestOptions, httpClient, (0, __orval_core.camel)(operationName), mutator);
|
|
992
|
+
const mutationOptionsFn = `export const ${mutationOptionsFnName} = <TError = ${errorType},
|
|
2853
993
|
TContext = unknown>(${mutationArguments}): ${mutationOptionFnReturnType} => {
|
|
2854
994
|
|
|
2855
995
|
${hooksOptionImplementation}
|
|
2856
996
|
|
|
2857
|
-
${
|
|
997
|
+
${mutator?.isHook ? `const ${operationName} = use${(0, __orval_core.pascal)(operationName)}Hook()` : ""}
|
|
2858
998
|
|
|
2859
999
|
|
|
2860
1000
|
const mutationFn: MutationFunction<Awaited<ReturnType<${dataType}>>, ${definitions ? `{${definitions}}` : "void"}> = (${properties ? "props" : ""}) => {
|
|
@@ -2866,115 +1006,81 @@ ${hooksOptionImplementation}
|
|
|
2866
1006
|
${mutationOptionsMutator ? `const customOptions = ${mutationOptionsMutator.name}({...mutationOptions, mutationFn}${mutationOptionsMutator.hasSecondArg ? `, { url: \`${route.replaceAll("/${", "/{")}\` }` : ""}${mutationOptionsMutator.hasThirdArg ? `, { operationId: '${operationId}', operationName: '${operationName}' }` : ""});` : ""}
|
|
2867
1007
|
|
|
2868
1008
|
|
|
2869
|
-
return ${
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
1009
|
+
return ${mutationOptionsMutator ? "customOptions" : "{ mutationFn, ...mutationOptions }"}}`;
|
|
1010
|
+
const operationPrefix = hasSvelteQueryV4 ? "create" : "use";
|
|
1011
|
+
const optionalQueryClientArgument = hasQueryV5 ? ", queryClient?: QueryClient" : "";
|
|
1012
|
+
implementation += `
|
|
2873
1013
|
${mutationOptionsFn}
|
|
2874
1014
|
|
|
2875
|
-
export type ${(0,
|
|
2876
|
-
|
|
2877
|
-
)}
|
|
2878
|
-
${body.definition ? `export type ${(0, import_core3.pascal)(operationName)}MutationBody = ${(mutator == null ? void 0 : mutator.bodyTypeName) ? `${mutator.bodyTypeName}<${body.definition}>` : body.definition}` : ""}
|
|
2879
|
-
export type ${(0, import_core3.pascal)(operationName)}MutationError = ${errorType}
|
|
1015
|
+
export type ${(0, __orval_core.pascal)(operationName)}MutationResult = NonNullable<Awaited<ReturnType<${dataType}>>>
|
|
1016
|
+
${body.definition ? `export type ${(0, __orval_core.pascal)(operationName)}MutationBody = ${mutator?.bodyTypeName ? `${mutator.bodyTypeName}<${body.definition}>` : body.definition}` : ""}
|
|
1017
|
+
export type ${(0, __orval_core.pascal)(operationName)}MutationError = ${errorType}
|
|
2880
1018
|
|
|
2881
|
-
${doc}export const ${(0,
|
|
2882
|
-
|
|
2883
|
-
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
dataType,
|
|
2888
|
-
variableType: definitions ? `{${definitions}}` : "void"
|
|
2889
|
-
}
|
|
2890
|
-
)} => {
|
|
1019
|
+
${doc}export const ${(0, __orval_core.camel)(`${operationPrefix}-${operationName}`)} = <TError = ${errorType},
|
|
1020
|
+
TContext = unknown>(${mutationArguments} ${optionalQueryClientArgument})${generateMutatorReturnType({
|
|
1021
|
+
outputClient,
|
|
1022
|
+
dataType,
|
|
1023
|
+
variableType: definitions ? `{${definitions}}` : "void"
|
|
1024
|
+
})} => {
|
|
2891
1025
|
|
|
2892
1026
|
const ${mutationOptionsVarName} = ${mutationOptionsFnName}(${isRequestOptions ? "options" : "mutationOptions"});
|
|
2893
1027
|
|
|
2894
1028
|
return ${operationPrefix}Mutation(${mutationOptionsVarName} ${optionalQueryClientArgument ? ", queryClient" : ""});
|
|
2895
1029
|
}
|
|
2896
1030
|
`;
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
1031
|
+
mutators = mutationOptionsMutator ? [...mutators ?? [], mutationOptionsMutator] : mutators;
|
|
1032
|
+
}
|
|
1033
|
+
return {
|
|
1034
|
+
implementation,
|
|
1035
|
+
mutators
|
|
1036
|
+
};
|
|
2903
1037
|
};
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
` : ""}
|
|
2910
|
-
${params.isRequestOptions && params.isMutator ? `type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];
|
|
2911
|
-
|
|
2912
|
-
` : ""}
|
|
1038
|
+
const generateQueryHeader = (params) => {
|
|
1039
|
+
return `${params.hasAwaitedType ? "" : `type AwaitedInput<T> = PromiseLike<T> | T;\n
|
|
1040
|
+
type Awaited<O> = O extends AwaitedInput<infer T> ? T : never;\n\n`}
|
|
1041
|
+
${params.isRequestOptions && params.isMutator ? `type SecondParameter<T extends (...args: never) => unknown> = Parameters<T>[1];\n\n` : ""}
|
|
2913
1042
|
${getQueryHeader(params)}
|
|
2914
1043
|
`;
|
|
2915
1044
|
};
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
implementation: `${functionImplementation}
|
|
2926
|
-
|
|
2927
|
-
${hookImplementation}`,
|
|
2928
|
-
imports,
|
|
2929
|
-
mutators
|
|
2930
|
-
};
|
|
1045
|
+
const generateQuery = async (verbOptions, options, outputClient) => {
|
|
1046
|
+
const imports = (0, __orval_core.generateVerbImports)(verbOptions);
|
|
1047
|
+
const functionImplementation = generateQueryRequestFunction(verbOptions, options, isVue(outputClient));
|
|
1048
|
+
const { implementation: hookImplementation, mutators } = await generateQueryHook(verbOptions, options, outputClient);
|
|
1049
|
+
return {
|
|
1050
|
+
implementation: `${functionImplementation}\n\n${hookImplementation}`,
|
|
1051
|
+
imports,
|
|
1052
|
+
mutators
|
|
1053
|
+
};
|
|
2931
1054
|
};
|
|
2932
|
-
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
1055
|
+
const dependenciesBuilder = {
|
|
1056
|
+
"react-query": getReactQueryDependencies,
|
|
1057
|
+
"vue-query": getVueQueryDependencies,
|
|
1058
|
+
"svelte-query": getSvelteQueryDependencies
|
|
2936
1059
|
};
|
|
2937
|
-
|
|
2938
|
-
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
|
|
2948
|
-
|
|
2949
|
-
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
);
|
|
2953
|
-
verbOptions.override.query = (0, import_core3.mergeDeep)(
|
|
2954
|
-
normalizedQueryOptions,
|
|
2955
|
-
verbOptions.override.query
|
|
2956
|
-
);
|
|
2957
|
-
options.override.query = (0, import_core3.mergeDeep)(
|
|
2958
|
-
normalizedQueryOptions,
|
|
2959
|
-
verbOptions.override.query
|
|
2960
|
-
);
|
|
2961
|
-
}
|
|
2962
|
-
return generateQuery(verbOptions, options, outputClient, output);
|
|
2963
|
-
};
|
|
2964
|
-
return {
|
|
2965
|
-
client,
|
|
2966
|
-
header: generateQueryHeader,
|
|
2967
|
-
dependencies: dependenciesBuilder[type]
|
|
2968
|
-
};
|
|
1060
|
+
const builder = ({ type = "react-query", options: queryOptions, output } = {}) => () => {
|
|
1061
|
+
const client = (verbOptions, options, outputClient) => {
|
|
1062
|
+
if (options.override.useNamedParameters && (type === "vue-query" || outputClient === "vue-query")) throw new Error(`vue-query client does not support named parameters, and had broken reactivity previously, please set useNamedParameters to false; See for context: https://github.com/orval-labs/orval/pull/931#issuecomment-1752355686`);
|
|
1063
|
+
if (queryOptions) {
|
|
1064
|
+
const normalizedQueryOptions = normalizeQueryOptions(queryOptions, options.context.workspace);
|
|
1065
|
+
verbOptions.override.query = (0, __orval_core.mergeDeep)(normalizedQueryOptions, verbOptions.override.query);
|
|
1066
|
+
options.override.query = (0, __orval_core.mergeDeep)(normalizedQueryOptions, verbOptions.override.query);
|
|
1067
|
+
}
|
|
1068
|
+
return generateQuery(verbOptions, options, outputClient, output);
|
|
1069
|
+
};
|
|
1070
|
+
return {
|
|
1071
|
+
client,
|
|
1072
|
+
header: generateQueryHeader,
|
|
1073
|
+
dependencies: dependenciesBuilder[type]
|
|
1074
|
+
};
|
|
2969
1075
|
};
|
|
2970
|
-
var
|
|
2971
|
-
|
|
2972
|
-
|
|
2973
|
-
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
1076
|
+
var src_default = builder;
|
|
1077
|
+
|
|
1078
|
+
//#endregion
|
|
1079
|
+
exports.builder = builder;
|
|
1080
|
+
exports.default = src_default;
|
|
1081
|
+
exports.generateQuery = generateQuery;
|
|
1082
|
+
exports.generateQueryHeader = generateQueryHeader;
|
|
1083
|
+
exports.getReactQueryDependencies = getReactQueryDependencies;
|
|
1084
|
+
exports.getSvelteQueryDependencies = getSvelteQueryDependencies;
|
|
1085
|
+
exports.getVueQueryDependencies = getVueQueryDependencies;
|
|
2980
1086
|
//# sourceMappingURL=index.js.map
|