@scalar/api-client-react 1.0.33 → 1.0.36
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 +23 -0
- package/dist/index.d.ts +879 -196
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { AnyObject } from '@scalar/openapi-parser';
|
|
2
1
|
import { App } from 'vue';
|
|
3
2
|
import { AuthenticationState } from '@scalar/types/legacy';
|
|
4
3
|
import { ClientConfiguration } from '@scalar/api-client/libs';
|
|
@@ -62,6 +61,7 @@ export declare const useApiClientModal: () => {
|
|
|
62
61
|
isReadOnly: boolean;
|
|
63
62
|
collectionUids: string[];
|
|
64
63
|
environmentUids: string[];
|
|
64
|
+
activeEnvironmentId: string;
|
|
65
65
|
cookieUids: string[];
|
|
66
66
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
67
67
|
hotKeyConfig?: {
|
|
@@ -151,7 +151,7 @@ export declare const useApiClientModal: () => {
|
|
|
151
151
|
body: {
|
|
152
152
|
raw: {
|
|
153
153
|
value: string;
|
|
154
|
-
encoding: "
|
|
154
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
155
155
|
};
|
|
156
156
|
formData: {
|
|
157
157
|
value: {
|
|
@@ -165,15 +165,35 @@ export declare const useApiClientModal: () => {
|
|
|
165
165
|
required?: boolean | undefined;
|
|
166
166
|
description?: string | undefined;
|
|
167
167
|
enum?: string[] | undefined;
|
|
168
|
-
file?: any;
|
|
169
|
-
refUid?: string | undefined;
|
|
170
|
-
format?: string | undefined;
|
|
171
168
|
nullable?: boolean | undefined;
|
|
169
|
+
format?: string | undefined;
|
|
170
|
+
file?: {
|
|
171
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
172
|
+
type: string;
|
|
173
|
+
name: string;
|
|
174
|
+
size: number;
|
|
175
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
176
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
177
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
178
|
+
lastModified: number;
|
|
179
|
+
webkitRelativePath: string;
|
|
180
|
+
} | undefined;
|
|
181
|
+
refUid?: string | undefined;
|
|
172
182
|
}[];
|
|
173
183
|
encoding: "form-data" | "urlencoded";
|
|
174
184
|
};
|
|
175
185
|
activeBody: "raw" | "formData" | "binary";
|
|
176
|
-
binary?:
|
|
186
|
+
binary?: {
|
|
187
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
188
|
+
type: string;
|
|
189
|
+
name: string;
|
|
190
|
+
size: number;
|
|
191
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
192
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
193
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
194
|
+
lastModified: number;
|
|
195
|
+
webkitRelativePath: string;
|
|
196
|
+
} | undefined;
|
|
177
197
|
};
|
|
178
198
|
parameters: {
|
|
179
199
|
path: {
|
|
@@ -187,10 +207,20 @@ export declare const useApiClientModal: () => {
|
|
|
187
207
|
required?: boolean | undefined;
|
|
188
208
|
description?: string | undefined;
|
|
189
209
|
enum?: string[] | undefined;
|
|
190
|
-
file?: any;
|
|
191
|
-
refUid?: string | undefined;
|
|
192
|
-
format?: string | undefined;
|
|
193
210
|
nullable?: boolean | undefined;
|
|
211
|
+
format?: string | undefined;
|
|
212
|
+
file?: {
|
|
213
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
214
|
+
type: string;
|
|
215
|
+
name: string;
|
|
216
|
+
size: number;
|
|
217
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
218
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
219
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
220
|
+
lastModified: number;
|
|
221
|
+
webkitRelativePath: string;
|
|
222
|
+
} | undefined;
|
|
223
|
+
refUid?: string | undefined;
|
|
194
224
|
}[];
|
|
195
225
|
query: {
|
|
196
226
|
value: string;
|
|
@@ -203,10 +233,20 @@ export declare const useApiClientModal: () => {
|
|
|
203
233
|
required?: boolean | undefined;
|
|
204
234
|
description?: string | undefined;
|
|
205
235
|
enum?: string[] | undefined;
|
|
206
|
-
file?: any;
|
|
207
|
-
refUid?: string | undefined;
|
|
208
|
-
format?: string | undefined;
|
|
209
236
|
nullable?: boolean | undefined;
|
|
237
|
+
format?: string | undefined;
|
|
238
|
+
file?: {
|
|
239
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
240
|
+
type: string;
|
|
241
|
+
name: string;
|
|
242
|
+
size: number;
|
|
243
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
244
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
245
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
246
|
+
lastModified: number;
|
|
247
|
+
webkitRelativePath: string;
|
|
248
|
+
} | undefined;
|
|
249
|
+
refUid?: string | undefined;
|
|
210
250
|
}[];
|
|
211
251
|
headers: {
|
|
212
252
|
value: string;
|
|
@@ -219,10 +259,20 @@ export declare const useApiClientModal: () => {
|
|
|
219
259
|
required?: boolean | undefined;
|
|
220
260
|
description?: string | undefined;
|
|
221
261
|
enum?: string[] | undefined;
|
|
222
|
-
file?: any;
|
|
223
|
-
refUid?: string | undefined;
|
|
224
|
-
format?: string | undefined;
|
|
225
262
|
nullable?: boolean | undefined;
|
|
263
|
+
format?: string | undefined;
|
|
264
|
+
file?: {
|
|
265
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
266
|
+
type: string;
|
|
267
|
+
name: string;
|
|
268
|
+
size: number;
|
|
269
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
270
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
271
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
272
|
+
lastModified: number;
|
|
273
|
+
webkitRelativePath: string;
|
|
274
|
+
} | undefined;
|
|
275
|
+
refUid?: string | undefined;
|
|
226
276
|
}[];
|
|
227
277
|
cookies: {
|
|
228
278
|
value: string;
|
|
@@ -235,10 +285,20 @@ export declare const useApiClientModal: () => {
|
|
|
235
285
|
required?: boolean | undefined;
|
|
236
286
|
description?: string | undefined;
|
|
237
287
|
enum?: string[] | undefined;
|
|
238
|
-
file?: any;
|
|
239
|
-
refUid?: string | undefined;
|
|
240
|
-
format?: string | undefined;
|
|
241
288
|
nullable?: boolean | undefined;
|
|
289
|
+
format?: string | undefined;
|
|
290
|
+
file?: {
|
|
291
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
292
|
+
type: string;
|
|
293
|
+
name: string;
|
|
294
|
+
size: number;
|
|
295
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
296
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
297
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
298
|
+
lastModified: number;
|
|
299
|
+
webkitRelativePath: string;
|
|
300
|
+
} | undefined;
|
|
301
|
+
refUid?: string | undefined;
|
|
242
302
|
}[];
|
|
243
303
|
};
|
|
244
304
|
auth: Record<string, any>;
|
|
@@ -372,7 +432,7 @@ export declare const useApiClientModal: () => {
|
|
|
372
432
|
body: {
|
|
373
433
|
raw: {
|
|
374
434
|
value: string;
|
|
375
|
-
encoding: "
|
|
435
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
376
436
|
};
|
|
377
437
|
formData: {
|
|
378
438
|
value: {
|
|
@@ -386,15 +446,35 @@ export declare const useApiClientModal: () => {
|
|
|
386
446
|
required?: boolean | undefined;
|
|
387
447
|
description?: string | undefined;
|
|
388
448
|
enum?: string[] | undefined;
|
|
389
|
-
file?: any;
|
|
390
|
-
refUid?: string | undefined;
|
|
391
|
-
format?: string | undefined;
|
|
392
449
|
nullable?: boolean | undefined;
|
|
450
|
+
format?: string | undefined;
|
|
451
|
+
file?: {
|
|
452
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
453
|
+
type: string;
|
|
454
|
+
name: string;
|
|
455
|
+
size: number;
|
|
456
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
457
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
458
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
459
|
+
lastModified: number;
|
|
460
|
+
webkitRelativePath: string;
|
|
461
|
+
} | undefined;
|
|
462
|
+
refUid?: string | undefined;
|
|
393
463
|
}[];
|
|
394
464
|
encoding: "form-data" | "urlencoded";
|
|
395
465
|
};
|
|
396
466
|
activeBody: "raw" | "formData" | "binary";
|
|
397
|
-
binary?:
|
|
467
|
+
binary?: {
|
|
468
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
469
|
+
type: string;
|
|
470
|
+
name: string;
|
|
471
|
+
size: number;
|
|
472
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
473
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
474
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
475
|
+
lastModified: number;
|
|
476
|
+
webkitRelativePath: string;
|
|
477
|
+
} | undefined;
|
|
398
478
|
};
|
|
399
479
|
parameters: {
|
|
400
480
|
path: {
|
|
@@ -408,10 +488,20 @@ export declare const useApiClientModal: () => {
|
|
|
408
488
|
required?: boolean | undefined;
|
|
409
489
|
description?: string | undefined;
|
|
410
490
|
enum?: string[] | undefined;
|
|
411
|
-
file?: any;
|
|
412
|
-
refUid?: string | undefined;
|
|
413
|
-
format?: string | undefined;
|
|
414
491
|
nullable?: boolean | undefined;
|
|
492
|
+
format?: string | undefined;
|
|
493
|
+
file?: {
|
|
494
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
495
|
+
type: string;
|
|
496
|
+
name: string;
|
|
497
|
+
size: number;
|
|
498
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
499
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
500
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
501
|
+
lastModified: number;
|
|
502
|
+
webkitRelativePath: string;
|
|
503
|
+
} | undefined;
|
|
504
|
+
refUid?: string | undefined;
|
|
415
505
|
}[];
|
|
416
506
|
query: {
|
|
417
507
|
value: string;
|
|
@@ -424,10 +514,20 @@ export declare const useApiClientModal: () => {
|
|
|
424
514
|
required?: boolean | undefined;
|
|
425
515
|
description?: string | undefined;
|
|
426
516
|
enum?: string[] | undefined;
|
|
427
|
-
file?: any;
|
|
428
|
-
refUid?: string | undefined;
|
|
429
|
-
format?: string | undefined;
|
|
430
517
|
nullable?: boolean | undefined;
|
|
518
|
+
format?: string | undefined;
|
|
519
|
+
file?: {
|
|
520
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
521
|
+
type: string;
|
|
522
|
+
name: string;
|
|
523
|
+
size: number;
|
|
524
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
525
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
526
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
527
|
+
lastModified: number;
|
|
528
|
+
webkitRelativePath: string;
|
|
529
|
+
} | undefined;
|
|
530
|
+
refUid?: string | undefined;
|
|
431
531
|
}[];
|
|
432
532
|
headers: {
|
|
433
533
|
value: string;
|
|
@@ -440,10 +540,20 @@ export declare const useApiClientModal: () => {
|
|
|
440
540
|
required?: boolean | undefined;
|
|
441
541
|
description?: string | undefined;
|
|
442
542
|
enum?: string[] | undefined;
|
|
443
|
-
file?: any;
|
|
444
|
-
refUid?: string | undefined;
|
|
445
|
-
format?: string | undefined;
|
|
446
543
|
nullable?: boolean | undefined;
|
|
544
|
+
format?: string | undefined;
|
|
545
|
+
file?: {
|
|
546
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
547
|
+
type: string;
|
|
548
|
+
name: string;
|
|
549
|
+
size: number;
|
|
550
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
551
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
552
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
553
|
+
lastModified: number;
|
|
554
|
+
webkitRelativePath: string;
|
|
555
|
+
} | undefined;
|
|
556
|
+
refUid?: string | undefined;
|
|
447
557
|
}[];
|
|
448
558
|
cookies: {
|
|
449
559
|
value: string;
|
|
@@ -456,10 +566,20 @@ export declare const useApiClientModal: () => {
|
|
|
456
566
|
required?: boolean | undefined;
|
|
457
567
|
description?: string | undefined;
|
|
458
568
|
enum?: string[] | undefined;
|
|
459
|
-
file?: any;
|
|
460
|
-
refUid?: string | undefined;
|
|
461
|
-
format?: string | undefined;
|
|
462
569
|
nullable?: boolean | undefined;
|
|
570
|
+
format?: string | undefined;
|
|
571
|
+
file?: {
|
|
572
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
573
|
+
type: string;
|
|
574
|
+
name: string;
|
|
575
|
+
size: number;
|
|
576
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
577
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
578
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
579
|
+
lastModified: number;
|
|
580
|
+
webkitRelativePath: string;
|
|
581
|
+
} | undefined;
|
|
582
|
+
refUid?: string | undefined;
|
|
463
583
|
}[];
|
|
464
584
|
};
|
|
465
585
|
auth: Record<string, any>;
|
|
@@ -562,6 +682,7 @@ export declare const useApiClientModal: () => {
|
|
|
562
682
|
isReadOnly: boolean;
|
|
563
683
|
collectionUids: string[];
|
|
564
684
|
environmentUids: string[];
|
|
685
|
+
activeEnvironmentId: string;
|
|
565
686
|
cookieUids: string[];
|
|
566
687
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
567
688
|
hotKeyConfig?: {
|
|
@@ -629,11 +750,22 @@ export declare const useApiClientModal: () => {
|
|
|
629
750
|
key: string;
|
|
630
751
|
value: string;
|
|
631
752
|
} | {
|
|
632
|
-
_scalarEnvId:
|
|
753
|
+
_scalarEnvId: string;
|
|
633
754
|
key: string;
|
|
634
755
|
value: unknown;
|
|
635
756
|
})[]>;
|
|
636
757
|
activeWorkspaceRequests: ComputedRef<Request_2[]>;
|
|
758
|
+
activeEnvironment: ComputedRef< {
|
|
759
|
+
uid: string;
|
|
760
|
+
name: string;
|
|
761
|
+
color: string;
|
|
762
|
+
raw: string;
|
|
763
|
+
parsed: {
|
|
764
|
+
value: string;
|
|
765
|
+
key: string;
|
|
766
|
+
}[];
|
|
767
|
+
isDefault?: boolean | undefined;
|
|
768
|
+
}>;
|
|
637
769
|
modalState: {
|
|
638
770
|
open: boolean;
|
|
639
771
|
show: () => void;
|
|
@@ -644,7 +776,9 @@ export declare const useApiClientModal: () => {
|
|
|
644
776
|
sidebarWidth: Ref<string>;
|
|
645
777
|
setSidebarWidth: (width: string) => void;
|
|
646
778
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
647
|
-
importSpecFile: (_spec: string |
|
|
779
|
+
importSpecFile: (_spec: string | {
|
|
780
|
+
[x: string]: any;
|
|
781
|
+
}, workspaceUid?: string, overloadServers?: Spec["servers"]) => Promise<void>;
|
|
648
782
|
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: Spec["servers"]) => Promise<void>;
|
|
649
783
|
cookieMutators: {
|
|
650
784
|
add: (item: {
|
|
@@ -1300,7 +1434,7 @@ export declare const useApiClientModal: () => {
|
|
|
1300
1434
|
body: {
|
|
1301
1435
|
raw: {
|
|
1302
1436
|
value: string;
|
|
1303
|
-
encoding: "
|
|
1437
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1304
1438
|
};
|
|
1305
1439
|
formData: {
|
|
1306
1440
|
value: {
|
|
@@ -1314,15 +1448,35 @@ export declare const useApiClientModal: () => {
|
|
|
1314
1448
|
required?: boolean | undefined;
|
|
1315
1449
|
description?: string | undefined;
|
|
1316
1450
|
enum?: string[] | undefined;
|
|
1317
|
-
file?: any;
|
|
1318
|
-
refUid?: string | undefined;
|
|
1319
|
-
format?: string | undefined;
|
|
1320
1451
|
nullable?: boolean | undefined;
|
|
1452
|
+
format?: string | undefined;
|
|
1453
|
+
file?: {
|
|
1454
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1455
|
+
type: string;
|
|
1456
|
+
name: string;
|
|
1457
|
+
size: number;
|
|
1458
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1459
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1460
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1461
|
+
lastModified: number;
|
|
1462
|
+
webkitRelativePath: string;
|
|
1463
|
+
} | undefined;
|
|
1464
|
+
refUid?: string | undefined;
|
|
1321
1465
|
}[];
|
|
1322
1466
|
encoding: "form-data" | "urlencoded";
|
|
1323
1467
|
};
|
|
1324
1468
|
activeBody: "raw" | "formData" | "binary";
|
|
1325
|
-
binary?:
|
|
1469
|
+
binary?: {
|
|
1470
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1471
|
+
type: string;
|
|
1472
|
+
name: string;
|
|
1473
|
+
size: number;
|
|
1474
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1475
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1476
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1477
|
+
lastModified: number;
|
|
1478
|
+
webkitRelativePath: string;
|
|
1479
|
+
} | undefined;
|
|
1326
1480
|
};
|
|
1327
1481
|
parameters: {
|
|
1328
1482
|
path: {
|
|
@@ -1336,10 +1490,20 @@ export declare const useApiClientModal: () => {
|
|
|
1336
1490
|
required?: boolean | undefined;
|
|
1337
1491
|
description?: string | undefined;
|
|
1338
1492
|
enum?: string[] | undefined;
|
|
1339
|
-
file?: any;
|
|
1340
|
-
refUid?: string | undefined;
|
|
1341
|
-
format?: string | undefined;
|
|
1342
1493
|
nullable?: boolean | undefined;
|
|
1494
|
+
format?: string | undefined;
|
|
1495
|
+
file?: {
|
|
1496
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1497
|
+
type: string;
|
|
1498
|
+
name: string;
|
|
1499
|
+
size: number;
|
|
1500
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1501
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1502
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1503
|
+
lastModified: number;
|
|
1504
|
+
webkitRelativePath: string;
|
|
1505
|
+
} | undefined;
|
|
1506
|
+
refUid?: string | undefined;
|
|
1343
1507
|
}[];
|
|
1344
1508
|
query: {
|
|
1345
1509
|
value: string;
|
|
@@ -1352,10 +1516,20 @@ export declare const useApiClientModal: () => {
|
|
|
1352
1516
|
required?: boolean | undefined;
|
|
1353
1517
|
description?: string | undefined;
|
|
1354
1518
|
enum?: string[] | undefined;
|
|
1355
|
-
file?: any;
|
|
1356
|
-
refUid?: string | undefined;
|
|
1357
|
-
format?: string | undefined;
|
|
1358
1519
|
nullable?: boolean | undefined;
|
|
1520
|
+
format?: string | undefined;
|
|
1521
|
+
file?: {
|
|
1522
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1523
|
+
type: string;
|
|
1524
|
+
name: string;
|
|
1525
|
+
size: number;
|
|
1526
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1527
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1528
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1529
|
+
lastModified: number;
|
|
1530
|
+
webkitRelativePath: string;
|
|
1531
|
+
} | undefined;
|
|
1532
|
+
refUid?: string | undefined;
|
|
1359
1533
|
}[];
|
|
1360
1534
|
headers: {
|
|
1361
1535
|
value: string;
|
|
@@ -1368,10 +1542,20 @@ export declare const useApiClientModal: () => {
|
|
|
1368
1542
|
required?: boolean | undefined;
|
|
1369
1543
|
description?: string | undefined;
|
|
1370
1544
|
enum?: string[] | undefined;
|
|
1371
|
-
file?: any;
|
|
1372
|
-
refUid?: string | undefined;
|
|
1373
|
-
format?: string | undefined;
|
|
1374
1545
|
nullable?: boolean | undefined;
|
|
1546
|
+
format?: string | undefined;
|
|
1547
|
+
file?: {
|
|
1548
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1549
|
+
type: string;
|
|
1550
|
+
name: string;
|
|
1551
|
+
size: number;
|
|
1552
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1553
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1554
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1555
|
+
lastModified: number;
|
|
1556
|
+
webkitRelativePath: string;
|
|
1557
|
+
} | undefined;
|
|
1558
|
+
refUid?: string | undefined;
|
|
1375
1559
|
}[];
|
|
1376
1560
|
cookies: {
|
|
1377
1561
|
value: string;
|
|
@@ -1384,10 +1568,20 @@ export declare const useApiClientModal: () => {
|
|
|
1384
1568
|
required?: boolean | undefined;
|
|
1385
1569
|
description?: string | undefined;
|
|
1386
1570
|
enum?: string[] | undefined;
|
|
1387
|
-
file?: any;
|
|
1388
|
-
refUid?: string | undefined;
|
|
1389
|
-
format?: string | undefined;
|
|
1390
1571
|
nullable?: boolean | undefined;
|
|
1572
|
+
format?: string | undefined;
|
|
1573
|
+
file?: {
|
|
1574
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1575
|
+
type: string;
|
|
1576
|
+
name: string;
|
|
1577
|
+
size: number;
|
|
1578
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1579
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1580
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1581
|
+
lastModified: number;
|
|
1582
|
+
webkitRelativePath: string;
|
|
1583
|
+
} | undefined;
|
|
1584
|
+
refUid?: string | undefined;
|
|
1391
1585
|
}[];
|
|
1392
1586
|
};
|
|
1393
1587
|
auth: Record<string, any>;
|
|
@@ -1400,7 +1594,7 @@ export declare const useApiClientModal: () => {
|
|
|
1400
1594
|
body: {
|
|
1401
1595
|
raw: {
|
|
1402
1596
|
value: string;
|
|
1403
|
-
encoding: "
|
|
1597
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1404
1598
|
};
|
|
1405
1599
|
formData: {
|
|
1406
1600
|
value: {
|
|
@@ -1414,15 +1608,35 @@ export declare const useApiClientModal: () => {
|
|
|
1414
1608
|
required?: boolean | undefined;
|
|
1415
1609
|
description?: string | undefined;
|
|
1416
1610
|
enum?: string[] | undefined;
|
|
1417
|
-
file?: any;
|
|
1418
|
-
refUid?: string | undefined;
|
|
1419
|
-
format?: string | undefined;
|
|
1420
1611
|
nullable?: boolean | undefined;
|
|
1612
|
+
format?: string | undefined;
|
|
1613
|
+
file?: {
|
|
1614
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1615
|
+
type: string;
|
|
1616
|
+
name: string;
|
|
1617
|
+
size: number;
|
|
1618
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1619
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1620
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1621
|
+
lastModified: number;
|
|
1622
|
+
webkitRelativePath: string;
|
|
1623
|
+
} | undefined;
|
|
1624
|
+
refUid?: string | undefined;
|
|
1421
1625
|
}[];
|
|
1422
1626
|
encoding: "form-data" | "urlencoded";
|
|
1423
1627
|
};
|
|
1424
1628
|
activeBody: "raw" | "formData" | "binary";
|
|
1425
|
-
binary?:
|
|
1629
|
+
binary?: {
|
|
1630
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1631
|
+
type: string;
|
|
1632
|
+
name: string;
|
|
1633
|
+
size: number;
|
|
1634
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1635
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1636
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1637
|
+
lastModified: number;
|
|
1638
|
+
webkitRelativePath: string;
|
|
1639
|
+
} | undefined;
|
|
1426
1640
|
};
|
|
1427
1641
|
parameters: {
|
|
1428
1642
|
path: {
|
|
@@ -1436,10 +1650,20 @@ export declare const useApiClientModal: () => {
|
|
|
1436
1650
|
required?: boolean | undefined;
|
|
1437
1651
|
description?: string | undefined;
|
|
1438
1652
|
enum?: string[] | undefined;
|
|
1439
|
-
file?: any;
|
|
1440
|
-
refUid?: string | undefined;
|
|
1441
|
-
format?: string | undefined;
|
|
1442
1653
|
nullable?: boolean | undefined;
|
|
1654
|
+
format?: string | undefined;
|
|
1655
|
+
file?: {
|
|
1656
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1657
|
+
type: string;
|
|
1658
|
+
name: string;
|
|
1659
|
+
size: number;
|
|
1660
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1661
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1662
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1663
|
+
lastModified: number;
|
|
1664
|
+
webkitRelativePath: string;
|
|
1665
|
+
} | undefined;
|
|
1666
|
+
refUid?: string | undefined;
|
|
1443
1667
|
}[];
|
|
1444
1668
|
query: {
|
|
1445
1669
|
value: string;
|
|
@@ -1452,10 +1676,20 @@ export declare const useApiClientModal: () => {
|
|
|
1452
1676
|
required?: boolean | undefined;
|
|
1453
1677
|
description?: string | undefined;
|
|
1454
1678
|
enum?: string[] | undefined;
|
|
1455
|
-
file?: any;
|
|
1456
|
-
refUid?: string | undefined;
|
|
1457
|
-
format?: string | undefined;
|
|
1458
1679
|
nullable?: boolean | undefined;
|
|
1680
|
+
format?: string | undefined;
|
|
1681
|
+
file?: {
|
|
1682
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1683
|
+
type: string;
|
|
1684
|
+
name: string;
|
|
1685
|
+
size: number;
|
|
1686
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1687
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1688
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1689
|
+
lastModified: number;
|
|
1690
|
+
webkitRelativePath: string;
|
|
1691
|
+
} | undefined;
|
|
1692
|
+
refUid?: string | undefined;
|
|
1459
1693
|
}[];
|
|
1460
1694
|
headers: {
|
|
1461
1695
|
value: string;
|
|
@@ -1468,10 +1702,20 @@ export declare const useApiClientModal: () => {
|
|
|
1468
1702
|
required?: boolean | undefined;
|
|
1469
1703
|
description?: string | undefined;
|
|
1470
1704
|
enum?: string[] | undefined;
|
|
1471
|
-
file?: any;
|
|
1472
|
-
refUid?: string | undefined;
|
|
1473
|
-
format?: string | undefined;
|
|
1474
1705
|
nullable?: boolean | undefined;
|
|
1706
|
+
format?: string | undefined;
|
|
1707
|
+
file?: {
|
|
1708
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1709
|
+
type: string;
|
|
1710
|
+
name: string;
|
|
1711
|
+
size: number;
|
|
1712
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1713
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1714
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1715
|
+
lastModified: number;
|
|
1716
|
+
webkitRelativePath: string;
|
|
1717
|
+
} | undefined;
|
|
1718
|
+
refUid?: string | undefined;
|
|
1475
1719
|
}[];
|
|
1476
1720
|
cookies: {
|
|
1477
1721
|
value: string;
|
|
@@ -1484,10 +1728,20 @@ export declare const useApiClientModal: () => {
|
|
|
1484
1728
|
required?: boolean | undefined;
|
|
1485
1729
|
description?: string | undefined;
|
|
1486
1730
|
enum?: string[] | undefined;
|
|
1487
|
-
file?: any;
|
|
1488
|
-
refUid?: string | undefined;
|
|
1489
|
-
format?: string | undefined;
|
|
1490
1731
|
nullable?: boolean | undefined;
|
|
1732
|
+
format?: string | undefined;
|
|
1733
|
+
file?: {
|
|
1734
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1735
|
+
type: string;
|
|
1736
|
+
name: string;
|
|
1737
|
+
size: number;
|
|
1738
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1739
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1740
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1741
|
+
lastModified: number;
|
|
1742
|
+
webkitRelativePath: string;
|
|
1743
|
+
} | undefined;
|
|
1744
|
+
refUid?: string | undefined;
|
|
1491
1745
|
}[];
|
|
1492
1746
|
};
|
|
1493
1747
|
auth: Record<string, any>;
|
|
@@ -1501,7 +1755,7 @@ export declare const useApiClientModal: () => {
|
|
|
1501
1755
|
body: {
|
|
1502
1756
|
raw: {
|
|
1503
1757
|
value: string;
|
|
1504
|
-
encoding: "
|
|
1758
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1505
1759
|
};
|
|
1506
1760
|
formData: {
|
|
1507
1761
|
value: {
|
|
@@ -1515,15 +1769,35 @@ export declare const useApiClientModal: () => {
|
|
|
1515
1769
|
required?: boolean | undefined;
|
|
1516
1770
|
description?: string | undefined;
|
|
1517
1771
|
enum?: string[] | undefined;
|
|
1518
|
-
file?: any;
|
|
1519
|
-
refUid?: string | undefined;
|
|
1520
|
-
format?: string | undefined;
|
|
1521
1772
|
nullable?: boolean | undefined;
|
|
1773
|
+
format?: string | undefined;
|
|
1774
|
+
file?: {
|
|
1775
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1776
|
+
type: string;
|
|
1777
|
+
name: string;
|
|
1778
|
+
size: number;
|
|
1779
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1780
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1781
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1782
|
+
lastModified: number;
|
|
1783
|
+
webkitRelativePath: string;
|
|
1784
|
+
} | undefined;
|
|
1785
|
+
refUid?: string | undefined;
|
|
1522
1786
|
}[];
|
|
1523
1787
|
encoding: "form-data" | "urlencoded";
|
|
1524
1788
|
};
|
|
1525
1789
|
activeBody: "raw" | "formData" | "binary";
|
|
1526
|
-
binary?:
|
|
1790
|
+
binary?: {
|
|
1791
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1792
|
+
type: string;
|
|
1793
|
+
name: string;
|
|
1794
|
+
size: number;
|
|
1795
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1796
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1797
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1798
|
+
lastModified: number;
|
|
1799
|
+
webkitRelativePath: string;
|
|
1800
|
+
} | undefined;
|
|
1527
1801
|
};
|
|
1528
1802
|
parameters: {
|
|
1529
1803
|
path: {
|
|
@@ -1537,10 +1811,20 @@ export declare const useApiClientModal: () => {
|
|
|
1537
1811
|
required?: boolean | undefined;
|
|
1538
1812
|
description?: string | undefined;
|
|
1539
1813
|
enum?: string[] | undefined;
|
|
1540
|
-
file?: any;
|
|
1541
|
-
refUid?: string | undefined;
|
|
1542
|
-
format?: string | undefined;
|
|
1543
1814
|
nullable?: boolean | undefined;
|
|
1815
|
+
format?: string | undefined;
|
|
1816
|
+
file?: {
|
|
1817
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1818
|
+
type: string;
|
|
1819
|
+
name: string;
|
|
1820
|
+
size: number;
|
|
1821
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1822
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1823
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1824
|
+
lastModified: number;
|
|
1825
|
+
webkitRelativePath: string;
|
|
1826
|
+
} | undefined;
|
|
1827
|
+
refUid?: string | undefined;
|
|
1544
1828
|
}[];
|
|
1545
1829
|
query: {
|
|
1546
1830
|
value: string;
|
|
@@ -1553,10 +1837,20 @@ export declare const useApiClientModal: () => {
|
|
|
1553
1837
|
required?: boolean | undefined;
|
|
1554
1838
|
description?: string | undefined;
|
|
1555
1839
|
enum?: string[] | undefined;
|
|
1556
|
-
file?: any;
|
|
1557
|
-
refUid?: string | undefined;
|
|
1558
|
-
format?: string | undefined;
|
|
1559
1840
|
nullable?: boolean | undefined;
|
|
1841
|
+
format?: string | undefined;
|
|
1842
|
+
file?: {
|
|
1843
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1844
|
+
type: string;
|
|
1845
|
+
name: string;
|
|
1846
|
+
size: number;
|
|
1847
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1848
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1849
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1850
|
+
lastModified: number;
|
|
1851
|
+
webkitRelativePath: string;
|
|
1852
|
+
} | undefined;
|
|
1853
|
+
refUid?: string | undefined;
|
|
1560
1854
|
}[];
|
|
1561
1855
|
headers: {
|
|
1562
1856
|
value: string;
|
|
@@ -1569,10 +1863,20 @@ export declare const useApiClientModal: () => {
|
|
|
1569
1863
|
required?: boolean | undefined;
|
|
1570
1864
|
description?: string | undefined;
|
|
1571
1865
|
enum?: string[] | undefined;
|
|
1572
|
-
file?: any;
|
|
1573
|
-
refUid?: string | undefined;
|
|
1574
|
-
format?: string | undefined;
|
|
1575
1866
|
nullable?: boolean | undefined;
|
|
1867
|
+
format?: string | undefined;
|
|
1868
|
+
file?: {
|
|
1869
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1870
|
+
type: string;
|
|
1871
|
+
name: string;
|
|
1872
|
+
size: number;
|
|
1873
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1874
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1875
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1876
|
+
lastModified: number;
|
|
1877
|
+
webkitRelativePath: string;
|
|
1878
|
+
} | undefined;
|
|
1879
|
+
refUid?: string | undefined;
|
|
1576
1880
|
}[];
|
|
1577
1881
|
cookies: {
|
|
1578
1882
|
value: string;
|
|
@@ -1585,15 +1889,25 @@ export declare const useApiClientModal: () => {
|
|
|
1585
1889
|
required?: boolean | undefined;
|
|
1586
1890
|
description?: string | undefined;
|
|
1587
1891
|
enum?: string[] | undefined;
|
|
1588
|
-
file?: any;
|
|
1589
|
-
refUid?: string | undefined;
|
|
1590
|
-
format?: string | undefined;
|
|
1591
1892
|
nullable?: boolean | undefined;
|
|
1893
|
+
format?: string | undefined;
|
|
1894
|
+
file?: {
|
|
1895
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1896
|
+
type: string;
|
|
1897
|
+
name: string;
|
|
1898
|
+
size: number;
|
|
1899
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1900
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1901
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1902
|
+
lastModified: number;
|
|
1903
|
+
webkitRelativePath: string;
|
|
1904
|
+
} | undefined;
|
|
1905
|
+
refUid?: string | undefined;
|
|
1592
1906
|
}[];
|
|
1593
1907
|
};
|
|
1594
1908
|
auth: Record<string, any>;
|
|
1595
1909
|
}) => void;
|
|
1596
|
-
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `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}.
|
|
1910
|
+
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `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}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `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}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `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}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `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}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `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}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1597
1911
|
uid: string;
|
|
1598
1912
|
name: string;
|
|
1599
1913
|
url: string;
|
|
@@ -1601,7 +1915,7 @@ export declare const useApiClientModal: () => {
|
|
|
1601
1915
|
body: {
|
|
1602
1916
|
raw: {
|
|
1603
1917
|
value: string;
|
|
1604
|
-
encoding: "
|
|
1918
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1605
1919
|
};
|
|
1606
1920
|
formData: {
|
|
1607
1921
|
value: {
|
|
@@ -1615,15 +1929,35 @@ export declare const useApiClientModal: () => {
|
|
|
1615
1929
|
required?: boolean | undefined;
|
|
1616
1930
|
description?: string | undefined;
|
|
1617
1931
|
enum?: string[] | undefined;
|
|
1618
|
-
file?: any;
|
|
1619
|
-
refUid?: string | undefined;
|
|
1620
|
-
format?: string | undefined;
|
|
1621
1932
|
nullable?: boolean | undefined;
|
|
1933
|
+
format?: string | undefined;
|
|
1934
|
+
file?: {
|
|
1935
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1936
|
+
type: string;
|
|
1937
|
+
name: string;
|
|
1938
|
+
size: number;
|
|
1939
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1940
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1941
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1942
|
+
lastModified: number;
|
|
1943
|
+
webkitRelativePath: string;
|
|
1944
|
+
} | undefined;
|
|
1945
|
+
refUid?: string | undefined;
|
|
1622
1946
|
}[];
|
|
1623
1947
|
encoding: "form-data" | "urlencoded";
|
|
1624
1948
|
};
|
|
1625
1949
|
activeBody: "raw" | "formData" | "binary";
|
|
1626
|
-
binary?:
|
|
1950
|
+
binary?: {
|
|
1951
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1952
|
+
type: string;
|
|
1953
|
+
name: string;
|
|
1954
|
+
size: number;
|
|
1955
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1956
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1957
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1958
|
+
lastModified: number;
|
|
1959
|
+
webkitRelativePath: string;
|
|
1960
|
+
} | undefined;
|
|
1627
1961
|
};
|
|
1628
1962
|
parameters: {
|
|
1629
1963
|
path: {
|
|
@@ -1637,10 +1971,20 @@ export declare const useApiClientModal: () => {
|
|
|
1637
1971
|
required?: boolean | undefined;
|
|
1638
1972
|
description?: string | undefined;
|
|
1639
1973
|
enum?: string[] | undefined;
|
|
1640
|
-
file?: any;
|
|
1641
|
-
refUid?: string | undefined;
|
|
1642
|
-
format?: string | undefined;
|
|
1643
1974
|
nullable?: boolean | undefined;
|
|
1975
|
+
format?: string | undefined;
|
|
1976
|
+
file?: {
|
|
1977
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1978
|
+
type: string;
|
|
1979
|
+
name: string;
|
|
1980
|
+
size: number;
|
|
1981
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1982
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1983
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1984
|
+
lastModified: number;
|
|
1985
|
+
webkitRelativePath: string;
|
|
1986
|
+
} | undefined;
|
|
1987
|
+
refUid?: string | undefined;
|
|
1644
1988
|
}[];
|
|
1645
1989
|
query: {
|
|
1646
1990
|
value: string;
|
|
@@ -1653,10 +1997,20 @@ export declare const useApiClientModal: () => {
|
|
|
1653
1997
|
required?: boolean | undefined;
|
|
1654
1998
|
description?: string | undefined;
|
|
1655
1999
|
enum?: string[] | undefined;
|
|
1656
|
-
file?: any;
|
|
1657
|
-
refUid?: string | undefined;
|
|
1658
|
-
format?: string | undefined;
|
|
1659
2000
|
nullable?: boolean | undefined;
|
|
2001
|
+
format?: string | undefined;
|
|
2002
|
+
file?: {
|
|
2003
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2004
|
+
type: string;
|
|
2005
|
+
name: string;
|
|
2006
|
+
size: number;
|
|
2007
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2008
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2009
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2010
|
+
lastModified: number;
|
|
2011
|
+
webkitRelativePath: string;
|
|
2012
|
+
} | undefined;
|
|
2013
|
+
refUid?: string | undefined;
|
|
1660
2014
|
}[];
|
|
1661
2015
|
headers: {
|
|
1662
2016
|
value: string;
|
|
@@ -1669,10 +2023,20 @@ export declare const useApiClientModal: () => {
|
|
|
1669
2023
|
required?: boolean | undefined;
|
|
1670
2024
|
description?: string | undefined;
|
|
1671
2025
|
enum?: string[] | undefined;
|
|
1672
|
-
file?: any;
|
|
1673
|
-
refUid?: string | undefined;
|
|
1674
|
-
format?: string | undefined;
|
|
1675
2026
|
nullable?: boolean | undefined;
|
|
2027
|
+
format?: string | undefined;
|
|
2028
|
+
file?: {
|
|
2029
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2030
|
+
type: string;
|
|
2031
|
+
name: string;
|
|
2032
|
+
size: number;
|
|
2033
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2034
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2035
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2036
|
+
lastModified: number;
|
|
2037
|
+
webkitRelativePath: string;
|
|
2038
|
+
} | undefined;
|
|
2039
|
+
refUid?: string | undefined;
|
|
1676
2040
|
}[];
|
|
1677
2041
|
cookies: {
|
|
1678
2042
|
value: string;
|
|
@@ -1685,10 +2049,20 @@ export declare const useApiClientModal: () => {
|
|
|
1685
2049
|
required?: boolean | undefined;
|
|
1686
2050
|
description?: string | undefined;
|
|
1687
2051
|
enum?: string[] | undefined;
|
|
1688
|
-
file?: any;
|
|
1689
|
-
refUid?: string | undefined;
|
|
1690
|
-
format?: string | undefined;
|
|
1691
2052
|
nullable?: boolean | undefined;
|
|
2053
|
+
format?: string | undefined;
|
|
2054
|
+
file?: {
|
|
2055
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2056
|
+
type: string;
|
|
2057
|
+
name: string;
|
|
2058
|
+
size: number;
|
|
2059
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2060
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2061
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2062
|
+
lastModified: number;
|
|
2063
|
+
webkitRelativePath: string;
|
|
2064
|
+
} | undefined;
|
|
2065
|
+
refUid?: string | undefined;
|
|
1692
2066
|
}[];
|
|
1693
2067
|
};
|
|
1694
2068
|
auth: Record<string, any>;
|
|
@@ -1700,7 +2074,7 @@ export declare const useApiClientModal: () => {
|
|
|
1700
2074
|
body: {
|
|
1701
2075
|
raw: {
|
|
1702
2076
|
value: string;
|
|
1703
|
-
encoding: "
|
|
2077
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1704
2078
|
};
|
|
1705
2079
|
formData: {
|
|
1706
2080
|
value: {
|
|
@@ -1714,15 +2088,35 @@ export declare const useApiClientModal: () => {
|
|
|
1714
2088
|
required?: boolean | undefined;
|
|
1715
2089
|
description?: string | undefined;
|
|
1716
2090
|
enum?: string[] | undefined;
|
|
1717
|
-
file?: any;
|
|
1718
|
-
refUid?: string | undefined;
|
|
1719
|
-
format?: string | undefined;
|
|
1720
2091
|
nullable?: boolean | undefined;
|
|
2092
|
+
format?: string | undefined;
|
|
2093
|
+
file?: {
|
|
2094
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2095
|
+
type: string;
|
|
2096
|
+
name: string;
|
|
2097
|
+
size: number;
|
|
2098
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2099
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2100
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2101
|
+
lastModified: number;
|
|
2102
|
+
webkitRelativePath: string;
|
|
2103
|
+
} | undefined;
|
|
2104
|
+
refUid?: string | undefined;
|
|
1721
2105
|
}[];
|
|
1722
2106
|
encoding: "form-data" | "urlencoded";
|
|
1723
2107
|
};
|
|
1724
2108
|
activeBody: "raw" | "formData" | "binary";
|
|
1725
|
-
binary?:
|
|
2109
|
+
binary?: {
|
|
2110
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2111
|
+
type: string;
|
|
2112
|
+
name: string;
|
|
2113
|
+
size: number;
|
|
2114
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2115
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2116
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2117
|
+
lastModified: number;
|
|
2118
|
+
webkitRelativePath: string;
|
|
2119
|
+
} | undefined;
|
|
1726
2120
|
};
|
|
1727
2121
|
parameters: {
|
|
1728
2122
|
path: {
|
|
@@ -1736,10 +2130,20 @@ export declare const useApiClientModal: () => {
|
|
|
1736
2130
|
required?: boolean | undefined;
|
|
1737
2131
|
description?: string | undefined;
|
|
1738
2132
|
enum?: string[] | undefined;
|
|
1739
|
-
file?: any;
|
|
1740
|
-
refUid?: string | undefined;
|
|
1741
|
-
format?: string | undefined;
|
|
1742
2133
|
nullable?: boolean | undefined;
|
|
2134
|
+
format?: string | undefined;
|
|
2135
|
+
file?: {
|
|
2136
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2137
|
+
type: string;
|
|
2138
|
+
name: string;
|
|
2139
|
+
size: number;
|
|
2140
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2141
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2142
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2143
|
+
lastModified: number;
|
|
2144
|
+
webkitRelativePath: string;
|
|
2145
|
+
} | undefined;
|
|
2146
|
+
refUid?: string | undefined;
|
|
1743
2147
|
}[];
|
|
1744
2148
|
query: {
|
|
1745
2149
|
value: string;
|
|
@@ -1752,10 +2156,20 @@ export declare const useApiClientModal: () => {
|
|
|
1752
2156
|
required?: boolean | undefined;
|
|
1753
2157
|
description?: string | undefined;
|
|
1754
2158
|
enum?: string[] | undefined;
|
|
1755
|
-
file?: any;
|
|
1756
|
-
refUid?: string | undefined;
|
|
1757
|
-
format?: string | undefined;
|
|
1758
2159
|
nullable?: boolean | undefined;
|
|
2160
|
+
format?: string | undefined;
|
|
2161
|
+
file?: {
|
|
2162
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2163
|
+
type: string;
|
|
2164
|
+
name: string;
|
|
2165
|
+
size: number;
|
|
2166
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2167
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2168
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2169
|
+
lastModified: number;
|
|
2170
|
+
webkitRelativePath: string;
|
|
2171
|
+
} | undefined;
|
|
2172
|
+
refUid?: string | undefined;
|
|
1759
2173
|
}[];
|
|
1760
2174
|
headers: {
|
|
1761
2175
|
value: string;
|
|
@@ -1768,10 +2182,20 @@ export declare const useApiClientModal: () => {
|
|
|
1768
2182
|
required?: boolean | undefined;
|
|
1769
2183
|
description?: string | undefined;
|
|
1770
2184
|
enum?: string[] | undefined;
|
|
1771
|
-
file?: any;
|
|
1772
|
-
refUid?: string | undefined;
|
|
1773
|
-
format?: string | undefined;
|
|
1774
2185
|
nullable?: boolean | undefined;
|
|
2186
|
+
format?: string | undefined;
|
|
2187
|
+
file?: {
|
|
2188
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2189
|
+
type: string;
|
|
2190
|
+
name: string;
|
|
2191
|
+
size: number;
|
|
2192
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2193
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2194
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2195
|
+
lastModified: number;
|
|
2196
|
+
webkitRelativePath: string;
|
|
2197
|
+
} | undefined;
|
|
2198
|
+
refUid?: string | undefined;
|
|
1775
2199
|
}[];
|
|
1776
2200
|
cookies: {
|
|
1777
2201
|
value: string;
|
|
@@ -1784,10 +2208,20 @@ export declare const useApiClientModal: () => {
|
|
|
1784
2208
|
required?: boolean | undefined;
|
|
1785
2209
|
description?: string | undefined;
|
|
1786
2210
|
enum?: string[] | undefined;
|
|
1787
|
-
file?: any;
|
|
1788
|
-
refUid?: string | undefined;
|
|
1789
|
-
format?: string | undefined;
|
|
1790
2211
|
nullable?: boolean | undefined;
|
|
2212
|
+
format?: string | undefined;
|
|
2213
|
+
file?: {
|
|
2214
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2215
|
+
type: string;
|
|
2216
|
+
name: string;
|
|
2217
|
+
size: number;
|
|
2218
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2219
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2220
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2221
|
+
lastModified: number;
|
|
2222
|
+
webkitRelativePath: string;
|
|
2223
|
+
} | undefined;
|
|
2224
|
+
refUid?: string | undefined;
|
|
1791
2225
|
}[];
|
|
1792
2226
|
};
|
|
1793
2227
|
auth: Record<string, any>;
|
|
@@ -1799,7 +2233,7 @@ export declare const useApiClientModal: () => {
|
|
|
1799
2233
|
body: {
|
|
1800
2234
|
raw: {
|
|
1801
2235
|
value: string;
|
|
1802
|
-
encoding: "
|
|
2236
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1803
2237
|
};
|
|
1804
2238
|
formData: {
|
|
1805
2239
|
value: {
|
|
@@ -1813,15 +2247,35 @@ export declare const useApiClientModal: () => {
|
|
|
1813
2247
|
required?: boolean | undefined;
|
|
1814
2248
|
description?: string | undefined;
|
|
1815
2249
|
enum?: string[] | undefined;
|
|
1816
|
-
file?: any;
|
|
1817
|
-
refUid?: string | undefined;
|
|
1818
|
-
format?: string | undefined;
|
|
1819
2250
|
nullable?: boolean | undefined;
|
|
2251
|
+
format?: string | undefined;
|
|
2252
|
+
file?: {
|
|
2253
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2254
|
+
type: string;
|
|
2255
|
+
name: string;
|
|
2256
|
+
size: number;
|
|
2257
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2258
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2259
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2260
|
+
lastModified: number;
|
|
2261
|
+
webkitRelativePath: string;
|
|
2262
|
+
} | undefined;
|
|
2263
|
+
refUid?: string | undefined;
|
|
1820
2264
|
}[];
|
|
1821
2265
|
encoding: "form-data" | "urlencoded";
|
|
1822
2266
|
};
|
|
1823
2267
|
activeBody: "raw" | "formData" | "binary";
|
|
1824
|
-
binary?:
|
|
2268
|
+
binary?: {
|
|
2269
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2270
|
+
type: string;
|
|
2271
|
+
name: string;
|
|
2272
|
+
size: number;
|
|
2273
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2274
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2275
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2276
|
+
lastModified: number;
|
|
2277
|
+
webkitRelativePath: string;
|
|
2278
|
+
} | undefined;
|
|
1825
2279
|
};
|
|
1826
2280
|
parameters: {
|
|
1827
2281
|
path: {
|
|
@@ -1835,10 +2289,20 @@ export declare const useApiClientModal: () => {
|
|
|
1835
2289
|
required?: boolean | undefined;
|
|
1836
2290
|
description?: string | undefined;
|
|
1837
2291
|
enum?: string[] | undefined;
|
|
1838
|
-
file?: any;
|
|
1839
|
-
refUid?: string | undefined;
|
|
1840
|
-
format?: string | undefined;
|
|
1841
2292
|
nullable?: boolean | undefined;
|
|
2293
|
+
format?: string | undefined;
|
|
2294
|
+
file?: {
|
|
2295
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2296
|
+
type: string;
|
|
2297
|
+
name: string;
|
|
2298
|
+
size: number;
|
|
2299
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2300
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2301
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2302
|
+
lastModified: number;
|
|
2303
|
+
webkitRelativePath: string;
|
|
2304
|
+
} | undefined;
|
|
2305
|
+
refUid?: string | undefined;
|
|
1842
2306
|
}[];
|
|
1843
2307
|
query: {
|
|
1844
2308
|
value: string;
|
|
@@ -1851,10 +2315,20 @@ export declare const useApiClientModal: () => {
|
|
|
1851
2315
|
required?: boolean | undefined;
|
|
1852
2316
|
description?: string | undefined;
|
|
1853
2317
|
enum?: string[] | undefined;
|
|
1854
|
-
file?: any;
|
|
1855
|
-
refUid?: string | undefined;
|
|
1856
|
-
format?: string | undefined;
|
|
1857
2318
|
nullable?: boolean | undefined;
|
|
2319
|
+
format?: string | undefined;
|
|
2320
|
+
file?: {
|
|
2321
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2322
|
+
type: string;
|
|
2323
|
+
name: string;
|
|
2324
|
+
size: number;
|
|
2325
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2326
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2327
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2328
|
+
lastModified: number;
|
|
2329
|
+
webkitRelativePath: string;
|
|
2330
|
+
} | undefined;
|
|
2331
|
+
refUid?: string | undefined;
|
|
1858
2332
|
}[];
|
|
1859
2333
|
headers: {
|
|
1860
2334
|
value: string;
|
|
@@ -1867,10 +2341,20 @@ export declare const useApiClientModal: () => {
|
|
|
1867
2341
|
required?: boolean | undefined;
|
|
1868
2342
|
description?: string | undefined;
|
|
1869
2343
|
enum?: string[] | undefined;
|
|
1870
|
-
file?: any;
|
|
1871
|
-
refUid?: string | undefined;
|
|
1872
|
-
format?: string | undefined;
|
|
1873
2344
|
nullable?: boolean | undefined;
|
|
2345
|
+
format?: string | undefined;
|
|
2346
|
+
file?: {
|
|
2347
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2348
|
+
type: string;
|
|
2349
|
+
name: string;
|
|
2350
|
+
size: number;
|
|
2351
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2352
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2353
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2354
|
+
lastModified: number;
|
|
2355
|
+
webkitRelativePath: string;
|
|
2356
|
+
} | undefined;
|
|
2357
|
+
refUid?: string | undefined;
|
|
1874
2358
|
}[];
|
|
1875
2359
|
cookies: {
|
|
1876
2360
|
value: string;
|
|
@@ -1883,15 +2367,25 @@ export declare const useApiClientModal: () => {
|
|
|
1883
2367
|
required?: boolean | undefined;
|
|
1884
2368
|
description?: string | undefined;
|
|
1885
2369
|
enum?: string[] | undefined;
|
|
1886
|
-
file?: any;
|
|
1887
|
-
refUid?: string | undefined;
|
|
1888
|
-
format?: string | undefined;
|
|
1889
2370
|
nullable?: boolean | undefined;
|
|
2371
|
+
format?: string | undefined;
|
|
2372
|
+
file?: {
|
|
2373
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2374
|
+
type: string;
|
|
2375
|
+
name: string;
|
|
2376
|
+
size: number;
|
|
2377
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2378
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2379
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2380
|
+
lastModified: number;
|
|
2381
|
+
webkitRelativePath: string;
|
|
2382
|
+
} | undefined;
|
|
2383
|
+
refUid?: string | undefined;
|
|
1890
2384
|
}[];
|
|
1891
2385
|
};
|
|
1892
2386
|
auth: Record<string, any>;
|
|
1893
2387
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1894
|
-
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `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}.
|
|
2388
|
+
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `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}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `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}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `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}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `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}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `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}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1895
2389
|
uid: string;
|
|
1896
2390
|
name: string;
|
|
1897
2391
|
url: string;
|
|
@@ -1899,7 +2393,7 @@ export declare const useApiClientModal: () => {
|
|
|
1899
2393
|
body: {
|
|
1900
2394
|
raw: {
|
|
1901
2395
|
value: string;
|
|
1902
|
-
encoding: "
|
|
2396
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1903
2397
|
};
|
|
1904
2398
|
formData: {
|
|
1905
2399
|
value: {
|
|
@@ -1913,15 +2407,35 @@ export declare const useApiClientModal: () => {
|
|
|
1913
2407
|
required?: boolean | undefined;
|
|
1914
2408
|
description?: string | undefined;
|
|
1915
2409
|
enum?: string[] | undefined;
|
|
1916
|
-
file?: any;
|
|
1917
|
-
refUid?: string | undefined;
|
|
1918
|
-
format?: string | undefined;
|
|
1919
2410
|
nullable?: boolean | undefined;
|
|
2411
|
+
format?: string | undefined;
|
|
2412
|
+
file?: {
|
|
2413
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2414
|
+
type: string;
|
|
2415
|
+
name: string;
|
|
2416
|
+
size: number;
|
|
2417
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2418
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2419
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2420
|
+
lastModified: number;
|
|
2421
|
+
webkitRelativePath: string;
|
|
2422
|
+
} | undefined;
|
|
2423
|
+
refUid?: string | undefined;
|
|
1920
2424
|
}[];
|
|
1921
2425
|
encoding: "form-data" | "urlencoded";
|
|
1922
2426
|
};
|
|
1923
2427
|
activeBody: "raw" | "formData" | "binary";
|
|
1924
|
-
binary?:
|
|
2428
|
+
binary?: {
|
|
2429
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2430
|
+
type: string;
|
|
2431
|
+
name: string;
|
|
2432
|
+
size: number;
|
|
2433
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2434
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2435
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2436
|
+
lastModified: number;
|
|
2437
|
+
webkitRelativePath: string;
|
|
2438
|
+
} | undefined;
|
|
1925
2439
|
};
|
|
1926
2440
|
parameters: {
|
|
1927
2441
|
path: {
|
|
@@ -1935,10 +2449,20 @@ export declare const useApiClientModal: () => {
|
|
|
1935
2449
|
required?: boolean | undefined;
|
|
1936
2450
|
description?: string | undefined;
|
|
1937
2451
|
enum?: string[] | undefined;
|
|
1938
|
-
file?: any;
|
|
1939
|
-
refUid?: string | undefined;
|
|
1940
|
-
format?: string | undefined;
|
|
1941
2452
|
nullable?: boolean | undefined;
|
|
2453
|
+
format?: string | undefined;
|
|
2454
|
+
file?: {
|
|
2455
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2456
|
+
type: string;
|
|
2457
|
+
name: string;
|
|
2458
|
+
size: number;
|
|
2459
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2460
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2461
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2462
|
+
lastModified: number;
|
|
2463
|
+
webkitRelativePath: string;
|
|
2464
|
+
} | undefined;
|
|
2465
|
+
refUid?: string | undefined;
|
|
1942
2466
|
}[];
|
|
1943
2467
|
query: {
|
|
1944
2468
|
value: string;
|
|
@@ -1951,10 +2475,20 @@ export declare const useApiClientModal: () => {
|
|
|
1951
2475
|
required?: boolean | undefined;
|
|
1952
2476
|
description?: string | undefined;
|
|
1953
2477
|
enum?: string[] | undefined;
|
|
1954
|
-
file?: any;
|
|
1955
|
-
refUid?: string | undefined;
|
|
1956
|
-
format?: string | undefined;
|
|
1957
2478
|
nullable?: boolean | undefined;
|
|
2479
|
+
format?: string | undefined;
|
|
2480
|
+
file?: {
|
|
2481
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2482
|
+
type: string;
|
|
2483
|
+
name: string;
|
|
2484
|
+
size: number;
|
|
2485
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2486
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2487
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2488
|
+
lastModified: number;
|
|
2489
|
+
webkitRelativePath: string;
|
|
2490
|
+
} | undefined;
|
|
2491
|
+
refUid?: string | undefined;
|
|
1958
2492
|
}[];
|
|
1959
2493
|
headers: {
|
|
1960
2494
|
value: string;
|
|
@@ -1967,10 +2501,20 @@ export declare const useApiClientModal: () => {
|
|
|
1967
2501
|
required?: boolean | undefined;
|
|
1968
2502
|
description?: string | undefined;
|
|
1969
2503
|
enum?: string[] | undefined;
|
|
1970
|
-
file?: any;
|
|
1971
|
-
refUid?: string | undefined;
|
|
1972
|
-
format?: string | undefined;
|
|
1973
2504
|
nullable?: boolean | undefined;
|
|
2505
|
+
format?: string | undefined;
|
|
2506
|
+
file?: {
|
|
2507
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2508
|
+
type: string;
|
|
2509
|
+
name: string;
|
|
2510
|
+
size: number;
|
|
2511
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2512
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2513
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2514
|
+
lastModified: number;
|
|
2515
|
+
webkitRelativePath: string;
|
|
2516
|
+
} | undefined;
|
|
2517
|
+
refUid?: string | undefined;
|
|
1974
2518
|
}[];
|
|
1975
2519
|
cookies: {
|
|
1976
2520
|
value: string;
|
|
@@ -1983,10 +2527,20 @@ export declare const useApiClientModal: () => {
|
|
|
1983
2527
|
required?: boolean | undefined;
|
|
1984
2528
|
description?: string | undefined;
|
|
1985
2529
|
enum?: string[] | undefined;
|
|
1986
|
-
file?: any;
|
|
1987
|
-
refUid?: string | undefined;
|
|
1988
|
-
format?: string | undefined;
|
|
1989
2530
|
nullable?: boolean | undefined;
|
|
2531
|
+
format?: string | undefined;
|
|
2532
|
+
file?: {
|
|
2533
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2534
|
+
type: string;
|
|
2535
|
+
name: string;
|
|
2536
|
+
size: number;
|
|
2537
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2538
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2539
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2540
|
+
lastModified: number;
|
|
2541
|
+
webkitRelativePath: string;
|
|
2542
|
+
} | undefined;
|
|
2543
|
+
refUid?: string | undefined;
|
|
1990
2544
|
}[];
|
|
1991
2545
|
};
|
|
1992
2546
|
auth: Record<string, any>;
|
|
@@ -1998,7 +2552,7 @@ export declare const useApiClientModal: () => {
|
|
|
1998
2552
|
body: {
|
|
1999
2553
|
raw: {
|
|
2000
2554
|
value: string;
|
|
2001
|
-
encoding: "
|
|
2555
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2002
2556
|
};
|
|
2003
2557
|
formData: {
|
|
2004
2558
|
value: {
|
|
@@ -2012,15 +2566,35 @@ export declare const useApiClientModal: () => {
|
|
|
2012
2566
|
required?: boolean | undefined;
|
|
2013
2567
|
description?: string | undefined;
|
|
2014
2568
|
enum?: string[] | undefined;
|
|
2015
|
-
file?: any;
|
|
2016
|
-
refUid?: string | undefined;
|
|
2017
|
-
format?: string | undefined;
|
|
2018
2569
|
nullable?: boolean | undefined;
|
|
2570
|
+
format?: string | undefined;
|
|
2571
|
+
file?: {
|
|
2572
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2573
|
+
type: string;
|
|
2574
|
+
name: string;
|
|
2575
|
+
size: number;
|
|
2576
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2577
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2578
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2579
|
+
lastModified: number;
|
|
2580
|
+
webkitRelativePath: string;
|
|
2581
|
+
} | undefined;
|
|
2582
|
+
refUid?: string | undefined;
|
|
2019
2583
|
}[];
|
|
2020
2584
|
encoding: "form-data" | "urlencoded";
|
|
2021
2585
|
};
|
|
2022
2586
|
activeBody: "raw" | "formData" | "binary";
|
|
2023
|
-
binary?:
|
|
2587
|
+
binary?: {
|
|
2588
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2589
|
+
type: string;
|
|
2590
|
+
name: string;
|
|
2591
|
+
size: number;
|
|
2592
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2593
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2594
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2595
|
+
lastModified: number;
|
|
2596
|
+
webkitRelativePath: string;
|
|
2597
|
+
} | undefined;
|
|
2024
2598
|
};
|
|
2025
2599
|
parameters: {
|
|
2026
2600
|
path: {
|
|
@@ -2034,10 +2608,20 @@ export declare const useApiClientModal: () => {
|
|
|
2034
2608
|
required?: boolean | undefined;
|
|
2035
2609
|
description?: string | undefined;
|
|
2036
2610
|
enum?: string[] | undefined;
|
|
2037
|
-
file?: any;
|
|
2038
|
-
refUid?: string | undefined;
|
|
2039
|
-
format?: string | undefined;
|
|
2040
2611
|
nullable?: boolean | undefined;
|
|
2612
|
+
format?: string | undefined;
|
|
2613
|
+
file?: {
|
|
2614
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2615
|
+
type: string;
|
|
2616
|
+
name: string;
|
|
2617
|
+
size: number;
|
|
2618
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2619
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2620
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2621
|
+
lastModified: number;
|
|
2622
|
+
webkitRelativePath: string;
|
|
2623
|
+
} | undefined;
|
|
2624
|
+
refUid?: string | undefined;
|
|
2041
2625
|
}[];
|
|
2042
2626
|
query: {
|
|
2043
2627
|
value: string;
|
|
@@ -2050,10 +2634,20 @@ export declare const useApiClientModal: () => {
|
|
|
2050
2634
|
required?: boolean | undefined;
|
|
2051
2635
|
description?: string | undefined;
|
|
2052
2636
|
enum?: string[] | undefined;
|
|
2053
|
-
file?: any;
|
|
2054
|
-
refUid?: string | undefined;
|
|
2055
|
-
format?: string | undefined;
|
|
2056
2637
|
nullable?: boolean | undefined;
|
|
2638
|
+
format?: string | undefined;
|
|
2639
|
+
file?: {
|
|
2640
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2641
|
+
type: string;
|
|
2642
|
+
name: string;
|
|
2643
|
+
size: number;
|
|
2644
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2645
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2646
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2647
|
+
lastModified: number;
|
|
2648
|
+
webkitRelativePath: string;
|
|
2649
|
+
} | undefined;
|
|
2650
|
+
refUid?: string | undefined;
|
|
2057
2651
|
}[];
|
|
2058
2652
|
headers: {
|
|
2059
2653
|
value: string;
|
|
@@ -2066,10 +2660,20 @@ export declare const useApiClientModal: () => {
|
|
|
2066
2660
|
required?: boolean | undefined;
|
|
2067
2661
|
description?: string | undefined;
|
|
2068
2662
|
enum?: string[] | undefined;
|
|
2069
|
-
file?: any;
|
|
2070
|
-
refUid?: string | undefined;
|
|
2071
|
-
format?: string | undefined;
|
|
2072
2663
|
nullable?: boolean | undefined;
|
|
2664
|
+
format?: string | undefined;
|
|
2665
|
+
file?: {
|
|
2666
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2667
|
+
type: string;
|
|
2668
|
+
name: string;
|
|
2669
|
+
size: number;
|
|
2670
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2671
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2672
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2673
|
+
lastModified: number;
|
|
2674
|
+
webkitRelativePath: string;
|
|
2675
|
+
} | undefined;
|
|
2676
|
+
refUid?: string | undefined;
|
|
2073
2677
|
}[];
|
|
2074
2678
|
cookies: {
|
|
2075
2679
|
value: string;
|
|
@@ -2082,10 +2686,20 @@ export declare const useApiClientModal: () => {
|
|
|
2082
2686
|
required?: boolean | undefined;
|
|
2083
2687
|
description?: string | undefined;
|
|
2084
2688
|
enum?: string[] | undefined;
|
|
2085
|
-
file?: any;
|
|
2086
|
-
refUid?: string | undefined;
|
|
2087
|
-
format?: string | undefined;
|
|
2088
2689
|
nullable?: boolean | undefined;
|
|
2690
|
+
format?: string | undefined;
|
|
2691
|
+
file?: {
|
|
2692
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2693
|
+
type: string;
|
|
2694
|
+
name: string;
|
|
2695
|
+
size: number;
|
|
2696
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2697
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2698
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2699
|
+
lastModified: number;
|
|
2700
|
+
webkitRelativePath: string;
|
|
2701
|
+
} | undefined;
|
|
2702
|
+
refUid?: string | undefined;
|
|
2089
2703
|
}[];
|
|
2090
2704
|
};
|
|
2091
2705
|
auth: Record<string, any>;
|
|
@@ -2097,7 +2711,7 @@ export declare const useApiClientModal: () => {
|
|
|
2097
2711
|
body: {
|
|
2098
2712
|
raw: {
|
|
2099
2713
|
value: string;
|
|
2100
|
-
encoding: "
|
|
2714
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2101
2715
|
};
|
|
2102
2716
|
formData: {
|
|
2103
2717
|
value: {
|
|
@@ -2111,15 +2725,35 @@ export declare const useApiClientModal: () => {
|
|
|
2111
2725
|
required?: boolean | undefined;
|
|
2112
2726
|
description?: string | undefined;
|
|
2113
2727
|
enum?: string[] | undefined;
|
|
2114
|
-
file?: any;
|
|
2115
|
-
refUid?: string | undefined;
|
|
2116
|
-
format?: string | undefined;
|
|
2117
2728
|
nullable?: boolean | undefined;
|
|
2729
|
+
format?: string | undefined;
|
|
2730
|
+
file?: {
|
|
2731
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2732
|
+
type: string;
|
|
2733
|
+
name: string;
|
|
2734
|
+
size: number;
|
|
2735
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2736
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2737
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2738
|
+
lastModified: number;
|
|
2739
|
+
webkitRelativePath: string;
|
|
2740
|
+
} | undefined;
|
|
2741
|
+
refUid?: string | undefined;
|
|
2118
2742
|
}[];
|
|
2119
2743
|
encoding: "form-data" | "urlencoded";
|
|
2120
2744
|
};
|
|
2121
2745
|
activeBody: "raw" | "formData" | "binary";
|
|
2122
|
-
binary?:
|
|
2746
|
+
binary?: {
|
|
2747
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2748
|
+
type: string;
|
|
2749
|
+
name: string;
|
|
2750
|
+
size: number;
|
|
2751
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2752
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2753
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2754
|
+
lastModified: number;
|
|
2755
|
+
webkitRelativePath: string;
|
|
2756
|
+
} | undefined;
|
|
2123
2757
|
};
|
|
2124
2758
|
parameters: {
|
|
2125
2759
|
path: {
|
|
@@ -2133,10 +2767,20 @@ export declare const useApiClientModal: () => {
|
|
|
2133
2767
|
required?: boolean | undefined;
|
|
2134
2768
|
description?: string | undefined;
|
|
2135
2769
|
enum?: string[] | undefined;
|
|
2136
|
-
file?: any;
|
|
2137
|
-
refUid?: string | undefined;
|
|
2138
|
-
format?: string | undefined;
|
|
2139
2770
|
nullable?: boolean | undefined;
|
|
2771
|
+
format?: string | undefined;
|
|
2772
|
+
file?: {
|
|
2773
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2774
|
+
type: string;
|
|
2775
|
+
name: string;
|
|
2776
|
+
size: number;
|
|
2777
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2778
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2779
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2780
|
+
lastModified: number;
|
|
2781
|
+
webkitRelativePath: string;
|
|
2782
|
+
} | undefined;
|
|
2783
|
+
refUid?: string | undefined;
|
|
2140
2784
|
}[];
|
|
2141
2785
|
query: {
|
|
2142
2786
|
value: string;
|
|
@@ -2149,10 +2793,20 @@ export declare const useApiClientModal: () => {
|
|
|
2149
2793
|
required?: boolean | undefined;
|
|
2150
2794
|
description?: string | undefined;
|
|
2151
2795
|
enum?: string[] | undefined;
|
|
2152
|
-
file?: any;
|
|
2153
|
-
refUid?: string | undefined;
|
|
2154
|
-
format?: string | undefined;
|
|
2155
2796
|
nullable?: boolean | undefined;
|
|
2797
|
+
format?: string | undefined;
|
|
2798
|
+
file?: {
|
|
2799
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2800
|
+
type: string;
|
|
2801
|
+
name: string;
|
|
2802
|
+
size: number;
|
|
2803
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2804
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2805
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2806
|
+
lastModified: number;
|
|
2807
|
+
webkitRelativePath: string;
|
|
2808
|
+
} | undefined;
|
|
2809
|
+
refUid?: string | undefined;
|
|
2156
2810
|
}[];
|
|
2157
2811
|
headers: {
|
|
2158
2812
|
value: string;
|
|
@@ -2165,10 +2819,20 @@ export declare const useApiClientModal: () => {
|
|
|
2165
2819
|
required?: boolean | undefined;
|
|
2166
2820
|
description?: string | undefined;
|
|
2167
2821
|
enum?: string[] | undefined;
|
|
2168
|
-
file?: any;
|
|
2169
|
-
refUid?: string | undefined;
|
|
2170
|
-
format?: string | undefined;
|
|
2171
2822
|
nullable?: boolean | undefined;
|
|
2823
|
+
format?: string | undefined;
|
|
2824
|
+
file?: {
|
|
2825
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2826
|
+
type: string;
|
|
2827
|
+
name: string;
|
|
2828
|
+
size: number;
|
|
2829
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2830
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2831
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2832
|
+
lastModified: number;
|
|
2833
|
+
webkitRelativePath: string;
|
|
2834
|
+
} | undefined;
|
|
2835
|
+
refUid?: string | undefined;
|
|
2172
2836
|
}[];
|
|
2173
2837
|
cookies: {
|
|
2174
2838
|
value: string;
|
|
@@ -2181,10 +2845,20 @@ export declare const useApiClientModal: () => {
|
|
|
2181
2845
|
required?: boolean | undefined;
|
|
2182
2846
|
description?: string | undefined;
|
|
2183
2847
|
enum?: string[] | undefined;
|
|
2184
|
-
file?: any;
|
|
2185
|
-
refUid?: string | undefined;
|
|
2186
|
-
format?: string | undefined;
|
|
2187
2848
|
nullable?: boolean | undefined;
|
|
2849
|
+
format?: string | undefined;
|
|
2850
|
+
file?: {
|
|
2851
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2852
|
+
type: string;
|
|
2853
|
+
name: string;
|
|
2854
|
+
size: number;
|
|
2855
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2856
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2857
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2858
|
+
lastModified: number;
|
|
2859
|
+
webkitRelativePath: string;
|
|
2860
|
+
} | undefined;
|
|
2861
|
+
refUid?: string | undefined;
|
|
2188
2862
|
}[];
|
|
2189
2863
|
};
|
|
2190
2864
|
auth: Record<string, any>;
|
|
@@ -2840,6 +3514,7 @@ export declare const useApiClientModal: () => {
|
|
|
2840
3514
|
isReadOnly: boolean;
|
|
2841
3515
|
collectionUids: string[];
|
|
2842
3516
|
environmentUids: string[];
|
|
3517
|
+
activeEnvironmentId: string;
|
|
2843
3518
|
cookieUids: string[];
|
|
2844
3519
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2845
3520
|
hotKeyConfig?: {
|
|
@@ -2858,6 +3533,7 @@ export declare const useApiClientModal: () => {
|
|
|
2858
3533
|
isReadOnly: boolean;
|
|
2859
3534
|
collectionUids: string[];
|
|
2860
3535
|
environmentUids: string[];
|
|
3536
|
+
activeEnvironmentId: string;
|
|
2861
3537
|
cookieUids: string[];
|
|
2862
3538
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2863
3539
|
hotKeyConfig?: {
|
|
@@ -2878,6 +3554,7 @@ export declare const useApiClientModal: () => {
|
|
|
2878
3554
|
isReadOnly: boolean;
|
|
2879
3555
|
collectionUids: string[];
|
|
2880
3556
|
environmentUids: string[];
|
|
3557
|
+
activeEnvironmentId: string;
|
|
2881
3558
|
cookieUids: string[];
|
|
2882
3559
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2883
3560
|
hotKeyConfig?: {
|
|
@@ -2889,13 +3566,14 @@ export declare const useApiClientModal: () => {
|
|
|
2889
3566
|
} | undefined;
|
|
2890
3567
|
proxyUrl?: string | undefined;
|
|
2891
3568
|
}) => void;
|
|
2892
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
3569
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2893
3570
|
uid: string;
|
|
2894
3571
|
name: string;
|
|
2895
3572
|
description: string;
|
|
2896
3573
|
isReadOnly: boolean;
|
|
2897
3574
|
collectionUids: string[];
|
|
2898
3575
|
environmentUids: string[];
|
|
3576
|
+
activeEnvironmentId: string;
|
|
2899
3577
|
cookieUids: string[];
|
|
2900
3578
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2901
3579
|
hotKeyConfig?: {
|
|
@@ -2906,13 +3584,14 @@ export declare const useApiClientModal: () => {
|
|
|
2906
3584
|
}>> | undefined;
|
|
2907
3585
|
} | undefined;
|
|
2908
3586
|
proxyUrl?: string | undefined;
|
|
2909
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path< {
|
|
3587
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path< {
|
|
2910
3588
|
uid: string;
|
|
2911
3589
|
name: string;
|
|
2912
3590
|
description: string;
|
|
2913
3591
|
isReadOnly: boolean;
|
|
2914
3592
|
collectionUids: string[];
|
|
2915
3593
|
environmentUids: string[];
|
|
3594
|
+
activeEnvironmentId: string;
|
|
2916
3595
|
cookieUids: string[];
|
|
2917
3596
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2918
3597
|
hotKeyConfig?: {
|
|
@@ -2930,6 +3609,7 @@ export declare const useApiClientModal: () => {
|
|
|
2930
3609
|
isReadOnly: boolean;
|
|
2931
3610
|
collectionUids: string[];
|
|
2932
3611
|
environmentUids: string[];
|
|
3612
|
+
activeEnvironmentId: string;
|
|
2933
3613
|
cookieUids: string[];
|
|
2934
3614
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2935
3615
|
hotKeyConfig?: {
|
|
@@ -2941,13 +3621,14 @@ export declare const useApiClientModal: () => {
|
|
|
2941
3621
|
} | undefined;
|
|
2942
3622
|
proxyUrl?: string | undefined;
|
|
2943
3623
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2944
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
3624
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}` | "hotKeyConfig.hotKeys.].event">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2945
3625
|
uid: string;
|
|
2946
3626
|
name: string;
|
|
2947
3627
|
description: string;
|
|
2948
3628
|
isReadOnly: boolean;
|
|
2949
3629
|
collectionUids: string[];
|
|
2950
3630
|
environmentUids: string[];
|
|
3631
|
+
activeEnvironmentId: string;
|
|
2951
3632
|
cookieUids: string[];
|
|
2952
3633
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2953
3634
|
hotKeyConfig?: {
|
|
@@ -2958,13 +3639,14 @@ export declare const useApiClientModal: () => {
|
|
|
2958
3639
|
}>> | undefined;
|
|
2959
3640
|
} | undefined;
|
|
2960
3641
|
proxyUrl?: string | undefined;
|
|
2961
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path< {
|
|
3642
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path< {
|
|
2962
3643
|
uid: string;
|
|
2963
3644
|
name: string;
|
|
2964
3645
|
description: string;
|
|
2965
3646
|
isReadOnly: boolean;
|
|
2966
3647
|
collectionUids: string[];
|
|
2967
3648
|
environmentUids: string[];
|
|
3649
|
+
activeEnvironmentId: string;
|
|
2968
3650
|
cookieUids: string[];
|
|
2969
3651
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2970
3652
|
hotKeyConfig?: {
|
|
@@ -2982,6 +3664,7 @@ export declare const useApiClientModal: () => {
|
|
|
2982
3664
|
isReadOnly: boolean;
|
|
2983
3665
|
collectionUids: string[];
|
|
2984
3666
|
environmentUids: string[];
|
|
3667
|
+
activeEnvironmentId: string;
|
|
2985
3668
|
cookieUids: string[];
|
|
2986
3669
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2987
3670
|
hotKeyConfig?: {
|