@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
|
@@ -24,6 +24,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
24
24
|
isReadOnly: boolean;
|
|
25
25
|
collectionUids: string[];
|
|
26
26
|
environmentUids: string[];
|
|
27
|
+
activeEnvironmentId: string;
|
|
27
28
|
cookieUids: string[];
|
|
28
29
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
29
30
|
hotKeyConfig?: {
|
|
@@ -113,7 +114,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
113
114
|
body: {
|
|
114
115
|
raw: {
|
|
115
116
|
value: string;
|
|
116
|
-
encoding: "
|
|
117
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
117
118
|
};
|
|
118
119
|
formData: {
|
|
119
120
|
value: {
|
|
@@ -127,15 +128,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
127
128
|
required?: boolean | undefined;
|
|
128
129
|
description?: string | undefined;
|
|
129
130
|
enum?: string[] | undefined;
|
|
130
|
-
file?: any;
|
|
131
|
-
refUid?: string | undefined;
|
|
132
|
-
format?: string | undefined;
|
|
133
131
|
nullable?: boolean | undefined;
|
|
132
|
+
format?: string | undefined;
|
|
133
|
+
file?: {
|
|
134
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
135
|
+
type: string;
|
|
136
|
+
name: string;
|
|
137
|
+
size: number;
|
|
138
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
139
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
140
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
141
|
+
lastModified: number;
|
|
142
|
+
webkitRelativePath: string;
|
|
143
|
+
} | undefined;
|
|
144
|
+
refUid?: string | undefined;
|
|
134
145
|
}[];
|
|
135
146
|
encoding: "form-data" | "urlencoded";
|
|
136
147
|
};
|
|
137
148
|
activeBody: "raw" | "formData" | "binary";
|
|
138
|
-
binary?:
|
|
149
|
+
binary?: {
|
|
150
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
151
|
+
type: string;
|
|
152
|
+
name: string;
|
|
153
|
+
size: number;
|
|
154
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
155
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
156
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
157
|
+
lastModified: number;
|
|
158
|
+
webkitRelativePath: string;
|
|
159
|
+
} | undefined;
|
|
139
160
|
};
|
|
140
161
|
parameters: {
|
|
141
162
|
path: {
|
|
@@ -149,10 +170,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
149
170
|
required?: boolean | undefined;
|
|
150
171
|
description?: string | undefined;
|
|
151
172
|
enum?: string[] | undefined;
|
|
152
|
-
file?: any;
|
|
153
|
-
refUid?: string | undefined;
|
|
154
|
-
format?: string | undefined;
|
|
155
173
|
nullable?: boolean | undefined;
|
|
174
|
+
format?: string | undefined;
|
|
175
|
+
file?: {
|
|
176
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
177
|
+
type: string;
|
|
178
|
+
name: string;
|
|
179
|
+
size: number;
|
|
180
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
181
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
182
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
183
|
+
lastModified: number;
|
|
184
|
+
webkitRelativePath: string;
|
|
185
|
+
} | undefined;
|
|
186
|
+
refUid?: string | undefined;
|
|
156
187
|
}[];
|
|
157
188
|
query: {
|
|
158
189
|
value: string;
|
|
@@ -165,10 +196,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
165
196
|
required?: boolean | undefined;
|
|
166
197
|
description?: string | undefined;
|
|
167
198
|
enum?: string[] | undefined;
|
|
168
|
-
file?: any;
|
|
169
|
-
refUid?: string | undefined;
|
|
170
|
-
format?: string | undefined;
|
|
171
199
|
nullable?: boolean | undefined;
|
|
200
|
+
format?: string | undefined;
|
|
201
|
+
file?: {
|
|
202
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
203
|
+
type: string;
|
|
204
|
+
name: string;
|
|
205
|
+
size: number;
|
|
206
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
207
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
208
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
209
|
+
lastModified: number;
|
|
210
|
+
webkitRelativePath: string;
|
|
211
|
+
} | undefined;
|
|
212
|
+
refUid?: string | undefined;
|
|
172
213
|
}[];
|
|
173
214
|
headers: {
|
|
174
215
|
value: string;
|
|
@@ -181,10 +222,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
181
222
|
required?: boolean | undefined;
|
|
182
223
|
description?: string | undefined;
|
|
183
224
|
enum?: string[] | undefined;
|
|
184
|
-
file?: any;
|
|
185
|
-
refUid?: string | undefined;
|
|
186
|
-
format?: string | undefined;
|
|
187
225
|
nullable?: boolean | undefined;
|
|
226
|
+
format?: string | undefined;
|
|
227
|
+
file?: {
|
|
228
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
229
|
+
type: string;
|
|
230
|
+
name: string;
|
|
231
|
+
size: number;
|
|
232
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
233
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
234
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
235
|
+
lastModified: number;
|
|
236
|
+
webkitRelativePath: string;
|
|
237
|
+
} | undefined;
|
|
238
|
+
refUid?: string | undefined;
|
|
188
239
|
}[];
|
|
189
240
|
cookies: {
|
|
190
241
|
value: string;
|
|
@@ -197,10 +248,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
197
248
|
required?: boolean | undefined;
|
|
198
249
|
description?: string | undefined;
|
|
199
250
|
enum?: string[] | undefined;
|
|
200
|
-
file?: any;
|
|
201
|
-
refUid?: string | undefined;
|
|
202
|
-
format?: string | undefined;
|
|
203
251
|
nullable?: boolean | undefined;
|
|
252
|
+
format?: string | undefined;
|
|
253
|
+
file?: {
|
|
254
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
255
|
+
type: string;
|
|
256
|
+
name: string;
|
|
257
|
+
size: number;
|
|
258
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
259
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
260
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
261
|
+
lastModified: number;
|
|
262
|
+
webkitRelativePath: string;
|
|
263
|
+
} | undefined;
|
|
264
|
+
refUid?: string | undefined;
|
|
204
265
|
}[];
|
|
205
266
|
};
|
|
206
267
|
auth: Record<string, any>;
|
|
@@ -334,7 +395,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
334
395
|
body: {
|
|
335
396
|
raw: {
|
|
336
397
|
value: string;
|
|
337
|
-
encoding: "
|
|
398
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
338
399
|
};
|
|
339
400
|
formData: {
|
|
340
401
|
value: {
|
|
@@ -348,15 +409,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
348
409
|
required?: boolean | undefined;
|
|
349
410
|
description?: string | undefined;
|
|
350
411
|
enum?: string[] | undefined;
|
|
351
|
-
file?: any;
|
|
352
|
-
refUid?: string | undefined;
|
|
353
|
-
format?: string | undefined;
|
|
354
412
|
nullable?: boolean | undefined;
|
|
413
|
+
format?: string | undefined;
|
|
414
|
+
file?: {
|
|
415
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
416
|
+
type: string;
|
|
417
|
+
name: string;
|
|
418
|
+
size: number;
|
|
419
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
420
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
421
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
422
|
+
lastModified: number;
|
|
423
|
+
webkitRelativePath: string;
|
|
424
|
+
} | undefined;
|
|
425
|
+
refUid?: string | undefined;
|
|
355
426
|
}[];
|
|
356
427
|
encoding: "form-data" | "urlencoded";
|
|
357
428
|
};
|
|
358
429
|
activeBody: "raw" | "formData" | "binary";
|
|
359
|
-
binary?:
|
|
430
|
+
binary?: {
|
|
431
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
432
|
+
type: string;
|
|
433
|
+
name: string;
|
|
434
|
+
size: number;
|
|
435
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
436
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
437
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
438
|
+
lastModified: number;
|
|
439
|
+
webkitRelativePath: string;
|
|
440
|
+
} | undefined;
|
|
360
441
|
};
|
|
361
442
|
parameters: {
|
|
362
443
|
path: {
|
|
@@ -370,10 +451,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
370
451
|
required?: boolean | undefined;
|
|
371
452
|
description?: string | undefined;
|
|
372
453
|
enum?: string[] | undefined;
|
|
373
|
-
file?: any;
|
|
374
|
-
refUid?: string | undefined;
|
|
375
|
-
format?: string | undefined;
|
|
376
454
|
nullable?: boolean | undefined;
|
|
455
|
+
format?: string | undefined;
|
|
456
|
+
file?: {
|
|
457
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
458
|
+
type: string;
|
|
459
|
+
name: string;
|
|
460
|
+
size: number;
|
|
461
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
462
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
463
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
464
|
+
lastModified: number;
|
|
465
|
+
webkitRelativePath: string;
|
|
466
|
+
} | undefined;
|
|
467
|
+
refUid?: string | undefined;
|
|
377
468
|
}[];
|
|
378
469
|
query: {
|
|
379
470
|
value: string;
|
|
@@ -386,10 +477,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
386
477
|
required?: boolean | undefined;
|
|
387
478
|
description?: string | undefined;
|
|
388
479
|
enum?: string[] | undefined;
|
|
389
|
-
file?: any;
|
|
390
|
-
refUid?: string | undefined;
|
|
391
|
-
format?: string | undefined;
|
|
392
480
|
nullable?: boolean | undefined;
|
|
481
|
+
format?: string | undefined;
|
|
482
|
+
file?: {
|
|
483
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
484
|
+
type: string;
|
|
485
|
+
name: string;
|
|
486
|
+
size: number;
|
|
487
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
488
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
489
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
490
|
+
lastModified: number;
|
|
491
|
+
webkitRelativePath: string;
|
|
492
|
+
} | undefined;
|
|
493
|
+
refUid?: string | undefined;
|
|
393
494
|
}[];
|
|
394
495
|
headers: {
|
|
395
496
|
value: string;
|
|
@@ -402,10 +503,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
402
503
|
required?: boolean | undefined;
|
|
403
504
|
description?: string | undefined;
|
|
404
505
|
enum?: string[] | undefined;
|
|
405
|
-
file?: any;
|
|
406
|
-
refUid?: string | undefined;
|
|
407
|
-
format?: string | undefined;
|
|
408
506
|
nullable?: boolean | undefined;
|
|
507
|
+
format?: string | undefined;
|
|
508
|
+
file?: {
|
|
509
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
510
|
+
type: string;
|
|
511
|
+
name: string;
|
|
512
|
+
size: number;
|
|
513
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
514
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
515
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
516
|
+
lastModified: number;
|
|
517
|
+
webkitRelativePath: string;
|
|
518
|
+
} | undefined;
|
|
519
|
+
refUid?: string | undefined;
|
|
409
520
|
}[];
|
|
410
521
|
cookies: {
|
|
411
522
|
value: string;
|
|
@@ -418,10 +529,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
418
529
|
required?: boolean | undefined;
|
|
419
530
|
description?: string | undefined;
|
|
420
531
|
enum?: string[] | undefined;
|
|
421
|
-
file?: any;
|
|
422
|
-
refUid?: string | undefined;
|
|
423
|
-
format?: string | undefined;
|
|
424
532
|
nullable?: boolean | undefined;
|
|
533
|
+
format?: string | undefined;
|
|
534
|
+
file?: {
|
|
535
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
536
|
+
type: string;
|
|
537
|
+
name: string;
|
|
538
|
+
size: number;
|
|
539
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
540
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
541
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
542
|
+
lastModified: number;
|
|
543
|
+
webkitRelativePath: string;
|
|
544
|
+
} | undefined;
|
|
545
|
+
refUid?: string | undefined;
|
|
425
546
|
}[];
|
|
426
547
|
};
|
|
427
548
|
auth: Record<string, any>;
|
|
@@ -524,6 +645,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
524
645
|
isReadOnly: boolean;
|
|
525
646
|
collectionUids: string[];
|
|
526
647
|
environmentUids: string[];
|
|
648
|
+
activeEnvironmentId: string;
|
|
527
649
|
cookieUids: string[];
|
|
528
650
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
529
651
|
hotKeyConfig?: {
|
|
@@ -591,11 +713,22 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
591
713
|
key: string;
|
|
592
714
|
value: string;
|
|
593
715
|
} | {
|
|
594
|
-
_scalarEnvId:
|
|
716
|
+
_scalarEnvId: string;
|
|
595
717
|
key: string;
|
|
596
718
|
value: unknown;
|
|
597
719
|
})[]>;
|
|
598
720
|
activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
|
|
721
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
722
|
+
uid: string;
|
|
723
|
+
name: string;
|
|
724
|
+
color: string;
|
|
725
|
+
raw: string;
|
|
726
|
+
parsed: {
|
|
727
|
+
value: string;
|
|
728
|
+
key: string;
|
|
729
|
+
}[];
|
|
730
|
+
isDefault?: boolean | undefined;
|
|
731
|
+
}>;
|
|
599
732
|
modalState: {
|
|
600
733
|
open: boolean;
|
|
601
734
|
show: () => void;
|
|
@@ -606,7 +739,9 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
606
739
|
sidebarWidth: import("vue").Ref<string>;
|
|
607
740
|
setSidebarWidth: (width: string) => void;
|
|
608
741
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
609
|
-
importSpecFile: (_spec: string |
|
|
742
|
+
importSpecFile: (_spec: string | {
|
|
743
|
+
[x: string]: any;
|
|
744
|
+
}, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
610
745
|
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
611
746
|
cookieMutators: {
|
|
612
747
|
add: (item: {
|
|
@@ -1262,7 +1397,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1262
1397
|
body: {
|
|
1263
1398
|
raw: {
|
|
1264
1399
|
value: string;
|
|
1265
|
-
encoding: "
|
|
1400
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1266
1401
|
};
|
|
1267
1402
|
formData: {
|
|
1268
1403
|
value: {
|
|
@@ -1276,15 +1411,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1276
1411
|
required?: boolean | undefined;
|
|
1277
1412
|
description?: string | undefined;
|
|
1278
1413
|
enum?: string[] | undefined;
|
|
1279
|
-
file?: any;
|
|
1280
|
-
refUid?: string | undefined;
|
|
1281
|
-
format?: string | undefined;
|
|
1282
1414
|
nullable?: boolean | undefined;
|
|
1415
|
+
format?: string | undefined;
|
|
1416
|
+
file?: {
|
|
1417
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1418
|
+
type: string;
|
|
1419
|
+
name: string;
|
|
1420
|
+
size: number;
|
|
1421
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1422
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1423
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1424
|
+
lastModified: number;
|
|
1425
|
+
webkitRelativePath: string;
|
|
1426
|
+
} | undefined;
|
|
1427
|
+
refUid?: string | undefined;
|
|
1283
1428
|
}[];
|
|
1284
1429
|
encoding: "form-data" | "urlencoded";
|
|
1285
1430
|
};
|
|
1286
1431
|
activeBody: "raw" | "formData" | "binary";
|
|
1287
|
-
binary?:
|
|
1432
|
+
binary?: {
|
|
1433
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1434
|
+
type: string;
|
|
1435
|
+
name: string;
|
|
1436
|
+
size: number;
|
|
1437
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1438
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1439
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1440
|
+
lastModified: number;
|
|
1441
|
+
webkitRelativePath: string;
|
|
1442
|
+
} | undefined;
|
|
1288
1443
|
};
|
|
1289
1444
|
parameters: {
|
|
1290
1445
|
path: {
|
|
@@ -1298,10 +1453,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1298
1453
|
required?: boolean | undefined;
|
|
1299
1454
|
description?: string | undefined;
|
|
1300
1455
|
enum?: string[] | undefined;
|
|
1301
|
-
file?: any;
|
|
1302
|
-
refUid?: string | undefined;
|
|
1303
|
-
format?: string | undefined;
|
|
1304
1456
|
nullable?: boolean | undefined;
|
|
1457
|
+
format?: string | undefined;
|
|
1458
|
+
file?: {
|
|
1459
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1460
|
+
type: string;
|
|
1461
|
+
name: string;
|
|
1462
|
+
size: number;
|
|
1463
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1464
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1465
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1466
|
+
lastModified: number;
|
|
1467
|
+
webkitRelativePath: string;
|
|
1468
|
+
} | undefined;
|
|
1469
|
+
refUid?: string | undefined;
|
|
1305
1470
|
}[];
|
|
1306
1471
|
query: {
|
|
1307
1472
|
value: string;
|
|
@@ -1314,10 +1479,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1314
1479
|
required?: boolean | undefined;
|
|
1315
1480
|
description?: string | undefined;
|
|
1316
1481
|
enum?: string[] | undefined;
|
|
1317
|
-
file?: any;
|
|
1318
|
-
refUid?: string | undefined;
|
|
1319
|
-
format?: string | undefined;
|
|
1320
1482
|
nullable?: boolean | undefined;
|
|
1483
|
+
format?: string | undefined;
|
|
1484
|
+
file?: {
|
|
1485
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1486
|
+
type: string;
|
|
1487
|
+
name: string;
|
|
1488
|
+
size: number;
|
|
1489
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1490
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1491
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1492
|
+
lastModified: number;
|
|
1493
|
+
webkitRelativePath: string;
|
|
1494
|
+
} | undefined;
|
|
1495
|
+
refUid?: string | undefined;
|
|
1321
1496
|
}[];
|
|
1322
1497
|
headers: {
|
|
1323
1498
|
value: string;
|
|
@@ -1330,10 +1505,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1330
1505
|
required?: boolean | undefined;
|
|
1331
1506
|
description?: string | undefined;
|
|
1332
1507
|
enum?: string[] | undefined;
|
|
1333
|
-
file?: any;
|
|
1334
|
-
refUid?: string | undefined;
|
|
1335
|
-
format?: string | undefined;
|
|
1336
1508
|
nullable?: boolean | undefined;
|
|
1509
|
+
format?: string | undefined;
|
|
1510
|
+
file?: {
|
|
1511
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1512
|
+
type: string;
|
|
1513
|
+
name: string;
|
|
1514
|
+
size: number;
|
|
1515
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1516
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1517
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1518
|
+
lastModified: number;
|
|
1519
|
+
webkitRelativePath: string;
|
|
1520
|
+
} | undefined;
|
|
1521
|
+
refUid?: string | undefined;
|
|
1337
1522
|
}[];
|
|
1338
1523
|
cookies: {
|
|
1339
1524
|
value: string;
|
|
@@ -1346,10 +1531,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1346
1531
|
required?: boolean | undefined;
|
|
1347
1532
|
description?: string | undefined;
|
|
1348
1533
|
enum?: string[] | undefined;
|
|
1349
|
-
file?: any;
|
|
1350
|
-
refUid?: string | undefined;
|
|
1351
|
-
format?: string | undefined;
|
|
1352
1534
|
nullable?: boolean | undefined;
|
|
1535
|
+
format?: string | undefined;
|
|
1536
|
+
file?: {
|
|
1537
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1538
|
+
type: string;
|
|
1539
|
+
name: string;
|
|
1540
|
+
size: number;
|
|
1541
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1542
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1543
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1544
|
+
lastModified: number;
|
|
1545
|
+
webkitRelativePath: string;
|
|
1546
|
+
} | undefined;
|
|
1547
|
+
refUid?: string | undefined;
|
|
1353
1548
|
}[];
|
|
1354
1549
|
};
|
|
1355
1550
|
auth: Record<string, any>;
|
|
@@ -1362,7 +1557,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1362
1557
|
body: {
|
|
1363
1558
|
raw: {
|
|
1364
1559
|
value: string;
|
|
1365
|
-
encoding: "
|
|
1560
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1366
1561
|
};
|
|
1367
1562
|
formData: {
|
|
1368
1563
|
value: {
|
|
@@ -1376,15 +1571,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1376
1571
|
required?: boolean | undefined;
|
|
1377
1572
|
description?: string | undefined;
|
|
1378
1573
|
enum?: string[] | undefined;
|
|
1379
|
-
file?: any;
|
|
1380
|
-
refUid?: string | undefined;
|
|
1381
|
-
format?: string | undefined;
|
|
1382
1574
|
nullable?: boolean | undefined;
|
|
1575
|
+
format?: string | undefined;
|
|
1576
|
+
file?: {
|
|
1577
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1578
|
+
type: string;
|
|
1579
|
+
name: string;
|
|
1580
|
+
size: number;
|
|
1581
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1582
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1583
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1584
|
+
lastModified: number;
|
|
1585
|
+
webkitRelativePath: string;
|
|
1586
|
+
} | undefined;
|
|
1587
|
+
refUid?: string | undefined;
|
|
1383
1588
|
}[];
|
|
1384
1589
|
encoding: "form-data" | "urlencoded";
|
|
1385
1590
|
};
|
|
1386
1591
|
activeBody: "raw" | "formData" | "binary";
|
|
1387
|
-
binary?:
|
|
1592
|
+
binary?: {
|
|
1593
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1594
|
+
type: string;
|
|
1595
|
+
name: string;
|
|
1596
|
+
size: number;
|
|
1597
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1598
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1599
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1600
|
+
lastModified: number;
|
|
1601
|
+
webkitRelativePath: string;
|
|
1602
|
+
} | undefined;
|
|
1388
1603
|
};
|
|
1389
1604
|
parameters: {
|
|
1390
1605
|
path: {
|
|
@@ -1398,10 +1613,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1398
1613
|
required?: boolean | undefined;
|
|
1399
1614
|
description?: string | undefined;
|
|
1400
1615
|
enum?: string[] | undefined;
|
|
1401
|
-
file?: any;
|
|
1402
|
-
refUid?: string | undefined;
|
|
1403
|
-
format?: string | undefined;
|
|
1404
1616
|
nullable?: boolean | undefined;
|
|
1617
|
+
format?: string | undefined;
|
|
1618
|
+
file?: {
|
|
1619
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1620
|
+
type: string;
|
|
1621
|
+
name: string;
|
|
1622
|
+
size: number;
|
|
1623
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1624
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1625
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1626
|
+
lastModified: number;
|
|
1627
|
+
webkitRelativePath: string;
|
|
1628
|
+
} | undefined;
|
|
1629
|
+
refUid?: string | undefined;
|
|
1405
1630
|
}[];
|
|
1406
1631
|
query: {
|
|
1407
1632
|
value: string;
|
|
@@ -1414,10 +1639,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1414
1639
|
required?: boolean | undefined;
|
|
1415
1640
|
description?: string | undefined;
|
|
1416
1641
|
enum?: string[] | undefined;
|
|
1417
|
-
file?: any;
|
|
1418
|
-
refUid?: string | undefined;
|
|
1419
|
-
format?: string | undefined;
|
|
1420
1642
|
nullable?: boolean | undefined;
|
|
1643
|
+
format?: string | undefined;
|
|
1644
|
+
file?: {
|
|
1645
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1646
|
+
type: string;
|
|
1647
|
+
name: string;
|
|
1648
|
+
size: number;
|
|
1649
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1650
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1651
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1652
|
+
lastModified: number;
|
|
1653
|
+
webkitRelativePath: string;
|
|
1654
|
+
} | undefined;
|
|
1655
|
+
refUid?: string | undefined;
|
|
1421
1656
|
}[];
|
|
1422
1657
|
headers: {
|
|
1423
1658
|
value: string;
|
|
@@ -1430,10 +1665,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1430
1665
|
required?: boolean | undefined;
|
|
1431
1666
|
description?: string | undefined;
|
|
1432
1667
|
enum?: string[] | undefined;
|
|
1433
|
-
file?: any;
|
|
1434
|
-
refUid?: string | undefined;
|
|
1435
|
-
format?: string | undefined;
|
|
1436
1668
|
nullable?: boolean | undefined;
|
|
1669
|
+
format?: string | undefined;
|
|
1670
|
+
file?: {
|
|
1671
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1672
|
+
type: string;
|
|
1673
|
+
name: string;
|
|
1674
|
+
size: number;
|
|
1675
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1676
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1677
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1678
|
+
lastModified: number;
|
|
1679
|
+
webkitRelativePath: string;
|
|
1680
|
+
} | undefined;
|
|
1681
|
+
refUid?: string | undefined;
|
|
1437
1682
|
}[];
|
|
1438
1683
|
cookies: {
|
|
1439
1684
|
value: string;
|
|
@@ -1446,10 +1691,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1446
1691
|
required?: boolean | undefined;
|
|
1447
1692
|
description?: string | undefined;
|
|
1448
1693
|
enum?: string[] | undefined;
|
|
1449
|
-
file?: any;
|
|
1450
|
-
refUid?: string | undefined;
|
|
1451
|
-
format?: string | undefined;
|
|
1452
1694
|
nullable?: boolean | undefined;
|
|
1695
|
+
format?: string | undefined;
|
|
1696
|
+
file?: {
|
|
1697
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1698
|
+
type: string;
|
|
1699
|
+
name: string;
|
|
1700
|
+
size: number;
|
|
1701
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1702
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1703
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1704
|
+
lastModified: number;
|
|
1705
|
+
webkitRelativePath: string;
|
|
1706
|
+
} | undefined;
|
|
1707
|
+
refUid?: string | undefined;
|
|
1453
1708
|
}[];
|
|
1454
1709
|
};
|
|
1455
1710
|
auth: Record<string, any>;
|
|
@@ -1463,7 +1718,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1463
1718
|
body: {
|
|
1464
1719
|
raw: {
|
|
1465
1720
|
value: string;
|
|
1466
|
-
encoding: "
|
|
1721
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1467
1722
|
};
|
|
1468
1723
|
formData: {
|
|
1469
1724
|
value: {
|
|
@@ -1477,15 +1732,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1477
1732
|
required?: boolean | undefined;
|
|
1478
1733
|
description?: string | undefined;
|
|
1479
1734
|
enum?: string[] | undefined;
|
|
1480
|
-
file?: any;
|
|
1481
|
-
refUid?: string | undefined;
|
|
1482
|
-
format?: string | undefined;
|
|
1483
1735
|
nullable?: boolean | undefined;
|
|
1736
|
+
format?: string | undefined;
|
|
1737
|
+
file?: {
|
|
1738
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1739
|
+
type: string;
|
|
1740
|
+
name: string;
|
|
1741
|
+
size: number;
|
|
1742
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1743
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1744
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1745
|
+
lastModified: number;
|
|
1746
|
+
webkitRelativePath: string;
|
|
1747
|
+
} | undefined;
|
|
1748
|
+
refUid?: string | undefined;
|
|
1484
1749
|
}[];
|
|
1485
1750
|
encoding: "form-data" | "urlencoded";
|
|
1486
1751
|
};
|
|
1487
1752
|
activeBody: "raw" | "formData" | "binary";
|
|
1488
|
-
binary?:
|
|
1753
|
+
binary?: {
|
|
1754
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1755
|
+
type: string;
|
|
1756
|
+
name: string;
|
|
1757
|
+
size: number;
|
|
1758
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1759
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1760
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1761
|
+
lastModified: number;
|
|
1762
|
+
webkitRelativePath: string;
|
|
1763
|
+
} | undefined;
|
|
1489
1764
|
};
|
|
1490
1765
|
parameters: {
|
|
1491
1766
|
path: {
|
|
@@ -1499,10 +1774,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1499
1774
|
required?: boolean | undefined;
|
|
1500
1775
|
description?: string | undefined;
|
|
1501
1776
|
enum?: string[] | undefined;
|
|
1502
|
-
file?: any;
|
|
1503
|
-
refUid?: string | undefined;
|
|
1504
|
-
format?: string | undefined;
|
|
1505
1777
|
nullable?: boolean | undefined;
|
|
1778
|
+
format?: string | undefined;
|
|
1779
|
+
file?: {
|
|
1780
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1781
|
+
type: string;
|
|
1782
|
+
name: string;
|
|
1783
|
+
size: number;
|
|
1784
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1785
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1786
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1787
|
+
lastModified: number;
|
|
1788
|
+
webkitRelativePath: string;
|
|
1789
|
+
} | undefined;
|
|
1790
|
+
refUid?: string | undefined;
|
|
1506
1791
|
}[];
|
|
1507
1792
|
query: {
|
|
1508
1793
|
value: string;
|
|
@@ -1515,10 +1800,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1515
1800
|
required?: boolean | undefined;
|
|
1516
1801
|
description?: string | undefined;
|
|
1517
1802
|
enum?: string[] | undefined;
|
|
1518
|
-
file?: any;
|
|
1519
|
-
refUid?: string | undefined;
|
|
1520
|
-
format?: string | undefined;
|
|
1521
1803
|
nullable?: boolean | undefined;
|
|
1804
|
+
format?: string | undefined;
|
|
1805
|
+
file?: {
|
|
1806
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1807
|
+
type: string;
|
|
1808
|
+
name: string;
|
|
1809
|
+
size: number;
|
|
1810
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1811
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1812
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1813
|
+
lastModified: number;
|
|
1814
|
+
webkitRelativePath: string;
|
|
1815
|
+
} | undefined;
|
|
1816
|
+
refUid?: string | undefined;
|
|
1522
1817
|
}[];
|
|
1523
1818
|
headers: {
|
|
1524
1819
|
value: string;
|
|
@@ -1531,10 +1826,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1531
1826
|
required?: boolean | undefined;
|
|
1532
1827
|
description?: string | undefined;
|
|
1533
1828
|
enum?: string[] | undefined;
|
|
1534
|
-
file?: any;
|
|
1535
|
-
refUid?: string | undefined;
|
|
1536
|
-
format?: string | undefined;
|
|
1537
1829
|
nullable?: boolean | undefined;
|
|
1830
|
+
format?: string | undefined;
|
|
1831
|
+
file?: {
|
|
1832
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1833
|
+
type: string;
|
|
1834
|
+
name: string;
|
|
1835
|
+
size: number;
|
|
1836
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1837
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1838
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1839
|
+
lastModified: number;
|
|
1840
|
+
webkitRelativePath: string;
|
|
1841
|
+
} | undefined;
|
|
1842
|
+
refUid?: string | undefined;
|
|
1538
1843
|
}[];
|
|
1539
1844
|
cookies: {
|
|
1540
1845
|
value: string;
|
|
@@ -1547,15 +1852,25 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1547
1852
|
required?: boolean | undefined;
|
|
1548
1853
|
description?: string | undefined;
|
|
1549
1854
|
enum?: string[] | undefined;
|
|
1550
|
-
file?: any;
|
|
1551
|
-
refUid?: string | undefined;
|
|
1552
|
-
format?: string | undefined;
|
|
1553
1855
|
nullable?: boolean | undefined;
|
|
1856
|
+
format?: string | undefined;
|
|
1857
|
+
file?: {
|
|
1858
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1859
|
+
type: string;
|
|
1860
|
+
name: string;
|
|
1861
|
+
size: number;
|
|
1862
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1863
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1864
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1865
|
+
lastModified: number;
|
|
1866
|
+
webkitRelativePath: string;
|
|
1867
|
+
} | undefined;
|
|
1868
|
+
refUid?: string | undefined;
|
|
1554
1869
|
}[];
|
|
1555
1870
|
};
|
|
1556
1871
|
auth: Record<string, any>;
|
|
1557
1872
|
}) => void;
|
|
1558
|
-
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}.
|
|
1873
|
+
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" ? {
|
|
1559
1874
|
uid: string;
|
|
1560
1875
|
name: string;
|
|
1561
1876
|
url: string;
|
|
@@ -1563,7 +1878,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1563
1878
|
body: {
|
|
1564
1879
|
raw: {
|
|
1565
1880
|
value: string;
|
|
1566
|
-
encoding: "
|
|
1881
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1567
1882
|
};
|
|
1568
1883
|
formData: {
|
|
1569
1884
|
value: {
|
|
@@ -1577,15 +1892,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1577
1892
|
required?: boolean | undefined;
|
|
1578
1893
|
description?: string | undefined;
|
|
1579
1894
|
enum?: string[] | undefined;
|
|
1580
|
-
file?: any;
|
|
1581
|
-
refUid?: string | undefined;
|
|
1582
|
-
format?: string | undefined;
|
|
1583
1895
|
nullable?: boolean | undefined;
|
|
1896
|
+
format?: string | undefined;
|
|
1897
|
+
file?: {
|
|
1898
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1899
|
+
type: string;
|
|
1900
|
+
name: string;
|
|
1901
|
+
size: number;
|
|
1902
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1903
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1904
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1905
|
+
lastModified: number;
|
|
1906
|
+
webkitRelativePath: string;
|
|
1907
|
+
} | undefined;
|
|
1908
|
+
refUid?: string | undefined;
|
|
1584
1909
|
}[];
|
|
1585
1910
|
encoding: "form-data" | "urlencoded";
|
|
1586
1911
|
};
|
|
1587
1912
|
activeBody: "raw" | "formData" | "binary";
|
|
1588
|
-
binary?:
|
|
1913
|
+
binary?: {
|
|
1914
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1915
|
+
type: string;
|
|
1916
|
+
name: string;
|
|
1917
|
+
size: number;
|
|
1918
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1919
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1920
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1921
|
+
lastModified: number;
|
|
1922
|
+
webkitRelativePath: string;
|
|
1923
|
+
} | undefined;
|
|
1589
1924
|
};
|
|
1590
1925
|
parameters: {
|
|
1591
1926
|
path: {
|
|
@@ -1599,10 +1934,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1599
1934
|
required?: boolean | undefined;
|
|
1600
1935
|
description?: string | undefined;
|
|
1601
1936
|
enum?: string[] | undefined;
|
|
1602
|
-
file?: any;
|
|
1603
|
-
refUid?: string | undefined;
|
|
1604
|
-
format?: string | undefined;
|
|
1605
1937
|
nullable?: boolean | undefined;
|
|
1938
|
+
format?: string | undefined;
|
|
1939
|
+
file?: {
|
|
1940
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1941
|
+
type: string;
|
|
1942
|
+
name: string;
|
|
1943
|
+
size: number;
|
|
1944
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1945
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1946
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1947
|
+
lastModified: number;
|
|
1948
|
+
webkitRelativePath: string;
|
|
1949
|
+
} | undefined;
|
|
1950
|
+
refUid?: string | undefined;
|
|
1606
1951
|
}[];
|
|
1607
1952
|
query: {
|
|
1608
1953
|
value: string;
|
|
@@ -1615,10 +1960,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1615
1960
|
required?: boolean | undefined;
|
|
1616
1961
|
description?: string | undefined;
|
|
1617
1962
|
enum?: string[] | undefined;
|
|
1618
|
-
file?: any;
|
|
1619
|
-
refUid?: string | undefined;
|
|
1620
|
-
format?: string | undefined;
|
|
1621
1963
|
nullable?: boolean | undefined;
|
|
1964
|
+
format?: string | undefined;
|
|
1965
|
+
file?: {
|
|
1966
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1967
|
+
type: string;
|
|
1968
|
+
name: string;
|
|
1969
|
+
size: number;
|
|
1970
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1971
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1972
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1973
|
+
lastModified: number;
|
|
1974
|
+
webkitRelativePath: string;
|
|
1975
|
+
} | undefined;
|
|
1976
|
+
refUid?: string | undefined;
|
|
1622
1977
|
}[];
|
|
1623
1978
|
headers: {
|
|
1624
1979
|
value: string;
|
|
@@ -1631,10 +1986,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1631
1986
|
required?: boolean | undefined;
|
|
1632
1987
|
description?: string | undefined;
|
|
1633
1988
|
enum?: string[] | undefined;
|
|
1634
|
-
file?: any;
|
|
1635
|
-
refUid?: string | undefined;
|
|
1636
|
-
format?: string | undefined;
|
|
1637
1989
|
nullable?: boolean | undefined;
|
|
1990
|
+
format?: string | undefined;
|
|
1991
|
+
file?: {
|
|
1992
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1993
|
+
type: string;
|
|
1994
|
+
name: string;
|
|
1995
|
+
size: number;
|
|
1996
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1997
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1998
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1999
|
+
lastModified: number;
|
|
2000
|
+
webkitRelativePath: string;
|
|
2001
|
+
} | undefined;
|
|
2002
|
+
refUid?: string | undefined;
|
|
1638
2003
|
}[];
|
|
1639
2004
|
cookies: {
|
|
1640
2005
|
value: string;
|
|
@@ -1647,10 +2012,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1647
2012
|
required?: boolean | undefined;
|
|
1648
2013
|
description?: string | undefined;
|
|
1649
2014
|
enum?: string[] | undefined;
|
|
1650
|
-
file?: any;
|
|
1651
|
-
refUid?: string | undefined;
|
|
1652
|
-
format?: string | undefined;
|
|
1653
2015
|
nullable?: boolean | undefined;
|
|
2016
|
+
format?: string | undefined;
|
|
2017
|
+
file?: {
|
|
2018
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2019
|
+
type: string;
|
|
2020
|
+
name: string;
|
|
2021
|
+
size: number;
|
|
2022
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2023
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2024
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2025
|
+
lastModified: number;
|
|
2026
|
+
webkitRelativePath: string;
|
|
2027
|
+
} | undefined;
|
|
2028
|
+
refUid?: string | undefined;
|
|
1654
2029
|
}[];
|
|
1655
2030
|
};
|
|
1656
2031
|
auth: Record<string, any>;
|
|
@@ -1662,7 +2037,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1662
2037
|
body: {
|
|
1663
2038
|
raw: {
|
|
1664
2039
|
value: string;
|
|
1665
|
-
encoding: "
|
|
2040
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1666
2041
|
};
|
|
1667
2042
|
formData: {
|
|
1668
2043
|
value: {
|
|
@@ -1676,15 +2051,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1676
2051
|
required?: boolean | undefined;
|
|
1677
2052
|
description?: string | undefined;
|
|
1678
2053
|
enum?: string[] | undefined;
|
|
1679
|
-
file?: any;
|
|
1680
|
-
refUid?: string | undefined;
|
|
1681
|
-
format?: string | undefined;
|
|
1682
2054
|
nullable?: boolean | undefined;
|
|
2055
|
+
format?: string | undefined;
|
|
2056
|
+
file?: {
|
|
2057
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2058
|
+
type: string;
|
|
2059
|
+
name: string;
|
|
2060
|
+
size: number;
|
|
2061
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2062
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2063
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2064
|
+
lastModified: number;
|
|
2065
|
+
webkitRelativePath: string;
|
|
2066
|
+
} | undefined;
|
|
2067
|
+
refUid?: string | undefined;
|
|
1683
2068
|
}[];
|
|
1684
2069
|
encoding: "form-data" | "urlencoded";
|
|
1685
2070
|
};
|
|
1686
2071
|
activeBody: "raw" | "formData" | "binary";
|
|
1687
|
-
binary?:
|
|
2072
|
+
binary?: {
|
|
2073
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2074
|
+
type: string;
|
|
2075
|
+
name: string;
|
|
2076
|
+
size: number;
|
|
2077
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2078
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2079
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2080
|
+
lastModified: number;
|
|
2081
|
+
webkitRelativePath: string;
|
|
2082
|
+
} | undefined;
|
|
1688
2083
|
};
|
|
1689
2084
|
parameters: {
|
|
1690
2085
|
path: {
|
|
@@ -1698,10 +2093,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1698
2093
|
required?: boolean | undefined;
|
|
1699
2094
|
description?: string | undefined;
|
|
1700
2095
|
enum?: string[] | undefined;
|
|
1701
|
-
file?: any;
|
|
1702
|
-
refUid?: string | undefined;
|
|
1703
|
-
format?: string | undefined;
|
|
1704
2096
|
nullable?: boolean | undefined;
|
|
2097
|
+
format?: string | undefined;
|
|
2098
|
+
file?: {
|
|
2099
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2100
|
+
type: string;
|
|
2101
|
+
name: string;
|
|
2102
|
+
size: number;
|
|
2103
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2104
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2105
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2106
|
+
lastModified: number;
|
|
2107
|
+
webkitRelativePath: string;
|
|
2108
|
+
} | undefined;
|
|
2109
|
+
refUid?: string | undefined;
|
|
1705
2110
|
}[];
|
|
1706
2111
|
query: {
|
|
1707
2112
|
value: string;
|
|
@@ -1714,10 +2119,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1714
2119
|
required?: boolean | undefined;
|
|
1715
2120
|
description?: string | undefined;
|
|
1716
2121
|
enum?: string[] | undefined;
|
|
1717
|
-
file?: any;
|
|
1718
|
-
refUid?: string | undefined;
|
|
1719
|
-
format?: string | undefined;
|
|
1720
2122
|
nullable?: boolean | undefined;
|
|
2123
|
+
format?: string | undefined;
|
|
2124
|
+
file?: {
|
|
2125
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2126
|
+
type: string;
|
|
2127
|
+
name: string;
|
|
2128
|
+
size: number;
|
|
2129
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2130
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2131
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2132
|
+
lastModified: number;
|
|
2133
|
+
webkitRelativePath: string;
|
|
2134
|
+
} | undefined;
|
|
2135
|
+
refUid?: string | undefined;
|
|
1721
2136
|
}[];
|
|
1722
2137
|
headers: {
|
|
1723
2138
|
value: string;
|
|
@@ -1730,10 +2145,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1730
2145
|
required?: boolean | undefined;
|
|
1731
2146
|
description?: string | undefined;
|
|
1732
2147
|
enum?: string[] | undefined;
|
|
1733
|
-
file?: any;
|
|
1734
|
-
refUid?: string | undefined;
|
|
1735
|
-
format?: string | undefined;
|
|
1736
2148
|
nullable?: boolean | undefined;
|
|
2149
|
+
format?: string | undefined;
|
|
2150
|
+
file?: {
|
|
2151
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2152
|
+
type: string;
|
|
2153
|
+
name: string;
|
|
2154
|
+
size: number;
|
|
2155
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2156
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2157
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2158
|
+
lastModified: number;
|
|
2159
|
+
webkitRelativePath: string;
|
|
2160
|
+
} | undefined;
|
|
2161
|
+
refUid?: string | undefined;
|
|
1737
2162
|
}[];
|
|
1738
2163
|
cookies: {
|
|
1739
2164
|
value: string;
|
|
@@ -1746,10 +2171,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1746
2171
|
required?: boolean | undefined;
|
|
1747
2172
|
description?: string | undefined;
|
|
1748
2173
|
enum?: string[] | undefined;
|
|
1749
|
-
file?: any;
|
|
1750
|
-
refUid?: string | undefined;
|
|
1751
|
-
format?: string | undefined;
|
|
1752
2174
|
nullable?: boolean | undefined;
|
|
2175
|
+
format?: string | undefined;
|
|
2176
|
+
file?: {
|
|
2177
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2178
|
+
type: string;
|
|
2179
|
+
name: string;
|
|
2180
|
+
size: number;
|
|
2181
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2182
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2183
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2184
|
+
lastModified: number;
|
|
2185
|
+
webkitRelativePath: string;
|
|
2186
|
+
} | undefined;
|
|
2187
|
+
refUid?: string | undefined;
|
|
1753
2188
|
}[];
|
|
1754
2189
|
};
|
|
1755
2190
|
auth: Record<string, any>;
|
|
@@ -1761,7 +2196,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1761
2196
|
body: {
|
|
1762
2197
|
raw: {
|
|
1763
2198
|
value: string;
|
|
1764
|
-
encoding: "
|
|
2199
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1765
2200
|
};
|
|
1766
2201
|
formData: {
|
|
1767
2202
|
value: {
|
|
@@ -1775,15 +2210,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1775
2210
|
required?: boolean | undefined;
|
|
1776
2211
|
description?: string | undefined;
|
|
1777
2212
|
enum?: string[] | undefined;
|
|
1778
|
-
file?: any;
|
|
1779
|
-
refUid?: string | undefined;
|
|
1780
|
-
format?: string | undefined;
|
|
1781
2213
|
nullable?: boolean | undefined;
|
|
2214
|
+
format?: string | undefined;
|
|
2215
|
+
file?: {
|
|
2216
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2217
|
+
type: string;
|
|
2218
|
+
name: string;
|
|
2219
|
+
size: number;
|
|
2220
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2221
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2222
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2223
|
+
lastModified: number;
|
|
2224
|
+
webkitRelativePath: string;
|
|
2225
|
+
} | undefined;
|
|
2226
|
+
refUid?: string | undefined;
|
|
1782
2227
|
}[];
|
|
1783
2228
|
encoding: "form-data" | "urlencoded";
|
|
1784
2229
|
};
|
|
1785
2230
|
activeBody: "raw" | "formData" | "binary";
|
|
1786
|
-
binary?:
|
|
2231
|
+
binary?: {
|
|
2232
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2233
|
+
type: string;
|
|
2234
|
+
name: string;
|
|
2235
|
+
size: number;
|
|
2236
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2237
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2238
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2239
|
+
lastModified: number;
|
|
2240
|
+
webkitRelativePath: string;
|
|
2241
|
+
} | undefined;
|
|
1787
2242
|
};
|
|
1788
2243
|
parameters: {
|
|
1789
2244
|
path: {
|
|
@@ -1797,10 +2252,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1797
2252
|
required?: boolean | undefined;
|
|
1798
2253
|
description?: string | undefined;
|
|
1799
2254
|
enum?: string[] | undefined;
|
|
1800
|
-
file?: any;
|
|
1801
|
-
refUid?: string | undefined;
|
|
1802
|
-
format?: string | undefined;
|
|
1803
2255
|
nullable?: boolean | undefined;
|
|
2256
|
+
format?: string | undefined;
|
|
2257
|
+
file?: {
|
|
2258
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2259
|
+
type: string;
|
|
2260
|
+
name: string;
|
|
2261
|
+
size: number;
|
|
2262
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2263
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2264
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2265
|
+
lastModified: number;
|
|
2266
|
+
webkitRelativePath: string;
|
|
2267
|
+
} | undefined;
|
|
2268
|
+
refUid?: string | undefined;
|
|
1804
2269
|
}[];
|
|
1805
2270
|
query: {
|
|
1806
2271
|
value: string;
|
|
@@ -1813,10 +2278,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1813
2278
|
required?: boolean | undefined;
|
|
1814
2279
|
description?: string | undefined;
|
|
1815
2280
|
enum?: string[] | undefined;
|
|
1816
|
-
file?: any;
|
|
1817
|
-
refUid?: string | undefined;
|
|
1818
|
-
format?: string | undefined;
|
|
1819
2281
|
nullable?: boolean | undefined;
|
|
2282
|
+
format?: string | undefined;
|
|
2283
|
+
file?: {
|
|
2284
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2285
|
+
type: string;
|
|
2286
|
+
name: string;
|
|
2287
|
+
size: number;
|
|
2288
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2289
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2290
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2291
|
+
lastModified: number;
|
|
2292
|
+
webkitRelativePath: string;
|
|
2293
|
+
} | undefined;
|
|
2294
|
+
refUid?: string | undefined;
|
|
1820
2295
|
}[];
|
|
1821
2296
|
headers: {
|
|
1822
2297
|
value: string;
|
|
@@ -1829,10 +2304,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1829
2304
|
required?: boolean | undefined;
|
|
1830
2305
|
description?: string | undefined;
|
|
1831
2306
|
enum?: string[] | undefined;
|
|
1832
|
-
file?: any;
|
|
1833
|
-
refUid?: string | undefined;
|
|
1834
|
-
format?: string | undefined;
|
|
1835
2307
|
nullable?: boolean | undefined;
|
|
2308
|
+
format?: string | undefined;
|
|
2309
|
+
file?: {
|
|
2310
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2311
|
+
type: string;
|
|
2312
|
+
name: string;
|
|
2313
|
+
size: number;
|
|
2314
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2315
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2316
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2317
|
+
lastModified: number;
|
|
2318
|
+
webkitRelativePath: string;
|
|
2319
|
+
} | undefined;
|
|
2320
|
+
refUid?: string | undefined;
|
|
1836
2321
|
}[];
|
|
1837
2322
|
cookies: {
|
|
1838
2323
|
value: string;
|
|
@@ -1845,15 +2330,25 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1845
2330
|
required?: boolean | undefined;
|
|
1846
2331
|
description?: string | undefined;
|
|
1847
2332
|
enum?: string[] | undefined;
|
|
1848
|
-
file?: any;
|
|
1849
|
-
refUid?: string | undefined;
|
|
1850
|
-
format?: string | undefined;
|
|
1851
2333
|
nullable?: boolean | undefined;
|
|
2334
|
+
format?: string | undefined;
|
|
2335
|
+
file?: {
|
|
2336
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2337
|
+
type: string;
|
|
2338
|
+
name: string;
|
|
2339
|
+
size: number;
|
|
2340
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2341
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2342
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2343
|
+
lastModified: number;
|
|
2344
|
+
webkitRelativePath: string;
|
|
2345
|
+
} | undefined;
|
|
2346
|
+
refUid?: string | undefined;
|
|
1852
2347
|
}[];
|
|
1853
2348
|
};
|
|
1854
2349
|
auth: Record<string, any>;
|
|
1855
2350
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1856
|
-
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}.
|
|
2351
|
+
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" ? {
|
|
1857
2352
|
uid: string;
|
|
1858
2353
|
name: string;
|
|
1859
2354
|
url: string;
|
|
@@ -1861,7 +2356,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1861
2356
|
body: {
|
|
1862
2357
|
raw: {
|
|
1863
2358
|
value: string;
|
|
1864
|
-
encoding: "
|
|
2359
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1865
2360
|
};
|
|
1866
2361
|
formData: {
|
|
1867
2362
|
value: {
|
|
@@ -1875,15 +2370,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1875
2370
|
required?: boolean | undefined;
|
|
1876
2371
|
description?: string | undefined;
|
|
1877
2372
|
enum?: string[] | undefined;
|
|
1878
|
-
file?: any;
|
|
1879
|
-
refUid?: string | undefined;
|
|
1880
|
-
format?: string | undefined;
|
|
1881
2373
|
nullable?: boolean | undefined;
|
|
2374
|
+
format?: string | undefined;
|
|
2375
|
+
file?: {
|
|
2376
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2377
|
+
type: string;
|
|
2378
|
+
name: string;
|
|
2379
|
+
size: number;
|
|
2380
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2381
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2382
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2383
|
+
lastModified: number;
|
|
2384
|
+
webkitRelativePath: string;
|
|
2385
|
+
} | undefined;
|
|
2386
|
+
refUid?: string | undefined;
|
|
1882
2387
|
}[];
|
|
1883
2388
|
encoding: "form-data" | "urlencoded";
|
|
1884
2389
|
};
|
|
1885
2390
|
activeBody: "raw" | "formData" | "binary";
|
|
1886
|
-
binary?:
|
|
2391
|
+
binary?: {
|
|
2392
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2393
|
+
type: string;
|
|
2394
|
+
name: string;
|
|
2395
|
+
size: number;
|
|
2396
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2397
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2398
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2399
|
+
lastModified: number;
|
|
2400
|
+
webkitRelativePath: string;
|
|
2401
|
+
} | undefined;
|
|
1887
2402
|
};
|
|
1888
2403
|
parameters: {
|
|
1889
2404
|
path: {
|
|
@@ -1897,10 +2412,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1897
2412
|
required?: boolean | undefined;
|
|
1898
2413
|
description?: string | undefined;
|
|
1899
2414
|
enum?: string[] | undefined;
|
|
1900
|
-
file?: any;
|
|
1901
|
-
refUid?: string | undefined;
|
|
1902
|
-
format?: string | undefined;
|
|
1903
2415
|
nullable?: boolean | undefined;
|
|
2416
|
+
format?: string | undefined;
|
|
2417
|
+
file?: {
|
|
2418
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2419
|
+
type: string;
|
|
2420
|
+
name: string;
|
|
2421
|
+
size: number;
|
|
2422
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2423
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2424
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2425
|
+
lastModified: number;
|
|
2426
|
+
webkitRelativePath: string;
|
|
2427
|
+
} | undefined;
|
|
2428
|
+
refUid?: string | undefined;
|
|
1904
2429
|
}[];
|
|
1905
2430
|
query: {
|
|
1906
2431
|
value: string;
|
|
@@ -1913,10 +2438,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1913
2438
|
required?: boolean | undefined;
|
|
1914
2439
|
description?: string | undefined;
|
|
1915
2440
|
enum?: string[] | undefined;
|
|
1916
|
-
file?: any;
|
|
1917
|
-
refUid?: string | undefined;
|
|
1918
|
-
format?: string | undefined;
|
|
1919
2441
|
nullable?: boolean | undefined;
|
|
2442
|
+
format?: string | undefined;
|
|
2443
|
+
file?: {
|
|
2444
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2445
|
+
type: string;
|
|
2446
|
+
name: string;
|
|
2447
|
+
size: number;
|
|
2448
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2449
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2450
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2451
|
+
lastModified: number;
|
|
2452
|
+
webkitRelativePath: string;
|
|
2453
|
+
} | undefined;
|
|
2454
|
+
refUid?: string | undefined;
|
|
1920
2455
|
}[];
|
|
1921
2456
|
headers: {
|
|
1922
2457
|
value: string;
|
|
@@ -1929,10 +2464,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1929
2464
|
required?: boolean | undefined;
|
|
1930
2465
|
description?: string | undefined;
|
|
1931
2466
|
enum?: string[] | undefined;
|
|
1932
|
-
file?: any;
|
|
1933
|
-
refUid?: string | undefined;
|
|
1934
|
-
format?: string | undefined;
|
|
1935
2467
|
nullable?: boolean | undefined;
|
|
2468
|
+
format?: string | undefined;
|
|
2469
|
+
file?: {
|
|
2470
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2471
|
+
type: string;
|
|
2472
|
+
name: string;
|
|
2473
|
+
size: number;
|
|
2474
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2475
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2476
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2477
|
+
lastModified: number;
|
|
2478
|
+
webkitRelativePath: string;
|
|
2479
|
+
} | undefined;
|
|
2480
|
+
refUid?: string | undefined;
|
|
1936
2481
|
}[];
|
|
1937
2482
|
cookies: {
|
|
1938
2483
|
value: string;
|
|
@@ -1945,10 +2490,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1945
2490
|
required?: boolean | undefined;
|
|
1946
2491
|
description?: string | undefined;
|
|
1947
2492
|
enum?: string[] | undefined;
|
|
1948
|
-
file?: any;
|
|
1949
|
-
refUid?: string | undefined;
|
|
1950
|
-
format?: string | undefined;
|
|
1951
2493
|
nullable?: boolean | undefined;
|
|
2494
|
+
format?: string | undefined;
|
|
2495
|
+
file?: {
|
|
2496
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2497
|
+
type: string;
|
|
2498
|
+
name: string;
|
|
2499
|
+
size: number;
|
|
2500
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2501
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2502
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2503
|
+
lastModified: number;
|
|
2504
|
+
webkitRelativePath: string;
|
|
2505
|
+
} | undefined;
|
|
2506
|
+
refUid?: string | undefined;
|
|
1952
2507
|
}[];
|
|
1953
2508
|
};
|
|
1954
2509
|
auth: Record<string, any>;
|
|
@@ -1960,7 +2515,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1960
2515
|
body: {
|
|
1961
2516
|
raw: {
|
|
1962
2517
|
value: string;
|
|
1963
|
-
encoding: "
|
|
2518
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1964
2519
|
};
|
|
1965
2520
|
formData: {
|
|
1966
2521
|
value: {
|
|
@@ -1974,15 +2529,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1974
2529
|
required?: boolean | undefined;
|
|
1975
2530
|
description?: string | undefined;
|
|
1976
2531
|
enum?: string[] | undefined;
|
|
1977
|
-
file?: any;
|
|
1978
|
-
refUid?: string | undefined;
|
|
1979
|
-
format?: string | undefined;
|
|
1980
2532
|
nullable?: boolean | undefined;
|
|
2533
|
+
format?: string | undefined;
|
|
2534
|
+
file?: {
|
|
2535
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2536
|
+
type: string;
|
|
2537
|
+
name: string;
|
|
2538
|
+
size: number;
|
|
2539
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2540
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2541
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2542
|
+
lastModified: number;
|
|
2543
|
+
webkitRelativePath: string;
|
|
2544
|
+
} | undefined;
|
|
2545
|
+
refUid?: string | undefined;
|
|
1981
2546
|
}[];
|
|
1982
2547
|
encoding: "form-data" | "urlencoded";
|
|
1983
2548
|
};
|
|
1984
2549
|
activeBody: "raw" | "formData" | "binary";
|
|
1985
|
-
binary?:
|
|
2550
|
+
binary?: {
|
|
2551
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2552
|
+
type: string;
|
|
2553
|
+
name: string;
|
|
2554
|
+
size: number;
|
|
2555
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2556
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2557
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2558
|
+
lastModified: number;
|
|
2559
|
+
webkitRelativePath: string;
|
|
2560
|
+
} | undefined;
|
|
1986
2561
|
};
|
|
1987
2562
|
parameters: {
|
|
1988
2563
|
path: {
|
|
@@ -1996,10 +2571,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1996
2571
|
required?: boolean | undefined;
|
|
1997
2572
|
description?: string | undefined;
|
|
1998
2573
|
enum?: string[] | undefined;
|
|
1999
|
-
file?: any;
|
|
2000
|
-
refUid?: string | undefined;
|
|
2001
|
-
format?: string | undefined;
|
|
2002
2574
|
nullable?: boolean | undefined;
|
|
2575
|
+
format?: string | undefined;
|
|
2576
|
+
file?: {
|
|
2577
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2578
|
+
type: string;
|
|
2579
|
+
name: string;
|
|
2580
|
+
size: number;
|
|
2581
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2582
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2583
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2584
|
+
lastModified: number;
|
|
2585
|
+
webkitRelativePath: string;
|
|
2586
|
+
} | undefined;
|
|
2587
|
+
refUid?: string | undefined;
|
|
2003
2588
|
}[];
|
|
2004
2589
|
query: {
|
|
2005
2590
|
value: string;
|
|
@@ -2012,10 +2597,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2012
2597
|
required?: boolean | undefined;
|
|
2013
2598
|
description?: string | undefined;
|
|
2014
2599
|
enum?: string[] | undefined;
|
|
2015
|
-
file?: any;
|
|
2016
|
-
refUid?: string | undefined;
|
|
2017
|
-
format?: string | undefined;
|
|
2018
2600
|
nullable?: boolean | undefined;
|
|
2601
|
+
format?: string | undefined;
|
|
2602
|
+
file?: {
|
|
2603
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2604
|
+
type: string;
|
|
2605
|
+
name: string;
|
|
2606
|
+
size: number;
|
|
2607
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2608
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2609
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2610
|
+
lastModified: number;
|
|
2611
|
+
webkitRelativePath: string;
|
|
2612
|
+
} | undefined;
|
|
2613
|
+
refUid?: string | undefined;
|
|
2019
2614
|
}[];
|
|
2020
2615
|
headers: {
|
|
2021
2616
|
value: string;
|
|
@@ -2028,10 +2623,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2028
2623
|
required?: boolean | undefined;
|
|
2029
2624
|
description?: string | undefined;
|
|
2030
2625
|
enum?: string[] | undefined;
|
|
2031
|
-
file?: any;
|
|
2032
|
-
refUid?: string | undefined;
|
|
2033
|
-
format?: string | undefined;
|
|
2034
2626
|
nullable?: boolean | undefined;
|
|
2627
|
+
format?: string | undefined;
|
|
2628
|
+
file?: {
|
|
2629
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2630
|
+
type: string;
|
|
2631
|
+
name: string;
|
|
2632
|
+
size: number;
|
|
2633
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2634
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2635
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2636
|
+
lastModified: number;
|
|
2637
|
+
webkitRelativePath: string;
|
|
2638
|
+
} | undefined;
|
|
2639
|
+
refUid?: string | undefined;
|
|
2035
2640
|
}[];
|
|
2036
2641
|
cookies: {
|
|
2037
2642
|
value: string;
|
|
@@ -2044,10 +2649,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2044
2649
|
required?: boolean | undefined;
|
|
2045
2650
|
description?: string | undefined;
|
|
2046
2651
|
enum?: string[] | undefined;
|
|
2047
|
-
file?: any;
|
|
2048
|
-
refUid?: string | undefined;
|
|
2049
|
-
format?: string | undefined;
|
|
2050
2652
|
nullable?: boolean | undefined;
|
|
2653
|
+
format?: string | undefined;
|
|
2654
|
+
file?: {
|
|
2655
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2656
|
+
type: string;
|
|
2657
|
+
name: string;
|
|
2658
|
+
size: number;
|
|
2659
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2660
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2661
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2662
|
+
lastModified: number;
|
|
2663
|
+
webkitRelativePath: string;
|
|
2664
|
+
} | undefined;
|
|
2665
|
+
refUid?: string | undefined;
|
|
2051
2666
|
}[];
|
|
2052
2667
|
};
|
|
2053
2668
|
auth: Record<string, any>;
|
|
@@ -2059,7 +2674,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2059
2674
|
body: {
|
|
2060
2675
|
raw: {
|
|
2061
2676
|
value: string;
|
|
2062
|
-
encoding: "
|
|
2677
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2063
2678
|
};
|
|
2064
2679
|
formData: {
|
|
2065
2680
|
value: {
|
|
@@ -2073,15 +2688,35 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2073
2688
|
required?: boolean | undefined;
|
|
2074
2689
|
description?: string | undefined;
|
|
2075
2690
|
enum?: string[] | undefined;
|
|
2076
|
-
file?: any;
|
|
2077
|
-
refUid?: string | undefined;
|
|
2078
|
-
format?: string | undefined;
|
|
2079
2691
|
nullable?: boolean | undefined;
|
|
2692
|
+
format?: string | undefined;
|
|
2693
|
+
file?: {
|
|
2694
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2695
|
+
type: string;
|
|
2696
|
+
name: string;
|
|
2697
|
+
size: number;
|
|
2698
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2699
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2700
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2701
|
+
lastModified: number;
|
|
2702
|
+
webkitRelativePath: string;
|
|
2703
|
+
} | undefined;
|
|
2704
|
+
refUid?: string | undefined;
|
|
2080
2705
|
}[];
|
|
2081
2706
|
encoding: "form-data" | "urlencoded";
|
|
2082
2707
|
};
|
|
2083
2708
|
activeBody: "raw" | "formData" | "binary";
|
|
2084
|
-
binary?:
|
|
2709
|
+
binary?: {
|
|
2710
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2711
|
+
type: string;
|
|
2712
|
+
name: string;
|
|
2713
|
+
size: number;
|
|
2714
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2715
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2716
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2717
|
+
lastModified: number;
|
|
2718
|
+
webkitRelativePath: string;
|
|
2719
|
+
} | undefined;
|
|
2085
2720
|
};
|
|
2086
2721
|
parameters: {
|
|
2087
2722
|
path: {
|
|
@@ -2095,10 +2730,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2095
2730
|
required?: boolean | undefined;
|
|
2096
2731
|
description?: string | undefined;
|
|
2097
2732
|
enum?: string[] | undefined;
|
|
2098
|
-
file?: any;
|
|
2099
|
-
refUid?: string | undefined;
|
|
2100
|
-
format?: string | undefined;
|
|
2101
2733
|
nullable?: boolean | undefined;
|
|
2734
|
+
format?: string | undefined;
|
|
2735
|
+
file?: {
|
|
2736
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2737
|
+
type: string;
|
|
2738
|
+
name: string;
|
|
2739
|
+
size: number;
|
|
2740
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2741
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2742
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2743
|
+
lastModified: number;
|
|
2744
|
+
webkitRelativePath: string;
|
|
2745
|
+
} | undefined;
|
|
2746
|
+
refUid?: string | undefined;
|
|
2102
2747
|
}[];
|
|
2103
2748
|
query: {
|
|
2104
2749
|
value: string;
|
|
@@ -2111,10 +2756,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2111
2756
|
required?: boolean | undefined;
|
|
2112
2757
|
description?: string | undefined;
|
|
2113
2758
|
enum?: string[] | undefined;
|
|
2114
|
-
file?: any;
|
|
2115
|
-
refUid?: string | undefined;
|
|
2116
|
-
format?: string | undefined;
|
|
2117
2759
|
nullable?: boolean | undefined;
|
|
2760
|
+
format?: string | undefined;
|
|
2761
|
+
file?: {
|
|
2762
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2763
|
+
type: string;
|
|
2764
|
+
name: string;
|
|
2765
|
+
size: number;
|
|
2766
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2767
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2768
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2769
|
+
lastModified: number;
|
|
2770
|
+
webkitRelativePath: string;
|
|
2771
|
+
} | undefined;
|
|
2772
|
+
refUid?: string | undefined;
|
|
2118
2773
|
}[];
|
|
2119
2774
|
headers: {
|
|
2120
2775
|
value: string;
|
|
@@ -2127,10 +2782,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2127
2782
|
required?: boolean | undefined;
|
|
2128
2783
|
description?: string | undefined;
|
|
2129
2784
|
enum?: string[] | undefined;
|
|
2130
|
-
file?: any;
|
|
2131
|
-
refUid?: string | undefined;
|
|
2132
|
-
format?: string | undefined;
|
|
2133
2785
|
nullable?: boolean | undefined;
|
|
2786
|
+
format?: string | undefined;
|
|
2787
|
+
file?: {
|
|
2788
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2789
|
+
type: string;
|
|
2790
|
+
name: string;
|
|
2791
|
+
size: number;
|
|
2792
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2793
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2794
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2795
|
+
lastModified: number;
|
|
2796
|
+
webkitRelativePath: string;
|
|
2797
|
+
} | undefined;
|
|
2798
|
+
refUid?: string | undefined;
|
|
2134
2799
|
}[];
|
|
2135
2800
|
cookies: {
|
|
2136
2801
|
value: string;
|
|
@@ -2143,10 +2808,20 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2143
2808
|
required?: boolean | undefined;
|
|
2144
2809
|
description?: string | undefined;
|
|
2145
2810
|
enum?: string[] | undefined;
|
|
2146
|
-
file?: any;
|
|
2147
|
-
refUid?: string | undefined;
|
|
2148
|
-
format?: string | undefined;
|
|
2149
2811
|
nullable?: boolean | undefined;
|
|
2812
|
+
format?: string | undefined;
|
|
2813
|
+
file?: {
|
|
2814
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2815
|
+
type: string;
|
|
2816
|
+
name: string;
|
|
2817
|
+
size: number;
|
|
2818
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2819
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2820
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2821
|
+
lastModified: number;
|
|
2822
|
+
webkitRelativePath: string;
|
|
2823
|
+
} | undefined;
|
|
2824
|
+
refUid?: string | undefined;
|
|
2150
2825
|
}[];
|
|
2151
2826
|
};
|
|
2152
2827
|
auth: Record<string, any>;
|
|
@@ -2802,6 +3477,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2802
3477
|
isReadOnly: boolean;
|
|
2803
3478
|
collectionUids: string[];
|
|
2804
3479
|
environmentUids: string[];
|
|
3480
|
+
activeEnvironmentId: string;
|
|
2805
3481
|
cookieUids: string[];
|
|
2806
3482
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2807
3483
|
hotKeyConfig?: {
|
|
@@ -2820,6 +3496,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2820
3496
|
isReadOnly: boolean;
|
|
2821
3497
|
collectionUids: string[];
|
|
2822
3498
|
environmentUids: string[];
|
|
3499
|
+
activeEnvironmentId: string;
|
|
2823
3500
|
cookieUids: string[];
|
|
2824
3501
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2825
3502
|
hotKeyConfig?: {
|
|
@@ -2840,6 +3517,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2840
3517
|
isReadOnly: boolean;
|
|
2841
3518
|
collectionUids: string[];
|
|
2842
3519
|
environmentUids: string[];
|
|
3520
|
+
activeEnvironmentId: string;
|
|
2843
3521
|
cookieUids: string[];
|
|
2844
3522
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2845
3523
|
hotKeyConfig?: {
|
|
@@ -2851,13 +3529,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2851
3529
|
} | undefined;
|
|
2852
3530
|
proxyUrl?: string | undefined;
|
|
2853
3531
|
}) => void;
|
|
2854
|
-
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" ? {
|
|
3532
|
+
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" ? {
|
|
2855
3533
|
uid: string;
|
|
2856
3534
|
name: string;
|
|
2857
3535
|
description: string;
|
|
2858
3536
|
isReadOnly: boolean;
|
|
2859
3537
|
collectionUids: string[];
|
|
2860
3538
|
environmentUids: string[];
|
|
3539
|
+
activeEnvironmentId: string;
|
|
2861
3540
|
cookieUids: string[];
|
|
2862
3541
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2863
3542
|
hotKeyConfig?: {
|
|
@@ -2868,13 +3547,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2868
3547
|
}>> | undefined;
|
|
2869
3548
|
} | undefined;
|
|
2870
3549
|
proxyUrl?: string | undefined;
|
|
2871
|
-
}[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<{
|
|
3550
|
+
}[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<{
|
|
2872
3551
|
uid: string;
|
|
2873
3552
|
name: string;
|
|
2874
3553
|
description: string;
|
|
2875
3554
|
isReadOnly: boolean;
|
|
2876
3555
|
collectionUids: string[];
|
|
2877
3556
|
environmentUids: string[];
|
|
3557
|
+
activeEnvironmentId: string;
|
|
2878
3558
|
cookieUids: string[];
|
|
2879
3559
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2880
3560
|
hotKeyConfig?: {
|
|
@@ -2892,6 +3572,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2892
3572
|
isReadOnly: boolean;
|
|
2893
3573
|
collectionUids: string[];
|
|
2894
3574
|
environmentUids: string[];
|
|
3575
|
+
activeEnvironmentId: string;
|
|
2895
3576
|
cookieUids: string[];
|
|
2896
3577
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2897
3578
|
hotKeyConfig?: {
|
|
@@ -2903,13 +3584,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2903
3584
|
} | undefined;
|
|
2904
3585
|
proxyUrl?: string | undefined;
|
|
2905
3586
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2906
|
-
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" ? {
|
|
3587
|
+
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" ? {
|
|
2907
3588
|
uid: string;
|
|
2908
3589
|
name: string;
|
|
2909
3590
|
description: string;
|
|
2910
3591
|
isReadOnly: boolean;
|
|
2911
3592
|
collectionUids: string[];
|
|
2912
3593
|
environmentUids: string[];
|
|
3594
|
+
activeEnvironmentId: string;
|
|
2913
3595
|
cookieUids: string[];
|
|
2914
3596
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2915
3597
|
hotKeyConfig?: {
|
|
@@ -2920,13 +3602,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2920
3602
|
}>> | undefined;
|
|
2921
3603
|
} | undefined;
|
|
2922
3604
|
proxyUrl?: string | undefined;
|
|
2923
|
-
}[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<{
|
|
3605
|
+
}[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<{
|
|
2924
3606
|
uid: string;
|
|
2925
3607
|
name: string;
|
|
2926
3608
|
description: string;
|
|
2927
3609
|
isReadOnly: boolean;
|
|
2928
3610
|
collectionUids: string[];
|
|
2929
3611
|
environmentUids: string[];
|
|
3612
|
+
activeEnvironmentId: string;
|
|
2930
3613
|
cookieUids: string[];
|
|
2931
3614
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2932
3615
|
hotKeyConfig?: {
|
|
@@ -2944,6 +3627,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2944
3627
|
isReadOnly: boolean;
|
|
2945
3628
|
collectionUids: string[];
|
|
2946
3629
|
environmentUids: string[];
|
|
3630
|
+
activeEnvironmentId: string;
|
|
2947
3631
|
cookieUids: string[];
|
|
2948
3632
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2949
3633
|
hotKeyConfig?: {
|