@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
|
@@ -5,9 +5,9 @@ import { type SecurityScheme, type SecuritySchemePayload } from '@scalar/oas-uti
|
|
|
5
5
|
import { type Server, type ServerPayload } from '@scalar/oas-utils/entities/workspace/server';
|
|
6
6
|
import { type Request, type RequestEvent, type RequestExample, type RequestPayload } from '@scalar/oas-utils/entities/workspace/spec';
|
|
7
7
|
import type { Path, PathValue } from '@scalar/object-utils/nested';
|
|
8
|
-
import type { AnyObject } from '@scalar/openapi-parser';
|
|
9
8
|
import type { Spec } from '@scalar/types/legacy';
|
|
10
9
|
import type { Router } from 'vue-router';
|
|
10
|
+
type AnyObject = Record<string, any>;
|
|
11
11
|
export type UpdateScheme = <P extends Path<SecurityScheme>>(path: P, value: NonNullable<PathValue<SecurityScheme, P>>) => void;
|
|
12
12
|
/**
|
|
13
13
|
* Factory for creating the entire store for the api-client
|
|
@@ -21,6 +21,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
21
21
|
isReadOnly: boolean;
|
|
22
22
|
collectionUids: string[];
|
|
23
23
|
environmentUids: string[];
|
|
24
|
+
activeEnvironmentId: string;
|
|
24
25
|
cookieUids: string[];
|
|
25
26
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
26
27
|
hotKeyConfig?: {
|
|
@@ -110,7 +111,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
110
111
|
body: {
|
|
111
112
|
raw: {
|
|
112
113
|
value: string;
|
|
113
|
-
encoding: "
|
|
114
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
114
115
|
};
|
|
115
116
|
formData: {
|
|
116
117
|
value: {
|
|
@@ -124,15 +125,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
124
125
|
required?: boolean | undefined;
|
|
125
126
|
description?: string | undefined;
|
|
126
127
|
enum?: string[] | undefined;
|
|
127
|
-
file?: any;
|
|
128
|
-
refUid?: string | undefined;
|
|
129
|
-
format?: string | undefined;
|
|
130
128
|
nullable?: boolean | undefined;
|
|
129
|
+
format?: string | undefined;
|
|
130
|
+
file?: {
|
|
131
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
132
|
+
type: string;
|
|
133
|
+
name: string;
|
|
134
|
+
size: number;
|
|
135
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
136
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
137
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
138
|
+
lastModified: number;
|
|
139
|
+
webkitRelativePath: string;
|
|
140
|
+
} | undefined;
|
|
141
|
+
refUid?: string | undefined;
|
|
131
142
|
}[];
|
|
132
143
|
encoding: "form-data" | "urlencoded";
|
|
133
144
|
};
|
|
134
145
|
activeBody: "raw" | "formData" | "binary";
|
|
135
|
-
binary?:
|
|
146
|
+
binary?: {
|
|
147
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
148
|
+
type: string;
|
|
149
|
+
name: string;
|
|
150
|
+
size: number;
|
|
151
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
152
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
153
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
154
|
+
lastModified: number;
|
|
155
|
+
webkitRelativePath: string;
|
|
156
|
+
} | undefined;
|
|
136
157
|
};
|
|
137
158
|
parameters: {
|
|
138
159
|
path: {
|
|
@@ -146,10 +167,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
146
167
|
required?: boolean | undefined;
|
|
147
168
|
description?: string | undefined;
|
|
148
169
|
enum?: string[] | undefined;
|
|
149
|
-
file?: any;
|
|
150
|
-
refUid?: string | undefined;
|
|
151
|
-
format?: string | undefined;
|
|
152
170
|
nullable?: boolean | undefined;
|
|
171
|
+
format?: string | undefined;
|
|
172
|
+
file?: {
|
|
173
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
174
|
+
type: string;
|
|
175
|
+
name: string;
|
|
176
|
+
size: number;
|
|
177
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
178
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
179
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
180
|
+
lastModified: number;
|
|
181
|
+
webkitRelativePath: string;
|
|
182
|
+
} | undefined;
|
|
183
|
+
refUid?: string | undefined;
|
|
153
184
|
}[];
|
|
154
185
|
query: {
|
|
155
186
|
value: string;
|
|
@@ -162,10 +193,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
162
193
|
required?: boolean | undefined;
|
|
163
194
|
description?: string | undefined;
|
|
164
195
|
enum?: string[] | undefined;
|
|
165
|
-
file?: any;
|
|
166
|
-
refUid?: string | undefined;
|
|
167
|
-
format?: string | undefined;
|
|
168
196
|
nullable?: boolean | undefined;
|
|
197
|
+
format?: string | undefined;
|
|
198
|
+
file?: {
|
|
199
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
200
|
+
type: string;
|
|
201
|
+
name: string;
|
|
202
|
+
size: number;
|
|
203
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
204
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
205
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
206
|
+
lastModified: number;
|
|
207
|
+
webkitRelativePath: string;
|
|
208
|
+
} | undefined;
|
|
209
|
+
refUid?: string | undefined;
|
|
169
210
|
}[];
|
|
170
211
|
headers: {
|
|
171
212
|
value: string;
|
|
@@ -178,10 +219,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
178
219
|
required?: boolean | undefined;
|
|
179
220
|
description?: string | undefined;
|
|
180
221
|
enum?: string[] | undefined;
|
|
181
|
-
file?: any;
|
|
182
|
-
refUid?: string | undefined;
|
|
183
|
-
format?: string | undefined;
|
|
184
222
|
nullable?: boolean | undefined;
|
|
223
|
+
format?: string | undefined;
|
|
224
|
+
file?: {
|
|
225
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
226
|
+
type: string;
|
|
227
|
+
name: string;
|
|
228
|
+
size: number;
|
|
229
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
230
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
231
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
232
|
+
lastModified: number;
|
|
233
|
+
webkitRelativePath: string;
|
|
234
|
+
} | undefined;
|
|
235
|
+
refUid?: string | undefined;
|
|
185
236
|
}[];
|
|
186
237
|
cookies: {
|
|
187
238
|
value: string;
|
|
@@ -194,10 +245,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
194
245
|
required?: boolean | undefined;
|
|
195
246
|
description?: string | undefined;
|
|
196
247
|
enum?: string[] | undefined;
|
|
197
|
-
file?: any;
|
|
198
|
-
refUid?: string | undefined;
|
|
199
|
-
format?: string | undefined;
|
|
200
248
|
nullable?: boolean | undefined;
|
|
249
|
+
format?: string | undefined;
|
|
250
|
+
file?: {
|
|
251
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
252
|
+
type: string;
|
|
253
|
+
name: string;
|
|
254
|
+
size: number;
|
|
255
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
256
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
257
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
258
|
+
lastModified: number;
|
|
259
|
+
webkitRelativePath: string;
|
|
260
|
+
} | undefined;
|
|
261
|
+
refUid?: string | undefined;
|
|
201
262
|
}[];
|
|
202
263
|
};
|
|
203
264
|
auth: Record<string, any>;
|
|
@@ -331,7 +392,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
331
392
|
body: {
|
|
332
393
|
raw: {
|
|
333
394
|
value: string;
|
|
334
|
-
encoding: "
|
|
395
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
335
396
|
};
|
|
336
397
|
formData: {
|
|
337
398
|
value: {
|
|
@@ -345,15 +406,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
345
406
|
required?: boolean | undefined;
|
|
346
407
|
description?: string | undefined;
|
|
347
408
|
enum?: string[] | undefined;
|
|
348
|
-
file?: any;
|
|
349
|
-
refUid?: string | undefined;
|
|
350
|
-
format?: string | undefined;
|
|
351
409
|
nullable?: boolean | undefined;
|
|
410
|
+
format?: string | undefined;
|
|
411
|
+
file?: {
|
|
412
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
413
|
+
type: string;
|
|
414
|
+
name: string;
|
|
415
|
+
size: number;
|
|
416
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
417
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
418
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
419
|
+
lastModified: number;
|
|
420
|
+
webkitRelativePath: string;
|
|
421
|
+
} | undefined;
|
|
422
|
+
refUid?: string | undefined;
|
|
352
423
|
}[];
|
|
353
424
|
encoding: "form-data" | "urlencoded";
|
|
354
425
|
};
|
|
355
426
|
activeBody: "raw" | "formData" | "binary";
|
|
356
|
-
binary?:
|
|
427
|
+
binary?: {
|
|
428
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
429
|
+
type: string;
|
|
430
|
+
name: string;
|
|
431
|
+
size: number;
|
|
432
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
433
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
434
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
435
|
+
lastModified: number;
|
|
436
|
+
webkitRelativePath: string;
|
|
437
|
+
} | undefined;
|
|
357
438
|
};
|
|
358
439
|
parameters: {
|
|
359
440
|
path: {
|
|
@@ -367,10 +448,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
367
448
|
required?: boolean | undefined;
|
|
368
449
|
description?: string | undefined;
|
|
369
450
|
enum?: string[] | undefined;
|
|
370
|
-
file?: any;
|
|
371
|
-
refUid?: string | undefined;
|
|
372
|
-
format?: string | undefined;
|
|
373
451
|
nullable?: boolean | undefined;
|
|
452
|
+
format?: string | undefined;
|
|
453
|
+
file?: {
|
|
454
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
455
|
+
type: string;
|
|
456
|
+
name: string;
|
|
457
|
+
size: number;
|
|
458
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
459
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
460
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
461
|
+
lastModified: number;
|
|
462
|
+
webkitRelativePath: string;
|
|
463
|
+
} | undefined;
|
|
464
|
+
refUid?: string | undefined;
|
|
374
465
|
}[];
|
|
375
466
|
query: {
|
|
376
467
|
value: string;
|
|
@@ -383,10 +474,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
383
474
|
required?: boolean | undefined;
|
|
384
475
|
description?: string | undefined;
|
|
385
476
|
enum?: string[] | undefined;
|
|
386
|
-
file?: any;
|
|
387
|
-
refUid?: string | undefined;
|
|
388
|
-
format?: string | undefined;
|
|
389
477
|
nullable?: boolean | undefined;
|
|
478
|
+
format?: string | undefined;
|
|
479
|
+
file?: {
|
|
480
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
481
|
+
type: string;
|
|
482
|
+
name: string;
|
|
483
|
+
size: number;
|
|
484
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
485
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
486
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
487
|
+
lastModified: number;
|
|
488
|
+
webkitRelativePath: string;
|
|
489
|
+
} | undefined;
|
|
490
|
+
refUid?: string | undefined;
|
|
390
491
|
}[];
|
|
391
492
|
headers: {
|
|
392
493
|
value: string;
|
|
@@ -399,10 +500,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
399
500
|
required?: boolean | undefined;
|
|
400
501
|
description?: string | undefined;
|
|
401
502
|
enum?: string[] | undefined;
|
|
402
|
-
file?: any;
|
|
403
|
-
refUid?: string | undefined;
|
|
404
|
-
format?: string | undefined;
|
|
405
503
|
nullable?: boolean | undefined;
|
|
504
|
+
format?: string | undefined;
|
|
505
|
+
file?: {
|
|
506
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
507
|
+
type: string;
|
|
508
|
+
name: string;
|
|
509
|
+
size: number;
|
|
510
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
511
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
512
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
513
|
+
lastModified: number;
|
|
514
|
+
webkitRelativePath: string;
|
|
515
|
+
} | undefined;
|
|
516
|
+
refUid?: string | undefined;
|
|
406
517
|
}[];
|
|
407
518
|
cookies: {
|
|
408
519
|
value: string;
|
|
@@ -415,10 +526,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
415
526
|
required?: boolean | undefined;
|
|
416
527
|
description?: string | undefined;
|
|
417
528
|
enum?: string[] | undefined;
|
|
418
|
-
file?: any;
|
|
419
|
-
refUid?: string | undefined;
|
|
420
|
-
format?: string | undefined;
|
|
421
529
|
nullable?: boolean | undefined;
|
|
530
|
+
format?: string | undefined;
|
|
531
|
+
file?: {
|
|
532
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
533
|
+
type: string;
|
|
534
|
+
name: string;
|
|
535
|
+
size: number;
|
|
536
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
537
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
538
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
539
|
+
lastModified: number;
|
|
540
|
+
webkitRelativePath: string;
|
|
541
|
+
} | undefined;
|
|
542
|
+
refUid?: string | undefined;
|
|
422
543
|
}[];
|
|
423
544
|
};
|
|
424
545
|
auth: Record<string, any>;
|
|
@@ -521,6 +642,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
521
642
|
isReadOnly: boolean;
|
|
522
643
|
collectionUids: string[];
|
|
523
644
|
environmentUids: string[];
|
|
645
|
+
activeEnvironmentId: string;
|
|
524
646
|
cookieUids: string[];
|
|
525
647
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
526
648
|
hotKeyConfig?: {
|
|
@@ -588,11 +710,22 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
588
710
|
key: string;
|
|
589
711
|
value: string;
|
|
590
712
|
} | {
|
|
591
|
-
_scalarEnvId:
|
|
713
|
+
_scalarEnvId: string;
|
|
592
714
|
key: string;
|
|
593
715
|
value: unknown;
|
|
594
716
|
})[]>;
|
|
595
717
|
activeWorkspaceRequests: import("vue").ComputedRef<Request[]>;
|
|
718
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
719
|
+
uid: string;
|
|
720
|
+
name: string;
|
|
721
|
+
color: string;
|
|
722
|
+
raw: string;
|
|
723
|
+
parsed: {
|
|
724
|
+
value: string;
|
|
725
|
+
key: string;
|
|
726
|
+
}[];
|
|
727
|
+
isDefault?: boolean | undefined;
|
|
728
|
+
}>;
|
|
596
729
|
modalState: {
|
|
597
730
|
open: boolean;
|
|
598
731
|
show: () => void;
|
|
@@ -1259,7 +1392,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1259
1392
|
body: {
|
|
1260
1393
|
raw: {
|
|
1261
1394
|
value: string;
|
|
1262
|
-
encoding: "
|
|
1395
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1263
1396
|
};
|
|
1264
1397
|
formData: {
|
|
1265
1398
|
value: {
|
|
@@ -1273,15 +1406,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1273
1406
|
required?: boolean | undefined;
|
|
1274
1407
|
description?: string | undefined;
|
|
1275
1408
|
enum?: string[] | undefined;
|
|
1276
|
-
file?: any;
|
|
1277
|
-
refUid?: string | undefined;
|
|
1278
|
-
format?: string | undefined;
|
|
1279
1409
|
nullable?: boolean | undefined;
|
|
1410
|
+
format?: string | undefined;
|
|
1411
|
+
file?: {
|
|
1412
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1413
|
+
type: string;
|
|
1414
|
+
name: string;
|
|
1415
|
+
size: number;
|
|
1416
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1417
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1418
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1419
|
+
lastModified: number;
|
|
1420
|
+
webkitRelativePath: string;
|
|
1421
|
+
} | undefined;
|
|
1422
|
+
refUid?: string | undefined;
|
|
1280
1423
|
}[];
|
|
1281
1424
|
encoding: "form-data" | "urlencoded";
|
|
1282
1425
|
};
|
|
1283
1426
|
activeBody: "raw" | "formData" | "binary";
|
|
1284
|
-
binary?:
|
|
1427
|
+
binary?: {
|
|
1428
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1429
|
+
type: string;
|
|
1430
|
+
name: string;
|
|
1431
|
+
size: number;
|
|
1432
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1433
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1434
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1435
|
+
lastModified: number;
|
|
1436
|
+
webkitRelativePath: string;
|
|
1437
|
+
} | undefined;
|
|
1285
1438
|
};
|
|
1286
1439
|
parameters: {
|
|
1287
1440
|
path: {
|
|
@@ -1295,10 +1448,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1295
1448
|
required?: boolean | undefined;
|
|
1296
1449
|
description?: string | undefined;
|
|
1297
1450
|
enum?: string[] | undefined;
|
|
1298
|
-
file?: any;
|
|
1299
|
-
refUid?: string | undefined;
|
|
1300
|
-
format?: string | undefined;
|
|
1301
1451
|
nullable?: boolean | undefined;
|
|
1452
|
+
format?: string | undefined;
|
|
1453
|
+
file?: {
|
|
1454
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1455
|
+
type: string;
|
|
1456
|
+
name: string;
|
|
1457
|
+
size: number;
|
|
1458
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1459
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1460
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1461
|
+
lastModified: number;
|
|
1462
|
+
webkitRelativePath: string;
|
|
1463
|
+
} | undefined;
|
|
1464
|
+
refUid?: string | undefined;
|
|
1302
1465
|
}[];
|
|
1303
1466
|
query: {
|
|
1304
1467
|
value: string;
|
|
@@ -1311,10 +1474,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1311
1474
|
required?: boolean | undefined;
|
|
1312
1475
|
description?: string | undefined;
|
|
1313
1476
|
enum?: string[] | undefined;
|
|
1314
|
-
file?: any;
|
|
1315
|
-
refUid?: string | undefined;
|
|
1316
|
-
format?: string | undefined;
|
|
1317
1477
|
nullable?: boolean | undefined;
|
|
1478
|
+
format?: string | undefined;
|
|
1479
|
+
file?: {
|
|
1480
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1481
|
+
type: string;
|
|
1482
|
+
name: string;
|
|
1483
|
+
size: number;
|
|
1484
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1485
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1486
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1487
|
+
lastModified: number;
|
|
1488
|
+
webkitRelativePath: string;
|
|
1489
|
+
} | undefined;
|
|
1490
|
+
refUid?: string | undefined;
|
|
1318
1491
|
}[];
|
|
1319
1492
|
headers: {
|
|
1320
1493
|
value: string;
|
|
@@ -1327,10 +1500,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1327
1500
|
required?: boolean | undefined;
|
|
1328
1501
|
description?: string | undefined;
|
|
1329
1502
|
enum?: string[] | undefined;
|
|
1330
|
-
file?: any;
|
|
1331
|
-
refUid?: string | undefined;
|
|
1332
|
-
format?: string | undefined;
|
|
1333
1503
|
nullable?: boolean | undefined;
|
|
1504
|
+
format?: string | undefined;
|
|
1505
|
+
file?: {
|
|
1506
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1507
|
+
type: string;
|
|
1508
|
+
name: string;
|
|
1509
|
+
size: number;
|
|
1510
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1511
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1512
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1513
|
+
lastModified: number;
|
|
1514
|
+
webkitRelativePath: string;
|
|
1515
|
+
} | undefined;
|
|
1516
|
+
refUid?: string | undefined;
|
|
1334
1517
|
}[];
|
|
1335
1518
|
cookies: {
|
|
1336
1519
|
value: string;
|
|
@@ -1343,10 +1526,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1343
1526
|
required?: boolean | undefined;
|
|
1344
1527
|
description?: string | undefined;
|
|
1345
1528
|
enum?: string[] | undefined;
|
|
1346
|
-
file?: any;
|
|
1347
|
-
refUid?: string | undefined;
|
|
1348
|
-
format?: string | undefined;
|
|
1349
1529
|
nullable?: boolean | undefined;
|
|
1530
|
+
format?: string | undefined;
|
|
1531
|
+
file?: {
|
|
1532
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1533
|
+
type: string;
|
|
1534
|
+
name: string;
|
|
1535
|
+
size: number;
|
|
1536
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1537
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1538
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1539
|
+
lastModified: number;
|
|
1540
|
+
webkitRelativePath: string;
|
|
1541
|
+
} | undefined;
|
|
1542
|
+
refUid?: string | undefined;
|
|
1350
1543
|
}[];
|
|
1351
1544
|
};
|
|
1352
1545
|
auth: Record<string, any>;
|
|
@@ -1359,7 +1552,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1359
1552
|
body: {
|
|
1360
1553
|
raw: {
|
|
1361
1554
|
value: string;
|
|
1362
|
-
encoding: "
|
|
1555
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1363
1556
|
};
|
|
1364
1557
|
formData: {
|
|
1365
1558
|
value: {
|
|
@@ -1373,15 +1566,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1373
1566
|
required?: boolean | undefined;
|
|
1374
1567
|
description?: string | undefined;
|
|
1375
1568
|
enum?: string[] | undefined;
|
|
1376
|
-
file?: any;
|
|
1377
|
-
refUid?: string | undefined;
|
|
1378
|
-
format?: string | undefined;
|
|
1379
1569
|
nullable?: boolean | undefined;
|
|
1570
|
+
format?: string | undefined;
|
|
1571
|
+
file?: {
|
|
1572
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1573
|
+
type: string;
|
|
1574
|
+
name: string;
|
|
1575
|
+
size: number;
|
|
1576
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1577
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1578
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1579
|
+
lastModified: number;
|
|
1580
|
+
webkitRelativePath: string;
|
|
1581
|
+
} | undefined;
|
|
1582
|
+
refUid?: string | undefined;
|
|
1380
1583
|
}[];
|
|
1381
1584
|
encoding: "form-data" | "urlencoded";
|
|
1382
1585
|
};
|
|
1383
1586
|
activeBody: "raw" | "formData" | "binary";
|
|
1384
|
-
binary?:
|
|
1587
|
+
binary?: {
|
|
1588
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1589
|
+
type: string;
|
|
1590
|
+
name: string;
|
|
1591
|
+
size: number;
|
|
1592
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1593
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1594
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1595
|
+
lastModified: number;
|
|
1596
|
+
webkitRelativePath: string;
|
|
1597
|
+
} | undefined;
|
|
1385
1598
|
};
|
|
1386
1599
|
parameters: {
|
|
1387
1600
|
path: {
|
|
@@ -1395,10 +1608,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1395
1608
|
required?: boolean | undefined;
|
|
1396
1609
|
description?: string | undefined;
|
|
1397
1610
|
enum?: string[] | undefined;
|
|
1398
|
-
file?: any;
|
|
1399
|
-
refUid?: string | undefined;
|
|
1400
|
-
format?: string | undefined;
|
|
1401
1611
|
nullable?: boolean | undefined;
|
|
1612
|
+
format?: string | undefined;
|
|
1613
|
+
file?: {
|
|
1614
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1615
|
+
type: string;
|
|
1616
|
+
name: string;
|
|
1617
|
+
size: number;
|
|
1618
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1619
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1620
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1621
|
+
lastModified: number;
|
|
1622
|
+
webkitRelativePath: string;
|
|
1623
|
+
} | undefined;
|
|
1624
|
+
refUid?: string | undefined;
|
|
1402
1625
|
}[];
|
|
1403
1626
|
query: {
|
|
1404
1627
|
value: string;
|
|
@@ -1411,10 +1634,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1411
1634
|
required?: boolean | undefined;
|
|
1412
1635
|
description?: string | undefined;
|
|
1413
1636
|
enum?: string[] | undefined;
|
|
1414
|
-
file?: any;
|
|
1415
|
-
refUid?: string | undefined;
|
|
1416
|
-
format?: string | undefined;
|
|
1417
1637
|
nullable?: boolean | undefined;
|
|
1638
|
+
format?: string | undefined;
|
|
1639
|
+
file?: {
|
|
1640
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1641
|
+
type: string;
|
|
1642
|
+
name: string;
|
|
1643
|
+
size: number;
|
|
1644
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1645
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1646
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1647
|
+
lastModified: number;
|
|
1648
|
+
webkitRelativePath: string;
|
|
1649
|
+
} | undefined;
|
|
1650
|
+
refUid?: string | undefined;
|
|
1418
1651
|
}[];
|
|
1419
1652
|
headers: {
|
|
1420
1653
|
value: string;
|
|
@@ -1427,10 +1660,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1427
1660
|
required?: boolean | undefined;
|
|
1428
1661
|
description?: string | undefined;
|
|
1429
1662
|
enum?: string[] | undefined;
|
|
1430
|
-
file?: any;
|
|
1431
|
-
refUid?: string | undefined;
|
|
1432
|
-
format?: string | undefined;
|
|
1433
1663
|
nullable?: boolean | undefined;
|
|
1664
|
+
format?: string | undefined;
|
|
1665
|
+
file?: {
|
|
1666
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1667
|
+
type: string;
|
|
1668
|
+
name: string;
|
|
1669
|
+
size: number;
|
|
1670
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1671
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1672
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1673
|
+
lastModified: number;
|
|
1674
|
+
webkitRelativePath: string;
|
|
1675
|
+
} | undefined;
|
|
1676
|
+
refUid?: string | undefined;
|
|
1434
1677
|
}[];
|
|
1435
1678
|
cookies: {
|
|
1436
1679
|
value: string;
|
|
@@ -1443,10 +1686,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1443
1686
|
required?: boolean | undefined;
|
|
1444
1687
|
description?: string | undefined;
|
|
1445
1688
|
enum?: string[] | undefined;
|
|
1446
|
-
file?: any;
|
|
1447
|
-
refUid?: string | undefined;
|
|
1448
|
-
format?: string | undefined;
|
|
1449
1689
|
nullable?: boolean | undefined;
|
|
1690
|
+
format?: string | undefined;
|
|
1691
|
+
file?: {
|
|
1692
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1693
|
+
type: string;
|
|
1694
|
+
name: string;
|
|
1695
|
+
size: number;
|
|
1696
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1697
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1698
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1699
|
+
lastModified: number;
|
|
1700
|
+
webkitRelativePath: string;
|
|
1701
|
+
} | undefined;
|
|
1702
|
+
refUid?: string | undefined;
|
|
1450
1703
|
}[];
|
|
1451
1704
|
};
|
|
1452
1705
|
auth: Record<string, any>;
|
|
@@ -1460,7 +1713,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1460
1713
|
body: {
|
|
1461
1714
|
raw: {
|
|
1462
1715
|
value: string;
|
|
1463
|
-
encoding: "
|
|
1716
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1464
1717
|
};
|
|
1465
1718
|
formData: {
|
|
1466
1719
|
value: {
|
|
@@ -1474,15 +1727,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1474
1727
|
required?: boolean | undefined;
|
|
1475
1728
|
description?: string | undefined;
|
|
1476
1729
|
enum?: string[] | undefined;
|
|
1477
|
-
file?: any;
|
|
1478
|
-
refUid?: string | undefined;
|
|
1479
|
-
format?: string | undefined;
|
|
1480
1730
|
nullable?: boolean | undefined;
|
|
1731
|
+
format?: string | undefined;
|
|
1732
|
+
file?: {
|
|
1733
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1734
|
+
type: string;
|
|
1735
|
+
name: string;
|
|
1736
|
+
size: number;
|
|
1737
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1738
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1739
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1740
|
+
lastModified: number;
|
|
1741
|
+
webkitRelativePath: string;
|
|
1742
|
+
} | undefined;
|
|
1743
|
+
refUid?: string | undefined;
|
|
1481
1744
|
}[];
|
|
1482
1745
|
encoding: "form-data" | "urlencoded";
|
|
1483
1746
|
};
|
|
1484
1747
|
activeBody: "raw" | "formData" | "binary";
|
|
1485
|
-
binary?:
|
|
1748
|
+
binary?: {
|
|
1749
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1750
|
+
type: string;
|
|
1751
|
+
name: string;
|
|
1752
|
+
size: number;
|
|
1753
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1754
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1755
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1756
|
+
lastModified: number;
|
|
1757
|
+
webkitRelativePath: string;
|
|
1758
|
+
} | undefined;
|
|
1486
1759
|
};
|
|
1487
1760
|
parameters: {
|
|
1488
1761
|
path: {
|
|
@@ -1496,10 +1769,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1496
1769
|
required?: boolean | undefined;
|
|
1497
1770
|
description?: string | undefined;
|
|
1498
1771
|
enum?: string[] | undefined;
|
|
1499
|
-
file?: any;
|
|
1500
|
-
refUid?: string | undefined;
|
|
1501
|
-
format?: string | undefined;
|
|
1502
1772
|
nullable?: boolean | undefined;
|
|
1773
|
+
format?: string | undefined;
|
|
1774
|
+
file?: {
|
|
1775
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1776
|
+
type: string;
|
|
1777
|
+
name: string;
|
|
1778
|
+
size: number;
|
|
1779
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1780
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1781
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1782
|
+
lastModified: number;
|
|
1783
|
+
webkitRelativePath: string;
|
|
1784
|
+
} | undefined;
|
|
1785
|
+
refUid?: string | undefined;
|
|
1503
1786
|
}[];
|
|
1504
1787
|
query: {
|
|
1505
1788
|
value: string;
|
|
@@ -1512,10 +1795,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1512
1795
|
required?: boolean | undefined;
|
|
1513
1796
|
description?: string | undefined;
|
|
1514
1797
|
enum?: string[] | undefined;
|
|
1515
|
-
file?: any;
|
|
1516
|
-
refUid?: string | undefined;
|
|
1517
|
-
format?: string | undefined;
|
|
1518
1798
|
nullable?: boolean | undefined;
|
|
1799
|
+
format?: string | undefined;
|
|
1800
|
+
file?: {
|
|
1801
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1802
|
+
type: string;
|
|
1803
|
+
name: string;
|
|
1804
|
+
size: number;
|
|
1805
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1806
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1807
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1808
|
+
lastModified: number;
|
|
1809
|
+
webkitRelativePath: string;
|
|
1810
|
+
} | undefined;
|
|
1811
|
+
refUid?: string | undefined;
|
|
1519
1812
|
}[];
|
|
1520
1813
|
headers: {
|
|
1521
1814
|
value: string;
|
|
@@ -1528,10 +1821,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1528
1821
|
required?: boolean | undefined;
|
|
1529
1822
|
description?: string | undefined;
|
|
1530
1823
|
enum?: string[] | undefined;
|
|
1531
|
-
file?: any;
|
|
1532
|
-
refUid?: string | undefined;
|
|
1533
|
-
format?: string | undefined;
|
|
1534
1824
|
nullable?: boolean | undefined;
|
|
1825
|
+
format?: string | undefined;
|
|
1826
|
+
file?: {
|
|
1827
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1828
|
+
type: string;
|
|
1829
|
+
name: string;
|
|
1830
|
+
size: number;
|
|
1831
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1832
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1833
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1834
|
+
lastModified: number;
|
|
1835
|
+
webkitRelativePath: string;
|
|
1836
|
+
} | undefined;
|
|
1837
|
+
refUid?: string | undefined;
|
|
1535
1838
|
}[];
|
|
1536
1839
|
cookies: {
|
|
1537
1840
|
value: string;
|
|
@@ -1544,15 +1847,25 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1544
1847
|
required?: boolean | undefined;
|
|
1545
1848
|
description?: string | undefined;
|
|
1546
1849
|
enum?: string[] | undefined;
|
|
1547
|
-
file?: any;
|
|
1548
|
-
refUid?: string | undefined;
|
|
1549
|
-
format?: string | undefined;
|
|
1550
1850
|
nullable?: boolean | undefined;
|
|
1851
|
+
format?: string | undefined;
|
|
1852
|
+
file?: {
|
|
1853
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1854
|
+
type: string;
|
|
1855
|
+
name: string;
|
|
1856
|
+
size: number;
|
|
1857
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1858
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1859
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1860
|
+
lastModified: number;
|
|
1861
|
+
webkitRelativePath: string;
|
|
1862
|
+
} | undefined;
|
|
1863
|
+
refUid?: string | undefined;
|
|
1551
1864
|
}[];
|
|
1552
1865
|
};
|
|
1553
1866
|
auth: Record<string, any>;
|
|
1554
1867
|
}) => void;
|
|
1555
|
-
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}.
|
|
1868
|
+
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" ? {
|
|
1556
1869
|
uid: string;
|
|
1557
1870
|
name: string;
|
|
1558
1871
|
url: string;
|
|
@@ -1560,7 +1873,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1560
1873
|
body: {
|
|
1561
1874
|
raw: {
|
|
1562
1875
|
value: string;
|
|
1563
|
-
encoding: "
|
|
1876
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1564
1877
|
};
|
|
1565
1878
|
formData: {
|
|
1566
1879
|
value: {
|
|
@@ -1574,15 +1887,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1574
1887
|
required?: boolean | undefined;
|
|
1575
1888
|
description?: string | undefined;
|
|
1576
1889
|
enum?: string[] | undefined;
|
|
1577
|
-
file?: any;
|
|
1578
|
-
refUid?: string | undefined;
|
|
1579
|
-
format?: string | undefined;
|
|
1580
1890
|
nullable?: boolean | undefined;
|
|
1891
|
+
format?: string | undefined;
|
|
1892
|
+
file?: {
|
|
1893
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1894
|
+
type: string;
|
|
1895
|
+
name: string;
|
|
1896
|
+
size: number;
|
|
1897
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1898
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1899
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1900
|
+
lastModified: number;
|
|
1901
|
+
webkitRelativePath: string;
|
|
1902
|
+
} | undefined;
|
|
1903
|
+
refUid?: string | undefined;
|
|
1581
1904
|
}[];
|
|
1582
1905
|
encoding: "form-data" | "urlencoded";
|
|
1583
1906
|
};
|
|
1584
1907
|
activeBody: "raw" | "formData" | "binary";
|
|
1585
|
-
binary?:
|
|
1908
|
+
binary?: {
|
|
1909
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1910
|
+
type: string;
|
|
1911
|
+
name: string;
|
|
1912
|
+
size: number;
|
|
1913
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1914
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1915
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1916
|
+
lastModified: number;
|
|
1917
|
+
webkitRelativePath: string;
|
|
1918
|
+
} | undefined;
|
|
1586
1919
|
};
|
|
1587
1920
|
parameters: {
|
|
1588
1921
|
path: {
|
|
@@ -1596,10 +1929,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1596
1929
|
required?: boolean | undefined;
|
|
1597
1930
|
description?: string | undefined;
|
|
1598
1931
|
enum?: string[] | undefined;
|
|
1599
|
-
file?: any;
|
|
1600
|
-
refUid?: string | undefined;
|
|
1601
|
-
format?: string | undefined;
|
|
1602
1932
|
nullable?: boolean | undefined;
|
|
1933
|
+
format?: string | undefined;
|
|
1934
|
+
file?: {
|
|
1935
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1936
|
+
type: string;
|
|
1937
|
+
name: string;
|
|
1938
|
+
size: number;
|
|
1939
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1940
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1941
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1942
|
+
lastModified: number;
|
|
1943
|
+
webkitRelativePath: string;
|
|
1944
|
+
} | undefined;
|
|
1945
|
+
refUid?: string | undefined;
|
|
1603
1946
|
}[];
|
|
1604
1947
|
query: {
|
|
1605
1948
|
value: string;
|
|
@@ -1612,10 +1955,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1612
1955
|
required?: boolean | undefined;
|
|
1613
1956
|
description?: string | undefined;
|
|
1614
1957
|
enum?: string[] | undefined;
|
|
1615
|
-
file?: any;
|
|
1616
|
-
refUid?: string | undefined;
|
|
1617
|
-
format?: string | undefined;
|
|
1618
1958
|
nullable?: boolean | undefined;
|
|
1959
|
+
format?: string | undefined;
|
|
1960
|
+
file?: {
|
|
1961
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1962
|
+
type: string;
|
|
1963
|
+
name: string;
|
|
1964
|
+
size: number;
|
|
1965
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1966
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1967
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1968
|
+
lastModified: number;
|
|
1969
|
+
webkitRelativePath: string;
|
|
1970
|
+
} | undefined;
|
|
1971
|
+
refUid?: string | undefined;
|
|
1619
1972
|
}[];
|
|
1620
1973
|
headers: {
|
|
1621
1974
|
value: string;
|
|
@@ -1628,10 +1981,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1628
1981
|
required?: boolean | undefined;
|
|
1629
1982
|
description?: string | undefined;
|
|
1630
1983
|
enum?: string[] | undefined;
|
|
1631
|
-
file?: any;
|
|
1632
|
-
refUid?: string | undefined;
|
|
1633
|
-
format?: string | undefined;
|
|
1634
1984
|
nullable?: boolean | undefined;
|
|
1985
|
+
format?: string | undefined;
|
|
1986
|
+
file?: {
|
|
1987
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
1988
|
+
type: string;
|
|
1989
|
+
name: string;
|
|
1990
|
+
size: number;
|
|
1991
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
1992
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
1993
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
1994
|
+
lastModified: number;
|
|
1995
|
+
webkitRelativePath: string;
|
|
1996
|
+
} | undefined;
|
|
1997
|
+
refUid?: string | undefined;
|
|
1635
1998
|
}[];
|
|
1636
1999
|
cookies: {
|
|
1637
2000
|
value: string;
|
|
@@ -1644,10 +2007,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1644
2007
|
required?: boolean | undefined;
|
|
1645
2008
|
description?: string | undefined;
|
|
1646
2009
|
enum?: string[] | undefined;
|
|
1647
|
-
file?: any;
|
|
1648
|
-
refUid?: string | undefined;
|
|
1649
|
-
format?: string | undefined;
|
|
1650
2010
|
nullable?: boolean | undefined;
|
|
2011
|
+
format?: string | undefined;
|
|
2012
|
+
file?: {
|
|
2013
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2014
|
+
type: string;
|
|
2015
|
+
name: string;
|
|
2016
|
+
size: number;
|
|
2017
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2018
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2019
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2020
|
+
lastModified: number;
|
|
2021
|
+
webkitRelativePath: string;
|
|
2022
|
+
} | undefined;
|
|
2023
|
+
refUid?: string | undefined;
|
|
1651
2024
|
}[];
|
|
1652
2025
|
};
|
|
1653
2026
|
auth: Record<string, any>;
|
|
@@ -1659,7 +2032,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1659
2032
|
body: {
|
|
1660
2033
|
raw: {
|
|
1661
2034
|
value: string;
|
|
1662
|
-
encoding: "
|
|
2035
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1663
2036
|
};
|
|
1664
2037
|
formData: {
|
|
1665
2038
|
value: {
|
|
@@ -1673,15 +2046,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1673
2046
|
required?: boolean | undefined;
|
|
1674
2047
|
description?: string | undefined;
|
|
1675
2048
|
enum?: string[] | undefined;
|
|
1676
|
-
file?: any;
|
|
1677
|
-
refUid?: string | undefined;
|
|
1678
|
-
format?: string | undefined;
|
|
1679
2049
|
nullable?: boolean | undefined;
|
|
2050
|
+
format?: string | undefined;
|
|
2051
|
+
file?: {
|
|
2052
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2053
|
+
type: string;
|
|
2054
|
+
name: string;
|
|
2055
|
+
size: number;
|
|
2056
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2057
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2058
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2059
|
+
lastModified: number;
|
|
2060
|
+
webkitRelativePath: string;
|
|
2061
|
+
} | undefined;
|
|
2062
|
+
refUid?: string | undefined;
|
|
1680
2063
|
}[];
|
|
1681
2064
|
encoding: "form-data" | "urlencoded";
|
|
1682
2065
|
};
|
|
1683
2066
|
activeBody: "raw" | "formData" | "binary";
|
|
1684
|
-
binary?:
|
|
2067
|
+
binary?: {
|
|
2068
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2069
|
+
type: string;
|
|
2070
|
+
name: string;
|
|
2071
|
+
size: number;
|
|
2072
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2073
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2074
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2075
|
+
lastModified: number;
|
|
2076
|
+
webkitRelativePath: string;
|
|
2077
|
+
} | undefined;
|
|
1685
2078
|
};
|
|
1686
2079
|
parameters: {
|
|
1687
2080
|
path: {
|
|
@@ -1695,10 +2088,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1695
2088
|
required?: boolean | undefined;
|
|
1696
2089
|
description?: string | undefined;
|
|
1697
2090
|
enum?: string[] | undefined;
|
|
1698
|
-
file?: any;
|
|
1699
|
-
refUid?: string | undefined;
|
|
1700
|
-
format?: string | undefined;
|
|
1701
2091
|
nullable?: boolean | undefined;
|
|
2092
|
+
format?: string | undefined;
|
|
2093
|
+
file?: {
|
|
2094
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2095
|
+
type: string;
|
|
2096
|
+
name: string;
|
|
2097
|
+
size: number;
|
|
2098
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2099
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2100
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2101
|
+
lastModified: number;
|
|
2102
|
+
webkitRelativePath: string;
|
|
2103
|
+
} | undefined;
|
|
2104
|
+
refUid?: string | undefined;
|
|
1702
2105
|
}[];
|
|
1703
2106
|
query: {
|
|
1704
2107
|
value: string;
|
|
@@ -1711,10 +2114,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1711
2114
|
required?: boolean | undefined;
|
|
1712
2115
|
description?: string | undefined;
|
|
1713
2116
|
enum?: string[] | undefined;
|
|
1714
|
-
file?: any;
|
|
1715
|
-
refUid?: string | undefined;
|
|
1716
|
-
format?: string | undefined;
|
|
1717
2117
|
nullable?: boolean | undefined;
|
|
2118
|
+
format?: string | undefined;
|
|
2119
|
+
file?: {
|
|
2120
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2121
|
+
type: string;
|
|
2122
|
+
name: string;
|
|
2123
|
+
size: number;
|
|
2124
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2125
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2126
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2127
|
+
lastModified: number;
|
|
2128
|
+
webkitRelativePath: string;
|
|
2129
|
+
} | undefined;
|
|
2130
|
+
refUid?: string | undefined;
|
|
1718
2131
|
}[];
|
|
1719
2132
|
headers: {
|
|
1720
2133
|
value: string;
|
|
@@ -1727,10 +2140,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1727
2140
|
required?: boolean | undefined;
|
|
1728
2141
|
description?: string | undefined;
|
|
1729
2142
|
enum?: string[] | undefined;
|
|
1730
|
-
file?: any;
|
|
1731
|
-
refUid?: string | undefined;
|
|
1732
|
-
format?: string | undefined;
|
|
1733
2143
|
nullable?: boolean | undefined;
|
|
2144
|
+
format?: string | undefined;
|
|
2145
|
+
file?: {
|
|
2146
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2147
|
+
type: string;
|
|
2148
|
+
name: string;
|
|
2149
|
+
size: number;
|
|
2150
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2151
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2152
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2153
|
+
lastModified: number;
|
|
2154
|
+
webkitRelativePath: string;
|
|
2155
|
+
} | undefined;
|
|
2156
|
+
refUid?: string | undefined;
|
|
1734
2157
|
}[];
|
|
1735
2158
|
cookies: {
|
|
1736
2159
|
value: string;
|
|
@@ -1743,10 +2166,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1743
2166
|
required?: boolean | undefined;
|
|
1744
2167
|
description?: string | undefined;
|
|
1745
2168
|
enum?: string[] | undefined;
|
|
1746
|
-
file?: any;
|
|
1747
|
-
refUid?: string | undefined;
|
|
1748
|
-
format?: string | undefined;
|
|
1749
2169
|
nullable?: boolean | undefined;
|
|
2170
|
+
format?: string | undefined;
|
|
2171
|
+
file?: {
|
|
2172
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2173
|
+
type: string;
|
|
2174
|
+
name: string;
|
|
2175
|
+
size: number;
|
|
2176
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2177
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2178
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2179
|
+
lastModified: number;
|
|
2180
|
+
webkitRelativePath: string;
|
|
2181
|
+
} | undefined;
|
|
2182
|
+
refUid?: string | undefined;
|
|
1750
2183
|
}[];
|
|
1751
2184
|
};
|
|
1752
2185
|
auth: Record<string, any>;
|
|
@@ -1758,7 +2191,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1758
2191
|
body: {
|
|
1759
2192
|
raw: {
|
|
1760
2193
|
value: string;
|
|
1761
|
-
encoding: "
|
|
2194
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1762
2195
|
};
|
|
1763
2196
|
formData: {
|
|
1764
2197
|
value: {
|
|
@@ -1772,15 +2205,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1772
2205
|
required?: boolean | undefined;
|
|
1773
2206
|
description?: string | undefined;
|
|
1774
2207
|
enum?: string[] | undefined;
|
|
1775
|
-
file?: any;
|
|
1776
|
-
refUid?: string | undefined;
|
|
1777
|
-
format?: string | undefined;
|
|
1778
2208
|
nullable?: boolean | undefined;
|
|
2209
|
+
format?: string | undefined;
|
|
2210
|
+
file?: {
|
|
2211
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2212
|
+
type: string;
|
|
2213
|
+
name: string;
|
|
2214
|
+
size: number;
|
|
2215
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2216
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2217
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2218
|
+
lastModified: number;
|
|
2219
|
+
webkitRelativePath: string;
|
|
2220
|
+
} | undefined;
|
|
2221
|
+
refUid?: string | undefined;
|
|
1779
2222
|
}[];
|
|
1780
2223
|
encoding: "form-data" | "urlencoded";
|
|
1781
2224
|
};
|
|
1782
2225
|
activeBody: "raw" | "formData" | "binary";
|
|
1783
|
-
binary?:
|
|
2226
|
+
binary?: {
|
|
2227
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2228
|
+
type: string;
|
|
2229
|
+
name: string;
|
|
2230
|
+
size: number;
|
|
2231
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2232
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2233
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2234
|
+
lastModified: number;
|
|
2235
|
+
webkitRelativePath: string;
|
|
2236
|
+
} | undefined;
|
|
1784
2237
|
};
|
|
1785
2238
|
parameters: {
|
|
1786
2239
|
path: {
|
|
@@ -1794,10 +2247,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1794
2247
|
required?: boolean | undefined;
|
|
1795
2248
|
description?: string | undefined;
|
|
1796
2249
|
enum?: string[] | undefined;
|
|
1797
|
-
file?: any;
|
|
1798
|
-
refUid?: string | undefined;
|
|
1799
|
-
format?: string | undefined;
|
|
1800
2250
|
nullable?: boolean | undefined;
|
|
2251
|
+
format?: string | undefined;
|
|
2252
|
+
file?: {
|
|
2253
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2254
|
+
type: string;
|
|
2255
|
+
name: string;
|
|
2256
|
+
size: number;
|
|
2257
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2258
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2259
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2260
|
+
lastModified: number;
|
|
2261
|
+
webkitRelativePath: string;
|
|
2262
|
+
} | undefined;
|
|
2263
|
+
refUid?: string | undefined;
|
|
1801
2264
|
}[];
|
|
1802
2265
|
query: {
|
|
1803
2266
|
value: string;
|
|
@@ -1810,10 +2273,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1810
2273
|
required?: boolean | undefined;
|
|
1811
2274
|
description?: string | undefined;
|
|
1812
2275
|
enum?: string[] | undefined;
|
|
1813
|
-
file?: any;
|
|
1814
|
-
refUid?: string | undefined;
|
|
1815
|
-
format?: string | undefined;
|
|
1816
2276
|
nullable?: boolean | undefined;
|
|
2277
|
+
format?: string | undefined;
|
|
2278
|
+
file?: {
|
|
2279
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2280
|
+
type: string;
|
|
2281
|
+
name: string;
|
|
2282
|
+
size: number;
|
|
2283
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2284
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2285
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2286
|
+
lastModified: number;
|
|
2287
|
+
webkitRelativePath: string;
|
|
2288
|
+
} | undefined;
|
|
2289
|
+
refUid?: string | undefined;
|
|
1817
2290
|
}[];
|
|
1818
2291
|
headers: {
|
|
1819
2292
|
value: string;
|
|
@@ -1826,10 +2299,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1826
2299
|
required?: boolean | undefined;
|
|
1827
2300
|
description?: string | undefined;
|
|
1828
2301
|
enum?: string[] | undefined;
|
|
1829
|
-
file?: any;
|
|
1830
|
-
refUid?: string | undefined;
|
|
1831
|
-
format?: string | undefined;
|
|
1832
2302
|
nullable?: boolean | undefined;
|
|
2303
|
+
format?: string | undefined;
|
|
2304
|
+
file?: {
|
|
2305
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2306
|
+
type: string;
|
|
2307
|
+
name: string;
|
|
2308
|
+
size: number;
|
|
2309
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2310
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2311
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2312
|
+
lastModified: number;
|
|
2313
|
+
webkitRelativePath: string;
|
|
2314
|
+
} | undefined;
|
|
2315
|
+
refUid?: string | undefined;
|
|
1833
2316
|
}[];
|
|
1834
2317
|
cookies: {
|
|
1835
2318
|
value: string;
|
|
@@ -1842,15 +2325,25 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1842
2325
|
required?: boolean | undefined;
|
|
1843
2326
|
description?: string | undefined;
|
|
1844
2327
|
enum?: string[] | undefined;
|
|
1845
|
-
file?: any;
|
|
1846
|
-
refUid?: string | undefined;
|
|
1847
|
-
format?: string | undefined;
|
|
1848
2328
|
nullable?: boolean | undefined;
|
|
2329
|
+
format?: string | undefined;
|
|
2330
|
+
file?: {
|
|
2331
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2332
|
+
type: string;
|
|
2333
|
+
name: string;
|
|
2334
|
+
size: number;
|
|
2335
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2336
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2337
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2338
|
+
lastModified: number;
|
|
2339
|
+
webkitRelativePath: string;
|
|
2340
|
+
} | undefined;
|
|
2341
|
+
refUid?: string | undefined;
|
|
1849
2342
|
}[];
|
|
1850
2343
|
};
|
|
1851
2344
|
auth: Record<string, any>;
|
|
1852
2345
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1853
|
-
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}.
|
|
2346
|
+
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" ? {
|
|
1854
2347
|
uid: string;
|
|
1855
2348
|
name: string;
|
|
1856
2349
|
url: string;
|
|
@@ -1858,7 +2351,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1858
2351
|
body: {
|
|
1859
2352
|
raw: {
|
|
1860
2353
|
value: string;
|
|
1861
|
-
encoding: "
|
|
2354
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1862
2355
|
};
|
|
1863
2356
|
formData: {
|
|
1864
2357
|
value: {
|
|
@@ -1872,15 +2365,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1872
2365
|
required?: boolean | undefined;
|
|
1873
2366
|
description?: string | undefined;
|
|
1874
2367
|
enum?: string[] | undefined;
|
|
1875
|
-
file?: any;
|
|
1876
|
-
refUid?: string | undefined;
|
|
1877
|
-
format?: string | undefined;
|
|
1878
2368
|
nullable?: boolean | undefined;
|
|
2369
|
+
format?: string | undefined;
|
|
2370
|
+
file?: {
|
|
2371
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2372
|
+
type: string;
|
|
2373
|
+
name: string;
|
|
2374
|
+
size: number;
|
|
2375
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2376
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2377
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2378
|
+
lastModified: number;
|
|
2379
|
+
webkitRelativePath: string;
|
|
2380
|
+
} | undefined;
|
|
2381
|
+
refUid?: string | undefined;
|
|
1879
2382
|
}[];
|
|
1880
2383
|
encoding: "form-data" | "urlencoded";
|
|
1881
2384
|
};
|
|
1882
2385
|
activeBody: "raw" | "formData" | "binary";
|
|
1883
|
-
binary?:
|
|
2386
|
+
binary?: {
|
|
2387
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2388
|
+
type: string;
|
|
2389
|
+
name: string;
|
|
2390
|
+
size: number;
|
|
2391
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2392
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2393
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2394
|
+
lastModified: number;
|
|
2395
|
+
webkitRelativePath: string;
|
|
2396
|
+
} | undefined;
|
|
1884
2397
|
};
|
|
1885
2398
|
parameters: {
|
|
1886
2399
|
path: {
|
|
@@ -1894,10 +2407,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1894
2407
|
required?: boolean | undefined;
|
|
1895
2408
|
description?: string | undefined;
|
|
1896
2409
|
enum?: string[] | undefined;
|
|
1897
|
-
file?: any;
|
|
1898
|
-
refUid?: string | undefined;
|
|
1899
|
-
format?: string | undefined;
|
|
1900
2410
|
nullable?: boolean | undefined;
|
|
2411
|
+
format?: string | undefined;
|
|
2412
|
+
file?: {
|
|
2413
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2414
|
+
type: string;
|
|
2415
|
+
name: string;
|
|
2416
|
+
size: number;
|
|
2417
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2418
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2419
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2420
|
+
lastModified: number;
|
|
2421
|
+
webkitRelativePath: string;
|
|
2422
|
+
} | undefined;
|
|
2423
|
+
refUid?: string | undefined;
|
|
1901
2424
|
}[];
|
|
1902
2425
|
query: {
|
|
1903
2426
|
value: string;
|
|
@@ -1910,10 +2433,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1910
2433
|
required?: boolean | undefined;
|
|
1911
2434
|
description?: string | undefined;
|
|
1912
2435
|
enum?: string[] | undefined;
|
|
1913
|
-
file?: any;
|
|
1914
|
-
refUid?: string | undefined;
|
|
1915
|
-
format?: string | undefined;
|
|
1916
2436
|
nullable?: boolean | undefined;
|
|
2437
|
+
format?: string | undefined;
|
|
2438
|
+
file?: {
|
|
2439
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2440
|
+
type: string;
|
|
2441
|
+
name: string;
|
|
2442
|
+
size: number;
|
|
2443
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2444
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2445
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2446
|
+
lastModified: number;
|
|
2447
|
+
webkitRelativePath: string;
|
|
2448
|
+
} | undefined;
|
|
2449
|
+
refUid?: string | undefined;
|
|
1917
2450
|
}[];
|
|
1918
2451
|
headers: {
|
|
1919
2452
|
value: string;
|
|
@@ -1926,10 +2459,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1926
2459
|
required?: boolean | undefined;
|
|
1927
2460
|
description?: string | undefined;
|
|
1928
2461
|
enum?: string[] | undefined;
|
|
1929
|
-
file?: any;
|
|
1930
|
-
refUid?: string | undefined;
|
|
1931
|
-
format?: string | undefined;
|
|
1932
2462
|
nullable?: boolean | undefined;
|
|
2463
|
+
format?: string | undefined;
|
|
2464
|
+
file?: {
|
|
2465
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2466
|
+
type: string;
|
|
2467
|
+
name: string;
|
|
2468
|
+
size: number;
|
|
2469
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2470
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2471
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2472
|
+
lastModified: number;
|
|
2473
|
+
webkitRelativePath: string;
|
|
2474
|
+
} | undefined;
|
|
2475
|
+
refUid?: string | undefined;
|
|
1933
2476
|
}[];
|
|
1934
2477
|
cookies: {
|
|
1935
2478
|
value: string;
|
|
@@ -1942,10 +2485,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1942
2485
|
required?: boolean | undefined;
|
|
1943
2486
|
description?: string | undefined;
|
|
1944
2487
|
enum?: string[] | undefined;
|
|
1945
|
-
file?: any;
|
|
1946
|
-
refUid?: string | undefined;
|
|
1947
|
-
format?: string | undefined;
|
|
1948
2488
|
nullable?: boolean | undefined;
|
|
2489
|
+
format?: string | undefined;
|
|
2490
|
+
file?: {
|
|
2491
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2492
|
+
type: string;
|
|
2493
|
+
name: string;
|
|
2494
|
+
size: number;
|
|
2495
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2496
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2497
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2498
|
+
lastModified: number;
|
|
2499
|
+
webkitRelativePath: string;
|
|
2500
|
+
} | undefined;
|
|
2501
|
+
refUid?: string | undefined;
|
|
1949
2502
|
}[];
|
|
1950
2503
|
};
|
|
1951
2504
|
auth: Record<string, any>;
|
|
@@ -1957,7 +2510,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1957
2510
|
body: {
|
|
1958
2511
|
raw: {
|
|
1959
2512
|
value: string;
|
|
1960
|
-
encoding: "
|
|
2513
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
1961
2514
|
};
|
|
1962
2515
|
formData: {
|
|
1963
2516
|
value: {
|
|
@@ -1971,15 +2524,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1971
2524
|
required?: boolean | undefined;
|
|
1972
2525
|
description?: string | undefined;
|
|
1973
2526
|
enum?: string[] | undefined;
|
|
1974
|
-
file?: any;
|
|
1975
|
-
refUid?: string | undefined;
|
|
1976
|
-
format?: string | undefined;
|
|
1977
2527
|
nullable?: boolean | undefined;
|
|
2528
|
+
format?: string | undefined;
|
|
2529
|
+
file?: {
|
|
2530
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2531
|
+
type: string;
|
|
2532
|
+
name: string;
|
|
2533
|
+
size: number;
|
|
2534
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2535
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2536
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2537
|
+
lastModified: number;
|
|
2538
|
+
webkitRelativePath: string;
|
|
2539
|
+
} | undefined;
|
|
2540
|
+
refUid?: string | undefined;
|
|
1978
2541
|
}[];
|
|
1979
2542
|
encoding: "form-data" | "urlencoded";
|
|
1980
2543
|
};
|
|
1981
2544
|
activeBody: "raw" | "formData" | "binary";
|
|
1982
|
-
binary?:
|
|
2545
|
+
binary?: {
|
|
2546
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2547
|
+
type: string;
|
|
2548
|
+
name: string;
|
|
2549
|
+
size: number;
|
|
2550
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2551
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2552
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2553
|
+
lastModified: number;
|
|
2554
|
+
webkitRelativePath: string;
|
|
2555
|
+
} | undefined;
|
|
1983
2556
|
};
|
|
1984
2557
|
parameters: {
|
|
1985
2558
|
path: {
|
|
@@ -1993,10 +2566,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1993
2566
|
required?: boolean | undefined;
|
|
1994
2567
|
description?: string | undefined;
|
|
1995
2568
|
enum?: string[] | undefined;
|
|
1996
|
-
file?: any;
|
|
1997
|
-
refUid?: string | undefined;
|
|
1998
|
-
format?: string | undefined;
|
|
1999
2569
|
nullable?: boolean | undefined;
|
|
2570
|
+
format?: string | undefined;
|
|
2571
|
+
file?: {
|
|
2572
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2573
|
+
type: string;
|
|
2574
|
+
name: string;
|
|
2575
|
+
size: number;
|
|
2576
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2577
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2578
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2579
|
+
lastModified: number;
|
|
2580
|
+
webkitRelativePath: string;
|
|
2581
|
+
} | undefined;
|
|
2582
|
+
refUid?: string | undefined;
|
|
2000
2583
|
}[];
|
|
2001
2584
|
query: {
|
|
2002
2585
|
value: string;
|
|
@@ -2009,10 +2592,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2009
2592
|
required?: boolean | undefined;
|
|
2010
2593
|
description?: string | undefined;
|
|
2011
2594
|
enum?: string[] | undefined;
|
|
2012
|
-
file?: any;
|
|
2013
|
-
refUid?: string | undefined;
|
|
2014
|
-
format?: string | undefined;
|
|
2015
2595
|
nullable?: boolean | undefined;
|
|
2596
|
+
format?: string | undefined;
|
|
2597
|
+
file?: {
|
|
2598
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2599
|
+
type: string;
|
|
2600
|
+
name: string;
|
|
2601
|
+
size: number;
|
|
2602
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2603
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2604
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2605
|
+
lastModified: number;
|
|
2606
|
+
webkitRelativePath: string;
|
|
2607
|
+
} | undefined;
|
|
2608
|
+
refUid?: string | undefined;
|
|
2016
2609
|
}[];
|
|
2017
2610
|
headers: {
|
|
2018
2611
|
value: string;
|
|
@@ -2025,10 +2618,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2025
2618
|
required?: boolean | undefined;
|
|
2026
2619
|
description?: string | undefined;
|
|
2027
2620
|
enum?: string[] | undefined;
|
|
2028
|
-
file?: any;
|
|
2029
|
-
refUid?: string | undefined;
|
|
2030
|
-
format?: string | undefined;
|
|
2031
2621
|
nullable?: boolean | undefined;
|
|
2622
|
+
format?: string | undefined;
|
|
2623
|
+
file?: {
|
|
2624
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2625
|
+
type: string;
|
|
2626
|
+
name: string;
|
|
2627
|
+
size: number;
|
|
2628
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2629
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2630
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2631
|
+
lastModified: number;
|
|
2632
|
+
webkitRelativePath: string;
|
|
2633
|
+
} | undefined;
|
|
2634
|
+
refUid?: string | undefined;
|
|
2032
2635
|
}[];
|
|
2033
2636
|
cookies: {
|
|
2034
2637
|
value: string;
|
|
@@ -2041,10 +2644,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2041
2644
|
required?: boolean | undefined;
|
|
2042
2645
|
description?: string | undefined;
|
|
2043
2646
|
enum?: string[] | undefined;
|
|
2044
|
-
file?: any;
|
|
2045
|
-
refUid?: string | undefined;
|
|
2046
|
-
format?: string | undefined;
|
|
2047
2647
|
nullable?: boolean | undefined;
|
|
2648
|
+
format?: string | undefined;
|
|
2649
|
+
file?: {
|
|
2650
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2651
|
+
type: string;
|
|
2652
|
+
name: string;
|
|
2653
|
+
size: number;
|
|
2654
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2655
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2656
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2657
|
+
lastModified: number;
|
|
2658
|
+
webkitRelativePath: string;
|
|
2659
|
+
} | undefined;
|
|
2660
|
+
refUid?: string | undefined;
|
|
2048
2661
|
}[];
|
|
2049
2662
|
};
|
|
2050
2663
|
auth: Record<string, any>;
|
|
@@ -2056,7 +2669,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2056
2669
|
body: {
|
|
2057
2670
|
raw: {
|
|
2058
2671
|
value: string;
|
|
2059
|
-
encoding: "
|
|
2672
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
2060
2673
|
};
|
|
2061
2674
|
formData: {
|
|
2062
2675
|
value: {
|
|
@@ -2070,15 +2683,35 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2070
2683
|
required?: boolean | undefined;
|
|
2071
2684
|
description?: string | undefined;
|
|
2072
2685
|
enum?: string[] | undefined;
|
|
2073
|
-
file?: any;
|
|
2074
|
-
refUid?: string | undefined;
|
|
2075
|
-
format?: string | undefined;
|
|
2076
2686
|
nullable?: boolean | undefined;
|
|
2687
|
+
format?: string | undefined;
|
|
2688
|
+
file?: {
|
|
2689
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2690
|
+
type: string;
|
|
2691
|
+
name: string;
|
|
2692
|
+
size: number;
|
|
2693
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2694
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2695
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2696
|
+
lastModified: number;
|
|
2697
|
+
webkitRelativePath: string;
|
|
2698
|
+
} | undefined;
|
|
2699
|
+
refUid?: string | undefined;
|
|
2077
2700
|
}[];
|
|
2078
2701
|
encoding: "form-data" | "urlencoded";
|
|
2079
2702
|
};
|
|
2080
2703
|
activeBody: "raw" | "formData" | "binary";
|
|
2081
|
-
binary?:
|
|
2704
|
+
binary?: {
|
|
2705
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2706
|
+
type: string;
|
|
2707
|
+
name: string;
|
|
2708
|
+
size: number;
|
|
2709
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2710
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2711
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2712
|
+
lastModified: number;
|
|
2713
|
+
webkitRelativePath: string;
|
|
2714
|
+
} | undefined;
|
|
2082
2715
|
};
|
|
2083
2716
|
parameters: {
|
|
2084
2717
|
path: {
|
|
@@ -2092,10 +2725,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2092
2725
|
required?: boolean | undefined;
|
|
2093
2726
|
description?: string | undefined;
|
|
2094
2727
|
enum?: string[] | undefined;
|
|
2095
|
-
file?: any;
|
|
2096
|
-
refUid?: string | undefined;
|
|
2097
|
-
format?: string | undefined;
|
|
2098
2728
|
nullable?: boolean | undefined;
|
|
2729
|
+
format?: string | undefined;
|
|
2730
|
+
file?: {
|
|
2731
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2732
|
+
type: string;
|
|
2733
|
+
name: string;
|
|
2734
|
+
size: number;
|
|
2735
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2736
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2737
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2738
|
+
lastModified: number;
|
|
2739
|
+
webkitRelativePath: string;
|
|
2740
|
+
} | undefined;
|
|
2741
|
+
refUid?: string | undefined;
|
|
2099
2742
|
}[];
|
|
2100
2743
|
query: {
|
|
2101
2744
|
value: string;
|
|
@@ -2108,10 +2751,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2108
2751
|
required?: boolean | undefined;
|
|
2109
2752
|
description?: string | undefined;
|
|
2110
2753
|
enum?: string[] | undefined;
|
|
2111
|
-
file?: any;
|
|
2112
|
-
refUid?: string | undefined;
|
|
2113
|
-
format?: string | undefined;
|
|
2114
2754
|
nullable?: boolean | undefined;
|
|
2755
|
+
format?: string | undefined;
|
|
2756
|
+
file?: {
|
|
2757
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2758
|
+
type: string;
|
|
2759
|
+
name: string;
|
|
2760
|
+
size: number;
|
|
2761
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2762
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2763
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2764
|
+
lastModified: number;
|
|
2765
|
+
webkitRelativePath: string;
|
|
2766
|
+
} | undefined;
|
|
2767
|
+
refUid?: string | undefined;
|
|
2115
2768
|
}[];
|
|
2116
2769
|
headers: {
|
|
2117
2770
|
value: string;
|
|
@@ -2124,10 +2777,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2124
2777
|
required?: boolean | undefined;
|
|
2125
2778
|
description?: string | undefined;
|
|
2126
2779
|
enum?: string[] | undefined;
|
|
2127
|
-
file?: any;
|
|
2128
|
-
refUid?: string | undefined;
|
|
2129
|
-
format?: string | undefined;
|
|
2130
2780
|
nullable?: boolean | undefined;
|
|
2781
|
+
format?: string | undefined;
|
|
2782
|
+
file?: {
|
|
2783
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2784
|
+
type: string;
|
|
2785
|
+
name: string;
|
|
2786
|
+
size: number;
|
|
2787
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2788
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2789
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2790
|
+
lastModified: number;
|
|
2791
|
+
webkitRelativePath: string;
|
|
2792
|
+
} | undefined;
|
|
2793
|
+
refUid?: string | undefined;
|
|
2131
2794
|
}[];
|
|
2132
2795
|
cookies: {
|
|
2133
2796
|
value: string;
|
|
@@ -2140,10 +2803,20 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2140
2803
|
required?: boolean | undefined;
|
|
2141
2804
|
description?: string | undefined;
|
|
2142
2805
|
enum?: string[] | undefined;
|
|
2143
|
-
file?: any;
|
|
2144
|
-
refUid?: string | undefined;
|
|
2145
|
-
format?: string | undefined;
|
|
2146
2806
|
nullable?: boolean | undefined;
|
|
2807
|
+
format?: string | undefined;
|
|
2808
|
+
file?: {
|
|
2809
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
2810
|
+
type: string;
|
|
2811
|
+
name: string;
|
|
2812
|
+
size: number;
|
|
2813
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
2814
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
2815
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
2816
|
+
lastModified: number;
|
|
2817
|
+
webkitRelativePath: string;
|
|
2818
|
+
} | undefined;
|
|
2819
|
+
refUid?: string | undefined;
|
|
2147
2820
|
}[];
|
|
2148
2821
|
};
|
|
2149
2822
|
auth: Record<string, any>;
|
|
@@ -2799,6 +3472,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2799
3472
|
isReadOnly: boolean;
|
|
2800
3473
|
collectionUids: string[];
|
|
2801
3474
|
environmentUids: string[];
|
|
3475
|
+
activeEnvironmentId: string;
|
|
2802
3476
|
cookieUids: string[];
|
|
2803
3477
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2804
3478
|
hotKeyConfig?: {
|
|
@@ -2817,6 +3491,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2817
3491
|
isReadOnly: boolean;
|
|
2818
3492
|
collectionUids: string[];
|
|
2819
3493
|
environmentUids: string[];
|
|
3494
|
+
activeEnvironmentId: string;
|
|
2820
3495
|
cookieUids: string[];
|
|
2821
3496
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2822
3497
|
hotKeyConfig?: {
|
|
@@ -2837,6 +3512,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2837
3512
|
isReadOnly: boolean;
|
|
2838
3513
|
collectionUids: string[];
|
|
2839
3514
|
environmentUids: string[];
|
|
3515
|
+
activeEnvironmentId: string;
|
|
2840
3516
|
cookieUids: string[];
|
|
2841
3517
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2842
3518
|
hotKeyConfig?: {
|
|
@@ -2848,13 +3524,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2848
3524
|
} | undefined;
|
|
2849
3525
|
proxyUrl?: string | undefined;
|
|
2850
3526
|
}) => void;
|
|
2851
|
-
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" ? {
|
|
3527
|
+
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" ? {
|
|
2852
3528
|
uid: string;
|
|
2853
3529
|
name: string;
|
|
2854
3530
|
description: string;
|
|
2855
3531
|
isReadOnly: boolean;
|
|
2856
3532
|
collectionUids: string[];
|
|
2857
3533
|
environmentUids: string[];
|
|
3534
|
+
activeEnvironmentId: string;
|
|
2858
3535
|
cookieUids: string[];
|
|
2859
3536
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2860
3537
|
hotKeyConfig?: {
|
|
@@ -2865,13 +3542,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2865
3542
|
}>> | undefined;
|
|
2866
3543
|
} | undefined;
|
|
2867
3544
|
proxyUrl?: string | undefined;
|
|
2868
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
3545
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2869
3546
|
uid: string;
|
|
2870
3547
|
name: string;
|
|
2871
3548
|
description: string;
|
|
2872
3549
|
isReadOnly: boolean;
|
|
2873
3550
|
collectionUids: string[];
|
|
2874
3551
|
environmentUids: string[];
|
|
3552
|
+
activeEnvironmentId: string;
|
|
2875
3553
|
cookieUids: string[];
|
|
2876
3554
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2877
3555
|
hotKeyConfig?: {
|
|
@@ -2889,6 +3567,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2889
3567
|
isReadOnly: boolean;
|
|
2890
3568
|
collectionUids: string[];
|
|
2891
3569
|
environmentUids: string[];
|
|
3570
|
+
activeEnvironmentId: string;
|
|
2892
3571
|
cookieUids: string[];
|
|
2893
3572
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2894
3573
|
hotKeyConfig?: {
|
|
@@ -2900,13 +3579,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2900
3579
|
} | undefined;
|
|
2901
3580
|
proxyUrl?: string | undefined;
|
|
2902
3581
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2903
|
-
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" ? {
|
|
3582
|
+
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" ? {
|
|
2904
3583
|
uid: string;
|
|
2905
3584
|
name: string;
|
|
2906
3585
|
description: string;
|
|
2907
3586
|
isReadOnly: boolean;
|
|
2908
3587
|
collectionUids: string[];
|
|
2909
3588
|
environmentUids: string[];
|
|
3589
|
+
activeEnvironmentId: string;
|
|
2910
3590
|
cookieUids: string[];
|
|
2911
3591
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2912
3592
|
hotKeyConfig?: {
|
|
@@ -2917,13 +3597,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2917
3597
|
}>> | undefined;
|
|
2918
3598
|
} | undefined;
|
|
2919
3599
|
proxyUrl?: string | undefined;
|
|
2920
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
3600
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2921
3601
|
uid: string;
|
|
2922
3602
|
name: string;
|
|
2923
3603
|
description: string;
|
|
2924
3604
|
isReadOnly: boolean;
|
|
2925
3605
|
collectionUids: string[];
|
|
2926
3606
|
environmentUids: string[];
|
|
3607
|
+
activeEnvironmentId: string;
|
|
2927
3608
|
cookieUids: string[];
|
|
2928
3609
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2929
3610
|
hotKeyConfig?: {
|
|
@@ -2941,6 +3622,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2941
3622
|
isReadOnly: boolean;
|
|
2942
3623
|
collectionUids: string[];
|
|
2943
3624
|
environmentUids: string[];
|
|
3625
|
+
activeEnvironmentId: string;
|
|
2944
3626
|
cookieUids: string[];
|
|
2945
3627
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2946
3628
|
hotKeyConfig?: {
|
|
@@ -2973,6 +3655,7 @@ export declare const useWorkspace: () => {
|
|
|
2973
3655
|
isReadOnly: boolean;
|
|
2974
3656
|
collectionUids: string[];
|
|
2975
3657
|
environmentUids: string[];
|
|
3658
|
+
activeEnvironmentId: string;
|
|
2976
3659
|
cookieUids: string[];
|
|
2977
3660
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2978
3661
|
hotKeyConfig?: {
|
|
@@ -3062,7 +3745,7 @@ export declare const useWorkspace: () => {
|
|
|
3062
3745
|
body: {
|
|
3063
3746
|
raw: {
|
|
3064
3747
|
value: string;
|
|
3065
|
-
encoding: "
|
|
3748
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
3066
3749
|
};
|
|
3067
3750
|
formData: {
|
|
3068
3751
|
value: {
|
|
@@ -3076,15 +3759,35 @@ export declare const useWorkspace: () => {
|
|
|
3076
3759
|
required?: boolean | undefined;
|
|
3077
3760
|
description?: string | undefined;
|
|
3078
3761
|
enum?: string[] | undefined;
|
|
3079
|
-
file?: any;
|
|
3080
|
-
refUid?: string | undefined;
|
|
3081
|
-
format?: string | undefined;
|
|
3082
3762
|
nullable?: boolean | undefined;
|
|
3763
|
+
format?: string | undefined;
|
|
3764
|
+
file?: {
|
|
3765
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3766
|
+
type: string;
|
|
3767
|
+
name: string;
|
|
3768
|
+
size: number;
|
|
3769
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3770
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3771
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3772
|
+
lastModified: number;
|
|
3773
|
+
webkitRelativePath: string;
|
|
3774
|
+
} | undefined;
|
|
3775
|
+
refUid?: string | undefined;
|
|
3083
3776
|
}[];
|
|
3084
3777
|
encoding: "form-data" | "urlencoded";
|
|
3085
3778
|
};
|
|
3086
3779
|
activeBody: "raw" | "formData" | "binary";
|
|
3087
|
-
binary?:
|
|
3780
|
+
binary?: {
|
|
3781
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3782
|
+
type: string;
|
|
3783
|
+
name: string;
|
|
3784
|
+
size: number;
|
|
3785
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3786
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3787
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3788
|
+
lastModified: number;
|
|
3789
|
+
webkitRelativePath: string;
|
|
3790
|
+
} | undefined;
|
|
3088
3791
|
};
|
|
3089
3792
|
parameters: {
|
|
3090
3793
|
path: {
|
|
@@ -3098,10 +3801,20 @@ export declare const useWorkspace: () => {
|
|
|
3098
3801
|
required?: boolean | undefined;
|
|
3099
3802
|
description?: string | undefined;
|
|
3100
3803
|
enum?: string[] | undefined;
|
|
3101
|
-
file?: any;
|
|
3102
|
-
refUid?: string | undefined;
|
|
3103
|
-
format?: string | undefined;
|
|
3104
3804
|
nullable?: boolean | undefined;
|
|
3805
|
+
format?: string | undefined;
|
|
3806
|
+
file?: {
|
|
3807
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3808
|
+
type: string;
|
|
3809
|
+
name: string;
|
|
3810
|
+
size: number;
|
|
3811
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3812
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3813
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3814
|
+
lastModified: number;
|
|
3815
|
+
webkitRelativePath: string;
|
|
3816
|
+
} | undefined;
|
|
3817
|
+
refUid?: string | undefined;
|
|
3105
3818
|
}[];
|
|
3106
3819
|
query: {
|
|
3107
3820
|
value: string;
|
|
@@ -3114,10 +3827,20 @@ export declare const useWorkspace: () => {
|
|
|
3114
3827
|
required?: boolean | undefined;
|
|
3115
3828
|
description?: string | undefined;
|
|
3116
3829
|
enum?: string[] | undefined;
|
|
3117
|
-
file?: any;
|
|
3118
|
-
refUid?: string | undefined;
|
|
3119
|
-
format?: string | undefined;
|
|
3120
3830
|
nullable?: boolean | undefined;
|
|
3831
|
+
format?: string | undefined;
|
|
3832
|
+
file?: {
|
|
3833
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3834
|
+
type: string;
|
|
3835
|
+
name: string;
|
|
3836
|
+
size: number;
|
|
3837
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3838
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3839
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3840
|
+
lastModified: number;
|
|
3841
|
+
webkitRelativePath: string;
|
|
3842
|
+
} | undefined;
|
|
3843
|
+
refUid?: string | undefined;
|
|
3121
3844
|
}[];
|
|
3122
3845
|
headers: {
|
|
3123
3846
|
value: string;
|
|
@@ -3130,10 +3853,20 @@ export declare const useWorkspace: () => {
|
|
|
3130
3853
|
required?: boolean | undefined;
|
|
3131
3854
|
description?: string | undefined;
|
|
3132
3855
|
enum?: string[] | undefined;
|
|
3133
|
-
file?: any;
|
|
3134
|
-
refUid?: string | undefined;
|
|
3135
|
-
format?: string | undefined;
|
|
3136
3856
|
nullable?: boolean | undefined;
|
|
3857
|
+
format?: string | undefined;
|
|
3858
|
+
file?: {
|
|
3859
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3860
|
+
type: string;
|
|
3861
|
+
name: string;
|
|
3862
|
+
size: number;
|
|
3863
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3864
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3865
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3866
|
+
lastModified: number;
|
|
3867
|
+
webkitRelativePath: string;
|
|
3868
|
+
} | undefined;
|
|
3869
|
+
refUid?: string | undefined;
|
|
3137
3870
|
}[];
|
|
3138
3871
|
cookies: {
|
|
3139
3872
|
value: string;
|
|
@@ -3146,10 +3879,20 @@ export declare const useWorkspace: () => {
|
|
|
3146
3879
|
required?: boolean | undefined;
|
|
3147
3880
|
description?: string | undefined;
|
|
3148
3881
|
enum?: string[] | undefined;
|
|
3149
|
-
file?: any;
|
|
3150
|
-
refUid?: string | undefined;
|
|
3151
|
-
format?: string | undefined;
|
|
3152
3882
|
nullable?: boolean | undefined;
|
|
3883
|
+
format?: string | undefined;
|
|
3884
|
+
file?: {
|
|
3885
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
3886
|
+
type: string;
|
|
3887
|
+
name: string;
|
|
3888
|
+
size: number;
|
|
3889
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
3890
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
3891
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
3892
|
+
lastModified: number;
|
|
3893
|
+
webkitRelativePath: string;
|
|
3894
|
+
} | undefined;
|
|
3895
|
+
refUid?: string | undefined;
|
|
3153
3896
|
}[];
|
|
3154
3897
|
};
|
|
3155
3898
|
auth: Record<string, any>;
|
|
@@ -3283,7 +4026,7 @@ export declare const useWorkspace: () => {
|
|
|
3283
4026
|
body: {
|
|
3284
4027
|
raw: {
|
|
3285
4028
|
value: string;
|
|
3286
|
-
encoding: "
|
|
4029
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
3287
4030
|
};
|
|
3288
4031
|
formData: {
|
|
3289
4032
|
value: {
|
|
@@ -3297,15 +4040,35 @@ export declare const useWorkspace: () => {
|
|
|
3297
4040
|
required?: boolean | undefined;
|
|
3298
4041
|
description?: string | undefined;
|
|
3299
4042
|
enum?: string[] | undefined;
|
|
3300
|
-
file?: any;
|
|
3301
|
-
refUid?: string | undefined;
|
|
3302
|
-
format?: string | undefined;
|
|
3303
4043
|
nullable?: boolean | undefined;
|
|
4044
|
+
format?: string | undefined;
|
|
4045
|
+
file?: {
|
|
4046
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4047
|
+
type: string;
|
|
4048
|
+
name: string;
|
|
4049
|
+
size: number;
|
|
4050
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4051
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4052
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4053
|
+
lastModified: number;
|
|
4054
|
+
webkitRelativePath: string;
|
|
4055
|
+
} | undefined;
|
|
4056
|
+
refUid?: string | undefined;
|
|
3304
4057
|
}[];
|
|
3305
4058
|
encoding: "form-data" | "urlencoded";
|
|
3306
4059
|
};
|
|
3307
4060
|
activeBody: "raw" | "formData" | "binary";
|
|
3308
|
-
binary?:
|
|
4061
|
+
binary?: {
|
|
4062
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4063
|
+
type: string;
|
|
4064
|
+
name: string;
|
|
4065
|
+
size: number;
|
|
4066
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4067
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4068
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4069
|
+
lastModified: number;
|
|
4070
|
+
webkitRelativePath: string;
|
|
4071
|
+
} | undefined;
|
|
3309
4072
|
};
|
|
3310
4073
|
parameters: {
|
|
3311
4074
|
path: {
|
|
@@ -3319,10 +4082,20 @@ export declare const useWorkspace: () => {
|
|
|
3319
4082
|
required?: boolean | undefined;
|
|
3320
4083
|
description?: string | undefined;
|
|
3321
4084
|
enum?: string[] | undefined;
|
|
3322
|
-
file?: any;
|
|
3323
|
-
refUid?: string | undefined;
|
|
3324
|
-
format?: string | undefined;
|
|
3325
4085
|
nullable?: boolean | undefined;
|
|
4086
|
+
format?: string | undefined;
|
|
4087
|
+
file?: {
|
|
4088
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4089
|
+
type: string;
|
|
4090
|
+
name: string;
|
|
4091
|
+
size: number;
|
|
4092
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4093
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4094
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4095
|
+
lastModified: number;
|
|
4096
|
+
webkitRelativePath: string;
|
|
4097
|
+
} | undefined;
|
|
4098
|
+
refUid?: string | undefined;
|
|
3326
4099
|
}[];
|
|
3327
4100
|
query: {
|
|
3328
4101
|
value: string;
|
|
@@ -3335,10 +4108,20 @@ export declare const useWorkspace: () => {
|
|
|
3335
4108
|
required?: boolean | undefined;
|
|
3336
4109
|
description?: string | undefined;
|
|
3337
4110
|
enum?: string[] | undefined;
|
|
3338
|
-
file?: any;
|
|
3339
|
-
refUid?: string | undefined;
|
|
3340
|
-
format?: string | undefined;
|
|
3341
4111
|
nullable?: boolean | undefined;
|
|
4112
|
+
format?: string | undefined;
|
|
4113
|
+
file?: {
|
|
4114
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4115
|
+
type: string;
|
|
4116
|
+
name: string;
|
|
4117
|
+
size: number;
|
|
4118
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4119
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4120
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4121
|
+
lastModified: number;
|
|
4122
|
+
webkitRelativePath: string;
|
|
4123
|
+
} | undefined;
|
|
4124
|
+
refUid?: string | undefined;
|
|
3342
4125
|
}[];
|
|
3343
4126
|
headers: {
|
|
3344
4127
|
value: string;
|
|
@@ -3351,10 +4134,20 @@ export declare const useWorkspace: () => {
|
|
|
3351
4134
|
required?: boolean | undefined;
|
|
3352
4135
|
description?: string | undefined;
|
|
3353
4136
|
enum?: string[] | undefined;
|
|
3354
|
-
file?: any;
|
|
3355
|
-
refUid?: string | undefined;
|
|
3356
|
-
format?: string | undefined;
|
|
3357
4137
|
nullable?: boolean | undefined;
|
|
4138
|
+
format?: string | undefined;
|
|
4139
|
+
file?: {
|
|
4140
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4141
|
+
type: string;
|
|
4142
|
+
name: string;
|
|
4143
|
+
size: number;
|
|
4144
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4145
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4146
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4147
|
+
lastModified: number;
|
|
4148
|
+
webkitRelativePath: string;
|
|
4149
|
+
} | undefined;
|
|
4150
|
+
refUid?: string | undefined;
|
|
3358
4151
|
}[];
|
|
3359
4152
|
cookies: {
|
|
3360
4153
|
value: string;
|
|
@@ -3367,10 +4160,20 @@ export declare const useWorkspace: () => {
|
|
|
3367
4160
|
required?: boolean | undefined;
|
|
3368
4161
|
description?: string | undefined;
|
|
3369
4162
|
enum?: string[] | undefined;
|
|
3370
|
-
file?: any;
|
|
3371
|
-
refUid?: string | undefined;
|
|
3372
|
-
format?: string | undefined;
|
|
3373
4163
|
nullable?: boolean | undefined;
|
|
4164
|
+
format?: string | undefined;
|
|
4165
|
+
file?: {
|
|
4166
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
4167
|
+
type: string;
|
|
4168
|
+
name: string;
|
|
4169
|
+
size: number;
|
|
4170
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
4171
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
4172
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
4173
|
+
lastModified: number;
|
|
4174
|
+
webkitRelativePath: string;
|
|
4175
|
+
} | undefined;
|
|
4176
|
+
refUid?: string | undefined;
|
|
3374
4177
|
}[];
|
|
3375
4178
|
};
|
|
3376
4179
|
auth: Record<string, any>;
|
|
@@ -3473,6 +4276,7 @@ export declare const useWorkspace: () => {
|
|
|
3473
4276
|
isReadOnly: boolean;
|
|
3474
4277
|
collectionUids: string[];
|
|
3475
4278
|
environmentUids: string[];
|
|
4279
|
+
activeEnvironmentId: string;
|
|
3476
4280
|
cookieUids: string[];
|
|
3477
4281
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3478
4282
|
hotKeyConfig?: {
|
|
@@ -3540,11 +4344,22 @@ export declare const useWorkspace: () => {
|
|
|
3540
4344
|
key: string;
|
|
3541
4345
|
value: string;
|
|
3542
4346
|
} | {
|
|
3543
|
-
_scalarEnvId:
|
|
4347
|
+
_scalarEnvId: string;
|
|
3544
4348
|
key: string;
|
|
3545
4349
|
value: unknown;
|
|
3546
4350
|
})[]>;
|
|
3547
4351
|
activeWorkspaceRequests: import("vue").ComputedRef<Request[]>;
|
|
4352
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
4353
|
+
uid: string;
|
|
4354
|
+
name: string;
|
|
4355
|
+
color: string;
|
|
4356
|
+
raw: string;
|
|
4357
|
+
parsed: {
|
|
4358
|
+
value: string;
|
|
4359
|
+
key: string;
|
|
4360
|
+
}[];
|
|
4361
|
+
isDefault?: boolean | undefined;
|
|
4362
|
+
}>;
|
|
3548
4363
|
modalState: {
|
|
3549
4364
|
open: boolean;
|
|
3550
4365
|
show: () => void;
|
|
@@ -4211,7 +5026,7 @@ export declare const useWorkspace: () => {
|
|
|
4211
5026
|
body: {
|
|
4212
5027
|
raw: {
|
|
4213
5028
|
value: string;
|
|
4214
|
-
encoding: "
|
|
5029
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4215
5030
|
};
|
|
4216
5031
|
formData: {
|
|
4217
5032
|
value: {
|
|
@@ -4225,15 +5040,35 @@ export declare const useWorkspace: () => {
|
|
|
4225
5040
|
required?: boolean | undefined;
|
|
4226
5041
|
description?: string | undefined;
|
|
4227
5042
|
enum?: string[] | undefined;
|
|
4228
|
-
file?: any;
|
|
4229
|
-
refUid?: string | undefined;
|
|
4230
|
-
format?: string | undefined;
|
|
4231
5043
|
nullable?: boolean | undefined;
|
|
5044
|
+
format?: string | undefined;
|
|
5045
|
+
file?: {
|
|
5046
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5047
|
+
type: string;
|
|
5048
|
+
name: string;
|
|
5049
|
+
size: number;
|
|
5050
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5051
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5052
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5053
|
+
lastModified: number;
|
|
5054
|
+
webkitRelativePath: string;
|
|
5055
|
+
} | undefined;
|
|
5056
|
+
refUid?: string | undefined;
|
|
4232
5057
|
}[];
|
|
4233
5058
|
encoding: "form-data" | "urlencoded";
|
|
4234
5059
|
};
|
|
4235
5060
|
activeBody: "raw" | "formData" | "binary";
|
|
4236
|
-
binary?:
|
|
5061
|
+
binary?: {
|
|
5062
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5063
|
+
type: string;
|
|
5064
|
+
name: string;
|
|
5065
|
+
size: number;
|
|
5066
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5067
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5068
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5069
|
+
lastModified: number;
|
|
5070
|
+
webkitRelativePath: string;
|
|
5071
|
+
} | undefined;
|
|
4237
5072
|
};
|
|
4238
5073
|
parameters: {
|
|
4239
5074
|
path: {
|
|
@@ -4247,10 +5082,20 @@ export declare const useWorkspace: () => {
|
|
|
4247
5082
|
required?: boolean | undefined;
|
|
4248
5083
|
description?: string | undefined;
|
|
4249
5084
|
enum?: string[] | undefined;
|
|
4250
|
-
file?: any;
|
|
4251
|
-
refUid?: string | undefined;
|
|
4252
|
-
format?: string | undefined;
|
|
4253
5085
|
nullable?: boolean | undefined;
|
|
5086
|
+
format?: string | undefined;
|
|
5087
|
+
file?: {
|
|
5088
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5089
|
+
type: string;
|
|
5090
|
+
name: string;
|
|
5091
|
+
size: number;
|
|
5092
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5093
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5094
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5095
|
+
lastModified: number;
|
|
5096
|
+
webkitRelativePath: string;
|
|
5097
|
+
} | undefined;
|
|
5098
|
+
refUid?: string | undefined;
|
|
4254
5099
|
}[];
|
|
4255
5100
|
query: {
|
|
4256
5101
|
value: string;
|
|
@@ -4263,10 +5108,20 @@ export declare const useWorkspace: () => {
|
|
|
4263
5108
|
required?: boolean | undefined;
|
|
4264
5109
|
description?: string | undefined;
|
|
4265
5110
|
enum?: string[] | undefined;
|
|
4266
|
-
file?: any;
|
|
4267
|
-
refUid?: string | undefined;
|
|
4268
|
-
format?: string | undefined;
|
|
4269
5111
|
nullable?: boolean | undefined;
|
|
5112
|
+
format?: string | undefined;
|
|
5113
|
+
file?: {
|
|
5114
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5115
|
+
type: string;
|
|
5116
|
+
name: string;
|
|
5117
|
+
size: number;
|
|
5118
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5119
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5120
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5121
|
+
lastModified: number;
|
|
5122
|
+
webkitRelativePath: string;
|
|
5123
|
+
} | undefined;
|
|
5124
|
+
refUid?: string | undefined;
|
|
4270
5125
|
}[];
|
|
4271
5126
|
headers: {
|
|
4272
5127
|
value: string;
|
|
@@ -4279,10 +5134,20 @@ export declare const useWorkspace: () => {
|
|
|
4279
5134
|
required?: boolean | undefined;
|
|
4280
5135
|
description?: string | undefined;
|
|
4281
5136
|
enum?: string[] | undefined;
|
|
4282
|
-
file?: any;
|
|
4283
|
-
refUid?: string | undefined;
|
|
4284
|
-
format?: string | undefined;
|
|
4285
5137
|
nullable?: boolean | undefined;
|
|
5138
|
+
format?: string | undefined;
|
|
5139
|
+
file?: {
|
|
5140
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5141
|
+
type: string;
|
|
5142
|
+
name: string;
|
|
5143
|
+
size: number;
|
|
5144
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5145
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5146
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5147
|
+
lastModified: number;
|
|
5148
|
+
webkitRelativePath: string;
|
|
5149
|
+
} | undefined;
|
|
5150
|
+
refUid?: string | undefined;
|
|
4286
5151
|
}[];
|
|
4287
5152
|
cookies: {
|
|
4288
5153
|
value: string;
|
|
@@ -4295,10 +5160,20 @@ export declare const useWorkspace: () => {
|
|
|
4295
5160
|
required?: boolean | undefined;
|
|
4296
5161
|
description?: string | undefined;
|
|
4297
5162
|
enum?: string[] | undefined;
|
|
4298
|
-
file?: any;
|
|
4299
|
-
refUid?: string | undefined;
|
|
4300
|
-
format?: string | undefined;
|
|
4301
5163
|
nullable?: boolean | undefined;
|
|
5164
|
+
format?: string | undefined;
|
|
5165
|
+
file?: {
|
|
5166
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5167
|
+
type: string;
|
|
5168
|
+
name: string;
|
|
5169
|
+
size: number;
|
|
5170
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5171
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5172
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5173
|
+
lastModified: number;
|
|
5174
|
+
webkitRelativePath: string;
|
|
5175
|
+
} | undefined;
|
|
5176
|
+
refUid?: string | undefined;
|
|
4302
5177
|
}[];
|
|
4303
5178
|
};
|
|
4304
5179
|
auth: Record<string, any>;
|
|
@@ -4311,7 +5186,7 @@ export declare const useWorkspace: () => {
|
|
|
4311
5186
|
body: {
|
|
4312
5187
|
raw: {
|
|
4313
5188
|
value: string;
|
|
4314
|
-
encoding: "
|
|
5189
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4315
5190
|
};
|
|
4316
5191
|
formData: {
|
|
4317
5192
|
value: {
|
|
@@ -4325,15 +5200,35 @@ export declare const useWorkspace: () => {
|
|
|
4325
5200
|
required?: boolean | undefined;
|
|
4326
5201
|
description?: string | undefined;
|
|
4327
5202
|
enum?: string[] | undefined;
|
|
4328
|
-
file?: any;
|
|
4329
|
-
refUid?: string | undefined;
|
|
4330
|
-
format?: string | undefined;
|
|
4331
5203
|
nullable?: boolean | undefined;
|
|
5204
|
+
format?: string | undefined;
|
|
5205
|
+
file?: {
|
|
5206
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5207
|
+
type: string;
|
|
5208
|
+
name: string;
|
|
5209
|
+
size: number;
|
|
5210
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5211
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5212
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5213
|
+
lastModified: number;
|
|
5214
|
+
webkitRelativePath: string;
|
|
5215
|
+
} | undefined;
|
|
5216
|
+
refUid?: string | undefined;
|
|
4332
5217
|
}[];
|
|
4333
5218
|
encoding: "form-data" | "urlencoded";
|
|
4334
5219
|
};
|
|
4335
5220
|
activeBody: "raw" | "formData" | "binary";
|
|
4336
|
-
binary?:
|
|
5221
|
+
binary?: {
|
|
5222
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5223
|
+
type: string;
|
|
5224
|
+
name: string;
|
|
5225
|
+
size: number;
|
|
5226
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5227
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5228
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5229
|
+
lastModified: number;
|
|
5230
|
+
webkitRelativePath: string;
|
|
5231
|
+
} | undefined;
|
|
4337
5232
|
};
|
|
4338
5233
|
parameters: {
|
|
4339
5234
|
path: {
|
|
@@ -4347,10 +5242,20 @@ export declare const useWorkspace: () => {
|
|
|
4347
5242
|
required?: boolean | undefined;
|
|
4348
5243
|
description?: string | undefined;
|
|
4349
5244
|
enum?: string[] | undefined;
|
|
4350
|
-
file?: any;
|
|
4351
|
-
refUid?: string | undefined;
|
|
4352
|
-
format?: string | undefined;
|
|
4353
5245
|
nullable?: boolean | undefined;
|
|
5246
|
+
format?: string | undefined;
|
|
5247
|
+
file?: {
|
|
5248
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5249
|
+
type: string;
|
|
5250
|
+
name: string;
|
|
5251
|
+
size: number;
|
|
5252
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5253
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5254
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5255
|
+
lastModified: number;
|
|
5256
|
+
webkitRelativePath: string;
|
|
5257
|
+
} | undefined;
|
|
5258
|
+
refUid?: string | undefined;
|
|
4354
5259
|
}[];
|
|
4355
5260
|
query: {
|
|
4356
5261
|
value: string;
|
|
@@ -4363,10 +5268,20 @@ export declare const useWorkspace: () => {
|
|
|
4363
5268
|
required?: boolean | undefined;
|
|
4364
5269
|
description?: string | undefined;
|
|
4365
5270
|
enum?: string[] | undefined;
|
|
4366
|
-
file?: any;
|
|
4367
|
-
refUid?: string | undefined;
|
|
4368
|
-
format?: string | undefined;
|
|
4369
5271
|
nullable?: boolean | undefined;
|
|
5272
|
+
format?: string | undefined;
|
|
5273
|
+
file?: {
|
|
5274
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5275
|
+
type: string;
|
|
5276
|
+
name: string;
|
|
5277
|
+
size: number;
|
|
5278
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5279
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5280
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5281
|
+
lastModified: number;
|
|
5282
|
+
webkitRelativePath: string;
|
|
5283
|
+
} | undefined;
|
|
5284
|
+
refUid?: string | undefined;
|
|
4370
5285
|
}[];
|
|
4371
5286
|
headers: {
|
|
4372
5287
|
value: string;
|
|
@@ -4379,10 +5294,20 @@ export declare const useWorkspace: () => {
|
|
|
4379
5294
|
required?: boolean | undefined;
|
|
4380
5295
|
description?: string | undefined;
|
|
4381
5296
|
enum?: string[] | undefined;
|
|
4382
|
-
file?: any;
|
|
4383
|
-
refUid?: string | undefined;
|
|
4384
|
-
format?: string | undefined;
|
|
4385
5297
|
nullable?: boolean | undefined;
|
|
5298
|
+
format?: string | undefined;
|
|
5299
|
+
file?: {
|
|
5300
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5301
|
+
type: string;
|
|
5302
|
+
name: string;
|
|
5303
|
+
size: number;
|
|
5304
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5305
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5306
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5307
|
+
lastModified: number;
|
|
5308
|
+
webkitRelativePath: string;
|
|
5309
|
+
} | undefined;
|
|
5310
|
+
refUid?: string | undefined;
|
|
4386
5311
|
}[];
|
|
4387
5312
|
cookies: {
|
|
4388
5313
|
value: string;
|
|
@@ -4395,10 +5320,20 @@ export declare const useWorkspace: () => {
|
|
|
4395
5320
|
required?: boolean | undefined;
|
|
4396
5321
|
description?: string | undefined;
|
|
4397
5322
|
enum?: string[] | undefined;
|
|
4398
|
-
file?: any;
|
|
4399
|
-
refUid?: string | undefined;
|
|
4400
|
-
format?: string | undefined;
|
|
4401
5323
|
nullable?: boolean | undefined;
|
|
5324
|
+
format?: string | undefined;
|
|
5325
|
+
file?: {
|
|
5326
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5327
|
+
type: string;
|
|
5328
|
+
name: string;
|
|
5329
|
+
size: number;
|
|
5330
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5331
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5332
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5333
|
+
lastModified: number;
|
|
5334
|
+
webkitRelativePath: string;
|
|
5335
|
+
} | undefined;
|
|
5336
|
+
refUid?: string | undefined;
|
|
4402
5337
|
}[];
|
|
4403
5338
|
};
|
|
4404
5339
|
auth: Record<string, any>;
|
|
@@ -4412,7 +5347,7 @@ export declare const useWorkspace: () => {
|
|
|
4412
5347
|
body: {
|
|
4413
5348
|
raw: {
|
|
4414
5349
|
value: string;
|
|
4415
|
-
encoding: "
|
|
5350
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4416
5351
|
};
|
|
4417
5352
|
formData: {
|
|
4418
5353
|
value: {
|
|
@@ -4426,15 +5361,35 @@ export declare const useWorkspace: () => {
|
|
|
4426
5361
|
required?: boolean | undefined;
|
|
4427
5362
|
description?: string | undefined;
|
|
4428
5363
|
enum?: string[] | undefined;
|
|
4429
|
-
file?: any;
|
|
4430
|
-
refUid?: string | undefined;
|
|
4431
|
-
format?: string | undefined;
|
|
4432
5364
|
nullable?: boolean | undefined;
|
|
5365
|
+
format?: string | undefined;
|
|
5366
|
+
file?: {
|
|
5367
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5368
|
+
type: string;
|
|
5369
|
+
name: string;
|
|
5370
|
+
size: number;
|
|
5371
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5372
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5373
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5374
|
+
lastModified: number;
|
|
5375
|
+
webkitRelativePath: string;
|
|
5376
|
+
} | undefined;
|
|
5377
|
+
refUid?: string | undefined;
|
|
4433
5378
|
}[];
|
|
4434
5379
|
encoding: "form-data" | "urlencoded";
|
|
4435
5380
|
};
|
|
4436
5381
|
activeBody: "raw" | "formData" | "binary";
|
|
4437
|
-
binary?:
|
|
5382
|
+
binary?: {
|
|
5383
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5384
|
+
type: string;
|
|
5385
|
+
name: string;
|
|
5386
|
+
size: number;
|
|
5387
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5388
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5389
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5390
|
+
lastModified: number;
|
|
5391
|
+
webkitRelativePath: string;
|
|
5392
|
+
} | undefined;
|
|
4438
5393
|
};
|
|
4439
5394
|
parameters: {
|
|
4440
5395
|
path: {
|
|
@@ -4448,10 +5403,20 @@ export declare const useWorkspace: () => {
|
|
|
4448
5403
|
required?: boolean | undefined;
|
|
4449
5404
|
description?: string | undefined;
|
|
4450
5405
|
enum?: string[] | undefined;
|
|
4451
|
-
file?: any;
|
|
4452
|
-
refUid?: string | undefined;
|
|
4453
|
-
format?: string | undefined;
|
|
4454
5406
|
nullable?: boolean | undefined;
|
|
5407
|
+
format?: string | undefined;
|
|
5408
|
+
file?: {
|
|
5409
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5410
|
+
type: string;
|
|
5411
|
+
name: string;
|
|
5412
|
+
size: number;
|
|
5413
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5414
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5415
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5416
|
+
lastModified: number;
|
|
5417
|
+
webkitRelativePath: string;
|
|
5418
|
+
} | undefined;
|
|
5419
|
+
refUid?: string | undefined;
|
|
4455
5420
|
}[];
|
|
4456
5421
|
query: {
|
|
4457
5422
|
value: string;
|
|
@@ -4464,10 +5429,20 @@ export declare const useWorkspace: () => {
|
|
|
4464
5429
|
required?: boolean | undefined;
|
|
4465
5430
|
description?: string | undefined;
|
|
4466
5431
|
enum?: string[] | undefined;
|
|
4467
|
-
file?: any;
|
|
4468
|
-
refUid?: string | undefined;
|
|
4469
|
-
format?: string | undefined;
|
|
4470
5432
|
nullable?: boolean | undefined;
|
|
5433
|
+
format?: string | undefined;
|
|
5434
|
+
file?: {
|
|
5435
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5436
|
+
type: string;
|
|
5437
|
+
name: string;
|
|
5438
|
+
size: number;
|
|
5439
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5440
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5441
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5442
|
+
lastModified: number;
|
|
5443
|
+
webkitRelativePath: string;
|
|
5444
|
+
} | undefined;
|
|
5445
|
+
refUid?: string | undefined;
|
|
4471
5446
|
}[];
|
|
4472
5447
|
headers: {
|
|
4473
5448
|
value: string;
|
|
@@ -4480,10 +5455,20 @@ export declare const useWorkspace: () => {
|
|
|
4480
5455
|
required?: boolean | undefined;
|
|
4481
5456
|
description?: string | undefined;
|
|
4482
5457
|
enum?: string[] | undefined;
|
|
4483
|
-
file?: any;
|
|
4484
|
-
refUid?: string | undefined;
|
|
4485
|
-
format?: string | undefined;
|
|
4486
5458
|
nullable?: boolean | undefined;
|
|
5459
|
+
format?: string | undefined;
|
|
5460
|
+
file?: {
|
|
5461
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5462
|
+
type: string;
|
|
5463
|
+
name: string;
|
|
5464
|
+
size: number;
|
|
5465
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5466
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5467
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5468
|
+
lastModified: number;
|
|
5469
|
+
webkitRelativePath: string;
|
|
5470
|
+
} | undefined;
|
|
5471
|
+
refUid?: string | undefined;
|
|
4487
5472
|
}[];
|
|
4488
5473
|
cookies: {
|
|
4489
5474
|
value: string;
|
|
@@ -4496,15 +5481,25 @@ export declare const useWorkspace: () => {
|
|
|
4496
5481
|
required?: boolean | undefined;
|
|
4497
5482
|
description?: string | undefined;
|
|
4498
5483
|
enum?: string[] | undefined;
|
|
4499
|
-
file?: any;
|
|
4500
|
-
refUid?: string | undefined;
|
|
4501
|
-
format?: string | undefined;
|
|
4502
5484
|
nullable?: boolean | undefined;
|
|
5485
|
+
format?: string | undefined;
|
|
5486
|
+
file?: {
|
|
5487
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5488
|
+
type: string;
|
|
5489
|
+
name: string;
|
|
5490
|
+
size: number;
|
|
5491
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5492
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5493
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5494
|
+
lastModified: number;
|
|
5495
|
+
webkitRelativePath: string;
|
|
5496
|
+
} | undefined;
|
|
5497
|
+
refUid?: string | undefined;
|
|
4503
5498
|
}[];
|
|
4504
5499
|
};
|
|
4505
5500
|
auth: Record<string, any>;
|
|
4506
5501
|
}) => void;
|
|
4507
|
-
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}.
|
|
5502
|
+
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" ? {
|
|
4508
5503
|
uid: string;
|
|
4509
5504
|
name: string;
|
|
4510
5505
|
url: string;
|
|
@@ -4512,7 +5507,7 @@ export declare const useWorkspace: () => {
|
|
|
4512
5507
|
body: {
|
|
4513
5508
|
raw: {
|
|
4514
5509
|
value: string;
|
|
4515
|
-
encoding: "
|
|
5510
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4516
5511
|
};
|
|
4517
5512
|
formData: {
|
|
4518
5513
|
value: {
|
|
@@ -4526,15 +5521,35 @@ export declare const useWorkspace: () => {
|
|
|
4526
5521
|
required?: boolean | undefined;
|
|
4527
5522
|
description?: string | undefined;
|
|
4528
5523
|
enum?: string[] | undefined;
|
|
4529
|
-
file?: any;
|
|
4530
|
-
refUid?: string | undefined;
|
|
4531
|
-
format?: string | undefined;
|
|
4532
5524
|
nullable?: boolean | undefined;
|
|
5525
|
+
format?: string | undefined;
|
|
5526
|
+
file?: {
|
|
5527
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5528
|
+
type: string;
|
|
5529
|
+
name: string;
|
|
5530
|
+
size: number;
|
|
5531
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5532
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5533
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5534
|
+
lastModified: number;
|
|
5535
|
+
webkitRelativePath: string;
|
|
5536
|
+
} | undefined;
|
|
5537
|
+
refUid?: string | undefined;
|
|
4533
5538
|
}[];
|
|
4534
5539
|
encoding: "form-data" | "urlencoded";
|
|
4535
5540
|
};
|
|
4536
5541
|
activeBody: "raw" | "formData" | "binary";
|
|
4537
|
-
binary?:
|
|
5542
|
+
binary?: {
|
|
5543
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5544
|
+
type: string;
|
|
5545
|
+
name: string;
|
|
5546
|
+
size: number;
|
|
5547
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5548
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5549
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5550
|
+
lastModified: number;
|
|
5551
|
+
webkitRelativePath: string;
|
|
5552
|
+
} | undefined;
|
|
4538
5553
|
};
|
|
4539
5554
|
parameters: {
|
|
4540
5555
|
path: {
|
|
@@ -4548,10 +5563,20 @@ export declare const useWorkspace: () => {
|
|
|
4548
5563
|
required?: boolean | undefined;
|
|
4549
5564
|
description?: string | undefined;
|
|
4550
5565
|
enum?: string[] | undefined;
|
|
4551
|
-
file?: any;
|
|
4552
|
-
refUid?: string | undefined;
|
|
4553
|
-
format?: string | undefined;
|
|
4554
5566
|
nullable?: boolean | undefined;
|
|
5567
|
+
format?: string | undefined;
|
|
5568
|
+
file?: {
|
|
5569
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5570
|
+
type: string;
|
|
5571
|
+
name: string;
|
|
5572
|
+
size: number;
|
|
5573
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5574
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5575
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5576
|
+
lastModified: number;
|
|
5577
|
+
webkitRelativePath: string;
|
|
5578
|
+
} | undefined;
|
|
5579
|
+
refUid?: string | undefined;
|
|
4555
5580
|
}[];
|
|
4556
5581
|
query: {
|
|
4557
5582
|
value: string;
|
|
@@ -4564,10 +5589,20 @@ export declare const useWorkspace: () => {
|
|
|
4564
5589
|
required?: boolean | undefined;
|
|
4565
5590
|
description?: string | undefined;
|
|
4566
5591
|
enum?: string[] | undefined;
|
|
4567
|
-
file?: any;
|
|
4568
|
-
refUid?: string | undefined;
|
|
4569
|
-
format?: string | undefined;
|
|
4570
5592
|
nullable?: boolean | undefined;
|
|
5593
|
+
format?: string | undefined;
|
|
5594
|
+
file?: {
|
|
5595
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5596
|
+
type: string;
|
|
5597
|
+
name: string;
|
|
5598
|
+
size: number;
|
|
5599
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5600
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5601
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5602
|
+
lastModified: number;
|
|
5603
|
+
webkitRelativePath: string;
|
|
5604
|
+
} | undefined;
|
|
5605
|
+
refUid?: string | undefined;
|
|
4571
5606
|
}[];
|
|
4572
5607
|
headers: {
|
|
4573
5608
|
value: string;
|
|
@@ -4580,10 +5615,20 @@ export declare const useWorkspace: () => {
|
|
|
4580
5615
|
required?: boolean | undefined;
|
|
4581
5616
|
description?: string | undefined;
|
|
4582
5617
|
enum?: string[] | undefined;
|
|
4583
|
-
file?: any;
|
|
4584
|
-
refUid?: string | undefined;
|
|
4585
|
-
format?: string | undefined;
|
|
4586
5618
|
nullable?: boolean | undefined;
|
|
5619
|
+
format?: string | undefined;
|
|
5620
|
+
file?: {
|
|
5621
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5622
|
+
type: string;
|
|
5623
|
+
name: string;
|
|
5624
|
+
size: number;
|
|
5625
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5626
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5627
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5628
|
+
lastModified: number;
|
|
5629
|
+
webkitRelativePath: string;
|
|
5630
|
+
} | undefined;
|
|
5631
|
+
refUid?: string | undefined;
|
|
4587
5632
|
}[];
|
|
4588
5633
|
cookies: {
|
|
4589
5634
|
value: string;
|
|
@@ -4596,10 +5641,20 @@ export declare const useWorkspace: () => {
|
|
|
4596
5641
|
required?: boolean | undefined;
|
|
4597
5642
|
description?: string | undefined;
|
|
4598
5643
|
enum?: string[] | undefined;
|
|
4599
|
-
file?: any;
|
|
4600
|
-
refUid?: string | undefined;
|
|
4601
|
-
format?: string | undefined;
|
|
4602
5644
|
nullable?: boolean | undefined;
|
|
5645
|
+
format?: string | undefined;
|
|
5646
|
+
file?: {
|
|
5647
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5648
|
+
type: string;
|
|
5649
|
+
name: string;
|
|
5650
|
+
size: number;
|
|
5651
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5652
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5653
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5654
|
+
lastModified: number;
|
|
5655
|
+
webkitRelativePath: string;
|
|
5656
|
+
} | undefined;
|
|
5657
|
+
refUid?: string | undefined;
|
|
4603
5658
|
}[];
|
|
4604
5659
|
};
|
|
4605
5660
|
auth: Record<string, any>;
|
|
@@ -4611,7 +5666,7 @@ export declare const useWorkspace: () => {
|
|
|
4611
5666
|
body: {
|
|
4612
5667
|
raw: {
|
|
4613
5668
|
value: string;
|
|
4614
|
-
encoding: "
|
|
5669
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4615
5670
|
};
|
|
4616
5671
|
formData: {
|
|
4617
5672
|
value: {
|
|
@@ -4625,15 +5680,35 @@ export declare const useWorkspace: () => {
|
|
|
4625
5680
|
required?: boolean | undefined;
|
|
4626
5681
|
description?: string | undefined;
|
|
4627
5682
|
enum?: string[] | undefined;
|
|
4628
|
-
file?: any;
|
|
4629
|
-
refUid?: string | undefined;
|
|
4630
|
-
format?: string | undefined;
|
|
4631
5683
|
nullable?: boolean | undefined;
|
|
5684
|
+
format?: string | undefined;
|
|
5685
|
+
file?: {
|
|
5686
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5687
|
+
type: string;
|
|
5688
|
+
name: string;
|
|
5689
|
+
size: number;
|
|
5690
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5691
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5692
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5693
|
+
lastModified: number;
|
|
5694
|
+
webkitRelativePath: string;
|
|
5695
|
+
} | undefined;
|
|
5696
|
+
refUid?: string | undefined;
|
|
4632
5697
|
}[];
|
|
4633
5698
|
encoding: "form-data" | "urlencoded";
|
|
4634
5699
|
};
|
|
4635
5700
|
activeBody: "raw" | "formData" | "binary";
|
|
4636
|
-
binary?:
|
|
5701
|
+
binary?: {
|
|
5702
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5703
|
+
type: string;
|
|
5704
|
+
name: string;
|
|
5705
|
+
size: number;
|
|
5706
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5707
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5708
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5709
|
+
lastModified: number;
|
|
5710
|
+
webkitRelativePath: string;
|
|
5711
|
+
} | undefined;
|
|
4637
5712
|
};
|
|
4638
5713
|
parameters: {
|
|
4639
5714
|
path: {
|
|
@@ -4647,10 +5722,20 @@ export declare const useWorkspace: () => {
|
|
|
4647
5722
|
required?: boolean | undefined;
|
|
4648
5723
|
description?: string | undefined;
|
|
4649
5724
|
enum?: string[] | undefined;
|
|
4650
|
-
file?: any;
|
|
4651
|
-
refUid?: string | undefined;
|
|
4652
|
-
format?: string | undefined;
|
|
4653
5725
|
nullable?: boolean | undefined;
|
|
5726
|
+
format?: string | undefined;
|
|
5727
|
+
file?: {
|
|
5728
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5729
|
+
type: string;
|
|
5730
|
+
name: string;
|
|
5731
|
+
size: number;
|
|
5732
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5733
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5734
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5735
|
+
lastModified: number;
|
|
5736
|
+
webkitRelativePath: string;
|
|
5737
|
+
} | undefined;
|
|
5738
|
+
refUid?: string | undefined;
|
|
4654
5739
|
}[];
|
|
4655
5740
|
query: {
|
|
4656
5741
|
value: string;
|
|
@@ -4663,10 +5748,20 @@ export declare const useWorkspace: () => {
|
|
|
4663
5748
|
required?: boolean | undefined;
|
|
4664
5749
|
description?: string | undefined;
|
|
4665
5750
|
enum?: string[] | undefined;
|
|
4666
|
-
file?: any;
|
|
4667
|
-
refUid?: string | undefined;
|
|
4668
|
-
format?: string | undefined;
|
|
4669
5751
|
nullable?: boolean | undefined;
|
|
5752
|
+
format?: string | undefined;
|
|
5753
|
+
file?: {
|
|
5754
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5755
|
+
type: string;
|
|
5756
|
+
name: string;
|
|
5757
|
+
size: number;
|
|
5758
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5759
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5760
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5761
|
+
lastModified: number;
|
|
5762
|
+
webkitRelativePath: string;
|
|
5763
|
+
} | undefined;
|
|
5764
|
+
refUid?: string | undefined;
|
|
4670
5765
|
}[];
|
|
4671
5766
|
headers: {
|
|
4672
5767
|
value: string;
|
|
@@ -4679,10 +5774,20 @@ export declare const useWorkspace: () => {
|
|
|
4679
5774
|
required?: boolean | undefined;
|
|
4680
5775
|
description?: string | undefined;
|
|
4681
5776
|
enum?: string[] | undefined;
|
|
4682
|
-
file?: any;
|
|
4683
|
-
refUid?: string | undefined;
|
|
4684
|
-
format?: string | undefined;
|
|
4685
5777
|
nullable?: boolean | undefined;
|
|
5778
|
+
format?: string | undefined;
|
|
5779
|
+
file?: {
|
|
5780
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5781
|
+
type: string;
|
|
5782
|
+
name: string;
|
|
5783
|
+
size: number;
|
|
5784
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5785
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5786
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5787
|
+
lastModified: number;
|
|
5788
|
+
webkitRelativePath: string;
|
|
5789
|
+
} | undefined;
|
|
5790
|
+
refUid?: string | undefined;
|
|
4686
5791
|
}[];
|
|
4687
5792
|
cookies: {
|
|
4688
5793
|
value: string;
|
|
@@ -4695,10 +5800,20 @@ export declare const useWorkspace: () => {
|
|
|
4695
5800
|
required?: boolean | undefined;
|
|
4696
5801
|
description?: string | undefined;
|
|
4697
5802
|
enum?: string[] | undefined;
|
|
4698
|
-
file?: any;
|
|
4699
|
-
refUid?: string | undefined;
|
|
4700
|
-
format?: string | undefined;
|
|
4701
5803
|
nullable?: boolean | undefined;
|
|
5804
|
+
format?: string | undefined;
|
|
5805
|
+
file?: {
|
|
5806
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5807
|
+
type: string;
|
|
5808
|
+
name: string;
|
|
5809
|
+
size: number;
|
|
5810
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5811
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5812
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5813
|
+
lastModified: number;
|
|
5814
|
+
webkitRelativePath: string;
|
|
5815
|
+
} | undefined;
|
|
5816
|
+
refUid?: string | undefined;
|
|
4702
5817
|
}[];
|
|
4703
5818
|
};
|
|
4704
5819
|
auth: Record<string, any>;
|
|
@@ -4710,7 +5825,7 @@ export declare const useWorkspace: () => {
|
|
|
4710
5825
|
body: {
|
|
4711
5826
|
raw: {
|
|
4712
5827
|
value: string;
|
|
4713
|
-
encoding: "
|
|
5828
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4714
5829
|
};
|
|
4715
5830
|
formData: {
|
|
4716
5831
|
value: {
|
|
@@ -4724,15 +5839,35 @@ export declare const useWorkspace: () => {
|
|
|
4724
5839
|
required?: boolean | undefined;
|
|
4725
5840
|
description?: string | undefined;
|
|
4726
5841
|
enum?: string[] | undefined;
|
|
4727
|
-
file?: any;
|
|
4728
|
-
refUid?: string | undefined;
|
|
4729
|
-
format?: string | undefined;
|
|
4730
5842
|
nullable?: boolean | undefined;
|
|
5843
|
+
format?: string | undefined;
|
|
5844
|
+
file?: {
|
|
5845
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5846
|
+
type: string;
|
|
5847
|
+
name: string;
|
|
5848
|
+
size: number;
|
|
5849
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5850
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5851
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5852
|
+
lastModified: number;
|
|
5853
|
+
webkitRelativePath: string;
|
|
5854
|
+
} | undefined;
|
|
5855
|
+
refUid?: string | undefined;
|
|
4731
5856
|
}[];
|
|
4732
5857
|
encoding: "form-data" | "urlencoded";
|
|
4733
5858
|
};
|
|
4734
5859
|
activeBody: "raw" | "formData" | "binary";
|
|
4735
|
-
binary?:
|
|
5860
|
+
binary?: {
|
|
5861
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5862
|
+
type: string;
|
|
5863
|
+
name: string;
|
|
5864
|
+
size: number;
|
|
5865
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5866
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5867
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5868
|
+
lastModified: number;
|
|
5869
|
+
webkitRelativePath: string;
|
|
5870
|
+
} | undefined;
|
|
4736
5871
|
};
|
|
4737
5872
|
parameters: {
|
|
4738
5873
|
path: {
|
|
@@ -4746,10 +5881,20 @@ export declare const useWorkspace: () => {
|
|
|
4746
5881
|
required?: boolean | undefined;
|
|
4747
5882
|
description?: string | undefined;
|
|
4748
5883
|
enum?: string[] | undefined;
|
|
4749
|
-
file?: any;
|
|
4750
|
-
refUid?: string | undefined;
|
|
4751
|
-
format?: string | undefined;
|
|
4752
5884
|
nullable?: boolean | undefined;
|
|
5885
|
+
format?: string | undefined;
|
|
5886
|
+
file?: {
|
|
5887
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5888
|
+
type: string;
|
|
5889
|
+
name: string;
|
|
5890
|
+
size: number;
|
|
5891
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5892
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5893
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5894
|
+
lastModified: number;
|
|
5895
|
+
webkitRelativePath: string;
|
|
5896
|
+
} | undefined;
|
|
5897
|
+
refUid?: string | undefined;
|
|
4753
5898
|
}[];
|
|
4754
5899
|
query: {
|
|
4755
5900
|
value: string;
|
|
@@ -4762,10 +5907,20 @@ export declare const useWorkspace: () => {
|
|
|
4762
5907
|
required?: boolean | undefined;
|
|
4763
5908
|
description?: string | undefined;
|
|
4764
5909
|
enum?: string[] | undefined;
|
|
4765
|
-
file?: any;
|
|
4766
|
-
refUid?: string | undefined;
|
|
4767
|
-
format?: string | undefined;
|
|
4768
5910
|
nullable?: boolean | undefined;
|
|
5911
|
+
format?: string | undefined;
|
|
5912
|
+
file?: {
|
|
5913
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5914
|
+
type: string;
|
|
5915
|
+
name: string;
|
|
5916
|
+
size: number;
|
|
5917
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5918
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5919
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5920
|
+
lastModified: number;
|
|
5921
|
+
webkitRelativePath: string;
|
|
5922
|
+
} | undefined;
|
|
5923
|
+
refUid?: string | undefined;
|
|
4769
5924
|
}[];
|
|
4770
5925
|
headers: {
|
|
4771
5926
|
value: string;
|
|
@@ -4778,10 +5933,20 @@ export declare const useWorkspace: () => {
|
|
|
4778
5933
|
required?: boolean | undefined;
|
|
4779
5934
|
description?: string | undefined;
|
|
4780
5935
|
enum?: string[] | undefined;
|
|
4781
|
-
file?: any;
|
|
4782
|
-
refUid?: string | undefined;
|
|
4783
|
-
format?: string | undefined;
|
|
4784
5936
|
nullable?: boolean | undefined;
|
|
5937
|
+
format?: string | undefined;
|
|
5938
|
+
file?: {
|
|
5939
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5940
|
+
type: string;
|
|
5941
|
+
name: string;
|
|
5942
|
+
size: number;
|
|
5943
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5944
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5945
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5946
|
+
lastModified: number;
|
|
5947
|
+
webkitRelativePath: string;
|
|
5948
|
+
} | undefined;
|
|
5949
|
+
refUid?: string | undefined;
|
|
4785
5950
|
}[];
|
|
4786
5951
|
cookies: {
|
|
4787
5952
|
value: string;
|
|
@@ -4794,15 +5959,25 @@ export declare const useWorkspace: () => {
|
|
|
4794
5959
|
required?: boolean | undefined;
|
|
4795
5960
|
description?: string | undefined;
|
|
4796
5961
|
enum?: string[] | undefined;
|
|
4797
|
-
file?: any;
|
|
4798
|
-
refUid?: string | undefined;
|
|
4799
|
-
format?: string | undefined;
|
|
4800
5962
|
nullable?: boolean | undefined;
|
|
5963
|
+
format?: string | undefined;
|
|
5964
|
+
file?: {
|
|
5965
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
5966
|
+
type: string;
|
|
5967
|
+
name: string;
|
|
5968
|
+
size: number;
|
|
5969
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
5970
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
5971
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
5972
|
+
lastModified: number;
|
|
5973
|
+
webkitRelativePath: string;
|
|
5974
|
+
} | undefined;
|
|
5975
|
+
refUid?: string | undefined;
|
|
4801
5976
|
}[];
|
|
4802
5977
|
};
|
|
4803
5978
|
auth: Record<string, any>;
|
|
4804
5979
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4805
|
-
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}.
|
|
5980
|
+
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" ? {
|
|
4806
5981
|
uid: string;
|
|
4807
5982
|
name: string;
|
|
4808
5983
|
url: string;
|
|
@@ -4810,7 +5985,7 @@ export declare const useWorkspace: () => {
|
|
|
4810
5985
|
body: {
|
|
4811
5986
|
raw: {
|
|
4812
5987
|
value: string;
|
|
4813
|
-
encoding: "
|
|
5988
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4814
5989
|
};
|
|
4815
5990
|
formData: {
|
|
4816
5991
|
value: {
|
|
@@ -4824,15 +5999,35 @@ export declare const useWorkspace: () => {
|
|
|
4824
5999
|
required?: boolean | undefined;
|
|
4825
6000
|
description?: string | undefined;
|
|
4826
6001
|
enum?: string[] | undefined;
|
|
4827
|
-
file?: any;
|
|
4828
|
-
refUid?: string | undefined;
|
|
4829
|
-
format?: string | undefined;
|
|
4830
6002
|
nullable?: boolean | undefined;
|
|
6003
|
+
format?: string | undefined;
|
|
6004
|
+
file?: {
|
|
6005
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6006
|
+
type: string;
|
|
6007
|
+
name: string;
|
|
6008
|
+
size: number;
|
|
6009
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6010
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6011
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6012
|
+
lastModified: number;
|
|
6013
|
+
webkitRelativePath: string;
|
|
6014
|
+
} | undefined;
|
|
6015
|
+
refUid?: string | undefined;
|
|
4831
6016
|
}[];
|
|
4832
6017
|
encoding: "form-data" | "urlencoded";
|
|
4833
6018
|
};
|
|
4834
6019
|
activeBody: "raw" | "formData" | "binary";
|
|
4835
|
-
binary?:
|
|
6020
|
+
binary?: {
|
|
6021
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6022
|
+
type: string;
|
|
6023
|
+
name: string;
|
|
6024
|
+
size: number;
|
|
6025
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6026
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6027
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6028
|
+
lastModified: number;
|
|
6029
|
+
webkitRelativePath: string;
|
|
6030
|
+
} | undefined;
|
|
4836
6031
|
};
|
|
4837
6032
|
parameters: {
|
|
4838
6033
|
path: {
|
|
@@ -4846,10 +6041,20 @@ export declare const useWorkspace: () => {
|
|
|
4846
6041
|
required?: boolean | undefined;
|
|
4847
6042
|
description?: string | undefined;
|
|
4848
6043
|
enum?: string[] | undefined;
|
|
4849
|
-
file?: any;
|
|
4850
|
-
refUid?: string | undefined;
|
|
4851
|
-
format?: string | undefined;
|
|
4852
6044
|
nullable?: boolean | undefined;
|
|
6045
|
+
format?: string | undefined;
|
|
6046
|
+
file?: {
|
|
6047
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6048
|
+
type: string;
|
|
6049
|
+
name: string;
|
|
6050
|
+
size: number;
|
|
6051
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6052
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6053
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6054
|
+
lastModified: number;
|
|
6055
|
+
webkitRelativePath: string;
|
|
6056
|
+
} | undefined;
|
|
6057
|
+
refUid?: string | undefined;
|
|
4853
6058
|
}[];
|
|
4854
6059
|
query: {
|
|
4855
6060
|
value: string;
|
|
@@ -4862,10 +6067,20 @@ export declare const useWorkspace: () => {
|
|
|
4862
6067
|
required?: boolean | undefined;
|
|
4863
6068
|
description?: string | undefined;
|
|
4864
6069
|
enum?: string[] | undefined;
|
|
4865
|
-
file?: any;
|
|
4866
|
-
refUid?: string | undefined;
|
|
4867
|
-
format?: string | undefined;
|
|
4868
6070
|
nullable?: boolean | undefined;
|
|
6071
|
+
format?: string | undefined;
|
|
6072
|
+
file?: {
|
|
6073
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6074
|
+
type: string;
|
|
6075
|
+
name: string;
|
|
6076
|
+
size: number;
|
|
6077
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6078
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6079
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6080
|
+
lastModified: number;
|
|
6081
|
+
webkitRelativePath: string;
|
|
6082
|
+
} | undefined;
|
|
6083
|
+
refUid?: string | undefined;
|
|
4869
6084
|
}[];
|
|
4870
6085
|
headers: {
|
|
4871
6086
|
value: string;
|
|
@@ -4878,10 +6093,20 @@ export declare const useWorkspace: () => {
|
|
|
4878
6093
|
required?: boolean | undefined;
|
|
4879
6094
|
description?: string | undefined;
|
|
4880
6095
|
enum?: string[] | undefined;
|
|
4881
|
-
file?: any;
|
|
4882
|
-
refUid?: string | undefined;
|
|
4883
|
-
format?: string | undefined;
|
|
4884
6096
|
nullable?: boolean | undefined;
|
|
6097
|
+
format?: string | undefined;
|
|
6098
|
+
file?: {
|
|
6099
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6100
|
+
type: string;
|
|
6101
|
+
name: string;
|
|
6102
|
+
size: number;
|
|
6103
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6104
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6105
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6106
|
+
lastModified: number;
|
|
6107
|
+
webkitRelativePath: string;
|
|
6108
|
+
} | undefined;
|
|
6109
|
+
refUid?: string | undefined;
|
|
4885
6110
|
}[];
|
|
4886
6111
|
cookies: {
|
|
4887
6112
|
value: string;
|
|
@@ -4894,10 +6119,20 @@ export declare const useWorkspace: () => {
|
|
|
4894
6119
|
required?: boolean | undefined;
|
|
4895
6120
|
description?: string | undefined;
|
|
4896
6121
|
enum?: string[] | undefined;
|
|
4897
|
-
file?: any;
|
|
4898
|
-
refUid?: string | undefined;
|
|
4899
|
-
format?: string | undefined;
|
|
4900
6122
|
nullable?: boolean | undefined;
|
|
6123
|
+
format?: string | undefined;
|
|
6124
|
+
file?: {
|
|
6125
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6126
|
+
type: string;
|
|
6127
|
+
name: string;
|
|
6128
|
+
size: number;
|
|
6129
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6130
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6131
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6132
|
+
lastModified: number;
|
|
6133
|
+
webkitRelativePath: string;
|
|
6134
|
+
} | undefined;
|
|
6135
|
+
refUid?: string | undefined;
|
|
4901
6136
|
}[];
|
|
4902
6137
|
};
|
|
4903
6138
|
auth: Record<string, any>;
|
|
@@ -4909,7 +6144,7 @@ export declare const useWorkspace: () => {
|
|
|
4909
6144
|
body: {
|
|
4910
6145
|
raw: {
|
|
4911
6146
|
value: string;
|
|
4912
|
-
encoding: "
|
|
6147
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
4913
6148
|
};
|
|
4914
6149
|
formData: {
|
|
4915
6150
|
value: {
|
|
@@ -4923,15 +6158,35 @@ export declare const useWorkspace: () => {
|
|
|
4923
6158
|
required?: boolean | undefined;
|
|
4924
6159
|
description?: string | undefined;
|
|
4925
6160
|
enum?: string[] | undefined;
|
|
4926
|
-
file?: any;
|
|
4927
|
-
refUid?: string | undefined;
|
|
4928
|
-
format?: string | undefined;
|
|
4929
6161
|
nullable?: boolean | undefined;
|
|
6162
|
+
format?: string | undefined;
|
|
6163
|
+
file?: {
|
|
6164
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6165
|
+
type: string;
|
|
6166
|
+
name: string;
|
|
6167
|
+
size: number;
|
|
6168
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6169
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6170
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6171
|
+
lastModified: number;
|
|
6172
|
+
webkitRelativePath: string;
|
|
6173
|
+
} | undefined;
|
|
6174
|
+
refUid?: string | undefined;
|
|
4930
6175
|
}[];
|
|
4931
6176
|
encoding: "form-data" | "urlencoded";
|
|
4932
6177
|
};
|
|
4933
6178
|
activeBody: "raw" | "formData" | "binary";
|
|
4934
|
-
binary?:
|
|
6179
|
+
binary?: {
|
|
6180
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6181
|
+
type: string;
|
|
6182
|
+
name: string;
|
|
6183
|
+
size: number;
|
|
6184
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6185
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6186
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6187
|
+
lastModified: number;
|
|
6188
|
+
webkitRelativePath: string;
|
|
6189
|
+
} | undefined;
|
|
4935
6190
|
};
|
|
4936
6191
|
parameters: {
|
|
4937
6192
|
path: {
|
|
@@ -4945,10 +6200,20 @@ export declare const useWorkspace: () => {
|
|
|
4945
6200
|
required?: boolean | undefined;
|
|
4946
6201
|
description?: string | undefined;
|
|
4947
6202
|
enum?: string[] | undefined;
|
|
4948
|
-
file?: any;
|
|
4949
|
-
refUid?: string | undefined;
|
|
4950
|
-
format?: string | undefined;
|
|
4951
6203
|
nullable?: boolean | undefined;
|
|
6204
|
+
format?: string | undefined;
|
|
6205
|
+
file?: {
|
|
6206
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6207
|
+
type: string;
|
|
6208
|
+
name: string;
|
|
6209
|
+
size: number;
|
|
6210
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6211
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6212
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6213
|
+
lastModified: number;
|
|
6214
|
+
webkitRelativePath: string;
|
|
6215
|
+
} | undefined;
|
|
6216
|
+
refUid?: string | undefined;
|
|
4952
6217
|
}[];
|
|
4953
6218
|
query: {
|
|
4954
6219
|
value: string;
|
|
@@ -4961,10 +6226,20 @@ export declare const useWorkspace: () => {
|
|
|
4961
6226
|
required?: boolean | undefined;
|
|
4962
6227
|
description?: string | undefined;
|
|
4963
6228
|
enum?: string[] | undefined;
|
|
4964
|
-
file?: any;
|
|
4965
|
-
refUid?: string | undefined;
|
|
4966
|
-
format?: string | undefined;
|
|
4967
6229
|
nullable?: boolean | undefined;
|
|
6230
|
+
format?: string | undefined;
|
|
6231
|
+
file?: {
|
|
6232
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6233
|
+
type: string;
|
|
6234
|
+
name: string;
|
|
6235
|
+
size: number;
|
|
6236
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6237
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6238
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6239
|
+
lastModified: number;
|
|
6240
|
+
webkitRelativePath: string;
|
|
6241
|
+
} | undefined;
|
|
6242
|
+
refUid?: string | undefined;
|
|
4968
6243
|
}[];
|
|
4969
6244
|
headers: {
|
|
4970
6245
|
value: string;
|
|
@@ -4977,10 +6252,20 @@ export declare const useWorkspace: () => {
|
|
|
4977
6252
|
required?: boolean | undefined;
|
|
4978
6253
|
description?: string | undefined;
|
|
4979
6254
|
enum?: string[] | undefined;
|
|
4980
|
-
file?: any;
|
|
4981
|
-
refUid?: string | undefined;
|
|
4982
|
-
format?: string | undefined;
|
|
4983
6255
|
nullable?: boolean | undefined;
|
|
6256
|
+
format?: string | undefined;
|
|
6257
|
+
file?: {
|
|
6258
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6259
|
+
type: string;
|
|
6260
|
+
name: string;
|
|
6261
|
+
size: number;
|
|
6262
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6263
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6264
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6265
|
+
lastModified: number;
|
|
6266
|
+
webkitRelativePath: string;
|
|
6267
|
+
} | undefined;
|
|
6268
|
+
refUid?: string | undefined;
|
|
4984
6269
|
}[];
|
|
4985
6270
|
cookies: {
|
|
4986
6271
|
value: string;
|
|
@@ -4993,10 +6278,20 @@ export declare const useWorkspace: () => {
|
|
|
4993
6278
|
required?: boolean | undefined;
|
|
4994
6279
|
description?: string | undefined;
|
|
4995
6280
|
enum?: string[] | undefined;
|
|
4996
|
-
file?: any;
|
|
4997
|
-
refUid?: string | undefined;
|
|
4998
|
-
format?: string | undefined;
|
|
4999
6281
|
nullable?: boolean | undefined;
|
|
6282
|
+
format?: string | undefined;
|
|
6283
|
+
file?: {
|
|
6284
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6285
|
+
type: string;
|
|
6286
|
+
name: string;
|
|
6287
|
+
size: number;
|
|
6288
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6289
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6290
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6291
|
+
lastModified: number;
|
|
6292
|
+
webkitRelativePath: string;
|
|
6293
|
+
} | undefined;
|
|
6294
|
+
refUid?: string | undefined;
|
|
5000
6295
|
}[];
|
|
5001
6296
|
};
|
|
5002
6297
|
auth: Record<string, any>;
|
|
@@ -5008,7 +6303,7 @@ export declare const useWorkspace: () => {
|
|
|
5008
6303
|
body: {
|
|
5009
6304
|
raw: {
|
|
5010
6305
|
value: string;
|
|
5011
|
-
encoding: "
|
|
6306
|
+
encoding: "xml" | "text" | "json" | "html" | "javascript" | "yaml" | "edn";
|
|
5012
6307
|
};
|
|
5013
6308
|
formData: {
|
|
5014
6309
|
value: {
|
|
@@ -5022,15 +6317,35 @@ export declare const useWorkspace: () => {
|
|
|
5022
6317
|
required?: boolean | undefined;
|
|
5023
6318
|
description?: string | undefined;
|
|
5024
6319
|
enum?: string[] | undefined;
|
|
5025
|
-
file?: any;
|
|
5026
|
-
refUid?: string | undefined;
|
|
5027
|
-
format?: string | undefined;
|
|
5028
6320
|
nullable?: boolean | undefined;
|
|
6321
|
+
format?: string | undefined;
|
|
6322
|
+
file?: {
|
|
6323
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6324
|
+
type: string;
|
|
6325
|
+
name: string;
|
|
6326
|
+
size: number;
|
|
6327
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6328
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6329
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6330
|
+
lastModified: number;
|
|
6331
|
+
webkitRelativePath: string;
|
|
6332
|
+
} | undefined;
|
|
6333
|
+
refUid?: string | undefined;
|
|
5029
6334
|
}[];
|
|
5030
6335
|
encoding: "form-data" | "urlencoded";
|
|
5031
6336
|
};
|
|
5032
6337
|
activeBody: "raw" | "formData" | "binary";
|
|
5033
|
-
binary?:
|
|
6338
|
+
binary?: {
|
|
6339
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6340
|
+
type: string;
|
|
6341
|
+
name: string;
|
|
6342
|
+
size: number;
|
|
6343
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6344
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6345
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6346
|
+
lastModified: number;
|
|
6347
|
+
webkitRelativePath: string;
|
|
6348
|
+
} | undefined;
|
|
5034
6349
|
};
|
|
5035
6350
|
parameters: {
|
|
5036
6351
|
path: {
|
|
@@ -5044,10 +6359,20 @@ export declare const useWorkspace: () => {
|
|
|
5044
6359
|
required?: boolean | undefined;
|
|
5045
6360
|
description?: string | undefined;
|
|
5046
6361
|
enum?: string[] | undefined;
|
|
5047
|
-
file?: any;
|
|
5048
|
-
refUid?: string | undefined;
|
|
5049
|
-
format?: string | undefined;
|
|
5050
6362
|
nullable?: boolean | undefined;
|
|
6363
|
+
format?: string | undefined;
|
|
6364
|
+
file?: {
|
|
6365
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6366
|
+
type: string;
|
|
6367
|
+
name: string;
|
|
6368
|
+
size: number;
|
|
6369
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6370
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6371
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6372
|
+
lastModified: number;
|
|
6373
|
+
webkitRelativePath: string;
|
|
6374
|
+
} | undefined;
|
|
6375
|
+
refUid?: string | undefined;
|
|
5051
6376
|
}[];
|
|
5052
6377
|
query: {
|
|
5053
6378
|
value: string;
|
|
@@ -5060,10 +6385,20 @@ export declare const useWorkspace: () => {
|
|
|
5060
6385
|
required?: boolean | undefined;
|
|
5061
6386
|
description?: string | undefined;
|
|
5062
6387
|
enum?: string[] | undefined;
|
|
5063
|
-
file?: any;
|
|
5064
|
-
refUid?: string | undefined;
|
|
5065
|
-
format?: string | undefined;
|
|
5066
6388
|
nullable?: boolean | undefined;
|
|
6389
|
+
format?: string | undefined;
|
|
6390
|
+
file?: {
|
|
6391
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6392
|
+
type: string;
|
|
6393
|
+
name: string;
|
|
6394
|
+
size: number;
|
|
6395
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6396
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6397
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6398
|
+
lastModified: number;
|
|
6399
|
+
webkitRelativePath: string;
|
|
6400
|
+
} | undefined;
|
|
6401
|
+
refUid?: string | undefined;
|
|
5067
6402
|
}[];
|
|
5068
6403
|
headers: {
|
|
5069
6404
|
value: string;
|
|
@@ -5076,10 +6411,20 @@ export declare const useWorkspace: () => {
|
|
|
5076
6411
|
required?: boolean | undefined;
|
|
5077
6412
|
description?: string | undefined;
|
|
5078
6413
|
enum?: string[] | undefined;
|
|
5079
|
-
file?: any;
|
|
5080
|
-
refUid?: string | undefined;
|
|
5081
|
-
format?: string | undefined;
|
|
5082
6414
|
nullable?: boolean | undefined;
|
|
6415
|
+
format?: string | undefined;
|
|
6416
|
+
file?: {
|
|
6417
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6418
|
+
type: string;
|
|
6419
|
+
name: string;
|
|
6420
|
+
size: number;
|
|
6421
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6422
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6423
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6424
|
+
lastModified: number;
|
|
6425
|
+
webkitRelativePath: string;
|
|
6426
|
+
} | undefined;
|
|
6427
|
+
refUid?: string | undefined;
|
|
5083
6428
|
}[];
|
|
5084
6429
|
cookies: {
|
|
5085
6430
|
value: string;
|
|
@@ -5092,10 +6437,20 @@ export declare const useWorkspace: () => {
|
|
|
5092
6437
|
required?: boolean | undefined;
|
|
5093
6438
|
description?: string | undefined;
|
|
5094
6439
|
enum?: string[] | undefined;
|
|
5095
|
-
file?: any;
|
|
5096
|
-
refUid?: string | undefined;
|
|
5097
|
-
format?: string | undefined;
|
|
5098
6440
|
nullable?: boolean | undefined;
|
|
6441
|
+
format?: string | undefined;
|
|
6442
|
+
file?: {
|
|
6443
|
+
slice: (args_0: number | undefined, args_1: number | undefined, args_2: string | undefined, ...args_3: unknown[]) => any;
|
|
6444
|
+
type: string;
|
|
6445
|
+
name: string;
|
|
6446
|
+
size: number;
|
|
6447
|
+
arrayBuffer: (...args: unknown[]) => Promise<ArrayBuffer>;
|
|
6448
|
+
stream: (...args: unknown[]) => ReadableStream<Uint8Array>;
|
|
6449
|
+
text: (...args: unknown[]) => Promise<string>;
|
|
6450
|
+
lastModified: number;
|
|
6451
|
+
webkitRelativePath: string;
|
|
6452
|
+
} | undefined;
|
|
6453
|
+
refUid?: string | undefined;
|
|
5099
6454
|
}[];
|
|
5100
6455
|
};
|
|
5101
6456
|
auth: Record<string, any>;
|
|
@@ -5751,6 +7106,7 @@ export declare const useWorkspace: () => {
|
|
|
5751
7106
|
isReadOnly: boolean;
|
|
5752
7107
|
collectionUids: string[];
|
|
5753
7108
|
environmentUids: string[];
|
|
7109
|
+
activeEnvironmentId: string;
|
|
5754
7110
|
cookieUids: string[];
|
|
5755
7111
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5756
7112
|
hotKeyConfig?: {
|
|
@@ -5769,6 +7125,7 @@ export declare const useWorkspace: () => {
|
|
|
5769
7125
|
isReadOnly: boolean;
|
|
5770
7126
|
collectionUids: string[];
|
|
5771
7127
|
environmentUids: string[];
|
|
7128
|
+
activeEnvironmentId: string;
|
|
5772
7129
|
cookieUids: string[];
|
|
5773
7130
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5774
7131
|
hotKeyConfig?: {
|
|
@@ -5789,6 +7146,7 @@ export declare const useWorkspace: () => {
|
|
|
5789
7146
|
isReadOnly: boolean;
|
|
5790
7147
|
collectionUids: string[];
|
|
5791
7148
|
environmentUids: string[];
|
|
7149
|
+
activeEnvironmentId: string;
|
|
5792
7150
|
cookieUids: string[];
|
|
5793
7151
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5794
7152
|
hotKeyConfig?: {
|
|
@@ -5800,13 +7158,14 @@ export declare const useWorkspace: () => {
|
|
|
5800
7158
|
} | undefined;
|
|
5801
7159
|
proxyUrl?: string | undefined;
|
|
5802
7160
|
}) => void;
|
|
5803
|
-
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" ? {
|
|
7161
|
+
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" ? {
|
|
5804
7162
|
uid: string;
|
|
5805
7163
|
name: string;
|
|
5806
7164
|
description: string;
|
|
5807
7165
|
isReadOnly: boolean;
|
|
5808
7166
|
collectionUids: string[];
|
|
5809
7167
|
environmentUids: string[];
|
|
7168
|
+
activeEnvironmentId: string;
|
|
5810
7169
|
cookieUids: string[];
|
|
5811
7170
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5812
7171
|
hotKeyConfig?: {
|
|
@@ -5817,13 +7176,14 @@ export declare const useWorkspace: () => {
|
|
|
5817
7176
|
}>> | undefined;
|
|
5818
7177
|
} | undefined;
|
|
5819
7178
|
proxyUrl?: string | undefined;
|
|
5820
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
7179
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5821
7180
|
uid: string;
|
|
5822
7181
|
name: string;
|
|
5823
7182
|
description: string;
|
|
5824
7183
|
isReadOnly: boolean;
|
|
5825
7184
|
collectionUids: string[];
|
|
5826
7185
|
environmentUids: string[];
|
|
7186
|
+
activeEnvironmentId: string;
|
|
5827
7187
|
cookieUids: string[];
|
|
5828
7188
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5829
7189
|
hotKeyConfig?: {
|
|
@@ -5841,6 +7201,7 @@ export declare const useWorkspace: () => {
|
|
|
5841
7201
|
isReadOnly: boolean;
|
|
5842
7202
|
collectionUids: string[];
|
|
5843
7203
|
environmentUids: string[];
|
|
7204
|
+
activeEnvironmentId: string;
|
|
5844
7205
|
cookieUids: string[];
|
|
5845
7206
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5846
7207
|
hotKeyConfig?: {
|
|
@@ -5852,13 +7213,14 @@ export declare const useWorkspace: () => {
|
|
|
5852
7213
|
} | undefined;
|
|
5853
7214
|
proxyUrl?: string | undefined;
|
|
5854
7215
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5855
|
-
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" ? {
|
|
7216
|
+
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" ? {
|
|
5856
7217
|
uid: string;
|
|
5857
7218
|
name: string;
|
|
5858
7219
|
description: string;
|
|
5859
7220
|
isReadOnly: boolean;
|
|
5860
7221
|
collectionUids: string[];
|
|
5861
7222
|
environmentUids: string[];
|
|
7223
|
+
activeEnvironmentId: string;
|
|
5862
7224
|
cookieUids: string[];
|
|
5863
7225
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5864
7226
|
hotKeyConfig?: {
|
|
@@ -5869,13 +7231,14 @@ export declare const useWorkspace: () => {
|
|
|
5869
7231
|
}>> | undefined;
|
|
5870
7232
|
} | undefined;
|
|
5871
7233
|
proxyUrl?: string | undefined;
|
|
5872
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
7234
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5873
7235
|
uid: string;
|
|
5874
7236
|
name: string;
|
|
5875
7237
|
description: string;
|
|
5876
7238
|
isReadOnly: boolean;
|
|
5877
7239
|
collectionUids: string[];
|
|
5878
7240
|
environmentUids: string[];
|
|
7241
|
+
activeEnvironmentId: string;
|
|
5879
7242
|
cookieUids: string[];
|
|
5880
7243
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5881
7244
|
hotKeyConfig?: {
|
|
@@ -5893,6 +7256,7 @@ export declare const useWorkspace: () => {
|
|
|
5893
7256
|
isReadOnly: boolean;
|
|
5894
7257
|
collectionUids: string[];
|
|
5895
7258
|
environmentUids: string[];
|
|
7259
|
+
activeEnvironmentId: string;
|
|
5896
7260
|
cookieUids: string[];
|
|
5897
7261
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5898
7262
|
hotKeyConfig?: {
|
|
@@ -5909,4 +7273,5 @@ export declare const useWorkspace: () => {
|
|
|
5909
7273
|
loadLocalStorage: () => void;
|
|
5910
7274
|
};
|
|
5911
7275
|
};
|
|
7276
|
+
export {};
|
|
5912
7277
|
//# sourceMappingURL=workspace.d.ts.map
|