@scalar/api-client 2.1.49 → 2.1.51
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/CHANGELOG.md +25 -0
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +1 -1
- package/dist/components/DataTable/DataTableInput.vue.d.ts +1 -1
- package/dist/components/DataTable/DataTableInput.vue.d.ts.map +1 -1
- package/dist/components/Sidebar/SidebarListElementActions.vue.js +1 -1
- package/dist/components/TopNav/TopNav.vue.js +2 -2
- package/dist/components/TopNav/TopNav.vue2.js +7 -7
- package/dist/hooks/index.d.ts +0 -2
- package/dist/hooks/index.d.ts.map +1 -1
- package/dist/hooks/index.js +8 -12
- package/dist/layouts/App/ApiClientApp.vue.js +19 -19
- package/dist/layouts/App/create-api-client-app.d.ts +317 -151
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +634 -302
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/layouts/Web/ApiClientWeb.vue.js +20 -20
- package/dist/layouts/Web/create-api-client-web.d.ts +317 -151
- package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +310 -144
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/store/collections.d.ts +134 -4
- package/dist/store/collections.d.ts.map +1 -1
- package/dist/store/cookies.d.ts +4 -4
- package/dist/store/environment.d.ts +4 -4
- package/dist/store/import-spec.d.ts +26 -0
- package/dist/store/import-spec.d.ts.map +1 -1
- package/dist/store/request-example.d.ts +22 -72
- package/dist/store/request-example.d.ts.map +1 -1
- package/dist/store/requests.d.ts +15 -15
- package/dist/store/requests.d.ts.map +1 -1
- package/dist/store/servers.d.ts +4 -4
- package/dist/store/store.d.ts +632 -300
- package/dist/store/store.d.ts.map +1 -1
- package/dist/store/tags.d.ts +34 -34
- package/dist/store/tags.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/views/Request/RequestSection/RequestAuthDataTableInput.vue.d.ts +1 -1
- package/dist/views/Request/RequestSection/RequestAuthDataTableInput.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestBody.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestBody.vue.js +1 -1
- package/dist/views/Request/RequestSection/RequestBody.vue2.js +20 -21
- package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
- package/dist/views/Settings/SettingsGeneralMode.vue.d.ts.map +1 -1
- package/dist/views/Settings/SettingsGeneralMode.vue.js +38 -46
- package/package.json +5 -4
- package/dist/hooks/useClipboard.d.ts +0 -4
- package/dist/hooks/useClipboard.d.ts.map +0 -1
- package/dist/hooks/useClipboard.js +0 -14
- package/dist/hooks/useDarkModeState.d.ts +0 -8
- package/dist/hooks/useDarkModeState.d.ts.map +0 -1
- package/dist/hooks/useDarkModeState.js +0 -46
|
@@ -7,7 +7,7 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
7
7
|
uid: string;
|
|
8
8
|
name: string;
|
|
9
9
|
body: {
|
|
10
|
-
activeBody: "formData" | "
|
|
10
|
+
activeBody: "formData" | "binary" | "raw";
|
|
11
11
|
formData?: {
|
|
12
12
|
value: {
|
|
13
13
|
value: string;
|
|
@@ -22,16 +22,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
22
22
|
enum?: string[] | undefined;
|
|
23
23
|
format?: string | undefined;
|
|
24
24
|
file?: any;
|
|
25
|
-
refUid?: string | undefined;
|
|
26
25
|
nullable?: boolean | undefined;
|
|
27
26
|
}[];
|
|
28
27
|
encoding: "form-data" | "urlencoded";
|
|
29
28
|
} | undefined;
|
|
29
|
+
binary?: Blob | undefined;
|
|
30
30
|
raw?: {
|
|
31
31
|
value: string;
|
|
32
32
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
33
33
|
} | undefined;
|
|
34
|
-
binary?: Blob | undefined;
|
|
35
34
|
};
|
|
36
35
|
requestUid: string;
|
|
37
36
|
parameters: {
|
|
@@ -48,7 +47,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
48
47
|
enum?: string[] | undefined;
|
|
49
48
|
format?: string | undefined;
|
|
50
49
|
file?: any;
|
|
51
|
-
refUid?: string | undefined;
|
|
52
50
|
nullable?: boolean | undefined;
|
|
53
51
|
}[];
|
|
54
52
|
cookies: {
|
|
@@ -64,7 +62,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
64
62
|
enum?: string[] | undefined;
|
|
65
63
|
format?: string | undefined;
|
|
66
64
|
file?: any;
|
|
67
|
-
refUid?: string | undefined;
|
|
68
65
|
nullable?: boolean | undefined;
|
|
69
66
|
}[];
|
|
70
67
|
query: {
|
|
@@ -80,7 +77,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
80
77
|
enum?: string[] | undefined;
|
|
81
78
|
format?: string | undefined;
|
|
82
79
|
file?: any;
|
|
83
|
-
refUid?: string | undefined;
|
|
84
80
|
nullable?: boolean | undefined;
|
|
85
81
|
}[];
|
|
86
82
|
headers: {
|
|
@@ -96,7 +92,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
96
92
|
enum?: string[] | undefined;
|
|
97
93
|
format?: string | undefined;
|
|
98
94
|
file?: any;
|
|
99
|
-
refUid?: string | undefined;
|
|
100
95
|
nullable?: boolean | undefined;
|
|
101
96
|
}[];
|
|
102
97
|
};
|
|
@@ -108,7 +103,7 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
108
103
|
uid: string;
|
|
109
104
|
name: string;
|
|
110
105
|
body: {
|
|
111
|
-
activeBody: "formData" | "
|
|
106
|
+
activeBody: "formData" | "binary" | "raw";
|
|
112
107
|
formData?: {
|
|
113
108
|
value: {
|
|
114
109
|
value: string;
|
|
@@ -123,16 +118,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
123
118
|
enum?: string[] | undefined;
|
|
124
119
|
format?: string | undefined;
|
|
125
120
|
file?: any;
|
|
126
|
-
refUid?: string | undefined;
|
|
127
121
|
nullable?: boolean | undefined;
|
|
128
122
|
}[];
|
|
129
123
|
encoding: "form-data" | "urlencoded";
|
|
130
124
|
} | undefined;
|
|
125
|
+
binary?: Blob | undefined;
|
|
131
126
|
raw?: {
|
|
132
127
|
value: string;
|
|
133
128
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
134
129
|
} | undefined;
|
|
135
|
-
binary?: Blob | undefined;
|
|
136
130
|
};
|
|
137
131
|
requestUid: string;
|
|
138
132
|
parameters: {
|
|
@@ -149,7 +143,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
149
143
|
enum?: string[] | undefined;
|
|
150
144
|
format?: string | undefined;
|
|
151
145
|
file?: any;
|
|
152
|
-
refUid?: string | undefined;
|
|
153
146
|
nullable?: boolean | undefined;
|
|
154
147
|
}[];
|
|
155
148
|
cookies: {
|
|
@@ -165,7 +158,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
165
158
|
enum?: string[] | undefined;
|
|
166
159
|
format?: string | undefined;
|
|
167
160
|
file?: any;
|
|
168
|
-
refUid?: string | undefined;
|
|
169
161
|
nullable?: boolean | undefined;
|
|
170
162
|
}[];
|
|
171
163
|
query: {
|
|
@@ -181,7 +173,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
181
173
|
enum?: string[] | undefined;
|
|
182
174
|
format?: string | undefined;
|
|
183
175
|
file?: any;
|
|
184
|
-
refUid?: string | undefined;
|
|
185
176
|
nullable?: boolean | undefined;
|
|
186
177
|
}[];
|
|
187
178
|
headers: {
|
|
@@ -197,7 +188,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
197
188
|
enum?: string[] | undefined;
|
|
198
189
|
format?: string | undefined;
|
|
199
190
|
file?: any;
|
|
200
|
-
refUid?: string | undefined;
|
|
201
191
|
nullable?: boolean | undefined;
|
|
202
192
|
}[];
|
|
203
193
|
};
|
|
@@ -209,7 +199,7 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
209
199
|
uid: string;
|
|
210
200
|
name: string;
|
|
211
201
|
body: {
|
|
212
|
-
activeBody: "formData" | "
|
|
202
|
+
activeBody: "formData" | "binary" | "raw";
|
|
213
203
|
formData?: {
|
|
214
204
|
value: {
|
|
215
205
|
value: string;
|
|
@@ -224,16 +214,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
224
214
|
enum?: string[] | undefined;
|
|
225
215
|
format?: string | undefined;
|
|
226
216
|
file?: any;
|
|
227
|
-
refUid?: string | undefined;
|
|
228
217
|
nullable?: boolean | undefined;
|
|
229
218
|
}[];
|
|
230
219
|
encoding: "form-data" | "urlencoded";
|
|
231
220
|
} | undefined;
|
|
221
|
+
binary?: Blob | undefined;
|
|
232
222
|
raw?: {
|
|
233
223
|
value: string;
|
|
234
224
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
235
225
|
} | undefined;
|
|
236
|
-
binary?: Blob | undefined;
|
|
237
226
|
};
|
|
238
227
|
requestUid: string;
|
|
239
228
|
parameters: {
|
|
@@ -250,7 +239,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
250
239
|
enum?: string[] | undefined;
|
|
251
240
|
format?: string | undefined;
|
|
252
241
|
file?: any;
|
|
253
|
-
refUid?: string | undefined;
|
|
254
242
|
nullable?: boolean | undefined;
|
|
255
243
|
}[];
|
|
256
244
|
cookies: {
|
|
@@ -266,7 +254,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
266
254
|
enum?: string[] | undefined;
|
|
267
255
|
format?: string | undefined;
|
|
268
256
|
file?: any;
|
|
269
|
-
refUid?: string | undefined;
|
|
270
257
|
nullable?: boolean | undefined;
|
|
271
258
|
}[];
|
|
272
259
|
query: {
|
|
@@ -282,7 +269,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
282
269
|
enum?: string[] | undefined;
|
|
283
270
|
format?: string | undefined;
|
|
284
271
|
file?: any;
|
|
285
|
-
refUid?: string | undefined;
|
|
286
272
|
nullable?: boolean | undefined;
|
|
287
273
|
}[];
|
|
288
274
|
headers: {
|
|
@@ -298,18 +284,17 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
298
284
|
enum?: string[] | undefined;
|
|
299
285
|
format?: string | undefined;
|
|
300
286
|
file?: any;
|
|
301
|
-
refUid?: string | undefined;
|
|
302
287
|
nullable?: boolean | undefined;
|
|
303
288
|
}[];
|
|
304
289
|
};
|
|
305
290
|
serverVariables?: Record<string, string[]> | undefined;
|
|
306
291
|
}) => void;
|
|
307
|
-
edit: <P extends "body" | "name" | "type" | "parameters" | "uid" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.
|
|
292
|
+
edit: <P extends "body" | "name" | "type" | "parameters" | "uid" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.required` | `body.formData.value.${number}.type` | `body.formData.value.${number}.value` | `body.formData.value.${number}.file` | `body.formData.value.${number}.key` | `body.formData.value.${number}.default` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.format` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.enum.${number}` | "body.binary.size" | "body.binary.type" | "body.binary.arrayBuffer" | "body.binary.slice" | "body.binary.stream" | "body.binary.text" | "parameters.cookies" | "parameters.path" | "parameters.headers" | "parameters.query" | `parameters.cookies.${number}` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.required` | `parameters.path.${number}.type` | `parameters.path.${number}.value` | `parameters.path.${number}.file` | `parameters.path.${number}.key` | `parameters.path.${number}.default` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.format` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.required` | `parameters.headers.${number}.type` | `parameters.headers.${number}.value` | `parameters.headers.${number}.file` | `parameters.headers.${number}.key` | `parameters.headers.${number}.default` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.format` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.required` | `parameters.query.${number}.type` | `parameters.query.${number}.value` | `parameters.query.${number}.file` | `parameters.query.${number}.key` | `parameters.query.${number}.default` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.format` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.enum.${number}` | `serverVariables.${string}`>(uid: string, path: P, value: P extends "body" | "name" | "type" | "parameters" | "uid" | "requestUid" | "serverVariables" ? {
|
|
308
293
|
type: "requestExample";
|
|
309
294
|
uid: string;
|
|
310
295
|
name: string;
|
|
311
296
|
body: {
|
|
312
|
-
activeBody: "formData" | "
|
|
297
|
+
activeBody: "formData" | "binary" | "raw";
|
|
313
298
|
formData?: {
|
|
314
299
|
value: {
|
|
315
300
|
value: string;
|
|
@@ -324,16 +309,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
324
309
|
enum?: string[] | undefined;
|
|
325
310
|
format?: string | undefined;
|
|
326
311
|
file?: any;
|
|
327
|
-
refUid?: string | undefined;
|
|
328
312
|
nullable?: boolean | undefined;
|
|
329
313
|
}[];
|
|
330
314
|
encoding: "form-data" | "urlencoded";
|
|
331
315
|
} | undefined;
|
|
316
|
+
binary?: Blob | undefined;
|
|
332
317
|
raw?: {
|
|
333
318
|
value: string;
|
|
334
319
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
335
320
|
} | undefined;
|
|
336
|
-
binary?: Blob | undefined;
|
|
337
321
|
};
|
|
338
322
|
requestUid: string;
|
|
339
323
|
parameters: {
|
|
@@ -350,7 +334,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
350
334
|
enum?: string[] | undefined;
|
|
351
335
|
format?: string | undefined;
|
|
352
336
|
file?: any;
|
|
353
|
-
refUid?: string | undefined;
|
|
354
337
|
nullable?: boolean | undefined;
|
|
355
338
|
}[];
|
|
356
339
|
cookies: {
|
|
@@ -366,7 +349,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
366
349
|
enum?: string[] | undefined;
|
|
367
350
|
format?: string | undefined;
|
|
368
351
|
file?: any;
|
|
369
|
-
refUid?: string | undefined;
|
|
370
352
|
nullable?: boolean | undefined;
|
|
371
353
|
}[];
|
|
372
354
|
query: {
|
|
@@ -382,7 +364,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
382
364
|
enum?: string[] | undefined;
|
|
383
365
|
format?: string | undefined;
|
|
384
366
|
file?: any;
|
|
385
|
-
refUid?: string | undefined;
|
|
386
367
|
nullable?: boolean | undefined;
|
|
387
368
|
}[];
|
|
388
369
|
headers: {
|
|
@@ -398,7 +379,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
398
379
|
enum?: string[] | undefined;
|
|
399
380
|
format?: string | undefined;
|
|
400
381
|
file?: any;
|
|
401
|
-
refUid?: string | undefined;
|
|
402
382
|
nullable?: boolean | undefined;
|
|
403
383
|
}[];
|
|
404
384
|
};
|
|
@@ -408,7 +388,7 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
408
388
|
uid: string;
|
|
409
389
|
name: string;
|
|
410
390
|
body: {
|
|
411
|
-
activeBody: "formData" | "
|
|
391
|
+
activeBody: "formData" | "binary" | "raw";
|
|
412
392
|
formData?: {
|
|
413
393
|
value: {
|
|
414
394
|
value: string;
|
|
@@ -423,16 +403,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
423
403
|
enum?: string[] | undefined;
|
|
424
404
|
format?: string | undefined;
|
|
425
405
|
file?: any;
|
|
426
|
-
refUid?: string | undefined;
|
|
427
406
|
nullable?: boolean | undefined;
|
|
428
407
|
}[];
|
|
429
408
|
encoding: "form-data" | "urlencoded";
|
|
430
409
|
} | undefined;
|
|
410
|
+
binary?: Blob | undefined;
|
|
431
411
|
raw?: {
|
|
432
412
|
value: string;
|
|
433
413
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
434
414
|
} | undefined;
|
|
435
|
-
binary?: Blob | undefined;
|
|
436
415
|
};
|
|
437
416
|
requestUid: string;
|
|
438
417
|
parameters: {
|
|
@@ -449,7 +428,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
449
428
|
enum?: string[] | undefined;
|
|
450
429
|
format?: string | undefined;
|
|
451
430
|
file?: any;
|
|
452
|
-
refUid?: string | undefined;
|
|
453
431
|
nullable?: boolean | undefined;
|
|
454
432
|
}[];
|
|
455
433
|
cookies: {
|
|
@@ -465,7 +443,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
465
443
|
enum?: string[] | undefined;
|
|
466
444
|
format?: string | undefined;
|
|
467
445
|
file?: any;
|
|
468
|
-
refUid?: string | undefined;
|
|
469
446
|
nullable?: boolean | undefined;
|
|
470
447
|
}[];
|
|
471
448
|
query: {
|
|
@@ -481,7 +458,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
481
458
|
enum?: string[] | undefined;
|
|
482
459
|
format?: string | undefined;
|
|
483
460
|
file?: any;
|
|
484
|
-
refUid?: string | undefined;
|
|
485
461
|
nullable?: boolean | undefined;
|
|
486
462
|
}[];
|
|
487
463
|
headers: {
|
|
@@ -497,7 +473,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
497
473
|
enum?: string[] | undefined;
|
|
498
474
|
format?: string | undefined;
|
|
499
475
|
file?: any;
|
|
500
|
-
refUid?: string | undefined;
|
|
501
476
|
nullable?: boolean | undefined;
|
|
502
477
|
}[];
|
|
503
478
|
};
|
|
@@ -507,7 +482,7 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
507
482
|
uid: string;
|
|
508
483
|
name: string;
|
|
509
484
|
body: {
|
|
510
|
-
activeBody: "formData" | "
|
|
485
|
+
activeBody: "formData" | "binary" | "raw";
|
|
511
486
|
formData?: {
|
|
512
487
|
value: {
|
|
513
488
|
value: string;
|
|
@@ -522,16 +497,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
522
497
|
enum?: string[] | undefined;
|
|
523
498
|
format?: string | undefined;
|
|
524
499
|
file?: any;
|
|
525
|
-
refUid?: string | undefined;
|
|
526
500
|
nullable?: boolean | undefined;
|
|
527
501
|
}[];
|
|
528
502
|
encoding: "form-data" | "urlencoded";
|
|
529
503
|
} | undefined;
|
|
504
|
+
binary?: Blob | undefined;
|
|
530
505
|
raw?: {
|
|
531
506
|
value: string;
|
|
532
507
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
533
508
|
} | undefined;
|
|
534
|
-
binary?: Blob | undefined;
|
|
535
509
|
};
|
|
536
510
|
requestUid: string;
|
|
537
511
|
parameters: {
|
|
@@ -548,7 +522,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
548
522
|
enum?: string[] | undefined;
|
|
549
523
|
format?: string | undefined;
|
|
550
524
|
file?: any;
|
|
551
|
-
refUid?: string | undefined;
|
|
552
525
|
nullable?: boolean | undefined;
|
|
553
526
|
}[];
|
|
554
527
|
cookies: {
|
|
@@ -564,7 +537,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
564
537
|
enum?: string[] | undefined;
|
|
565
538
|
format?: string | undefined;
|
|
566
539
|
file?: any;
|
|
567
|
-
refUid?: string | undefined;
|
|
568
540
|
nullable?: boolean | undefined;
|
|
569
541
|
}[];
|
|
570
542
|
query: {
|
|
@@ -580,7 +552,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
580
552
|
enum?: string[] | undefined;
|
|
581
553
|
format?: string | undefined;
|
|
582
554
|
file?: any;
|
|
583
|
-
refUid?: string | undefined;
|
|
584
555
|
nullable?: boolean | undefined;
|
|
585
556
|
}[];
|
|
586
557
|
headers: {
|
|
@@ -596,18 +567,17 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
596
567
|
enum?: string[] | undefined;
|
|
597
568
|
format?: string | undefined;
|
|
598
569
|
file?: any;
|
|
599
|
-
refUid?: string | undefined;
|
|
600
570
|
nullable?: boolean | undefined;
|
|
601
571
|
}[];
|
|
602
572
|
};
|
|
603
573
|
serverVariables?: Record<string, string[]> | undefined;
|
|
604
574
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
605
|
-
untrackedEdit: <P extends "body" | "name" | "type" | "parameters" | "uid" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.
|
|
575
|
+
untrackedEdit: <P extends "body" | "name" | "type" | "parameters" | "uid" | "requestUid" | "serverVariables" | "body.binary" | "body.raw" | "body.formData" | "body.activeBody" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.required` | `body.formData.value.${number}.type` | `body.formData.value.${number}.value` | `body.formData.value.${number}.file` | `body.formData.value.${number}.key` | `body.formData.value.${number}.default` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.format` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.enum.${number}` | "body.binary.size" | "body.binary.type" | "body.binary.arrayBuffer" | "body.binary.slice" | "body.binary.stream" | "body.binary.text" | "parameters.cookies" | "parameters.path" | "parameters.headers" | "parameters.query" | `parameters.cookies.${number}` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.required` | `parameters.path.${number}.type` | `parameters.path.${number}.value` | `parameters.path.${number}.file` | `parameters.path.${number}.key` | `parameters.path.${number}.default` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.format` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.required` | `parameters.headers.${number}.type` | `parameters.headers.${number}.value` | `parameters.headers.${number}.file` | `parameters.headers.${number}.key` | `parameters.headers.${number}.default` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.format` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.required` | `parameters.query.${number}.type` | `parameters.query.${number}.value` | `parameters.query.${number}.file` | `parameters.query.${number}.key` | `parameters.query.${number}.default` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.format` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.enum.${number}` | `serverVariables.${string}`>(uid: string, path: P, value: P extends "body" | "name" | "type" | "parameters" | "uid" | "requestUid" | "serverVariables" ? {
|
|
606
576
|
type: "requestExample";
|
|
607
577
|
uid: string;
|
|
608
578
|
name: string;
|
|
609
579
|
body: {
|
|
610
|
-
activeBody: "formData" | "
|
|
580
|
+
activeBody: "formData" | "binary" | "raw";
|
|
611
581
|
formData?: {
|
|
612
582
|
value: {
|
|
613
583
|
value: string;
|
|
@@ -622,16 +592,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
622
592
|
enum?: string[] | undefined;
|
|
623
593
|
format?: string | undefined;
|
|
624
594
|
file?: any;
|
|
625
|
-
refUid?: string | undefined;
|
|
626
595
|
nullable?: boolean | undefined;
|
|
627
596
|
}[];
|
|
628
597
|
encoding: "form-data" | "urlencoded";
|
|
629
598
|
} | undefined;
|
|
599
|
+
binary?: Blob | undefined;
|
|
630
600
|
raw?: {
|
|
631
601
|
value: string;
|
|
632
602
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
633
603
|
} | undefined;
|
|
634
|
-
binary?: Blob | undefined;
|
|
635
604
|
};
|
|
636
605
|
requestUid: string;
|
|
637
606
|
parameters: {
|
|
@@ -648,7 +617,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
648
617
|
enum?: string[] | undefined;
|
|
649
618
|
format?: string | undefined;
|
|
650
619
|
file?: any;
|
|
651
|
-
refUid?: string | undefined;
|
|
652
620
|
nullable?: boolean | undefined;
|
|
653
621
|
}[];
|
|
654
622
|
cookies: {
|
|
@@ -664,7 +632,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
664
632
|
enum?: string[] | undefined;
|
|
665
633
|
format?: string | undefined;
|
|
666
634
|
file?: any;
|
|
667
|
-
refUid?: string | undefined;
|
|
668
635
|
nullable?: boolean | undefined;
|
|
669
636
|
}[];
|
|
670
637
|
query: {
|
|
@@ -680,7 +647,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
680
647
|
enum?: string[] | undefined;
|
|
681
648
|
format?: string | undefined;
|
|
682
649
|
file?: any;
|
|
683
|
-
refUid?: string | undefined;
|
|
684
650
|
nullable?: boolean | undefined;
|
|
685
651
|
}[];
|
|
686
652
|
headers: {
|
|
@@ -696,7 +662,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
696
662
|
enum?: string[] | undefined;
|
|
697
663
|
format?: string | undefined;
|
|
698
664
|
file?: any;
|
|
699
|
-
refUid?: string | undefined;
|
|
700
665
|
nullable?: boolean | undefined;
|
|
701
666
|
}[];
|
|
702
667
|
};
|
|
@@ -706,7 +671,7 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
706
671
|
uid: string;
|
|
707
672
|
name: string;
|
|
708
673
|
body: {
|
|
709
|
-
activeBody: "formData" | "
|
|
674
|
+
activeBody: "formData" | "binary" | "raw";
|
|
710
675
|
formData?: {
|
|
711
676
|
value: {
|
|
712
677
|
value: string;
|
|
@@ -721,16 +686,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
721
686
|
enum?: string[] | undefined;
|
|
722
687
|
format?: string | undefined;
|
|
723
688
|
file?: any;
|
|
724
|
-
refUid?: string | undefined;
|
|
725
689
|
nullable?: boolean | undefined;
|
|
726
690
|
}[];
|
|
727
691
|
encoding: "form-data" | "urlencoded";
|
|
728
692
|
} | undefined;
|
|
693
|
+
binary?: Blob | undefined;
|
|
729
694
|
raw?: {
|
|
730
695
|
value: string;
|
|
731
696
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
732
697
|
} | undefined;
|
|
733
|
-
binary?: Blob | undefined;
|
|
734
698
|
};
|
|
735
699
|
requestUid: string;
|
|
736
700
|
parameters: {
|
|
@@ -747,7 +711,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
747
711
|
enum?: string[] | undefined;
|
|
748
712
|
format?: string | undefined;
|
|
749
713
|
file?: any;
|
|
750
|
-
refUid?: string | undefined;
|
|
751
714
|
nullable?: boolean | undefined;
|
|
752
715
|
}[];
|
|
753
716
|
cookies: {
|
|
@@ -763,7 +726,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
763
726
|
enum?: string[] | undefined;
|
|
764
727
|
format?: string | undefined;
|
|
765
728
|
file?: any;
|
|
766
|
-
refUid?: string | undefined;
|
|
767
729
|
nullable?: boolean | undefined;
|
|
768
730
|
}[];
|
|
769
731
|
query: {
|
|
@@ -779,7 +741,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
779
741
|
enum?: string[] | undefined;
|
|
780
742
|
format?: string | undefined;
|
|
781
743
|
file?: any;
|
|
782
|
-
refUid?: string | undefined;
|
|
783
744
|
nullable?: boolean | undefined;
|
|
784
745
|
}[];
|
|
785
746
|
headers: {
|
|
@@ -795,7 +756,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
795
756
|
enum?: string[] | undefined;
|
|
796
757
|
format?: string | undefined;
|
|
797
758
|
file?: any;
|
|
798
|
-
refUid?: string | undefined;
|
|
799
759
|
nullable?: boolean | undefined;
|
|
800
760
|
}[];
|
|
801
761
|
};
|
|
@@ -805,7 +765,7 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
805
765
|
uid: string;
|
|
806
766
|
name: string;
|
|
807
767
|
body: {
|
|
808
|
-
activeBody: "formData" | "
|
|
768
|
+
activeBody: "formData" | "binary" | "raw";
|
|
809
769
|
formData?: {
|
|
810
770
|
value: {
|
|
811
771
|
value: string;
|
|
@@ -820,16 +780,15 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
820
780
|
enum?: string[] | undefined;
|
|
821
781
|
format?: string | undefined;
|
|
822
782
|
file?: any;
|
|
823
|
-
refUid?: string | undefined;
|
|
824
783
|
nullable?: boolean | undefined;
|
|
825
784
|
}[];
|
|
826
785
|
encoding: "form-data" | "urlencoded";
|
|
827
786
|
} | undefined;
|
|
787
|
+
binary?: Blob | undefined;
|
|
828
788
|
raw?: {
|
|
829
789
|
value: string;
|
|
830
790
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
831
791
|
} | undefined;
|
|
832
|
-
binary?: Blob | undefined;
|
|
833
792
|
};
|
|
834
793
|
requestUid: string;
|
|
835
794
|
parameters: {
|
|
@@ -846,7 +805,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
846
805
|
enum?: string[] | undefined;
|
|
847
806
|
format?: string | undefined;
|
|
848
807
|
file?: any;
|
|
849
|
-
refUid?: string | undefined;
|
|
850
808
|
nullable?: boolean | undefined;
|
|
851
809
|
}[];
|
|
852
810
|
cookies: {
|
|
@@ -862,7 +820,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
862
820
|
enum?: string[] | undefined;
|
|
863
821
|
format?: string | undefined;
|
|
864
822
|
file?: any;
|
|
865
|
-
refUid?: string | undefined;
|
|
866
823
|
nullable?: boolean | undefined;
|
|
867
824
|
}[];
|
|
868
825
|
query: {
|
|
@@ -878,7 +835,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
878
835
|
enum?: string[] | undefined;
|
|
879
836
|
format?: string | undefined;
|
|
880
837
|
file?: any;
|
|
881
|
-
refUid?: string | undefined;
|
|
882
838
|
nullable?: boolean | undefined;
|
|
883
839
|
}[];
|
|
884
840
|
headers: {
|
|
@@ -894,7 +850,6 @@ export declare function createStoreRequestExamples(useLocalStorage: boolean): {
|
|
|
894
850
|
enum?: string[] | undefined;
|
|
895
851
|
format?: string | undefined;
|
|
896
852
|
file?: any;
|
|
897
|
-
refUid?: string | undefined;
|
|
898
853
|
nullable?: boolean | undefined;
|
|
899
854
|
}[];
|
|
900
855
|
};
|
|
@@ -912,7 +867,7 @@ export declare function extendedExampleDataFactory({ requestExamples, requestExa
|
|
|
912
867
|
uid: string;
|
|
913
868
|
name: string;
|
|
914
869
|
body: {
|
|
915
|
-
activeBody: "formData" | "
|
|
870
|
+
activeBody: "formData" | "binary" | "raw";
|
|
916
871
|
formData?: {
|
|
917
872
|
value: {
|
|
918
873
|
value: string;
|
|
@@ -927,16 +882,15 @@ export declare function extendedExampleDataFactory({ requestExamples, requestExa
|
|
|
927
882
|
enum?: string[] | undefined;
|
|
928
883
|
format?: string | undefined;
|
|
929
884
|
file?: any;
|
|
930
|
-
refUid?: string | undefined;
|
|
931
885
|
nullable?: boolean | undefined;
|
|
932
886
|
}[];
|
|
933
887
|
encoding: "form-data" | "urlencoded";
|
|
934
888
|
} | undefined;
|
|
889
|
+
binary?: Blob | undefined;
|
|
935
890
|
raw?: {
|
|
936
891
|
value: string;
|
|
937
892
|
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
938
893
|
} | undefined;
|
|
939
|
-
binary?: Blob | undefined;
|
|
940
894
|
};
|
|
941
895
|
requestUid: string;
|
|
942
896
|
parameters: {
|
|
@@ -953,7 +907,6 @@ export declare function extendedExampleDataFactory({ requestExamples, requestExa
|
|
|
953
907
|
enum?: string[] | undefined;
|
|
954
908
|
format?: string | undefined;
|
|
955
909
|
file?: any;
|
|
956
|
-
refUid?: string | undefined;
|
|
957
910
|
nullable?: boolean | undefined;
|
|
958
911
|
}[];
|
|
959
912
|
cookies: {
|
|
@@ -969,7 +922,6 @@ export declare function extendedExampleDataFactory({ requestExamples, requestExa
|
|
|
969
922
|
enum?: string[] | undefined;
|
|
970
923
|
format?: string | undefined;
|
|
971
924
|
file?: any;
|
|
972
|
-
refUid?: string | undefined;
|
|
973
925
|
nullable?: boolean | undefined;
|
|
974
926
|
}[];
|
|
975
927
|
query: {
|
|
@@ -985,7 +937,6 @@ export declare function extendedExampleDataFactory({ requestExamples, requestExa
|
|
|
985
937
|
enum?: string[] | undefined;
|
|
986
938
|
format?: string | undefined;
|
|
987
939
|
file?: any;
|
|
988
|
-
refUid?: string | undefined;
|
|
989
940
|
nullable?: boolean | undefined;
|
|
990
941
|
}[];
|
|
991
942
|
headers: {
|
|
@@ -1001,7 +952,6 @@ export declare function extendedExampleDataFactory({ requestExamples, requestExa
|
|
|
1001
952
|
enum?: string[] | undefined;
|
|
1002
953
|
format?: string | undefined;
|
|
1003
954
|
file?: any;
|
|
1004
|
-
refUid?: string | undefined;
|
|
1005
955
|
nullable?: boolean | undefined;
|
|
1006
956
|
}[];
|
|
1007
957
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"request-example.d.ts","sourceRoot":"","sources":["../../src/store/request-example.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,uBAAuB,CAAA;AACzD,OAAO,EACL,KAAK,OAAO,EACZ,KAAK,cAAc,EAEpB,MAAM,iCAAiC,CAAA;AAKxC,0DAA0D;AAC1D,wBAAgB,0BAA0B,CAAC,eAAe,EAAE,OAAO;;;;;;;
|
|
1
|
+
{"version":3,"file":"request-example.d.ts","sourceRoot":"","sources":["../../src/store/request-example.ts"],"names":[],"mappings":"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"}
|