@scalar/api-client 2.0.60 → 2.0.63
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 +49 -0
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +16 -15
- package/dist/components/CodeInput/codeVariableWidget.d.ts.map +1 -1
- package/dist/components/CodeInput/codeVariableWidget.js +35 -30
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.d.ts +3 -0
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.d.ts.map +1 -0
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.js +114 -0
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue2.js +4 -0
- package/dist/layouts/App/create-api-client-app.d.ts +879 -195
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +1758 -390
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +879 -195
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.d.ts +1 -1
- package/dist/libs/local-storage.js +1 -1
- package/dist/libs/normalizeHeaders.d.ts +1 -2
- package/dist/libs/normalizeHeaders.d.ts.map +1 -1
- package/dist/libs/sendRequest.d.ts +4 -5
- package/dist/libs/sendRequest.d.ts.map +1 -1
- package/dist/libs/sendRequest.js +104 -86
- package/dist/store/workspace.d.ts +1754 -389
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/store/workspace.js +219 -216
- package/dist/style.css +1 -1
- package/dist/views/Environment/Environment.vue2.js +12 -12
- package/dist/views/Environment/EnvironmentVariableDropdown.vue.d.ts.map +1 -1
- package/dist/views/Environment/EnvironmentVariableDropdown.vue.js +54 -52
- package/dist/views/Request/Request.vue.d.ts.map +1 -1
- package/dist/views/Request/Request.vue.js +4 -4
- package/dist/views/Request/Request.vue2.js +91 -89
- package/dist/views/Request/RequestSection/RequestTable.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestTable.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestTable.vue2.js +1 -1
- package/dist/views/Request/RequestSidebarItem.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebarItem.vue.js +2 -2
- package/dist/views/Request/RequestSidebarItem.vue2.js +82 -80
- package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts +2 -2
- package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts.map +1 -1
- package/dist/views/Request/ResponseSection/ResponseBody.vue.js +20 -20
- package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts.map +1 -1
- package/dist/views/Request/ResponseSection/ResponseSection.vue.js +47 -42
- package/package.json +8 -8
|
@@ -86,6 +86,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
86
86
|
isReadOnly: boolean;
|
|
87
87
|
collectionUids: string[];
|
|
88
88
|
environmentUids: string[];
|
|
89
|
+
activeEnvironmentId: string;
|
|
89
90
|
cookieUids: string[];
|
|
90
91
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
91
92
|
hotKeyConfig?: {
|
|
@@ -175,7 +176,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
175
176
|
body: {
|
|
176
177
|
raw: {
|
|
177
178
|
value: string;
|
|
178
|
-
encoding: "
|
|
179
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
179
180
|
};
|
|
180
181
|
formData: {
|
|
181
182
|
value: {
|
|
@@ -189,15 +190,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
189
190
|
required?: boolean | undefined;
|
|
190
191
|
description?: string | undefined;
|
|
191
192
|
enum?: string[] | undefined;
|
|
192
|
-
file?: any;
|
|
193
|
-
refUid?: string | undefined;
|
|
194
|
-
format?: string | undefined;
|
|
195
193
|
nullable?: boolean | undefined;
|
|
194
|
+
format?: string | undefined;
|
|
195
|
+
file?: {
|
|
196
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
197
|
+
type: string;
|
|
198
|
+
name: string;
|
|
199
|
+
size: number;
|
|
200
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
201
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
202
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
203
|
+
lastModified: number;
|
|
204
|
+
webkitRelativePath: string;
|
|
205
|
+
} | undefined;
|
|
206
|
+
refUid?: string | undefined;
|
|
196
207
|
}[];
|
|
197
208
|
encoding: "form-data" | "urlencoded";
|
|
198
209
|
};
|
|
199
210
|
activeBody: "raw" | "formData" | "binary";
|
|
200
|
-
binary?:
|
|
211
|
+
binary?: {
|
|
212
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
213
|
+
type: string;
|
|
214
|
+
name: string;
|
|
215
|
+
size: number;
|
|
216
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
217
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
218
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
219
|
+
lastModified: number;
|
|
220
|
+
webkitRelativePath: string;
|
|
221
|
+
} | undefined;
|
|
201
222
|
};
|
|
202
223
|
parameters: {
|
|
203
224
|
path: {
|
|
@@ -211,10 +232,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
211
232
|
required?: boolean | undefined;
|
|
212
233
|
description?: string | undefined;
|
|
213
234
|
enum?: string[] | undefined;
|
|
214
|
-
file?: any;
|
|
215
|
-
refUid?: string | undefined;
|
|
216
|
-
format?: string | undefined;
|
|
217
235
|
nullable?: boolean | undefined;
|
|
236
|
+
format?: string | undefined;
|
|
237
|
+
file?: {
|
|
238
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
239
|
+
type: string;
|
|
240
|
+
name: string;
|
|
241
|
+
size: number;
|
|
242
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
243
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
244
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
245
|
+
lastModified: number;
|
|
246
|
+
webkitRelativePath: string;
|
|
247
|
+
} | undefined;
|
|
248
|
+
refUid?: string | undefined;
|
|
218
249
|
}[];
|
|
219
250
|
query: {
|
|
220
251
|
value: string;
|
|
@@ -227,10 +258,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
227
258
|
required?: boolean | undefined;
|
|
228
259
|
description?: string | undefined;
|
|
229
260
|
enum?: string[] | undefined;
|
|
230
|
-
file?: any;
|
|
231
|
-
refUid?: string | undefined;
|
|
232
|
-
format?: string | undefined;
|
|
233
261
|
nullable?: boolean | undefined;
|
|
262
|
+
format?: string | undefined;
|
|
263
|
+
file?: {
|
|
264
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
265
|
+
type: string;
|
|
266
|
+
name: string;
|
|
267
|
+
size: number;
|
|
268
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
269
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
270
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
271
|
+
lastModified: number;
|
|
272
|
+
webkitRelativePath: string;
|
|
273
|
+
} | undefined;
|
|
274
|
+
refUid?: string | undefined;
|
|
234
275
|
}[];
|
|
235
276
|
headers: {
|
|
236
277
|
value: string;
|
|
@@ -243,10 +284,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
243
284
|
required?: boolean | undefined;
|
|
244
285
|
description?: string | undefined;
|
|
245
286
|
enum?: string[] | undefined;
|
|
246
|
-
file?: any;
|
|
247
|
-
refUid?: string | undefined;
|
|
248
|
-
format?: string | undefined;
|
|
249
287
|
nullable?: boolean | undefined;
|
|
288
|
+
format?: string | undefined;
|
|
289
|
+
file?: {
|
|
290
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
291
|
+
type: string;
|
|
292
|
+
name: string;
|
|
293
|
+
size: number;
|
|
294
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
295
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
296
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
297
|
+
lastModified: number;
|
|
298
|
+
webkitRelativePath: string;
|
|
299
|
+
} | undefined;
|
|
300
|
+
refUid?: string | undefined;
|
|
250
301
|
}[];
|
|
251
302
|
cookies: {
|
|
252
303
|
value: string;
|
|
@@ -259,10 +310,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
259
310
|
required?: boolean | undefined;
|
|
260
311
|
description?: string | undefined;
|
|
261
312
|
enum?: string[] | undefined;
|
|
262
|
-
file?: any;
|
|
263
|
-
refUid?: string | undefined;
|
|
264
|
-
format?: string | undefined;
|
|
265
313
|
nullable?: boolean | undefined;
|
|
314
|
+
format?: string | undefined;
|
|
315
|
+
file?: {
|
|
316
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
317
|
+
type: string;
|
|
318
|
+
name: string;
|
|
319
|
+
size: number;
|
|
320
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
321
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
322
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
323
|
+
lastModified: number;
|
|
324
|
+
webkitRelativePath: string;
|
|
325
|
+
} | undefined;
|
|
326
|
+
refUid?: string | undefined;
|
|
266
327
|
}[];
|
|
267
328
|
};
|
|
268
329
|
auth: Record<string, any>;
|
|
@@ -396,7 +457,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
396
457
|
body: {
|
|
397
458
|
raw: {
|
|
398
459
|
value: string;
|
|
399
|
-
encoding: "
|
|
460
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
400
461
|
};
|
|
401
462
|
formData: {
|
|
402
463
|
value: {
|
|
@@ -410,15 +471,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
410
471
|
required?: boolean | undefined;
|
|
411
472
|
description?: string | undefined;
|
|
412
473
|
enum?: string[] | undefined;
|
|
413
|
-
file?: any;
|
|
414
|
-
refUid?: string | undefined;
|
|
415
|
-
format?: string | undefined;
|
|
416
474
|
nullable?: boolean | undefined;
|
|
475
|
+
format?: string | undefined;
|
|
476
|
+
file?: {
|
|
477
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
478
|
+
type: string;
|
|
479
|
+
name: string;
|
|
480
|
+
size: number;
|
|
481
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
482
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
483
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
484
|
+
lastModified: number;
|
|
485
|
+
webkitRelativePath: string;
|
|
486
|
+
} | undefined;
|
|
487
|
+
refUid?: string | undefined;
|
|
417
488
|
}[];
|
|
418
489
|
encoding: "form-data" | "urlencoded";
|
|
419
490
|
};
|
|
420
491
|
activeBody: "raw" | "formData" | "binary";
|
|
421
|
-
binary?:
|
|
492
|
+
binary?: {
|
|
493
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
494
|
+
type: string;
|
|
495
|
+
name: string;
|
|
496
|
+
size: number;
|
|
497
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
498
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
499
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
500
|
+
lastModified: number;
|
|
501
|
+
webkitRelativePath: string;
|
|
502
|
+
} | undefined;
|
|
422
503
|
};
|
|
423
504
|
parameters: {
|
|
424
505
|
path: {
|
|
@@ -432,10 +513,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
432
513
|
required?: boolean | undefined;
|
|
433
514
|
description?: string | undefined;
|
|
434
515
|
enum?: string[] | undefined;
|
|
435
|
-
file?: any;
|
|
436
|
-
refUid?: string | undefined;
|
|
437
|
-
format?: string | undefined;
|
|
438
516
|
nullable?: boolean | undefined;
|
|
517
|
+
format?: string | undefined;
|
|
518
|
+
file?: {
|
|
519
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
520
|
+
type: string;
|
|
521
|
+
name: string;
|
|
522
|
+
size: number;
|
|
523
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
524
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
525
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
526
|
+
lastModified: number;
|
|
527
|
+
webkitRelativePath: string;
|
|
528
|
+
} | undefined;
|
|
529
|
+
refUid?: string | undefined;
|
|
439
530
|
}[];
|
|
440
531
|
query: {
|
|
441
532
|
value: string;
|
|
@@ -448,10 +539,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
448
539
|
required?: boolean | undefined;
|
|
449
540
|
description?: string | undefined;
|
|
450
541
|
enum?: string[] | undefined;
|
|
451
|
-
file?: any;
|
|
452
|
-
refUid?: string | undefined;
|
|
453
|
-
format?: string | undefined;
|
|
454
542
|
nullable?: boolean | undefined;
|
|
543
|
+
format?: string | undefined;
|
|
544
|
+
file?: {
|
|
545
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
546
|
+
type: string;
|
|
547
|
+
name: string;
|
|
548
|
+
size: number;
|
|
549
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
550
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
551
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
552
|
+
lastModified: number;
|
|
553
|
+
webkitRelativePath: string;
|
|
554
|
+
} | undefined;
|
|
555
|
+
refUid?: string | undefined;
|
|
455
556
|
}[];
|
|
456
557
|
headers: {
|
|
457
558
|
value: string;
|
|
@@ -464,10 +565,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
464
565
|
required?: boolean | undefined;
|
|
465
566
|
description?: string | undefined;
|
|
466
567
|
enum?: string[] | undefined;
|
|
467
|
-
file?: any;
|
|
468
|
-
refUid?: string | undefined;
|
|
469
|
-
format?: string | undefined;
|
|
470
568
|
nullable?: boolean | undefined;
|
|
569
|
+
format?: string | undefined;
|
|
570
|
+
file?: {
|
|
571
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
572
|
+
type: string;
|
|
573
|
+
name: string;
|
|
574
|
+
size: number;
|
|
575
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
576
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
577
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
578
|
+
lastModified: number;
|
|
579
|
+
webkitRelativePath: string;
|
|
580
|
+
} | undefined;
|
|
581
|
+
refUid?: string | undefined;
|
|
471
582
|
}[];
|
|
472
583
|
cookies: {
|
|
473
584
|
value: string;
|
|
@@ -480,10 +591,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
480
591
|
required?: boolean | undefined;
|
|
481
592
|
description?: string | undefined;
|
|
482
593
|
enum?: string[] | undefined;
|
|
483
|
-
file?: any;
|
|
484
|
-
refUid?: string | undefined;
|
|
485
|
-
format?: string | undefined;
|
|
486
594
|
nullable?: boolean | undefined;
|
|
595
|
+
format?: string | undefined;
|
|
596
|
+
file?: {
|
|
597
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
598
|
+
type: string;
|
|
599
|
+
name: string;
|
|
600
|
+
size: number;
|
|
601
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
602
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
603
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
604
|
+
lastModified: number;
|
|
605
|
+
webkitRelativePath: string;
|
|
606
|
+
} | undefined;
|
|
607
|
+
refUid?: string | undefined;
|
|
487
608
|
}[];
|
|
488
609
|
};
|
|
489
610
|
auth: Record<string, any>;
|
|
@@ -586,6 +707,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
586
707
|
isReadOnly: boolean;
|
|
587
708
|
collectionUids: string[];
|
|
588
709
|
environmentUids: string[];
|
|
710
|
+
activeEnvironmentId: string;
|
|
589
711
|
cookieUids: string[];
|
|
590
712
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
591
713
|
hotKeyConfig?: {
|
|
@@ -653,11 +775,22 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
653
775
|
key: string;
|
|
654
776
|
value: string;
|
|
655
777
|
} | {
|
|
656
|
-
_scalarEnvId:
|
|
778
|
+
_scalarEnvId: string;
|
|
657
779
|
key: string;
|
|
658
780
|
value: unknown;
|
|
659
781
|
})[]>;
|
|
660
782
|
activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
|
|
783
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
784
|
+
uid: string;
|
|
785
|
+
name: string;
|
|
786
|
+
color: string;
|
|
787
|
+
raw: string;
|
|
788
|
+
parsed: {
|
|
789
|
+
value: string;
|
|
790
|
+
key: string;
|
|
791
|
+
}[];
|
|
792
|
+
isDefault?: boolean | undefined;
|
|
793
|
+
}>;
|
|
661
794
|
modalState: {
|
|
662
795
|
open: boolean;
|
|
663
796
|
show: () => void;
|
|
@@ -668,7 +801,9 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
668
801
|
sidebarWidth: import("vue").Ref<string>;
|
|
669
802
|
setSidebarWidth: (width: string) => void;
|
|
670
803
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
671
|
-
importSpecFile: (_spec: string |
|
|
804
|
+
importSpecFile: (_spec: string | {
|
|
805
|
+
[x: string]: any;
|
|
806
|
+
}, workspaceUid?: string, overloadServers?: Spec["servers"]) => Promise<void>;
|
|
672
807
|
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: Spec["servers"]) => Promise<void>;
|
|
673
808
|
cookieMutators: {
|
|
674
809
|
add: (item: {
|
|
@@ -1324,7 +1459,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1324
1459
|
body: {
|
|
1325
1460
|
raw: {
|
|
1326
1461
|
value: string;
|
|
1327
|
-
encoding: "
|
|
1462
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1328
1463
|
};
|
|
1329
1464
|
formData: {
|
|
1330
1465
|
value: {
|
|
@@ -1338,15 +1473,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1338
1473
|
required?: boolean | undefined;
|
|
1339
1474
|
description?: string | undefined;
|
|
1340
1475
|
enum?: string[] | undefined;
|
|
1341
|
-
file?: any;
|
|
1342
|
-
refUid?: string | undefined;
|
|
1343
|
-
format?: string | undefined;
|
|
1344
1476
|
nullable?: boolean | undefined;
|
|
1477
|
+
format?: string | undefined;
|
|
1478
|
+
file?: {
|
|
1479
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1480
|
+
type: string;
|
|
1481
|
+
name: string;
|
|
1482
|
+
size: number;
|
|
1483
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1484
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1485
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1486
|
+
lastModified: number;
|
|
1487
|
+
webkitRelativePath: string;
|
|
1488
|
+
} | undefined;
|
|
1489
|
+
refUid?: string | undefined;
|
|
1345
1490
|
}[];
|
|
1346
1491
|
encoding: "form-data" | "urlencoded";
|
|
1347
1492
|
};
|
|
1348
1493
|
activeBody: "raw" | "formData" | "binary";
|
|
1349
|
-
binary?:
|
|
1494
|
+
binary?: {
|
|
1495
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1496
|
+
type: string;
|
|
1497
|
+
name: string;
|
|
1498
|
+
size: number;
|
|
1499
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1500
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1501
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1502
|
+
lastModified: number;
|
|
1503
|
+
webkitRelativePath: string;
|
|
1504
|
+
} | undefined;
|
|
1350
1505
|
};
|
|
1351
1506
|
parameters: {
|
|
1352
1507
|
path: {
|
|
@@ -1360,10 +1515,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1360
1515
|
required?: boolean | undefined;
|
|
1361
1516
|
description?: string | undefined;
|
|
1362
1517
|
enum?: string[] | undefined;
|
|
1363
|
-
file?: any;
|
|
1364
|
-
refUid?: string | undefined;
|
|
1365
|
-
format?: string | undefined;
|
|
1366
1518
|
nullable?: boolean | undefined;
|
|
1519
|
+
format?: string | undefined;
|
|
1520
|
+
file?: {
|
|
1521
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1522
|
+
type: string;
|
|
1523
|
+
name: string;
|
|
1524
|
+
size: number;
|
|
1525
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1526
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1527
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1528
|
+
lastModified: number;
|
|
1529
|
+
webkitRelativePath: string;
|
|
1530
|
+
} | undefined;
|
|
1531
|
+
refUid?: string | undefined;
|
|
1367
1532
|
}[];
|
|
1368
1533
|
query: {
|
|
1369
1534
|
value: string;
|
|
@@ -1376,10 +1541,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1376
1541
|
required?: boolean | undefined;
|
|
1377
1542
|
description?: string | undefined;
|
|
1378
1543
|
enum?: string[] | undefined;
|
|
1379
|
-
file?: any;
|
|
1380
|
-
refUid?: string | undefined;
|
|
1381
|
-
format?: string | undefined;
|
|
1382
1544
|
nullable?: boolean | undefined;
|
|
1545
|
+
format?: string | undefined;
|
|
1546
|
+
file?: {
|
|
1547
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1548
|
+
type: string;
|
|
1549
|
+
name: string;
|
|
1550
|
+
size: number;
|
|
1551
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1552
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1553
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1554
|
+
lastModified: number;
|
|
1555
|
+
webkitRelativePath: string;
|
|
1556
|
+
} | undefined;
|
|
1557
|
+
refUid?: string | undefined;
|
|
1383
1558
|
}[];
|
|
1384
1559
|
headers: {
|
|
1385
1560
|
value: string;
|
|
@@ -1392,10 +1567,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1392
1567
|
required?: boolean | undefined;
|
|
1393
1568
|
description?: string | undefined;
|
|
1394
1569
|
enum?: string[] | undefined;
|
|
1395
|
-
file?: any;
|
|
1396
|
-
refUid?: string | undefined;
|
|
1397
|
-
format?: string | undefined;
|
|
1398
1570
|
nullable?: boolean | undefined;
|
|
1571
|
+
format?: string | undefined;
|
|
1572
|
+
file?: {
|
|
1573
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1574
|
+
type: string;
|
|
1575
|
+
name: string;
|
|
1576
|
+
size: number;
|
|
1577
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1578
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1579
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1580
|
+
lastModified: number;
|
|
1581
|
+
webkitRelativePath: string;
|
|
1582
|
+
} | undefined;
|
|
1583
|
+
refUid?: string | undefined;
|
|
1399
1584
|
}[];
|
|
1400
1585
|
cookies: {
|
|
1401
1586
|
value: string;
|
|
@@ -1408,10 +1593,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1408
1593
|
required?: boolean | undefined;
|
|
1409
1594
|
description?: string | undefined;
|
|
1410
1595
|
enum?: string[] | undefined;
|
|
1411
|
-
file?: any;
|
|
1412
|
-
refUid?: string | undefined;
|
|
1413
|
-
format?: string | undefined;
|
|
1414
1596
|
nullable?: boolean | undefined;
|
|
1597
|
+
format?: string | undefined;
|
|
1598
|
+
file?: {
|
|
1599
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1600
|
+
type: string;
|
|
1601
|
+
name: string;
|
|
1602
|
+
size: number;
|
|
1603
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1604
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1605
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1606
|
+
lastModified: number;
|
|
1607
|
+
webkitRelativePath: string;
|
|
1608
|
+
} | undefined;
|
|
1609
|
+
refUid?: string | undefined;
|
|
1415
1610
|
}[];
|
|
1416
1611
|
};
|
|
1417
1612
|
auth: Record<string, any>;
|
|
@@ -1424,7 +1619,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1424
1619
|
body: {
|
|
1425
1620
|
raw: {
|
|
1426
1621
|
value: string;
|
|
1427
|
-
encoding: "
|
|
1622
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1428
1623
|
};
|
|
1429
1624
|
formData: {
|
|
1430
1625
|
value: {
|
|
@@ -1438,15 +1633,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1438
1633
|
required?: boolean | undefined;
|
|
1439
1634
|
description?: string | undefined;
|
|
1440
1635
|
enum?: string[] | undefined;
|
|
1441
|
-
file?: any;
|
|
1442
|
-
refUid?: string | undefined;
|
|
1443
|
-
format?: string | undefined;
|
|
1444
1636
|
nullable?: boolean | undefined;
|
|
1637
|
+
format?: string | undefined;
|
|
1638
|
+
file?: {
|
|
1639
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1640
|
+
type: string;
|
|
1641
|
+
name: string;
|
|
1642
|
+
size: number;
|
|
1643
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1644
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1645
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1646
|
+
lastModified: number;
|
|
1647
|
+
webkitRelativePath: string;
|
|
1648
|
+
} | undefined;
|
|
1649
|
+
refUid?: string | undefined;
|
|
1445
1650
|
}[];
|
|
1446
1651
|
encoding: "form-data" | "urlencoded";
|
|
1447
1652
|
};
|
|
1448
1653
|
activeBody: "raw" | "formData" | "binary";
|
|
1449
|
-
binary?:
|
|
1654
|
+
binary?: {
|
|
1655
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1656
|
+
type: string;
|
|
1657
|
+
name: string;
|
|
1658
|
+
size: number;
|
|
1659
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1660
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1661
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1662
|
+
lastModified: number;
|
|
1663
|
+
webkitRelativePath: string;
|
|
1664
|
+
} | undefined;
|
|
1450
1665
|
};
|
|
1451
1666
|
parameters: {
|
|
1452
1667
|
path: {
|
|
@@ -1460,10 +1675,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1460
1675
|
required?: boolean | undefined;
|
|
1461
1676
|
description?: string | undefined;
|
|
1462
1677
|
enum?: string[] | undefined;
|
|
1463
|
-
file?: any;
|
|
1464
|
-
refUid?: string | undefined;
|
|
1465
|
-
format?: string | undefined;
|
|
1466
1678
|
nullable?: boolean | undefined;
|
|
1679
|
+
format?: string | undefined;
|
|
1680
|
+
file?: {
|
|
1681
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1682
|
+
type: string;
|
|
1683
|
+
name: string;
|
|
1684
|
+
size: number;
|
|
1685
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1686
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1687
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1688
|
+
lastModified: number;
|
|
1689
|
+
webkitRelativePath: string;
|
|
1690
|
+
} | undefined;
|
|
1691
|
+
refUid?: string | undefined;
|
|
1467
1692
|
}[];
|
|
1468
1693
|
query: {
|
|
1469
1694
|
value: string;
|
|
@@ -1476,10 +1701,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1476
1701
|
required?: boolean | undefined;
|
|
1477
1702
|
description?: string | undefined;
|
|
1478
1703
|
enum?: string[] | undefined;
|
|
1479
|
-
file?: any;
|
|
1480
|
-
refUid?: string | undefined;
|
|
1481
|
-
format?: string | undefined;
|
|
1482
1704
|
nullable?: boolean | undefined;
|
|
1705
|
+
format?: string | undefined;
|
|
1706
|
+
file?: {
|
|
1707
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1708
|
+
type: string;
|
|
1709
|
+
name: string;
|
|
1710
|
+
size: number;
|
|
1711
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1712
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1713
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1714
|
+
lastModified: number;
|
|
1715
|
+
webkitRelativePath: string;
|
|
1716
|
+
} | undefined;
|
|
1717
|
+
refUid?: string | undefined;
|
|
1483
1718
|
}[];
|
|
1484
1719
|
headers: {
|
|
1485
1720
|
value: string;
|
|
@@ -1492,10 +1727,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1492
1727
|
required?: boolean | undefined;
|
|
1493
1728
|
description?: string | undefined;
|
|
1494
1729
|
enum?: string[] | undefined;
|
|
1495
|
-
file?: any;
|
|
1496
|
-
refUid?: string | undefined;
|
|
1497
|
-
format?: string | undefined;
|
|
1498
1730
|
nullable?: boolean | undefined;
|
|
1731
|
+
format?: string | undefined;
|
|
1732
|
+
file?: {
|
|
1733
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1734
|
+
type: string;
|
|
1735
|
+
name: string;
|
|
1736
|
+
size: number;
|
|
1737
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1738
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1739
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1740
|
+
lastModified: number;
|
|
1741
|
+
webkitRelativePath: string;
|
|
1742
|
+
} | undefined;
|
|
1743
|
+
refUid?: string | undefined;
|
|
1499
1744
|
}[];
|
|
1500
1745
|
cookies: {
|
|
1501
1746
|
value: string;
|
|
@@ -1508,10 +1753,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1508
1753
|
required?: boolean | undefined;
|
|
1509
1754
|
description?: string | undefined;
|
|
1510
1755
|
enum?: string[] | undefined;
|
|
1511
|
-
file?: any;
|
|
1512
|
-
refUid?: string | undefined;
|
|
1513
|
-
format?: string | undefined;
|
|
1514
1756
|
nullable?: boolean | undefined;
|
|
1757
|
+
format?: string | undefined;
|
|
1758
|
+
file?: {
|
|
1759
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1760
|
+
type: string;
|
|
1761
|
+
name: string;
|
|
1762
|
+
size: number;
|
|
1763
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1764
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1765
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1766
|
+
lastModified: number;
|
|
1767
|
+
webkitRelativePath: string;
|
|
1768
|
+
} | undefined;
|
|
1769
|
+
refUid?: string | undefined;
|
|
1515
1770
|
}[];
|
|
1516
1771
|
};
|
|
1517
1772
|
auth: Record<string, any>;
|
|
@@ -1525,7 +1780,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1525
1780
|
body: {
|
|
1526
1781
|
raw: {
|
|
1527
1782
|
value: string;
|
|
1528
|
-
encoding: "
|
|
1783
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1529
1784
|
};
|
|
1530
1785
|
formData: {
|
|
1531
1786
|
value: {
|
|
@@ -1539,15 +1794,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1539
1794
|
required?: boolean | undefined;
|
|
1540
1795
|
description?: string | undefined;
|
|
1541
1796
|
enum?: string[] | undefined;
|
|
1542
|
-
file?: any;
|
|
1543
|
-
refUid?: string | undefined;
|
|
1544
|
-
format?: string | undefined;
|
|
1545
1797
|
nullable?: boolean | undefined;
|
|
1798
|
+
format?: string | undefined;
|
|
1799
|
+
file?: {
|
|
1800
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1801
|
+
type: string;
|
|
1802
|
+
name: string;
|
|
1803
|
+
size: number;
|
|
1804
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1805
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1806
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1807
|
+
lastModified: number;
|
|
1808
|
+
webkitRelativePath: string;
|
|
1809
|
+
} | undefined;
|
|
1810
|
+
refUid?: string | undefined;
|
|
1546
1811
|
}[];
|
|
1547
1812
|
encoding: "form-data" | "urlencoded";
|
|
1548
1813
|
};
|
|
1549
1814
|
activeBody: "raw" | "formData" | "binary";
|
|
1550
|
-
binary?:
|
|
1815
|
+
binary?: {
|
|
1816
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1817
|
+
type: string;
|
|
1818
|
+
name: string;
|
|
1819
|
+
size: number;
|
|
1820
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1821
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1822
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1823
|
+
lastModified: number;
|
|
1824
|
+
webkitRelativePath: string;
|
|
1825
|
+
} | undefined;
|
|
1551
1826
|
};
|
|
1552
1827
|
parameters: {
|
|
1553
1828
|
path: {
|
|
@@ -1561,10 +1836,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1561
1836
|
required?: boolean | undefined;
|
|
1562
1837
|
description?: string | undefined;
|
|
1563
1838
|
enum?: string[] | undefined;
|
|
1564
|
-
file?: any;
|
|
1565
|
-
refUid?: string | undefined;
|
|
1566
|
-
format?: string | undefined;
|
|
1567
1839
|
nullable?: boolean | undefined;
|
|
1840
|
+
format?: string | undefined;
|
|
1841
|
+
file?: {
|
|
1842
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1843
|
+
type: string;
|
|
1844
|
+
name: string;
|
|
1845
|
+
size: number;
|
|
1846
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1847
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1848
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1849
|
+
lastModified: number;
|
|
1850
|
+
webkitRelativePath: string;
|
|
1851
|
+
} | undefined;
|
|
1852
|
+
refUid?: string | undefined;
|
|
1568
1853
|
}[];
|
|
1569
1854
|
query: {
|
|
1570
1855
|
value: string;
|
|
@@ -1577,10 +1862,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1577
1862
|
required?: boolean | undefined;
|
|
1578
1863
|
description?: string | undefined;
|
|
1579
1864
|
enum?: string[] | undefined;
|
|
1580
|
-
file?: any;
|
|
1581
|
-
refUid?: string | undefined;
|
|
1582
|
-
format?: string | undefined;
|
|
1583
1865
|
nullable?: boolean | undefined;
|
|
1866
|
+
format?: string | undefined;
|
|
1867
|
+
file?: {
|
|
1868
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1869
|
+
type: string;
|
|
1870
|
+
name: string;
|
|
1871
|
+
size: number;
|
|
1872
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1873
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1874
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1875
|
+
lastModified: number;
|
|
1876
|
+
webkitRelativePath: string;
|
|
1877
|
+
} | undefined;
|
|
1878
|
+
refUid?: string | undefined;
|
|
1584
1879
|
}[];
|
|
1585
1880
|
headers: {
|
|
1586
1881
|
value: string;
|
|
@@ -1593,10 +1888,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1593
1888
|
required?: boolean | undefined;
|
|
1594
1889
|
description?: string | undefined;
|
|
1595
1890
|
enum?: string[] | undefined;
|
|
1596
|
-
file?: any;
|
|
1597
|
-
refUid?: string | undefined;
|
|
1598
|
-
format?: string | undefined;
|
|
1599
1891
|
nullable?: boolean | undefined;
|
|
1892
|
+
format?: string | undefined;
|
|
1893
|
+
file?: {
|
|
1894
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1895
|
+
type: string;
|
|
1896
|
+
name: string;
|
|
1897
|
+
size: number;
|
|
1898
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1899
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1900
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1901
|
+
lastModified: number;
|
|
1902
|
+
webkitRelativePath: string;
|
|
1903
|
+
} | undefined;
|
|
1904
|
+
refUid?: string | undefined;
|
|
1600
1905
|
}[];
|
|
1601
1906
|
cookies: {
|
|
1602
1907
|
value: string;
|
|
@@ -1609,15 +1914,25 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1609
1914
|
required?: boolean | undefined;
|
|
1610
1915
|
description?: string | undefined;
|
|
1611
1916
|
enum?: string[] | undefined;
|
|
1612
|
-
file?: any;
|
|
1613
|
-
refUid?: string | undefined;
|
|
1614
|
-
format?: string | undefined;
|
|
1615
1917
|
nullable?: boolean | undefined;
|
|
1918
|
+
format?: string | undefined;
|
|
1919
|
+
file?: {
|
|
1920
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1921
|
+
type: string;
|
|
1922
|
+
name: string;
|
|
1923
|
+
size: number;
|
|
1924
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1925
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1926
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1927
|
+
lastModified: number;
|
|
1928
|
+
webkitRelativePath: string;
|
|
1929
|
+
} | undefined;
|
|
1930
|
+
refUid?: string | undefined;
|
|
1616
1931
|
}[];
|
|
1617
1932
|
};
|
|
1618
1933
|
auth: Record<string, any>;
|
|
1619
1934
|
}) => void;
|
|
1620
|
-
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}.
|
|
1935
|
+
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" ? {
|
|
1621
1936
|
uid: string;
|
|
1622
1937
|
name: string;
|
|
1623
1938
|
url: string;
|
|
@@ -1625,7 +1940,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1625
1940
|
body: {
|
|
1626
1941
|
raw: {
|
|
1627
1942
|
value: string;
|
|
1628
|
-
encoding: "
|
|
1943
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1629
1944
|
};
|
|
1630
1945
|
formData: {
|
|
1631
1946
|
value: {
|
|
@@ -1639,15 +1954,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1639
1954
|
required?: boolean | undefined;
|
|
1640
1955
|
description?: string | undefined;
|
|
1641
1956
|
enum?: string[] | undefined;
|
|
1642
|
-
file?: any;
|
|
1643
|
-
refUid?: string | undefined;
|
|
1644
|
-
format?: string | undefined;
|
|
1645
1957
|
nullable?: boolean | undefined;
|
|
1958
|
+
format?: string | undefined;
|
|
1959
|
+
file?: {
|
|
1960
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1961
|
+
type: string;
|
|
1962
|
+
name: string;
|
|
1963
|
+
size: number;
|
|
1964
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1965
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1966
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1967
|
+
lastModified: number;
|
|
1968
|
+
webkitRelativePath: string;
|
|
1969
|
+
} | undefined;
|
|
1970
|
+
refUid?: string | undefined;
|
|
1646
1971
|
}[];
|
|
1647
1972
|
encoding: "form-data" | "urlencoded";
|
|
1648
1973
|
};
|
|
1649
1974
|
activeBody: "raw" | "formData" | "binary";
|
|
1650
|
-
binary?:
|
|
1975
|
+
binary?: {
|
|
1976
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1977
|
+
type: string;
|
|
1978
|
+
name: string;
|
|
1979
|
+
size: number;
|
|
1980
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1981
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1982
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1983
|
+
lastModified: number;
|
|
1984
|
+
webkitRelativePath: string;
|
|
1985
|
+
} | undefined;
|
|
1651
1986
|
};
|
|
1652
1987
|
parameters: {
|
|
1653
1988
|
path: {
|
|
@@ -1661,10 +1996,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1661
1996
|
required?: boolean | undefined;
|
|
1662
1997
|
description?: string | undefined;
|
|
1663
1998
|
enum?: string[] | undefined;
|
|
1664
|
-
file?: any;
|
|
1665
|
-
refUid?: string | undefined;
|
|
1666
|
-
format?: string | undefined;
|
|
1667
1999
|
nullable?: boolean | undefined;
|
|
2000
|
+
format?: string | undefined;
|
|
2001
|
+
file?: {
|
|
2002
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2003
|
+
type: string;
|
|
2004
|
+
name: string;
|
|
2005
|
+
size: number;
|
|
2006
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2007
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2008
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2009
|
+
lastModified: number;
|
|
2010
|
+
webkitRelativePath: string;
|
|
2011
|
+
} | undefined;
|
|
2012
|
+
refUid?: string | undefined;
|
|
1668
2013
|
}[];
|
|
1669
2014
|
query: {
|
|
1670
2015
|
value: string;
|
|
@@ -1677,10 +2022,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1677
2022
|
required?: boolean | undefined;
|
|
1678
2023
|
description?: string | undefined;
|
|
1679
2024
|
enum?: string[] | undefined;
|
|
1680
|
-
file?: any;
|
|
1681
|
-
refUid?: string | undefined;
|
|
1682
|
-
format?: string | undefined;
|
|
1683
2025
|
nullable?: boolean | undefined;
|
|
2026
|
+
format?: string | undefined;
|
|
2027
|
+
file?: {
|
|
2028
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2029
|
+
type: string;
|
|
2030
|
+
name: string;
|
|
2031
|
+
size: number;
|
|
2032
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2033
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2034
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2035
|
+
lastModified: number;
|
|
2036
|
+
webkitRelativePath: string;
|
|
2037
|
+
} | undefined;
|
|
2038
|
+
refUid?: string | undefined;
|
|
1684
2039
|
}[];
|
|
1685
2040
|
headers: {
|
|
1686
2041
|
value: string;
|
|
@@ -1693,10 +2048,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1693
2048
|
required?: boolean | undefined;
|
|
1694
2049
|
description?: string | undefined;
|
|
1695
2050
|
enum?: string[] | undefined;
|
|
1696
|
-
file?: any;
|
|
1697
|
-
refUid?: string | undefined;
|
|
1698
|
-
format?: string | undefined;
|
|
1699
2051
|
nullable?: boolean | undefined;
|
|
2052
|
+
format?: string | undefined;
|
|
2053
|
+
file?: {
|
|
2054
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2055
|
+
type: string;
|
|
2056
|
+
name: string;
|
|
2057
|
+
size: number;
|
|
2058
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2059
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2060
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2061
|
+
lastModified: number;
|
|
2062
|
+
webkitRelativePath: string;
|
|
2063
|
+
} | undefined;
|
|
2064
|
+
refUid?: string | undefined;
|
|
1700
2065
|
}[];
|
|
1701
2066
|
cookies: {
|
|
1702
2067
|
value: string;
|
|
@@ -1709,10 +2074,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1709
2074
|
required?: boolean | undefined;
|
|
1710
2075
|
description?: string | undefined;
|
|
1711
2076
|
enum?: string[] | undefined;
|
|
1712
|
-
file?: any;
|
|
1713
|
-
refUid?: string | undefined;
|
|
1714
|
-
format?: string | undefined;
|
|
1715
2077
|
nullable?: boolean | undefined;
|
|
2078
|
+
format?: string | undefined;
|
|
2079
|
+
file?: {
|
|
2080
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2081
|
+
type: string;
|
|
2082
|
+
name: string;
|
|
2083
|
+
size: number;
|
|
2084
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2085
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2086
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2087
|
+
lastModified: number;
|
|
2088
|
+
webkitRelativePath: string;
|
|
2089
|
+
} | undefined;
|
|
2090
|
+
refUid?: string | undefined;
|
|
1716
2091
|
}[];
|
|
1717
2092
|
};
|
|
1718
2093
|
auth: Record<string, any>;
|
|
@@ -1724,7 +2099,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1724
2099
|
body: {
|
|
1725
2100
|
raw: {
|
|
1726
2101
|
value: string;
|
|
1727
|
-
encoding: "
|
|
2102
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1728
2103
|
};
|
|
1729
2104
|
formData: {
|
|
1730
2105
|
value: {
|
|
@@ -1738,15 +2113,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1738
2113
|
required?: boolean | undefined;
|
|
1739
2114
|
description?: string | undefined;
|
|
1740
2115
|
enum?: string[] | undefined;
|
|
1741
|
-
file?: any;
|
|
1742
|
-
refUid?: string | undefined;
|
|
1743
|
-
format?: string | undefined;
|
|
1744
2116
|
nullable?: boolean | undefined;
|
|
2117
|
+
format?: string | undefined;
|
|
2118
|
+
file?: {
|
|
2119
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2120
|
+
type: string;
|
|
2121
|
+
name: string;
|
|
2122
|
+
size: number;
|
|
2123
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2124
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2125
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2126
|
+
lastModified: number;
|
|
2127
|
+
webkitRelativePath: string;
|
|
2128
|
+
} | undefined;
|
|
2129
|
+
refUid?: string | undefined;
|
|
1745
2130
|
}[];
|
|
1746
2131
|
encoding: "form-data" | "urlencoded";
|
|
1747
2132
|
};
|
|
1748
2133
|
activeBody: "raw" | "formData" | "binary";
|
|
1749
|
-
binary?:
|
|
2134
|
+
binary?: {
|
|
2135
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2136
|
+
type: string;
|
|
2137
|
+
name: string;
|
|
2138
|
+
size: number;
|
|
2139
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2140
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2141
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2142
|
+
lastModified: number;
|
|
2143
|
+
webkitRelativePath: string;
|
|
2144
|
+
} | undefined;
|
|
1750
2145
|
};
|
|
1751
2146
|
parameters: {
|
|
1752
2147
|
path: {
|
|
@@ -1760,10 +2155,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1760
2155
|
required?: boolean | undefined;
|
|
1761
2156
|
description?: string | undefined;
|
|
1762
2157
|
enum?: string[] | undefined;
|
|
1763
|
-
file?: any;
|
|
1764
|
-
refUid?: string | undefined;
|
|
1765
|
-
format?: string | undefined;
|
|
1766
2158
|
nullable?: boolean | undefined;
|
|
2159
|
+
format?: string | undefined;
|
|
2160
|
+
file?: {
|
|
2161
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2162
|
+
type: string;
|
|
2163
|
+
name: string;
|
|
2164
|
+
size: number;
|
|
2165
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2166
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2167
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2168
|
+
lastModified: number;
|
|
2169
|
+
webkitRelativePath: string;
|
|
2170
|
+
} | undefined;
|
|
2171
|
+
refUid?: string | undefined;
|
|
1767
2172
|
}[];
|
|
1768
2173
|
query: {
|
|
1769
2174
|
value: string;
|
|
@@ -1776,10 +2181,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1776
2181
|
required?: boolean | undefined;
|
|
1777
2182
|
description?: string | undefined;
|
|
1778
2183
|
enum?: string[] | undefined;
|
|
1779
|
-
file?: any;
|
|
1780
|
-
refUid?: string | undefined;
|
|
1781
|
-
format?: string | undefined;
|
|
1782
2184
|
nullable?: boolean | undefined;
|
|
2185
|
+
format?: string | undefined;
|
|
2186
|
+
file?: {
|
|
2187
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2188
|
+
type: string;
|
|
2189
|
+
name: string;
|
|
2190
|
+
size: number;
|
|
2191
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2192
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2193
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2194
|
+
lastModified: number;
|
|
2195
|
+
webkitRelativePath: string;
|
|
2196
|
+
} | undefined;
|
|
2197
|
+
refUid?: string | undefined;
|
|
1783
2198
|
}[];
|
|
1784
2199
|
headers: {
|
|
1785
2200
|
value: string;
|
|
@@ -1792,10 +2207,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1792
2207
|
required?: boolean | undefined;
|
|
1793
2208
|
description?: string | undefined;
|
|
1794
2209
|
enum?: string[] | undefined;
|
|
1795
|
-
file?: any;
|
|
1796
|
-
refUid?: string | undefined;
|
|
1797
|
-
format?: string | undefined;
|
|
1798
2210
|
nullable?: boolean | undefined;
|
|
2211
|
+
format?: string | undefined;
|
|
2212
|
+
file?: {
|
|
2213
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2214
|
+
type: string;
|
|
2215
|
+
name: string;
|
|
2216
|
+
size: number;
|
|
2217
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2218
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2219
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2220
|
+
lastModified: number;
|
|
2221
|
+
webkitRelativePath: string;
|
|
2222
|
+
} | undefined;
|
|
2223
|
+
refUid?: string | undefined;
|
|
1799
2224
|
}[];
|
|
1800
2225
|
cookies: {
|
|
1801
2226
|
value: string;
|
|
@@ -1808,10 +2233,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1808
2233
|
required?: boolean | undefined;
|
|
1809
2234
|
description?: string | undefined;
|
|
1810
2235
|
enum?: string[] | undefined;
|
|
1811
|
-
file?: any;
|
|
1812
|
-
refUid?: string | undefined;
|
|
1813
|
-
format?: string | undefined;
|
|
1814
2236
|
nullable?: boolean | undefined;
|
|
2237
|
+
format?: string | undefined;
|
|
2238
|
+
file?: {
|
|
2239
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2240
|
+
type: string;
|
|
2241
|
+
name: string;
|
|
2242
|
+
size: number;
|
|
2243
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2244
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2245
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2246
|
+
lastModified: number;
|
|
2247
|
+
webkitRelativePath: string;
|
|
2248
|
+
} | undefined;
|
|
2249
|
+
refUid?: string | undefined;
|
|
1815
2250
|
}[];
|
|
1816
2251
|
};
|
|
1817
2252
|
auth: Record<string, any>;
|
|
@@ -1823,7 +2258,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1823
2258
|
body: {
|
|
1824
2259
|
raw: {
|
|
1825
2260
|
value: string;
|
|
1826
|
-
encoding: "
|
|
2261
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1827
2262
|
};
|
|
1828
2263
|
formData: {
|
|
1829
2264
|
value: {
|
|
@@ -1837,15 +2272,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1837
2272
|
required?: boolean | undefined;
|
|
1838
2273
|
description?: string | undefined;
|
|
1839
2274
|
enum?: string[] | undefined;
|
|
1840
|
-
file?: any;
|
|
1841
|
-
refUid?: string | undefined;
|
|
1842
|
-
format?: string | undefined;
|
|
1843
2275
|
nullable?: boolean | undefined;
|
|
2276
|
+
format?: string | undefined;
|
|
2277
|
+
file?: {
|
|
2278
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2279
|
+
type: string;
|
|
2280
|
+
name: string;
|
|
2281
|
+
size: number;
|
|
2282
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2283
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2284
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2285
|
+
lastModified: number;
|
|
2286
|
+
webkitRelativePath: string;
|
|
2287
|
+
} | undefined;
|
|
2288
|
+
refUid?: string | undefined;
|
|
1844
2289
|
}[];
|
|
1845
2290
|
encoding: "form-data" | "urlencoded";
|
|
1846
2291
|
};
|
|
1847
2292
|
activeBody: "raw" | "formData" | "binary";
|
|
1848
|
-
binary?:
|
|
2293
|
+
binary?: {
|
|
2294
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2295
|
+
type: string;
|
|
2296
|
+
name: string;
|
|
2297
|
+
size: number;
|
|
2298
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2299
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2300
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2301
|
+
lastModified: number;
|
|
2302
|
+
webkitRelativePath: string;
|
|
2303
|
+
} | undefined;
|
|
1849
2304
|
};
|
|
1850
2305
|
parameters: {
|
|
1851
2306
|
path: {
|
|
@@ -1859,10 +2314,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1859
2314
|
required?: boolean | undefined;
|
|
1860
2315
|
description?: string | undefined;
|
|
1861
2316
|
enum?: string[] | undefined;
|
|
1862
|
-
file?: any;
|
|
1863
|
-
refUid?: string | undefined;
|
|
1864
|
-
format?: string | undefined;
|
|
1865
2317
|
nullable?: boolean | undefined;
|
|
2318
|
+
format?: string | undefined;
|
|
2319
|
+
file?: {
|
|
2320
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2321
|
+
type: string;
|
|
2322
|
+
name: string;
|
|
2323
|
+
size: number;
|
|
2324
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2325
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2326
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2327
|
+
lastModified: number;
|
|
2328
|
+
webkitRelativePath: string;
|
|
2329
|
+
} | undefined;
|
|
2330
|
+
refUid?: string | undefined;
|
|
1866
2331
|
}[];
|
|
1867
2332
|
query: {
|
|
1868
2333
|
value: string;
|
|
@@ -1875,10 +2340,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1875
2340
|
required?: boolean | undefined;
|
|
1876
2341
|
description?: string | undefined;
|
|
1877
2342
|
enum?: string[] | undefined;
|
|
1878
|
-
file?: any;
|
|
1879
|
-
refUid?: string | undefined;
|
|
1880
|
-
format?: string | undefined;
|
|
1881
2343
|
nullable?: boolean | undefined;
|
|
2344
|
+
format?: string | undefined;
|
|
2345
|
+
file?: {
|
|
2346
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2347
|
+
type: string;
|
|
2348
|
+
name: string;
|
|
2349
|
+
size: number;
|
|
2350
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2351
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2352
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2353
|
+
lastModified: number;
|
|
2354
|
+
webkitRelativePath: string;
|
|
2355
|
+
} | undefined;
|
|
2356
|
+
refUid?: string | undefined;
|
|
1882
2357
|
}[];
|
|
1883
2358
|
headers: {
|
|
1884
2359
|
value: string;
|
|
@@ -1891,10 +2366,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1891
2366
|
required?: boolean | undefined;
|
|
1892
2367
|
description?: string | undefined;
|
|
1893
2368
|
enum?: string[] | undefined;
|
|
1894
|
-
file?: any;
|
|
1895
|
-
refUid?: string | undefined;
|
|
1896
|
-
format?: string | undefined;
|
|
1897
2369
|
nullable?: boolean | undefined;
|
|
2370
|
+
format?: string | undefined;
|
|
2371
|
+
file?: {
|
|
2372
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2373
|
+
type: string;
|
|
2374
|
+
name: string;
|
|
2375
|
+
size: number;
|
|
2376
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2377
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2378
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2379
|
+
lastModified: number;
|
|
2380
|
+
webkitRelativePath: string;
|
|
2381
|
+
} | undefined;
|
|
2382
|
+
refUid?: string | undefined;
|
|
1898
2383
|
}[];
|
|
1899
2384
|
cookies: {
|
|
1900
2385
|
value: string;
|
|
@@ -1907,15 +2392,25 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1907
2392
|
required?: boolean | undefined;
|
|
1908
2393
|
description?: string | undefined;
|
|
1909
2394
|
enum?: string[] | undefined;
|
|
1910
|
-
file?: any;
|
|
1911
|
-
refUid?: string | undefined;
|
|
1912
|
-
format?: string | undefined;
|
|
1913
2395
|
nullable?: boolean | undefined;
|
|
2396
|
+
format?: string | undefined;
|
|
2397
|
+
file?: {
|
|
2398
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2399
|
+
type: string;
|
|
2400
|
+
name: string;
|
|
2401
|
+
size: number;
|
|
2402
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2403
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2404
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2405
|
+
lastModified: number;
|
|
2406
|
+
webkitRelativePath: string;
|
|
2407
|
+
} | undefined;
|
|
2408
|
+
refUid?: string | undefined;
|
|
1914
2409
|
}[];
|
|
1915
2410
|
};
|
|
1916
2411
|
auth: Record<string, any>;
|
|
1917
2412
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1918
|
-
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}.
|
|
2413
|
+
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" ? {
|
|
1919
2414
|
uid: string;
|
|
1920
2415
|
name: string;
|
|
1921
2416
|
url: string;
|
|
@@ -1923,7 +2418,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1923
2418
|
body: {
|
|
1924
2419
|
raw: {
|
|
1925
2420
|
value: string;
|
|
1926
|
-
encoding: "
|
|
2421
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1927
2422
|
};
|
|
1928
2423
|
formData: {
|
|
1929
2424
|
value: {
|
|
@@ -1937,15 +2432,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1937
2432
|
required?: boolean | undefined;
|
|
1938
2433
|
description?: string | undefined;
|
|
1939
2434
|
enum?: string[] | undefined;
|
|
1940
|
-
file?: any;
|
|
1941
|
-
refUid?: string | undefined;
|
|
1942
|
-
format?: string | undefined;
|
|
1943
2435
|
nullable?: boolean | undefined;
|
|
2436
|
+
format?: string | undefined;
|
|
2437
|
+
file?: {
|
|
2438
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2439
|
+
type: string;
|
|
2440
|
+
name: string;
|
|
2441
|
+
size: number;
|
|
2442
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2443
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2444
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2445
|
+
lastModified: number;
|
|
2446
|
+
webkitRelativePath: string;
|
|
2447
|
+
} | undefined;
|
|
2448
|
+
refUid?: string | undefined;
|
|
1944
2449
|
}[];
|
|
1945
2450
|
encoding: "form-data" | "urlencoded";
|
|
1946
2451
|
};
|
|
1947
2452
|
activeBody: "raw" | "formData" | "binary";
|
|
1948
|
-
binary?:
|
|
2453
|
+
binary?: {
|
|
2454
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2455
|
+
type: string;
|
|
2456
|
+
name: string;
|
|
2457
|
+
size: number;
|
|
2458
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2459
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2460
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2461
|
+
lastModified: number;
|
|
2462
|
+
webkitRelativePath: string;
|
|
2463
|
+
} | undefined;
|
|
1949
2464
|
};
|
|
1950
2465
|
parameters: {
|
|
1951
2466
|
path: {
|
|
@@ -1959,10 +2474,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1959
2474
|
required?: boolean | undefined;
|
|
1960
2475
|
description?: string | undefined;
|
|
1961
2476
|
enum?: string[] | undefined;
|
|
1962
|
-
file?: any;
|
|
1963
|
-
refUid?: string | undefined;
|
|
1964
|
-
format?: string | undefined;
|
|
1965
2477
|
nullable?: boolean | undefined;
|
|
2478
|
+
format?: string | undefined;
|
|
2479
|
+
file?: {
|
|
2480
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2481
|
+
type: string;
|
|
2482
|
+
name: string;
|
|
2483
|
+
size: number;
|
|
2484
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2485
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2486
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2487
|
+
lastModified: number;
|
|
2488
|
+
webkitRelativePath: string;
|
|
2489
|
+
} | undefined;
|
|
2490
|
+
refUid?: string | undefined;
|
|
1966
2491
|
}[];
|
|
1967
2492
|
query: {
|
|
1968
2493
|
value: string;
|
|
@@ -1975,10 +2500,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1975
2500
|
required?: boolean | undefined;
|
|
1976
2501
|
description?: string | undefined;
|
|
1977
2502
|
enum?: string[] | undefined;
|
|
1978
|
-
file?: any;
|
|
1979
|
-
refUid?: string | undefined;
|
|
1980
|
-
format?: string | undefined;
|
|
1981
2503
|
nullable?: boolean | undefined;
|
|
2504
|
+
format?: string | undefined;
|
|
2505
|
+
file?: {
|
|
2506
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2507
|
+
type: string;
|
|
2508
|
+
name: string;
|
|
2509
|
+
size: number;
|
|
2510
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2511
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2512
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2513
|
+
lastModified: number;
|
|
2514
|
+
webkitRelativePath: string;
|
|
2515
|
+
} | undefined;
|
|
2516
|
+
refUid?: string | undefined;
|
|
1982
2517
|
}[];
|
|
1983
2518
|
headers: {
|
|
1984
2519
|
value: string;
|
|
@@ -1991,10 +2526,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1991
2526
|
required?: boolean | undefined;
|
|
1992
2527
|
description?: string | undefined;
|
|
1993
2528
|
enum?: string[] | undefined;
|
|
1994
|
-
file?: any;
|
|
1995
|
-
refUid?: string | undefined;
|
|
1996
|
-
format?: string | undefined;
|
|
1997
2529
|
nullable?: boolean | undefined;
|
|
2530
|
+
format?: string | undefined;
|
|
2531
|
+
file?: {
|
|
2532
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2533
|
+
type: string;
|
|
2534
|
+
name: string;
|
|
2535
|
+
size: number;
|
|
2536
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2537
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2538
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2539
|
+
lastModified: number;
|
|
2540
|
+
webkitRelativePath: string;
|
|
2541
|
+
} | undefined;
|
|
2542
|
+
refUid?: string | undefined;
|
|
1998
2543
|
}[];
|
|
1999
2544
|
cookies: {
|
|
2000
2545
|
value: string;
|
|
@@ -2007,10 +2552,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2007
2552
|
required?: boolean | undefined;
|
|
2008
2553
|
description?: string | undefined;
|
|
2009
2554
|
enum?: string[] | undefined;
|
|
2010
|
-
file?: any;
|
|
2011
|
-
refUid?: string | undefined;
|
|
2012
|
-
format?: string | undefined;
|
|
2013
2555
|
nullable?: boolean | undefined;
|
|
2556
|
+
format?: string | undefined;
|
|
2557
|
+
file?: {
|
|
2558
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2559
|
+
type: string;
|
|
2560
|
+
name: string;
|
|
2561
|
+
size: number;
|
|
2562
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2563
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2564
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2565
|
+
lastModified: number;
|
|
2566
|
+
webkitRelativePath: string;
|
|
2567
|
+
} | undefined;
|
|
2568
|
+
refUid?: string | undefined;
|
|
2014
2569
|
}[];
|
|
2015
2570
|
};
|
|
2016
2571
|
auth: Record<string, any>;
|
|
@@ -2022,7 +2577,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2022
2577
|
body: {
|
|
2023
2578
|
raw: {
|
|
2024
2579
|
value: string;
|
|
2025
|
-
encoding: "
|
|
2580
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2026
2581
|
};
|
|
2027
2582
|
formData: {
|
|
2028
2583
|
value: {
|
|
@@ -2036,15 +2591,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2036
2591
|
required?: boolean | undefined;
|
|
2037
2592
|
description?: string | undefined;
|
|
2038
2593
|
enum?: string[] | undefined;
|
|
2039
|
-
file?: any;
|
|
2040
|
-
refUid?: string | undefined;
|
|
2041
|
-
format?: string | undefined;
|
|
2042
2594
|
nullable?: boolean | undefined;
|
|
2595
|
+
format?: string | undefined;
|
|
2596
|
+
file?: {
|
|
2597
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2598
|
+
type: string;
|
|
2599
|
+
name: string;
|
|
2600
|
+
size: number;
|
|
2601
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2602
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2603
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2604
|
+
lastModified: number;
|
|
2605
|
+
webkitRelativePath: string;
|
|
2606
|
+
} | undefined;
|
|
2607
|
+
refUid?: string | undefined;
|
|
2043
2608
|
}[];
|
|
2044
2609
|
encoding: "form-data" | "urlencoded";
|
|
2045
2610
|
};
|
|
2046
2611
|
activeBody: "raw" | "formData" | "binary";
|
|
2047
|
-
binary?:
|
|
2612
|
+
binary?: {
|
|
2613
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2614
|
+
type: string;
|
|
2615
|
+
name: string;
|
|
2616
|
+
size: number;
|
|
2617
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2618
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2619
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2620
|
+
lastModified: number;
|
|
2621
|
+
webkitRelativePath: string;
|
|
2622
|
+
} | undefined;
|
|
2048
2623
|
};
|
|
2049
2624
|
parameters: {
|
|
2050
2625
|
path: {
|
|
@@ -2058,10 +2633,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2058
2633
|
required?: boolean | undefined;
|
|
2059
2634
|
description?: string | undefined;
|
|
2060
2635
|
enum?: string[] | undefined;
|
|
2061
|
-
file?: any;
|
|
2062
|
-
refUid?: string | undefined;
|
|
2063
|
-
format?: string | undefined;
|
|
2064
2636
|
nullable?: boolean | undefined;
|
|
2637
|
+
format?: string | undefined;
|
|
2638
|
+
file?: {
|
|
2639
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2640
|
+
type: string;
|
|
2641
|
+
name: string;
|
|
2642
|
+
size: number;
|
|
2643
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2644
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2645
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2646
|
+
lastModified: number;
|
|
2647
|
+
webkitRelativePath: string;
|
|
2648
|
+
} | undefined;
|
|
2649
|
+
refUid?: string | undefined;
|
|
2065
2650
|
}[];
|
|
2066
2651
|
query: {
|
|
2067
2652
|
value: string;
|
|
@@ -2074,10 +2659,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2074
2659
|
required?: boolean | undefined;
|
|
2075
2660
|
description?: string | undefined;
|
|
2076
2661
|
enum?: string[] | undefined;
|
|
2077
|
-
file?: any;
|
|
2078
|
-
refUid?: string | undefined;
|
|
2079
|
-
format?: string | undefined;
|
|
2080
2662
|
nullable?: boolean | undefined;
|
|
2663
|
+
format?: string | undefined;
|
|
2664
|
+
file?: {
|
|
2665
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2666
|
+
type: string;
|
|
2667
|
+
name: string;
|
|
2668
|
+
size: number;
|
|
2669
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2670
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2671
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2672
|
+
lastModified: number;
|
|
2673
|
+
webkitRelativePath: string;
|
|
2674
|
+
} | undefined;
|
|
2675
|
+
refUid?: string | undefined;
|
|
2081
2676
|
}[];
|
|
2082
2677
|
headers: {
|
|
2083
2678
|
value: string;
|
|
@@ -2090,10 +2685,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2090
2685
|
required?: boolean | undefined;
|
|
2091
2686
|
description?: string | undefined;
|
|
2092
2687
|
enum?: string[] | undefined;
|
|
2093
|
-
file?: any;
|
|
2094
|
-
refUid?: string | undefined;
|
|
2095
|
-
format?: string | undefined;
|
|
2096
2688
|
nullable?: boolean | undefined;
|
|
2689
|
+
format?: string | undefined;
|
|
2690
|
+
file?: {
|
|
2691
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2692
|
+
type: string;
|
|
2693
|
+
name: string;
|
|
2694
|
+
size: number;
|
|
2695
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2696
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2697
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2698
|
+
lastModified: number;
|
|
2699
|
+
webkitRelativePath: string;
|
|
2700
|
+
} | undefined;
|
|
2701
|
+
refUid?: string | undefined;
|
|
2097
2702
|
}[];
|
|
2098
2703
|
cookies: {
|
|
2099
2704
|
value: string;
|
|
@@ -2106,10 +2711,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2106
2711
|
required?: boolean | undefined;
|
|
2107
2712
|
description?: string | undefined;
|
|
2108
2713
|
enum?: string[] | undefined;
|
|
2109
|
-
file?: any;
|
|
2110
|
-
refUid?: string | undefined;
|
|
2111
|
-
format?: string | undefined;
|
|
2112
2714
|
nullable?: boolean | undefined;
|
|
2715
|
+
format?: string | undefined;
|
|
2716
|
+
file?: {
|
|
2717
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2718
|
+
type: string;
|
|
2719
|
+
name: string;
|
|
2720
|
+
size: number;
|
|
2721
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2722
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2723
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2724
|
+
lastModified: number;
|
|
2725
|
+
webkitRelativePath: string;
|
|
2726
|
+
} | undefined;
|
|
2727
|
+
refUid?: string | undefined;
|
|
2113
2728
|
}[];
|
|
2114
2729
|
};
|
|
2115
2730
|
auth: Record<string, any>;
|
|
@@ -2121,7 +2736,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2121
2736
|
body: {
|
|
2122
2737
|
raw: {
|
|
2123
2738
|
value: string;
|
|
2124
|
-
encoding: "
|
|
2739
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2125
2740
|
};
|
|
2126
2741
|
formData: {
|
|
2127
2742
|
value: {
|
|
@@ -2135,15 +2750,35 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2135
2750
|
required?: boolean | undefined;
|
|
2136
2751
|
description?: string | undefined;
|
|
2137
2752
|
enum?: string[] | undefined;
|
|
2138
|
-
file?: any;
|
|
2139
|
-
refUid?: string | undefined;
|
|
2140
|
-
format?: string | undefined;
|
|
2141
2753
|
nullable?: boolean | undefined;
|
|
2754
|
+
format?: string | undefined;
|
|
2755
|
+
file?: {
|
|
2756
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2757
|
+
type: string;
|
|
2758
|
+
name: string;
|
|
2759
|
+
size: number;
|
|
2760
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2761
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2762
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2763
|
+
lastModified: number;
|
|
2764
|
+
webkitRelativePath: string;
|
|
2765
|
+
} | undefined;
|
|
2766
|
+
refUid?: string | undefined;
|
|
2142
2767
|
}[];
|
|
2143
2768
|
encoding: "form-data" | "urlencoded";
|
|
2144
2769
|
};
|
|
2145
2770
|
activeBody: "raw" | "formData" | "binary";
|
|
2146
|
-
binary?:
|
|
2771
|
+
binary?: {
|
|
2772
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2773
|
+
type: string;
|
|
2774
|
+
name: string;
|
|
2775
|
+
size: number;
|
|
2776
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2777
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2778
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2779
|
+
lastModified: number;
|
|
2780
|
+
webkitRelativePath: string;
|
|
2781
|
+
} | undefined;
|
|
2147
2782
|
};
|
|
2148
2783
|
parameters: {
|
|
2149
2784
|
path: {
|
|
@@ -2157,10 +2792,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2157
2792
|
required?: boolean | undefined;
|
|
2158
2793
|
description?: string | undefined;
|
|
2159
2794
|
enum?: string[] | undefined;
|
|
2160
|
-
file?: any;
|
|
2161
|
-
refUid?: string | undefined;
|
|
2162
|
-
format?: string | undefined;
|
|
2163
2795
|
nullable?: boolean | undefined;
|
|
2796
|
+
format?: string | undefined;
|
|
2797
|
+
file?: {
|
|
2798
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2799
|
+
type: string;
|
|
2800
|
+
name: string;
|
|
2801
|
+
size: number;
|
|
2802
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2803
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2804
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2805
|
+
lastModified: number;
|
|
2806
|
+
webkitRelativePath: string;
|
|
2807
|
+
} | undefined;
|
|
2808
|
+
refUid?: string | undefined;
|
|
2164
2809
|
}[];
|
|
2165
2810
|
query: {
|
|
2166
2811
|
value: string;
|
|
@@ -2173,10 +2818,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2173
2818
|
required?: boolean | undefined;
|
|
2174
2819
|
description?: string | undefined;
|
|
2175
2820
|
enum?: string[] | undefined;
|
|
2176
|
-
file?: any;
|
|
2177
|
-
refUid?: string | undefined;
|
|
2178
|
-
format?: string | undefined;
|
|
2179
2821
|
nullable?: boolean | undefined;
|
|
2822
|
+
format?: string | undefined;
|
|
2823
|
+
file?: {
|
|
2824
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2825
|
+
type: string;
|
|
2826
|
+
name: string;
|
|
2827
|
+
size: number;
|
|
2828
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2829
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2830
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2831
|
+
lastModified: number;
|
|
2832
|
+
webkitRelativePath: string;
|
|
2833
|
+
} | undefined;
|
|
2834
|
+
refUid?: string | undefined;
|
|
2180
2835
|
}[];
|
|
2181
2836
|
headers: {
|
|
2182
2837
|
value: string;
|
|
@@ -2189,10 +2844,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2189
2844
|
required?: boolean | undefined;
|
|
2190
2845
|
description?: string | undefined;
|
|
2191
2846
|
enum?: string[] | undefined;
|
|
2192
|
-
file?: any;
|
|
2193
|
-
refUid?: string | undefined;
|
|
2194
|
-
format?: string | undefined;
|
|
2195
2847
|
nullable?: boolean | undefined;
|
|
2848
|
+
format?: string | undefined;
|
|
2849
|
+
file?: {
|
|
2850
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2851
|
+
type: string;
|
|
2852
|
+
name: string;
|
|
2853
|
+
size: number;
|
|
2854
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2855
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2856
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2857
|
+
lastModified: number;
|
|
2858
|
+
webkitRelativePath: string;
|
|
2859
|
+
} | undefined;
|
|
2860
|
+
refUid?: string | undefined;
|
|
2196
2861
|
}[];
|
|
2197
2862
|
cookies: {
|
|
2198
2863
|
value: string;
|
|
@@ -2205,10 +2870,20 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2205
2870
|
required?: boolean | undefined;
|
|
2206
2871
|
description?: string | undefined;
|
|
2207
2872
|
enum?: string[] | undefined;
|
|
2208
|
-
file?: any;
|
|
2209
|
-
refUid?: string | undefined;
|
|
2210
|
-
format?: string | undefined;
|
|
2211
2873
|
nullable?: boolean | undefined;
|
|
2874
|
+
format?: string | undefined;
|
|
2875
|
+
file?: {
|
|
2876
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2877
|
+
type: string;
|
|
2878
|
+
name: string;
|
|
2879
|
+
size: number;
|
|
2880
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2881
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2882
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2883
|
+
lastModified: number;
|
|
2884
|
+
webkitRelativePath: string;
|
|
2885
|
+
} | undefined;
|
|
2886
|
+
refUid?: string | undefined;
|
|
2212
2887
|
}[];
|
|
2213
2888
|
};
|
|
2214
2889
|
auth: Record<string, any>;
|
|
@@ -2864,6 +3539,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2864
3539
|
isReadOnly: boolean;
|
|
2865
3540
|
collectionUids: string[];
|
|
2866
3541
|
environmentUids: string[];
|
|
3542
|
+
activeEnvironmentId: string;
|
|
2867
3543
|
cookieUids: string[];
|
|
2868
3544
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2869
3545
|
hotKeyConfig?: {
|
|
@@ -2882,6 +3558,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2882
3558
|
isReadOnly: boolean;
|
|
2883
3559
|
collectionUids: string[];
|
|
2884
3560
|
environmentUids: string[];
|
|
3561
|
+
activeEnvironmentId: string;
|
|
2885
3562
|
cookieUids: string[];
|
|
2886
3563
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2887
3564
|
hotKeyConfig?: {
|
|
@@ -2902,6 +3579,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2902
3579
|
isReadOnly: boolean;
|
|
2903
3580
|
collectionUids: string[];
|
|
2904
3581
|
environmentUids: string[];
|
|
3582
|
+
activeEnvironmentId: string;
|
|
2905
3583
|
cookieUids: string[];
|
|
2906
3584
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2907
3585
|
hotKeyConfig?: {
|
|
@@ -2913,13 +3591,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2913
3591
|
} | undefined;
|
|
2914
3592
|
proxyUrl?: string | undefined;
|
|
2915
3593
|
}) => void;
|
|
2916
|
-
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" ? {
|
|
3594
|
+
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" ? {
|
|
2917
3595
|
uid: string;
|
|
2918
3596
|
name: string;
|
|
2919
3597
|
description: string;
|
|
2920
3598
|
isReadOnly: boolean;
|
|
2921
3599
|
collectionUids: string[];
|
|
2922
3600
|
environmentUids: string[];
|
|
3601
|
+
activeEnvironmentId: string;
|
|
2923
3602
|
cookieUids: string[];
|
|
2924
3603
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2925
3604
|
hotKeyConfig?: {
|
|
@@ -2930,13 +3609,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2930
3609
|
}>> | undefined;
|
|
2931
3610
|
} | undefined;
|
|
2932
3611
|
proxyUrl?: string | undefined;
|
|
2933
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3612
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2934
3613
|
uid: string;
|
|
2935
3614
|
name: string;
|
|
2936
3615
|
description: string;
|
|
2937
3616
|
isReadOnly: boolean;
|
|
2938
3617
|
collectionUids: string[];
|
|
2939
3618
|
environmentUids: string[];
|
|
3619
|
+
activeEnvironmentId: string;
|
|
2940
3620
|
cookieUids: string[];
|
|
2941
3621
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2942
3622
|
hotKeyConfig?: {
|
|
@@ -2954,6 +3634,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2954
3634
|
isReadOnly: boolean;
|
|
2955
3635
|
collectionUids: string[];
|
|
2956
3636
|
environmentUids: string[];
|
|
3637
|
+
activeEnvironmentId: string;
|
|
2957
3638
|
cookieUids: string[];
|
|
2958
3639
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2959
3640
|
hotKeyConfig?: {
|
|
@@ -2965,13 +3646,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2965
3646
|
} | undefined;
|
|
2966
3647
|
proxyUrl?: string | undefined;
|
|
2967
3648
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2968
|
-
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" ? {
|
|
3649
|
+
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" ? {
|
|
2969
3650
|
uid: string;
|
|
2970
3651
|
name: string;
|
|
2971
3652
|
description: string;
|
|
2972
3653
|
isReadOnly: boolean;
|
|
2973
3654
|
collectionUids: string[];
|
|
2974
3655
|
environmentUids: string[];
|
|
3656
|
+
activeEnvironmentId: string;
|
|
2975
3657
|
cookieUids: string[];
|
|
2976
3658
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2977
3659
|
hotKeyConfig?: {
|
|
@@ -2982,13 +3664,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2982
3664
|
}>> | undefined;
|
|
2983
3665
|
} | undefined;
|
|
2984
3666
|
proxyUrl?: string | undefined;
|
|
2985
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
3667
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2986
3668
|
uid: string;
|
|
2987
3669
|
name: string;
|
|
2988
3670
|
description: string;
|
|
2989
3671
|
isReadOnly: boolean;
|
|
2990
3672
|
collectionUids: string[];
|
|
2991
3673
|
environmentUids: string[];
|
|
3674
|
+
activeEnvironmentId: string;
|
|
2992
3675
|
cookieUids: string[];
|
|
2993
3676
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2994
3677
|
hotKeyConfig?: {
|
|
@@ -3006,6 +3689,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
3006
3689
|
isReadOnly: boolean;
|
|
3007
3690
|
collectionUids: string[];
|
|
3008
3691
|
environmentUids: string[];
|
|
3692
|
+
activeEnvironmentId: string;
|
|
3009
3693
|
cookieUids: string[];
|
|
3010
3694
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3011
3695
|
hotKeyConfig?: {
|