@scalar/api-client 2.0.52 → 2.0.54
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 +21 -0
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/components/ScalarHotkey.vue.js +2 -2
- package/dist/components/TopNav/TopNav.vue.d.ts.map +1 -1
- package/dist/components/TopNav/TopNav.vue.js +2 -2
- package/dist/components/TopNav/TopNav.vue2.js +61 -52
- package/dist/components/TopNav/TopNavItem.vue.d.ts +6 -0
- package/dist/components/TopNav/TopNavItem.vue.d.ts.map +1 -1
- package/dist/components/TopNav/TopNavItem.vue.js +2 -2
- package/dist/components/TopNav/TopNavItem.vue2.js +122 -41
- package/dist/layouts/App/create-api-client-app.d.ts +334 -334
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +668 -668
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +331 -331
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.d.ts +2 -2
- package/dist/libs/local-storage.js +1 -1
- package/dist/store/workspace.d.ts +683 -771
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +5 -4
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { Spec } from '@scalar/oas-utils';
|
|
2
1
|
import { type WorkspacePayload } from '@scalar/oas-utils/entities/workspace';
|
|
3
2
|
import { type Collection, type CollectionPayload } from '@scalar/oas-utils/entities/workspace/collection';
|
|
4
3
|
import { type Folder, type FolderPayload } from '@scalar/oas-utils/entities/workspace/folder';
|
|
@@ -7,6 +6,7 @@ import { type Server, type ServerPayload } from '@scalar/oas-utils/entities/work
|
|
|
7
6
|
import { type Request, type RequestEvent, type RequestExample, type RequestPayload } from '@scalar/oas-utils/entities/workspace/spec';
|
|
8
7
|
import type { Path, PathValue } from '@scalar/object-utils/nested';
|
|
9
8
|
import type { AnyObject } from '@scalar/openapi-parser';
|
|
9
|
+
import type { Spec } from '@scalar/types/legacy';
|
|
10
10
|
import type { Router } from 'vue-router';
|
|
11
11
|
export type UpdateScheme = <P extends Path<SecurityScheme>>(path: P, value: NonNullable<PathValue<SecurityScheme, P>>) => void;
|
|
12
12
|
/**
|
|
@@ -16,18 +16,18 @@ export type UpdateScheme = <P extends Path<SecurityScheme>>(path: P, value: NonN
|
|
|
16
16
|
export declare const createWorkspaceStore: (router: Router, persistData?: boolean) => {
|
|
17
17
|
workspaces: Record<string, {
|
|
18
18
|
uid: string;
|
|
19
|
-
description: string;
|
|
20
19
|
name: string;
|
|
20
|
+
description: string;
|
|
21
21
|
isReadOnly: boolean;
|
|
22
22
|
collectionUids: string[];
|
|
23
23
|
environmentUids: string[];
|
|
24
24
|
cookieUids: string[];
|
|
25
25
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
26
26
|
hotKeyConfig?: {
|
|
27
|
-
modifiers: ("
|
|
28
|
-
hotKeys?: Partial<Record<"" | "
|
|
27
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
28
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
29
29
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
30
|
-
modifiers?: ("
|
|
30
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
31
31
|
}>> | undefined;
|
|
32
32
|
} | undefined;
|
|
33
33
|
proxyUrl?: string | undefined;
|
|
@@ -114,14 +114,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
114
114
|
minimum?: number | undefined;
|
|
115
115
|
type?: string | undefined;
|
|
116
116
|
maximum?: number | undefined;
|
|
117
|
-
description?: string | undefined;
|
|
118
117
|
default?: any;
|
|
119
118
|
required?: boolean | undefined;
|
|
119
|
+
description?: string | undefined;
|
|
120
120
|
enum?: string[] | undefined;
|
|
121
|
-
file?: File | undefined;
|
|
122
|
-
refUid?: string | undefined;
|
|
123
|
-
format?: string | undefined;
|
|
124
121
|
nullable?: boolean | undefined;
|
|
122
|
+
format?: string | undefined;
|
|
123
|
+
file?: any;
|
|
124
|
+
refUid?: string | undefined;
|
|
125
125
|
}[];
|
|
126
126
|
query: {
|
|
127
127
|
value: string;
|
|
@@ -130,57 +130,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
130
130
|
minimum?: number | undefined;
|
|
131
131
|
type?: string | undefined;
|
|
132
132
|
maximum?: number | undefined;
|
|
133
|
-
description?: string | undefined;
|
|
134
133
|
default?: any;
|
|
135
134
|
required?: boolean | undefined;
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
?: string[] | undefined;
|
|
139
|
-
file?: File | undefined;
|
|
140
|
-
refUid
|
|
141
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
142
|
-
?: string | undefined;
|
|
143
|
-
format?: string | undefined;
|
|
135
|
+
description?: string | undefined;
|
|
136
|
+
enum?: string[] | undefined;
|
|
144
137
|
nullable?: boolean | undefined;
|
|
138
|
+
format?: string | undefined;
|
|
139
|
+
file?: any;
|
|
140
|
+
refUid?: string | undefined;
|
|
145
141
|
}[];
|
|
146
|
-
|
|
142
|
+
headers: {
|
|
147
143
|
value: string;
|
|
148
144
|
key: string;
|
|
149
145
|
enabled: boolean;
|
|
150
146
|
minimum?: number | undefined;
|
|
151
147
|
type?: string | undefined;
|
|
152
148
|
maximum?: number | undefined;
|
|
153
|
-
description?: string | undefined;
|
|
154
149
|
default?: any;
|
|
155
150
|
required?: boolean | undefined;
|
|
151
|
+
description?: string | undefined;
|
|
156
152
|
enum?: string[] | undefined;
|
|
157
|
-
file?: File | undefined;
|
|
158
|
-
refUid?: string | undefined;
|
|
159
|
-
format?: string | undefined;
|
|
160
153
|
nullable?: boolean | undefined;
|
|
154
|
+
format?: string | undefined;
|
|
155
|
+
file?: any;
|
|
156
|
+
refUid?: string | undefined;
|
|
161
157
|
}[];
|
|
162
|
-
|
|
158
|
+
cookies: {
|
|
163
159
|
value: string;
|
|
164
160
|
key: string;
|
|
165
161
|
enabled: boolean;
|
|
166
162
|
minimum?: number | undefined;
|
|
167
163
|
type?: string | undefined;
|
|
168
164
|
maximum?: number | undefined;
|
|
169
|
-
description?: string | undefined;
|
|
170
165
|
default?: any;
|
|
171
166
|
required?: boolean | undefined;
|
|
167
|
+
description?: string | undefined;
|
|
172
168
|
enum?: string[] | undefined;
|
|
173
|
-
file?: File | undefined;
|
|
174
|
-
refUid?: string | undefined;
|
|
175
|
-
format?: string | undefined;
|
|
176
169
|
nullable?: boolean | undefined;
|
|
170
|
+
format?: string | undefined;
|
|
171
|
+
file?: any;
|
|
172
|
+
refUid?: string | undefined;
|
|
177
173
|
}[];
|
|
178
174
|
};
|
|
179
175
|
requestUid: string;
|
|
180
176
|
body: {
|
|
181
177
|
raw: {
|
|
182
178
|
value: string;
|
|
183
|
-
encoding: "
|
|
179
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
184
180
|
};
|
|
185
181
|
formData: {
|
|
186
182
|
value: {
|
|
@@ -190,14 +186,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
190
186
|
minimum?: number | undefined;
|
|
191
187
|
type?: string | undefined;
|
|
192
188
|
maximum?: number | undefined;
|
|
193
|
-
description?: string | undefined;
|
|
194
189
|
default?: any;
|
|
195
190
|
required?: boolean | undefined;
|
|
191
|
+
description?: string | undefined;
|
|
196
192
|
enum?: string[] | undefined;
|
|
197
|
-
file?: File | undefined;
|
|
198
|
-
refUid?: string | undefined;
|
|
199
|
-
format?: string | undefined;
|
|
200
193
|
nullable?: boolean | undefined;
|
|
194
|
+
format?: string | undefined;
|
|
195
|
+
file?: any;
|
|
196
|
+
refUid?: string | undefined;
|
|
201
197
|
}[];
|
|
202
198
|
encoding: "form-data" | "urlencoded";
|
|
203
199
|
};
|
|
@@ -212,8 +208,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
212
208
|
url: string;
|
|
213
209
|
description?: string | undefined;
|
|
214
210
|
variables?: Record<string, {
|
|
215
|
-
uid: string;
|
|
216
211
|
default: string;
|
|
212
|
+
uid: string;
|
|
217
213
|
value?: string | undefined;
|
|
218
214
|
description?: string | undefined;
|
|
219
215
|
enum?: string[] | undefined;
|
|
@@ -223,8 +219,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
223
219
|
type: "apiKey";
|
|
224
220
|
value: string;
|
|
225
221
|
uid: string;
|
|
226
|
-
nameKey: string;
|
|
227
222
|
name: string;
|
|
223
|
+
nameKey: string;
|
|
228
224
|
in: "query" | "header" | "cookie";
|
|
229
225
|
description?: string | undefined;
|
|
230
226
|
} | {
|
|
@@ -339,14 +335,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
339
335
|
minimum?: number | undefined;
|
|
340
336
|
type?: string | undefined;
|
|
341
337
|
maximum?: number | undefined;
|
|
342
|
-
description?: string | undefined;
|
|
343
338
|
default?: any;
|
|
344
339
|
required?: boolean | undefined;
|
|
340
|
+
description?: string | undefined;
|
|
345
341
|
enum?: string[] | undefined;
|
|
346
|
-
file?: File | undefined;
|
|
347
|
-
refUid?: string | undefined;
|
|
348
|
-
format?: string | undefined;
|
|
349
342
|
nullable?: boolean | undefined;
|
|
343
|
+
format?: string | undefined;
|
|
344
|
+
file?: any;
|
|
345
|
+
refUid?: string | undefined;
|
|
350
346
|
}[];
|
|
351
347
|
query: {
|
|
352
348
|
value: string;
|
|
@@ -355,57 +351,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
355
351
|
minimum?: number | undefined;
|
|
356
352
|
type?: string | undefined;
|
|
357
353
|
maximum?: number | undefined;
|
|
358
|
-
description?: string | undefined;
|
|
359
354
|
default?: any;
|
|
360
355
|
required?: boolean | undefined;
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
?: string[] | undefined;
|
|
364
|
-
file?: File | undefined;
|
|
365
|
-
refUid
|
|
366
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
367
|
-
?: string | undefined;
|
|
368
|
-
format?: string | undefined;
|
|
356
|
+
description?: string | undefined;
|
|
357
|
+
enum?: string[] | undefined;
|
|
369
358
|
nullable?: boolean | undefined;
|
|
359
|
+
format?: string | undefined;
|
|
360
|
+
file?: any;
|
|
361
|
+
refUid?: string | undefined;
|
|
370
362
|
}[];
|
|
371
|
-
|
|
363
|
+
headers: {
|
|
372
364
|
value: string;
|
|
373
365
|
key: string;
|
|
374
366
|
enabled: boolean;
|
|
375
367
|
minimum?: number | undefined;
|
|
376
368
|
type?: string | undefined;
|
|
377
369
|
maximum?: number | undefined;
|
|
378
|
-
description?: string | undefined;
|
|
379
370
|
default?: any;
|
|
380
371
|
required?: boolean | undefined;
|
|
372
|
+
description?: string | undefined;
|
|
381
373
|
enum?: string[] | undefined;
|
|
382
|
-
file?: File | undefined;
|
|
383
|
-
refUid?: string | undefined;
|
|
384
|
-
format?: string | undefined;
|
|
385
374
|
nullable?: boolean | undefined;
|
|
375
|
+
format?: string | undefined;
|
|
376
|
+
file?: any;
|
|
377
|
+
refUid?: string | undefined;
|
|
386
378
|
}[];
|
|
387
|
-
|
|
379
|
+
cookies: {
|
|
388
380
|
value: string;
|
|
389
381
|
key: string;
|
|
390
382
|
enabled: boolean;
|
|
391
383
|
minimum?: number | undefined;
|
|
392
384
|
type?: string | undefined;
|
|
393
385
|
maximum?: number | undefined;
|
|
394
|
-
description?: string | undefined;
|
|
395
386
|
default?: any;
|
|
396
387
|
required?: boolean | undefined;
|
|
388
|
+
description?: string | undefined;
|
|
397
389
|
enum?: string[] | undefined;
|
|
398
|
-
file?: File | undefined;
|
|
399
|
-
refUid?: string | undefined;
|
|
400
|
-
format?: string | undefined;
|
|
401
390
|
nullable?: boolean | undefined;
|
|
391
|
+
format?: string | undefined;
|
|
392
|
+
file?: any;
|
|
393
|
+
refUid?: string | undefined;
|
|
402
394
|
}[];
|
|
403
395
|
};
|
|
404
396
|
requestUid: string;
|
|
405
397
|
body: {
|
|
406
398
|
raw: {
|
|
407
399
|
value: string;
|
|
408
|
-
encoding: "
|
|
400
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
409
401
|
};
|
|
410
402
|
formData: {
|
|
411
403
|
value: {
|
|
@@ -415,14 +407,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
415
407
|
minimum?: number | undefined;
|
|
416
408
|
type?: string | undefined;
|
|
417
409
|
maximum?: number | undefined;
|
|
418
|
-
description?: string | undefined;
|
|
419
410
|
default?: any;
|
|
420
411
|
required?: boolean | undefined;
|
|
412
|
+
description?: string | undefined;
|
|
421
413
|
enum?: string[] | undefined;
|
|
422
|
-
file?: File | undefined;
|
|
423
|
-
refUid?: string | undefined;
|
|
424
|
-
format?: string | undefined;
|
|
425
414
|
nullable?: boolean | undefined;
|
|
415
|
+
format?: string | undefined;
|
|
416
|
+
file?: any;
|
|
417
|
+
refUid?: string | undefined;
|
|
426
418
|
}[];
|
|
427
419
|
encoding: "form-data" | "urlencoded";
|
|
428
420
|
};
|
|
@@ -447,8 +439,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
447
439
|
type: "apiKey";
|
|
448
440
|
value: string;
|
|
449
441
|
uid: string;
|
|
450
|
-
nameKey: string;
|
|
451
442
|
name: string;
|
|
443
|
+
nameKey: string;
|
|
452
444
|
in: "query" | "header" | "cookie";
|
|
453
445
|
description?: string | undefined;
|
|
454
446
|
} | {
|
|
@@ -515,8 +507,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
515
507
|
url: string;
|
|
516
508
|
description?: string | undefined;
|
|
517
509
|
variables?: Record<string, {
|
|
518
|
-
uid: string;
|
|
519
510
|
default: string;
|
|
511
|
+
uid: string;
|
|
520
512
|
value?: string | undefined;
|
|
521
513
|
description?: string | undefined;
|
|
522
514
|
enum?: string[] | undefined;
|
|
@@ -524,18 +516,18 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
524
516
|
} | null>;
|
|
525
517
|
activeWorkspace: import("vue").ComputedRef<{
|
|
526
518
|
uid: string;
|
|
527
|
-
description: string;
|
|
528
519
|
name: string;
|
|
520
|
+
description: string;
|
|
529
521
|
isReadOnly: boolean;
|
|
530
522
|
collectionUids: string[];
|
|
531
523
|
environmentUids: string[];
|
|
532
524
|
cookieUids: string[];
|
|
533
525
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
534
526
|
hotKeyConfig?: {
|
|
535
|
-
modifiers: ("
|
|
536
|
-
hotKeys?: Partial<Record<"" | "
|
|
527
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
528
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
537
529
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
538
|
-
modifiers?: ("
|
|
530
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
539
531
|
}>> | undefined;
|
|
540
532
|
} | undefined;
|
|
541
533
|
proxyUrl?: string | undefined;
|
|
@@ -585,8 +577,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
585
577
|
url: string;
|
|
586
578
|
description?: string | undefined;
|
|
587
579
|
variables?: Record<string, {
|
|
588
|
-
uid: string;
|
|
589
580
|
default: string;
|
|
581
|
+
uid: string;
|
|
590
582
|
value?: string | undefined;
|
|
591
583
|
description?: string | undefined;
|
|
592
584
|
enum?: string[] | undefined;
|
|
@@ -1228,13 +1220,13 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1228
1220
|
path: string;
|
|
1229
1221
|
uid: string;
|
|
1230
1222
|
childUids: string[];
|
|
1231
|
-
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
1232
1223
|
parameters: {
|
|
1233
1224
|
path: Record<string, any>;
|
|
1234
1225
|
query: Record<string, any>;
|
|
1235
|
-
cookies: Record<string, any>;
|
|
1236
1226
|
headers: Record<string, any>;
|
|
1227
|
+
cookies: Record<string, any>;
|
|
1237
1228
|
};
|
|
1229
|
+
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
1238
1230
|
ref: {
|
|
1239
1231
|
path: string;
|
|
1240
1232
|
isExternal: boolean;
|
|
@@ -1252,8 +1244,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1252
1244
|
};
|
|
1253
1245
|
delete: (request: Request, parentUid?: string) => void;
|
|
1254
1246
|
set: (item: Request) => void;
|
|
1255
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1256
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1247
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends Path<Request[K]> ? PathValue<Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1248
|
+
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends Path<Request[K]> ? PathValue<Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1257
1249
|
undo: (uid: string) => void;
|
|
1258
1250
|
redo: (uid: string) => void;
|
|
1259
1251
|
loadLocalStorage: () => void;
|
|
@@ -1271,14 +1263,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1271
1263
|
minimum?: number | undefined;
|
|
1272
1264
|
type?: string | undefined;
|
|
1273
1265
|
maximum?: number | undefined;
|
|
1274
|
-
description?: string | undefined;
|
|
1275
1266
|
default?: any;
|
|
1276
1267
|
required?: boolean | undefined;
|
|
1268
|
+
description?: string | undefined;
|
|
1277
1269
|
enum?: string[] | undefined;
|
|
1278
|
-
file?: File | undefined;
|
|
1279
|
-
refUid?: string | undefined;
|
|
1280
|
-
format?: string | undefined;
|
|
1281
1270
|
nullable?: boolean | undefined;
|
|
1271
|
+
format?: string | undefined;
|
|
1272
|
+
file?: any;
|
|
1273
|
+
refUid?: string | undefined;
|
|
1282
1274
|
}[];
|
|
1283
1275
|
query: {
|
|
1284
1276
|
value: string;
|
|
@@ -1287,57 +1279,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1287
1279
|
minimum?: number | undefined;
|
|
1288
1280
|
type?: string | undefined;
|
|
1289
1281
|
maximum?: number | undefined;
|
|
1290
|
-
description?: string | undefined;
|
|
1291
1282
|
default?: any;
|
|
1292
1283
|
required?: boolean | undefined;
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
?: string[] | undefined;
|
|
1296
|
-
file?: File | undefined;
|
|
1297
|
-
refUid
|
|
1298
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
1299
|
-
?: string | undefined;
|
|
1300
|
-
format?: string | undefined;
|
|
1284
|
+
description?: string | undefined;
|
|
1285
|
+
enum?: string[] | undefined;
|
|
1301
1286
|
nullable?: boolean | undefined;
|
|
1287
|
+
format?: string | undefined;
|
|
1288
|
+
file?: any;
|
|
1289
|
+
refUid?: string | undefined;
|
|
1302
1290
|
}[];
|
|
1303
|
-
|
|
1291
|
+
headers: {
|
|
1304
1292
|
value: string;
|
|
1305
1293
|
key: string;
|
|
1306
1294
|
enabled: boolean;
|
|
1307
1295
|
minimum?: number | undefined;
|
|
1308
1296
|
type?: string | undefined;
|
|
1309
1297
|
maximum?: number | undefined;
|
|
1310
|
-
description?: string | undefined;
|
|
1311
1298
|
default?: any;
|
|
1312
1299
|
required?: boolean | undefined;
|
|
1300
|
+
description?: string | undefined;
|
|
1313
1301
|
enum?: string[] | undefined;
|
|
1314
|
-
file?: File | undefined;
|
|
1315
|
-
refUid?: string | undefined;
|
|
1316
|
-
format?: string | undefined;
|
|
1317
1302
|
nullable?: boolean | undefined;
|
|
1303
|
+
format?: string | undefined;
|
|
1304
|
+
file?: any;
|
|
1305
|
+
refUid?: string | undefined;
|
|
1318
1306
|
}[];
|
|
1319
|
-
|
|
1307
|
+
cookies: {
|
|
1320
1308
|
value: string;
|
|
1321
1309
|
key: string;
|
|
1322
1310
|
enabled: boolean;
|
|
1323
1311
|
minimum?: number | undefined;
|
|
1324
1312
|
type?: string | undefined;
|
|
1325
1313
|
maximum?: number | undefined;
|
|
1326
|
-
description?: string | undefined;
|
|
1327
1314
|
default?: any;
|
|
1328
1315
|
required?: boolean | undefined;
|
|
1316
|
+
description?: string | undefined;
|
|
1329
1317
|
enum?: string[] | undefined;
|
|
1330
|
-
file?: File | undefined;
|
|
1331
|
-
refUid?: string | undefined;
|
|
1332
|
-
format?: string | undefined;
|
|
1333
1318
|
nullable?: boolean | undefined;
|
|
1319
|
+
format?: string | undefined;
|
|
1320
|
+
file?: any;
|
|
1321
|
+
refUid?: string | undefined;
|
|
1334
1322
|
}[];
|
|
1335
1323
|
};
|
|
1336
1324
|
requestUid: string;
|
|
1337
1325
|
body: {
|
|
1338
1326
|
raw: {
|
|
1339
1327
|
value: string;
|
|
1340
|
-
encoding: "
|
|
1328
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1341
1329
|
};
|
|
1342
1330
|
formData: {
|
|
1343
1331
|
value: {
|
|
@@ -1347,14 +1335,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1347
1335
|
minimum?: number | undefined;
|
|
1348
1336
|
type?: string | undefined;
|
|
1349
1337
|
maximum?: number | undefined;
|
|
1350
|
-
description?: string | undefined;
|
|
1351
1338
|
default?: any;
|
|
1352
1339
|
required?: boolean | undefined;
|
|
1340
|
+
description?: string | undefined;
|
|
1353
1341
|
enum?: string[] | undefined;
|
|
1354
|
-
file?: File | undefined;
|
|
1355
|
-
refUid?: string | undefined;
|
|
1356
|
-
format?: string | undefined;
|
|
1357
1342
|
nullable?: boolean | undefined;
|
|
1343
|
+
format?: string | undefined;
|
|
1344
|
+
file?: any;
|
|
1345
|
+
refUid?: string | undefined;
|
|
1358
1346
|
}[];
|
|
1359
1347
|
encoding: "form-data" | "urlencoded";
|
|
1360
1348
|
};
|
|
@@ -1375,14 +1363,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1375
1363
|
minimum?: number | undefined;
|
|
1376
1364
|
type?: string | undefined;
|
|
1377
1365
|
maximum?: number | undefined;
|
|
1378
|
-
description?: string | undefined;
|
|
1379
1366
|
default?: any;
|
|
1380
1367
|
required?: boolean | undefined;
|
|
1368
|
+
description?: string | undefined;
|
|
1381
1369
|
enum?: string[] | undefined;
|
|
1382
|
-
file?: File | undefined;
|
|
1383
|
-
refUid?: string | undefined;
|
|
1384
|
-
format?: string | undefined;
|
|
1385
1370
|
nullable?: boolean | undefined;
|
|
1371
|
+
format?: string | undefined;
|
|
1372
|
+
file?: any;
|
|
1373
|
+
refUid?: string | undefined;
|
|
1386
1374
|
}[];
|
|
1387
1375
|
query: {
|
|
1388
1376
|
value: string;
|
|
@@ -1391,57 +1379,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1391
1379
|
minimum?: number | undefined;
|
|
1392
1380
|
type?: string | undefined;
|
|
1393
1381
|
maximum?: number | undefined;
|
|
1394
|
-
description?: string | undefined;
|
|
1395
1382
|
default?: any;
|
|
1396
1383
|
required?: boolean | undefined;
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
?: string[] | undefined;
|
|
1400
|
-
file?: File | undefined;
|
|
1401
|
-
refUid
|
|
1402
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
1403
|
-
?: string | undefined;
|
|
1404
|
-
format?: string | undefined;
|
|
1384
|
+
description?: string | undefined;
|
|
1385
|
+
enum?: string[] | undefined;
|
|
1405
1386
|
nullable?: boolean | undefined;
|
|
1387
|
+
format?: string | undefined;
|
|
1388
|
+
file?: any;
|
|
1389
|
+
refUid?: string | undefined;
|
|
1406
1390
|
}[];
|
|
1407
|
-
|
|
1391
|
+
headers: {
|
|
1408
1392
|
value: string;
|
|
1409
1393
|
key: string;
|
|
1410
1394
|
enabled: boolean;
|
|
1411
1395
|
minimum?: number | undefined;
|
|
1412
1396
|
type?: string | undefined;
|
|
1413
1397
|
maximum?: number | undefined;
|
|
1414
|
-
description?: string | undefined;
|
|
1415
1398
|
default?: any;
|
|
1416
1399
|
required?: boolean | undefined;
|
|
1400
|
+
description?: string | undefined;
|
|
1417
1401
|
enum?: string[] | undefined;
|
|
1418
|
-
file?: File | undefined;
|
|
1419
|
-
refUid?: string | undefined;
|
|
1420
|
-
format?: string | undefined;
|
|
1421
1402
|
nullable?: boolean | undefined;
|
|
1403
|
+
format?: string | undefined;
|
|
1404
|
+
file?: any;
|
|
1405
|
+
refUid?: string | undefined;
|
|
1422
1406
|
}[];
|
|
1423
|
-
|
|
1407
|
+
cookies: {
|
|
1424
1408
|
value: string;
|
|
1425
1409
|
key: string;
|
|
1426
1410
|
enabled: boolean;
|
|
1427
1411
|
minimum?: number | undefined;
|
|
1428
1412
|
type?: string | undefined;
|
|
1429
1413
|
maximum?: number | undefined;
|
|
1430
|
-
description?: string | undefined;
|
|
1431
1414
|
default?: any;
|
|
1432
1415
|
required?: boolean | undefined;
|
|
1416
|
+
description?: string | undefined;
|
|
1433
1417
|
enum?: string[] | undefined;
|
|
1434
|
-
file?: File | undefined;
|
|
1435
|
-
refUid?: string | undefined;
|
|
1436
|
-
format?: string | undefined;
|
|
1437
1418
|
nullable?: boolean | undefined;
|
|
1419
|
+
format?: string | undefined;
|
|
1420
|
+
file?: any;
|
|
1421
|
+
refUid?: string | undefined;
|
|
1438
1422
|
}[];
|
|
1439
1423
|
};
|
|
1440
1424
|
requestUid: string;
|
|
1441
1425
|
body: {
|
|
1442
1426
|
raw: {
|
|
1443
1427
|
value: string;
|
|
1444
|
-
encoding: "
|
|
1428
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1445
1429
|
};
|
|
1446
1430
|
formData: {
|
|
1447
1431
|
value: {
|
|
@@ -1451,14 +1435,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1451
1435
|
minimum?: number | undefined;
|
|
1452
1436
|
type?: string | undefined;
|
|
1453
1437
|
maximum?: number | undefined;
|
|
1454
|
-
description?: string | undefined;
|
|
1455
1438
|
default?: any;
|
|
1456
1439
|
required?: boolean | undefined;
|
|
1440
|
+
description?: string | undefined;
|
|
1457
1441
|
enum?: string[] | undefined;
|
|
1458
|
-
file?: File | undefined;
|
|
1459
|
-
refUid?: string | undefined;
|
|
1460
|
-
format?: string | undefined;
|
|
1461
1442
|
nullable?: boolean | undefined;
|
|
1443
|
+
format?: string | undefined;
|
|
1444
|
+
file?: any;
|
|
1445
|
+
refUid?: string | undefined;
|
|
1462
1446
|
}[];
|
|
1463
1447
|
encoding: "form-data" | "urlencoded";
|
|
1464
1448
|
};
|
|
@@ -1480,14 +1464,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1480
1464
|
minimum?: number | undefined;
|
|
1481
1465
|
type?: string | undefined;
|
|
1482
1466
|
maximum?: number | undefined;
|
|
1483
|
-
description?: string | undefined;
|
|
1484
1467
|
default?: any;
|
|
1485
1468
|
required?: boolean | undefined;
|
|
1469
|
+
description?: string | undefined;
|
|
1486
1470
|
enum?: string[] | undefined;
|
|
1487
|
-
file?: File | undefined;
|
|
1488
|
-
refUid?: string | undefined;
|
|
1489
|
-
format?: string | undefined;
|
|
1490
1471
|
nullable?: boolean | undefined;
|
|
1472
|
+
format?: string | undefined;
|
|
1473
|
+
file?: any;
|
|
1474
|
+
refUid?: string | undefined;
|
|
1491
1475
|
}[];
|
|
1492
1476
|
query: {
|
|
1493
1477
|
value: string;
|
|
@@ -1496,57 +1480,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1496
1480
|
minimum?: number | undefined;
|
|
1497
1481
|
type?: string | undefined;
|
|
1498
1482
|
maximum?: number | undefined;
|
|
1499
|
-
description?: string | undefined;
|
|
1500
1483
|
default?: any;
|
|
1501
1484
|
required?: boolean | undefined;
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
?: string[] | undefined;
|
|
1505
|
-
file?: File | undefined;
|
|
1506
|
-
refUid
|
|
1507
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
1508
|
-
?: string | undefined;
|
|
1509
|
-
format?: string | undefined;
|
|
1485
|
+
description?: string | undefined;
|
|
1486
|
+
enum?: string[] | undefined;
|
|
1510
1487
|
nullable?: boolean | undefined;
|
|
1488
|
+
format?: string | undefined;
|
|
1489
|
+
file?: any;
|
|
1490
|
+
refUid?: string | undefined;
|
|
1511
1491
|
}[];
|
|
1512
|
-
|
|
1492
|
+
headers: {
|
|
1513
1493
|
value: string;
|
|
1514
1494
|
key: string;
|
|
1515
1495
|
enabled: boolean;
|
|
1516
1496
|
minimum?: number | undefined;
|
|
1517
1497
|
type?: string | undefined;
|
|
1518
1498
|
maximum?: number | undefined;
|
|
1519
|
-
description?: string | undefined;
|
|
1520
1499
|
default?: any;
|
|
1521
1500
|
required?: boolean | undefined;
|
|
1501
|
+
description?: string | undefined;
|
|
1522
1502
|
enum?: string[] | undefined;
|
|
1523
|
-
file?: File | undefined;
|
|
1524
|
-
refUid?: string | undefined;
|
|
1525
|
-
format?: string | undefined;
|
|
1526
1503
|
nullable?: boolean | undefined;
|
|
1504
|
+
format?: string | undefined;
|
|
1505
|
+
file?: any;
|
|
1506
|
+
refUid?: string | undefined;
|
|
1527
1507
|
}[];
|
|
1528
|
-
|
|
1508
|
+
cookies: {
|
|
1529
1509
|
value: string;
|
|
1530
1510
|
key: string;
|
|
1531
1511
|
enabled: boolean;
|
|
1532
1512
|
minimum?: number | undefined;
|
|
1533
1513
|
type?: string | undefined;
|
|
1534
1514
|
maximum?: number | undefined;
|
|
1535
|
-
description?: string | undefined;
|
|
1536
1515
|
default?: any;
|
|
1537
1516
|
required?: boolean | undefined;
|
|
1517
|
+
description?: string | undefined;
|
|
1538
1518
|
enum?: string[] | undefined;
|
|
1539
|
-
file?: File | undefined;
|
|
1540
|
-
refUid?: string | undefined;
|
|
1541
|
-
format?: string | undefined;
|
|
1542
1519
|
nullable?: boolean | undefined;
|
|
1520
|
+
format?: string | undefined;
|
|
1521
|
+
file?: any;
|
|
1522
|
+
refUid?: string | undefined;
|
|
1543
1523
|
}[];
|
|
1544
1524
|
};
|
|
1545
1525
|
requestUid: string;
|
|
1546
1526
|
body: {
|
|
1547
1527
|
raw: {
|
|
1548
1528
|
value: string;
|
|
1549
|
-
encoding: "
|
|
1529
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1550
1530
|
};
|
|
1551
1531
|
formData: {
|
|
1552
1532
|
value: {
|
|
@@ -1556,14 +1536,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1556
1536
|
minimum?: number | undefined;
|
|
1557
1537
|
type?: string | undefined;
|
|
1558
1538
|
maximum?: number | undefined;
|
|
1559
|
-
description?: string | undefined;
|
|
1560
1539
|
default?: any;
|
|
1561
1540
|
required?: boolean | undefined;
|
|
1541
|
+
description?: string | undefined;
|
|
1562
1542
|
enum?: string[] | undefined;
|
|
1563
|
-
file?: File | undefined;
|
|
1564
|
-
refUid?: string | undefined;
|
|
1565
|
-
format?: string | undefined;
|
|
1566
1543
|
nullable?: boolean | undefined;
|
|
1544
|
+
format?: string | undefined;
|
|
1545
|
+
file?: any;
|
|
1546
|
+
refUid?: string | undefined;
|
|
1567
1547
|
}[];
|
|
1568
1548
|
encoding: "form-data" | "urlencoded";
|
|
1569
1549
|
};
|
|
@@ -1572,7 +1552,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1572
1552
|
};
|
|
1573
1553
|
auth: Record<string, any>;
|
|
1574
1554
|
}) => void;
|
|
1575
|
-
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}.
|
|
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}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${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}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${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}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.enabled` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${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}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.enabled` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${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}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1576
1556
|
uid: string;
|
|
1577
1557
|
name: string;
|
|
1578
1558
|
url: string;
|
|
@@ -1584,14 +1564,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1584
1564
|
minimum?: number | undefined;
|
|
1585
1565
|
type?: string | undefined;
|
|
1586
1566
|
maximum?: number | undefined;
|
|
1587
|
-
description?: string | undefined;
|
|
1588
1567
|
default?: any;
|
|
1589
1568
|
required?: boolean | undefined;
|
|
1569
|
+
description?: string | undefined;
|
|
1590
1570
|
enum?: string[] | undefined;
|
|
1591
|
-
file?: File | undefined;
|
|
1592
|
-
refUid?: string | undefined;
|
|
1593
|
-
format?: string | undefined;
|
|
1594
1571
|
nullable?: boolean | undefined;
|
|
1572
|
+
format?: string | undefined;
|
|
1573
|
+
file?: any;
|
|
1574
|
+
refUid?: string | undefined;
|
|
1595
1575
|
}[];
|
|
1596
1576
|
query: {
|
|
1597
1577
|
value: string;
|
|
@@ -1600,57 +1580,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1600
1580
|
minimum?: number | undefined;
|
|
1601
1581
|
type?: string | undefined;
|
|
1602
1582
|
maximum?: number | undefined;
|
|
1603
|
-
description?: string | undefined;
|
|
1604
1583
|
default?: any;
|
|
1605
1584
|
required?: boolean | undefined;
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
?: string[] | undefined;
|
|
1609
|
-
file?: File | undefined;
|
|
1610
|
-
refUid
|
|
1611
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
1612
|
-
?: string | undefined;
|
|
1613
|
-
format?: string | undefined;
|
|
1585
|
+
description?: string | undefined;
|
|
1586
|
+
enum?: string[] | undefined;
|
|
1614
1587
|
nullable?: boolean | undefined;
|
|
1588
|
+
format?: string | undefined;
|
|
1589
|
+
file?: any;
|
|
1590
|
+
refUid?: string | undefined;
|
|
1615
1591
|
}[];
|
|
1616
|
-
|
|
1592
|
+
headers: {
|
|
1617
1593
|
value: string;
|
|
1618
1594
|
key: string;
|
|
1619
1595
|
enabled: boolean;
|
|
1620
1596
|
minimum?: number | undefined;
|
|
1621
1597
|
type?: string | undefined;
|
|
1622
1598
|
maximum?: number | undefined;
|
|
1623
|
-
description?: string | undefined;
|
|
1624
1599
|
default?: any;
|
|
1625
1600
|
required?: boolean | undefined;
|
|
1601
|
+
description?: string | undefined;
|
|
1626
1602
|
enum?: string[] | undefined;
|
|
1627
|
-
file?: File | undefined;
|
|
1628
|
-
refUid?: string | undefined;
|
|
1629
|
-
format?: string | undefined;
|
|
1630
1603
|
nullable?: boolean | undefined;
|
|
1604
|
+
format?: string | undefined;
|
|
1605
|
+
file?: any;
|
|
1606
|
+
refUid?: string | undefined;
|
|
1631
1607
|
}[];
|
|
1632
|
-
|
|
1608
|
+
cookies: {
|
|
1633
1609
|
value: string;
|
|
1634
1610
|
key: string;
|
|
1635
1611
|
enabled: boolean;
|
|
1636
1612
|
minimum?: number | undefined;
|
|
1637
1613
|
type?: string | undefined;
|
|
1638
1614
|
maximum?: number | undefined;
|
|
1639
|
-
description?: string | undefined;
|
|
1640
1615
|
default?: any;
|
|
1641
1616
|
required?: boolean | undefined;
|
|
1617
|
+
description?: string | undefined;
|
|
1642
1618
|
enum?: string[] | undefined;
|
|
1643
|
-
file?: File | undefined;
|
|
1644
|
-
refUid?: string | undefined;
|
|
1645
|
-
format?: string | undefined;
|
|
1646
1619
|
nullable?: boolean | undefined;
|
|
1620
|
+
format?: string | undefined;
|
|
1621
|
+
file?: any;
|
|
1622
|
+
refUid?: string | undefined;
|
|
1647
1623
|
}[];
|
|
1648
1624
|
};
|
|
1649
1625
|
requestUid: string;
|
|
1650
1626
|
body: {
|
|
1651
1627
|
raw: {
|
|
1652
1628
|
value: string;
|
|
1653
|
-
encoding: "
|
|
1629
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1654
1630
|
};
|
|
1655
1631
|
formData: {
|
|
1656
1632
|
value: {
|
|
@@ -1660,14 +1636,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1660
1636
|
minimum?: number | undefined;
|
|
1661
1637
|
type?: string | undefined;
|
|
1662
1638
|
maximum?: number | undefined;
|
|
1663
|
-
description?: string | undefined;
|
|
1664
1639
|
default?: any;
|
|
1665
1640
|
required?: boolean | undefined;
|
|
1641
|
+
description?: string | undefined;
|
|
1666
1642
|
enum?: string[] | undefined;
|
|
1667
|
-
file?: File | undefined;
|
|
1668
|
-
refUid?: string | undefined;
|
|
1669
|
-
format?: string | undefined;
|
|
1670
1643
|
nullable?: boolean | undefined;
|
|
1644
|
+
format?: string | undefined;
|
|
1645
|
+
file?: any;
|
|
1646
|
+
refUid?: string | undefined;
|
|
1671
1647
|
}[];
|
|
1672
1648
|
encoding: "form-data" | "urlencoded";
|
|
1673
1649
|
};
|
|
@@ -1687,14 +1663,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1687
1663
|
minimum?: number | undefined;
|
|
1688
1664
|
type?: string | undefined;
|
|
1689
1665
|
maximum?: number | undefined;
|
|
1690
|
-
description?: string | undefined;
|
|
1691
1666
|
default?: any;
|
|
1692
1667
|
required?: boolean | undefined;
|
|
1668
|
+
description?: string | undefined;
|
|
1693
1669
|
enum?: string[] | undefined;
|
|
1694
|
-
file?: File | undefined;
|
|
1695
|
-
refUid?: string | undefined;
|
|
1696
|
-
format?: string | undefined;
|
|
1697
1670
|
nullable?: boolean | undefined;
|
|
1671
|
+
format?: string | undefined;
|
|
1672
|
+
file?: any;
|
|
1673
|
+
refUid?: string | undefined;
|
|
1698
1674
|
}[];
|
|
1699
1675
|
query: {
|
|
1700
1676
|
value: string;
|
|
@@ -1703,57 +1679,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1703
1679
|
minimum?: number | undefined;
|
|
1704
1680
|
type?: string | undefined;
|
|
1705
1681
|
maximum?: number | undefined;
|
|
1706
|
-
description?: string | undefined;
|
|
1707
1682
|
default?: any;
|
|
1708
1683
|
required?: boolean | undefined;
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
?: string[] | undefined;
|
|
1712
|
-
file?: File | undefined;
|
|
1713
|
-
refUid
|
|
1714
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
1715
|
-
?: string | undefined;
|
|
1716
|
-
format?: string | undefined;
|
|
1684
|
+
description?: string | undefined;
|
|
1685
|
+
enum?: string[] | undefined;
|
|
1717
1686
|
nullable?: boolean | undefined;
|
|
1687
|
+
format?: string | undefined;
|
|
1688
|
+
file?: any;
|
|
1689
|
+
refUid?: string | undefined;
|
|
1718
1690
|
}[];
|
|
1719
|
-
|
|
1691
|
+
headers: {
|
|
1720
1692
|
value: string;
|
|
1721
1693
|
key: string;
|
|
1722
1694
|
enabled: boolean;
|
|
1723
1695
|
minimum?: number | undefined;
|
|
1724
1696
|
type?: string | undefined;
|
|
1725
1697
|
maximum?: number | undefined;
|
|
1726
|
-
description?: string | undefined;
|
|
1727
1698
|
default?: any;
|
|
1728
1699
|
required?: boolean | undefined;
|
|
1700
|
+
description?: string | undefined;
|
|
1729
1701
|
enum?: string[] | undefined;
|
|
1730
|
-
file?: File | undefined;
|
|
1731
|
-
refUid?: string | undefined;
|
|
1732
|
-
format?: string | undefined;
|
|
1733
1702
|
nullable?: boolean | undefined;
|
|
1703
|
+
format?: string | undefined;
|
|
1704
|
+
file?: any;
|
|
1705
|
+
refUid?: string | undefined;
|
|
1734
1706
|
}[];
|
|
1735
|
-
|
|
1707
|
+
cookies: {
|
|
1736
1708
|
value: string;
|
|
1737
1709
|
key: string;
|
|
1738
1710
|
enabled: boolean;
|
|
1739
1711
|
minimum?: number | undefined;
|
|
1740
1712
|
type?: string | undefined;
|
|
1741
1713
|
maximum?: number | undefined;
|
|
1742
|
-
description?: string | undefined;
|
|
1743
1714
|
default?: any;
|
|
1744
1715
|
required?: boolean | undefined;
|
|
1716
|
+
description?: string | undefined;
|
|
1745
1717
|
enum?: string[] | undefined;
|
|
1746
|
-
file?: File | undefined;
|
|
1747
|
-
refUid?: string | undefined;
|
|
1748
|
-
format?: string | undefined;
|
|
1749
1718
|
nullable?: boolean | undefined;
|
|
1719
|
+
format?: string | undefined;
|
|
1720
|
+
file?: any;
|
|
1721
|
+
refUid?: string | undefined;
|
|
1750
1722
|
}[];
|
|
1751
1723
|
};
|
|
1752
1724
|
requestUid: string;
|
|
1753
1725
|
body: {
|
|
1754
1726
|
raw: {
|
|
1755
1727
|
value: string;
|
|
1756
|
-
encoding: "
|
|
1728
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1757
1729
|
};
|
|
1758
1730
|
formData: {
|
|
1759
1731
|
value: {
|
|
@@ -1763,14 +1735,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1763
1735
|
minimum?: number | undefined;
|
|
1764
1736
|
type?: string | undefined;
|
|
1765
1737
|
maximum?: number | undefined;
|
|
1766
|
-
description?: string | undefined;
|
|
1767
1738
|
default?: any;
|
|
1768
1739
|
required?: boolean | undefined;
|
|
1740
|
+
description?: string | undefined;
|
|
1769
1741
|
enum?: string[] | undefined;
|
|
1770
|
-
file?: File | undefined;
|
|
1771
|
-
refUid?: string | undefined;
|
|
1772
|
-
format?: string | undefined;
|
|
1773
1742
|
nullable?: boolean | undefined;
|
|
1743
|
+
format?: string | undefined;
|
|
1744
|
+
file?: any;
|
|
1745
|
+
refUid?: string | undefined;
|
|
1774
1746
|
}[];
|
|
1775
1747
|
encoding: "form-data" | "urlencoded";
|
|
1776
1748
|
};
|
|
@@ -1790,14 +1762,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1790
1762
|
minimum?: number | undefined;
|
|
1791
1763
|
type?: string | undefined;
|
|
1792
1764
|
maximum?: number | undefined;
|
|
1793
|
-
description?: string | undefined;
|
|
1794
1765
|
default?: any;
|
|
1795
1766
|
required?: boolean | undefined;
|
|
1767
|
+
description?: string | undefined;
|
|
1796
1768
|
enum?: string[] | undefined;
|
|
1797
|
-
file?: File | undefined;
|
|
1798
|
-
refUid?: string | undefined;
|
|
1799
|
-
format?: string | undefined;
|
|
1800
1769
|
nullable?: boolean | undefined;
|
|
1770
|
+
format?: string | undefined;
|
|
1771
|
+
file?: any;
|
|
1772
|
+
refUid?: string | undefined;
|
|
1801
1773
|
}[];
|
|
1802
1774
|
query: {
|
|
1803
1775
|
value: string;
|
|
@@ -1806,57 +1778,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1806
1778
|
minimum?: number | undefined;
|
|
1807
1779
|
type?: string | undefined;
|
|
1808
1780
|
maximum?: number | undefined;
|
|
1809
|
-
description?: string | undefined;
|
|
1810
1781
|
default?: any;
|
|
1811
1782
|
required?: boolean | undefined;
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
?: string[] | undefined;
|
|
1815
|
-
file?: File | undefined;
|
|
1816
|
-
refUid
|
|
1817
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
1818
|
-
?: string | undefined;
|
|
1819
|
-
format?: string | undefined;
|
|
1783
|
+
description?: string | undefined;
|
|
1784
|
+
enum?: string[] | undefined;
|
|
1820
1785
|
nullable?: boolean | undefined;
|
|
1786
|
+
format?: string | undefined;
|
|
1787
|
+
file?: any;
|
|
1788
|
+
refUid?: string | undefined;
|
|
1821
1789
|
}[];
|
|
1822
|
-
|
|
1790
|
+
headers: {
|
|
1823
1791
|
value: string;
|
|
1824
1792
|
key: string;
|
|
1825
1793
|
enabled: boolean;
|
|
1826
1794
|
minimum?: number | undefined;
|
|
1827
1795
|
type?: string | undefined;
|
|
1828
1796
|
maximum?: number | undefined;
|
|
1829
|
-
description?: string | undefined;
|
|
1830
1797
|
default?: any;
|
|
1831
1798
|
required?: boolean | undefined;
|
|
1799
|
+
description?: string | undefined;
|
|
1832
1800
|
enum?: string[] | undefined;
|
|
1833
|
-
file?: File | undefined;
|
|
1834
|
-
refUid?: string | undefined;
|
|
1835
|
-
format?: string | undefined;
|
|
1836
1801
|
nullable?: boolean | undefined;
|
|
1802
|
+
format?: string | undefined;
|
|
1803
|
+
file?: any;
|
|
1804
|
+
refUid?: string | undefined;
|
|
1837
1805
|
}[];
|
|
1838
|
-
|
|
1806
|
+
cookies: {
|
|
1839
1807
|
value: string;
|
|
1840
1808
|
key: string;
|
|
1841
1809
|
enabled: boolean;
|
|
1842
1810
|
minimum?: number | undefined;
|
|
1843
1811
|
type?: string | undefined;
|
|
1844
1812
|
maximum?: number | undefined;
|
|
1845
|
-
description?: string | undefined;
|
|
1846
1813
|
default?: any;
|
|
1847
1814
|
required?: boolean | undefined;
|
|
1815
|
+
description?: string | undefined;
|
|
1848
1816
|
enum?: string[] | undefined;
|
|
1849
|
-
file?: File | undefined;
|
|
1850
|
-
refUid?: string | undefined;
|
|
1851
|
-
format?: string | undefined;
|
|
1852
1817
|
nullable?: boolean | undefined;
|
|
1818
|
+
format?: string | undefined;
|
|
1819
|
+
file?: any;
|
|
1820
|
+
refUid?: string | undefined;
|
|
1853
1821
|
}[];
|
|
1854
1822
|
};
|
|
1855
1823
|
requestUid: string;
|
|
1856
1824
|
body: {
|
|
1857
1825
|
raw: {
|
|
1858
1826
|
value: string;
|
|
1859
|
-
encoding: "
|
|
1827
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1860
1828
|
};
|
|
1861
1829
|
formData: {
|
|
1862
1830
|
value: {
|
|
@@ -1866,14 +1834,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1866
1834
|
minimum?: number | undefined;
|
|
1867
1835
|
type?: string | undefined;
|
|
1868
1836
|
maximum?: number | undefined;
|
|
1869
|
-
description?: string | undefined;
|
|
1870
1837
|
default?: any;
|
|
1871
1838
|
required?: boolean | undefined;
|
|
1839
|
+
description?: string | undefined;
|
|
1872
1840
|
enum?: string[] | undefined;
|
|
1873
|
-
file?: File | undefined;
|
|
1874
|
-
refUid?: string | undefined;
|
|
1875
|
-
format?: string | undefined;
|
|
1876
1841
|
nullable?: boolean | undefined;
|
|
1842
|
+
format?: string | undefined;
|
|
1843
|
+
file?: any;
|
|
1844
|
+
refUid?: string | undefined;
|
|
1877
1845
|
}[];
|
|
1878
1846
|
encoding: "form-data" | "urlencoded";
|
|
1879
1847
|
};
|
|
@@ -1882,7 +1850,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1882
1850
|
};
|
|
1883
1851
|
auth: Record<string, any>;
|
|
1884
1852
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1885
|
-
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}.
|
|
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}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${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}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${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}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.enabled` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${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}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.enabled` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${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}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1886
1854
|
uid: string;
|
|
1887
1855
|
name: string;
|
|
1888
1856
|
url: string;
|
|
@@ -1894,14 +1862,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1894
1862
|
minimum?: number | undefined;
|
|
1895
1863
|
type?: string | undefined;
|
|
1896
1864
|
maximum?: number | undefined;
|
|
1897
|
-
description?: string | undefined;
|
|
1898
1865
|
default?: any;
|
|
1899
1866
|
required?: boolean | undefined;
|
|
1867
|
+
description?: string | undefined;
|
|
1900
1868
|
enum?: string[] | undefined;
|
|
1901
|
-
file?: File | undefined;
|
|
1902
|
-
refUid?: string | undefined;
|
|
1903
|
-
format?: string | undefined;
|
|
1904
1869
|
nullable?: boolean | undefined;
|
|
1870
|
+
format?: string | undefined;
|
|
1871
|
+
file?: any;
|
|
1872
|
+
refUid?: string | undefined;
|
|
1905
1873
|
}[];
|
|
1906
1874
|
query: {
|
|
1907
1875
|
value: string;
|
|
@@ -1910,57 +1878,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1910
1878
|
minimum?: number | undefined;
|
|
1911
1879
|
type?: string | undefined;
|
|
1912
1880
|
maximum?: number | undefined;
|
|
1913
|
-
description?: string | undefined;
|
|
1914
1881
|
default?: any;
|
|
1915
1882
|
required?: boolean | undefined;
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
?: string[] | undefined;
|
|
1919
|
-
file?: File | undefined;
|
|
1920
|
-
refUid
|
|
1921
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
1922
|
-
?: string | undefined;
|
|
1923
|
-
format?: string | undefined;
|
|
1883
|
+
description?: string | undefined;
|
|
1884
|
+
enum?: string[] | undefined;
|
|
1924
1885
|
nullable?: boolean | undefined;
|
|
1886
|
+
format?: string | undefined;
|
|
1887
|
+
file?: any;
|
|
1888
|
+
refUid?: string | undefined;
|
|
1925
1889
|
}[];
|
|
1926
|
-
|
|
1890
|
+
headers: {
|
|
1927
1891
|
value: string;
|
|
1928
1892
|
key: string;
|
|
1929
1893
|
enabled: boolean;
|
|
1930
1894
|
minimum?: number | undefined;
|
|
1931
1895
|
type?: string | undefined;
|
|
1932
1896
|
maximum?: number | undefined;
|
|
1933
|
-
description?: string | undefined;
|
|
1934
1897
|
default?: any;
|
|
1935
1898
|
required?: boolean | undefined;
|
|
1899
|
+
description?: string | undefined;
|
|
1936
1900
|
enum?: string[] | undefined;
|
|
1937
|
-
file?: File | undefined;
|
|
1938
|
-
refUid?: string | undefined;
|
|
1939
|
-
format?: string | undefined;
|
|
1940
1901
|
nullable?: boolean | undefined;
|
|
1902
|
+
format?: string | undefined;
|
|
1903
|
+
file?: any;
|
|
1904
|
+
refUid?: string | undefined;
|
|
1941
1905
|
}[];
|
|
1942
|
-
|
|
1906
|
+
cookies: {
|
|
1943
1907
|
value: string;
|
|
1944
1908
|
key: string;
|
|
1945
1909
|
enabled: boolean;
|
|
1946
1910
|
minimum?: number | undefined;
|
|
1947
1911
|
type?: string | undefined;
|
|
1948
1912
|
maximum?: number | undefined;
|
|
1949
|
-
description?: string | undefined;
|
|
1950
1913
|
default?: any;
|
|
1951
1914
|
required?: boolean | undefined;
|
|
1915
|
+
description?: string | undefined;
|
|
1952
1916
|
enum?: string[] | undefined;
|
|
1953
|
-
file?: File | undefined;
|
|
1954
|
-
refUid?: string | undefined;
|
|
1955
|
-
format?: string | undefined;
|
|
1956
1917
|
nullable?: boolean | undefined;
|
|
1918
|
+
format?: string | undefined;
|
|
1919
|
+
file?: any;
|
|
1920
|
+
refUid?: string | undefined;
|
|
1957
1921
|
}[];
|
|
1958
1922
|
};
|
|
1959
1923
|
requestUid: string;
|
|
1960
1924
|
body: {
|
|
1961
1925
|
raw: {
|
|
1962
1926
|
value: string;
|
|
1963
|
-
encoding: "
|
|
1927
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1964
1928
|
};
|
|
1965
1929
|
formData: {
|
|
1966
1930
|
value: {
|
|
@@ -1970,14 +1934,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1970
1934
|
minimum?: number | undefined;
|
|
1971
1935
|
type?: string | undefined;
|
|
1972
1936
|
maximum?: number | undefined;
|
|
1973
|
-
description?: string | undefined;
|
|
1974
1937
|
default?: any;
|
|
1975
1938
|
required?: boolean | undefined;
|
|
1939
|
+
description?: string | undefined;
|
|
1976
1940
|
enum?: string[] | undefined;
|
|
1977
|
-
file?: File | undefined;
|
|
1978
|
-
refUid?: string | undefined;
|
|
1979
|
-
format?: string | undefined;
|
|
1980
1941
|
nullable?: boolean | undefined;
|
|
1942
|
+
format?: string | undefined;
|
|
1943
|
+
file?: any;
|
|
1944
|
+
refUid?: string | undefined;
|
|
1981
1945
|
}[];
|
|
1982
1946
|
encoding: "form-data" | "urlencoded";
|
|
1983
1947
|
};
|
|
@@ -1997,14 +1961,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1997
1961
|
minimum?: number | undefined;
|
|
1998
1962
|
type?: string | undefined;
|
|
1999
1963
|
maximum?: number | undefined;
|
|
2000
|
-
description?: string | undefined;
|
|
2001
1964
|
default?: any;
|
|
2002
1965
|
required?: boolean | undefined;
|
|
1966
|
+
description?: string | undefined;
|
|
2003
1967
|
enum?: string[] | undefined;
|
|
2004
|
-
file?: File | undefined;
|
|
2005
|
-
refUid?: string | undefined;
|
|
2006
|
-
format?: string | undefined;
|
|
2007
1968
|
nullable?: boolean | undefined;
|
|
1969
|
+
format?: string | undefined;
|
|
1970
|
+
file?: any;
|
|
1971
|
+
refUid?: string | undefined;
|
|
2008
1972
|
}[];
|
|
2009
1973
|
query: {
|
|
2010
1974
|
value: string;
|
|
@@ -2013,57 +1977,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2013
1977
|
minimum?: number | undefined;
|
|
2014
1978
|
type?: string | undefined;
|
|
2015
1979
|
maximum?: number | undefined;
|
|
2016
|
-
description?: string | undefined;
|
|
2017
1980
|
default?: any;
|
|
2018
1981
|
required?: boolean | undefined;
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
?: string[] | undefined;
|
|
2022
|
-
file?: File | undefined;
|
|
2023
|
-
refUid
|
|
2024
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
2025
|
-
?: string | undefined;
|
|
2026
|
-
format?: string | undefined;
|
|
1982
|
+
description?: string | undefined;
|
|
1983
|
+
enum?: string[] | undefined;
|
|
2027
1984
|
nullable?: boolean | undefined;
|
|
1985
|
+
format?: string | undefined;
|
|
1986
|
+
file?: any;
|
|
1987
|
+
refUid?: string | undefined;
|
|
2028
1988
|
}[];
|
|
2029
|
-
|
|
1989
|
+
headers: {
|
|
2030
1990
|
value: string;
|
|
2031
1991
|
key: string;
|
|
2032
1992
|
enabled: boolean;
|
|
2033
1993
|
minimum?: number | undefined;
|
|
2034
1994
|
type?: string | undefined;
|
|
2035
1995
|
maximum?: number | undefined;
|
|
2036
|
-
description?: string | undefined;
|
|
2037
1996
|
default?: any;
|
|
2038
1997
|
required?: boolean | undefined;
|
|
1998
|
+
description?: string | undefined;
|
|
2039
1999
|
enum?: string[] | undefined;
|
|
2040
|
-
file?: File | undefined;
|
|
2041
|
-
refUid?: string | undefined;
|
|
2042
|
-
format?: string | undefined;
|
|
2043
2000
|
nullable?: boolean | undefined;
|
|
2001
|
+
format?: string | undefined;
|
|
2002
|
+
file?: any;
|
|
2003
|
+
refUid?: string | undefined;
|
|
2044
2004
|
}[];
|
|
2045
|
-
|
|
2005
|
+
cookies: {
|
|
2046
2006
|
value: string;
|
|
2047
2007
|
key: string;
|
|
2048
2008
|
enabled: boolean;
|
|
2049
2009
|
minimum?: number | undefined;
|
|
2050
2010
|
type?: string | undefined;
|
|
2051
2011
|
maximum?: number | undefined;
|
|
2052
|
-
description?: string | undefined;
|
|
2053
2012
|
default?: any;
|
|
2054
2013
|
required?: boolean | undefined;
|
|
2014
|
+
description?: string | undefined;
|
|
2055
2015
|
enum?: string[] | undefined;
|
|
2056
|
-
file?: File | undefined;
|
|
2057
|
-
refUid?: string | undefined;
|
|
2058
|
-
format?: string | undefined;
|
|
2059
2016
|
nullable?: boolean | undefined;
|
|
2017
|
+
format?: string | undefined;
|
|
2018
|
+
file?: any;
|
|
2019
|
+
refUid?: string | undefined;
|
|
2060
2020
|
}[];
|
|
2061
2021
|
};
|
|
2062
2022
|
requestUid: string;
|
|
2063
2023
|
body: {
|
|
2064
2024
|
raw: {
|
|
2065
2025
|
value: string;
|
|
2066
|
-
encoding: "
|
|
2026
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2067
2027
|
};
|
|
2068
2028
|
formData: {
|
|
2069
2029
|
value: {
|
|
@@ -2073,14 +2033,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2073
2033
|
minimum?: number | undefined;
|
|
2074
2034
|
type?: string | undefined;
|
|
2075
2035
|
maximum?: number | undefined;
|
|
2076
|
-
description?: string | undefined;
|
|
2077
2036
|
default?: any;
|
|
2078
2037
|
required?: boolean | undefined;
|
|
2038
|
+
description?: string | undefined;
|
|
2079
2039
|
enum?: string[] | undefined;
|
|
2080
|
-
file?: File | undefined;
|
|
2081
|
-
refUid?: string | undefined;
|
|
2082
|
-
format?: string | undefined;
|
|
2083
2040
|
nullable?: boolean | undefined;
|
|
2041
|
+
format?: string | undefined;
|
|
2042
|
+
file?: any;
|
|
2043
|
+
refUid?: string | undefined;
|
|
2084
2044
|
}[];
|
|
2085
2045
|
encoding: "form-data" | "urlencoded";
|
|
2086
2046
|
};
|
|
@@ -2100,14 +2060,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2100
2060
|
minimum?: number | undefined;
|
|
2101
2061
|
type?: string | undefined;
|
|
2102
2062
|
maximum?: number | undefined;
|
|
2103
|
-
description?: string | undefined;
|
|
2104
2063
|
default?: any;
|
|
2105
2064
|
required?: boolean | undefined;
|
|
2065
|
+
description?: string | undefined;
|
|
2106
2066
|
enum?: string[] | undefined;
|
|
2107
|
-
file?: File | undefined;
|
|
2108
|
-
refUid?: string | undefined;
|
|
2109
|
-
format?: string | undefined;
|
|
2110
2067
|
nullable?: boolean | undefined;
|
|
2068
|
+
format?: string | undefined;
|
|
2069
|
+
file?: any;
|
|
2070
|
+
refUid?: string | undefined;
|
|
2111
2071
|
}[];
|
|
2112
2072
|
query: {
|
|
2113
2073
|
value: string;
|
|
@@ -2116,57 +2076,53 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2116
2076
|
minimum?: number | undefined;
|
|
2117
2077
|
type?: string | undefined;
|
|
2118
2078
|
maximum?: number | undefined;
|
|
2119
|
-
description?: string | undefined;
|
|
2120
2079
|
default?: any;
|
|
2121
2080
|
required?: boolean | undefined;
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
?: string[] | undefined;
|
|
2125
|
-
file?: File | undefined;
|
|
2126
|
-
refUid
|
|
2127
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
2128
|
-
?: string | undefined;
|
|
2129
|
-
format?: string | undefined;
|
|
2081
|
+
description?: string | undefined;
|
|
2082
|
+
enum?: string[] | undefined;
|
|
2130
2083
|
nullable?: boolean | undefined;
|
|
2084
|
+
format?: string | undefined;
|
|
2085
|
+
file?: any;
|
|
2086
|
+
refUid?: string | undefined;
|
|
2131
2087
|
}[];
|
|
2132
|
-
|
|
2088
|
+
headers: {
|
|
2133
2089
|
value: string;
|
|
2134
2090
|
key: string;
|
|
2135
2091
|
enabled: boolean;
|
|
2136
2092
|
minimum?: number | undefined;
|
|
2137
2093
|
type?: string | undefined;
|
|
2138
2094
|
maximum?: number | undefined;
|
|
2139
|
-
description?: string | undefined;
|
|
2140
2095
|
default?: any;
|
|
2141
2096
|
required?: boolean | undefined;
|
|
2097
|
+
description?: string | undefined;
|
|
2142
2098
|
enum?: string[] | undefined;
|
|
2143
|
-
file?: File | undefined;
|
|
2144
|
-
refUid?: string | undefined;
|
|
2145
|
-
format?: string | undefined;
|
|
2146
2099
|
nullable?: boolean | undefined;
|
|
2100
|
+
format?: string | undefined;
|
|
2101
|
+
file?: any;
|
|
2102
|
+
refUid?: string | undefined;
|
|
2147
2103
|
}[];
|
|
2148
|
-
|
|
2104
|
+
cookies: {
|
|
2149
2105
|
value: string;
|
|
2150
2106
|
key: string;
|
|
2151
2107
|
enabled: boolean;
|
|
2152
2108
|
minimum?: number | undefined;
|
|
2153
2109
|
type?: string | undefined;
|
|
2154
2110
|
maximum?: number | undefined;
|
|
2155
|
-
description?: string | undefined;
|
|
2156
2111
|
default?: any;
|
|
2157
2112
|
required?: boolean | undefined;
|
|
2113
|
+
description?: string | undefined;
|
|
2158
2114
|
enum?: string[] | undefined;
|
|
2159
|
-
file?: File | undefined;
|
|
2160
|
-
refUid?: string | undefined;
|
|
2161
|
-
format?: string | undefined;
|
|
2162
2115
|
nullable?: boolean | undefined;
|
|
2116
|
+
format?: string | undefined;
|
|
2117
|
+
file?: any;
|
|
2118
|
+
refUid?: string | undefined;
|
|
2163
2119
|
}[];
|
|
2164
2120
|
};
|
|
2165
2121
|
requestUid: string;
|
|
2166
2122
|
body: {
|
|
2167
2123
|
raw: {
|
|
2168
2124
|
value: string;
|
|
2169
|
-
encoding: "
|
|
2125
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2170
2126
|
};
|
|
2171
2127
|
formData: {
|
|
2172
2128
|
value: {
|
|
@@ -2176,14 +2132,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2176
2132
|
minimum?: number | undefined;
|
|
2177
2133
|
type?: string | undefined;
|
|
2178
2134
|
maximum?: number | undefined;
|
|
2179
|
-
description?: string | undefined;
|
|
2180
2135
|
default?: any;
|
|
2181
2136
|
required?: boolean | undefined;
|
|
2137
|
+
description?: string | undefined;
|
|
2182
2138
|
enum?: string[] | undefined;
|
|
2183
|
-
file?: File | undefined;
|
|
2184
|
-
refUid?: string | undefined;
|
|
2185
|
-
format?: string | undefined;
|
|
2186
2139
|
nullable?: boolean | undefined;
|
|
2140
|
+
format?: string | undefined;
|
|
2141
|
+
file?: any;
|
|
2142
|
+
refUid?: string | undefined;
|
|
2187
2143
|
}[];
|
|
2188
2144
|
encoding: "form-data" | "urlencoded";
|
|
2189
2145
|
};
|
|
@@ -2202,8 +2158,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2202
2158
|
type: "apiKey";
|
|
2203
2159
|
value: string;
|
|
2204
2160
|
uid: string;
|
|
2205
|
-
nameKey: string;
|
|
2206
2161
|
name: string;
|
|
2162
|
+
nameKey: string;
|
|
2207
2163
|
in: "query" | "header" | "cookie";
|
|
2208
2164
|
description?: string | undefined;
|
|
2209
2165
|
} | {
|
|
@@ -2271,8 +2227,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2271
2227
|
type: "apiKey";
|
|
2272
2228
|
value: string;
|
|
2273
2229
|
uid: string;
|
|
2274
|
-
nameKey: string;
|
|
2275
2230
|
name: string;
|
|
2231
|
+
nameKey: string;
|
|
2276
2232
|
in: "query" | "header" | "cookie";
|
|
2277
2233
|
description?: string | undefined;
|
|
2278
2234
|
} | {
|
|
@@ -2334,28 +2290,28 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2334
2290
|
openIdConnectUrl: string;
|
|
2335
2291
|
description?: string | undefined;
|
|
2336
2292
|
}) => void;
|
|
2337
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2293
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
|
|
2338
2294
|
type: "apiKey";
|
|
2339
2295
|
value: string;
|
|
2340
2296
|
uid: string;
|
|
2341
|
-
nameKey: string;
|
|
2342
2297
|
name: string;
|
|
2298
|
+
nameKey: string;
|
|
2343
2299
|
in: "query" | "header" | "cookie";
|
|
2344
2300
|
description?: string | undefined;
|
|
2345
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2301
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends Path<{
|
|
2346
2302
|
type: "apiKey";
|
|
2347
2303
|
value: string;
|
|
2348
2304
|
uid: string;
|
|
2349
|
-
nameKey: string;
|
|
2350
2305
|
name: string;
|
|
2306
|
+
nameKey: string;
|
|
2351
2307
|
in: "query" | "header" | "cookie";
|
|
2352
2308
|
description?: string | undefined;
|
|
2353
2309
|
}[K]> ? PathValue<{
|
|
2354
2310
|
type: "apiKey";
|
|
2355
2311
|
value: string;
|
|
2356
2312
|
uid: string;
|
|
2357
|
-
nameKey: string;
|
|
2358
2313
|
name: string;
|
|
2314
|
+
nameKey: string;
|
|
2359
2315
|
in: "query" | "header" | "cookie";
|
|
2360
2316
|
description?: string | undefined;
|
|
2361
2317
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -2533,28 +2489,28 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2533
2489
|
openIdConnectUrl: string;
|
|
2534
2490
|
description?: string | undefined;
|
|
2535
2491
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2536
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2492
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
|
|
2537
2493
|
type: "apiKey";
|
|
2538
2494
|
value: string;
|
|
2539
2495
|
uid: string;
|
|
2540
|
-
nameKey: string;
|
|
2541
2496
|
name: string;
|
|
2497
|
+
nameKey: string;
|
|
2542
2498
|
in: "query" | "header" | "cookie";
|
|
2543
2499
|
description?: string | undefined;
|
|
2544
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2500
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends Path<{
|
|
2545
2501
|
type: "apiKey";
|
|
2546
2502
|
value: string;
|
|
2547
2503
|
uid: string;
|
|
2548
|
-
nameKey: string;
|
|
2549
2504
|
name: string;
|
|
2505
|
+
nameKey: string;
|
|
2550
2506
|
in: "query" | "header" | "cookie";
|
|
2551
2507
|
description?: string | undefined;
|
|
2552
2508
|
}[K]> ? PathValue<{
|
|
2553
2509
|
type: "apiKey";
|
|
2554
2510
|
value: string;
|
|
2555
2511
|
uid: string;
|
|
2556
|
-
nameKey: string;
|
|
2557
2512
|
name: string;
|
|
2513
|
+
nameKey: string;
|
|
2558
2514
|
in: "query" | "header" | "cookie";
|
|
2559
2515
|
description?: string | undefined;
|
|
2560
2516
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -2742,8 +2698,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2742
2698
|
url: string;
|
|
2743
2699
|
description?: string | undefined;
|
|
2744
2700
|
variables?: Record<string, {
|
|
2745
|
-
uid: string;
|
|
2746
2701
|
default: string;
|
|
2702
|
+
uid: string;
|
|
2747
2703
|
value?: string | undefined;
|
|
2748
2704
|
description?: string | undefined;
|
|
2749
2705
|
enum?: string[] | undefined;
|
|
@@ -2756,8 +2712,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2756
2712
|
url: string;
|
|
2757
2713
|
description?: string | undefined;
|
|
2758
2714
|
variables?: Record<string, {
|
|
2759
|
-
uid: string;
|
|
2760
2715
|
default: string;
|
|
2716
|
+
uid: string;
|
|
2761
2717
|
value?: string | undefined;
|
|
2762
2718
|
description?: string | undefined;
|
|
2763
2719
|
enum?: string[] | undefined;
|
|
@@ -2768,8 +2724,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2768
2724
|
url: string;
|
|
2769
2725
|
description?: string | undefined;
|
|
2770
2726
|
variables?: Record<string, {
|
|
2771
|
-
uid: string;
|
|
2772
2727
|
default: string;
|
|
2728
|
+
uid: string;
|
|
2773
2729
|
value?: string | undefined;
|
|
2774
2730
|
description?: string | undefined;
|
|
2775
2731
|
enum?: string[] | undefined;
|
|
@@ -2779,8 +2735,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2779
2735
|
url: string;
|
|
2780
2736
|
description?: string | undefined;
|
|
2781
2737
|
variables?: Record<string, {
|
|
2782
|
-
uid: string;
|
|
2783
2738
|
default: string;
|
|
2739
|
+
uid: string;
|
|
2784
2740
|
value?: string | undefined;
|
|
2785
2741
|
description?: string | undefined;
|
|
2786
2742
|
enum?: string[] | undefined;
|
|
@@ -2790,8 +2746,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2790
2746
|
url: string;
|
|
2791
2747
|
description?: string | undefined;
|
|
2792
2748
|
variables?: Record<string, {
|
|
2793
|
-
uid: string;
|
|
2794
2749
|
default: string;
|
|
2750
|
+
uid: string;
|
|
2795
2751
|
value?: string | undefined;
|
|
2796
2752
|
description?: string | undefined;
|
|
2797
2753
|
enum?: string[] | undefined;
|
|
@@ -2802,8 +2758,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2802
2758
|
url: string;
|
|
2803
2759
|
description?: string | undefined;
|
|
2804
2760
|
variables?: Record<string, {
|
|
2805
|
-
uid: string;
|
|
2806
2761
|
default: string;
|
|
2762
|
+
uid: string;
|
|
2807
2763
|
value?: string | undefined;
|
|
2808
2764
|
description?: string | undefined;
|
|
2809
2765
|
enum?: string[] | undefined;
|
|
@@ -2813,8 +2769,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2813
2769
|
url: string;
|
|
2814
2770
|
description?: string | undefined;
|
|
2815
2771
|
variables?: Record<string, {
|
|
2816
|
-
uid: string;
|
|
2817
2772
|
default: string;
|
|
2773
|
+
uid: string;
|
|
2818
2774
|
value?: string | undefined;
|
|
2819
2775
|
description?: string | undefined;
|
|
2820
2776
|
enum?: string[] | undefined;
|
|
@@ -2824,8 +2780,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2824
2780
|
url: string;
|
|
2825
2781
|
description?: string | undefined;
|
|
2826
2782
|
variables?: Record<string, {
|
|
2827
|
-
uid: string;
|
|
2828
2783
|
default: string;
|
|
2784
|
+
uid: string;
|
|
2829
2785
|
value?: string | undefined;
|
|
2830
2786
|
description?: string | undefined;
|
|
2831
2787
|
enum?: string[] | undefined;
|
|
@@ -2838,36 +2794,36 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2838
2794
|
workspaceMutators: {
|
|
2839
2795
|
rawAdd: (item: {
|
|
2840
2796
|
uid: string;
|
|
2841
|
-
description: string;
|
|
2842
2797
|
name: string;
|
|
2798
|
+
description: string;
|
|
2843
2799
|
isReadOnly: boolean;
|
|
2844
2800
|
collectionUids: string[];
|
|
2845
2801
|
environmentUids: string[];
|
|
2846
2802
|
cookieUids: string[];
|
|
2847
2803
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2848
2804
|
hotKeyConfig?: {
|
|
2849
|
-
modifiers: ("
|
|
2850
|
-
hotKeys?: Partial<Record<"" | "
|
|
2805
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2806
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2851
2807
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2852
|
-
modifiers?: ("
|
|
2808
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2853
2809
|
}>> | undefined;
|
|
2854
2810
|
} | undefined;
|
|
2855
2811
|
proxyUrl?: string | undefined;
|
|
2856
2812
|
}) => void;
|
|
2857
2813
|
add: (payload?: WorkspacePayload) => {
|
|
2858
2814
|
uid: string;
|
|
2859
|
-
description: string;
|
|
2860
2815
|
name: string;
|
|
2816
|
+
description: string;
|
|
2861
2817
|
isReadOnly: boolean;
|
|
2862
2818
|
collectionUids: string[];
|
|
2863
2819
|
environmentUids: string[];
|
|
2864
2820
|
cookieUids: string[];
|
|
2865
2821
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2866
2822
|
hotKeyConfig?: {
|
|
2867
|
-
modifiers: ("
|
|
2868
|
-
hotKeys?: Partial<Record<"" | "
|
|
2823
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2824
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2869
2825
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2870
|
-
modifiers?: ("
|
|
2826
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2871
2827
|
}>> | undefined;
|
|
2872
2828
|
} | undefined;
|
|
2873
2829
|
proxyUrl?: string | undefined;
|
|
@@ -2876,122 +2832,122 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2876
2832
|
rename: (uid: string, newName: string) => void;
|
|
2877
2833
|
set: (item: {
|
|
2878
2834
|
uid: string;
|
|
2879
|
-
description: string;
|
|
2880
2835
|
name: string;
|
|
2836
|
+
description: string;
|
|
2881
2837
|
isReadOnly: boolean;
|
|
2882
2838
|
collectionUids: string[];
|
|
2883
2839
|
environmentUids: string[];
|
|
2884
2840
|
cookieUids: string[];
|
|
2885
2841
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2886
2842
|
hotKeyConfig?: {
|
|
2887
|
-
modifiers: ("
|
|
2888
|
-
hotKeys?: Partial<Record<"" | "
|
|
2843
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2844
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2889
2845
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2890
|
-
modifiers?: ("
|
|
2846
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2891
2847
|
}>> | undefined;
|
|
2892
2848
|
} | undefined;
|
|
2893
2849
|
proxyUrl?: string | undefined;
|
|
2894
2850
|
}) => void;
|
|
2895
|
-
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "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.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.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.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" ? {
|
|
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.c" | "hotKeyConfig.hotKeys.r" | "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.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Escape" | "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.*" | "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.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.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.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.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.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.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.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.*.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" ? {
|
|
2896
2852
|
uid: string;
|
|
2897
|
-
description: string;
|
|
2898
2853
|
name: string;
|
|
2854
|
+
description: string;
|
|
2899
2855
|
isReadOnly: boolean;
|
|
2900
2856
|
collectionUids: string[];
|
|
2901
2857
|
environmentUids: string[];
|
|
2902
2858
|
cookieUids: string[];
|
|
2903
2859
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2904
2860
|
hotKeyConfig?: {
|
|
2905
|
-
modifiers: ("
|
|
2906
|
-
hotKeys?: Partial<Record<"" | "
|
|
2861
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2862
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2907
2863
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2908
|
-
modifiers?: ("
|
|
2864
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2909
2865
|
}>> | undefined;
|
|
2910
2866
|
} | undefined;
|
|
2911
2867
|
proxyUrl?: string | undefined;
|
|
2912
2868
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2913
2869
|
uid: string;
|
|
2914
|
-
description: string;
|
|
2915
2870
|
name: string;
|
|
2871
|
+
description: string;
|
|
2916
2872
|
isReadOnly: boolean;
|
|
2917
2873
|
collectionUids: string[];
|
|
2918
2874
|
environmentUids: string[];
|
|
2919
2875
|
cookieUids: string[];
|
|
2920
2876
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2921
2877
|
hotKeyConfig?: {
|
|
2922
|
-
modifiers: ("
|
|
2923
|
-
hotKeys?: Partial<Record<"" | "
|
|
2878
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2879
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2924
2880
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2925
|
-
modifiers?: ("
|
|
2881
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2926
2882
|
}>> | undefined;
|
|
2927
2883
|
} | undefined;
|
|
2928
2884
|
proxyUrl?: string | undefined;
|
|
2929
2885
|
}[K]> ? PathValue<{
|
|
2930
2886
|
uid: string;
|
|
2931
|
-
description: string;
|
|
2932
2887
|
name: string;
|
|
2888
|
+
description: string;
|
|
2933
2889
|
isReadOnly: boolean;
|
|
2934
2890
|
collectionUids: string[];
|
|
2935
2891
|
environmentUids: string[];
|
|
2936
2892
|
cookieUids: string[];
|
|
2937
2893
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2938
2894
|
hotKeyConfig?: {
|
|
2939
|
-
modifiers: ("
|
|
2940
|
-
hotKeys?: Partial<Record<"" | "
|
|
2895
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2896
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2941
2897
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2942
|
-
modifiers?: ("
|
|
2898
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2943
2899
|
}>> | undefined;
|
|
2944
2900
|
} | undefined;
|
|
2945
2901
|
proxyUrl?: string | undefined;
|
|
2946
2902
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2947
|
-
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "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.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.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.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" ? {
|
|
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.c" | "hotKeyConfig.hotKeys.r" | "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.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Escape" | "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.*" | "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.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.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.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.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.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.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.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.*.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" ? {
|
|
2948
2904
|
uid: string;
|
|
2949
|
-
description: string;
|
|
2950
2905
|
name: string;
|
|
2906
|
+
description: string;
|
|
2951
2907
|
isReadOnly: boolean;
|
|
2952
2908
|
collectionUids: string[];
|
|
2953
2909
|
environmentUids: string[];
|
|
2954
2910
|
cookieUids: string[];
|
|
2955
2911
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2956
2912
|
hotKeyConfig?: {
|
|
2957
|
-
modifiers: ("
|
|
2958
|
-
hotKeys?: Partial<Record<"" | "
|
|
2913
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2914
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2959
2915
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2960
|
-
modifiers?: ("
|
|
2916
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2961
2917
|
}>> | undefined;
|
|
2962
2918
|
} | undefined;
|
|
2963
2919
|
proxyUrl?: string | undefined;
|
|
2964
2920
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2965
2921
|
uid: string;
|
|
2966
|
-
description: string;
|
|
2967
2922
|
name: string;
|
|
2923
|
+
description: string;
|
|
2968
2924
|
isReadOnly: boolean;
|
|
2969
2925
|
collectionUids: string[];
|
|
2970
2926
|
environmentUids: string[];
|
|
2971
2927
|
cookieUids: string[];
|
|
2972
2928
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2973
2929
|
hotKeyConfig?: {
|
|
2974
|
-
modifiers: ("
|
|
2975
|
-
hotKeys?: Partial<Record<"" | "
|
|
2930
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2931
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2976
2932
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2977
|
-
modifiers?: ("
|
|
2933
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2978
2934
|
}>> | undefined;
|
|
2979
2935
|
} | undefined;
|
|
2980
2936
|
proxyUrl?: string | undefined;
|
|
2981
2937
|
}[K]> ? PathValue<{
|
|
2982
2938
|
uid: string;
|
|
2983
|
-
description: string;
|
|
2984
2939
|
name: string;
|
|
2940
|
+
description: string;
|
|
2985
2941
|
isReadOnly: boolean;
|
|
2986
2942
|
collectionUids: string[];
|
|
2987
2943
|
environmentUids: string[];
|
|
2988
2944
|
cookieUids: string[];
|
|
2989
2945
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2990
2946
|
hotKeyConfig?: {
|
|
2991
|
-
modifiers: ("
|
|
2992
|
-
hotKeys?: Partial<Record<"" | "
|
|
2947
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2948
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2993
2949
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2994
|
-
modifiers?: ("
|
|
2950
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2995
2951
|
}>> | undefined;
|
|
2996
2952
|
} | undefined;
|
|
2997
2953
|
proxyUrl?: string | undefined;
|
|
@@ -3012,18 +2968,18 @@ export type WorkspaceStore = ReturnType<typeof createWorkspaceStore>;
|
|
|
3012
2968
|
export declare const useWorkspace: () => {
|
|
3013
2969
|
workspaces: Record<string, {
|
|
3014
2970
|
uid: string;
|
|
3015
|
-
description: string;
|
|
3016
2971
|
name: string;
|
|
2972
|
+
description: string;
|
|
3017
2973
|
isReadOnly: boolean;
|
|
3018
2974
|
collectionUids: string[];
|
|
3019
2975
|
environmentUids: string[];
|
|
3020
2976
|
cookieUids: string[];
|
|
3021
2977
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3022
2978
|
hotKeyConfig?: {
|
|
3023
|
-
modifiers: ("
|
|
3024
|
-
hotKeys?: Partial<Record<"" | "
|
|
2979
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2980
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
3025
2981
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
3026
|
-
modifiers?: ("
|
|
2982
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
3027
2983
|
}>> | undefined;
|
|
3028
2984
|
} | undefined;
|
|
3029
2985
|
proxyUrl?: string | undefined;
|
|
@@ -3110,14 +3066,14 @@ export declare const useWorkspace: () => {
|
|
|
3110
3066
|
minimum?: number | undefined;
|
|
3111
3067
|
type?: string | undefined;
|
|
3112
3068
|
maximum?: number | undefined;
|
|
3113
|
-
description?: string | undefined;
|
|
3114
3069
|
default?: any;
|
|
3115
3070
|
required?: boolean | undefined;
|
|
3071
|
+
description?: string | undefined;
|
|
3116
3072
|
enum?: string[] | undefined;
|
|
3117
|
-
file?: File | undefined;
|
|
3118
|
-
refUid?: string | undefined;
|
|
3119
|
-
format?: string | undefined;
|
|
3120
3073
|
nullable?: boolean | undefined;
|
|
3074
|
+
format?: string | undefined;
|
|
3075
|
+
file?: any;
|
|
3076
|
+
refUid?: string | undefined;
|
|
3121
3077
|
}[];
|
|
3122
3078
|
query: {
|
|
3123
3079
|
value: string;
|
|
@@ -3126,57 +3082,53 @@ export declare const useWorkspace: () => {
|
|
|
3126
3082
|
minimum?: number | undefined;
|
|
3127
3083
|
type?: string | undefined;
|
|
3128
3084
|
maximum?: number | undefined;
|
|
3129
|
-
description?: string | undefined;
|
|
3130
3085
|
default?: any;
|
|
3131
3086
|
required?: boolean | undefined;
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
?: string[] | undefined;
|
|
3135
|
-
file?: File | undefined;
|
|
3136
|
-
refUid
|
|
3137
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
3138
|
-
?: string | undefined;
|
|
3139
|
-
format?: string | undefined;
|
|
3087
|
+
description?: string | undefined;
|
|
3088
|
+
enum?: string[] | undefined;
|
|
3140
3089
|
nullable?: boolean | undefined;
|
|
3090
|
+
format?: string | undefined;
|
|
3091
|
+
file?: any;
|
|
3092
|
+
refUid?: string | undefined;
|
|
3141
3093
|
}[];
|
|
3142
|
-
|
|
3094
|
+
headers: {
|
|
3143
3095
|
value: string;
|
|
3144
3096
|
key: string;
|
|
3145
3097
|
enabled: boolean;
|
|
3146
3098
|
minimum?: number | undefined;
|
|
3147
3099
|
type?: string | undefined;
|
|
3148
3100
|
maximum?: number | undefined;
|
|
3149
|
-
description?: string | undefined;
|
|
3150
3101
|
default?: any;
|
|
3151
3102
|
required?: boolean | undefined;
|
|
3103
|
+
description?: string | undefined;
|
|
3152
3104
|
enum?: string[] | undefined;
|
|
3153
|
-
file?: File | undefined;
|
|
3154
|
-
refUid?: string | undefined;
|
|
3155
|
-
format?: string | undefined;
|
|
3156
3105
|
nullable?: boolean | undefined;
|
|
3106
|
+
format?: string | undefined;
|
|
3107
|
+
file?: any;
|
|
3108
|
+
refUid?: string | undefined;
|
|
3157
3109
|
}[];
|
|
3158
|
-
|
|
3110
|
+
cookies: {
|
|
3159
3111
|
value: string;
|
|
3160
3112
|
key: string;
|
|
3161
3113
|
enabled: boolean;
|
|
3162
3114
|
minimum?: number | undefined;
|
|
3163
3115
|
type?: string | undefined;
|
|
3164
3116
|
maximum?: number | undefined;
|
|
3165
|
-
description?: string | undefined;
|
|
3166
3117
|
default?: any;
|
|
3167
3118
|
required?: boolean | undefined;
|
|
3119
|
+
description?: string | undefined;
|
|
3168
3120
|
enum?: string[] | undefined;
|
|
3169
|
-
file?: File | undefined;
|
|
3170
|
-
refUid?: string | undefined;
|
|
3171
|
-
format?: string | undefined;
|
|
3172
3121
|
nullable?: boolean | undefined;
|
|
3122
|
+
format?: string | undefined;
|
|
3123
|
+
file?: any;
|
|
3124
|
+
refUid?: string | undefined;
|
|
3173
3125
|
}[];
|
|
3174
3126
|
};
|
|
3175
3127
|
requestUid: string;
|
|
3176
3128
|
body: {
|
|
3177
3129
|
raw: {
|
|
3178
3130
|
value: string;
|
|
3179
|
-
encoding: "
|
|
3131
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
3180
3132
|
};
|
|
3181
3133
|
formData: {
|
|
3182
3134
|
value: {
|
|
@@ -3186,14 +3138,14 @@ export declare const useWorkspace: () => {
|
|
|
3186
3138
|
minimum?: number | undefined;
|
|
3187
3139
|
type?: string | undefined;
|
|
3188
3140
|
maximum?: number | undefined;
|
|
3189
|
-
description?: string | undefined;
|
|
3190
3141
|
default?: any;
|
|
3191
3142
|
required?: boolean | undefined;
|
|
3143
|
+
description?: string | undefined;
|
|
3192
3144
|
enum?: string[] | undefined;
|
|
3193
|
-
file?: File | undefined;
|
|
3194
|
-
refUid?: string | undefined;
|
|
3195
|
-
format?: string | undefined;
|
|
3196
3145
|
nullable?: boolean | undefined;
|
|
3146
|
+
format?: string | undefined;
|
|
3147
|
+
file?: any;
|
|
3148
|
+
refUid?: string | undefined;
|
|
3197
3149
|
}[];
|
|
3198
3150
|
encoding: "form-data" | "urlencoded";
|
|
3199
3151
|
};
|
|
@@ -3208,8 +3160,8 @@ export declare const useWorkspace: () => {
|
|
|
3208
3160
|
url: string;
|
|
3209
3161
|
description?: string | undefined;
|
|
3210
3162
|
variables?: Record<string, {
|
|
3211
|
-
uid: string;
|
|
3212
3163
|
default: string;
|
|
3164
|
+
uid: string;
|
|
3213
3165
|
value?: string | undefined;
|
|
3214
3166
|
description?: string | undefined;
|
|
3215
3167
|
enum?: string[] | undefined;
|
|
@@ -3219,8 +3171,8 @@ export declare const useWorkspace: () => {
|
|
|
3219
3171
|
type: "apiKey";
|
|
3220
3172
|
value: string;
|
|
3221
3173
|
uid: string;
|
|
3222
|
-
nameKey: string;
|
|
3223
3174
|
name: string;
|
|
3175
|
+
nameKey: string;
|
|
3224
3176
|
in: "query" | "header" | "cookie";
|
|
3225
3177
|
description?: string | undefined;
|
|
3226
3178
|
} | {
|
|
@@ -3335,14 +3287,14 @@ export declare const useWorkspace: () => {
|
|
|
3335
3287
|
minimum?: number | undefined;
|
|
3336
3288
|
type?: string | undefined;
|
|
3337
3289
|
maximum?: number | undefined;
|
|
3338
|
-
description?: string | undefined;
|
|
3339
3290
|
default?: any;
|
|
3340
3291
|
required?: boolean | undefined;
|
|
3292
|
+
description?: string | undefined;
|
|
3341
3293
|
enum?: string[] | undefined;
|
|
3342
|
-
file?: File | undefined;
|
|
3343
|
-
refUid?: string | undefined;
|
|
3344
|
-
format?: string | undefined;
|
|
3345
3294
|
nullable?: boolean | undefined;
|
|
3295
|
+
format?: string | undefined;
|
|
3296
|
+
file?: any;
|
|
3297
|
+
refUid?: string | undefined;
|
|
3346
3298
|
}[];
|
|
3347
3299
|
query: {
|
|
3348
3300
|
value: string;
|
|
@@ -3351,57 +3303,53 @@ export declare const useWorkspace: () => {
|
|
|
3351
3303
|
minimum?: number | undefined;
|
|
3352
3304
|
type?: string | undefined;
|
|
3353
3305
|
maximum?: number | undefined;
|
|
3354
|
-
description?: string | undefined;
|
|
3355
3306
|
default?: any;
|
|
3356
3307
|
required?: boolean | undefined;
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
?: string[] | undefined;
|
|
3360
|
-
file?: File | undefined;
|
|
3361
|
-
refUid
|
|
3362
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
3363
|
-
?: string | undefined;
|
|
3364
|
-
format?: string | undefined;
|
|
3308
|
+
description?: string | undefined;
|
|
3309
|
+
enum?: string[] | undefined;
|
|
3365
3310
|
nullable?: boolean | undefined;
|
|
3311
|
+
format?: string | undefined;
|
|
3312
|
+
file?: any;
|
|
3313
|
+
refUid?: string | undefined;
|
|
3366
3314
|
}[];
|
|
3367
|
-
|
|
3315
|
+
headers: {
|
|
3368
3316
|
value: string;
|
|
3369
3317
|
key: string;
|
|
3370
3318
|
enabled: boolean;
|
|
3371
3319
|
minimum?: number | undefined;
|
|
3372
3320
|
type?: string | undefined;
|
|
3373
3321
|
maximum?: number | undefined;
|
|
3374
|
-
description?: string | undefined;
|
|
3375
3322
|
default?: any;
|
|
3376
3323
|
required?: boolean | undefined;
|
|
3324
|
+
description?: string | undefined;
|
|
3377
3325
|
enum?: string[] | undefined;
|
|
3378
|
-
file?: File | undefined;
|
|
3379
|
-
refUid?: string | undefined;
|
|
3380
|
-
format?: string | undefined;
|
|
3381
3326
|
nullable?: boolean | undefined;
|
|
3327
|
+
format?: string | undefined;
|
|
3328
|
+
file?: any;
|
|
3329
|
+
refUid?: string | undefined;
|
|
3382
3330
|
}[];
|
|
3383
|
-
|
|
3331
|
+
cookies: {
|
|
3384
3332
|
value: string;
|
|
3385
3333
|
key: string;
|
|
3386
3334
|
enabled: boolean;
|
|
3387
3335
|
minimum?: number | undefined;
|
|
3388
3336
|
type?: string | undefined;
|
|
3389
3337
|
maximum?: number | undefined;
|
|
3390
|
-
description?: string | undefined;
|
|
3391
3338
|
default?: any;
|
|
3392
3339
|
required?: boolean | undefined;
|
|
3340
|
+
description?: string | undefined;
|
|
3393
3341
|
enum?: string[] | undefined;
|
|
3394
|
-
file?: File | undefined;
|
|
3395
|
-
refUid?: string | undefined;
|
|
3396
|
-
format?: string | undefined;
|
|
3397
3342
|
nullable?: boolean | undefined;
|
|
3343
|
+
format?: string | undefined;
|
|
3344
|
+
file?: any;
|
|
3345
|
+
refUid?: string | undefined;
|
|
3398
3346
|
}[];
|
|
3399
3347
|
};
|
|
3400
3348
|
requestUid: string;
|
|
3401
3349
|
body: {
|
|
3402
3350
|
raw: {
|
|
3403
3351
|
value: string;
|
|
3404
|
-
encoding: "
|
|
3352
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
3405
3353
|
};
|
|
3406
3354
|
formData: {
|
|
3407
3355
|
value: {
|
|
@@ -3411,14 +3359,14 @@ export declare const useWorkspace: () => {
|
|
|
3411
3359
|
minimum?: number | undefined;
|
|
3412
3360
|
type?: string | undefined;
|
|
3413
3361
|
maximum?: number | undefined;
|
|
3414
|
-
description?: string | undefined;
|
|
3415
3362
|
default?: any;
|
|
3416
3363
|
required?: boolean | undefined;
|
|
3364
|
+
description?: string | undefined;
|
|
3417
3365
|
enum?: string[] | undefined;
|
|
3418
|
-
file?: File | undefined;
|
|
3419
|
-
refUid?: string | undefined;
|
|
3420
|
-
format?: string | undefined;
|
|
3421
3366
|
nullable?: boolean | undefined;
|
|
3367
|
+
format?: string | undefined;
|
|
3368
|
+
file?: any;
|
|
3369
|
+
refUid?: string | undefined;
|
|
3422
3370
|
}[];
|
|
3423
3371
|
encoding: "form-data" | "urlencoded";
|
|
3424
3372
|
};
|
|
@@ -3443,8 +3391,8 @@ export declare const useWorkspace: () => {
|
|
|
3443
3391
|
type: "apiKey";
|
|
3444
3392
|
value: string;
|
|
3445
3393
|
uid: string;
|
|
3446
|
-
nameKey: string;
|
|
3447
3394
|
name: string;
|
|
3395
|
+
nameKey: string;
|
|
3448
3396
|
in: "query" | "header" | "cookie";
|
|
3449
3397
|
description?: string | undefined;
|
|
3450
3398
|
} | {
|
|
@@ -3511,8 +3459,8 @@ export declare const useWorkspace: () => {
|
|
|
3511
3459
|
url: string;
|
|
3512
3460
|
description?: string | undefined;
|
|
3513
3461
|
variables?: Record<string, {
|
|
3514
|
-
uid: string;
|
|
3515
3462
|
default: string;
|
|
3463
|
+
uid: string;
|
|
3516
3464
|
value?: string | undefined;
|
|
3517
3465
|
description?: string | undefined;
|
|
3518
3466
|
enum?: string[] | undefined;
|
|
@@ -3520,18 +3468,18 @@ export declare const useWorkspace: () => {
|
|
|
3520
3468
|
} | null>;
|
|
3521
3469
|
activeWorkspace: import("vue").ComputedRef<{
|
|
3522
3470
|
uid: string;
|
|
3523
|
-
description: string;
|
|
3524
3471
|
name: string;
|
|
3472
|
+
description: string;
|
|
3525
3473
|
isReadOnly: boolean;
|
|
3526
3474
|
collectionUids: string[];
|
|
3527
3475
|
environmentUids: string[];
|
|
3528
3476
|
cookieUids: string[];
|
|
3529
3477
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3530
3478
|
hotKeyConfig?: {
|
|
3531
|
-
modifiers: ("
|
|
3532
|
-
hotKeys?: Partial<Record<"" | "
|
|
3479
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
3480
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
3533
3481
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
3534
|
-
modifiers?: ("
|
|
3482
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
3535
3483
|
}>> | undefined;
|
|
3536
3484
|
} | undefined;
|
|
3537
3485
|
proxyUrl?: string | undefined;
|
|
@@ -3581,8 +3529,8 @@ export declare const useWorkspace: () => {
|
|
|
3581
3529
|
url: string;
|
|
3582
3530
|
description?: string | undefined;
|
|
3583
3531
|
variables?: Record<string, {
|
|
3584
|
-
uid: string;
|
|
3585
3532
|
default: string;
|
|
3533
|
+
uid: string;
|
|
3586
3534
|
value?: string | undefined;
|
|
3587
3535
|
description?: string | undefined;
|
|
3588
3536
|
enum?: string[] | undefined;
|
|
@@ -4224,13 +4172,13 @@ export declare const useWorkspace: () => {
|
|
|
4224
4172
|
path: string;
|
|
4225
4173
|
uid: string;
|
|
4226
4174
|
childUids: string[];
|
|
4227
|
-
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
4228
4175
|
parameters: {
|
|
4229
4176
|
path: Record<string, any>;
|
|
4230
4177
|
query: Record<string, any>;
|
|
4231
|
-
cookies: Record<string, any>;
|
|
4232
4178
|
headers: Record<string, any>;
|
|
4179
|
+
cookies: Record<string, any>;
|
|
4233
4180
|
};
|
|
4181
|
+
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
4234
4182
|
ref: {
|
|
4235
4183
|
path: string;
|
|
4236
4184
|
isExternal: boolean;
|
|
@@ -4248,8 +4196,8 @@ export declare const useWorkspace: () => {
|
|
|
4248
4196
|
};
|
|
4249
4197
|
delete: (request: Request, parentUid?: string) => void;
|
|
4250
4198
|
set: (item: Request) => void;
|
|
4251
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
4252
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
4199
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends Path<Request[K]> ? PathValue<Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4200
|
+
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends Path<Request[K]> ? PathValue<Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4253
4201
|
undo: (uid: string) => void;
|
|
4254
4202
|
redo: (uid: string) => void;
|
|
4255
4203
|
loadLocalStorage: () => void;
|
|
@@ -4267,14 +4215,14 @@ export declare const useWorkspace: () => {
|
|
|
4267
4215
|
minimum?: number | undefined;
|
|
4268
4216
|
type?: string | undefined;
|
|
4269
4217
|
maximum?: number | undefined;
|
|
4270
|
-
description?: string | undefined;
|
|
4271
4218
|
default?: any;
|
|
4272
4219
|
required?: boolean | undefined;
|
|
4220
|
+
description?: string | undefined;
|
|
4273
4221
|
enum?: string[] | undefined;
|
|
4274
|
-
file?: File | undefined;
|
|
4275
|
-
refUid?: string | undefined;
|
|
4276
|
-
format?: string | undefined;
|
|
4277
4222
|
nullable?: boolean | undefined;
|
|
4223
|
+
format?: string | undefined;
|
|
4224
|
+
file?: any;
|
|
4225
|
+
refUid?: string | undefined;
|
|
4278
4226
|
}[];
|
|
4279
4227
|
query: {
|
|
4280
4228
|
value: string;
|
|
@@ -4283,57 +4231,53 @@ export declare const useWorkspace: () => {
|
|
|
4283
4231
|
minimum?: number | undefined;
|
|
4284
4232
|
type?: string | undefined;
|
|
4285
4233
|
maximum?: number | undefined;
|
|
4286
|
-
description?: string | undefined;
|
|
4287
4234
|
default?: any;
|
|
4288
4235
|
required?: boolean | undefined;
|
|
4289
|
-
|
|
4290
|
-
|
|
4291
|
-
?: string[] | undefined;
|
|
4292
|
-
file?: File | undefined;
|
|
4293
|
-
refUid
|
|
4294
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
4295
|
-
?: string | undefined;
|
|
4296
|
-
format?: string | undefined;
|
|
4236
|
+
description?: string | undefined;
|
|
4237
|
+
enum?: string[] | undefined;
|
|
4297
4238
|
nullable?: boolean | undefined;
|
|
4239
|
+
format?: string | undefined;
|
|
4240
|
+
file?: any;
|
|
4241
|
+
refUid?: string | undefined;
|
|
4298
4242
|
}[];
|
|
4299
|
-
|
|
4243
|
+
headers: {
|
|
4300
4244
|
value: string;
|
|
4301
4245
|
key: string;
|
|
4302
4246
|
enabled: boolean;
|
|
4303
4247
|
minimum?: number | undefined;
|
|
4304
4248
|
type?: string | undefined;
|
|
4305
4249
|
maximum?: number | undefined;
|
|
4306
|
-
description?: string | undefined;
|
|
4307
4250
|
default?: any;
|
|
4308
4251
|
required?: boolean | undefined;
|
|
4252
|
+
description?: string | undefined;
|
|
4309
4253
|
enum?: string[] | undefined;
|
|
4310
|
-
file?: File | undefined;
|
|
4311
|
-
refUid?: string | undefined;
|
|
4312
|
-
format?: string | undefined;
|
|
4313
4254
|
nullable?: boolean | undefined;
|
|
4255
|
+
format?: string | undefined;
|
|
4256
|
+
file?: any;
|
|
4257
|
+
refUid?: string | undefined;
|
|
4314
4258
|
}[];
|
|
4315
|
-
|
|
4259
|
+
cookies: {
|
|
4316
4260
|
value: string;
|
|
4317
4261
|
key: string;
|
|
4318
4262
|
enabled: boolean;
|
|
4319
4263
|
minimum?: number | undefined;
|
|
4320
4264
|
type?: string | undefined;
|
|
4321
4265
|
maximum?: number | undefined;
|
|
4322
|
-
description?: string | undefined;
|
|
4323
4266
|
default?: any;
|
|
4324
4267
|
required?: boolean | undefined;
|
|
4268
|
+
description?: string | undefined;
|
|
4325
4269
|
enum?: string[] | undefined;
|
|
4326
|
-
file?: File | undefined;
|
|
4327
|
-
refUid?: string | undefined;
|
|
4328
|
-
format?: string | undefined;
|
|
4329
4270
|
nullable?: boolean | undefined;
|
|
4271
|
+
format?: string | undefined;
|
|
4272
|
+
file?: any;
|
|
4273
|
+
refUid?: string | undefined;
|
|
4330
4274
|
}[];
|
|
4331
4275
|
};
|
|
4332
4276
|
requestUid: string;
|
|
4333
4277
|
body: {
|
|
4334
4278
|
raw: {
|
|
4335
4279
|
value: string;
|
|
4336
|
-
encoding: "
|
|
4280
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
4337
4281
|
};
|
|
4338
4282
|
formData: {
|
|
4339
4283
|
value: {
|
|
@@ -4343,14 +4287,14 @@ export declare const useWorkspace: () => {
|
|
|
4343
4287
|
minimum?: number | undefined;
|
|
4344
4288
|
type?: string | undefined;
|
|
4345
4289
|
maximum?: number | undefined;
|
|
4346
|
-
description?: string | undefined;
|
|
4347
4290
|
default?: any;
|
|
4348
4291
|
required?: boolean | undefined;
|
|
4292
|
+
description?: string | undefined;
|
|
4349
4293
|
enum?: string[] | undefined;
|
|
4350
|
-
file?: File | undefined;
|
|
4351
|
-
refUid?: string | undefined;
|
|
4352
|
-
format?: string | undefined;
|
|
4353
4294
|
nullable?: boolean | undefined;
|
|
4295
|
+
format?: string | undefined;
|
|
4296
|
+
file?: any;
|
|
4297
|
+
refUid?: string | undefined;
|
|
4354
4298
|
}[];
|
|
4355
4299
|
encoding: "form-data" | "urlencoded";
|
|
4356
4300
|
};
|
|
@@ -4371,14 +4315,14 @@ export declare const useWorkspace: () => {
|
|
|
4371
4315
|
minimum?: number | undefined;
|
|
4372
4316
|
type?: string | undefined;
|
|
4373
4317
|
maximum?: number | undefined;
|
|
4374
|
-
description?: string | undefined;
|
|
4375
4318
|
default?: any;
|
|
4376
4319
|
required?: boolean | undefined;
|
|
4320
|
+
description?: string | undefined;
|
|
4377
4321
|
enum?: string[] | undefined;
|
|
4378
|
-
file?: File | undefined;
|
|
4379
|
-
refUid?: string | undefined;
|
|
4380
|
-
format?: string | undefined;
|
|
4381
4322
|
nullable?: boolean | undefined;
|
|
4323
|
+
format?: string | undefined;
|
|
4324
|
+
file?: any;
|
|
4325
|
+
refUid?: string | undefined;
|
|
4382
4326
|
}[];
|
|
4383
4327
|
query: {
|
|
4384
4328
|
value: string;
|
|
@@ -4387,57 +4331,53 @@ export declare const useWorkspace: () => {
|
|
|
4387
4331
|
minimum?: number | undefined;
|
|
4388
4332
|
type?: string | undefined;
|
|
4389
4333
|
maximum?: number | undefined;
|
|
4390
|
-
description?: string | undefined;
|
|
4391
4334
|
default?: any;
|
|
4392
4335
|
required?: boolean | undefined;
|
|
4393
|
-
|
|
4394
|
-
|
|
4395
|
-
?: string[] | undefined;
|
|
4396
|
-
file?: File | undefined;
|
|
4397
|
-
refUid
|
|
4398
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
4399
|
-
?: string | undefined;
|
|
4400
|
-
format?: string | undefined;
|
|
4336
|
+
description?: string | undefined;
|
|
4337
|
+
enum?: string[] | undefined;
|
|
4401
4338
|
nullable?: boolean | undefined;
|
|
4339
|
+
format?: string | undefined;
|
|
4340
|
+
file?: any;
|
|
4341
|
+
refUid?: string | undefined;
|
|
4402
4342
|
}[];
|
|
4403
|
-
|
|
4343
|
+
headers: {
|
|
4404
4344
|
value: string;
|
|
4405
4345
|
key: string;
|
|
4406
4346
|
enabled: boolean;
|
|
4407
4347
|
minimum?: number | undefined;
|
|
4408
4348
|
type?: string | undefined;
|
|
4409
4349
|
maximum?: number | undefined;
|
|
4410
|
-
description?: string | undefined;
|
|
4411
4350
|
default?: any;
|
|
4412
4351
|
required?: boolean | undefined;
|
|
4352
|
+
description?: string | undefined;
|
|
4413
4353
|
enum?: string[] | undefined;
|
|
4414
|
-
file?: File | undefined;
|
|
4415
|
-
refUid?: string | undefined;
|
|
4416
|
-
format?: string | undefined;
|
|
4417
4354
|
nullable?: boolean | undefined;
|
|
4355
|
+
format?: string | undefined;
|
|
4356
|
+
file?: any;
|
|
4357
|
+
refUid?: string | undefined;
|
|
4418
4358
|
}[];
|
|
4419
|
-
|
|
4359
|
+
cookies: {
|
|
4420
4360
|
value: string;
|
|
4421
4361
|
key: string;
|
|
4422
4362
|
enabled: boolean;
|
|
4423
4363
|
minimum?: number | undefined;
|
|
4424
4364
|
type?: string | undefined;
|
|
4425
4365
|
maximum?: number | undefined;
|
|
4426
|
-
description?: string | undefined;
|
|
4427
4366
|
default?: any;
|
|
4428
4367
|
required?: boolean | undefined;
|
|
4368
|
+
description?: string | undefined;
|
|
4429
4369
|
enum?: string[] | undefined;
|
|
4430
|
-
file?: File | undefined;
|
|
4431
|
-
refUid?: string | undefined;
|
|
4432
|
-
format?: string | undefined;
|
|
4433
4370
|
nullable?: boolean | undefined;
|
|
4371
|
+
format?: string | undefined;
|
|
4372
|
+
file?: any;
|
|
4373
|
+
refUid?: string | undefined;
|
|
4434
4374
|
}[];
|
|
4435
4375
|
};
|
|
4436
4376
|
requestUid: string;
|
|
4437
4377
|
body: {
|
|
4438
4378
|
raw: {
|
|
4439
4379
|
value: string;
|
|
4440
|
-
encoding: "
|
|
4380
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
4441
4381
|
};
|
|
4442
4382
|
formData: {
|
|
4443
4383
|
value: {
|
|
@@ -4447,14 +4387,14 @@ export declare const useWorkspace: () => {
|
|
|
4447
4387
|
minimum?: number | undefined;
|
|
4448
4388
|
type?: string | undefined;
|
|
4449
4389
|
maximum?: number | undefined;
|
|
4450
|
-
description?: string | undefined;
|
|
4451
4390
|
default?: any;
|
|
4452
4391
|
required?: boolean | undefined;
|
|
4392
|
+
description?: string | undefined;
|
|
4453
4393
|
enum?: string[] | undefined;
|
|
4454
|
-
file?: File | undefined;
|
|
4455
|
-
refUid?: string | undefined;
|
|
4456
|
-
format?: string | undefined;
|
|
4457
4394
|
nullable?: boolean | undefined;
|
|
4395
|
+
format?: string | undefined;
|
|
4396
|
+
file?: any;
|
|
4397
|
+
refUid?: string | undefined;
|
|
4458
4398
|
}[];
|
|
4459
4399
|
encoding: "form-data" | "urlencoded";
|
|
4460
4400
|
};
|
|
@@ -4476,14 +4416,14 @@ export declare const useWorkspace: () => {
|
|
|
4476
4416
|
minimum?: number | undefined;
|
|
4477
4417
|
type?: string | undefined;
|
|
4478
4418
|
maximum?: number | undefined;
|
|
4479
|
-
description?: string | undefined;
|
|
4480
4419
|
default?: any;
|
|
4481
4420
|
required?: boolean | undefined;
|
|
4421
|
+
description?: string | undefined;
|
|
4482
4422
|
enum?: string[] | undefined;
|
|
4483
|
-
file?: File | undefined;
|
|
4484
|
-
refUid?: string | undefined;
|
|
4485
|
-
format?: string | undefined;
|
|
4486
4423
|
nullable?: boolean | undefined;
|
|
4424
|
+
format?: string | undefined;
|
|
4425
|
+
file?: any;
|
|
4426
|
+
refUid?: string | undefined;
|
|
4487
4427
|
}[];
|
|
4488
4428
|
query: {
|
|
4489
4429
|
value: string;
|
|
@@ -4492,57 +4432,53 @@ export declare const useWorkspace: () => {
|
|
|
4492
4432
|
minimum?: number | undefined;
|
|
4493
4433
|
type?: string | undefined;
|
|
4494
4434
|
maximum?: number | undefined;
|
|
4495
|
-
description?: string | undefined;
|
|
4496
4435
|
default?: any;
|
|
4497
4436
|
required?: boolean | undefined;
|
|
4498
|
-
|
|
4499
|
-
|
|
4500
|
-
?: string[] | undefined;
|
|
4501
|
-
file?: File | undefined;
|
|
4502
|
-
refUid
|
|
4503
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
4504
|
-
?: string | undefined;
|
|
4505
|
-
format?: string | undefined;
|
|
4437
|
+
description?: string | undefined;
|
|
4438
|
+
enum?: string[] | undefined;
|
|
4506
4439
|
nullable?: boolean | undefined;
|
|
4440
|
+
format?: string | undefined;
|
|
4441
|
+
file?: any;
|
|
4442
|
+
refUid?: string | undefined;
|
|
4507
4443
|
}[];
|
|
4508
|
-
|
|
4444
|
+
headers: {
|
|
4509
4445
|
value: string;
|
|
4510
4446
|
key: string;
|
|
4511
4447
|
enabled: boolean;
|
|
4512
4448
|
minimum?: number | undefined;
|
|
4513
4449
|
type?: string | undefined;
|
|
4514
4450
|
maximum?: number | undefined;
|
|
4515
|
-
description?: string | undefined;
|
|
4516
4451
|
default?: any;
|
|
4517
4452
|
required?: boolean | undefined;
|
|
4453
|
+
description?: string | undefined;
|
|
4518
4454
|
enum?: string[] | undefined;
|
|
4519
|
-
file?: File | undefined;
|
|
4520
|
-
refUid?: string | undefined;
|
|
4521
|
-
format?: string | undefined;
|
|
4522
4455
|
nullable?: boolean | undefined;
|
|
4456
|
+
format?: string | undefined;
|
|
4457
|
+
file?: any;
|
|
4458
|
+
refUid?: string | undefined;
|
|
4523
4459
|
}[];
|
|
4524
|
-
|
|
4460
|
+
cookies: {
|
|
4525
4461
|
value: string;
|
|
4526
4462
|
key: string;
|
|
4527
4463
|
enabled: boolean;
|
|
4528
4464
|
minimum?: number | undefined;
|
|
4529
4465
|
type?: string | undefined;
|
|
4530
4466
|
maximum?: number | undefined;
|
|
4531
|
-
description?: string | undefined;
|
|
4532
4467
|
default?: any;
|
|
4533
4468
|
required?: boolean | undefined;
|
|
4469
|
+
description?: string | undefined;
|
|
4534
4470
|
enum?: string[] | undefined;
|
|
4535
|
-
file?: File | undefined;
|
|
4536
|
-
refUid?: string | undefined;
|
|
4537
|
-
format?: string | undefined;
|
|
4538
4471
|
nullable?: boolean | undefined;
|
|
4472
|
+
format?: string | undefined;
|
|
4473
|
+
file?: any;
|
|
4474
|
+
refUid?: string | undefined;
|
|
4539
4475
|
}[];
|
|
4540
4476
|
};
|
|
4541
4477
|
requestUid: string;
|
|
4542
4478
|
body: {
|
|
4543
4479
|
raw: {
|
|
4544
4480
|
value: string;
|
|
4545
|
-
encoding: "
|
|
4481
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
4546
4482
|
};
|
|
4547
4483
|
formData: {
|
|
4548
4484
|
value: {
|
|
@@ -4552,14 +4488,14 @@ export declare const useWorkspace: () => {
|
|
|
4552
4488
|
minimum?: number | undefined;
|
|
4553
4489
|
type?: string | undefined;
|
|
4554
4490
|
maximum?: number | undefined;
|
|
4555
|
-
description?: string | undefined;
|
|
4556
4491
|
default?: any;
|
|
4557
4492
|
required?: boolean | undefined;
|
|
4493
|
+
description?: string | undefined;
|
|
4558
4494
|
enum?: string[] | undefined;
|
|
4559
|
-
file?: File | undefined;
|
|
4560
|
-
refUid?: string | undefined;
|
|
4561
|
-
format?: string | undefined;
|
|
4562
4495
|
nullable?: boolean | undefined;
|
|
4496
|
+
format?: string | undefined;
|
|
4497
|
+
file?: any;
|
|
4498
|
+
refUid?: string | undefined;
|
|
4563
4499
|
}[];
|
|
4564
4500
|
encoding: "form-data" | "urlencoded";
|
|
4565
4501
|
};
|
|
@@ -4568,7 +4504,7 @@ export declare const useWorkspace: () => {
|
|
|
4568
4504
|
};
|
|
4569
4505
|
auth: Record<string, any>;
|
|
4570
4506
|
}) => void;
|
|
4571
|
-
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}.
|
|
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}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${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}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${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}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.enabled` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${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}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.enabled` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${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}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
4572
4508
|
uid: string;
|
|
4573
4509
|
name: string;
|
|
4574
4510
|
url: string;
|
|
@@ -4580,14 +4516,14 @@ export declare const useWorkspace: () => {
|
|
|
4580
4516
|
minimum?: number | undefined;
|
|
4581
4517
|
type?: string | undefined;
|
|
4582
4518
|
maximum?: number | undefined;
|
|
4583
|
-
description?: string | undefined;
|
|
4584
4519
|
default?: any;
|
|
4585
4520
|
required?: boolean | undefined;
|
|
4521
|
+
description?: string | undefined;
|
|
4586
4522
|
enum?: string[] | undefined;
|
|
4587
|
-
file?: File | undefined;
|
|
4588
|
-
refUid?: string | undefined;
|
|
4589
|
-
format?: string | undefined;
|
|
4590
4523
|
nullable?: boolean | undefined;
|
|
4524
|
+
format?: string | undefined;
|
|
4525
|
+
file?: any;
|
|
4526
|
+
refUid?: string | undefined;
|
|
4591
4527
|
}[];
|
|
4592
4528
|
query: {
|
|
4593
4529
|
value: string;
|
|
@@ -4596,57 +4532,53 @@ export declare const useWorkspace: () => {
|
|
|
4596
4532
|
minimum?: number | undefined;
|
|
4597
4533
|
type?: string | undefined;
|
|
4598
4534
|
maximum?: number | undefined;
|
|
4599
|
-
description?: string | undefined;
|
|
4600
4535
|
default?: any;
|
|
4601
4536
|
required?: boolean | undefined;
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
?: string[] | undefined;
|
|
4605
|
-
file?: File | undefined;
|
|
4606
|
-
refUid
|
|
4607
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
4608
|
-
?: string | undefined;
|
|
4609
|
-
format?: string | undefined;
|
|
4537
|
+
description?: string | undefined;
|
|
4538
|
+
enum?: string[] | undefined;
|
|
4610
4539
|
nullable?: boolean | undefined;
|
|
4540
|
+
format?: string | undefined;
|
|
4541
|
+
file?: any;
|
|
4542
|
+
refUid?: string | undefined;
|
|
4611
4543
|
}[];
|
|
4612
|
-
|
|
4544
|
+
headers: {
|
|
4613
4545
|
value: string;
|
|
4614
4546
|
key: string;
|
|
4615
4547
|
enabled: boolean;
|
|
4616
4548
|
minimum?: number | undefined;
|
|
4617
4549
|
type?: string | undefined;
|
|
4618
4550
|
maximum?: number | undefined;
|
|
4619
|
-
description?: string | undefined;
|
|
4620
4551
|
default?: any;
|
|
4621
4552
|
required?: boolean | undefined;
|
|
4553
|
+
description?: string | undefined;
|
|
4622
4554
|
enum?: string[] | undefined;
|
|
4623
|
-
file?: File | undefined;
|
|
4624
|
-
refUid?: string | undefined;
|
|
4625
|
-
format?: string | undefined;
|
|
4626
4555
|
nullable?: boolean | undefined;
|
|
4556
|
+
format?: string | undefined;
|
|
4557
|
+
file?: any;
|
|
4558
|
+
refUid?: string | undefined;
|
|
4627
4559
|
}[];
|
|
4628
|
-
|
|
4560
|
+
cookies: {
|
|
4629
4561
|
value: string;
|
|
4630
4562
|
key: string;
|
|
4631
4563
|
enabled: boolean;
|
|
4632
4564
|
minimum?: number | undefined;
|
|
4633
4565
|
type?: string | undefined;
|
|
4634
4566
|
maximum?: number | undefined;
|
|
4635
|
-
description?: string | undefined;
|
|
4636
4567
|
default?: any;
|
|
4637
4568
|
required?: boolean | undefined;
|
|
4569
|
+
description?: string | undefined;
|
|
4638
4570
|
enum?: string[] | undefined;
|
|
4639
|
-
file?: File | undefined;
|
|
4640
|
-
refUid?: string | undefined;
|
|
4641
|
-
format?: string | undefined;
|
|
4642
4571
|
nullable?: boolean | undefined;
|
|
4572
|
+
format?: string | undefined;
|
|
4573
|
+
file?: any;
|
|
4574
|
+
refUid?: string | undefined;
|
|
4643
4575
|
}[];
|
|
4644
4576
|
};
|
|
4645
4577
|
requestUid: string;
|
|
4646
4578
|
body: {
|
|
4647
4579
|
raw: {
|
|
4648
4580
|
value: string;
|
|
4649
|
-
encoding: "
|
|
4581
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
4650
4582
|
};
|
|
4651
4583
|
formData: {
|
|
4652
4584
|
value: {
|
|
@@ -4656,14 +4588,14 @@ export declare const useWorkspace: () => {
|
|
|
4656
4588
|
minimum?: number | undefined;
|
|
4657
4589
|
type?: string | undefined;
|
|
4658
4590
|
maximum?: number | undefined;
|
|
4659
|
-
description?: string | undefined;
|
|
4660
4591
|
default?: any;
|
|
4661
4592
|
required?: boolean | undefined;
|
|
4593
|
+
description?: string | undefined;
|
|
4662
4594
|
enum?: string[] | undefined;
|
|
4663
|
-
file?: File | undefined;
|
|
4664
|
-
refUid?: string | undefined;
|
|
4665
|
-
format?: string | undefined;
|
|
4666
4595
|
nullable?: boolean | undefined;
|
|
4596
|
+
format?: string | undefined;
|
|
4597
|
+
file?: any;
|
|
4598
|
+
refUid?: string | undefined;
|
|
4667
4599
|
}[];
|
|
4668
4600
|
encoding: "form-data" | "urlencoded";
|
|
4669
4601
|
};
|
|
@@ -4683,14 +4615,14 @@ export declare const useWorkspace: () => {
|
|
|
4683
4615
|
minimum?: number | undefined;
|
|
4684
4616
|
type?: string | undefined;
|
|
4685
4617
|
maximum?: number | undefined;
|
|
4686
|
-
description?: string | undefined;
|
|
4687
4618
|
default?: any;
|
|
4688
4619
|
required?: boolean | undefined;
|
|
4620
|
+
description?: string | undefined;
|
|
4689
4621
|
enum?: string[] | undefined;
|
|
4690
|
-
file?: File | undefined;
|
|
4691
|
-
refUid?: string | undefined;
|
|
4692
|
-
format?: string | undefined;
|
|
4693
4622
|
nullable?: boolean | undefined;
|
|
4623
|
+
format?: string | undefined;
|
|
4624
|
+
file?: any;
|
|
4625
|
+
refUid?: string | undefined;
|
|
4694
4626
|
}[];
|
|
4695
4627
|
query: {
|
|
4696
4628
|
value: string;
|
|
@@ -4699,57 +4631,53 @@ export declare const useWorkspace: () => {
|
|
|
4699
4631
|
minimum?: number | undefined;
|
|
4700
4632
|
type?: string | undefined;
|
|
4701
4633
|
maximum?: number | undefined;
|
|
4702
|
-
description?: string | undefined;
|
|
4703
4634
|
default?: any;
|
|
4704
4635
|
required?: boolean | undefined;
|
|
4705
|
-
|
|
4706
|
-
|
|
4707
|
-
?: string[] | undefined;
|
|
4708
|
-
file?: File | undefined;
|
|
4709
|
-
refUid
|
|
4710
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
4711
|
-
?: string | undefined;
|
|
4712
|
-
format?: string | undefined;
|
|
4636
|
+
description?: string | undefined;
|
|
4637
|
+
enum?: string[] | undefined;
|
|
4713
4638
|
nullable?: boolean | undefined;
|
|
4639
|
+
format?: string | undefined;
|
|
4640
|
+
file?: any;
|
|
4641
|
+
refUid?: string | undefined;
|
|
4714
4642
|
}[];
|
|
4715
|
-
|
|
4643
|
+
headers: {
|
|
4716
4644
|
value: string;
|
|
4717
4645
|
key: string;
|
|
4718
4646
|
enabled: boolean;
|
|
4719
4647
|
minimum?: number | undefined;
|
|
4720
4648
|
type?: string | undefined;
|
|
4721
4649
|
maximum?: number | undefined;
|
|
4722
|
-
description?: string | undefined;
|
|
4723
4650
|
default?: any;
|
|
4724
4651
|
required?: boolean | undefined;
|
|
4652
|
+
description?: string | undefined;
|
|
4725
4653
|
enum?: string[] | undefined;
|
|
4726
|
-
file?: File | undefined;
|
|
4727
|
-
refUid?: string | undefined;
|
|
4728
|
-
format?: string | undefined;
|
|
4729
4654
|
nullable?: boolean | undefined;
|
|
4655
|
+
format?: string | undefined;
|
|
4656
|
+
file?: any;
|
|
4657
|
+
refUid?: string | undefined;
|
|
4730
4658
|
}[];
|
|
4731
|
-
|
|
4659
|
+
cookies: {
|
|
4732
4660
|
value: string;
|
|
4733
4661
|
key: string;
|
|
4734
4662
|
enabled: boolean;
|
|
4735
4663
|
minimum?: number | undefined;
|
|
4736
4664
|
type?: string | undefined;
|
|
4737
4665
|
maximum?: number | undefined;
|
|
4738
|
-
description?: string | undefined;
|
|
4739
4666
|
default?: any;
|
|
4740
4667
|
required?: boolean | undefined;
|
|
4668
|
+
description?: string | undefined;
|
|
4741
4669
|
enum?: string[] | undefined;
|
|
4742
|
-
file?: File | undefined;
|
|
4743
|
-
refUid?: string | undefined;
|
|
4744
|
-
format?: string | undefined;
|
|
4745
4670
|
nullable?: boolean | undefined;
|
|
4671
|
+
format?: string | undefined;
|
|
4672
|
+
file?: any;
|
|
4673
|
+
refUid?: string | undefined;
|
|
4746
4674
|
}[];
|
|
4747
4675
|
};
|
|
4748
4676
|
requestUid: string;
|
|
4749
4677
|
body: {
|
|
4750
4678
|
raw: {
|
|
4751
4679
|
value: string;
|
|
4752
|
-
encoding: "
|
|
4680
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
4753
4681
|
};
|
|
4754
4682
|
formData: {
|
|
4755
4683
|
value: {
|
|
@@ -4759,14 +4687,14 @@ export declare const useWorkspace: () => {
|
|
|
4759
4687
|
minimum?: number | undefined;
|
|
4760
4688
|
type?: string | undefined;
|
|
4761
4689
|
maximum?: number | undefined;
|
|
4762
|
-
description?: string | undefined;
|
|
4763
4690
|
default?: any;
|
|
4764
4691
|
required?: boolean | undefined;
|
|
4692
|
+
description?: string | undefined;
|
|
4765
4693
|
enum?: string[] | undefined;
|
|
4766
|
-
file?: File | undefined;
|
|
4767
|
-
refUid?: string | undefined;
|
|
4768
|
-
format?: string | undefined;
|
|
4769
4694
|
nullable?: boolean | undefined;
|
|
4695
|
+
format?: string | undefined;
|
|
4696
|
+
file?: any;
|
|
4697
|
+
refUid?: string | undefined;
|
|
4770
4698
|
}[];
|
|
4771
4699
|
encoding: "form-data" | "urlencoded";
|
|
4772
4700
|
};
|
|
@@ -4786,14 +4714,14 @@ export declare const useWorkspace: () => {
|
|
|
4786
4714
|
minimum?: number | undefined;
|
|
4787
4715
|
type?: string | undefined;
|
|
4788
4716
|
maximum?: number | undefined;
|
|
4789
|
-
description?: string | undefined;
|
|
4790
4717
|
default?: any;
|
|
4791
4718
|
required?: boolean | undefined;
|
|
4719
|
+
description?: string | undefined;
|
|
4792
4720
|
enum?: string[] | undefined;
|
|
4793
|
-
file?: File | undefined;
|
|
4794
|
-
refUid?: string | undefined;
|
|
4795
|
-
format?: string | undefined;
|
|
4796
4721
|
nullable?: boolean | undefined;
|
|
4722
|
+
format?: string | undefined;
|
|
4723
|
+
file?: any;
|
|
4724
|
+
refUid?: string | undefined;
|
|
4797
4725
|
}[];
|
|
4798
4726
|
query: {
|
|
4799
4727
|
value: string;
|
|
@@ -4802,57 +4730,53 @@ export declare const useWorkspace: () => {
|
|
|
4802
4730
|
minimum?: number | undefined;
|
|
4803
4731
|
type?: string | undefined;
|
|
4804
4732
|
maximum?: number | undefined;
|
|
4805
|
-
description?: string | undefined;
|
|
4806
4733
|
default?: any;
|
|
4807
4734
|
required?: boolean | undefined;
|
|
4808
|
-
|
|
4809
|
-
|
|
4810
|
-
?: string[] | undefined;
|
|
4811
|
-
file?: File | undefined;
|
|
4812
|
-
refUid
|
|
4813
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
4814
|
-
?: string | undefined;
|
|
4815
|
-
format?: string | undefined;
|
|
4735
|
+
description?: string | undefined;
|
|
4736
|
+
enum?: string[] | undefined;
|
|
4816
4737
|
nullable?: boolean | undefined;
|
|
4738
|
+
format?: string | undefined;
|
|
4739
|
+
file?: any;
|
|
4740
|
+
refUid?: string | undefined;
|
|
4817
4741
|
}[];
|
|
4818
|
-
|
|
4742
|
+
headers: {
|
|
4819
4743
|
value: string;
|
|
4820
4744
|
key: string;
|
|
4821
4745
|
enabled: boolean;
|
|
4822
4746
|
minimum?: number | undefined;
|
|
4823
4747
|
type?: string | undefined;
|
|
4824
4748
|
maximum?: number | undefined;
|
|
4825
|
-
description?: string | undefined;
|
|
4826
4749
|
default?: any;
|
|
4827
4750
|
required?: boolean | undefined;
|
|
4751
|
+
description?: string | undefined;
|
|
4828
4752
|
enum?: string[] | undefined;
|
|
4829
|
-
file?: File | undefined;
|
|
4830
|
-
refUid?: string | undefined;
|
|
4831
|
-
format?: string | undefined;
|
|
4832
4753
|
nullable?: boolean | undefined;
|
|
4754
|
+
format?: string | undefined;
|
|
4755
|
+
file?: any;
|
|
4756
|
+
refUid?: string | undefined;
|
|
4833
4757
|
}[];
|
|
4834
|
-
|
|
4758
|
+
cookies: {
|
|
4835
4759
|
value: string;
|
|
4836
4760
|
key: string;
|
|
4837
4761
|
enabled: boolean;
|
|
4838
4762
|
minimum?: number | undefined;
|
|
4839
4763
|
type?: string | undefined;
|
|
4840
4764
|
maximum?: number | undefined;
|
|
4841
|
-
description?: string | undefined;
|
|
4842
4765
|
default?: any;
|
|
4843
4766
|
required?: boolean | undefined;
|
|
4767
|
+
description?: string | undefined;
|
|
4844
4768
|
enum?: string[] | undefined;
|
|
4845
|
-
file?: File | undefined;
|
|
4846
|
-
refUid?: string | undefined;
|
|
4847
|
-
format?: string | undefined;
|
|
4848
4769
|
nullable?: boolean | undefined;
|
|
4770
|
+
format?: string | undefined;
|
|
4771
|
+
file?: any;
|
|
4772
|
+
refUid?: string | undefined;
|
|
4849
4773
|
}[];
|
|
4850
4774
|
};
|
|
4851
4775
|
requestUid: string;
|
|
4852
4776
|
body: {
|
|
4853
4777
|
raw: {
|
|
4854
4778
|
value: string;
|
|
4855
|
-
encoding: "
|
|
4779
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
4856
4780
|
};
|
|
4857
4781
|
formData: {
|
|
4858
4782
|
value: {
|
|
@@ -4862,14 +4786,14 @@ export declare const useWorkspace: () => {
|
|
|
4862
4786
|
minimum?: number | undefined;
|
|
4863
4787
|
type?: string | undefined;
|
|
4864
4788
|
maximum?: number | undefined;
|
|
4865
|
-
description?: string | undefined;
|
|
4866
4789
|
default?: any;
|
|
4867
4790
|
required?: boolean | undefined;
|
|
4791
|
+
description?: string | undefined;
|
|
4868
4792
|
enum?: string[] | undefined;
|
|
4869
|
-
file?: File | undefined;
|
|
4870
|
-
refUid?: string | undefined;
|
|
4871
|
-
format?: string | undefined;
|
|
4872
4793
|
nullable?: boolean | undefined;
|
|
4794
|
+
format?: string | undefined;
|
|
4795
|
+
file?: any;
|
|
4796
|
+
refUid?: string | undefined;
|
|
4873
4797
|
}[];
|
|
4874
4798
|
encoding: "form-data" | "urlencoded";
|
|
4875
4799
|
};
|
|
@@ -4878,7 +4802,7 @@ export declare const useWorkspace: () => {
|
|
|
4878
4802
|
};
|
|
4879
4803
|
auth: Record<string, any>;
|
|
4880
4804
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4881
|
-
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}.
|
|
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}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${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}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${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}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.enabled` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${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}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.enabled` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${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}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
4882
4806
|
uid: string;
|
|
4883
4807
|
name: string;
|
|
4884
4808
|
url: string;
|
|
@@ -4890,14 +4814,14 @@ export declare const useWorkspace: () => {
|
|
|
4890
4814
|
minimum?: number | undefined;
|
|
4891
4815
|
type?: string | undefined;
|
|
4892
4816
|
maximum?: number | undefined;
|
|
4893
|
-
description?: string | undefined;
|
|
4894
4817
|
default?: any;
|
|
4895
4818
|
required?: boolean | undefined;
|
|
4819
|
+
description?: string | undefined;
|
|
4896
4820
|
enum?: string[] | undefined;
|
|
4897
|
-
file?: File | undefined;
|
|
4898
|
-
refUid?: string | undefined;
|
|
4899
|
-
format?: string | undefined;
|
|
4900
4821
|
nullable?: boolean | undefined;
|
|
4822
|
+
format?: string | undefined;
|
|
4823
|
+
file?: any;
|
|
4824
|
+
refUid?: string | undefined;
|
|
4901
4825
|
}[];
|
|
4902
4826
|
query: {
|
|
4903
4827
|
value: string;
|
|
@@ -4906,57 +4830,53 @@ export declare const useWorkspace: () => {
|
|
|
4906
4830
|
minimum?: number | undefined;
|
|
4907
4831
|
type?: string | undefined;
|
|
4908
4832
|
maximum?: number | undefined;
|
|
4909
|
-
description?: string | undefined;
|
|
4910
4833
|
default?: any;
|
|
4911
4834
|
required?: boolean | undefined;
|
|
4912
|
-
|
|
4913
|
-
|
|
4914
|
-
?: string[] | undefined;
|
|
4915
|
-
file?: File | undefined;
|
|
4916
|
-
refUid
|
|
4917
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
4918
|
-
?: string | undefined;
|
|
4919
|
-
format?: string | undefined;
|
|
4835
|
+
description?: string | undefined;
|
|
4836
|
+
enum?: string[] | undefined;
|
|
4920
4837
|
nullable?: boolean | undefined;
|
|
4838
|
+
format?: string | undefined;
|
|
4839
|
+
file?: any;
|
|
4840
|
+
refUid?: string | undefined;
|
|
4921
4841
|
}[];
|
|
4922
|
-
|
|
4842
|
+
headers: {
|
|
4923
4843
|
value: string;
|
|
4924
4844
|
key: string;
|
|
4925
4845
|
enabled: boolean;
|
|
4926
4846
|
minimum?: number | undefined;
|
|
4927
4847
|
type?: string | undefined;
|
|
4928
4848
|
maximum?: number | undefined;
|
|
4929
|
-
description?: string | undefined;
|
|
4930
4849
|
default?: any;
|
|
4931
4850
|
required?: boolean | undefined;
|
|
4851
|
+
description?: string | undefined;
|
|
4932
4852
|
enum?: string[] | undefined;
|
|
4933
|
-
file?: File | undefined;
|
|
4934
|
-
refUid?: string | undefined;
|
|
4935
|
-
format?: string | undefined;
|
|
4936
4853
|
nullable?: boolean | undefined;
|
|
4854
|
+
format?: string | undefined;
|
|
4855
|
+
file?: any;
|
|
4856
|
+
refUid?: string | undefined;
|
|
4937
4857
|
}[];
|
|
4938
|
-
|
|
4858
|
+
cookies: {
|
|
4939
4859
|
value: string;
|
|
4940
4860
|
key: string;
|
|
4941
4861
|
enabled: boolean;
|
|
4942
4862
|
minimum?: number | undefined;
|
|
4943
4863
|
type?: string | undefined;
|
|
4944
4864
|
maximum?: number | undefined;
|
|
4945
|
-
description?: string | undefined;
|
|
4946
4865
|
default?: any;
|
|
4947
4866
|
required?: boolean | undefined;
|
|
4867
|
+
description?: string | undefined;
|
|
4948
4868
|
enum?: string[] | undefined;
|
|
4949
|
-
file?: File | undefined;
|
|
4950
|
-
refUid?: string | undefined;
|
|
4951
|
-
format?: string | undefined;
|
|
4952
4869
|
nullable?: boolean | undefined;
|
|
4870
|
+
format?: string | undefined;
|
|
4871
|
+
file?: any;
|
|
4872
|
+
refUid?: string | undefined;
|
|
4953
4873
|
}[];
|
|
4954
4874
|
};
|
|
4955
4875
|
requestUid: string;
|
|
4956
4876
|
body: {
|
|
4957
4877
|
raw: {
|
|
4958
4878
|
value: string;
|
|
4959
|
-
encoding: "
|
|
4879
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
4960
4880
|
};
|
|
4961
4881
|
formData: {
|
|
4962
4882
|
value: {
|
|
@@ -4966,14 +4886,14 @@ export declare const useWorkspace: () => {
|
|
|
4966
4886
|
minimum?: number | undefined;
|
|
4967
4887
|
type?: string | undefined;
|
|
4968
4888
|
maximum?: number | undefined;
|
|
4969
|
-
description?: string | undefined;
|
|
4970
4889
|
default?: any;
|
|
4971
4890
|
required?: boolean | undefined;
|
|
4891
|
+
description?: string | undefined;
|
|
4972
4892
|
enum?: string[] | undefined;
|
|
4973
|
-
file?: File | undefined;
|
|
4974
|
-
refUid?: string | undefined;
|
|
4975
|
-
format?: string | undefined;
|
|
4976
4893
|
nullable?: boolean | undefined;
|
|
4894
|
+
format?: string | undefined;
|
|
4895
|
+
file?: any;
|
|
4896
|
+
refUid?: string | undefined;
|
|
4977
4897
|
}[];
|
|
4978
4898
|
encoding: "form-data" | "urlencoded";
|
|
4979
4899
|
};
|
|
@@ -4993,14 +4913,14 @@ export declare const useWorkspace: () => {
|
|
|
4993
4913
|
minimum?: number | undefined;
|
|
4994
4914
|
type?: string | undefined;
|
|
4995
4915
|
maximum?: number | undefined;
|
|
4996
|
-
description?: string | undefined;
|
|
4997
4916
|
default?: any;
|
|
4998
4917
|
required?: boolean | undefined;
|
|
4918
|
+
description?: string | undefined;
|
|
4999
4919
|
enum?: string[] | undefined;
|
|
5000
|
-
file?: File | undefined;
|
|
5001
|
-
refUid?: string | undefined;
|
|
5002
|
-
format?: string | undefined;
|
|
5003
4920
|
nullable?: boolean | undefined;
|
|
4921
|
+
format?: string | undefined;
|
|
4922
|
+
file?: any;
|
|
4923
|
+
refUid?: string | undefined;
|
|
5004
4924
|
}[];
|
|
5005
4925
|
query: {
|
|
5006
4926
|
value: string;
|
|
@@ -5009,57 +4929,53 @@ export declare const useWorkspace: () => {
|
|
|
5009
4929
|
minimum?: number | undefined;
|
|
5010
4930
|
type?: string | undefined;
|
|
5011
4931
|
maximum?: number | undefined;
|
|
5012
|
-
description?: string | undefined;
|
|
5013
4932
|
default?: any;
|
|
5014
4933
|
required?: boolean | undefined;
|
|
5015
|
-
|
|
5016
|
-
|
|
5017
|
-
?: string[] | undefined;
|
|
5018
|
-
file?: File | undefined;
|
|
5019
|
-
refUid
|
|
5020
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
5021
|
-
?: string | undefined;
|
|
5022
|
-
format?: string | undefined;
|
|
4934
|
+
description?: string | undefined;
|
|
4935
|
+
enum?: string[] | undefined;
|
|
5023
4936
|
nullable?: boolean | undefined;
|
|
4937
|
+
format?: string | undefined;
|
|
4938
|
+
file?: any;
|
|
4939
|
+
refUid?: string | undefined;
|
|
5024
4940
|
}[];
|
|
5025
|
-
|
|
4941
|
+
headers: {
|
|
5026
4942
|
value: string;
|
|
5027
4943
|
key: string;
|
|
5028
4944
|
enabled: boolean;
|
|
5029
4945
|
minimum?: number | undefined;
|
|
5030
4946
|
type?: string | undefined;
|
|
5031
4947
|
maximum?: number | undefined;
|
|
5032
|
-
description?: string | undefined;
|
|
5033
4948
|
default?: any;
|
|
5034
4949
|
required?: boolean | undefined;
|
|
4950
|
+
description?: string | undefined;
|
|
5035
4951
|
enum?: string[] | undefined;
|
|
5036
|
-
file?: File | undefined;
|
|
5037
|
-
refUid?: string | undefined;
|
|
5038
|
-
format?: string | undefined;
|
|
5039
4952
|
nullable?: boolean | undefined;
|
|
4953
|
+
format?: string | undefined;
|
|
4954
|
+
file?: any;
|
|
4955
|
+
refUid?: string | undefined;
|
|
5040
4956
|
}[];
|
|
5041
|
-
|
|
4957
|
+
cookies: {
|
|
5042
4958
|
value: string;
|
|
5043
4959
|
key: string;
|
|
5044
4960
|
enabled: boolean;
|
|
5045
4961
|
minimum?: number | undefined;
|
|
5046
4962
|
type?: string | undefined;
|
|
5047
4963
|
maximum?: number | undefined;
|
|
5048
|
-
description?: string | undefined;
|
|
5049
4964
|
default?: any;
|
|
5050
4965
|
required?: boolean | undefined;
|
|
4966
|
+
description?: string | undefined;
|
|
5051
4967
|
enum?: string[] | undefined;
|
|
5052
|
-
file?: File | undefined;
|
|
5053
|
-
refUid?: string | undefined;
|
|
5054
|
-
format?: string | undefined;
|
|
5055
4968
|
nullable?: boolean | undefined;
|
|
4969
|
+
format?: string | undefined;
|
|
4970
|
+
file?: any;
|
|
4971
|
+
refUid?: string | undefined;
|
|
5056
4972
|
}[];
|
|
5057
4973
|
};
|
|
5058
4974
|
requestUid: string;
|
|
5059
4975
|
body: {
|
|
5060
4976
|
raw: {
|
|
5061
4977
|
value: string;
|
|
5062
|
-
encoding: "
|
|
4978
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
5063
4979
|
};
|
|
5064
4980
|
formData: {
|
|
5065
4981
|
value: {
|
|
@@ -5069,14 +4985,14 @@ export declare const useWorkspace: () => {
|
|
|
5069
4985
|
minimum?: number | undefined;
|
|
5070
4986
|
type?: string | undefined;
|
|
5071
4987
|
maximum?: number | undefined;
|
|
5072
|
-
description?: string | undefined;
|
|
5073
4988
|
default?: any;
|
|
5074
4989
|
required?: boolean | undefined;
|
|
4990
|
+
description?: string | undefined;
|
|
5075
4991
|
enum?: string[] | undefined;
|
|
5076
|
-
file?: File | undefined;
|
|
5077
|
-
refUid?: string | undefined;
|
|
5078
|
-
format?: string | undefined;
|
|
5079
4992
|
nullable?: boolean | undefined;
|
|
4993
|
+
format?: string | undefined;
|
|
4994
|
+
file?: any;
|
|
4995
|
+
refUid?: string | undefined;
|
|
5080
4996
|
}[];
|
|
5081
4997
|
encoding: "form-data" | "urlencoded";
|
|
5082
4998
|
};
|
|
@@ -5096,14 +5012,14 @@ export declare const useWorkspace: () => {
|
|
|
5096
5012
|
minimum?: number | undefined;
|
|
5097
5013
|
type?: string | undefined;
|
|
5098
5014
|
maximum?: number | undefined;
|
|
5099
|
-
description?: string | undefined;
|
|
5100
5015
|
default?: any;
|
|
5101
5016
|
required?: boolean | undefined;
|
|
5017
|
+
description?: string | undefined;
|
|
5102
5018
|
enum?: string[] | undefined;
|
|
5103
|
-
file?: File | undefined;
|
|
5104
|
-
refUid?: string | undefined;
|
|
5105
|
-
format?: string | undefined;
|
|
5106
5019
|
nullable?: boolean | undefined;
|
|
5020
|
+
format?: string | undefined;
|
|
5021
|
+
file?: any;
|
|
5022
|
+
refUid?: string | undefined;
|
|
5107
5023
|
}[];
|
|
5108
5024
|
query: {
|
|
5109
5025
|
value: string;
|
|
@@ -5112,57 +5028,53 @@ export declare const useWorkspace: () => {
|
|
|
5112
5028
|
minimum?: number | undefined;
|
|
5113
5029
|
type?: string | undefined;
|
|
5114
5030
|
maximum?: number | undefined;
|
|
5115
|
-
description?: string | undefined;
|
|
5116
5031
|
default?: any;
|
|
5117
5032
|
required?: boolean | undefined;
|
|
5118
|
-
|
|
5119
|
-
|
|
5120
|
-
?: string[] | undefined;
|
|
5121
|
-
file?: File | undefined;
|
|
5122
|
-
refUid
|
|
5123
|
-
/** Helper function to import a OpenAPI spec file into the local workspace */
|
|
5124
|
-
?: string | undefined;
|
|
5125
|
-
format?: string | undefined;
|
|
5033
|
+
description?: string | undefined;
|
|
5034
|
+
enum?: string[] | undefined;
|
|
5126
5035
|
nullable?: boolean | undefined;
|
|
5036
|
+
format?: string | undefined;
|
|
5037
|
+
file?: any;
|
|
5038
|
+
refUid?: string | undefined;
|
|
5127
5039
|
}[];
|
|
5128
|
-
|
|
5040
|
+
headers: {
|
|
5129
5041
|
value: string;
|
|
5130
5042
|
key: string;
|
|
5131
5043
|
enabled: boolean;
|
|
5132
5044
|
minimum?: number | undefined;
|
|
5133
5045
|
type?: string | undefined;
|
|
5134
5046
|
maximum?: number | undefined;
|
|
5135
|
-
description?: string | undefined;
|
|
5136
5047
|
default?: any;
|
|
5137
5048
|
required?: boolean | undefined;
|
|
5049
|
+
description?: string | undefined;
|
|
5138
5050
|
enum?: string[] | undefined;
|
|
5139
|
-
file?: File | undefined;
|
|
5140
|
-
refUid?: string | undefined;
|
|
5141
|
-
format?: string | undefined;
|
|
5142
5051
|
nullable?: boolean | undefined;
|
|
5052
|
+
format?: string | undefined;
|
|
5053
|
+
file?: any;
|
|
5054
|
+
refUid?: string | undefined;
|
|
5143
5055
|
}[];
|
|
5144
|
-
|
|
5056
|
+
cookies: {
|
|
5145
5057
|
value: string;
|
|
5146
5058
|
key: string;
|
|
5147
5059
|
enabled: boolean;
|
|
5148
5060
|
minimum?: number | undefined;
|
|
5149
5061
|
type?: string | undefined;
|
|
5150
5062
|
maximum?: number | undefined;
|
|
5151
|
-
description?: string | undefined;
|
|
5152
5063
|
default?: any;
|
|
5153
5064
|
required?: boolean | undefined;
|
|
5065
|
+
description?: string | undefined;
|
|
5154
5066
|
enum?: string[] | undefined;
|
|
5155
|
-
file?: File | undefined;
|
|
5156
|
-
refUid?: string | undefined;
|
|
5157
|
-
format?: string | undefined;
|
|
5158
5067
|
nullable?: boolean | undefined;
|
|
5068
|
+
format?: string | undefined;
|
|
5069
|
+
file?: any;
|
|
5070
|
+
refUid?: string | undefined;
|
|
5159
5071
|
}[];
|
|
5160
5072
|
};
|
|
5161
5073
|
requestUid: string;
|
|
5162
5074
|
body: {
|
|
5163
5075
|
raw: {
|
|
5164
5076
|
value: string;
|
|
5165
|
-
encoding: "
|
|
5077
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
5166
5078
|
};
|
|
5167
5079
|
formData: {
|
|
5168
5080
|
value: {
|
|
@@ -5172,14 +5084,14 @@ export declare const useWorkspace: () => {
|
|
|
5172
5084
|
minimum?: number | undefined;
|
|
5173
5085
|
type?: string | undefined;
|
|
5174
5086
|
maximum?: number | undefined;
|
|
5175
|
-
description?: string | undefined;
|
|
5176
5087
|
default?: any;
|
|
5177
5088
|
required?: boolean | undefined;
|
|
5089
|
+
description?: string | undefined;
|
|
5178
5090
|
enum?: string[] | undefined;
|
|
5179
|
-
file?: File | undefined;
|
|
5180
|
-
refUid?: string | undefined;
|
|
5181
|
-
format?: string | undefined;
|
|
5182
5091
|
nullable?: boolean | undefined;
|
|
5092
|
+
format?: string | undefined;
|
|
5093
|
+
file?: any;
|
|
5094
|
+
refUid?: string | undefined;
|
|
5183
5095
|
}[];
|
|
5184
5096
|
encoding: "form-data" | "urlencoded";
|
|
5185
5097
|
};
|
|
@@ -5198,8 +5110,8 @@ export declare const useWorkspace: () => {
|
|
|
5198
5110
|
type: "apiKey";
|
|
5199
5111
|
value: string;
|
|
5200
5112
|
uid: string;
|
|
5201
|
-
nameKey: string;
|
|
5202
5113
|
name: string;
|
|
5114
|
+
nameKey: string;
|
|
5203
5115
|
in: "query" | "header" | "cookie";
|
|
5204
5116
|
description?: string | undefined;
|
|
5205
5117
|
} | {
|
|
@@ -5267,8 +5179,8 @@ export declare const useWorkspace: () => {
|
|
|
5267
5179
|
type: "apiKey";
|
|
5268
5180
|
value: string;
|
|
5269
5181
|
uid: string;
|
|
5270
|
-
nameKey: string;
|
|
5271
5182
|
name: string;
|
|
5183
|
+
nameKey: string;
|
|
5272
5184
|
in: "query" | "header" | "cookie";
|
|
5273
5185
|
description?: string | undefined;
|
|
5274
5186
|
} | {
|
|
@@ -5330,28 +5242,28 @@ export declare const useWorkspace: () => {
|
|
|
5330
5242
|
openIdConnectUrl: string;
|
|
5331
5243
|
description?: string | undefined;
|
|
5332
5244
|
}) => void;
|
|
5333
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5245
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
|
|
5334
5246
|
type: "apiKey";
|
|
5335
5247
|
value: string;
|
|
5336
5248
|
uid: string;
|
|
5337
|
-
nameKey: string;
|
|
5338
5249
|
name: string;
|
|
5250
|
+
nameKey: string;
|
|
5339
5251
|
in: "query" | "header" | "cookie";
|
|
5340
5252
|
description?: string | undefined;
|
|
5341
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5253
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends Path<{
|
|
5342
5254
|
type: "apiKey";
|
|
5343
5255
|
value: string;
|
|
5344
5256
|
uid: string;
|
|
5345
|
-
nameKey: string;
|
|
5346
5257
|
name: string;
|
|
5258
|
+
nameKey: string;
|
|
5347
5259
|
in: "query" | "header" | "cookie";
|
|
5348
5260
|
description?: string | undefined;
|
|
5349
5261
|
}[K]> ? PathValue<{
|
|
5350
5262
|
type: "apiKey";
|
|
5351
5263
|
value: string;
|
|
5352
5264
|
uid: string;
|
|
5353
|
-
nameKey: string;
|
|
5354
5265
|
name: string;
|
|
5266
|
+
nameKey: string;
|
|
5355
5267
|
in: "query" | "header" | "cookie";
|
|
5356
5268
|
description?: string | undefined;
|
|
5357
5269
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -5529,28 +5441,28 @@ export declare const useWorkspace: () => {
|
|
|
5529
5441
|
openIdConnectUrl: string;
|
|
5530
5442
|
description?: string | undefined;
|
|
5531
5443
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
5532
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5444
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
|
|
5533
5445
|
type: "apiKey";
|
|
5534
5446
|
value: string;
|
|
5535
5447
|
uid: string;
|
|
5536
|
-
nameKey: string;
|
|
5537
5448
|
name: string;
|
|
5449
|
+
nameKey: string;
|
|
5538
5450
|
in: "query" | "header" | "cookie";
|
|
5539
5451
|
description?: string | undefined;
|
|
5540
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5452
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends Path<{
|
|
5541
5453
|
type: "apiKey";
|
|
5542
5454
|
value: string;
|
|
5543
5455
|
uid: string;
|
|
5544
|
-
nameKey: string;
|
|
5545
5456
|
name: string;
|
|
5457
|
+
nameKey: string;
|
|
5546
5458
|
in: "query" | "header" | "cookie";
|
|
5547
5459
|
description?: string | undefined;
|
|
5548
5460
|
}[K]> ? PathValue<{
|
|
5549
5461
|
type: "apiKey";
|
|
5550
5462
|
value: string;
|
|
5551
5463
|
uid: string;
|
|
5552
|
-
nameKey: string;
|
|
5553
5464
|
name: string;
|
|
5465
|
+
nameKey: string;
|
|
5554
5466
|
in: "query" | "header" | "cookie";
|
|
5555
5467
|
description?: string | undefined;
|
|
5556
5468
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -5738,8 +5650,8 @@ export declare const useWorkspace: () => {
|
|
|
5738
5650
|
url: string;
|
|
5739
5651
|
description?: string | undefined;
|
|
5740
5652
|
variables?: Record<string, {
|
|
5741
|
-
uid: string;
|
|
5742
5653
|
default: string;
|
|
5654
|
+
uid: string;
|
|
5743
5655
|
value?: string | undefined;
|
|
5744
5656
|
description?: string | undefined;
|
|
5745
5657
|
enum?: string[] | undefined;
|
|
@@ -5752,8 +5664,8 @@ export declare const useWorkspace: () => {
|
|
|
5752
5664
|
url: string;
|
|
5753
5665
|
description?: string | undefined;
|
|
5754
5666
|
variables?: Record<string, {
|
|
5755
|
-
uid: string;
|
|
5756
5667
|
default: string;
|
|
5668
|
+
uid: string;
|
|
5757
5669
|
value?: string | undefined;
|
|
5758
5670
|
description?: string | undefined;
|
|
5759
5671
|
enum?: string[] | undefined;
|
|
@@ -5764,8 +5676,8 @@ export declare const useWorkspace: () => {
|
|
|
5764
5676
|
url: string;
|
|
5765
5677
|
description?: string | undefined;
|
|
5766
5678
|
variables?: Record<string, {
|
|
5767
|
-
uid: string;
|
|
5768
5679
|
default: string;
|
|
5680
|
+
uid: string;
|
|
5769
5681
|
value?: string | undefined;
|
|
5770
5682
|
description?: string | undefined;
|
|
5771
5683
|
enum?: string[] | undefined;
|
|
@@ -5775,8 +5687,8 @@ export declare const useWorkspace: () => {
|
|
|
5775
5687
|
url: string;
|
|
5776
5688
|
description?: string | undefined;
|
|
5777
5689
|
variables?: Record<string, {
|
|
5778
|
-
uid: string;
|
|
5779
5690
|
default: string;
|
|
5691
|
+
uid: string;
|
|
5780
5692
|
value?: string | undefined;
|
|
5781
5693
|
description?: string | undefined;
|
|
5782
5694
|
enum?: string[] | undefined;
|
|
@@ -5786,8 +5698,8 @@ export declare const useWorkspace: () => {
|
|
|
5786
5698
|
url: string;
|
|
5787
5699
|
description?: string | undefined;
|
|
5788
5700
|
variables?: Record<string, {
|
|
5789
|
-
uid: string;
|
|
5790
5701
|
default: string;
|
|
5702
|
+
uid: string;
|
|
5791
5703
|
value?: string | undefined;
|
|
5792
5704
|
description?: string | undefined;
|
|
5793
5705
|
enum?: string[] | undefined;
|
|
@@ -5798,8 +5710,8 @@ export declare const useWorkspace: () => {
|
|
|
5798
5710
|
url: string;
|
|
5799
5711
|
description?: string | undefined;
|
|
5800
5712
|
variables?: Record<string, {
|
|
5801
|
-
uid: string;
|
|
5802
5713
|
default: string;
|
|
5714
|
+
uid: string;
|
|
5803
5715
|
value?: string | undefined;
|
|
5804
5716
|
description?: string | undefined;
|
|
5805
5717
|
enum?: string[] | undefined;
|
|
@@ -5809,8 +5721,8 @@ export declare const useWorkspace: () => {
|
|
|
5809
5721
|
url: string;
|
|
5810
5722
|
description?: string | undefined;
|
|
5811
5723
|
variables?: Record<string, {
|
|
5812
|
-
uid: string;
|
|
5813
5724
|
default: string;
|
|
5725
|
+
uid: string;
|
|
5814
5726
|
value?: string | undefined;
|
|
5815
5727
|
description?: string | undefined;
|
|
5816
5728
|
enum?: string[] | undefined;
|
|
@@ -5820,8 +5732,8 @@ export declare const useWorkspace: () => {
|
|
|
5820
5732
|
url: string;
|
|
5821
5733
|
description?: string | undefined;
|
|
5822
5734
|
variables?: Record<string, {
|
|
5823
|
-
uid: string;
|
|
5824
5735
|
default: string;
|
|
5736
|
+
uid: string;
|
|
5825
5737
|
value?: string | undefined;
|
|
5826
5738
|
description?: string | undefined;
|
|
5827
5739
|
enum?: string[] | undefined;
|
|
@@ -5834,36 +5746,36 @@ export declare const useWorkspace: () => {
|
|
|
5834
5746
|
workspaceMutators: {
|
|
5835
5747
|
rawAdd: (item: {
|
|
5836
5748
|
uid: string;
|
|
5837
|
-
description: string;
|
|
5838
5749
|
name: string;
|
|
5750
|
+
description: string;
|
|
5839
5751
|
isReadOnly: boolean;
|
|
5840
5752
|
collectionUids: string[];
|
|
5841
5753
|
environmentUids: string[];
|
|
5842
5754
|
cookieUids: string[];
|
|
5843
5755
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5844
5756
|
hotKeyConfig?: {
|
|
5845
|
-
modifiers: ("
|
|
5846
|
-
hotKeys?: Partial<Record<"" | "
|
|
5757
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5758
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5847
5759
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5848
|
-
modifiers?: ("
|
|
5760
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5849
5761
|
}>> | undefined;
|
|
5850
5762
|
} | undefined;
|
|
5851
5763
|
proxyUrl?: string | undefined;
|
|
5852
5764
|
}) => void;
|
|
5853
5765
|
add: (payload?: WorkspacePayload) => {
|
|
5854
5766
|
uid: string;
|
|
5855
|
-
description: string;
|
|
5856
5767
|
name: string;
|
|
5768
|
+
description: string;
|
|
5857
5769
|
isReadOnly: boolean;
|
|
5858
5770
|
collectionUids: string[];
|
|
5859
5771
|
environmentUids: string[];
|
|
5860
5772
|
cookieUids: string[];
|
|
5861
5773
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5862
5774
|
hotKeyConfig?: {
|
|
5863
|
-
modifiers: ("
|
|
5864
|
-
hotKeys?: Partial<Record<"" | "
|
|
5775
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5776
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5865
5777
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5866
|
-
modifiers?: ("
|
|
5778
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5867
5779
|
}>> | undefined;
|
|
5868
5780
|
} | undefined;
|
|
5869
5781
|
proxyUrl?: string | undefined;
|
|
@@ -5872,122 +5784,122 @@ export declare const useWorkspace: () => {
|
|
|
5872
5784
|
rename: (uid: string, newName: string) => void;
|
|
5873
5785
|
set: (item: {
|
|
5874
5786
|
uid: string;
|
|
5875
|
-
description: string;
|
|
5876
5787
|
name: string;
|
|
5788
|
+
description: string;
|
|
5877
5789
|
isReadOnly: boolean;
|
|
5878
5790
|
collectionUids: string[];
|
|
5879
5791
|
environmentUids: string[];
|
|
5880
5792
|
cookieUids: string[];
|
|
5881
5793
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5882
5794
|
hotKeyConfig?: {
|
|
5883
|
-
modifiers: ("
|
|
5884
|
-
hotKeys?: Partial<Record<"" | "
|
|
5795
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5796
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5885
5797
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5886
|
-
modifiers?: ("
|
|
5798
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5887
5799
|
}>> | undefined;
|
|
5888
5800
|
} | undefined;
|
|
5889
5801
|
proxyUrl?: string | undefined;
|
|
5890
5802
|
}) => void;
|
|
5891
|
-
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "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.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.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.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" ? {
|
|
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.c" | "hotKeyConfig.hotKeys.r" | "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.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Escape" | "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.*" | "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.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.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.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.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.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.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.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.*.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" ? {
|
|
5892
5804
|
uid: string;
|
|
5893
|
-
description: string;
|
|
5894
5805
|
name: string;
|
|
5806
|
+
description: string;
|
|
5895
5807
|
isReadOnly: boolean;
|
|
5896
5808
|
collectionUids: string[];
|
|
5897
5809
|
environmentUids: string[];
|
|
5898
5810
|
cookieUids: string[];
|
|
5899
5811
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5900
5812
|
hotKeyConfig?: {
|
|
5901
|
-
modifiers: ("
|
|
5902
|
-
hotKeys?: Partial<Record<"" | "
|
|
5813
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5814
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5903
5815
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5904
|
-
modifiers?: ("
|
|
5816
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5905
5817
|
}>> | undefined;
|
|
5906
5818
|
} | undefined;
|
|
5907
5819
|
proxyUrl?: string | undefined;
|
|
5908
5820
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5909
5821
|
uid: string;
|
|
5910
|
-
description: string;
|
|
5911
5822
|
name: string;
|
|
5823
|
+
description: string;
|
|
5912
5824
|
isReadOnly: boolean;
|
|
5913
5825
|
collectionUids: string[];
|
|
5914
5826
|
environmentUids: string[];
|
|
5915
5827
|
cookieUids: string[];
|
|
5916
5828
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5917
5829
|
hotKeyConfig?: {
|
|
5918
|
-
modifiers: ("
|
|
5919
|
-
hotKeys?: Partial<Record<"" | "
|
|
5830
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5831
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5920
5832
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5921
|
-
modifiers?: ("
|
|
5833
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5922
5834
|
}>> | undefined;
|
|
5923
5835
|
} | undefined;
|
|
5924
5836
|
proxyUrl?: string | undefined;
|
|
5925
5837
|
}[K]> ? PathValue<{
|
|
5926
5838
|
uid: string;
|
|
5927
|
-
description: string;
|
|
5928
5839
|
name: string;
|
|
5840
|
+
description: string;
|
|
5929
5841
|
isReadOnly: boolean;
|
|
5930
5842
|
collectionUids: string[];
|
|
5931
5843
|
environmentUids: string[];
|
|
5932
5844
|
cookieUids: string[];
|
|
5933
5845
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5934
5846
|
hotKeyConfig?: {
|
|
5935
|
-
modifiers: ("
|
|
5936
|
-
hotKeys?: Partial<Record<"" | "
|
|
5847
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5848
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5937
5849
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5938
|
-
modifiers?: ("
|
|
5850
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5939
5851
|
}>> | undefined;
|
|
5940
5852
|
} | undefined;
|
|
5941
5853
|
proxyUrl?: string | undefined;
|
|
5942
5854
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5943
|
-
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "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.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.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.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" ? {
|
|
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.c" | "hotKeyConfig.hotKeys.r" | "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.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Escape" | "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.*" | "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.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.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.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.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.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.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.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.*.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" ? {
|
|
5944
5856
|
uid: string;
|
|
5945
|
-
description: string;
|
|
5946
5857
|
name: string;
|
|
5858
|
+
description: string;
|
|
5947
5859
|
isReadOnly: boolean;
|
|
5948
5860
|
collectionUids: string[];
|
|
5949
5861
|
environmentUids: string[];
|
|
5950
5862
|
cookieUids: string[];
|
|
5951
5863
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5952
5864
|
hotKeyConfig?: {
|
|
5953
|
-
modifiers: ("
|
|
5954
|
-
hotKeys?: Partial<Record<"" | "
|
|
5865
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5866
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5955
5867
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5956
|
-
modifiers?: ("
|
|
5868
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5957
5869
|
}>> | undefined;
|
|
5958
5870
|
} | undefined;
|
|
5959
5871
|
proxyUrl?: string | undefined;
|
|
5960
5872
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5961
5873
|
uid: string;
|
|
5962
|
-
description: string;
|
|
5963
5874
|
name: string;
|
|
5875
|
+
description: string;
|
|
5964
5876
|
isReadOnly: boolean;
|
|
5965
5877
|
collectionUids: string[];
|
|
5966
5878
|
environmentUids: string[];
|
|
5967
5879
|
cookieUids: string[];
|
|
5968
5880
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5969
5881
|
hotKeyConfig?: {
|
|
5970
|
-
modifiers: ("
|
|
5971
|
-
hotKeys?: Partial<Record<"" | "
|
|
5882
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5883
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5972
5884
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5973
|
-
modifiers?: ("
|
|
5885
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5974
5886
|
}>> | undefined;
|
|
5975
5887
|
} | undefined;
|
|
5976
5888
|
proxyUrl?: string | undefined;
|
|
5977
5889
|
}[K]> ? PathValue<{
|
|
5978
5890
|
uid: string;
|
|
5979
|
-
description: string;
|
|
5980
5891
|
name: string;
|
|
5892
|
+
description: string;
|
|
5981
5893
|
isReadOnly: boolean;
|
|
5982
5894
|
collectionUids: string[];
|
|
5983
5895
|
environmentUids: string[];
|
|
5984
5896
|
cookieUids: string[];
|
|
5985
5897
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5986
5898
|
hotKeyConfig?: {
|
|
5987
|
-
modifiers: ("
|
|
5988
|
-
hotKeys?: Partial<Record<"" | "
|
|
5899
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5900
|
+
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5989
5901
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
5990
|
-
modifiers?: ("
|
|
5902
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5991
5903
|
}>> | undefined;
|
|
5992
5904
|
} | undefined;
|
|
5993
5905
|
proxyUrl?: string | undefined;
|