@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
|
@@ -26,6 +26,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
26
26
|
isReadOnly: boolean;
|
|
27
27
|
collectionUids: string[];
|
|
28
28
|
environmentUids: string[];
|
|
29
|
+
activeEnvironmentId: string;
|
|
29
30
|
cookieUids: string[];
|
|
30
31
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
31
32
|
hotKeyConfig?: {
|
|
@@ -115,7 +116,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
115
116
|
body: {
|
|
116
117
|
raw: {
|
|
117
118
|
value: string;
|
|
118
|
-
encoding: "
|
|
119
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
119
120
|
};
|
|
120
121
|
formData: {
|
|
121
122
|
value: {
|
|
@@ -129,15 +130,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
129
130
|
required?: boolean | undefined;
|
|
130
131
|
description?: string | undefined;
|
|
131
132
|
enum?: string[] | undefined;
|
|
132
|
-
file?: any;
|
|
133
|
-
refUid?: string | undefined;
|
|
134
|
-
format?: string | undefined;
|
|
135
133
|
nullable?: boolean | undefined;
|
|
134
|
+
format?: string | undefined;
|
|
135
|
+
file?: {
|
|
136
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
137
|
+
type: string;
|
|
138
|
+
name: string;
|
|
139
|
+
size: number;
|
|
140
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
141
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
142
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
143
|
+
lastModified: number;
|
|
144
|
+
webkitRelativePath: string;
|
|
145
|
+
} | undefined;
|
|
146
|
+
refUid?: string | undefined;
|
|
136
147
|
}[];
|
|
137
148
|
encoding: "form-data" | "urlencoded";
|
|
138
149
|
};
|
|
139
150
|
activeBody: "raw" | "formData" | "binary";
|
|
140
|
-
binary?:
|
|
151
|
+
binary?: {
|
|
152
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
153
|
+
type: string;
|
|
154
|
+
name: string;
|
|
155
|
+
size: number;
|
|
156
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
157
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
158
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
159
|
+
lastModified: number;
|
|
160
|
+
webkitRelativePath: string;
|
|
161
|
+
} | undefined;
|
|
141
162
|
};
|
|
142
163
|
parameters: {
|
|
143
164
|
path: {
|
|
@@ -151,10 +172,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
151
172
|
required?: boolean | undefined;
|
|
152
173
|
description?: string | undefined;
|
|
153
174
|
enum?: string[] | undefined;
|
|
154
|
-
file?: any;
|
|
155
|
-
refUid?: string | undefined;
|
|
156
|
-
format?: string | undefined;
|
|
157
175
|
nullable?: boolean | undefined;
|
|
176
|
+
format?: string | undefined;
|
|
177
|
+
file?: {
|
|
178
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
179
|
+
type: string;
|
|
180
|
+
name: string;
|
|
181
|
+
size: number;
|
|
182
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
183
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
184
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
185
|
+
lastModified: number;
|
|
186
|
+
webkitRelativePath: string;
|
|
187
|
+
} | undefined;
|
|
188
|
+
refUid?: string | undefined;
|
|
158
189
|
}[];
|
|
159
190
|
query: {
|
|
160
191
|
value: string;
|
|
@@ -167,10 +198,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
167
198
|
required?: boolean | undefined;
|
|
168
199
|
description?: string | undefined;
|
|
169
200
|
enum?: string[] | undefined;
|
|
170
|
-
file?: any;
|
|
171
|
-
refUid?: string | undefined;
|
|
172
|
-
format?: string | undefined;
|
|
173
201
|
nullable?: boolean | undefined;
|
|
202
|
+
format?: string | undefined;
|
|
203
|
+
file?: {
|
|
204
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
205
|
+
type: string;
|
|
206
|
+
name: string;
|
|
207
|
+
size: number;
|
|
208
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
209
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
210
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
211
|
+
lastModified: number;
|
|
212
|
+
webkitRelativePath: string;
|
|
213
|
+
} | undefined;
|
|
214
|
+
refUid?: string | undefined;
|
|
174
215
|
}[];
|
|
175
216
|
headers: {
|
|
176
217
|
value: string;
|
|
@@ -183,10 +224,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
183
224
|
required?: boolean | undefined;
|
|
184
225
|
description?: string | undefined;
|
|
185
226
|
enum?: string[] | undefined;
|
|
186
|
-
file?: any;
|
|
187
|
-
refUid?: string | undefined;
|
|
188
|
-
format?: string | undefined;
|
|
189
227
|
nullable?: boolean | undefined;
|
|
228
|
+
format?: string | undefined;
|
|
229
|
+
file?: {
|
|
230
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
231
|
+
type: string;
|
|
232
|
+
name: string;
|
|
233
|
+
size: number;
|
|
234
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
235
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
236
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
237
|
+
lastModified: number;
|
|
238
|
+
webkitRelativePath: string;
|
|
239
|
+
} | undefined;
|
|
240
|
+
refUid?: string | undefined;
|
|
190
241
|
}[];
|
|
191
242
|
cookies: {
|
|
192
243
|
value: string;
|
|
@@ -199,10 +250,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
199
250
|
required?: boolean | undefined;
|
|
200
251
|
description?: string | undefined;
|
|
201
252
|
enum?: string[] | undefined;
|
|
202
|
-
file?: any;
|
|
203
|
-
refUid?: string | undefined;
|
|
204
|
-
format?: string | undefined;
|
|
205
253
|
nullable?: boolean | undefined;
|
|
254
|
+
format?: string | undefined;
|
|
255
|
+
file?: {
|
|
256
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
257
|
+
type: string;
|
|
258
|
+
name: string;
|
|
259
|
+
size: number;
|
|
260
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
261
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
262
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
263
|
+
lastModified: number;
|
|
264
|
+
webkitRelativePath: string;
|
|
265
|
+
} | undefined;
|
|
266
|
+
refUid?: string | undefined;
|
|
206
267
|
}[];
|
|
207
268
|
};
|
|
208
269
|
auth: Record<string, any>;
|
|
@@ -336,7 +397,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
336
397
|
body: {
|
|
337
398
|
raw: {
|
|
338
399
|
value: string;
|
|
339
|
-
encoding: "
|
|
400
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
340
401
|
};
|
|
341
402
|
formData: {
|
|
342
403
|
value: {
|
|
@@ -350,15 +411,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
350
411
|
required?: boolean | undefined;
|
|
351
412
|
description?: string | undefined;
|
|
352
413
|
enum?: string[] | undefined;
|
|
353
|
-
file?: any;
|
|
354
|
-
refUid?: string | undefined;
|
|
355
|
-
format?: string | undefined;
|
|
356
414
|
nullable?: boolean | undefined;
|
|
415
|
+
format?: string | undefined;
|
|
416
|
+
file?: {
|
|
417
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
418
|
+
type: string;
|
|
419
|
+
name: string;
|
|
420
|
+
size: number;
|
|
421
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
422
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
423
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
424
|
+
lastModified: number;
|
|
425
|
+
webkitRelativePath: string;
|
|
426
|
+
} | undefined;
|
|
427
|
+
refUid?: string | undefined;
|
|
357
428
|
}[];
|
|
358
429
|
encoding: "form-data" | "urlencoded";
|
|
359
430
|
};
|
|
360
431
|
activeBody: "raw" | "formData" | "binary";
|
|
361
|
-
binary?:
|
|
432
|
+
binary?: {
|
|
433
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
434
|
+
type: string;
|
|
435
|
+
name: string;
|
|
436
|
+
size: number;
|
|
437
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
438
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
439
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
440
|
+
lastModified: number;
|
|
441
|
+
webkitRelativePath: string;
|
|
442
|
+
} | undefined;
|
|
362
443
|
};
|
|
363
444
|
parameters: {
|
|
364
445
|
path: {
|
|
@@ -372,10 +453,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
372
453
|
required?: boolean | undefined;
|
|
373
454
|
description?: string | undefined;
|
|
374
455
|
enum?: string[] | undefined;
|
|
375
|
-
file?: any;
|
|
376
|
-
refUid?: string | undefined;
|
|
377
|
-
format?: string | undefined;
|
|
378
456
|
nullable?: boolean | undefined;
|
|
457
|
+
format?: string | undefined;
|
|
458
|
+
file?: {
|
|
459
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
460
|
+
type: string;
|
|
461
|
+
name: string;
|
|
462
|
+
size: number;
|
|
463
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
464
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
465
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
466
|
+
lastModified: number;
|
|
467
|
+
webkitRelativePath: string;
|
|
468
|
+
} | undefined;
|
|
469
|
+
refUid?: string | undefined;
|
|
379
470
|
}[];
|
|
380
471
|
query: {
|
|
381
472
|
value: string;
|
|
@@ -388,10 +479,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
388
479
|
required?: boolean | undefined;
|
|
389
480
|
description?: string | undefined;
|
|
390
481
|
enum?: string[] | undefined;
|
|
391
|
-
file?: any;
|
|
392
|
-
refUid?: string | undefined;
|
|
393
|
-
format?: string | undefined;
|
|
394
482
|
nullable?: boolean | undefined;
|
|
483
|
+
format?: string | undefined;
|
|
484
|
+
file?: {
|
|
485
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
486
|
+
type: string;
|
|
487
|
+
name: string;
|
|
488
|
+
size: number;
|
|
489
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
490
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
491
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
492
|
+
lastModified: number;
|
|
493
|
+
webkitRelativePath: string;
|
|
494
|
+
} | undefined;
|
|
495
|
+
refUid?: string | undefined;
|
|
395
496
|
}[];
|
|
396
497
|
headers: {
|
|
397
498
|
value: string;
|
|
@@ -404,10 +505,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
404
505
|
required?: boolean | undefined;
|
|
405
506
|
description?: string | undefined;
|
|
406
507
|
enum?: string[] | undefined;
|
|
407
|
-
file?: any;
|
|
408
|
-
refUid?: string | undefined;
|
|
409
|
-
format?: string | undefined;
|
|
410
508
|
nullable?: boolean | undefined;
|
|
509
|
+
format?: string | undefined;
|
|
510
|
+
file?: {
|
|
511
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
512
|
+
type: string;
|
|
513
|
+
name: string;
|
|
514
|
+
size: number;
|
|
515
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
516
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
517
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
518
|
+
lastModified: number;
|
|
519
|
+
webkitRelativePath: string;
|
|
520
|
+
} | undefined;
|
|
521
|
+
refUid?: string | undefined;
|
|
411
522
|
}[];
|
|
412
523
|
cookies: {
|
|
413
524
|
value: string;
|
|
@@ -420,10 +531,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
420
531
|
required?: boolean | undefined;
|
|
421
532
|
description?: string | undefined;
|
|
422
533
|
enum?: string[] | undefined;
|
|
423
|
-
file?: any;
|
|
424
|
-
refUid?: string | undefined;
|
|
425
|
-
format?: string | undefined;
|
|
426
534
|
nullable?: boolean | undefined;
|
|
535
|
+
format?: string | undefined;
|
|
536
|
+
file?: {
|
|
537
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
538
|
+
type: string;
|
|
539
|
+
name: string;
|
|
540
|
+
size: number;
|
|
541
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
542
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
543
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
544
|
+
lastModified: number;
|
|
545
|
+
webkitRelativePath: string;
|
|
546
|
+
} | undefined;
|
|
547
|
+
refUid?: string | undefined;
|
|
427
548
|
}[];
|
|
428
549
|
};
|
|
429
550
|
auth: Record<string, any>;
|
|
@@ -526,6 +647,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
526
647
|
isReadOnly: boolean;
|
|
527
648
|
collectionUids: string[];
|
|
528
649
|
environmentUids: string[];
|
|
650
|
+
activeEnvironmentId: string;
|
|
529
651
|
cookieUids: string[];
|
|
530
652
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
531
653
|
hotKeyConfig?: {
|
|
@@ -593,11 +715,22 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
593
715
|
key: string;
|
|
594
716
|
value: string;
|
|
595
717
|
} | {
|
|
596
|
-
_scalarEnvId:
|
|
718
|
+
_scalarEnvId: string;
|
|
597
719
|
key: string;
|
|
598
720
|
value: unknown;
|
|
599
721
|
})[]>;
|
|
600
722
|
activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
|
|
723
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
724
|
+
uid: string;
|
|
725
|
+
name: string;
|
|
726
|
+
color: string;
|
|
727
|
+
raw: string;
|
|
728
|
+
parsed: {
|
|
729
|
+
value: string;
|
|
730
|
+
key: string;
|
|
731
|
+
}[];
|
|
732
|
+
isDefault?: boolean | undefined;
|
|
733
|
+
}>;
|
|
601
734
|
modalState: {
|
|
602
735
|
open: boolean;
|
|
603
736
|
show: () => void;
|
|
@@ -608,7 +741,9 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
608
741
|
sidebarWidth: import("vue").Ref<string>;
|
|
609
742
|
setSidebarWidth: (width: string) => void;
|
|
610
743
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
611
|
-
importSpecFile: (_spec: string |
|
|
744
|
+
importSpecFile: (_spec: string | {
|
|
745
|
+
[x: string]: any;
|
|
746
|
+
}, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
612
747
|
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
613
748
|
cookieMutators: {
|
|
614
749
|
add: (item: {
|
|
@@ -1264,7 +1399,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1264
1399
|
body: {
|
|
1265
1400
|
raw: {
|
|
1266
1401
|
value: string;
|
|
1267
|
-
encoding: "
|
|
1402
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1268
1403
|
};
|
|
1269
1404
|
formData: {
|
|
1270
1405
|
value: {
|
|
@@ -1278,15 +1413,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1278
1413
|
required?: boolean | undefined;
|
|
1279
1414
|
description?: string | undefined;
|
|
1280
1415
|
enum?: string[] | undefined;
|
|
1281
|
-
file?: any;
|
|
1282
|
-
refUid?: string | undefined;
|
|
1283
|
-
format?: string | undefined;
|
|
1284
1416
|
nullable?: boolean | undefined;
|
|
1417
|
+
format?: string | undefined;
|
|
1418
|
+
file?: {
|
|
1419
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1420
|
+
type: string;
|
|
1421
|
+
name: string;
|
|
1422
|
+
size: number;
|
|
1423
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1424
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1425
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1426
|
+
lastModified: number;
|
|
1427
|
+
webkitRelativePath: string;
|
|
1428
|
+
} | undefined;
|
|
1429
|
+
refUid?: string | undefined;
|
|
1285
1430
|
}[];
|
|
1286
1431
|
encoding: "form-data" | "urlencoded";
|
|
1287
1432
|
};
|
|
1288
1433
|
activeBody: "raw" | "formData" | "binary";
|
|
1289
|
-
binary?:
|
|
1434
|
+
binary?: {
|
|
1435
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1436
|
+
type: string;
|
|
1437
|
+
name: string;
|
|
1438
|
+
size: number;
|
|
1439
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1440
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1441
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1442
|
+
lastModified: number;
|
|
1443
|
+
webkitRelativePath: string;
|
|
1444
|
+
} | undefined;
|
|
1290
1445
|
};
|
|
1291
1446
|
parameters: {
|
|
1292
1447
|
path: {
|
|
@@ -1300,10 +1455,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1300
1455
|
required?: boolean | undefined;
|
|
1301
1456
|
description?: string | undefined;
|
|
1302
1457
|
enum?: string[] | undefined;
|
|
1303
|
-
file?: any;
|
|
1304
|
-
refUid?: string | undefined;
|
|
1305
|
-
format?: string | undefined;
|
|
1306
1458
|
nullable?: boolean | undefined;
|
|
1459
|
+
format?: string | undefined;
|
|
1460
|
+
file?: {
|
|
1461
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1462
|
+
type: string;
|
|
1463
|
+
name: string;
|
|
1464
|
+
size: number;
|
|
1465
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1466
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1467
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1468
|
+
lastModified: number;
|
|
1469
|
+
webkitRelativePath: string;
|
|
1470
|
+
} | undefined;
|
|
1471
|
+
refUid?: string | undefined;
|
|
1307
1472
|
}[];
|
|
1308
1473
|
query: {
|
|
1309
1474
|
value: string;
|
|
@@ -1316,10 +1481,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1316
1481
|
required?: boolean | undefined;
|
|
1317
1482
|
description?: string | undefined;
|
|
1318
1483
|
enum?: string[] | undefined;
|
|
1319
|
-
file?: any;
|
|
1320
|
-
refUid?: string | undefined;
|
|
1321
|
-
format?: string | undefined;
|
|
1322
1484
|
nullable?: boolean | undefined;
|
|
1485
|
+
format?: string | undefined;
|
|
1486
|
+
file?: {
|
|
1487
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1488
|
+
type: string;
|
|
1489
|
+
name: string;
|
|
1490
|
+
size: number;
|
|
1491
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1492
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1493
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1494
|
+
lastModified: number;
|
|
1495
|
+
webkitRelativePath: string;
|
|
1496
|
+
} | undefined;
|
|
1497
|
+
refUid?: string | undefined;
|
|
1323
1498
|
}[];
|
|
1324
1499
|
headers: {
|
|
1325
1500
|
value: string;
|
|
@@ -1332,10 +1507,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1332
1507
|
required?: boolean | undefined;
|
|
1333
1508
|
description?: string | undefined;
|
|
1334
1509
|
enum?: string[] | undefined;
|
|
1335
|
-
file?: any;
|
|
1336
|
-
refUid?: string | undefined;
|
|
1337
|
-
format?: string | undefined;
|
|
1338
1510
|
nullable?: boolean | undefined;
|
|
1511
|
+
format?: string | undefined;
|
|
1512
|
+
file?: {
|
|
1513
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1514
|
+
type: string;
|
|
1515
|
+
name: string;
|
|
1516
|
+
size: number;
|
|
1517
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1518
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1519
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1520
|
+
lastModified: number;
|
|
1521
|
+
webkitRelativePath: string;
|
|
1522
|
+
} | undefined;
|
|
1523
|
+
refUid?: string | undefined;
|
|
1339
1524
|
}[];
|
|
1340
1525
|
cookies: {
|
|
1341
1526
|
value: string;
|
|
@@ -1348,10 +1533,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1348
1533
|
required?: boolean | undefined;
|
|
1349
1534
|
description?: string | undefined;
|
|
1350
1535
|
enum?: string[] | undefined;
|
|
1351
|
-
file?: any;
|
|
1352
|
-
refUid?: string | undefined;
|
|
1353
|
-
format?: string | undefined;
|
|
1354
1536
|
nullable?: boolean | undefined;
|
|
1537
|
+
format?: string | undefined;
|
|
1538
|
+
file?: {
|
|
1539
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1540
|
+
type: string;
|
|
1541
|
+
name: string;
|
|
1542
|
+
size: number;
|
|
1543
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1544
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1545
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1546
|
+
lastModified: number;
|
|
1547
|
+
webkitRelativePath: string;
|
|
1548
|
+
} | undefined;
|
|
1549
|
+
refUid?: string | undefined;
|
|
1355
1550
|
}[];
|
|
1356
1551
|
};
|
|
1357
1552
|
auth: Record<string, any>;
|
|
@@ -1364,7 +1559,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1364
1559
|
body: {
|
|
1365
1560
|
raw: {
|
|
1366
1561
|
value: string;
|
|
1367
|
-
encoding: "
|
|
1562
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1368
1563
|
};
|
|
1369
1564
|
formData: {
|
|
1370
1565
|
value: {
|
|
@@ -1378,15 +1573,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1378
1573
|
required?: boolean | undefined;
|
|
1379
1574
|
description?: string | undefined;
|
|
1380
1575
|
enum?: string[] | undefined;
|
|
1381
|
-
file?: any;
|
|
1382
|
-
refUid?: string | undefined;
|
|
1383
|
-
format?: string | undefined;
|
|
1384
1576
|
nullable?: boolean | undefined;
|
|
1577
|
+
format?: string | undefined;
|
|
1578
|
+
file?: {
|
|
1579
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1580
|
+
type: string;
|
|
1581
|
+
name: string;
|
|
1582
|
+
size: number;
|
|
1583
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1584
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1585
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1586
|
+
lastModified: number;
|
|
1587
|
+
webkitRelativePath: string;
|
|
1588
|
+
} | undefined;
|
|
1589
|
+
refUid?: string | undefined;
|
|
1385
1590
|
}[];
|
|
1386
1591
|
encoding: "form-data" | "urlencoded";
|
|
1387
1592
|
};
|
|
1388
1593
|
activeBody: "raw" | "formData" | "binary";
|
|
1389
|
-
binary?:
|
|
1594
|
+
binary?: {
|
|
1595
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1596
|
+
type: string;
|
|
1597
|
+
name: string;
|
|
1598
|
+
size: number;
|
|
1599
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1600
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1601
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1602
|
+
lastModified: number;
|
|
1603
|
+
webkitRelativePath: string;
|
|
1604
|
+
} | undefined;
|
|
1390
1605
|
};
|
|
1391
1606
|
parameters: {
|
|
1392
1607
|
path: {
|
|
@@ -1400,10 +1615,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1400
1615
|
required?: boolean | undefined;
|
|
1401
1616
|
description?: string | undefined;
|
|
1402
1617
|
enum?: string[] | undefined;
|
|
1403
|
-
file?: any;
|
|
1404
|
-
refUid?: string | undefined;
|
|
1405
|
-
format?: string | undefined;
|
|
1406
1618
|
nullable?: boolean | undefined;
|
|
1619
|
+
format?: string | undefined;
|
|
1620
|
+
file?: {
|
|
1621
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1622
|
+
type: string;
|
|
1623
|
+
name: string;
|
|
1624
|
+
size: number;
|
|
1625
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1626
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1627
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1628
|
+
lastModified: number;
|
|
1629
|
+
webkitRelativePath: string;
|
|
1630
|
+
} | undefined;
|
|
1631
|
+
refUid?: string | undefined;
|
|
1407
1632
|
}[];
|
|
1408
1633
|
query: {
|
|
1409
1634
|
value: string;
|
|
@@ -1416,10 +1641,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1416
1641
|
required?: boolean | undefined;
|
|
1417
1642
|
description?: string | undefined;
|
|
1418
1643
|
enum?: string[] | undefined;
|
|
1419
|
-
file?: any;
|
|
1420
|
-
refUid?: string | undefined;
|
|
1421
|
-
format?: string | undefined;
|
|
1422
1644
|
nullable?: boolean | undefined;
|
|
1645
|
+
format?: string | undefined;
|
|
1646
|
+
file?: {
|
|
1647
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1648
|
+
type: string;
|
|
1649
|
+
name: string;
|
|
1650
|
+
size: number;
|
|
1651
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1652
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1653
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1654
|
+
lastModified: number;
|
|
1655
|
+
webkitRelativePath: string;
|
|
1656
|
+
} | undefined;
|
|
1657
|
+
refUid?: string | undefined;
|
|
1423
1658
|
}[];
|
|
1424
1659
|
headers: {
|
|
1425
1660
|
value: string;
|
|
@@ -1432,10 +1667,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1432
1667
|
required?: boolean | undefined;
|
|
1433
1668
|
description?: string | undefined;
|
|
1434
1669
|
enum?: string[] | undefined;
|
|
1435
|
-
file?: any;
|
|
1436
|
-
refUid?: string | undefined;
|
|
1437
|
-
format?: string | undefined;
|
|
1438
1670
|
nullable?: boolean | undefined;
|
|
1671
|
+
format?: string | undefined;
|
|
1672
|
+
file?: {
|
|
1673
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1674
|
+
type: string;
|
|
1675
|
+
name: string;
|
|
1676
|
+
size: number;
|
|
1677
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1678
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1679
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1680
|
+
lastModified: number;
|
|
1681
|
+
webkitRelativePath: string;
|
|
1682
|
+
} | undefined;
|
|
1683
|
+
refUid?: string | undefined;
|
|
1439
1684
|
}[];
|
|
1440
1685
|
cookies: {
|
|
1441
1686
|
value: string;
|
|
@@ -1448,10 +1693,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1448
1693
|
required?: boolean | undefined;
|
|
1449
1694
|
description?: string | undefined;
|
|
1450
1695
|
enum?: string[] | undefined;
|
|
1451
|
-
file?: any;
|
|
1452
|
-
refUid?: string | undefined;
|
|
1453
|
-
format?: string | undefined;
|
|
1454
1696
|
nullable?: boolean | undefined;
|
|
1697
|
+
format?: string | undefined;
|
|
1698
|
+
file?: {
|
|
1699
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1700
|
+
type: string;
|
|
1701
|
+
name: string;
|
|
1702
|
+
size: number;
|
|
1703
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1704
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1705
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1706
|
+
lastModified: number;
|
|
1707
|
+
webkitRelativePath: string;
|
|
1708
|
+
} | undefined;
|
|
1709
|
+
refUid?: string | undefined;
|
|
1455
1710
|
}[];
|
|
1456
1711
|
};
|
|
1457
1712
|
auth: Record<string, any>;
|
|
@@ -1465,7 +1720,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1465
1720
|
body: {
|
|
1466
1721
|
raw: {
|
|
1467
1722
|
value: string;
|
|
1468
|
-
encoding: "
|
|
1723
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1469
1724
|
};
|
|
1470
1725
|
formData: {
|
|
1471
1726
|
value: {
|
|
@@ -1479,15 +1734,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1479
1734
|
required?: boolean | undefined;
|
|
1480
1735
|
description?: string | undefined;
|
|
1481
1736
|
enum?: string[] | undefined;
|
|
1482
|
-
file?: any;
|
|
1483
|
-
refUid?: string | undefined;
|
|
1484
|
-
format?: string | undefined;
|
|
1485
1737
|
nullable?: boolean | undefined;
|
|
1738
|
+
format?: string | undefined;
|
|
1739
|
+
file?: {
|
|
1740
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1741
|
+
type: string;
|
|
1742
|
+
name: string;
|
|
1743
|
+
size: number;
|
|
1744
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1745
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1746
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1747
|
+
lastModified: number;
|
|
1748
|
+
webkitRelativePath: string;
|
|
1749
|
+
} | undefined;
|
|
1750
|
+
refUid?: string | undefined;
|
|
1486
1751
|
}[];
|
|
1487
1752
|
encoding: "form-data" | "urlencoded";
|
|
1488
1753
|
};
|
|
1489
1754
|
activeBody: "raw" | "formData" | "binary";
|
|
1490
|
-
binary?:
|
|
1755
|
+
binary?: {
|
|
1756
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1757
|
+
type: string;
|
|
1758
|
+
name: string;
|
|
1759
|
+
size: number;
|
|
1760
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1761
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1762
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1763
|
+
lastModified: number;
|
|
1764
|
+
webkitRelativePath: string;
|
|
1765
|
+
} | undefined;
|
|
1491
1766
|
};
|
|
1492
1767
|
parameters: {
|
|
1493
1768
|
path: {
|
|
@@ -1501,10 +1776,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1501
1776
|
required?: boolean | undefined;
|
|
1502
1777
|
description?: string | undefined;
|
|
1503
1778
|
enum?: string[] | undefined;
|
|
1504
|
-
file?: any;
|
|
1505
|
-
refUid?: string | undefined;
|
|
1506
|
-
format?: string | undefined;
|
|
1507
1779
|
nullable?: boolean | undefined;
|
|
1780
|
+
format?: string | undefined;
|
|
1781
|
+
file?: {
|
|
1782
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1783
|
+
type: string;
|
|
1784
|
+
name: string;
|
|
1785
|
+
size: number;
|
|
1786
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1787
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1788
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1789
|
+
lastModified: number;
|
|
1790
|
+
webkitRelativePath: string;
|
|
1791
|
+
} | undefined;
|
|
1792
|
+
refUid?: string | undefined;
|
|
1508
1793
|
}[];
|
|
1509
1794
|
query: {
|
|
1510
1795
|
value: string;
|
|
@@ -1517,10 +1802,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1517
1802
|
required?: boolean | undefined;
|
|
1518
1803
|
description?: string | undefined;
|
|
1519
1804
|
enum?: string[] | undefined;
|
|
1520
|
-
file?: any;
|
|
1521
|
-
refUid?: string | undefined;
|
|
1522
|
-
format?: string | undefined;
|
|
1523
1805
|
nullable?: boolean | undefined;
|
|
1806
|
+
format?: string | undefined;
|
|
1807
|
+
file?: {
|
|
1808
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1809
|
+
type: string;
|
|
1810
|
+
name: string;
|
|
1811
|
+
size: number;
|
|
1812
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1813
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1814
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1815
|
+
lastModified: number;
|
|
1816
|
+
webkitRelativePath: string;
|
|
1817
|
+
} | undefined;
|
|
1818
|
+
refUid?: string | undefined;
|
|
1524
1819
|
}[];
|
|
1525
1820
|
headers: {
|
|
1526
1821
|
value: string;
|
|
@@ -1533,10 +1828,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1533
1828
|
required?: boolean | undefined;
|
|
1534
1829
|
description?: string | undefined;
|
|
1535
1830
|
enum?: string[] | undefined;
|
|
1536
|
-
file?: any;
|
|
1537
|
-
refUid?: string | undefined;
|
|
1538
|
-
format?: string | undefined;
|
|
1539
1831
|
nullable?: boolean | undefined;
|
|
1832
|
+
format?: string | undefined;
|
|
1833
|
+
file?: {
|
|
1834
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1835
|
+
type: string;
|
|
1836
|
+
name: string;
|
|
1837
|
+
size: number;
|
|
1838
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1839
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1840
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1841
|
+
lastModified: number;
|
|
1842
|
+
webkitRelativePath: string;
|
|
1843
|
+
} | undefined;
|
|
1844
|
+
refUid?: string | undefined;
|
|
1540
1845
|
}[];
|
|
1541
1846
|
cookies: {
|
|
1542
1847
|
value: string;
|
|
@@ -1549,15 +1854,25 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1549
1854
|
required?: boolean | undefined;
|
|
1550
1855
|
description?: string | undefined;
|
|
1551
1856
|
enum?: string[] | undefined;
|
|
1552
|
-
file?: any;
|
|
1553
|
-
refUid?: string | undefined;
|
|
1554
|
-
format?: string | undefined;
|
|
1555
1857
|
nullable?: boolean | undefined;
|
|
1858
|
+
format?: string | undefined;
|
|
1859
|
+
file?: {
|
|
1860
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1861
|
+
type: string;
|
|
1862
|
+
name: string;
|
|
1863
|
+
size: number;
|
|
1864
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1865
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1866
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1867
|
+
lastModified: number;
|
|
1868
|
+
webkitRelativePath: string;
|
|
1869
|
+
} | undefined;
|
|
1870
|
+
refUid?: string | undefined;
|
|
1556
1871
|
}[];
|
|
1557
1872
|
};
|
|
1558
1873
|
auth: Record<string, any>;
|
|
1559
1874
|
}) => void;
|
|
1560
|
-
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}.
|
|
1875
|
+
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" ? {
|
|
1561
1876
|
uid: string;
|
|
1562
1877
|
name: string;
|
|
1563
1878
|
url: string;
|
|
@@ -1565,7 +1880,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1565
1880
|
body: {
|
|
1566
1881
|
raw: {
|
|
1567
1882
|
value: string;
|
|
1568
|
-
encoding: "
|
|
1883
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1569
1884
|
};
|
|
1570
1885
|
formData: {
|
|
1571
1886
|
value: {
|
|
@@ -1579,15 +1894,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1579
1894
|
required?: boolean | undefined;
|
|
1580
1895
|
description?: string | undefined;
|
|
1581
1896
|
enum?: string[] | undefined;
|
|
1582
|
-
file?: any;
|
|
1583
|
-
refUid?: string | undefined;
|
|
1584
|
-
format?: string | undefined;
|
|
1585
1897
|
nullable?: boolean | undefined;
|
|
1898
|
+
format?: string | undefined;
|
|
1899
|
+
file?: {
|
|
1900
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1901
|
+
type: string;
|
|
1902
|
+
name: string;
|
|
1903
|
+
size: number;
|
|
1904
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1905
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1906
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1907
|
+
lastModified: number;
|
|
1908
|
+
webkitRelativePath: string;
|
|
1909
|
+
} | undefined;
|
|
1910
|
+
refUid?: string | undefined;
|
|
1586
1911
|
}[];
|
|
1587
1912
|
encoding: "form-data" | "urlencoded";
|
|
1588
1913
|
};
|
|
1589
1914
|
activeBody: "raw" | "formData" | "binary";
|
|
1590
|
-
binary?:
|
|
1915
|
+
binary?: {
|
|
1916
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1917
|
+
type: string;
|
|
1918
|
+
name: string;
|
|
1919
|
+
size: number;
|
|
1920
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1921
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1922
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1923
|
+
lastModified: number;
|
|
1924
|
+
webkitRelativePath: string;
|
|
1925
|
+
} | undefined;
|
|
1591
1926
|
};
|
|
1592
1927
|
parameters: {
|
|
1593
1928
|
path: {
|
|
@@ -1601,10 +1936,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1601
1936
|
required?: boolean | undefined;
|
|
1602
1937
|
description?: string | undefined;
|
|
1603
1938
|
enum?: string[] | undefined;
|
|
1604
|
-
file?: any;
|
|
1605
|
-
refUid?: string | undefined;
|
|
1606
|
-
format?: string | undefined;
|
|
1607
1939
|
nullable?: boolean | undefined;
|
|
1940
|
+
format?: string | undefined;
|
|
1941
|
+
file?: {
|
|
1942
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1943
|
+
type: string;
|
|
1944
|
+
name: string;
|
|
1945
|
+
size: number;
|
|
1946
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1947
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1948
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1949
|
+
lastModified: number;
|
|
1950
|
+
webkitRelativePath: string;
|
|
1951
|
+
} | undefined;
|
|
1952
|
+
refUid?: string | undefined;
|
|
1608
1953
|
}[];
|
|
1609
1954
|
query: {
|
|
1610
1955
|
value: string;
|
|
@@ -1617,10 +1962,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1617
1962
|
required?: boolean | undefined;
|
|
1618
1963
|
description?: string | undefined;
|
|
1619
1964
|
enum?: string[] | undefined;
|
|
1620
|
-
file?: any;
|
|
1621
|
-
refUid?: string | undefined;
|
|
1622
|
-
format?: string | undefined;
|
|
1623
1965
|
nullable?: boolean | undefined;
|
|
1966
|
+
format?: string | undefined;
|
|
1967
|
+
file?: {
|
|
1968
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1969
|
+
type: string;
|
|
1970
|
+
name: string;
|
|
1971
|
+
size: number;
|
|
1972
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1973
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1974
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1975
|
+
lastModified: number;
|
|
1976
|
+
webkitRelativePath: string;
|
|
1977
|
+
} | undefined;
|
|
1978
|
+
refUid?: string | undefined;
|
|
1624
1979
|
}[];
|
|
1625
1980
|
headers: {
|
|
1626
1981
|
value: string;
|
|
@@ -1633,10 +1988,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1633
1988
|
required?: boolean | undefined;
|
|
1634
1989
|
description?: string | undefined;
|
|
1635
1990
|
enum?: string[] | undefined;
|
|
1636
|
-
file?: any;
|
|
1637
|
-
refUid?: string | undefined;
|
|
1638
|
-
format?: string | undefined;
|
|
1639
1991
|
nullable?: boolean | undefined;
|
|
1992
|
+
format?: string | undefined;
|
|
1993
|
+
file?: {
|
|
1994
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1995
|
+
type: string;
|
|
1996
|
+
name: string;
|
|
1997
|
+
size: number;
|
|
1998
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1999
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2000
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2001
|
+
lastModified: number;
|
|
2002
|
+
webkitRelativePath: string;
|
|
2003
|
+
} | undefined;
|
|
2004
|
+
refUid?: string | undefined;
|
|
1640
2005
|
}[];
|
|
1641
2006
|
cookies: {
|
|
1642
2007
|
value: string;
|
|
@@ -1649,10 +2014,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1649
2014
|
required?: boolean | undefined;
|
|
1650
2015
|
description?: string | undefined;
|
|
1651
2016
|
enum?: string[] | undefined;
|
|
1652
|
-
file?: any;
|
|
1653
|
-
refUid?: string | undefined;
|
|
1654
|
-
format?: string | undefined;
|
|
1655
2017
|
nullable?: boolean | undefined;
|
|
2018
|
+
format?: string | undefined;
|
|
2019
|
+
file?: {
|
|
2020
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2021
|
+
type: string;
|
|
2022
|
+
name: string;
|
|
2023
|
+
size: number;
|
|
2024
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2025
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2026
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2027
|
+
lastModified: number;
|
|
2028
|
+
webkitRelativePath: string;
|
|
2029
|
+
} | undefined;
|
|
2030
|
+
refUid?: string | undefined;
|
|
1656
2031
|
}[];
|
|
1657
2032
|
};
|
|
1658
2033
|
auth: Record<string, any>;
|
|
@@ -1664,7 +2039,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1664
2039
|
body: {
|
|
1665
2040
|
raw: {
|
|
1666
2041
|
value: string;
|
|
1667
|
-
encoding: "
|
|
2042
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1668
2043
|
};
|
|
1669
2044
|
formData: {
|
|
1670
2045
|
value: {
|
|
@@ -1678,15 +2053,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1678
2053
|
required?: boolean | undefined;
|
|
1679
2054
|
description?: string | undefined;
|
|
1680
2055
|
enum?: string[] | undefined;
|
|
1681
|
-
file?: any;
|
|
1682
|
-
refUid?: string | undefined;
|
|
1683
|
-
format?: string | undefined;
|
|
1684
2056
|
nullable?: boolean | undefined;
|
|
2057
|
+
format?: string | undefined;
|
|
2058
|
+
file?: {
|
|
2059
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2060
|
+
type: string;
|
|
2061
|
+
name: string;
|
|
2062
|
+
size: number;
|
|
2063
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2064
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2065
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2066
|
+
lastModified: number;
|
|
2067
|
+
webkitRelativePath: string;
|
|
2068
|
+
} | undefined;
|
|
2069
|
+
refUid?: string | undefined;
|
|
1685
2070
|
}[];
|
|
1686
2071
|
encoding: "form-data" | "urlencoded";
|
|
1687
2072
|
};
|
|
1688
2073
|
activeBody: "raw" | "formData" | "binary";
|
|
1689
|
-
binary?:
|
|
2074
|
+
binary?: {
|
|
2075
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2076
|
+
type: string;
|
|
2077
|
+
name: string;
|
|
2078
|
+
size: number;
|
|
2079
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2080
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2081
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2082
|
+
lastModified: number;
|
|
2083
|
+
webkitRelativePath: string;
|
|
2084
|
+
} | undefined;
|
|
1690
2085
|
};
|
|
1691
2086
|
parameters: {
|
|
1692
2087
|
path: {
|
|
@@ -1700,10 +2095,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1700
2095
|
required?: boolean | undefined;
|
|
1701
2096
|
description?: string | undefined;
|
|
1702
2097
|
enum?: string[] | undefined;
|
|
1703
|
-
file?: any;
|
|
1704
|
-
refUid?: string | undefined;
|
|
1705
|
-
format?: string | undefined;
|
|
1706
2098
|
nullable?: boolean | undefined;
|
|
2099
|
+
format?: string | undefined;
|
|
2100
|
+
file?: {
|
|
2101
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2102
|
+
type: string;
|
|
2103
|
+
name: string;
|
|
2104
|
+
size: number;
|
|
2105
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2106
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2107
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2108
|
+
lastModified: number;
|
|
2109
|
+
webkitRelativePath: string;
|
|
2110
|
+
} | undefined;
|
|
2111
|
+
refUid?: string | undefined;
|
|
1707
2112
|
}[];
|
|
1708
2113
|
query: {
|
|
1709
2114
|
value: string;
|
|
@@ -1716,10 +2121,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1716
2121
|
required?: boolean | undefined;
|
|
1717
2122
|
description?: string | undefined;
|
|
1718
2123
|
enum?: string[] | undefined;
|
|
1719
|
-
file?: any;
|
|
1720
|
-
refUid?: string | undefined;
|
|
1721
|
-
format?: string | undefined;
|
|
1722
2124
|
nullable?: boolean | undefined;
|
|
2125
|
+
format?: string | undefined;
|
|
2126
|
+
file?: {
|
|
2127
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2128
|
+
type: string;
|
|
2129
|
+
name: string;
|
|
2130
|
+
size: number;
|
|
2131
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2132
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2133
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2134
|
+
lastModified: number;
|
|
2135
|
+
webkitRelativePath: string;
|
|
2136
|
+
} | undefined;
|
|
2137
|
+
refUid?: string | undefined;
|
|
1723
2138
|
}[];
|
|
1724
2139
|
headers: {
|
|
1725
2140
|
value: string;
|
|
@@ -1732,10 +2147,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1732
2147
|
required?: boolean | undefined;
|
|
1733
2148
|
description?: string | undefined;
|
|
1734
2149
|
enum?: string[] | undefined;
|
|
1735
|
-
file?: any;
|
|
1736
|
-
refUid?: string | undefined;
|
|
1737
|
-
format?: string | undefined;
|
|
1738
2150
|
nullable?: boolean | undefined;
|
|
2151
|
+
format?: string | undefined;
|
|
2152
|
+
file?: {
|
|
2153
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2154
|
+
type: string;
|
|
2155
|
+
name: string;
|
|
2156
|
+
size: number;
|
|
2157
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2158
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2159
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2160
|
+
lastModified: number;
|
|
2161
|
+
webkitRelativePath: string;
|
|
2162
|
+
} | undefined;
|
|
2163
|
+
refUid?: string | undefined;
|
|
1739
2164
|
}[];
|
|
1740
2165
|
cookies: {
|
|
1741
2166
|
value: string;
|
|
@@ -1748,10 +2173,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1748
2173
|
required?: boolean | undefined;
|
|
1749
2174
|
description?: string | undefined;
|
|
1750
2175
|
enum?: string[] | undefined;
|
|
1751
|
-
file?: any;
|
|
1752
|
-
refUid?: string | undefined;
|
|
1753
|
-
format?: string | undefined;
|
|
1754
2176
|
nullable?: boolean | undefined;
|
|
2177
|
+
format?: string | undefined;
|
|
2178
|
+
file?: {
|
|
2179
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2180
|
+
type: string;
|
|
2181
|
+
name: string;
|
|
2182
|
+
size: number;
|
|
2183
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2184
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2185
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2186
|
+
lastModified: number;
|
|
2187
|
+
webkitRelativePath: string;
|
|
2188
|
+
} | undefined;
|
|
2189
|
+
refUid?: string | undefined;
|
|
1755
2190
|
}[];
|
|
1756
2191
|
};
|
|
1757
2192
|
auth: Record<string, any>;
|
|
@@ -1763,7 +2198,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1763
2198
|
body: {
|
|
1764
2199
|
raw: {
|
|
1765
2200
|
value: string;
|
|
1766
|
-
encoding: "
|
|
2201
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1767
2202
|
};
|
|
1768
2203
|
formData: {
|
|
1769
2204
|
value: {
|
|
@@ -1777,15 +2212,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1777
2212
|
required?: boolean | undefined;
|
|
1778
2213
|
description?: string | undefined;
|
|
1779
2214
|
enum?: string[] | undefined;
|
|
1780
|
-
file?: any;
|
|
1781
|
-
refUid?: string | undefined;
|
|
1782
|
-
format?: string | undefined;
|
|
1783
2215
|
nullable?: boolean | undefined;
|
|
2216
|
+
format?: string | undefined;
|
|
2217
|
+
file?: {
|
|
2218
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2219
|
+
type: string;
|
|
2220
|
+
name: string;
|
|
2221
|
+
size: number;
|
|
2222
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2223
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2224
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2225
|
+
lastModified: number;
|
|
2226
|
+
webkitRelativePath: string;
|
|
2227
|
+
} | undefined;
|
|
2228
|
+
refUid?: string | undefined;
|
|
1784
2229
|
}[];
|
|
1785
2230
|
encoding: "form-data" | "urlencoded";
|
|
1786
2231
|
};
|
|
1787
2232
|
activeBody: "raw" | "formData" | "binary";
|
|
1788
|
-
binary?:
|
|
2233
|
+
binary?: {
|
|
2234
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2235
|
+
type: string;
|
|
2236
|
+
name: string;
|
|
2237
|
+
size: number;
|
|
2238
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2239
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2240
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2241
|
+
lastModified: number;
|
|
2242
|
+
webkitRelativePath: string;
|
|
2243
|
+
} | undefined;
|
|
1789
2244
|
};
|
|
1790
2245
|
parameters: {
|
|
1791
2246
|
path: {
|
|
@@ -1799,10 +2254,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1799
2254
|
required?: boolean | undefined;
|
|
1800
2255
|
description?: string | undefined;
|
|
1801
2256
|
enum?: string[] | undefined;
|
|
1802
|
-
file?: any;
|
|
1803
|
-
refUid?: string | undefined;
|
|
1804
|
-
format?: string | undefined;
|
|
1805
2257
|
nullable?: boolean | undefined;
|
|
2258
|
+
format?: string | undefined;
|
|
2259
|
+
file?: {
|
|
2260
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2261
|
+
type: string;
|
|
2262
|
+
name: string;
|
|
2263
|
+
size: number;
|
|
2264
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2265
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2266
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2267
|
+
lastModified: number;
|
|
2268
|
+
webkitRelativePath: string;
|
|
2269
|
+
} | undefined;
|
|
2270
|
+
refUid?: string | undefined;
|
|
1806
2271
|
}[];
|
|
1807
2272
|
query: {
|
|
1808
2273
|
value: string;
|
|
@@ -1815,10 +2280,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1815
2280
|
required?: boolean | undefined;
|
|
1816
2281
|
description?: string | undefined;
|
|
1817
2282
|
enum?: string[] | undefined;
|
|
1818
|
-
file?: any;
|
|
1819
|
-
refUid?: string | undefined;
|
|
1820
|
-
format?: string | undefined;
|
|
1821
2283
|
nullable?: boolean | undefined;
|
|
2284
|
+
format?: string | undefined;
|
|
2285
|
+
file?: {
|
|
2286
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2287
|
+
type: string;
|
|
2288
|
+
name: string;
|
|
2289
|
+
size: number;
|
|
2290
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2291
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2292
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2293
|
+
lastModified: number;
|
|
2294
|
+
webkitRelativePath: string;
|
|
2295
|
+
} | undefined;
|
|
2296
|
+
refUid?: string | undefined;
|
|
1822
2297
|
}[];
|
|
1823
2298
|
headers: {
|
|
1824
2299
|
value: string;
|
|
@@ -1831,10 +2306,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1831
2306
|
required?: boolean | undefined;
|
|
1832
2307
|
description?: string | undefined;
|
|
1833
2308
|
enum?: string[] | undefined;
|
|
1834
|
-
file?: any;
|
|
1835
|
-
refUid?: string | undefined;
|
|
1836
|
-
format?: string | undefined;
|
|
1837
2309
|
nullable?: boolean | undefined;
|
|
2310
|
+
format?: string | undefined;
|
|
2311
|
+
file?: {
|
|
2312
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2313
|
+
type: string;
|
|
2314
|
+
name: string;
|
|
2315
|
+
size: number;
|
|
2316
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2317
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2318
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2319
|
+
lastModified: number;
|
|
2320
|
+
webkitRelativePath: string;
|
|
2321
|
+
} | undefined;
|
|
2322
|
+
refUid?: string | undefined;
|
|
1838
2323
|
}[];
|
|
1839
2324
|
cookies: {
|
|
1840
2325
|
value: string;
|
|
@@ -1847,15 +2332,25 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1847
2332
|
required?: boolean | undefined;
|
|
1848
2333
|
description?: string | undefined;
|
|
1849
2334
|
enum?: string[] | undefined;
|
|
1850
|
-
file?: any;
|
|
1851
|
-
refUid?: string | undefined;
|
|
1852
|
-
format?: string | undefined;
|
|
1853
2335
|
nullable?: boolean | undefined;
|
|
2336
|
+
format?: string | undefined;
|
|
2337
|
+
file?: {
|
|
2338
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2339
|
+
type: string;
|
|
2340
|
+
name: string;
|
|
2341
|
+
size: number;
|
|
2342
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2343
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2344
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2345
|
+
lastModified: number;
|
|
2346
|
+
webkitRelativePath: string;
|
|
2347
|
+
} | undefined;
|
|
2348
|
+
refUid?: string | undefined;
|
|
1854
2349
|
}[];
|
|
1855
2350
|
};
|
|
1856
2351
|
auth: Record<string, any>;
|
|
1857
2352
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1858
|
-
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}.
|
|
2353
|
+
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" ? {
|
|
1859
2354
|
uid: string;
|
|
1860
2355
|
name: string;
|
|
1861
2356
|
url: string;
|
|
@@ -1863,7 +2358,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1863
2358
|
body: {
|
|
1864
2359
|
raw: {
|
|
1865
2360
|
value: string;
|
|
1866
|
-
encoding: "
|
|
2361
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1867
2362
|
};
|
|
1868
2363
|
formData: {
|
|
1869
2364
|
value: {
|
|
@@ -1877,15 +2372,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1877
2372
|
required?: boolean | undefined;
|
|
1878
2373
|
description?: string | undefined;
|
|
1879
2374
|
enum?: string[] | undefined;
|
|
1880
|
-
file?: any;
|
|
1881
|
-
refUid?: string | undefined;
|
|
1882
|
-
format?: string | undefined;
|
|
1883
2375
|
nullable?: boolean | undefined;
|
|
2376
|
+
format?: string | undefined;
|
|
2377
|
+
file?: {
|
|
2378
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2379
|
+
type: string;
|
|
2380
|
+
name: string;
|
|
2381
|
+
size: number;
|
|
2382
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2383
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2384
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2385
|
+
lastModified: number;
|
|
2386
|
+
webkitRelativePath: string;
|
|
2387
|
+
} | undefined;
|
|
2388
|
+
refUid?: string | undefined;
|
|
1884
2389
|
}[];
|
|
1885
2390
|
encoding: "form-data" | "urlencoded";
|
|
1886
2391
|
};
|
|
1887
2392
|
activeBody: "raw" | "formData" | "binary";
|
|
1888
|
-
binary?:
|
|
2393
|
+
binary?: {
|
|
2394
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2395
|
+
type: string;
|
|
2396
|
+
name: string;
|
|
2397
|
+
size: number;
|
|
2398
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2399
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2400
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2401
|
+
lastModified: number;
|
|
2402
|
+
webkitRelativePath: string;
|
|
2403
|
+
} | undefined;
|
|
1889
2404
|
};
|
|
1890
2405
|
parameters: {
|
|
1891
2406
|
path: {
|
|
@@ -1899,10 +2414,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1899
2414
|
required?: boolean | undefined;
|
|
1900
2415
|
description?: string | undefined;
|
|
1901
2416
|
enum?: string[] | undefined;
|
|
1902
|
-
file?: any;
|
|
1903
|
-
refUid?: string | undefined;
|
|
1904
|
-
format?: string | undefined;
|
|
1905
2417
|
nullable?: boolean | undefined;
|
|
2418
|
+
format?: string | undefined;
|
|
2419
|
+
file?: {
|
|
2420
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2421
|
+
type: string;
|
|
2422
|
+
name: string;
|
|
2423
|
+
size: number;
|
|
2424
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2425
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2426
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2427
|
+
lastModified: number;
|
|
2428
|
+
webkitRelativePath: string;
|
|
2429
|
+
} | undefined;
|
|
2430
|
+
refUid?: string | undefined;
|
|
1906
2431
|
}[];
|
|
1907
2432
|
query: {
|
|
1908
2433
|
value: string;
|
|
@@ -1915,10 +2440,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1915
2440
|
required?: boolean | undefined;
|
|
1916
2441
|
description?: string | undefined;
|
|
1917
2442
|
enum?: string[] | undefined;
|
|
1918
|
-
file?: any;
|
|
1919
|
-
refUid?: string | undefined;
|
|
1920
|
-
format?: string | undefined;
|
|
1921
2443
|
nullable?: boolean | undefined;
|
|
2444
|
+
format?: string | undefined;
|
|
2445
|
+
file?: {
|
|
2446
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2447
|
+
type: string;
|
|
2448
|
+
name: string;
|
|
2449
|
+
size: number;
|
|
2450
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2451
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2452
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2453
|
+
lastModified: number;
|
|
2454
|
+
webkitRelativePath: string;
|
|
2455
|
+
} | undefined;
|
|
2456
|
+
refUid?: string | undefined;
|
|
1922
2457
|
}[];
|
|
1923
2458
|
headers: {
|
|
1924
2459
|
value: string;
|
|
@@ -1931,10 +2466,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1931
2466
|
required?: boolean | undefined;
|
|
1932
2467
|
description?: string | undefined;
|
|
1933
2468
|
enum?: string[] | undefined;
|
|
1934
|
-
file?: any;
|
|
1935
|
-
refUid?: string | undefined;
|
|
1936
|
-
format?: string | undefined;
|
|
1937
2469
|
nullable?: boolean | undefined;
|
|
2470
|
+
format?: string | undefined;
|
|
2471
|
+
file?: {
|
|
2472
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2473
|
+
type: string;
|
|
2474
|
+
name: string;
|
|
2475
|
+
size: number;
|
|
2476
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2477
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2478
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2479
|
+
lastModified: number;
|
|
2480
|
+
webkitRelativePath: string;
|
|
2481
|
+
} | undefined;
|
|
2482
|
+
refUid?: string | undefined;
|
|
1938
2483
|
}[];
|
|
1939
2484
|
cookies: {
|
|
1940
2485
|
value: string;
|
|
@@ -1947,10 +2492,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1947
2492
|
required?: boolean | undefined;
|
|
1948
2493
|
description?: string | undefined;
|
|
1949
2494
|
enum?: string[] | undefined;
|
|
1950
|
-
file?: any;
|
|
1951
|
-
refUid?: string | undefined;
|
|
1952
|
-
format?: string | undefined;
|
|
1953
2495
|
nullable?: boolean | undefined;
|
|
2496
|
+
format?: string | undefined;
|
|
2497
|
+
file?: {
|
|
2498
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2499
|
+
type: string;
|
|
2500
|
+
name: string;
|
|
2501
|
+
size: number;
|
|
2502
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2503
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2504
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2505
|
+
lastModified: number;
|
|
2506
|
+
webkitRelativePath: string;
|
|
2507
|
+
} | undefined;
|
|
2508
|
+
refUid?: string | undefined;
|
|
1954
2509
|
}[];
|
|
1955
2510
|
};
|
|
1956
2511
|
auth: Record<string, any>;
|
|
@@ -1962,7 +2517,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1962
2517
|
body: {
|
|
1963
2518
|
raw: {
|
|
1964
2519
|
value: string;
|
|
1965
|
-
encoding: "
|
|
2520
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1966
2521
|
};
|
|
1967
2522
|
formData: {
|
|
1968
2523
|
value: {
|
|
@@ -1976,15 +2531,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1976
2531
|
required?: boolean | undefined;
|
|
1977
2532
|
description?: string | undefined;
|
|
1978
2533
|
enum?: string[] | undefined;
|
|
1979
|
-
file?: any;
|
|
1980
|
-
refUid?: string | undefined;
|
|
1981
|
-
format?: string | undefined;
|
|
1982
2534
|
nullable?: boolean | undefined;
|
|
2535
|
+
format?: string | undefined;
|
|
2536
|
+
file?: {
|
|
2537
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2538
|
+
type: string;
|
|
2539
|
+
name: string;
|
|
2540
|
+
size: number;
|
|
2541
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2542
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2543
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2544
|
+
lastModified: number;
|
|
2545
|
+
webkitRelativePath: string;
|
|
2546
|
+
} | undefined;
|
|
2547
|
+
refUid?: string | undefined;
|
|
1983
2548
|
}[];
|
|
1984
2549
|
encoding: "form-data" | "urlencoded";
|
|
1985
2550
|
};
|
|
1986
2551
|
activeBody: "raw" | "formData" | "binary";
|
|
1987
|
-
binary?:
|
|
2552
|
+
binary?: {
|
|
2553
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2554
|
+
type: string;
|
|
2555
|
+
name: string;
|
|
2556
|
+
size: number;
|
|
2557
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2558
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2559
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2560
|
+
lastModified: number;
|
|
2561
|
+
webkitRelativePath: string;
|
|
2562
|
+
} | undefined;
|
|
1988
2563
|
};
|
|
1989
2564
|
parameters: {
|
|
1990
2565
|
path: {
|
|
@@ -1998,10 +2573,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1998
2573
|
required?: boolean | undefined;
|
|
1999
2574
|
description?: string | undefined;
|
|
2000
2575
|
enum?: string[] | undefined;
|
|
2001
|
-
file?: any;
|
|
2002
|
-
refUid?: string | undefined;
|
|
2003
|
-
format?: string | undefined;
|
|
2004
2576
|
nullable?: boolean | undefined;
|
|
2577
|
+
format?: string | undefined;
|
|
2578
|
+
file?: {
|
|
2579
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2580
|
+
type: string;
|
|
2581
|
+
name: string;
|
|
2582
|
+
size: number;
|
|
2583
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2584
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2585
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2586
|
+
lastModified: number;
|
|
2587
|
+
webkitRelativePath: string;
|
|
2588
|
+
} | undefined;
|
|
2589
|
+
refUid?: string | undefined;
|
|
2005
2590
|
}[];
|
|
2006
2591
|
query: {
|
|
2007
2592
|
value: string;
|
|
@@ -2014,10 +2599,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2014
2599
|
required?: boolean | undefined;
|
|
2015
2600
|
description?: string | undefined;
|
|
2016
2601
|
enum?: string[] | undefined;
|
|
2017
|
-
file?: any;
|
|
2018
|
-
refUid?: string | undefined;
|
|
2019
|
-
format?: string | undefined;
|
|
2020
2602
|
nullable?: boolean | undefined;
|
|
2603
|
+
format?: string | undefined;
|
|
2604
|
+
file?: {
|
|
2605
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2606
|
+
type: string;
|
|
2607
|
+
name: string;
|
|
2608
|
+
size: number;
|
|
2609
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2610
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2611
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2612
|
+
lastModified: number;
|
|
2613
|
+
webkitRelativePath: string;
|
|
2614
|
+
} | undefined;
|
|
2615
|
+
refUid?: string | undefined;
|
|
2021
2616
|
}[];
|
|
2022
2617
|
headers: {
|
|
2023
2618
|
value: string;
|
|
@@ -2030,10 +2625,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2030
2625
|
required?: boolean | undefined;
|
|
2031
2626
|
description?: string | undefined;
|
|
2032
2627
|
enum?: string[] | undefined;
|
|
2033
|
-
file?: any;
|
|
2034
|
-
refUid?: string | undefined;
|
|
2035
|
-
format?: string | undefined;
|
|
2036
2628
|
nullable?: boolean | undefined;
|
|
2629
|
+
format?: string | undefined;
|
|
2630
|
+
file?: {
|
|
2631
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2632
|
+
type: string;
|
|
2633
|
+
name: string;
|
|
2634
|
+
size: number;
|
|
2635
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2636
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2637
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2638
|
+
lastModified: number;
|
|
2639
|
+
webkitRelativePath: string;
|
|
2640
|
+
} | undefined;
|
|
2641
|
+
refUid?: string | undefined;
|
|
2037
2642
|
}[];
|
|
2038
2643
|
cookies: {
|
|
2039
2644
|
value: string;
|
|
@@ -2046,10 +2651,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2046
2651
|
required?: boolean | undefined;
|
|
2047
2652
|
description?: string | undefined;
|
|
2048
2653
|
enum?: string[] | undefined;
|
|
2049
|
-
file?: any;
|
|
2050
|
-
refUid?: string | undefined;
|
|
2051
|
-
format?: string | undefined;
|
|
2052
2654
|
nullable?: boolean | undefined;
|
|
2655
|
+
format?: string | undefined;
|
|
2656
|
+
file?: {
|
|
2657
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2658
|
+
type: string;
|
|
2659
|
+
name: string;
|
|
2660
|
+
size: number;
|
|
2661
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2662
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2663
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2664
|
+
lastModified: number;
|
|
2665
|
+
webkitRelativePath: string;
|
|
2666
|
+
} | undefined;
|
|
2667
|
+
refUid?: string | undefined;
|
|
2053
2668
|
}[];
|
|
2054
2669
|
};
|
|
2055
2670
|
auth: Record<string, any>;
|
|
@@ -2061,7 +2676,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2061
2676
|
body: {
|
|
2062
2677
|
raw: {
|
|
2063
2678
|
value: string;
|
|
2064
|
-
encoding: "
|
|
2679
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2065
2680
|
};
|
|
2066
2681
|
formData: {
|
|
2067
2682
|
value: {
|
|
@@ -2075,15 +2690,35 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2075
2690
|
required?: boolean | undefined;
|
|
2076
2691
|
description?: string | undefined;
|
|
2077
2692
|
enum?: string[] | undefined;
|
|
2078
|
-
file?: any;
|
|
2079
|
-
refUid?: string | undefined;
|
|
2080
|
-
format?: string | undefined;
|
|
2081
2693
|
nullable?: boolean | undefined;
|
|
2694
|
+
format?: string | undefined;
|
|
2695
|
+
file?: {
|
|
2696
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2697
|
+
type: string;
|
|
2698
|
+
name: string;
|
|
2699
|
+
size: number;
|
|
2700
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2701
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2702
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2703
|
+
lastModified: number;
|
|
2704
|
+
webkitRelativePath: string;
|
|
2705
|
+
} | undefined;
|
|
2706
|
+
refUid?: string | undefined;
|
|
2082
2707
|
}[];
|
|
2083
2708
|
encoding: "form-data" | "urlencoded";
|
|
2084
2709
|
};
|
|
2085
2710
|
activeBody: "raw" | "formData" | "binary";
|
|
2086
|
-
binary?:
|
|
2711
|
+
binary?: {
|
|
2712
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2713
|
+
type: string;
|
|
2714
|
+
name: string;
|
|
2715
|
+
size: number;
|
|
2716
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2717
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2718
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2719
|
+
lastModified: number;
|
|
2720
|
+
webkitRelativePath: string;
|
|
2721
|
+
} | undefined;
|
|
2087
2722
|
};
|
|
2088
2723
|
parameters: {
|
|
2089
2724
|
path: {
|
|
@@ -2097,10 +2732,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2097
2732
|
required?: boolean | undefined;
|
|
2098
2733
|
description?: string | undefined;
|
|
2099
2734
|
enum?: string[] | undefined;
|
|
2100
|
-
file?: any;
|
|
2101
|
-
refUid?: string | undefined;
|
|
2102
|
-
format?: string | undefined;
|
|
2103
2735
|
nullable?: boolean | undefined;
|
|
2736
|
+
format?: string | undefined;
|
|
2737
|
+
file?: {
|
|
2738
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2739
|
+
type: string;
|
|
2740
|
+
name: string;
|
|
2741
|
+
size: number;
|
|
2742
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2743
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2744
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2745
|
+
lastModified: number;
|
|
2746
|
+
webkitRelativePath: string;
|
|
2747
|
+
} | undefined;
|
|
2748
|
+
refUid?: string | undefined;
|
|
2104
2749
|
}[];
|
|
2105
2750
|
query: {
|
|
2106
2751
|
value: string;
|
|
@@ -2113,10 +2758,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2113
2758
|
required?: boolean | undefined;
|
|
2114
2759
|
description?: string | undefined;
|
|
2115
2760
|
enum?: string[] | undefined;
|
|
2116
|
-
file?: any;
|
|
2117
|
-
refUid?: string | undefined;
|
|
2118
|
-
format?: string | undefined;
|
|
2119
2761
|
nullable?: boolean | undefined;
|
|
2762
|
+
format?: string | undefined;
|
|
2763
|
+
file?: {
|
|
2764
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2765
|
+
type: string;
|
|
2766
|
+
name: string;
|
|
2767
|
+
size: number;
|
|
2768
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2769
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2770
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2771
|
+
lastModified: number;
|
|
2772
|
+
webkitRelativePath: string;
|
|
2773
|
+
} | undefined;
|
|
2774
|
+
refUid?: string | undefined;
|
|
2120
2775
|
}[];
|
|
2121
2776
|
headers: {
|
|
2122
2777
|
value: string;
|
|
@@ -2129,10 +2784,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2129
2784
|
required?: boolean | undefined;
|
|
2130
2785
|
description?: string | undefined;
|
|
2131
2786
|
enum?: string[] | undefined;
|
|
2132
|
-
file?: any;
|
|
2133
|
-
refUid?: string | undefined;
|
|
2134
|
-
format?: string | undefined;
|
|
2135
2787
|
nullable?: boolean | undefined;
|
|
2788
|
+
format?: string | undefined;
|
|
2789
|
+
file?: {
|
|
2790
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2791
|
+
type: string;
|
|
2792
|
+
name: string;
|
|
2793
|
+
size: number;
|
|
2794
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2795
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2796
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2797
|
+
lastModified: number;
|
|
2798
|
+
webkitRelativePath: string;
|
|
2799
|
+
} | undefined;
|
|
2800
|
+
refUid?: string | undefined;
|
|
2136
2801
|
}[];
|
|
2137
2802
|
cookies: {
|
|
2138
2803
|
value: string;
|
|
@@ -2145,10 +2810,20 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2145
2810
|
required?: boolean | undefined;
|
|
2146
2811
|
description?: string | undefined;
|
|
2147
2812
|
enum?: string[] | undefined;
|
|
2148
|
-
file?: any;
|
|
2149
|
-
refUid?: string | undefined;
|
|
2150
|
-
format?: string | undefined;
|
|
2151
2813
|
nullable?: boolean | undefined;
|
|
2814
|
+
format?: string | undefined;
|
|
2815
|
+
file?: {
|
|
2816
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2817
|
+
type: string;
|
|
2818
|
+
name: string;
|
|
2819
|
+
size: number;
|
|
2820
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2821
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2822
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2823
|
+
lastModified: number;
|
|
2824
|
+
webkitRelativePath: string;
|
|
2825
|
+
} | undefined;
|
|
2826
|
+
refUid?: string | undefined;
|
|
2152
2827
|
}[];
|
|
2153
2828
|
};
|
|
2154
2829
|
auth: Record<string, any>;
|
|
@@ -2804,6 +3479,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2804
3479
|
isReadOnly: boolean;
|
|
2805
3480
|
collectionUids: string[];
|
|
2806
3481
|
environmentUids: string[];
|
|
3482
|
+
activeEnvironmentId: string;
|
|
2807
3483
|
cookieUids: string[];
|
|
2808
3484
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2809
3485
|
hotKeyConfig?: {
|
|
@@ -2822,6 +3498,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2822
3498
|
isReadOnly: boolean;
|
|
2823
3499
|
collectionUids: string[];
|
|
2824
3500
|
environmentUids: string[];
|
|
3501
|
+
activeEnvironmentId: string;
|
|
2825
3502
|
cookieUids: string[];
|
|
2826
3503
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2827
3504
|
hotKeyConfig?: {
|
|
@@ -2842,6 +3519,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2842
3519
|
isReadOnly: boolean;
|
|
2843
3520
|
collectionUids: string[];
|
|
2844
3521
|
environmentUids: string[];
|
|
3522
|
+
activeEnvironmentId: string;
|
|
2845
3523
|
cookieUids: string[];
|
|
2846
3524
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2847
3525
|
hotKeyConfig?: {
|
|
@@ -2853,13 +3531,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2853
3531
|
} | undefined;
|
|
2854
3532
|
proxyUrl?: string | undefined;
|
|
2855
3533
|
}) => void;
|
|
2856
|
-
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" ? {
|
|
3534
|
+
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" ? {
|
|
2857
3535
|
uid: string;
|
|
2858
3536
|
name: string;
|
|
2859
3537
|
description: string;
|
|
2860
3538
|
isReadOnly: boolean;
|
|
2861
3539
|
collectionUids: string[];
|
|
2862
3540
|
environmentUids: string[];
|
|
3541
|
+
activeEnvironmentId: string;
|
|
2863
3542
|
cookieUids: string[];
|
|
2864
3543
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2865
3544
|
hotKeyConfig?: {
|
|
@@ -2870,13 +3549,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2870
3549
|
}>> | undefined;
|
|
2871
3550
|
} | undefined;
|
|
2872
3551
|
proxyUrl?: string | undefined;
|
|
2873
|
-
}[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<{
|
|
3552
|
+
}[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<{
|
|
2874
3553
|
uid: string;
|
|
2875
3554
|
name: string;
|
|
2876
3555
|
description: string;
|
|
2877
3556
|
isReadOnly: boolean;
|
|
2878
3557
|
collectionUids: string[];
|
|
2879
3558
|
environmentUids: string[];
|
|
3559
|
+
activeEnvironmentId: string;
|
|
2880
3560
|
cookieUids: string[];
|
|
2881
3561
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2882
3562
|
hotKeyConfig?: {
|
|
@@ -2894,6 +3574,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2894
3574
|
isReadOnly: boolean;
|
|
2895
3575
|
collectionUids: string[];
|
|
2896
3576
|
environmentUids: string[];
|
|
3577
|
+
activeEnvironmentId: string;
|
|
2897
3578
|
cookieUids: string[];
|
|
2898
3579
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2899
3580
|
hotKeyConfig?: {
|
|
@@ -2905,13 +3586,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2905
3586
|
} | undefined;
|
|
2906
3587
|
proxyUrl?: string | undefined;
|
|
2907
3588
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2908
|
-
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" ? {
|
|
3589
|
+
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" ? {
|
|
2909
3590
|
uid: string;
|
|
2910
3591
|
name: string;
|
|
2911
3592
|
description: string;
|
|
2912
3593
|
isReadOnly: boolean;
|
|
2913
3594
|
collectionUids: string[];
|
|
2914
3595
|
environmentUids: string[];
|
|
3596
|
+
activeEnvironmentId: string;
|
|
2915
3597
|
cookieUids: string[];
|
|
2916
3598
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2917
3599
|
hotKeyConfig?: {
|
|
@@ -2922,13 +3604,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2922
3604
|
}>> | undefined;
|
|
2923
3605
|
} | undefined;
|
|
2924
3606
|
proxyUrl?: string | undefined;
|
|
2925
|
-
}[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<{
|
|
3607
|
+
}[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<{
|
|
2926
3608
|
uid: string;
|
|
2927
3609
|
name: string;
|
|
2928
3610
|
description: string;
|
|
2929
3611
|
isReadOnly: boolean;
|
|
2930
3612
|
collectionUids: string[];
|
|
2931
3613
|
environmentUids: string[];
|
|
3614
|
+
activeEnvironmentId: string;
|
|
2932
3615
|
cookieUids: string[];
|
|
2933
3616
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2934
3617
|
hotKeyConfig?: {
|
|
@@ -2946,6 +3629,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2946
3629
|
isReadOnly: boolean;
|
|
2947
3630
|
collectionUids: string[];
|
|
2948
3631
|
environmentUids: string[];
|
|
3632
|
+
activeEnvironmentId: string;
|
|
2949
3633
|
cookieUids: string[];
|
|
2950
3634
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2951
3635
|
hotKeyConfig?: {
|
|
@@ -2990,6 +3674,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
2990
3674
|
isReadOnly: boolean;
|
|
2991
3675
|
collectionUids: string[];
|
|
2992
3676
|
environmentUids: string[];
|
|
3677
|
+
activeEnvironmentId: string;
|
|
2993
3678
|
cookieUids: string[];
|
|
2994
3679
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2995
3680
|
hotKeyConfig?: {
|
|
@@ -3079,7 +3764,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3079
3764
|
body: {
|
|
3080
3765
|
raw: {
|
|
3081
3766
|
value: string;
|
|
3082
|
-
encoding: "
|
|
3767
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
3083
3768
|
};
|
|
3084
3769
|
formData: {
|
|
3085
3770
|
value: {
|
|
@@ -3093,15 +3778,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3093
3778
|
required?: boolean | undefined;
|
|
3094
3779
|
description?: string | undefined;
|
|
3095
3780
|
enum?: string[] | undefined;
|
|
3096
|
-
file?: any;
|
|
3097
|
-
refUid?: string | undefined;
|
|
3098
|
-
format?: string | undefined;
|
|
3099
3781
|
nullable?: boolean | undefined;
|
|
3782
|
+
format?: string | undefined;
|
|
3783
|
+
file?: {
|
|
3784
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3785
|
+
type: string;
|
|
3786
|
+
name: string;
|
|
3787
|
+
size: number;
|
|
3788
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3789
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3790
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3791
|
+
lastModified: number;
|
|
3792
|
+
webkitRelativePath: string;
|
|
3793
|
+
} | undefined;
|
|
3794
|
+
refUid?: string | undefined;
|
|
3100
3795
|
}[];
|
|
3101
3796
|
encoding: "form-data" | "urlencoded";
|
|
3102
3797
|
};
|
|
3103
3798
|
activeBody: "raw" | "formData" | "binary";
|
|
3104
|
-
binary?:
|
|
3799
|
+
binary?: {
|
|
3800
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3801
|
+
type: string;
|
|
3802
|
+
name: string;
|
|
3803
|
+
size: number;
|
|
3804
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3805
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3806
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3807
|
+
lastModified: number;
|
|
3808
|
+
webkitRelativePath: string;
|
|
3809
|
+
} | undefined;
|
|
3105
3810
|
};
|
|
3106
3811
|
parameters: {
|
|
3107
3812
|
path: {
|
|
@@ -3115,10 +3820,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3115
3820
|
required?: boolean | undefined;
|
|
3116
3821
|
description?: string | undefined;
|
|
3117
3822
|
enum?: string[] | undefined;
|
|
3118
|
-
file?: any;
|
|
3119
|
-
refUid?: string | undefined;
|
|
3120
|
-
format?: string | undefined;
|
|
3121
3823
|
nullable?: boolean | undefined;
|
|
3824
|
+
format?: string | undefined;
|
|
3825
|
+
file?: {
|
|
3826
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3827
|
+
type: string;
|
|
3828
|
+
name: string;
|
|
3829
|
+
size: number;
|
|
3830
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3831
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3832
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3833
|
+
lastModified: number;
|
|
3834
|
+
webkitRelativePath: string;
|
|
3835
|
+
} | undefined;
|
|
3836
|
+
refUid?: string | undefined;
|
|
3122
3837
|
}[];
|
|
3123
3838
|
query: {
|
|
3124
3839
|
value: string;
|
|
@@ -3131,10 +3846,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3131
3846
|
required?: boolean | undefined;
|
|
3132
3847
|
description?: string | undefined;
|
|
3133
3848
|
enum?: string[] | undefined;
|
|
3134
|
-
file?: any;
|
|
3135
|
-
refUid?: string | undefined;
|
|
3136
|
-
format?: string | undefined;
|
|
3137
3849
|
nullable?: boolean | undefined;
|
|
3850
|
+
format?: string | undefined;
|
|
3851
|
+
file?: {
|
|
3852
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3853
|
+
type: string;
|
|
3854
|
+
name: string;
|
|
3855
|
+
size: number;
|
|
3856
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3857
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3858
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3859
|
+
lastModified: number;
|
|
3860
|
+
webkitRelativePath: string;
|
|
3861
|
+
} | undefined;
|
|
3862
|
+
refUid?: string | undefined;
|
|
3138
3863
|
}[];
|
|
3139
3864
|
headers: {
|
|
3140
3865
|
value: string;
|
|
@@ -3147,10 +3872,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3147
3872
|
required?: boolean | undefined;
|
|
3148
3873
|
description?: string | undefined;
|
|
3149
3874
|
enum?: string[] | undefined;
|
|
3150
|
-
file?: any;
|
|
3151
|
-
refUid?: string | undefined;
|
|
3152
|
-
format?: string | undefined;
|
|
3153
3875
|
nullable?: boolean | undefined;
|
|
3876
|
+
format?: string | undefined;
|
|
3877
|
+
file?: {
|
|
3878
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3879
|
+
type: string;
|
|
3880
|
+
name: string;
|
|
3881
|
+
size: number;
|
|
3882
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3883
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3884
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3885
|
+
lastModified: number;
|
|
3886
|
+
webkitRelativePath: string;
|
|
3887
|
+
} | undefined;
|
|
3888
|
+
refUid?: string | undefined;
|
|
3154
3889
|
}[];
|
|
3155
3890
|
cookies: {
|
|
3156
3891
|
value: string;
|
|
@@ -3163,10 +3898,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3163
3898
|
required?: boolean | undefined;
|
|
3164
3899
|
description?: string | undefined;
|
|
3165
3900
|
enum?: string[] | undefined;
|
|
3166
|
-
file?: any;
|
|
3167
|
-
refUid?: string | undefined;
|
|
3168
|
-
format?: string | undefined;
|
|
3169
3901
|
nullable?: boolean | undefined;
|
|
3902
|
+
format?: string | undefined;
|
|
3903
|
+
file?: {
|
|
3904
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3905
|
+
type: string;
|
|
3906
|
+
name: string;
|
|
3907
|
+
size: number;
|
|
3908
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3909
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3910
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3911
|
+
lastModified: number;
|
|
3912
|
+
webkitRelativePath: string;
|
|
3913
|
+
} | undefined;
|
|
3914
|
+
refUid?: string | undefined;
|
|
3170
3915
|
}[];
|
|
3171
3916
|
};
|
|
3172
3917
|
auth: Record<string, any>;
|
|
@@ -3300,7 +4045,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3300
4045
|
body: {
|
|
3301
4046
|
raw: {
|
|
3302
4047
|
value: string;
|
|
3303
|
-
encoding: "
|
|
4048
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
3304
4049
|
};
|
|
3305
4050
|
formData: {
|
|
3306
4051
|
value: {
|
|
@@ -3314,15 +4059,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3314
4059
|
required?: boolean | undefined;
|
|
3315
4060
|
description?: string | undefined;
|
|
3316
4061
|
enum?: string[] | undefined;
|
|
3317
|
-
file?: any;
|
|
3318
|
-
refUid?: string | undefined;
|
|
3319
|
-
format?: string | undefined;
|
|
3320
4062
|
nullable?: boolean | undefined;
|
|
4063
|
+
format?: string | undefined;
|
|
4064
|
+
file?: {
|
|
4065
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4066
|
+
type: string;
|
|
4067
|
+
name: string;
|
|
4068
|
+
size: number;
|
|
4069
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4070
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4071
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4072
|
+
lastModified: number;
|
|
4073
|
+
webkitRelativePath: string;
|
|
4074
|
+
} | undefined;
|
|
4075
|
+
refUid?: string | undefined;
|
|
3321
4076
|
}[];
|
|
3322
4077
|
encoding: "form-data" | "urlencoded";
|
|
3323
4078
|
};
|
|
3324
4079
|
activeBody: "raw" | "formData" | "binary";
|
|
3325
|
-
binary?:
|
|
4080
|
+
binary?: {
|
|
4081
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4082
|
+
type: string;
|
|
4083
|
+
name: string;
|
|
4084
|
+
size: number;
|
|
4085
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4086
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4087
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4088
|
+
lastModified: number;
|
|
4089
|
+
webkitRelativePath: string;
|
|
4090
|
+
} | undefined;
|
|
3326
4091
|
};
|
|
3327
4092
|
parameters: {
|
|
3328
4093
|
path: {
|
|
@@ -3336,10 +4101,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3336
4101
|
required?: boolean | undefined;
|
|
3337
4102
|
description?: string | undefined;
|
|
3338
4103
|
enum?: string[] | undefined;
|
|
3339
|
-
file?: any;
|
|
3340
|
-
refUid?: string | undefined;
|
|
3341
|
-
format?: string | undefined;
|
|
3342
4104
|
nullable?: boolean | undefined;
|
|
4105
|
+
format?: string | undefined;
|
|
4106
|
+
file?: {
|
|
4107
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4108
|
+
type: string;
|
|
4109
|
+
name: string;
|
|
4110
|
+
size: number;
|
|
4111
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4112
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4113
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4114
|
+
lastModified: number;
|
|
4115
|
+
webkitRelativePath: string;
|
|
4116
|
+
} | undefined;
|
|
4117
|
+
refUid?: string | undefined;
|
|
3343
4118
|
}[];
|
|
3344
4119
|
query: {
|
|
3345
4120
|
value: string;
|
|
@@ -3352,10 +4127,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3352
4127
|
required?: boolean | undefined;
|
|
3353
4128
|
description?: string | undefined;
|
|
3354
4129
|
enum?: string[] | undefined;
|
|
3355
|
-
file?: any;
|
|
3356
|
-
refUid?: string | undefined;
|
|
3357
|
-
format?: string | undefined;
|
|
3358
4130
|
nullable?: boolean | undefined;
|
|
4131
|
+
format?: string | undefined;
|
|
4132
|
+
file?: {
|
|
4133
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4134
|
+
type: string;
|
|
4135
|
+
name: string;
|
|
4136
|
+
size: number;
|
|
4137
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4138
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4139
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4140
|
+
lastModified: number;
|
|
4141
|
+
webkitRelativePath: string;
|
|
4142
|
+
} | undefined;
|
|
4143
|
+
refUid?: string | undefined;
|
|
3359
4144
|
}[];
|
|
3360
4145
|
headers: {
|
|
3361
4146
|
value: string;
|
|
@@ -3368,10 +4153,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3368
4153
|
required?: boolean | undefined;
|
|
3369
4154
|
description?: string | undefined;
|
|
3370
4155
|
enum?: string[] | undefined;
|
|
3371
|
-
file?: any;
|
|
3372
|
-
refUid?: string | undefined;
|
|
3373
|
-
format?: string | undefined;
|
|
3374
4156
|
nullable?: boolean | undefined;
|
|
4157
|
+
format?: string | undefined;
|
|
4158
|
+
file?: {
|
|
4159
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4160
|
+
type: string;
|
|
4161
|
+
name: string;
|
|
4162
|
+
size: number;
|
|
4163
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4164
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4165
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4166
|
+
lastModified: number;
|
|
4167
|
+
webkitRelativePath: string;
|
|
4168
|
+
} | undefined;
|
|
4169
|
+
refUid?: string | undefined;
|
|
3375
4170
|
}[];
|
|
3376
4171
|
cookies: {
|
|
3377
4172
|
value: string;
|
|
@@ -3384,10 +4179,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3384
4179
|
required?: boolean | undefined;
|
|
3385
4180
|
description?: string | undefined;
|
|
3386
4181
|
enum?: string[] | undefined;
|
|
3387
|
-
file?: any;
|
|
3388
|
-
refUid?: string | undefined;
|
|
3389
|
-
format?: string | undefined;
|
|
3390
4182
|
nullable?: boolean | undefined;
|
|
4183
|
+
format?: string | undefined;
|
|
4184
|
+
file?: {
|
|
4185
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4186
|
+
type: string;
|
|
4187
|
+
name: string;
|
|
4188
|
+
size: number;
|
|
4189
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4190
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4191
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4192
|
+
lastModified: number;
|
|
4193
|
+
webkitRelativePath: string;
|
|
4194
|
+
} | undefined;
|
|
4195
|
+
refUid?: string | undefined;
|
|
3391
4196
|
}[];
|
|
3392
4197
|
};
|
|
3393
4198
|
auth: Record<string, any>;
|
|
@@ -3490,6 +4295,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3490
4295
|
isReadOnly: boolean;
|
|
3491
4296
|
collectionUids: string[];
|
|
3492
4297
|
environmentUids: string[];
|
|
4298
|
+
activeEnvironmentId: string;
|
|
3493
4299
|
cookieUids: string[];
|
|
3494
4300
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3495
4301
|
hotKeyConfig?: {
|
|
@@ -3557,11 +4363,22 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3557
4363
|
key: string;
|
|
3558
4364
|
value: string;
|
|
3559
4365
|
} | {
|
|
3560
|
-
_scalarEnvId:
|
|
4366
|
+
_scalarEnvId: string;
|
|
3561
4367
|
key: string;
|
|
3562
4368
|
value: unknown;
|
|
3563
4369
|
})[]>;
|
|
3564
4370
|
activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
|
|
4371
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
4372
|
+
uid: string;
|
|
4373
|
+
name: string;
|
|
4374
|
+
color: string;
|
|
4375
|
+
raw: string;
|
|
4376
|
+
parsed: {
|
|
4377
|
+
value: string;
|
|
4378
|
+
key: string;
|
|
4379
|
+
}[];
|
|
4380
|
+
isDefault?: boolean | undefined;
|
|
4381
|
+
}>;
|
|
3565
4382
|
modalState: {
|
|
3566
4383
|
open: boolean;
|
|
3567
4384
|
show: () => void;
|
|
@@ -3572,7 +4389,9 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3572
4389
|
sidebarWidth: import("vue").Ref<string>;
|
|
3573
4390
|
setSidebarWidth: (width: string) => void;
|
|
3574
4391
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
3575
|
-
importSpecFile: (_spec: string |
|
|
4392
|
+
importSpecFile: (_spec: string | {
|
|
4393
|
+
[x: string]: any;
|
|
4394
|
+
}, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
3576
4395
|
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
3577
4396
|
cookieMutators: {
|
|
3578
4397
|
add: (item: {
|
|
@@ -4228,7 +5047,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4228
5047
|
body: {
|
|
4229
5048
|
raw: {
|
|
4230
5049
|
value: string;
|
|
4231
|
-
encoding: "
|
|
5050
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4232
5051
|
};
|
|
4233
5052
|
formData: {
|
|
4234
5053
|
value: {
|
|
@@ -4242,15 +5061,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4242
5061
|
required?: boolean | undefined;
|
|
4243
5062
|
description?: string | undefined;
|
|
4244
5063
|
enum?: string[] | undefined;
|
|
4245
|
-
file?: any;
|
|
4246
|
-
refUid?: string | undefined;
|
|
4247
|
-
format?: string | undefined;
|
|
4248
5064
|
nullable?: boolean | undefined;
|
|
5065
|
+
format?: string | undefined;
|
|
5066
|
+
file?: {
|
|
5067
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5068
|
+
type: string;
|
|
5069
|
+
name: string;
|
|
5070
|
+
size: number;
|
|
5071
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5072
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5073
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5074
|
+
lastModified: number;
|
|
5075
|
+
webkitRelativePath: string;
|
|
5076
|
+
} | undefined;
|
|
5077
|
+
refUid?: string | undefined;
|
|
4249
5078
|
}[];
|
|
4250
5079
|
encoding: "form-data" | "urlencoded";
|
|
4251
5080
|
};
|
|
4252
5081
|
activeBody: "raw" | "formData" | "binary";
|
|
4253
|
-
binary?:
|
|
5082
|
+
binary?: {
|
|
5083
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5084
|
+
type: string;
|
|
5085
|
+
name: string;
|
|
5086
|
+
size: number;
|
|
5087
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5088
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5089
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5090
|
+
lastModified: number;
|
|
5091
|
+
webkitRelativePath: string;
|
|
5092
|
+
} | undefined;
|
|
4254
5093
|
};
|
|
4255
5094
|
parameters: {
|
|
4256
5095
|
path: {
|
|
@@ -4264,10 +5103,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4264
5103
|
required?: boolean | undefined;
|
|
4265
5104
|
description?: string | undefined;
|
|
4266
5105
|
enum?: string[] | undefined;
|
|
4267
|
-
file?: any;
|
|
4268
|
-
refUid?: string | undefined;
|
|
4269
|
-
format?: string | undefined;
|
|
4270
5106
|
nullable?: boolean | undefined;
|
|
5107
|
+
format?: string | undefined;
|
|
5108
|
+
file?: {
|
|
5109
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5110
|
+
type: string;
|
|
5111
|
+
name: string;
|
|
5112
|
+
size: number;
|
|
5113
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5114
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5115
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5116
|
+
lastModified: number;
|
|
5117
|
+
webkitRelativePath: string;
|
|
5118
|
+
} | undefined;
|
|
5119
|
+
refUid?: string | undefined;
|
|
4271
5120
|
}[];
|
|
4272
5121
|
query: {
|
|
4273
5122
|
value: string;
|
|
@@ -4280,10 +5129,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4280
5129
|
required?: boolean | undefined;
|
|
4281
5130
|
description?: string | undefined;
|
|
4282
5131
|
enum?: string[] | undefined;
|
|
4283
|
-
file?: any;
|
|
4284
|
-
refUid?: string | undefined;
|
|
4285
|
-
format?: string | undefined;
|
|
4286
5132
|
nullable?: boolean | undefined;
|
|
5133
|
+
format?: string | undefined;
|
|
5134
|
+
file?: {
|
|
5135
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5136
|
+
type: string;
|
|
5137
|
+
name: string;
|
|
5138
|
+
size: number;
|
|
5139
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5140
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5141
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5142
|
+
lastModified: number;
|
|
5143
|
+
webkitRelativePath: string;
|
|
5144
|
+
} | undefined;
|
|
5145
|
+
refUid?: string | undefined;
|
|
4287
5146
|
}[];
|
|
4288
5147
|
headers: {
|
|
4289
5148
|
value: string;
|
|
@@ -4296,10 +5155,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4296
5155
|
required?: boolean | undefined;
|
|
4297
5156
|
description?: string | undefined;
|
|
4298
5157
|
enum?: string[] | undefined;
|
|
4299
|
-
file?: any;
|
|
4300
|
-
refUid?: string | undefined;
|
|
4301
|
-
format?: string | undefined;
|
|
4302
5158
|
nullable?: boolean | undefined;
|
|
5159
|
+
format?: string | undefined;
|
|
5160
|
+
file?: {
|
|
5161
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5162
|
+
type: string;
|
|
5163
|
+
name: string;
|
|
5164
|
+
size: number;
|
|
5165
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5166
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5167
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5168
|
+
lastModified: number;
|
|
5169
|
+
webkitRelativePath: string;
|
|
5170
|
+
} | undefined;
|
|
5171
|
+
refUid?: string | undefined;
|
|
4303
5172
|
}[];
|
|
4304
5173
|
cookies: {
|
|
4305
5174
|
value: string;
|
|
@@ -4312,10 +5181,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4312
5181
|
required?: boolean | undefined;
|
|
4313
5182
|
description?: string | undefined;
|
|
4314
5183
|
enum?: string[] | undefined;
|
|
4315
|
-
file?: any;
|
|
4316
|
-
refUid?: string | undefined;
|
|
4317
|
-
format?: string | undefined;
|
|
4318
5184
|
nullable?: boolean | undefined;
|
|
5185
|
+
format?: string | undefined;
|
|
5186
|
+
file?: {
|
|
5187
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5188
|
+
type: string;
|
|
5189
|
+
name: string;
|
|
5190
|
+
size: number;
|
|
5191
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5192
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5193
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5194
|
+
lastModified: number;
|
|
5195
|
+
webkitRelativePath: string;
|
|
5196
|
+
} | undefined;
|
|
5197
|
+
refUid?: string | undefined;
|
|
4319
5198
|
}[];
|
|
4320
5199
|
};
|
|
4321
5200
|
auth: Record<string, any>;
|
|
@@ -4328,7 +5207,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4328
5207
|
body: {
|
|
4329
5208
|
raw: {
|
|
4330
5209
|
value: string;
|
|
4331
|
-
encoding: "
|
|
5210
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4332
5211
|
};
|
|
4333
5212
|
formData: {
|
|
4334
5213
|
value: {
|
|
@@ -4342,15 +5221,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4342
5221
|
required?: boolean | undefined;
|
|
4343
5222
|
description?: string | undefined;
|
|
4344
5223
|
enum?: string[] | undefined;
|
|
4345
|
-
file?: any;
|
|
4346
|
-
refUid?: string | undefined;
|
|
4347
|
-
format?: string | undefined;
|
|
4348
5224
|
nullable?: boolean | undefined;
|
|
5225
|
+
format?: string | undefined;
|
|
5226
|
+
file?: {
|
|
5227
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5228
|
+
type: string;
|
|
5229
|
+
name: string;
|
|
5230
|
+
size: number;
|
|
5231
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5232
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5233
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5234
|
+
lastModified: number;
|
|
5235
|
+
webkitRelativePath: string;
|
|
5236
|
+
} | undefined;
|
|
5237
|
+
refUid?: string | undefined;
|
|
4349
5238
|
}[];
|
|
4350
5239
|
encoding: "form-data" | "urlencoded";
|
|
4351
5240
|
};
|
|
4352
5241
|
activeBody: "raw" | "formData" | "binary";
|
|
4353
|
-
binary?:
|
|
5242
|
+
binary?: {
|
|
5243
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5244
|
+
type: string;
|
|
5245
|
+
name: string;
|
|
5246
|
+
size: number;
|
|
5247
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5248
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5249
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5250
|
+
lastModified: number;
|
|
5251
|
+
webkitRelativePath: string;
|
|
5252
|
+
} | undefined;
|
|
4354
5253
|
};
|
|
4355
5254
|
parameters: {
|
|
4356
5255
|
path: {
|
|
@@ -4364,10 +5263,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4364
5263
|
required?: boolean | undefined;
|
|
4365
5264
|
description?: string | undefined;
|
|
4366
5265
|
enum?: string[] | undefined;
|
|
4367
|
-
file?: any;
|
|
4368
|
-
refUid?: string | undefined;
|
|
4369
|
-
format?: string | undefined;
|
|
4370
5266
|
nullable?: boolean | undefined;
|
|
5267
|
+
format?: string | undefined;
|
|
5268
|
+
file?: {
|
|
5269
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5270
|
+
type: string;
|
|
5271
|
+
name: string;
|
|
5272
|
+
size: number;
|
|
5273
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5274
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5275
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5276
|
+
lastModified: number;
|
|
5277
|
+
webkitRelativePath: string;
|
|
5278
|
+
} | undefined;
|
|
5279
|
+
refUid?: string | undefined;
|
|
4371
5280
|
}[];
|
|
4372
5281
|
query: {
|
|
4373
5282
|
value: string;
|
|
@@ -4380,10 +5289,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4380
5289
|
required?: boolean | undefined;
|
|
4381
5290
|
description?: string | undefined;
|
|
4382
5291
|
enum?: string[] | undefined;
|
|
4383
|
-
file?: any;
|
|
4384
|
-
refUid?: string | undefined;
|
|
4385
|
-
format?: string | undefined;
|
|
4386
5292
|
nullable?: boolean | undefined;
|
|
5293
|
+
format?: string | undefined;
|
|
5294
|
+
file?: {
|
|
5295
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5296
|
+
type: string;
|
|
5297
|
+
name: string;
|
|
5298
|
+
size: number;
|
|
5299
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5300
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5301
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5302
|
+
lastModified: number;
|
|
5303
|
+
webkitRelativePath: string;
|
|
5304
|
+
} | undefined;
|
|
5305
|
+
refUid?: string | undefined;
|
|
4387
5306
|
}[];
|
|
4388
5307
|
headers: {
|
|
4389
5308
|
value: string;
|
|
@@ -4396,10 +5315,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4396
5315
|
required?: boolean | undefined;
|
|
4397
5316
|
description?: string | undefined;
|
|
4398
5317
|
enum?: string[] | undefined;
|
|
4399
|
-
file?: any;
|
|
4400
|
-
refUid?: string | undefined;
|
|
4401
|
-
format?: string | undefined;
|
|
4402
5318
|
nullable?: boolean | undefined;
|
|
5319
|
+
format?: string | undefined;
|
|
5320
|
+
file?: {
|
|
5321
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5322
|
+
type: string;
|
|
5323
|
+
name: string;
|
|
5324
|
+
size: number;
|
|
5325
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5326
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5327
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5328
|
+
lastModified: number;
|
|
5329
|
+
webkitRelativePath: string;
|
|
5330
|
+
} | undefined;
|
|
5331
|
+
refUid?: string | undefined;
|
|
4403
5332
|
}[];
|
|
4404
5333
|
cookies: {
|
|
4405
5334
|
value: string;
|
|
@@ -4412,10 +5341,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4412
5341
|
required?: boolean | undefined;
|
|
4413
5342
|
description?: string | undefined;
|
|
4414
5343
|
enum?: string[] | undefined;
|
|
4415
|
-
file?: any;
|
|
4416
|
-
refUid?: string | undefined;
|
|
4417
|
-
format?: string | undefined;
|
|
4418
5344
|
nullable?: boolean | undefined;
|
|
5345
|
+
format?: string | undefined;
|
|
5346
|
+
file?: {
|
|
5347
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5348
|
+
type: string;
|
|
5349
|
+
name: string;
|
|
5350
|
+
size: number;
|
|
5351
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5352
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5353
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5354
|
+
lastModified: number;
|
|
5355
|
+
webkitRelativePath: string;
|
|
5356
|
+
} | undefined;
|
|
5357
|
+
refUid?: string | undefined;
|
|
4419
5358
|
}[];
|
|
4420
5359
|
};
|
|
4421
5360
|
auth: Record<string, any>;
|
|
@@ -4429,7 +5368,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4429
5368
|
body: {
|
|
4430
5369
|
raw: {
|
|
4431
5370
|
value: string;
|
|
4432
|
-
encoding: "
|
|
5371
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4433
5372
|
};
|
|
4434
5373
|
formData: {
|
|
4435
5374
|
value: {
|
|
@@ -4443,15 +5382,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4443
5382
|
required?: boolean | undefined;
|
|
4444
5383
|
description?: string | undefined;
|
|
4445
5384
|
enum?: string[] | undefined;
|
|
4446
|
-
file?: any;
|
|
4447
|
-
refUid?: string | undefined;
|
|
4448
|
-
format?: string | undefined;
|
|
4449
5385
|
nullable?: boolean | undefined;
|
|
5386
|
+
format?: string | undefined;
|
|
5387
|
+
file?: {
|
|
5388
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5389
|
+
type: string;
|
|
5390
|
+
name: string;
|
|
5391
|
+
size: number;
|
|
5392
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5393
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5394
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5395
|
+
lastModified: number;
|
|
5396
|
+
webkitRelativePath: string;
|
|
5397
|
+
} | undefined;
|
|
5398
|
+
refUid?: string | undefined;
|
|
4450
5399
|
}[];
|
|
4451
5400
|
encoding: "form-data" | "urlencoded";
|
|
4452
5401
|
};
|
|
4453
5402
|
activeBody: "raw" | "formData" | "binary";
|
|
4454
|
-
binary?:
|
|
5403
|
+
binary?: {
|
|
5404
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5405
|
+
type: string;
|
|
5406
|
+
name: string;
|
|
5407
|
+
size: number;
|
|
5408
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5409
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5410
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5411
|
+
lastModified: number;
|
|
5412
|
+
webkitRelativePath: string;
|
|
5413
|
+
} | undefined;
|
|
4455
5414
|
};
|
|
4456
5415
|
parameters: {
|
|
4457
5416
|
path: {
|
|
@@ -4465,10 +5424,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4465
5424
|
required?: boolean | undefined;
|
|
4466
5425
|
description?: string | undefined;
|
|
4467
5426
|
enum?: string[] | undefined;
|
|
4468
|
-
file?: any;
|
|
4469
|
-
refUid?: string | undefined;
|
|
4470
|
-
format?: string | undefined;
|
|
4471
5427
|
nullable?: boolean | undefined;
|
|
5428
|
+
format?: string | undefined;
|
|
5429
|
+
file?: {
|
|
5430
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5431
|
+
type: string;
|
|
5432
|
+
name: string;
|
|
5433
|
+
size: number;
|
|
5434
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5435
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5436
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5437
|
+
lastModified: number;
|
|
5438
|
+
webkitRelativePath: string;
|
|
5439
|
+
} | undefined;
|
|
5440
|
+
refUid?: string | undefined;
|
|
4472
5441
|
}[];
|
|
4473
5442
|
query: {
|
|
4474
5443
|
value: string;
|
|
@@ -4481,10 +5450,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4481
5450
|
required?: boolean | undefined;
|
|
4482
5451
|
description?: string | undefined;
|
|
4483
5452
|
enum?: string[] | undefined;
|
|
4484
|
-
file?: any;
|
|
4485
|
-
refUid?: string | undefined;
|
|
4486
|
-
format?: string | undefined;
|
|
4487
5453
|
nullable?: boolean | undefined;
|
|
5454
|
+
format?: string | undefined;
|
|
5455
|
+
file?: {
|
|
5456
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5457
|
+
type: string;
|
|
5458
|
+
name: string;
|
|
5459
|
+
size: number;
|
|
5460
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5461
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5462
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5463
|
+
lastModified: number;
|
|
5464
|
+
webkitRelativePath: string;
|
|
5465
|
+
} | undefined;
|
|
5466
|
+
refUid?: string | undefined;
|
|
4488
5467
|
}[];
|
|
4489
5468
|
headers: {
|
|
4490
5469
|
value: string;
|
|
@@ -4497,10 +5476,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4497
5476
|
required?: boolean | undefined;
|
|
4498
5477
|
description?: string | undefined;
|
|
4499
5478
|
enum?: string[] | undefined;
|
|
4500
|
-
file?: any;
|
|
4501
|
-
refUid?: string | undefined;
|
|
4502
|
-
format?: string | undefined;
|
|
4503
5479
|
nullable?: boolean | undefined;
|
|
5480
|
+
format?: string | undefined;
|
|
5481
|
+
file?: {
|
|
5482
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5483
|
+
type: string;
|
|
5484
|
+
name: string;
|
|
5485
|
+
size: number;
|
|
5486
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5487
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5488
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5489
|
+
lastModified: number;
|
|
5490
|
+
webkitRelativePath: string;
|
|
5491
|
+
} | undefined;
|
|
5492
|
+
refUid?: string | undefined;
|
|
4504
5493
|
}[];
|
|
4505
5494
|
cookies: {
|
|
4506
5495
|
value: string;
|
|
@@ -4513,15 +5502,25 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4513
5502
|
required?: boolean | undefined;
|
|
4514
5503
|
description?: string | undefined;
|
|
4515
5504
|
enum?: string[] | undefined;
|
|
4516
|
-
file?: any;
|
|
4517
|
-
refUid?: string | undefined;
|
|
4518
|
-
format?: string | undefined;
|
|
4519
5505
|
nullable?: boolean | undefined;
|
|
5506
|
+
format?: string | undefined;
|
|
5507
|
+
file?: {
|
|
5508
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5509
|
+
type: string;
|
|
5510
|
+
name: string;
|
|
5511
|
+
size: number;
|
|
5512
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5513
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5514
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5515
|
+
lastModified: number;
|
|
5516
|
+
webkitRelativePath: string;
|
|
5517
|
+
} | undefined;
|
|
5518
|
+
refUid?: string | undefined;
|
|
4520
5519
|
}[];
|
|
4521
5520
|
};
|
|
4522
5521
|
auth: Record<string, any>;
|
|
4523
5522
|
}) => void;
|
|
4524
|
-
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}.
|
|
5523
|
+
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" ? {
|
|
4525
5524
|
uid: string;
|
|
4526
5525
|
name: string;
|
|
4527
5526
|
url: string;
|
|
@@ -4529,7 +5528,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4529
5528
|
body: {
|
|
4530
5529
|
raw: {
|
|
4531
5530
|
value: string;
|
|
4532
|
-
encoding: "
|
|
5531
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4533
5532
|
};
|
|
4534
5533
|
formData: {
|
|
4535
5534
|
value: {
|
|
@@ -4543,15 +5542,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4543
5542
|
required?: boolean | undefined;
|
|
4544
5543
|
description?: string | undefined;
|
|
4545
5544
|
enum?: string[] | undefined;
|
|
4546
|
-
file?: any;
|
|
4547
|
-
refUid?: string | undefined;
|
|
4548
|
-
format?: string | undefined;
|
|
4549
5545
|
nullable?: boolean | undefined;
|
|
5546
|
+
format?: string | undefined;
|
|
5547
|
+
file?: {
|
|
5548
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5549
|
+
type: string;
|
|
5550
|
+
name: string;
|
|
5551
|
+
size: number;
|
|
5552
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5553
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5554
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5555
|
+
lastModified: number;
|
|
5556
|
+
webkitRelativePath: string;
|
|
5557
|
+
} | undefined;
|
|
5558
|
+
refUid?: string | undefined;
|
|
4550
5559
|
}[];
|
|
4551
5560
|
encoding: "form-data" | "urlencoded";
|
|
4552
5561
|
};
|
|
4553
5562
|
activeBody: "raw" | "formData" | "binary";
|
|
4554
|
-
binary?:
|
|
5563
|
+
binary?: {
|
|
5564
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5565
|
+
type: string;
|
|
5566
|
+
name: string;
|
|
5567
|
+
size: number;
|
|
5568
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5569
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5570
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5571
|
+
lastModified: number;
|
|
5572
|
+
webkitRelativePath: string;
|
|
5573
|
+
} | undefined;
|
|
4555
5574
|
};
|
|
4556
5575
|
parameters: {
|
|
4557
5576
|
path: {
|
|
@@ -4565,10 +5584,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4565
5584
|
required?: boolean | undefined;
|
|
4566
5585
|
description?: string | undefined;
|
|
4567
5586
|
enum?: string[] | undefined;
|
|
4568
|
-
file?: any;
|
|
4569
|
-
refUid?: string | undefined;
|
|
4570
|
-
format?: string | undefined;
|
|
4571
5587
|
nullable?: boolean | undefined;
|
|
5588
|
+
format?: string | undefined;
|
|
5589
|
+
file?: {
|
|
5590
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5591
|
+
type: string;
|
|
5592
|
+
name: string;
|
|
5593
|
+
size: number;
|
|
5594
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5595
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5596
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5597
|
+
lastModified: number;
|
|
5598
|
+
webkitRelativePath: string;
|
|
5599
|
+
} | undefined;
|
|
5600
|
+
refUid?: string | undefined;
|
|
4572
5601
|
}[];
|
|
4573
5602
|
query: {
|
|
4574
5603
|
value: string;
|
|
@@ -4581,10 +5610,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4581
5610
|
required?: boolean | undefined;
|
|
4582
5611
|
description?: string | undefined;
|
|
4583
5612
|
enum?: string[] | undefined;
|
|
4584
|
-
file?: any;
|
|
4585
|
-
refUid?: string | undefined;
|
|
4586
|
-
format?: string | undefined;
|
|
4587
5613
|
nullable?: boolean | undefined;
|
|
5614
|
+
format?: string | undefined;
|
|
5615
|
+
file?: {
|
|
5616
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5617
|
+
type: string;
|
|
5618
|
+
name: string;
|
|
5619
|
+
size: number;
|
|
5620
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5621
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5622
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5623
|
+
lastModified: number;
|
|
5624
|
+
webkitRelativePath: string;
|
|
5625
|
+
} | undefined;
|
|
5626
|
+
refUid?: string | undefined;
|
|
4588
5627
|
}[];
|
|
4589
5628
|
headers: {
|
|
4590
5629
|
value: string;
|
|
@@ -4597,10 +5636,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4597
5636
|
required?: boolean | undefined;
|
|
4598
5637
|
description?: string | undefined;
|
|
4599
5638
|
enum?: string[] | undefined;
|
|
4600
|
-
file?: any;
|
|
4601
|
-
refUid?: string | undefined;
|
|
4602
|
-
format?: string | undefined;
|
|
4603
5639
|
nullable?: boolean | undefined;
|
|
5640
|
+
format?: string | undefined;
|
|
5641
|
+
file?: {
|
|
5642
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5643
|
+
type: string;
|
|
5644
|
+
name: string;
|
|
5645
|
+
size: number;
|
|
5646
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5647
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5648
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5649
|
+
lastModified: number;
|
|
5650
|
+
webkitRelativePath: string;
|
|
5651
|
+
} | undefined;
|
|
5652
|
+
refUid?: string | undefined;
|
|
4604
5653
|
}[];
|
|
4605
5654
|
cookies: {
|
|
4606
5655
|
value: string;
|
|
@@ -4613,10 +5662,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4613
5662
|
required?: boolean | undefined;
|
|
4614
5663
|
description?: string | undefined;
|
|
4615
5664
|
enum?: string[] | undefined;
|
|
4616
|
-
file?: any;
|
|
4617
|
-
refUid?: string | undefined;
|
|
4618
|
-
format?: string | undefined;
|
|
4619
5665
|
nullable?: boolean | undefined;
|
|
5666
|
+
format?: string | undefined;
|
|
5667
|
+
file?: {
|
|
5668
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5669
|
+
type: string;
|
|
5670
|
+
name: string;
|
|
5671
|
+
size: number;
|
|
5672
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5673
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5674
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5675
|
+
lastModified: number;
|
|
5676
|
+
webkitRelativePath: string;
|
|
5677
|
+
} | undefined;
|
|
5678
|
+
refUid?: string | undefined;
|
|
4620
5679
|
}[];
|
|
4621
5680
|
};
|
|
4622
5681
|
auth: Record<string, any>;
|
|
@@ -4628,7 +5687,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4628
5687
|
body: {
|
|
4629
5688
|
raw: {
|
|
4630
5689
|
value: string;
|
|
4631
|
-
encoding: "
|
|
5690
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4632
5691
|
};
|
|
4633
5692
|
formData: {
|
|
4634
5693
|
value: {
|
|
@@ -4642,15 +5701,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4642
5701
|
required?: boolean | undefined;
|
|
4643
5702
|
description?: string | undefined;
|
|
4644
5703
|
enum?: string[] | undefined;
|
|
4645
|
-
file?: any;
|
|
4646
|
-
refUid?: string | undefined;
|
|
4647
|
-
format?: string | undefined;
|
|
4648
5704
|
nullable?: boolean | undefined;
|
|
5705
|
+
format?: string | undefined;
|
|
5706
|
+
file?: {
|
|
5707
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5708
|
+
type: string;
|
|
5709
|
+
name: string;
|
|
5710
|
+
size: number;
|
|
5711
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5712
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5713
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5714
|
+
lastModified: number;
|
|
5715
|
+
webkitRelativePath: string;
|
|
5716
|
+
} | undefined;
|
|
5717
|
+
refUid?: string | undefined;
|
|
4649
5718
|
}[];
|
|
4650
5719
|
encoding: "form-data" | "urlencoded";
|
|
4651
5720
|
};
|
|
4652
5721
|
activeBody: "raw" | "formData" | "binary";
|
|
4653
|
-
binary?:
|
|
5722
|
+
binary?: {
|
|
5723
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5724
|
+
type: string;
|
|
5725
|
+
name: string;
|
|
5726
|
+
size: number;
|
|
5727
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5728
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5729
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5730
|
+
lastModified: number;
|
|
5731
|
+
webkitRelativePath: string;
|
|
5732
|
+
} | undefined;
|
|
4654
5733
|
};
|
|
4655
5734
|
parameters: {
|
|
4656
5735
|
path: {
|
|
@@ -4664,10 +5743,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4664
5743
|
required?: boolean | undefined;
|
|
4665
5744
|
description?: string | undefined;
|
|
4666
5745
|
enum?: string[] | undefined;
|
|
4667
|
-
file?: any;
|
|
4668
|
-
refUid?: string | undefined;
|
|
4669
|
-
format?: string | undefined;
|
|
4670
5746
|
nullable?: boolean | undefined;
|
|
5747
|
+
format?: string | undefined;
|
|
5748
|
+
file?: {
|
|
5749
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5750
|
+
type: string;
|
|
5751
|
+
name: string;
|
|
5752
|
+
size: number;
|
|
5753
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5754
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5755
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5756
|
+
lastModified: number;
|
|
5757
|
+
webkitRelativePath: string;
|
|
5758
|
+
} | undefined;
|
|
5759
|
+
refUid?: string | undefined;
|
|
4671
5760
|
}[];
|
|
4672
5761
|
query: {
|
|
4673
5762
|
value: string;
|
|
@@ -4680,10 +5769,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4680
5769
|
required?: boolean | undefined;
|
|
4681
5770
|
description?: string | undefined;
|
|
4682
5771
|
enum?: string[] | undefined;
|
|
4683
|
-
file?: any;
|
|
4684
|
-
refUid?: string | undefined;
|
|
4685
|
-
format?: string | undefined;
|
|
4686
5772
|
nullable?: boolean | undefined;
|
|
5773
|
+
format?: string | undefined;
|
|
5774
|
+
file?: {
|
|
5775
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5776
|
+
type: string;
|
|
5777
|
+
name: string;
|
|
5778
|
+
size: number;
|
|
5779
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5780
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5781
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5782
|
+
lastModified: number;
|
|
5783
|
+
webkitRelativePath: string;
|
|
5784
|
+
} | undefined;
|
|
5785
|
+
refUid?: string | undefined;
|
|
4687
5786
|
}[];
|
|
4688
5787
|
headers: {
|
|
4689
5788
|
value: string;
|
|
@@ -4696,10 +5795,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4696
5795
|
required?: boolean | undefined;
|
|
4697
5796
|
description?: string | undefined;
|
|
4698
5797
|
enum?: string[] | undefined;
|
|
4699
|
-
file?: any;
|
|
4700
|
-
refUid?: string | undefined;
|
|
4701
|
-
format?: string | undefined;
|
|
4702
5798
|
nullable?: boolean | undefined;
|
|
5799
|
+
format?: string | undefined;
|
|
5800
|
+
file?: {
|
|
5801
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5802
|
+
type: string;
|
|
5803
|
+
name: string;
|
|
5804
|
+
size: number;
|
|
5805
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5806
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5807
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5808
|
+
lastModified: number;
|
|
5809
|
+
webkitRelativePath: string;
|
|
5810
|
+
} | undefined;
|
|
5811
|
+
refUid?: string | undefined;
|
|
4703
5812
|
}[];
|
|
4704
5813
|
cookies: {
|
|
4705
5814
|
value: string;
|
|
@@ -4712,10 +5821,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4712
5821
|
required?: boolean | undefined;
|
|
4713
5822
|
description?: string | undefined;
|
|
4714
5823
|
enum?: string[] | undefined;
|
|
4715
|
-
file?: any;
|
|
4716
|
-
refUid?: string | undefined;
|
|
4717
|
-
format?: string | undefined;
|
|
4718
5824
|
nullable?: boolean | undefined;
|
|
5825
|
+
format?: string | undefined;
|
|
5826
|
+
file?: {
|
|
5827
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5828
|
+
type: string;
|
|
5829
|
+
name: string;
|
|
5830
|
+
size: number;
|
|
5831
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5832
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5833
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5834
|
+
lastModified: number;
|
|
5835
|
+
webkitRelativePath: string;
|
|
5836
|
+
} | undefined;
|
|
5837
|
+
refUid?: string | undefined;
|
|
4719
5838
|
}[];
|
|
4720
5839
|
};
|
|
4721
5840
|
auth: Record<string, any>;
|
|
@@ -4727,7 +5846,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4727
5846
|
body: {
|
|
4728
5847
|
raw: {
|
|
4729
5848
|
value: string;
|
|
4730
|
-
encoding: "
|
|
5849
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4731
5850
|
};
|
|
4732
5851
|
formData: {
|
|
4733
5852
|
value: {
|
|
@@ -4741,15 +5860,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4741
5860
|
required?: boolean | undefined;
|
|
4742
5861
|
description?: string | undefined;
|
|
4743
5862
|
enum?: string[] | undefined;
|
|
4744
|
-
file?: any;
|
|
4745
|
-
refUid?: string | undefined;
|
|
4746
|
-
format?: string | undefined;
|
|
4747
5863
|
nullable?: boolean | undefined;
|
|
5864
|
+
format?: string | undefined;
|
|
5865
|
+
file?: {
|
|
5866
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5867
|
+
type: string;
|
|
5868
|
+
name: string;
|
|
5869
|
+
size: number;
|
|
5870
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5871
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5872
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5873
|
+
lastModified: number;
|
|
5874
|
+
webkitRelativePath: string;
|
|
5875
|
+
} | undefined;
|
|
5876
|
+
refUid?: string | undefined;
|
|
4748
5877
|
}[];
|
|
4749
5878
|
encoding: "form-data" | "urlencoded";
|
|
4750
5879
|
};
|
|
4751
5880
|
activeBody: "raw" | "formData" | "binary";
|
|
4752
|
-
binary?:
|
|
5881
|
+
binary?: {
|
|
5882
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5883
|
+
type: string;
|
|
5884
|
+
name: string;
|
|
5885
|
+
size: number;
|
|
5886
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5887
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5888
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5889
|
+
lastModified: number;
|
|
5890
|
+
webkitRelativePath: string;
|
|
5891
|
+
} | undefined;
|
|
4753
5892
|
};
|
|
4754
5893
|
parameters: {
|
|
4755
5894
|
path: {
|
|
@@ -4763,10 +5902,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4763
5902
|
required?: boolean | undefined;
|
|
4764
5903
|
description?: string | undefined;
|
|
4765
5904
|
enum?: string[] | undefined;
|
|
4766
|
-
file?: any;
|
|
4767
|
-
refUid?: string | undefined;
|
|
4768
|
-
format?: string | undefined;
|
|
4769
5905
|
nullable?: boolean | undefined;
|
|
5906
|
+
format?: string | undefined;
|
|
5907
|
+
file?: {
|
|
5908
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5909
|
+
type: string;
|
|
5910
|
+
name: string;
|
|
5911
|
+
size: number;
|
|
5912
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5913
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5914
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5915
|
+
lastModified: number;
|
|
5916
|
+
webkitRelativePath: string;
|
|
5917
|
+
} | undefined;
|
|
5918
|
+
refUid?: string | undefined;
|
|
4770
5919
|
}[];
|
|
4771
5920
|
query: {
|
|
4772
5921
|
value: string;
|
|
@@ -4779,10 +5928,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4779
5928
|
required?: boolean | undefined;
|
|
4780
5929
|
description?: string | undefined;
|
|
4781
5930
|
enum?: string[] | undefined;
|
|
4782
|
-
file?: any;
|
|
4783
|
-
refUid?: string | undefined;
|
|
4784
|
-
format?: string | undefined;
|
|
4785
5931
|
nullable?: boolean | undefined;
|
|
5932
|
+
format?: string | undefined;
|
|
5933
|
+
file?: {
|
|
5934
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5935
|
+
type: string;
|
|
5936
|
+
name: string;
|
|
5937
|
+
size: number;
|
|
5938
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5939
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5940
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5941
|
+
lastModified: number;
|
|
5942
|
+
webkitRelativePath: string;
|
|
5943
|
+
} | undefined;
|
|
5944
|
+
refUid?: string | undefined;
|
|
4786
5945
|
}[];
|
|
4787
5946
|
headers: {
|
|
4788
5947
|
value: string;
|
|
@@ -4795,10 +5954,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4795
5954
|
required?: boolean | undefined;
|
|
4796
5955
|
description?: string | undefined;
|
|
4797
5956
|
enum?: string[] | undefined;
|
|
4798
|
-
file?: any;
|
|
4799
|
-
refUid?: string | undefined;
|
|
4800
|
-
format?: string | undefined;
|
|
4801
5957
|
nullable?: boolean | undefined;
|
|
5958
|
+
format?: string | undefined;
|
|
5959
|
+
file?: {
|
|
5960
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5961
|
+
type: string;
|
|
5962
|
+
name: string;
|
|
5963
|
+
size: number;
|
|
5964
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5965
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5966
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5967
|
+
lastModified: number;
|
|
5968
|
+
webkitRelativePath: string;
|
|
5969
|
+
} | undefined;
|
|
5970
|
+
refUid?: string | undefined;
|
|
4802
5971
|
}[];
|
|
4803
5972
|
cookies: {
|
|
4804
5973
|
value: string;
|
|
@@ -4811,15 +5980,25 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4811
5980
|
required?: boolean | undefined;
|
|
4812
5981
|
description?: string | undefined;
|
|
4813
5982
|
enum?: string[] | undefined;
|
|
4814
|
-
file?: any;
|
|
4815
|
-
refUid?: string | undefined;
|
|
4816
|
-
format?: string | undefined;
|
|
4817
5983
|
nullable?: boolean | undefined;
|
|
5984
|
+
format?: string | undefined;
|
|
5985
|
+
file?: {
|
|
5986
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5987
|
+
type: string;
|
|
5988
|
+
name: string;
|
|
5989
|
+
size: number;
|
|
5990
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5991
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5992
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5993
|
+
lastModified: number;
|
|
5994
|
+
webkitRelativePath: string;
|
|
5995
|
+
} | undefined;
|
|
5996
|
+
refUid?: string | undefined;
|
|
4818
5997
|
}[];
|
|
4819
5998
|
};
|
|
4820
5999
|
auth: Record<string, any>;
|
|
4821
6000
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4822
|
-
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}.
|
|
6001
|
+
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" ? {
|
|
4823
6002
|
uid: string;
|
|
4824
6003
|
name: string;
|
|
4825
6004
|
url: string;
|
|
@@ -4827,7 +6006,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4827
6006
|
body: {
|
|
4828
6007
|
raw: {
|
|
4829
6008
|
value: string;
|
|
4830
|
-
encoding: "
|
|
6009
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4831
6010
|
};
|
|
4832
6011
|
formData: {
|
|
4833
6012
|
value: {
|
|
@@ -4841,15 +6020,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4841
6020
|
required?: boolean | undefined;
|
|
4842
6021
|
description?: string | undefined;
|
|
4843
6022
|
enum?: string[] | undefined;
|
|
4844
|
-
file?: any;
|
|
4845
|
-
refUid?: string | undefined;
|
|
4846
|
-
format?: string | undefined;
|
|
4847
6023
|
nullable?: boolean | undefined;
|
|
6024
|
+
format?: string | undefined;
|
|
6025
|
+
file?: {
|
|
6026
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6027
|
+
type: string;
|
|
6028
|
+
name: string;
|
|
6029
|
+
size: number;
|
|
6030
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6031
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6032
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6033
|
+
lastModified: number;
|
|
6034
|
+
webkitRelativePath: string;
|
|
6035
|
+
} | undefined;
|
|
6036
|
+
refUid?: string | undefined;
|
|
4848
6037
|
}[];
|
|
4849
6038
|
encoding: "form-data" | "urlencoded";
|
|
4850
6039
|
};
|
|
4851
6040
|
activeBody: "raw" | "formData" | "binary";
|
|
4852
|
-
binary?:
|
|
6041
|
+
binary?: {
|
|
6042
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6043
|
+
type: string;
|
|
6044
|
+
name: string;
|
|
6045
|
+
size: number;
|
|
6046
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6047
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6048
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6049
|
+
lastModified: number;
|
|
6050
|
+
webkitRelativePath: string;
|
|
6051
|
+
} | undefined;
|
|
4853
6052
|
};
|
|
4854
6053
|
parameters: {
|
|
4855
6054
|
path: {
|
|
@@ -4863,10 +6062,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4863
6062
|
required?: boolean | undefined;
|
|
4864
6063
|
description?: string | undefined;
|
|
4865
6064
|
enum?: string[] | undefined;
|
|
4866
|
-
file?: any;
|
|
4867
|
-
refUid?: string | undefined;
|
|
4868
|
-
format?: string | undefined;
|
|
4869
6065
|
nullable?: boolean | undefined;
|
|
6066
|
+
format?: string | undefined;
|
|
6067
|
+
file?: {
|
|
6068
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6069
|
+
type: string;
|
|
6070
|
+
name: string;
|
|
6071
|
+
size: number;
|
|
6072
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6073
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6074
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6075
|
+
lastModified: number;
|
|
6076
|
+
webkitRelativePath: string;
|
|
6077
|
+
} | undefined;
|
|
6078
|
+
refUid?: string | undefined;
|
|
4870
6079
|
}[];
|
|
4871
6080
|
query: {
|
|
4872
6081
|
value: string;
|
|
@@ -4879,10 +6088,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4879
6088
|
required?: boolean | undefined;
|
|
4880
6089
|
description?: string | undefined;
|
|
4881
6090
|
enum?: string[] | undefined;
|
|
4882
|
-
file?: any;
|
|
4883
|
-
refUid?: string | undefined;
|
|
4884
|
-
format?: string | undefined;
|
|
4885
6091
|
nullable?: boolean | undefined;
|
|
6092
|
+
format?: string | undefined;
|
|
6093
|
+
file?: {
|
|
6094
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6095
|
+
type: string;
|
|
6096
|
+
name: string;
|
|
6097
|
+
size: number;
|
|
6098
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6099
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6100
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6101
|
+
lastModified: number;
|
|
6102
|
+
webkitRelativePath: string;
|
|
6103
|
+
} | undefined;
|
|
6104
|
+
refUid?: string | undefined;
|
|
4886
6105
|
}[];
|
|
4887
6106
|
headers: {
|
|
4888
6107
|
value: string;
|
|
@@ -4895,10 +6114,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4895
6114
|
required?: boolean | undefined;
|
|
4896
6115
|
description?: string | undefined;
|
|
4897
6116
|
enum?: string[] | undefined;
|
|
4898
|
-
file?: any;
|
|
4899
|
-
refUid?: string | undefined;
|
|
4900
|
-
format?: string | undefined;
|
|
4901
6117
|
nullable?: boolean | undefined;
|
|
6118
|
+
format?: string | undefined;
|
|
6119
|
+
file?: {
|
|
6120
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6121
|
+
type: string;
|
|
6122
|
+
name: string;
|
|
6123
|
+
size: number;
|
|
6124
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6125
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6126
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6127
|
+
lastModified: number;
|
|
6128
|
+
webkitRelativePath: string;
|
|
6129
|
+
} | undefined;
|
|
6130
|
+
refUid?: string | undefined;
|
|
4902
6131
|
}[];
|
|
4903
6132
|
cookies: {
|
|
4904
6133
|
value: string;
|
|
@@ -4911,10 +6140,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4911
6140
|
required?: boolean | undefined;
|
|
4912
6141
|
description?: string | undefined;
|
|
4913
6142
|
enum?: string[] | undefined;
|
|
4914
|
-
file?: any;
|
|
4915
|
-
refUid?: string | undefined;
|
|
4916
|
-
format?: string | undefined;
|
|
4917
6143
|
nullable?: boolean | undefined;
|
|
6144
|
+
format?: string | undefined;
|
|
6145
|
+
file?: {
|
|
6146
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6147
|
+
type: string;
|
|
6148
|
+
name: string;
|
|
6149
|
+
size: number;
|
|
6150
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6151
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6152
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6153
|
+
lastModified: number;
|
|
6154
|
+
webkitRelativePath: string;
|
|
6155
|
+
} | undefined;
|
|
6156
|
+
refUid?: string | undefined;
|
|
4918
6157
|
}[];
|
|
4919
6158
|
};
|
|
4920
6159
|
auth: Record<string, any>;
|
|
@@ -4926,7 +6165,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4926
6165
|
body: {
|
|
4927
6166
|
raw: {
|
|
4928
6167
|
value: string;
|
|
4929
|
-
encoding: "
|
|
6168
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4930
6169
|
};
|
|
4931
6170
|
formData: {
|
|
4932
6171
|
value: {
|
|
@@ -4940,15 +6179,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4940
6179
|
required?: boolean | undefined;
|
|
4941
6180
|
description?: string | undefined;
|
|
4942
6181
|
enum?: string[] | undefined;
|
|
4943
|
-
file?: any;
|
|
4944
|
-
refUid?: string | undefined;
|
|
4945
|
-
format?: string | undefined;
|
|
4946
6182
|
nullable?: boolean | undefined;
|
|
6183
|
+
format?: string | undefined;
|
|
6184
|
+
file?: {
|
|
6185
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6186
|
+
type: string;
|
|
6187
|
+
name: string;
|
|
6188
|
+
size: number;
|
|
6189
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6190
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6191
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6192
|
+
lastModified: number;
|
|
6193
|
+
webkitRelativePath: string;
|
|
6194
|
+
} | undefined;
|
|
6195
|
+
refUid?: string | undefined;
|
|
4947
6196
|
}[];
|
|
4948
6197
|
encoding: "form-data" | "urlencoded";
|
|
4949
6198
|
};
|
|
4950
6199
|
activeBody: "raw" | "formData" | "binary";
|
|
4951
|
-
binary?:
|
|
6200
|
+
binary?: {
|
|
6201
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6202
|
+
type: string;
|
|
6203
|
+
name: string;
|
|
6204
|
+
size: number;
|
|
6205
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6206
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6207
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6208
|
+
lastModified: number;
|
|
6209
|
+
webkitRelativePath: string;
|
|
6210
|
+
} | undefined;
|
|
4952
6211
|
};
|
|
4953
6212
|
parameters: {
|
|
4954
6213
|
path: {
|
|
@@ -4962,10 +6221,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4962
6221
|
required?: boolean | undefined;
|
|
4963
6222
|
description?: string | undefined;
|
|
4964
6223
|
enum?: string[] | undefined;
|
|
4965
|
-
file?: any;
|
|
4966
|
-
refUid?: string | undefined;
|
|
4967
|
-
format?: string | undefined;
|
|
4968
6224
|
nullable?: boolean | undefined;
|
|
6225
|
+
format?: string | undefined;
|
|
6226
|
+
file?: {
|
|
6227
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6228
|
+
type: string;
|
|
6229
|
+
name: string;
|
|
6230
|
+
size: number;
|
|
6231
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6232
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6233
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6234
|
+
lastModified: number;
|
|
6235
|
+
webkitRelativePath: string;
|
|
6236
|
+
} | undefined;
|
|
6237
|
+
refUid?: string | undefined;
|
|
4969
6238
|
}[];
|
|
4970
6239
|
query: {
|
|
4971
6240
|
value: string;
|
|
@@ -4978,10 +6247,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4978
6247
|
required?: boolean | undefined;
|
|
4979
6248
|
description?: string | undefined;
|
|
4980
6249
|
enum?: string[] | undefined;
|
|
4981
|
-
file?: any;
|
|
4982
|
-
refUid?: string | undefined;
|
|
4983
|
-
format?: string | undefined;
|
|
4984
6250
|
nullable?: boolean | undefined;
|
|
6251
|
+
format?: string | undefined;
|
|
6252
|
+
file?: {
|
|
6253
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6254
|
+
type: string;
|
|
6255
|
+
name: string;
|
|
6256
|
+
size: number;
|
|
6257
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6258
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6259
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6260
|
+
lastModified: number;
|
|
6261
|
+
webkitRelativePath: string;
|
|
6262
|
+
} | undefined;
|
|
6263
|
+
refUid?: string | undefined;
|
|
4985
6264
|
}[];
|
|
4986
6265
|
headers: {
|
|
4987
6266
|
value: string;
|
|
@@ -4994,10 +6273,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4994
6273
|
required?: boolean | undefined;
|
|
4995
6274
|
description?: string | undefined;
|
|
4996
6275
|
enum?: string[] | undefined;
|
|
4997
|
-
file?: any;
|
|
4998
|
-
refUid?: string | undefined;
|
|
4999
|
-
format?: string | undefined;
|
|
5000
6276
|
nullable?: boolean | undefined;
|
|
6277
|
+
format?: string | undefined;
|
|
6278
|
+
file?: {
|
|
6279
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6280
|
+
type: string;
|
|
6281
|
+
name: string;
|
|
6282
|
+
size: number;
|
|
6283
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6284
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6285
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6286
|
+
lastModified: number;
|
|
6287
|
+
webkitRelativePath: string;
|
|
6288
|
+
} | undefined;
|
|
6289
|
+
refUid?: string | undefined;
|
|
5001
6290
|
}[];
|
|
5002
6291
|
cookies: {
|
|
5003
6292
|
value: string;
|
|
@@ -5010,10 +6299,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5010
6299
|
required?: boolean | undefined;
|
|
5011
6300
|
description?: string | undefined;
|
|
5012
6301
|
enum?: string[] | undefined;
|
|
5013
|
-
file?: any;
|
|
5014
|
-
refUid?: string | undefined;
|
|
5015
|
-
format?: string | undefined;
|
|
5016
6302
|
nullable?: boolean | undefined;
|
|
6303
|
+
format?: string | undefined;
|
|
6304
|
+
file?: {
|
|
6305
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6306
|
+
type: string;
|
|
6307
|
+
name: string;
|
|
6308
|
+
size: number;
|
|
6309
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6310
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6311
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6312
|
+
lastModified: number;
|
|
6313
|
+
webkitRelativePath: string;
|
|
6314
|
+
} | undefined;
|
|
6315
|
+
refUid?: string | undefined;
|
|
5017
6316
|
}[];
|
|
5018
6317
|
};
|
|
5019
6318
|
auth: Record<string, any>;
|
|
@@ -5025,7 +6324,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5025
6324
|
body: {
|
|
5026
6325
|
raw: {
|
|
5027
6326
|
value: string;
|
|
5028
|
-
encoding: "
|
|
6327
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5029
6328
|
};
|
|
5030
6329
|
formData: {
|
|
5031
6330
|
value: {
|
|
@@ -5039,15 +6338,35 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5039
6338
|
required?: boolean | undefined;
|
|
5040
6339
|
description?: string | undefined;
|
|
5041
6340
|
enum?: string[] | undefined;
|
|
5042
|
-
file?: any;
|
|
5043
|
-
refUid?: string | undefined;
|
|
5044
|
-
format?: string | undefined;
|
|
5045
6341
|
nullable?: boolean | undefined;
|
|
6342
|
+
format?: string | undefined;
|
|
6343
|
+
file?: {
|
|
6344
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6345
|
+
type: string;
|
|
6346
|
+
name: string;
|
|
6347
|
+
size: number;
|
|
6348
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6349
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6350
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6351
|
+
lastModified: number;
|
|
6352
|
+
webkitRelativePath: string;
|
|
6353
|
+
} | undefined;
|
|
6354
|
+
refUid?: string | undefined;
|
|
5046
6355
|
}[];
|
|
5047
6356
|
encoding: "form-data" | "urlencoded";
|
|
5048
6357
|
};
|
|
5049
6358
|
activeBody: "raw" | "formData" | "binary";
|
|
5050
|
-
binary?:
|
|
6359
|
+
binary?: {
|
|
6360
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6361
|
+
type: string;
|
|
6362
|
+
name: string;
|
|
6363
|
+
size: number;
|
|
6364
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6365
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6366
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6367
|
+
lastModified: number;
|
|
6368
|
+
webkitRelativePath: string;
|
|
6369
|
+
} | undefined;
|
|
5051
6370
|
};
|
|
5052
6371
|
parameters: {
|
|
5053
6372
|
path: {
|
|
@@ -5061,10 +6380,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5061
6380
|
required?: boolean | undefined;
|
|
5062
6381
|
description?: string | undefined;
|
|
5063
6382
|
enum?: string[] | undefined;
|
|
5064
|
-
file?: any;
|
|
5065
|
-
refUid?: string | undefined;
|
|
5066
|
-
format?: string | undefined;
|
|
5067
6383
|
nullable?: boolean | undefined;
|
|
6384
|
+
format?: string | undefined;
|
|
6385
|
+
file?: {
|
|
6386
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6387
|
+
type: string;
|
|
6388
|
+
name: string;
|
|
6389
|
+
size: number;
|
|
6390
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6391
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6392
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6393
|
+
lastModified: number;
|
|
6394
|
+
webkitRelativePath: string;
|
|
6395
|
+
} | undefined;
|
|
6396
|
+
refUid?: string | undefined;
|
|
5068
6397
|
}[];
|
|
5069
6398
|
query: {
|
|
5070
6399
|
value: string;
|
|
@@ -5077,10 +6406,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5077
6406
|
required?: boolean | undefined;
|
|
5078
6407
|
description?: string | undefined;
|
|
5079
6408
|
enum?: string[] | undefined;
|
|
5080
|
-
file?: any;
|
|
5081
|
-
refUid?: string | undefined;
|
|
5082
|
-
format?: string | undefined;
|
|
5083
6409
|
nullable?: boolean | undefined;
|
|
6410
|
+
format?: string | undefined;
|
|
6411
|
+
file?: {
|
|
6412
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6413
|
+
type: string;
|
|
6414
|
+
name: string;
|
|
6415
|
+
size: number;
|
|
6416
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6417
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6418
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6419
|
+
lastModified: number;
|
|
6420
|
+
webkitRelativePath: string;
|
|
6421
|
+
} | undefined;
|
|
6422
|
+
refUid?: string | undefined;
|
|
5084
6423
|
}[];
|
|
5085
6424
|
headers: {
|
|
5086
6425
|
value: string;
|
|
@@ -5093,10 +6432,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5093
6432
|
required?: boolean | undefined;
|
|
5094
6433
|
description?: string | undefined;
|
|
5095
6434
|
enum?: string[] | undefined;
|
|
5096
|
-
file?: any;
|
|
5097
|
-
refUid?: string | undefined;
|
|
5098
|
-
format?: string | undefined;
|
|
5099
6435
|
nullable?: boolean | undefined;
|
|
6436
|
+
format?: string | undefined;
|
|
6437
|
+
file?: {
|
|
6438
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6439
|
+
type: string;
|
|
6440
|
+
name: string;
|
|
6441
|
+
size: number;
|
|
6442
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6443
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6444
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6445
|
+
lastModified: number;
|
|
6446
|
+
webkitRelativePath: string;
|
|
6447
|
+
} | undefined;
|
|
6448
|
+
refUid?: string | undefined;
|
|
5100
6449
|
}[];
|
|
5101
6450
|
cookies: {
|
|
5102
6451
|
value: string;
|
|
@@ -5109,10 +6458,20 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5109
6458
|
required?: boolean | undefined;
|
|
5110
6459
|
description?: string | undefined;
|
|
5111
6460
|
enum?: string[] | undefined;
|
|
5112
|
-
file?: any;
|
|
5113
|
-
refUid?: string | undefined;
|
|
5114
|
-
format?: string | undefined;
|
|
5115
6461
|
nullable?: boolean | undefined;
|
|
6462
|
+
format?: string | undefined;
|
|
6463
|
+
file?: {
|
|
6464
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6465
|
+
type: string;
|
|
6466
|
+
name: string;
|
|
6467
|
+
size: number;
|
|
6468
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6469
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6470
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6471
|
+
lastModified: number;
|
|
6472
|
+
webkitRelativePath: string;
|
|
6473
|
+
} | undefined;
|
|
6474
|
+
refUid?: string | undefined;
|
|
5116
6475
|
}[];
|
|
5117
6476
|
};
|
|
5118
6477
|
auth: Record<string, any>;
|
|
@@ -5768,6 +7127,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5768
7127
|
isReadOnly: boolean;
|
|
5769
7128
|
collectionUids: string[];
|
|
5770
7129
|
environmentUids: string[];
|
|
7130
|
+
activeEnvironmentId: string;
|
|
5771
7131
|
cookieUids: string[];
|
|
5772
7132
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5773
7133
|
hotKeyConfig?: {
|
|
@@ -5786,6 +7146,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5786
7146
|
isReadOnly: boolean;
|
|
5787
7147
|
collectionUids: string[];
|
|
5788
7148
|
environmentUids: string[];
|
|
7149
|
+
activeEnvironmentId: string;
|
|
5789
7150
|
cookieUids: string[];
|
|
5790
7151
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5791
7152
|
hotKeyConfig?: {
|
|
@@ -5806,6 +7167,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5806
7167
|
isReadOnly: boolean;
|
|
5807
7168
|
collectionUids: string[];
|
|
5808
7169
|
environmentUids: string[];
|
|
7170
|
+
activeEnvironmentId: string;
|
|
5809
7171
|
cookieUids: string[];
|
|
5810
7172
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5811
7173
|
hotKeyConfig?: {
|
|
@@ -5817,13 +7179,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5817
7179
|
} | undefined;
|
|
5818
7180
|
proxyUrl?: string | undefined;
|
|
5819
7181
|
}) => void;
|
|
5820
|
-
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" ? {
|
|
7182
|
+
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" ? {
|
|
5821
7183
|
uid: string;
|
|
5822
7184
|
name: string;
|
|
5823
7185
|
description: string;
|
|
5824
7186
|
isReadOnly: boolean;
|
|
5825
7187
|
collectionUids: string[];
|
|
5826
7188
|
environmentUids: string[];
|
|
7189
|
+
activeEnvironmentId: string;
|
|
5827
7190
|
cookieUids: string[];
|
|
5828
7191
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5829
7192
|
hotKeyConfig?: {
|
|
@@ -5834,13 +7197,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5834
7197
|
}>> | undefined;
|
|
5835
7198
|
} | undefined;
|
|
5836
7199
|
proxyUrl?: string | undefined;
|
|
5837
|
-
}[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<{
|
|
7200
|
+
}[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<{
|
|
5838
7201
|
uid: string;
|
|
5839
7202
|
name: string;
|
|
5840
7203
|
description: string;
|
|
5841
7204
|
isReadOnly: boolean;
|
|
5842
7205
|
collectionUids: string[];
|
|
5843
7206
|
environmentUids: string[];
|
|
7207
|
+
activeEnvironmentId: string;
|
|
5844
7208
|
cookieUids: string[];
|
|
5845
7209
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5846
7210
|
hotKeyConfig?: {
|
|
@@ -5858,6 +7222,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5858
7222
|
isReadOnly: boolean;
|
|
5859
7223
|
collectionUids: string[];
|
|
5860
7224
|
environmentUids: string[];
|
|
7225
|
+
activeEnvironmentId: string;
|
|
5861
7226
|
cookieUids: string[];
|
|
5862
7227
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5863
7228
|
hotKeyConfig?: {
|
|
@@ -5869,13 +7234,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5869
7234
|
} | undefined;
|
|
5870
7235
|
proxyUrl?: string | undefined;
|
|
5871
7236
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5872
|
-
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" ? {
|
|
7237
|
+
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" ? {
|
|
5873
7238
|
uid: string;
|
|
5874
7239
|
name: string;
|
|
5875
7240
|
description: string;
|
|
5876
7241
|
isReadOnly: boolean;
|
|
5877
7242
|
collectionUids: string[];
|
|
5878
7243
|
environmentUids: string[];
|
|
7244
|
+
activeEnvironmentId: string;
|
|
5879
7245
|
cookieUids: string[];
|
|
5880
7246
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5881
7247
|
hotKeyConfig?: {
|
|
@@ -5886,13 +7252,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5886
7252
|
}>> | undefined;
|
|
5887
7253
|
} | undefined;
|
|
5888
7254
|
proxyUrl?: string | undefined;
|
|
5889
|
-
}[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<{
|
|
7255
|
+
}[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<{
|
|
5890
7256
|
uid: string;
|
|
5891
7257
|
name: string;
|
|
5892
7258
|
description: string;
|
|
5893
7259
|
isReadOnly: boolean;
|
|
5894
7260
|
collectionUids: string[];
|
|
5895
7261
|
environmentUids: string[];
|
|
7262
|
+
activeEnvironmentId: string;
|
|
5896
7263
|
cookieUids: string[];
|
|
5897
7264
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5898
7265
|
hotKeyConfig?: {
|
|
@@ -5910,6 +7277,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5910
7277
|
isReadOnly: boolean;
|
|
5911
7278
|
collectionUids: string[];
|
|
5912
7279
|
environmentUids: string[];
|
|
7280
|
+
activeEnvironmentId: string;
|
|
5913
7281
|
cookieUids: string[];
|
|
5914
7282
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5915
7283
|
hotKeyConfig?: {
|