@scalar/api-client 2.0.54 → 2.0.56
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 +23 -0
- package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +6 -6
- package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts.map +1 -1
- package/dist/components/CommandPalette/TheCommandPalette.vue.js +4 -4
- package/dist/components/CommandPalette/TheCommandPalette.vue2.js +45 -45
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/components/Search/useSearch.d.ts +29 -0
- package/dist/components/Search/useSearch.d.ts.map +1 -0
- package/dist/components/Search/useSearch.js +62 -0
- package/dist/layouts/App/create-api-client-app.d.ts +260 -260
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +520 -520
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +260 -260
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.d.ts +3 -3
- package/dist/libs/event-busses/hot-keys-bus.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.js +17 -16
- package/dist/libs/local-storage.js +1 -1
- package/dist/store/workspace.d.ts +520 -520
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/views/Request/Request.vue.d.ts.map +1 -1
- package/dist/views/Request/Request.vue.js +2 -2
- package/dist/views/Request/Request.vue2.js +259 -215
- package/dist/views/Request/RequestSection/RequestParams.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestParams.vue.js +45 -41
- package/dist/views/Request/RequestSection/RequestTableTooltip.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestTableTooltip.vue.js +31 -25
- package/package.json +5 -5
- package/dist/components/Search/SearchButton.vue.js +0 -7
- package/dist/components/Search/SearchButton.vue2.js +0 -30
|
@@ -26,7 +26,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
26
26
|
hotKeyConfig?: {
|
|
27
27
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
28
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
|
-
event: "closeModal" | "
|
|
29
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
30
30
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
31
31
|
}>> | undefined;
|
|
32
32
|
} | undefined;
|
|
@@ -106,6 +106,34 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
106
106
|
uid: string;
|
|
107
107
|
name: string;
|
|
108
108
|
url: string;
|
|
109
|
+
requestUid: string;
|
|
110
|
+
body: {
|
|
111
|
+
raw: {
|
|
112
|
+
value: string;
|
|
113
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
114
|
+
};
|
|
115
|
+
formData: {
|
|
116
|
+
value: {
|
|
117
|
+
value: string;
|
|
118
|
+
key: string;
|
|
119
|
+
enabled: boolean;
|
|
120
|
+
minimum?: number | undefined;
|
|
121
|
+
type?: string | undefined;
|
|
122
|
+
maximum?: number | undefined;
|
|
123
|
+
default?: any;
|
|
124
|
+
required?: boolean | undefined;
|
|
125
|
+
description?: string | undefined;
|
|
126
|
+
enum?: string[] | undefined;
|
|
127
|
+
file?: any;
|
|
128
|
+
refUid?: string | undefined;
|
|
129
|
+
format?: string | undefined;
|
|
130
|
+
nullable?: boolean | undefined;
|
|
131
|
+
}[];
|
|
132
|
+
encoding: "form-data" | "urlencoded";
|
|
133
|
+
};
|
|
134
|
+
activeBody: "raw" | "formData" | "binary";
|
|
135
|
+
binary?: File | undefined;
|
|
136
|
+
};
|
|
109
137
|
parameters: {
|
|
110
138
|
path: {
|
|
111
139
|
value: string;
|
|
@@ -118,10 +146,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
118
146
|
required?: boolean | undefined;
|
|
119
147
|
description?: string | undefined;
|
|
120
148
|
enum?: string[] | undefined;
|
|
121
|
-
nullable?: boolean | undefined;
|
|
122
|
-
format?: string | undefined;
|
|
123
149
|
file?: any;
|
|
124
150
|
refUid?: string | undefined;
|
|
151
|
+
format?: string | undefined;
|
|
152
|
+
nullable?: boolean | undefined;
|
|
125
153
|
}[];
|
|
126
154
|
query: {
|
|
127
155
|
value: string;
|
|
@@ -134,10 +162,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
134
162
|
required?: boolean | undefined;
|
|
135
163
|
description?: string | undefined;
|
|
136
164
|
enum?: string[] | undefined;
|
|
137
|
-
nullable?: boolean | undefined;
|
|
138
|
-
format?: string | undefined;
|
|
139
165
|
file?: any;
|
|
140
166
|
refUid?: string | undefined;
|
|
167
|
+
format?: string | undefined;
|
|
168
|
+
nullable?: boolean | undefined;
|
|
141
169
|
}[];
|
|
142
170
|
headers: {
|
|
143
171
|
value: string;
|
|
@@ -150,10 +178,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
150
178
|
required?: boolean | undefined;
|
|
151
179
|
description?: string | undefined;
|
|
152
180
|
enum?: string[] | undefined;
|
|
153
|
-
nullable?: boolean | undefined;
|
|
154
|
-
format?: string | undefined;
|
|
155
181
|
file?: any;
|
|
156
182
|
refUid?: string | undefined;
|
|
183
|
+
format?: string | undefined;
|
|
184
|
+
nullable?: boolean | undefined;
|
|
157
185
|
}[];
|
|
158
186
|
cookies: {
|
|
159
187
|
value: string;
|
|
@@ -166,40 +194,12 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
166
194
|
required?: boolean | undefined;
|
|
167
195
|
description?: string | undefined;
|
|
168
196
|
enum?: string[] | undefined;
|
|
169
|
-
nullable?: boolean | undefined;
|
|
170
|
-
format?: string | undefined;
|
|
171
197
|
file?: any;
|
|
172
198
|
refUid?: string | undefined;
|
|
199
|
+
format?: string | undefined;
|
|
200
|
+
nullable?: boolean | undefined;
|
|
173
201
|
}[];
|
|
174
202
|
};
|
|
175
|
-
requestUid: string;
|
|
176
|
-
body: {
|
|
177
|
-
raw: {
|
|
178
|
-
value: string;
|
|
179
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
180
|
-
};
|
|
181
|
-
formData: {
|
|
182
|
-
value: {
|
|
183
|
-
value: string;
|
|
184
|
-
key: string;
|
|
185
|
-
enabled: boolean;
|
|
186
|
-
minimum?: number | undefined;
|
|
187
|
-
type?: string | undefined;
|
|
188
|
-
maximum?: number | undefined;
|
|
189
|
-
default?: any;
|
|
190
|
-
required?: boolean | undefined;
|
|
191
|
-
description?: string | undefined;
|
|
192
|
-
enum?: string[] | undefined;
|
|
193
|
-
nullable?: boolean | undefined;
|
|
194
|
-
format?: string | undefined;
|
|
195
|
-
file?: any;
|
|
196
|
-
refUid?: string | undefined;
|
|
197
|
-
}[];
|
|
198
|
-
encoding: "form-data" | "urlencoded";
|
|
199
|
-
};
|
|
200
|
-
activeBody: "raw" | "formData" | "binary";
|
|
201
|
-
binary?: File | undefined;
|
|
202
|
-
};
|
|
203
203
|
auth: Record<string, any>;
|
|
204
204
|
}>;
|
|
205
205
|
requests: Record<string, Request>;
|
|
@@ -327,6 +327,34 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
327
327
|
uid: string;
|
|
328
328
|
name: string;
|
|
329
329
|
url: string;
|
|
330
|
+
requestUid: string;
|
|
331
|
+
body: {
|
|
332
|
+
raw: {
|
|
333
|
+
value: string;
|
|
334
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
335
|
+
};
|
|
336
|
+
formData: {
|
|
337
|
+
value: {
|
|
338
|
+
value: string;
|
|
339
|
+
key: string;
|
|
340
|
+
enabled: boolean;
|
|
341
|
+
minimum?: number | undefined;
|
|
342
|
+
type?: string | undefined;
|
|
343
|
+
maximum?: number | undefined;
|
|
344
|
+
default?: any;
|
|
345
|
+
required?: boolean | undefined;
|
|
346
|
+
description?: string | undefined;
|
|
347
|
+
enum?: string[] | undefined;
|
|
348
|
+
file?: any;
|
|
349
|
+
refUid?: string | undefined;
|
|
350
|
+
format?: string | undefined;
|
|
351
|
+
nullable?: boolean | undefined;
|
|
352
|
+
}[];
|
|
353
|
+
encoding: "form-data" | "urlencoded";
|
|
354
|
+
};
|
|
355
|
+
activeBody: "raw" | "formData" | "binary";
|
|
356
|
+
binary?: File | undefined;
|
|
357
|
+
};
|
|
330
358
|
parameters: {
|
|
331
359
|
path: {
|
|
332
360
|
value: string;
|
|
@@ -339,10 +367,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
339
367
|
required?: boolean | undefined;
|
|
340
368
|
description?: string | undefined;
|
|
341
369
|
enum?: string[] | undefined;
|
|
342
|
-
nullable?: boolean | undefined;
|
|
343
|
-
format?: string | undefined;
|
|
344
370
|
file?: any;
|
|
345
371
|
refUid?: string | undefined;
|
|
372
|
+
format?: string | undefined;
|
|
373
|
+
nullable?: boolean | undefined;
|
|
346
374
|
}[];
|
|
347
375
|
query: {
|
|
348
376
|
value: string;
|
|
@@ -355,10 +383,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
355
383
|
required?: boolean | undefined;
|
|
356
384
|
description?: string | undefined;
|
|
357
385
|
enum?: string[] | undefined;
|
|
358
|
-
nullable?: boolean | undefined;
|
|
359
|
-
format?: string | undefined;
|
|
360
386
|
file?: any;
|
|
361
387
|
refUid?: string | undefined;
|
|
388
|
+
format?: string | undefined;
|
|
389
|
+
nullable?: boolean | undefined;
|
|
362
390
|
}[];
|
|
363
391
|
headers: {
|
|
364
392
|
value: string;
|
|
@@ -371,10 +399,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
371
399
|
required?: boolean | undefined;
|
|
372
400
|
description?: string | undefined;
|
|
373
401
|
enum?: string[] | undefined;
|
|
374
|
-
nullable?: boolean | undefined;
|
|
375
|
-
format?: string | undefined;
|
|
376
402
|
file?: any;
|
|
377
403
|
refUid?: string | undefined;
|
|
404
|
+
format?: string | undefined;
|
|
405
|
+
nullable?: boolean | undefined;
|
|
378
406
|
}[];
|
|
379
407
|
cookies: {
|
|
380
408
|
value: string;
|
|
@@ -387,40 +415,12 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
387
415
|
required?: boolean | undefined;
|
|
388
416
|
description?: string | undefined;
|
|
389
417
|
enum?: string[] | undefined;
|
|
390
|
-
nullable?: boolean | undefined;
|
|
391
|
-
format?: string | undefined;
|
|
392
418
|
file?: any;
|
|
393
419
|
refUid?: string | undefined;
|
|
420
|
+
format?: string | undefined;
|
|
421
|
+
nullable?: boolean | undefined;
|
|
394
422
|
}[];
|
|
395
423
|
};
|
|
396
|
-
requestUid: string;
|
|
397
|
-
body: {
|
|
398
|
-
raw: {
|
|
399
|
-
value: string;
|
|
400
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
401
|
-
};
|
|
402
|
-
formData: {
|
|
403
|
-
value: {
|
|
404
|
-
value: string;
|
|
405
|
-
key: string;
|
|
406
|
-
enabled: boolean;
|
|
407
|
-
minimum?: number | undefined;
|
|
408
|
-
type?: string | undefined;
|
|
409
|
-
maximum?: number | undefined;
|
|
410
|
-
default?: any;
|
|
411
|
-
required?: boolean | undefined;
|
|
412
|
-
description?: string | undefined;
|
|
413
|
-
enum?: string[] | undefined;
|
|
414
|
-
nullable?: boolean | undefined;
|
|
415
|
-
format?: string | undefined;
|
|
416
|
-
file?: any;
|
|
417
|
-
refUid?: string | undefined;
|
|
418
|
-
}[];
|
|
419
|
-
encoding: "form-data" | "urlencoded";
|
|
420
|
-
};
|
|
421
|
-
activeBody: "raw" | "formData" | "binary";
|
|
422
|
-
binary?: File | undefined;
|
|
423
|
-
};
|
|
424
424
|
auth: Record<string, any>;
|
|
425
425
|
}>;
|
|
426
426
|
activeRequest: import("vue").ComputedRef<Request>;
|
|
@@ -526,7 +526,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
526
526
|
hotKeyConfig?: {
|
|
527
527
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
528
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
529
|
-
event: "closeModal" | "
|
|
529
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
530
530
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
531
531
|
}>> | undefined;
|
|
532
532
|
} | undefined;
|
|
@@ -1244,8 +1244,8 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1244
1244
|
};
|
|
1245
1245
|
delete: (request: Request, parentUid?: string) => void;
|
|
1246
1246
|
set: (item: Request) => void;
|
|
1247
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1248
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1247
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? R extends Path<Request[K]> ? PathValue<Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1249
1249
|
undo: (uid: string) => void;
|
|
1250
1250
|
redo: (uid: string) => void;
|
|
1251
1251
|
loadLocalStorage: () => void;
|
|
@@ -1255,6 +1255,34 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1255
1255
|
uid: string;
|
|
1256
1256
|
name: string;
|
|
1257
1257
|
url: string;
|
|
1258
|
+
requestUid: string;
|
|
1259
|
+
body: {
|
|
1260
|
+
raw: {
|
|
1261
|
+
value: string;
|
|
1262
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1263
|
+
};
|
|
1264
|
+
formData: {
|
|
1265
|
+
value: {
|
|
1266
|
+
value: string;
|
|
1267
|
+
key: string;
|
|
1268
|
+
enabled: boolean;
|
|
1269
|
+
minimum?: number | undefined;
|
|
1270
|
+
type?: string | undefined;
|
|
1271
|
+
maximum?: number | undefined;
|
|
1272
|
+
default?: any;
|
|
1273
|
+
required?: boolean | undefined;
|
|
1274
|
+
description?: string | undefined;
|
|
1275
|
+
enum?: string[] | undefined;
|
|
1276
|
+
file?: any;
|
|
1277
|
+
refUid?: string | undefined;
|
|
1278
|
+
format?: string | undefined;
|
|
1279
|
+
nullable?: boolean | undefined;
|
|
1280
|
+
}[];
|
|
1281
|
+
encoding: "form-data" | "urlencoded";
|
|
1282
|
+
};
|
|
1283
|
+
activeBody: "raw" | "formData" | "binary";
|
|
1284
|
+
binary?: File | undefined;
|
|
1285
|
+
};
|
|
1258
1286
|
parameters: {
|
|
1259
1287
|
path: {
|
|
1260
1288
|
value: string;
|
|
@@ -1267,10 +1295,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1267
1295
|
required?: boolean | undefined;
|
|
1268
1296
|
description?: string | undefined;
|
|
1269
1297
|
enum?: string[] | undefined;
|
|
1270
|
-
nullable?: boolean | undefined;
|
|
1271
|
-
format?: string | undefined;
|
|
1272
1298
|
file?: any;
|
|
1273
1299
|
refUid?: string | undefined;
|
|
1300
|
+
format?: string | undefined;
|
|
1301
|
+
nullable?: boolean | undefined;
|
|
1274
1302
|
}[];
|
|
1275
1303
|
query: {
|
|
1276
1304
|
value: string;
|
|
@@ -1283,10 +1311,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1283
1311
|
required?: boolean | undefined;
|
|
1284
1312
|
description?: string | undefined;
|
|
1285
1313
|
enum?: string[] | undefined;
|
|
1286
|
-
nullable?: boolean | undefined;
|
|
1287
|
-
format?: string | undefined;
|
|
1288
1314
|
file?: any;
|
|
1289
1315
|
refUid?: string | undefined;
|
|
1316
|
+
format?: string | undefined;
|
|
1317
|
+
nullable?: boolean | undefined;
|
|
1290
1318
|
}[];
|
|
1291
1319
|
headers: {
|
|
1292
1320
|
value: string;
|
|
@@ -1299,10 +1327,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1299
1327
|
required?: boolean | undefined;
|
|
1300
1328
|
description?: string | undefined;
|
|
1301
1329
|
enum?: string[] | undefined;
|
|
1302
|
-
nullable?: boolean | undefined;
|
|
1303
|
-
format?: string | undefined;
|
|
1304
1330
|
file?: any;
|
|
1305
1331
|
refUid?: string | undefined;
|
|
1332
|
+
format?: string | undefined;
|
|
1333
|
+
nullable?: boolean | undefined;
|
|
1306
1334
|
}[];
|
|
1307
1335
|
cookies: {
|
|
1308
1336
|
value: string;
|
|
@@ -1315,17 +1343,23 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1315
1343
|
required?: boolean | undefined;
|
|
1316
1344
|
description?: string | undefined;
|
|
1317
1345
|
enum?: string[] | undefined;
|
|
1318
|
-
nullable?: boolean | undefined;
|
|
1319
|
-
format?: string | undefined;
|
|
1320
1346
|
file?: any;
|
|
1321
1347
|
refUid?: string | undefined;
|
|
1348
|
+
format?: string | undefined;
|
|
1349
|
+
nullable?: boolean | undefined;
|
|
1322
1350
|
}[];
|
|
1323
1351
|
};
|
|
1352
|
+
auth: Record<string, any>;
|
|
1353
|
+
}) => void;
|
|
1354
|
+
add: (request: Request, name?: string) => {
|
|
1355
|
+
uid: string;
|
|
1356
|
+
name: string;
|
|
1357
|
+
url: string;
|
|
1324
1358
|
requestUid: string;
|
|
1325
1359
|
body: {
|
|
1326
1360
|
raw: {
|
|
1327
1361
|
value: string;
|
|
1328
|
-
encoding: "
|
|
1362
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1329
1363
|
};
|
|
1330
1364
|
formData: {
|
|
1331
1365
|
value: {
|
|
@@ -1339,22 +1373,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1339
1373
|
required?: boolean | undefined;
|
|
1340
1374
|
description?: string | undefined;
|
|
1341
1375
|
enum?: string[] | undefined;
|
|
1342
|
-
nullable?: boolean | undefined;
|
|
1343
|
-
format?: string | undefined;
|
|
1344
1376
|
file?: any;
|
|
1345
1377
|
refUid?: string | undefined;
|
|
1378
|
+
format?: string | undefined;
|
|
1379
|
+
nullable?: boolean | undefined;
|
|
1346
1380
|
}[];
|
|
1347
1381
|
encoding: "form-data" | "urlencoded";
|
|
1348
1382
|
};
|
|
1349
1383
|
activeBody: "raw" | "formData" | "binary";
|
|
1350
1384
|
binary?: File | undefined;
|
|
1351
1385
|
};
|
|
1352
|
-
auth: Record<string, any>;
|
|
1353
|
-
}) => void;
|
|
1354
|
-
add: (request: Request, name?: string) => {
|
|
1355
|
-
uid: string;
|
|
1356
|
-
name: string;
|
|
1357
|
-
url: string;
|
|
1358
1386
|
parameters: {
|
|
1359
1387
|
path: {
|
|
1360
1388
|
value: string;
|
|
@@ -1367,10 +1395,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1367
1395
|
required?: boolean | undefined;
|
|
1368
1396
|
description?: string | undefined;
|
|
1369
1397
|
enum?: string[] | undefined;
|
|
1370
|
-
nullable?: boolean | undefined;
|
|
1371
|
-
format?: string | undefined;
|
|
1372
1398
|
file?: any;
|
|
1373
1399
|
refUid?: string | undefined;
|
|
1400
|
+
format?: string | undefined;
|
|
1401
|
+
nullable?: boolean | undefined;
|
|
1374
1402
|
}[];
|
|
1375
1403
|
query: {
|
|
1376
1404
|
value: string;
|
|
@@ -1383,10 +1411,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1383
1411
|
required?: boolean | undefined;
|
|
1384
1412
|
description?: string | undefined;
|
|
1385
1413
|
enum?: string[] | undefined;
|
|
1386
|
-
nullable?: boolean | undefined;
|
|
1387
|
-
format?: string | undefined;
|
|
1388
1414
|
file?: any;
|
|
1389
1415
|
refUid?: string | undefined;
|
|
1416
|
+
format?: string | undefined;
|
|
1417
|
+
nullable?: boolean | undefined;
|
|
1390
1418
|
}[];
|
|
1391
1419
|
headers: {
|
|
1392
1420
|
value: string;
|
|
@@ -1399,10 +1427,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1399
1427
|
required?: boolean | undefined;
|
|
1400
1428
|
description?: string | undefined;
|
|
1401
1429
|
enum?: string[] | undefined;
|
|
1402
|
-
nullable?: boolean | undefined;
|
|
1403
|
-
format?: string | undefined;
|
|
1404
1430
|
file?: any;
|
|
1405
1431
|
refUid?: string | undefined;
|
|
1432
|
+
format?: string | undefined;
|
|
1433
|
+
nullable?: boolean | undefined;
|
|
1406
1434
|
}[];
|
|
1407
1435
|
cookies: {
|
|
1408
1436
|
value: string;
|
|
@@ -1415,17 +1443,24 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1415
1443
|
required?: boolean | undefined;
|
|
1416
1444
|
description?: string | undefined;
|
|
1417
1445
|
enum?: string[] | undefined;
|
|
1418
|
-
nullable?: boolean | undefined;
|
|
1419
|
-
format?: string | undefined;
|
|
1420
1446
|
file?: any;
|
|
1421
1447
|
refUid?: string | undefined;
|
|
1448
|
+
format?: string | undefined;
|
|
1449
|
+
nullable?: boolean | undefined;
|
|
1422
1450
|
}[];
|
|
1423
1451
|
};
|
|
1452
|
+
auth: Record<string, any>;
|
|
1453
|
+
};
|
|
1454
|
+
delete: (requestExample: RequestExample) => void;
|
|
1455
|
+
set: (item: {
|
|
1456
|
+
uid: string;
|
|
1457
|
+
name: string;
|
|
1458
|
+
url: string;
|
|
1424
1459
|
requestUid: string;
|
|
1425
1460
|
body: {
|
|
1426
1461
|
raw: {
|
|
1427
1462
|
value: string;
|
|
1428
|
-
encoding: "
|
|
1463
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1429
1464
|
};
|
|
1430
1465
|
formData: {
|
|
1431
1466
|
value: {
|
|
@@ -1439,23 +1474,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1439
1474
|
required?: boolean | undefined;
|
|
1440
1475
|
description?: string | undefined;
|
|
1441
1476
|
enum?: string[] | undefined;
|
|
1442
|
-
nullable?: boolean | undefined;
|
|
1443
|
-
format?: string | undefined;
|
|
1444
1477
|
file?: any;
|
|
1445
1478
|
refUid?: string | undefined;
|
|
1479
|
+
format?: string | undefined;
|
|
1480
|
+
nullable?: boolean | undefined;
|
|
1446
1481
|
}[];
|
|
1447
1482
|
encoding: "form-data" | "urlencoded";
|
|
1448
1483
|
};
|
|
1449
1484
|
activeBody: "raw" | "formData" | "binary";
|
|
1450
1485
|
binary?: File | undefined;
|
|
1451
1486
|
};
|
|
1452
|
-
auth: Record<string, any>;
|
|
1453
|
-
};
|
|
1454
|
-
delete: (requestExample: RequestExample) => void;
|
|
1455
|
-
set: (item: {
|
|
1456
|
-
uid: string;
|
|
1457
|
-
name: string;
|
|
1458
|
-
url: string;
|
|
1459
1487
|
parameters: {
|
|
1460
1488
|
path: {
|
|
1461
1489
|
value: string;
|
|
@@ -1468,10 +1496,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1468
1496
|
required?: boolean | undefined;
|
|
1469
1497
|
description?: string | undefined;
|
|
1470
1498
|
enum?: string[] | undefined;
|
|
1471
|
-
nullable?: boolean | undefined;
|
|
1472
|
-
format?: string | undefined;
|
|
1473
1499
|
file?: any;
|
|
1474
1500
|
refUid?: string | undefined;
|
|
1501
|
+
format?: string | undefined;
|
|
1502
|
+
nullable?: boolean | undefined;
|
|
1475
1503
|
}[];
|
|
1476
1504
|
query: {
|
|
1477
1505
|
value: string;
|
|
@@ -1484,10 +1512,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1484
1512
|
required?: boolean | undefined;
|
|
1485
1513
|
description?: string | undefined;
|
|
1486
1514
|
enum?: string[] | undefined;
|
|
1487
|
-
nullable?: boolean | undefined;
|
|
1488
|
-
format?: string | undefined;
|
|
1489
1515
|
file?: any;
|
|
1490
1516
|
refUid?: string | undefined;
|
|
1517
|
+
format?: string | undefined;
|
|
1518
|
+
nullable?: boolean | undefined;
|
|
1491
1519
|
}[];
|
|
1492
1520
|
headers: {
|
|
1493
1521
|
value: string;
|
|
@@ -1500,10 +1528,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1500
1528
|
required?: boolean | undefined;
|
|
1501
1529
|
description?: string | undefined;
|
|
1502
1530
|
enum?: string[] | undefined;
|
|
1503
|
-
nullable?: boolean | undefined;
|
|
1504
|
-
format?: string | undefined;
|
|
1505
1531
|
file?: any;
|
|
1506
1532
|
refUid?: string | undefined;
|
|
1533
|
+
format?: string | undefined;
|
|
1534
|
+
nullable?: boolean | undefined;
|
|
1507
1535
|
}[];
|
|
1508
1536
|
cookies: {
|
|
1509
1537
|
value: string;
|
|
@@ -1516,17 +1544,23 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1516
1544
|
required?: boolean | undefined;
|
|
1517
1545
|
description?: string | undefined;
|
|
1518
1546
|
enum?: string[] | undefined;
|
|
1519
|
-
nullable?: boolean | undefined;
|
|
1520
|
-
format?: string | undefined;
|
|
1521
1547
|
file?: any;
|
|
1522
1548
|
refUid?: string | undefined;
|
|
1549
|
+
format?: string | undefined;
|
|
1550
|
+
nullable?: boolean | undefined;
|
|
1523
1551
|
}[];
|
|
1524
1552
|
};
|
|
1553
|
+
auth: Record<string, any>;
|
|
1554
|
+
}) => void;
|
|
1555
|
+
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `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}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `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}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `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}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `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}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `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" ? {
|
|
1556
|
+
uid: string;
|
|
1557
|
+
name: string;
|
|
1558
|
+
url: string;
|
|
1525
1559
|
requestUid: string;
|
|
1526
1560
|
body: {
|
|
1527
1561
|
raw: {
|
|
1528
1562
|
value: string;
|
|
1529
|
-
encoding: "
|
|
1563
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1530
1564
|
};
|
|
1531
1565
|
formData: {
|
|
1532
1566
|
value: {
|
|
@@ -1540,22 +1574,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1540
1574
|
required?: boolean | undefined;
|
|
1541
1575
|
description?: string | undefined;
|
|
1542
1576
|
enum?: string[] | undefined;
|
|
1543
|
-
nullable?: boolean | undefined;
|
|
1544
|
-
format?: string | undefined;
|
|
1545
1577
|
file?: any;
|
|
1546
1578
|
refUid?: string | undefined;
|
|
1579
|
+
format?: string | undefined;
|
|
1580
|
+
nullable?: boolean | undefined;
|
|
1547
1581
|
}[];
|
|
1548
1582
|
encoding: "form-data" | "urlencoded";
|
|
1549
1583
|
};
|
|
1550
1584
|
activeBody: "raw" | "formData" | "binary";
|
|
1551
1585
|
binary?: File | undefined;
|
|
1552
1586
|
};
|
|
1553
|
-
auth: Record<string, any>;
|
|
1554
|
-
}) => void;
|
|
1555
|
-
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
|
|
1556
|
-
uid: string;
|
|
1557
|
-
name: string;
|
|
1558
|
-
url: string;
|
|
1559
1587
|
parameters: {
|
|
1560
1588
|
path: {
|
|
1561
1589
|
value: string;
|
|
@@ -1568,10 +1596,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1568
1596
|
required?: boolean | undefined;
|
|
1569
1597
|
description?: string | undefined;
|
|
1570
1598
|
enum?: string[] | undefined;
|
|
1571
|
-
nullable?: boolean | undefined;
|
|
1572
|
-
format?: string | undefined;
|
|
1573
1599
|
file?: any;
|
|
1574
1600
|
refUid?: string | undefined;
|
|
1601
|
+
format?: string | undefined;
|
|
1602
|
+
nullable?: boolean | undefined;
|
|
1575
1603
|
}[];
|
|
1576
1604
|
query: {
|
|
1577
1605
|
value: string;
|
|
@@ -1584,10 +1612,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1584
1612
|
required?: boolean | undefined;
|
|
1585
1613
|
description?: string | undefined;
|
|
1586
1614
|
enum?: string[] | undefined;
|
|
1587
|
-
nullable?: boolean | undefined;
|
|
1588
|
-
format?: string | undefined;
|
|
1589
1615
|
file?: any;
|
|
1590
1616
|
refUid?: string | undefined;
|
|
1617
|
+
format?: string | undefined;
|
|
1618
|
+
nullable?: boolean | undefined;
|
|
1591
1619
|
}[];
|
|
1592
1620
|
headers: {
|
|
1593
1621
|
value: string;
|
|
@@ -1600,10 +1628,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1600
1628
|
required?: boolean | undefined;
|
|
1601
1629
|
description?: string | undefined;
|
|
1602
1630
|
enum?: string[] | undefined;
|
|
1603
|
-
nullable?: boolean | undefined;
|
|
1604
|
-
format?: string | undefined;
|
|
1605
1631
|
file?: any;
|
|
1606
1632
|
refUid?: string | undefined;
|
|
1633
|
+
format?: string | undefined;
|
|
1634
|
+
nullable?: boolean | undefined;
|
|
1607
1635
|
}[];
|
|
1608
1636
|
cookies: {
|
|
1609
1637
|
value: string;
|
|
@@ -1616,17 +1644,22 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1616
1644
|
required?: boolean | undefined;
|
|
1617
1645
|
description?: string | undefined;
|
|
1618
1646
|
enum?: string[] | undefined;
|
|
1619
|
-
nullable?: boolean | undefined;
|
|
1620
|
-
format?: string | undefined;
|
|
1621
1647
|
file?: any;
|
|
1622
1648
|
refUid?: string | undefined;
|
|
1649
|
+
format?: string | undefined;
|
|
1650
|
+
nullable?: boolean | undefined;
|
|
1623
1651
|
}[];
|
|
1624
1652
|
};
|
|
1653
|
+
auth: Record<string, any>;
|
|
1654
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
1655
|
+
uid: string;
|
|
1656
|
+
name: string;
|
|
1657
|
+
url: string;
|
|
1625
1658
|
requestUid: string;
|
|
1626
1659
|
body: {
|
|
1627
1660
|
raw: {
|
|
1628
1661
|
value: string;
|
|
1629
|
-
encoding: "
|
|
1662
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1630
1663
|
};
|
|
1631
1664
|
formData: {
|
|
1632
1665
|
value: {
|
|
@@ -1640,21 +1673,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1640
1673
|
required?: boolean | undefined;
|
|
1641
1674
|
description?: string | undefined;
|
|
1642
1675
|
enum?: string[] | undefined;
|
|
1643
|
-
nullable?: boolean | undefined;
|
|
1644
|
-
format?: string | undefined;
|
|
1645
1676
|
file?: any;
|
|
1646
1677
|
refUid?: string | undefined;
|
|
1678
|
+
format?: string | undefined;
|
|
1679
|
+
nullable?: boolean | undefined;
|
|
1647
1680
|
}[];
|
|
1648
1681
|
encoding: "form-data" | "urlencoded";
|
|
1649
1682
|
};
|
|
1650
1683
|
activeBody: "raw" | "formData" | "binary";
|
|
1651
1684
|
binary?: File | undefined;
|
|
1652
1685
|
};
|
|
1653
|
-
auth: Record<string, any>;
|
|
1654
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
1655
|
-
uid: string;
|
|
1656
|
-
name: string;
|
|
1657
|
-
url: string;
|
|
1658
1686
|
parameters: {
|
|
1659
1687
|
path: {
|
|
1660
1688
|
value: string;
|
|
@@ -1667,10 +1695,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1667
1695
|
required?: boolean | undefined;
|
|
1668
1696
|
description?: string | undefined;
|
|
1669
1697
|
enum?: string[] | undefined;
|
|
1670
|
-
nullable?: boolean | undefined;
|
|
1671
|
-
format?: string | undefined;
|
|
1672
1698
|
file?: any;
|
|
1673
1699
|
refUid?: string | undefined;
|
|
1700
|
+
format?: string | undefined;
|
|
1701
|
+
nullable?: boolean | undefined;
|
|
1674
1702
|
}[];
|
|
1675
1703
|
query: {
|
|
1676
1704
|
value: string;
|
|
@@ -1683,10 +1711,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1683
1711
|
required?: boolean | undefined;
|
|
1684
1712
|
description?: string | undefined;
|
|
1685
1713
|
enum?: string[] | undefined;
|
|
1686
|
-
nullable?: boolean | undefined;
|
|
1687
|
-
format?: string | undefined;
|
|
1688
1714
|
file?: any;
|
|
1689
1715
|
refUid?: string | undefined;
|
|
1716
|
+
format?: string | undefined;
|
|
1717
|
+
nullable?: boolean | undefined;
|
|
1690
1718
|
}[];
|
|
1691
1719
|
headers: {
|
|
1692
1720
|
value: string;
|
|
@@ -1699,10 +1727,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1699
1727
|
required?: boolean | undefined;
|
|
1700
1728
|
description?: string | undefined;
|
|
1701
1729
|
enum?: string[] | undefined;
|
|
1702
|
-
nullable?: boolean | undefined;
|
|
1703
|
-
format?: string | undefined;
|
|
1704
1730
|
file?: any;
|
|
1705
1731
|
refUid?: string | undefined;
|
|
1732
|
+
format?: string | undefined;
|
|
1733
|
+
nullable?: boolean | undefined;
|
|
1706
1734
|
}[];
|
|
1707
1735
|
cookies: {
|
|
1708
1736
|
value: string;
|
|
@@ -1715,17 +1743,22 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1715
1743
|
required?: boolean | undefined;
|
|
1716
1744
|
description?: string | undefined;
|
|
1717
1745
|
enum?: string[] | undefined;
|
|
1718
|
-
nullable?: boolean | undefined;
|
|
1719
|
-
format?: string | undefined;
|
|
1720
1746
|
file?: any;
|
|
1721
1747
|
refUid?: string | undefined;
|
|
1748
|
+
format?: string | undefined;
|
|
1749
|
+
nullable?: boolean | undefined;
|
|
1722
1750
|
}[];
|
|
1723
1751
|
};
|
|
1752
|
+
auth: Record<string, any>;
|
|
1753
|
+
}[K]> ? PathValue<{
|
|
1754
|
+
uid: string;
|
|
1755
|
+
name: string;
|
|
1756
|
+
url: string;
|
|
1724
1757
|
requestUid: string;
|
|
1725
1758
|
body: {
|
|
1726
1759
|
raw: {
|
|
1727
1760
|
value: string;
|
|
1728
|
-
encoding: "
|
|
1761
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1729
1762
|
};
|
|
1730
1763
|
formData: {
|
|
1731
1764
|
value: {
|
|
@@ -1739,21 +1772,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1739
1772
|
required?: boolean | undefined;
|
|
1740
1773
|
description?: string | undefined;
|
|
1741
1774
|
enum?: string[] | undefined;
|
|
1742
|
-
nullable?: boolean | undefined;
|
|
1743
|
-
format?: string | undefined;
|
|
1744
1775
|
file?: any;
|
|
1745
1776
|
refUid?: string | undefined;
|
|
1777
|
+
format?: string | undefined;
|
|
1778
|
+
nullable?: boolean | undefined;
|
|
1746
1779
|
}[];
|
|
1747
1780
|
encoding: "form-data" | "urlencoded";
|
|
1748
1781
|
};
|
|
1749
1782
|
activeBody: "raw" | "formData" | "binary";
|
|
1750
1783
|
binary?: File | undefined;
|
|
1751
1784
|
};
|
|
1752
|
-
auth: Record<string, any>;
|
|
1753
|
-
}[K]> ? PathValue<{
|
|
1754
|
-
uid: string;
|
|
1755
|
-
name: string;
|
|
1756
|
-
url: string;
|
|
1757
1785
|
parameters: {
|
|
1758
1786
|
path: {
|
|
1759
1787
|
value: string;
|
|
@@ -1766,10 +1794,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1766
1794
|
required?: boolean | undefined;
|
|
1767
1795
|
description?: string | undefined;
|
|
1768
1796
|
enum?: string[] | undefined;
|
|
1769
|
-
nullable?: boolean | undefined;
|
|
1770
|
-
format?: string | undefined;
|
|
1771
1797
|
file?: any;
|
|
1772
1798
|
refUid?: string | undefined;
|
|
1799
|
+
format?: string | undefined;
|
|
1800
|
+
nullable?: boolean | undefined;
|
|
1773
1801
|
}[];
|
|
1774
1802
|
query: {
|
|
1775
1803
|
value: string;
|
|
@@ -1782,10 +1810,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1782
1810
|
required?: boolean | undefined;
|
|
1783
1811
|
description?: string | undefined;
|
|
1784
1812
|
enum?: string[] | undefined;
|
|
1785
|
-
nullable?: boolean | undefined;
|
|
1786
|
-
format?: string | undefined;
|
|
1787
1813
|
file?: any;
|
|
1788
1814
|
refUid?: string | undefined;
|
|
1815
|
+
format?: string | undefined;
|
|
1816
|
+
nullable?: boolean | undefined;
|
|
1789
1817
|
}[];
|
|
1790
1818
|
headers: {
|
|
1791
1819
|
value: string;
|
|
@@ -1798,10 +1826,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1798
1826
|
required?: boolean | undefined;
|
|
1799
1827
|
description?: string | undefined;
|
|
1800
1828
|
enum?: string[] | undefined;
|
|
1801
|
-
nullable?: boolean | undefined;
|
|
1802
|
-
format?: string | undefined;
|
|
1803
1829
|
file?: any;
|
|
1804
1830
|
refUid?: string | undefined;
|
|
1831
|
+
format?: string | undefined;
|
|
1832
|
+
nullable?: boolean | undefined;
|
|
1805
1833
|
}[];
|
|
1806
1834
|
cookies: {
|
|
1807
1835
|
value: string;
|
|
@@ -1814,17 +1842,23 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1814
1842
|
required?: boolean | undefined;
|
|
1815
1843
|
description?: string | undefined;
|
|
1816
1844
|
enum?: string[] | undefined;
|
|
1817
|
-
nullable?: boolean | undefined;
|
|
1818
|
-
format?: string | undefined;
|
|
1819
1845
|
file?: any;
|
|
1820
1846
|
refUid?: string | undefined;
|
|
1847
|
+
format?: string | undefined;
|
|
1848
|
+
nullable?: boolean | undefined;
|
|
1821
1849
|
}[];
|
|
1822
1850
|
};
|
|
1851
|
+
auth: Record<string, any>;
|
|
1852
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1853
|
+
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `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}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `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}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `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}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `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}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `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" ? {
|
|
1854
|
+
uid: string;
|
|
1855
|
+
name: string;
|
|
1856
|
+
url: string;
|
|
1823
1857
|
requestUid: string;
|
|
1824
1858
|
body: {
|
|
1825
1859
|
raw: {
|
|
1826
1860
|
value: string;
|
|
1827
|
-
encoding: "
|
|
1861
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1828
1862
|
};
|
|
1829
1863
|
formData: {
|
|
1830
1864
|
value: {
|
|
@@ -1838,22 +1872,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1838
1872
|
required?: boolean | undefined;
|
|
1839
1873
|
description?: string | undefined;
|
|
1840
1874
|
enum?: string[] | undefined;
|
|
1841
|
-
nullable?: boolean | undefined;
|
|
1842
|
-
format?: string | undefined;
|
|
1843
1875
|
file?: any;
|
|
1844
1876
|
refUid?: string | undefined;
|
|
1877
|
+
format?: string | undefined;
|
|
1878
|
+
nullable?: boolean | undefined;
|
|
1845
1879
|
}[];
|
|
1846
1880
|
encoding: "form-data" | "urlencoded";
|
|
1847
1881
|
};
|
|
1848
1882
|
activeBody: "raw" | "formData" | "binary";
|
|
1849
1883
|
binary?: File | undefined;
|
|
1850
1884
|
};
|
|
1851
|
-
auth: Record<string, any>;
|
|
1852
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1853
|
-
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
|
|
1854
|
-
uid: string;
|
|
1855
|
-
name: string;
|
|
1856
|
-
url: string;
|
|
1857
1885
|
parameters: {
|
|
1858
1886
|
path: {
|
|
1859
1887
|
value: string;
|
|
@@ -1866,10 +1894,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1866
1894
|
required?: boolean | undefined;
|
|
1867
1895
|
description?: string | undefined;
|
|
1868
1896
|
enum?: string[] | undefined;
|
|
1869
|
-
nullable?: boolean | undefined;
|
|
1870
|
-
format?: string | undefined;
|
|
1871
1897
|
file?: any;
|
|
1872
1898
|
refUid?: string | undefined;
|
|
1899
|
+
format?: string | undefined;
|
|
1900
|
+
nullable?: boolean | undefined;
|
|
1873
1901
|
}[];
|
|
1874
1902
|
query: {
|
|
1875
1903
|
value: string;
|
|
@@ -1882,10 +1910,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1882
1910
|
required?: boolean | undefined;
|
|
1883
1911
|
description?: string | undefined;
|
|
1884
1912
|
enum?: string[] | undefined;
|
|
1885
|
-
nullable?: boolean | undefined;
|
|
1886
|
-
format?: string | undefined;
|
|
1887
1913
|
file?: any;
|
|
1888
1914
|
refUid?: string | undefined;
|
|
1915
|
+
format?: string | undefined;
|
|
1916
|
+
nullable?: boolean | undefined;
|
|
1889
1917
|
}[];
|
|
1890
1918
|
headers: {
|
|
1891
1919
|
value: string;
|
|
@@ -1898,10 +1926,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1898
1926
|
required?: boolean | undefined;
|
|
1899
1927
|
description?: string | undefined;
|
|
1900
1928
|
enum?: string[] | undefined;
|
|
1901
|
-
nullable?: boolean | undefined;
|
|
1902
|
-
format?: string | undefined;
|
|
1903
1929
|
file?: any;
|
|
1904
1930
|
refUid?: string | undefined;
|
|
1931
|
+
format?: string | undefined;
|
|
1932
|
+
nullable?: boolean | undefined;
|
|
1905
1933
|
}[];
|
|
1906
1934
|
cookies: {
|
|
1907
1935
|
value: string;
|
|
@@ -1914,17 +1942,22 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1914
1942
|
required?: boolean | undefined;
|
|
1915
1943
|
description?: string | undefined;
|
|
1916
1944
|
enum?: string[] | undefined;
|
|
1917
|
-
nullable?: boolean | undefined;
|
|
1918
|
-
format?: string | undefined;
|
|
1919
1945
|
file?: any;
|
|
1920
1946
|
refUid?: string | undefined;
|
|
1947
|
+
format?: string | undefined;
|
|
1948
|
+
nullable?: boolean | undefined;
|
|
1921
1949
|
}[];
|
|
1922
1950
|
};
|
|
1951
|
+
auth: Record<string, any>;
|
|
1952
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
1953
|
+
uid: string;
|
|
1954
|
+
name: string;
|
|
1955
|
+
url: string;
|
|
1923
1956
|
requestUid: string;
|
|
1924
1957
|
body: {
|
|
1925
1958
|
raw: {
|
|
1926
1959
|
value: string;
|
|
1927
|
-
encoding: "
|
|
1960
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1928
1961
|
};
|
|
1929
1962
|
formData: {
|
|
1930
1963
|
value: {
|
|
@@ -1938,21 +1971,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1938
1971
|
required?: boolean | undefined;
|
|
1939
1972
|
description?: string | undefined;
|
|
1940
1973
|
enum?: string[] | undefined;
|
|
1941
|
-
nullable?: boolean | undefined;
|
|
1942
|
-
format?: string | undefined;
|
|
1943
1974
|
file?: any;
|
|
1944
1975
|
refUid?: string | undefined;
|
|
1976
|
+
format?: string | undefined;
|
|
1977
|
+
nullable?: boolean | undefined;
|
|
1945
1978
|
}[];
|
|
1946
1979
|
encoding: "form-data" | "urlencoded";
|
|
1947
1980
|
};
|
|
1948
1981
|
activeBody: "raw" | "formData" | "binary";
|
|
1949
1982
|
binary?: File | undefined;
|
|
1950
1983
|
};
|
|
1951
|
-
auth: Record<string, any>;
|
|
1952
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
1953
|
-
uid: string;
|
|
1954
|
-
name: string;
|
|
1955
|
-
url: string;
|
|
1956
1984
|
parameters: {
|
|
1957
1985
|
path: {
|
|
1958
1986
|
value: string;
|
|
@@ -1965,10 +1993,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1965
1993
|
required?: boolean | undefined;
|
|
1966
1994
|
description?: string | undefined;
|
|
1967
1995
|
enum?: string[] | undefined;
|
|
1968
|
-
nullable?: boolean | undefined;
|
|
1969
|
-
format?: string | undefined;
|
|
1970
1996
|
file?: any;
|
|
1971
1997
|
refUid?: string | undefined;
|
|
1998
|
+
format?: string | undefined;
|
|
1999
|
+
nullable?: boolean | undefined;
|
|
1972
2000
|
}[];
|
|
1973
2001
|
query: {
|
|
1974
2002
|
value: string;
|
|
@@ -1981,10 +2009,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1981
2009
|
required?: boolean | undefined;
|
|
1982
2010
|
description?: string | undefined;
|
|
1983
2011
|
enum?: string[] | undefined;
|
|
1984
|
-
nullable?: boolean | undefined;
|
|
1985
|
-
format?: string | undefined;
|
|
1986
2012
|
file?: any;
|
|
1987
2013
|
refUid?: string | undefined;
|
|
2014
|
+
format?: string | undefined;
|
|
2015
|
+
nullable?: boolean | undefined;
|
|
1988
2016
|
}[];
|
|
1989
2017
|
headers: {
|
|
1990
2018
|
value: string;
|
|
@@ -1997,10 +2025,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1997
2025
|
required?: boolean | undefined;
|
|
1998
2026
|
description?: string | undefined;
|
|
1999
2027
|
enum?: string[] | undefined;
|
|
2000
|
-
nullable?: boolean | undefined;
|
|
2001
|
-
format?: string | undefined;
|
|
2002
2028
|
file?: any;
|
|
2003
2029
|
refUid?: string | undefined;
|
|
2030
|
+
format?: string | undefined;
|
|
2031
|
+
nullable?: boolean | undefined;
|
|
2004
2032
|
}[];
|
|
2005
2033
|
cookies: {
|
|
2006
2034
|
value: string;
|
|
@@ -2013,17 +2041,22 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2013
2041
|
required?: boolean | undefined;
|
|
2014
2042
|
description?: string | undefined;
|
|
2015
2043
|
enum?: string[] | undefined;
|
|
2016
|
-
nullable?: boolean | undefined;
|
|
2017
|
-
format?: string | undefined;
|
|
2018
2044
|
file?: any;
|
|
2019
2045
|
refUid?: string | undefined;
|
|
2046
|
+
format?: string | undefined;
|
|
2047
|
+
nullable?: boolean | undefined;
|
|
2020
2048
|
}[];
|
|
2021
2049
|
};
|
|
2050
|
+
auth: Record<string, any>;
|
|
2051
|
+
}[K]> ? PathValue<{
|
|
2052
|
+
uid: string;
|
|
2053
|
+
name: string;
|
|
2054
|
+
url: string;
|
|
2022
2055
|
requestUid: string;
|
|
2023
2056
|
body: {
|
|
2024
2057
|
raw: {
|
|
2025
2058
|
value: string;
|
|
2026
|
-
encoding: "
|
|
2059
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
2027
2060
|
};
|
|
2028
2061
|
formData: {
|
|
2029
2062
|
value: {
|
|
@@ -2037,21 +2070,16 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2037
2070
|
required?: boolean | undefined;
|
|
2038
2071
|
description?: string | undefined;
|
|
2039
2072
|
enum?: string[] | undefined;
|
|
2040
|
-
nullable?: boolean | undefined;
|
|
2041
|
-
format?: string | undefined;
|
|
2042
2073
|
file?: any;
|
|
2043
2074
|
refUid?: string | undefined;
|
|
2075
|
+
format?: string | undefined;
|
|
2076
|
+
nullable?: boolean | undefined;
|
|
2044
2077
|
}[];
|
|
2045
2078
|
encoding: "form-data" | "urlencoded";
|
|
2046
2079
|
};
|
|
2047
2080
|
activeBody: "raw" | "formData" | "binary";
|
|
2048
2081
|
binary?: File | undefined;
|
|
2049
2082
|
};
|
|
2050
|
-
auth: Record<string, any>;
|
|
2051
|
-
}[K]> ? PathValue<{
|
|
2052
|
-
uid: string;
|
|
2053
|
-
name: string;
|
|
2054
|
-
url: string;
|
|
2055
2083
|
parameters: {
|
|
2056
2084
|
path: {
|
|
2057
2085
|
value: string;
|
|
@@ -2064,10 +2092,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2064
2092
|
required?: boolean | undefined;
|
|
2065
2093
|
description?: string | undefined;
|
|
2066
2094
|
enum?: string[] | undefined;
|
|
2067
|
-
nullable?: boolean | undefined;
|
|
2068
|
-
format?: string | undefined;
|
|
2069
2095
|
file?: any;
|
|
2070
2096
|
refUid?: string | undefined;
|
|
2097
|
+
format?: string | undefined;
|
|
2098
|
+
nullable?: boolean | undefined;
|
|
2071
2099
|
}[];
|
|
2072
2100
|
query: {
|
|
2073
2101
|
value: string;
|
|
@@ -2080,10 +2108,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2080
2108
|
required?: boolean | undefined;
|
|
2081
2109
|
description?: string | undefined;
|
|
2082
2110
|
enum?: string[] | undefined;
|
|
2083
|
-
nullable?: boolean | undefined;
|
|
2084
|
-
format?: string | undefined;
|
|
2085
2111
|
file?: any;
|
|
2086
2112
|
refUid?: string | undefined;
|
|
2113
|
+
format?: string | undefined;
|
|
2114
|
+
nullable?: boolean | undefined;
|
|
2087
2115
|
}[];
|
|
2088
2116
|
headers: {
|
|
2089
2117
|
value: string;
|
|
@@ -2096,10 +2124,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2096
2124
|
required?: boolean | undefined;
|
|
2097
2125
|
description?: string | undefined;
|
|
2098
2126
|
enum?: string[] | undefined;
|
|
2099
|
-
nullable?: boolean | undefined;
|
|
2100
|
-
format?: string | undefined;
|
|
2101
2127
|
file?: any;
|
|
2102
2128
|
refUid?: string | undefined;
|
|
2129
|
+
format?: string | undefined;
|
|
2130
|
+
nullable?: boolean | undefined;
|
|
2103
2131
|
}[];
|
|
2104
2132
|
cookies: {
|
|
2105
2133
|
value: string;
|
|
@@ -2112,40 +2140,12 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2112
2140
|
required?: boolean | undefined;
|
|
2113
2141
|
description?: string | undefined;
|
|
2114
2142
|
enum?: string[] | undefined;
|
|
2115
|
-
nullable?: boolean | undefined;
|
|
2116
|
-
format?: string | undefined;
|
|
2117
2143
|
file?: any;
|
|
2118
2144
|
refUid?: string | undefined;
|
|
2145
|
+
format?: string | undefined;
|
|
2146
|
+
nullable?: boolean | undefined;
|
|
2119
2147
|
}[];
|
|
2120
2148
|
};
|
|
2121
|
-
requestUid: string;
|
|
2122
|
-
body: {
|
|
2123
|
-
raw: {
|
|
2124
|
-
value: string;
|
|
2125
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2126
|
-
};
|
|
2127
|
-
formData: {
|
|
2128
|
-
value: {
|
|
2129
|
-
value: string;
|
|
2130
|
-
key: string;
|
|
2131
|
-
enabled: boolean;
|
|
2132
|
-
minimum?: number | undefined;
|
|
2133
|
-
type?: string | undefined;
|
|
2134
|
-
maximum?: number | undefined;
|
|
2135
|
-
default?: any;
|
|
2136
|
-
required?: boolean | undefined;
|
|
2137
|
-
description?: string | undefined;
|
|
2138
|
-
enum?: string[] | undefined;
|
|
2139
|
-
nullable?: boolean | undefined;
|
|
2140
|
-
format?: string | undefined;
|
|
2141
|
-
file?: any;
|
|
2142
|
-
refUid?: string | undefined;
|
|
2143
|
-
}[];
|
|
2144
|
-
encoding: "form-data" | "urlencoded";
|
|
2145
|
-
};
|
|
2146
|
-
activeBody: "raw" | "formData" | "binary";
|
|
2147
|
-
binary?: File | undefined;
|
|
2148
|
-
};
|
|
2149
2149
|
auth: Record<string, any>;
|
|
2150
2150
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2151
2151
|
undo: (uid: string) => void;
|
|
@@ -2290,7 +2290,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2290
2290
|
openIdConnectUrl: string;
|
|
2291
2291
|
description?: string | undefined;
|
|
2292
2292
|
}) => void;
|
|
2293
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2293
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "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" | "nameKey" | "in" ? {
|
|
2294
2294
|
type: "apiKey";
|
|
2295
2295
|
value: string;
|
|
2296
2296
|
uid: string;
|
|
@@ -2298,7 +2298,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2298
2298
|
nameKey: string;
|
|
2299
2299
|
in: "query" | "header" | "cookie";
|
|
2300
2300
|
description?: string | undefined;
|
|
2301
|
-
}[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" | "nameKey" | "in" ? R extends Path<{
|
|
2302
2302
|
type: "apiKey";
|
|
2303
2303
|
value: string;
|
|
2304
2304
|
uid: string;
|
|
@@ -2489,7 +2489,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2489
2489
|
openIdConnectUrl: string;
|
|
2490
2490
|
description?: string | undefined;
|
|
2491
2491
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2492
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2492
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "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" | "nameKey" | "in" ? {
|
|
2493
2493
|
type: "apiKey";
|
|
2494
2494
|
value: string;
|
|
2495
2495
|
uid: string;
|
|
@@ -2497,7 +2497,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2497
2497
|
nameKey: string;
|
|
2498
2498
|
in: "query" | "header" | "cookie";
|
|
2499
2499
|
description?: string | undefined;
|
|
2500
|
-
}[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" | "nameKey" | "in" ? R extends Path<{
|
|
2501
2501
|
type: "apiKey";
|
|
2502
2502
|
value: string;
|
|
2503
2503
|
uid: string;
|
|
@@ -2804,7 +2804,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2804
2804
|
hotKeyConfig?: {
|
|
2805
2805
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2806
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2807
|
-
event: "closeModal" | "
|
|
2807
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2808
2808
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2809
2809
|
}>> | undefined;
|
|
2810
2810
|
} | undefined;
|
|
@@ -2822,7 +2822,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2822
2822
|
hotKeyConfig?: {
|
|
2823
2823
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2824
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2825
|
-
event: "closeModal" | "
|
|
2825
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2826
2826
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2827
2827
|
}>> | undefined;
|
|
2828
2828
|
} | undefined;
|
|
@@ -2842,13 +2842,13 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2842
2842
|
hotKeyConfig?: {
|
|
2843
2843
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2844
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2845
|
-
event: "closeModal" | "
|
|
2845
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2846
2846
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2847
2847
|
}>> | undefined;
|
|
2848
2848
|
} | undefined;
|
|
2849
2849
|
proxyUrl?: string | undefined;
|
|
2850
2850
|
}) => void;
|
|
2851
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2851
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2852
2852
|
uid: string;
|
|
2853
2853
|
name: string;
|
|
2854
2854
|
description: string;
|
|
@@ -2860,7 +2860,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2860
2860
|
hotKeyConfig?: {
|
|
2861
2861
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2862
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2863
|
-
event: "closeModal" | "
|
|
2863
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2864
2864
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2865
2865
|
}>> | undefined;
|
|
2866
2866
|
} | undefined;
|
|
@@ -2877,7 +2877,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2877
2877
|
hotKeyConfig?: {
|
|
2878
2878
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2879
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2880
|
-
event: "closeModal" | "
|
|
2880
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2881
2881
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2882
2882
|
}>> | undefined;
|
|
2883
2883
|
} | undefined;
|
|
@@ -2894,13 +2894,13 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2894
2894
|
hotKeyConfig?: {
|
|
2895
2895
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2896
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2897
|
-
event: "closeModal" | "
|
|
2897
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2898
2898
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2899
2899
|
}>> | undefined;
|
|
2900
2900
|
} | undefined;
|
|
2901
2901
|
proxyUrl?: string | undefined;
|
|
2902
2902
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2903
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2903
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2904
2904
|
uid: string;
|
|
2905
2905
|
name: string;
|
|
2906
2906
|
description: string;
|
|
@@ -2912,7 +2912,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2912
2912
|
hotKeyConfig?: {
|
|
2913
2913
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2914
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2915
|
-
event: "closeModal" | "
|
|
2915
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2916
2916
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2917
2917
|
}>> | undefined;
|
|
2918
2918
|
} | undefined;
|
|
@@ -2929,7 +2929,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2929
2929
|
hotKeyConfig?: {
|
|
2930
2930
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2931
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2932
|
-
event: "closeModal" | "
|
|
2932
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2933
2933
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2934
2934
|
}>> | undefined;
|
|
2935
2935
|
} | undefined;
|
|
@@ -2946,7 +2946,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2946
2946
|
hotKeyConfig?: {
|
|
2947
2947
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2948
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2949
|
-
event: "closeModal" | "
|
|
2949
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2950
2950
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2951
2951
|
}>> | undefined;
|
|
2952
2952
|
} | undefined;
|
|
@@ -2978,7 +2978,7 @@ export declare const useWorkspace: () => {
|
|
|
2978
2978
|
hotKeyConfig?: {
|
|
2979
2979
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2980
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2981
|
-
event: "closeModal" | "
|
|
2981
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2982
2982
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2983
2983
|
}>> | undefined;
|
|
2984
2984
|
} | undefined;
|
|
@@ -3058,6 +3058,34 @@ export declare const useWorkspace: () => {
|
|
|
3058
3058
|
uid: string;
|
|
3059
3059
|
name: string;
|
|
3060
3060
|
url: string;
|
|
3061
|
+
requestUid: string;
|
|
3062
|
+
body: {
|
|
3063
|
+
raw: {
|
|
3064
|
+
value: string;
|
|
3065
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
3066
|
+
};
|
|
3067
|
+
formData: {
|
|
3068
|
+
value: {
|
|
3069
|
+
value: string;
|
|
3070
|
+
key: string;
|
|
3071
|
+
enabled: boolean;
|
|
3072
|
+
minimum?: number | undefined;
|
|
3073
|
+
type?: string | undefined;
|
|
3074
|
+
maximum?: number | undefined;
|
|
3075
|
+
default?: any;
|
|
3076
|
+
required?: boolean | undefined;
|
|
3077
|
+
description?: string | undefined;
|
|
3078
|
+
enum?: string[] | undefined;
|
|
3079
|
+
file?: any;
|
|
3080
|
+
refUid?: string | undefined;
|
|
3081
|
+
format?: string | undefined;
|
|
3082
|
+
nullable?: boolean | undefined;
|
|
3083
|
+
}[];
|
|
3084
|
+
encoding: "form-data" | "urlencoded";
|
|
3085
|
+
};
|
|
3086
|
+
activeBody: "raw" | "formData" | "binary";
|
|
3087
|
+
binary?: File | undefined;
|
|
3088
|
+
};
|
|
3061
3089
|
parameters: {
|
|
3062
3090
|
path: {
|
|
3063
3091
|
value: string;
|
|
@@ -3070,10 +3098,10 @@ export declare const useWorkspace: () => {
|
|
|
3070
3098
|
required?: boolean | undefined;
|
|
3071
3099
|
description?: string | undefined;
|
|
3072
3100
|
enum?: string[] | undefined;
|
|
3073
|
-
nullable?: boolean | undefined;
|
|
3074
|
-
format?: string | undefined;
|
|
3075
3101
|
file?: any;
|
|
3076
3102
|
refUid?: string | undefined;
|
|
3103
|
+
format?: string | undefined;
|
|
3104
|
+
nullable?: boolean | undefined;
|
|
3077
3105
|
}[];
|
|
3078
3106
|
query: {
|
|
3079
3107
|
value: string;
|
|
@@ -3086,10 +3114,10 @@ export declare const useWorkspace: () => {
|
|
|
3086
3114
|
required?: boolean | undefined;
|
|
3087
3115
|
description?: string | undefined;
|
|
3088
3116
|
enum?: string[] | undefined;
|
|
3089
|
-
nullable?: boolean | undefined;
|
|
3090
|
-
format?: string | undefined;
|
|
3091
3117
|
file?: any;
|
|
3092
3118
|
refUid?: string | undefined;
|
|
3119
|
+
format?: string | undefined;
|
|
3120
|
+
nullable?: boolean | undefined;
|
|
3093
3121
|
}[];
|
|
3094
3122
|
headers: {
|
|
3095
3123
|
value: string;
|
|
@@ -3102,10 +3130,10 @@ export declare const useWorkspace: () => {
|
|
|
3102
3130
|
required?: boolean | undefined;
|
|
3103
3131
|
description?: string | undefined;
|
|
3104
3132
|
enum?: string[] | undefined;
|
|
3105
|
-
nullable?: boolean | undefined;
|
|
3106
|
-
format?: string | undefined;
|
|
3107
3133
|
file?: any;
|
|
3108
3134
|
refUid?: string | undefined;
|
|
3135
|
+
format?: string | undefined;
|
|
3136
|
+
nullable?: boolean | undefined;
|
|
3109
3137
|
}[];
|
|
3110
3138
|
cookies: {
|
|
3111
3139
|
value: string;
|
|
@@ -3118,40 +3146,12 @@ export declare const useWorkspace: () => {
|
|
|
3118
3146
|
required?: boolean | undefined;
|
|
3119
3147
|
description?: string | undefined;
|
|
3120
3148
|
enum?: string[] | undefined;
|
|
3121
|
-
nullable?: boolean | undefined;
|
|
3122
|
-
format?: string | undefined;
|
|
3123
3149
|
file?: any;
|
|
3124
3150
|
refUid?: string | undefined;
|
|
3151
|
+
format?: string | undefined;
|
|
3152
|
+
nullable?: boolean | undefined;
|
|
3125
3153
|
}[];
|
|
3126
3154
|
};
|
|
3127
|
-
requestUid: string;
|
|
3128
|
-
body: {
|
|
3129
|
-
raw: {
|
|
3130
|
-
value: string;
|
|
3131
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
3132
|
-
};
|
|
3133
|
-
formData: {
|
|
3134
|
-
value: {
|
|
3135
|
-
value: string;
|
|
3136
|
-
key: string;
|
|
3137
|
-
enabled: boolean;
|
|
3138
|
-
minimum?: number | undefined;
|
|
3139
|
-
type?: string | undefined;
|
|
3140
|
-
maximum?: number | undefined;
|
|
3141
|
-
default?: any;
|
|
3142
|
-
required?: boolean | undefined;
|
|
3143
|
-
description?: string | undefined;
|
|
3144
|
-
enum?: string[] | undefined;
|
|
3145
|
-
nullable?: boolean | undefined;
|
|
3146
|
-
format?: string | undefined;
|
|
3147
|
-
file?: any;
|
|
3148
|
-
refUid?: string | undefined;
|
|
3149
|
-
}[];
|
|
3150
|
-
encoding: "form-data" | "urlencoded";
|
|
3151
|
-
};
|
|
3152
|
-
activeBody: "raw" | "formData" | "binary";
|
|
3153
|
-
binary?: File | undefined;
|
|
3154
|
-
};
|
|
3155
3155
|
auth: Record<string, any>;
|
|
3156
3156
|
}>;
|
|
3157
3157
|
requests: Record<string, Request>;
|
|
@@ -3279,6 +3279,34 @@ export declare const useWorkspace: () => {
|
|
|
3279
3279
|
uid: string;
|
|
3280
3280
|
name: string;
|
|
3281
3281
|
url: string;
|
|
3282
|
+
requestUid: string;
|
|
3283
|
+
body: {
|
|
3284
|
+
raw: {
|
|
3285
|
+
value: string;
|
|
3286
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
3287
|
+
};
|
|
3288
|
+
formData: {
|
|
3289
|
+
value: {
|
|
3290
|
+
value: string;
|
|
3291
|
+
key: string;
|
|
3292
|
+
enabled: boolean;
|
|
3293
|
+
minimum?: number | undefined;
|
|
3294
|
+
type?: string | undefined;
|
|
3295
|
+
maximum?: number | undefined;
|
|
3296
|
+
default?: any;
|
|
3297
|
+
required?: boolean | undefined;
|
|
3298
|
+
description?: string | undefined;
|
|
3299
|
+
enum?: string[] | undefined;
|
|
3300
|
+
file?: any;
|
|
3301
|
+
refUid?: string | undefined;
|
|
3302
|
+
format?: string | undefined;
|
|
3303
|
+
nullable?: boolean | undefined;
|
|
3304
|
+
}[];
|
|
3305
|
+
encoding: "form-data" | "urlencoded";
|
|
3306
|
+
};
|
|
3307
|
+
activeBody: "raw" | "formData" | "binary";
|
|
3308
|
+
binary?: File | undefined;
|
|
3309
|
+
};
|
|
3282
3310
|
parameters: {
|
|
3283
3311
|
path: {
|
|
3284
3312
|
value: string;
|
|
@@ -3291,10 +3319,10 @@ export declare const useWorkspace: () => {
|
|
|
3291
3319
|
required?: boolean | undefined;
|
|
3292
3320
|
description?: string | undefined;
|
|
3293
3321
|
enum?: string[] | undefined;
|
|
3294
|
-
nullable?: boolean | undefined;
|
|
3295
|
-
format?: string | undefined;
|
|
3296
3322
|
file?: any;
|
|
3297
3323
|
refUid?: string | undefined;
|
|
3324
|
+
format?: string | undefined;
|
|
3325
|
+
nullable?: boolean | undefined;
|
|
3298
3326
|
}[];
|
|
3299
3327
|
query: {
|
|
3300
3328
|
value: string;
|
|
@@ -3307,10 +3335,10 @@ export declare const useWorkspace: () => {
|
|
|
3307
3335
|
required?: boolean | undefined;
|
|
3308
3336
|
description?: string | undefined;
|
|
3309
3337
|
enum?: string[] | undefined;
|
|
3310
|
-
nullable?: boolean | undefined;
|
|
3311
|
-
format?: string | undefined;
|
|
3312
3338
|
file?: any;
|
|
3313
3339
|
refUid?: string | undefined;
|
|
3340
|
+
format?: string | undefined;
|
|
3341
|
+
nullable?: boolean | undefined;
|
|
3314
3342
|
}[];
|
|
3315
3343
|
headers: {
|
|
3316
3344
|
value: string;
|
|
@@ -3323,10 +3351,10 @@ export declare const useWorkspace: () => {
|
|
|
3323
3351
|
required?: boolean | undefined;
|
|
3324
3352
|
description?: string | undefined;
|
|
3325
3353
|
enum?: string[] | undefined;
|
|
3326
|
-
nullable?: boolean | undefined;
|
|
3327
|
-
format?: string | undefined;
|
|
3328
3354
|
file?: any;
|
|
3329
3355
|
refUid?: string | undefined;
|
|
3356
|
+
format?: string | undefined;
|
|
3357
|
+
nullable?: boolean | undefined;
|
|
3330
3358
|
}[];
|
|
3331
3359
|
cookies: {
|
|
3332
3360
|
value: string;
|
|
@@ -3339,40 +3367,12 @@ export declare const useWorkspace: () => {
|
|
|
3339
3367
|
required?: boolean | undefined;
|
|
3340
3368
|
description?: string | undefined;
|
|
3341
3369
|
enum?: string[] | undefined;
|
|
3342
|
-
nullable?: boolean | undefined;
|
|
3343
|
-
format?: string | undefined;
|
|
3344
3370
|
file?: any;
|
|
3345
3371
|
refUid?: string | undefined;
|
|
3372
|
+
format?: string | undefined;
|
|
3373
|
+
nullable?: boolean | undefined;
|
|
3346
3374
|
}[];
|
|
3347
3375
|
};
|
|
3348
|
-
requestUid: string;
|
|
3349
|
-
body: {
|
|
3350
|
-
raw: {
|
|
3351
|
-
value: string;
|
|
3352
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
3353
|
-
};
|
|
3354
|
-
formData: {
|
|
3355
|
-
value: {
|
|
3356
|
-
value: string;
|
|
3357
|
-
key: string;
|
|
3358
|
-
enabled: boolean;
|
|
3359
|
-
minimum?: number | undefined;
|
|
3360
|
-
type?: string | undefined;
|
|
3361
|
-
maximum?: number | undefined;
|
|
3362
|
-
default?: any;
|
|
3363
|
-
required?: boolean | undefined;
|
|
3364
|
-
description?: string | undefined;
|
|
3365
|
-
enum?: string[] | undefined;
|
|
3366
|
-
nullable?: boolean | undefined;
|
|
3367
|
-
format?: string | undefined;
|
|
3368
|
-
file?: any;
|
|
3369
|
-
refUid?: string | undefined;
|
|
3370
|
-
}[];
|
|
3371
|
-
encoding: "form-data" | "urlencoded";
|
|
3372
|
-
};
|
|
3373
|
-
activeBody: "raw" | "formData" | "binary";
|
|
3374
|
-
binary?: File | undefined;
|
|
3375
|
-
};
|
|
3376
3376
|
auth: Record<string, any>;
|
|
3377
3377
|
}>;
|
|
3378
3378
|
activeRequest: import("vue").ComputedRef<Request>;
|
|
@@ -3478,7 +3478,7 @@ export declare const useWorkspace: () => {
|
|
|
3478
3478
|
hotKeyConfig?: {
|
|
3479
3479
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
3480
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
3481
|
-
event: "closeModal" | "
|
|
3481
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
3482
3482
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
3483
3483
|
}>> | undefined;
|
|
3484
3484
|
} | undefined;
|
|
@@ -4196,8 +4196,8 @@ export declare const useWorkspace: () => {
|
|
|
4196
4196
|
};
|
|
4197
4197
|
delete: (request: Request, parentUid?: string) => void;
|
|
4198
4198
|
set: (item: Request) => void;
|
|
4199
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
4200
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
4199
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? R extends Path<Request[K]> ? PathValue<Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4201
4201
|
undo: (uid: string) => void;
|
|
4202
4202
|
redo: (uid: string) => void;
|
|
4203
4203
|
loadLocalStorage: () => void;
|
|
@@ -4207,6 +4207,34 @@ export declare const useWorkspace: () => {
|
|
|
4207
4207
|
uid: string;
|
|
4208
4208
|
name: string;
|
|
4209
4209
|
url: string;
|
|
4210
|
+
requestUid: string;
|
|
4211
|
+
body: {
|
|
4212
|
+
raw: {
|
|
4213
|
+
value: string;
|
|
4214
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4215
|
+
};
|
|
4216
|
+
formData: {
|
|
4217
|
+
value: {
|
|
4218
|
+
value: string;
|
|
4219
|
+
key: string;
|
|
4220
|
+
enabled: boolean;
|
|
4221
|
+
minimum?: number | undefined;
|
|
4222
|
+
type?: string | undefined;
|
|
4223
|
+
maximum?: number | undefined;
|
|
4224
|
+
default?: any;
|
|
4225
|
+
required?: boolean | undefined;
|
|
4226
|
+
description?: string | undefined;
|
|
4227
|
+
enum?: string[] | undefined;
|
|
4228
|
+
file?: any;
|
|
4229
|
+
refUid?: string | undefined;
|
|
4230
|
+
format?: string | undefined;
|
|
4231
|
+
nullable?: boolean | undefined;
|
|
4232
|
+
}[];
|
|
4233
|
+
encoding: "form-data" | "urlencoded";
|
|
4234
|
+
};
|
|
4235
|
+
activeBody: "raw" | "formData" | "binary";
|
|
4236
|
+
binary?: File | undefined;
|
|
4237
|
+
};
|
|
4210
4238
|
parameters: {
|
|
4211
4239
|
path: {
|
|
4212
4240
|
value: string;
|
|
@@ -4219,10 +4247,10 @@ export declare const useWorkspace: () => {
|
|
|
4219
4247
|
required?: boolean | undefined;
|
|
4220
4248
|
description?: string | undefined;
|
|
4221
4249
|
enum?: string[] | undefined;
|
|
4222
|
-
nullable?: boolean | undefined;
|
|
4223
|
-
format?: string | undefined;
|
|
4224
4250
|
file?: any;
|
|
4225
4251
|
refUid?: string | undefined;
|
|
4252
|
+
format?: string | undefined;
|
|
4253
|
+
nullable?: boolean | undefined;
|
|
4226
4254
|
}[];
|
|
4227
4255
|
query: {
|
|
4228
4256
|
value: string;
|
|
@@ -4235,10 +4263,10 @@ export declare const useWorkspace: () => {
|
|
|
4235
4263
|
required?: boolean | undefined;
|
|
4236
4264
|
description?: string | undefined;
|
|
4237
4265
|
enum?: string[] | undefined;
|
|
4238
|
-
nullable?: boolean | undefined;
|
|
4239
|
-
format?: string | undefined;
|
|
4240
4266
|
file?: any;
|
|
4241
4267
|
refUid?: string | undefined;
|
|
4268
|
+
format?: string | undefined;
|
|
4269
|
+
nullable?: boolean | undefined;
|
|
4242
4270
|
}[];
|
|
4243
4271
|
headers: {
|
|
4244
4272
|
value: string;
|
|
@@ -4251,10 +4279,10 @@ export declare const useWorkspace: () => {
|
|
|
4251
4279
|
required?: boolean | undefined;
|
|
4252
4280
|
description?: string | undefined;
|
|
4253
4281
|
enum?: string[] | undefined;
|
|
4254
|
-
nullable?: boolean | undefined;
|
|
4255
|
-
format?: string | undefined;
|
|
4256
4282
|
file?: any;
|
|
4257
4283
|
refUid?: string | undefined;
|
|
4284
|
+
format?: string | undefined;
|
|
4285
|
+
nullable?: boolean | undefined;
|
|
4258
4286
|
}[];
|
|
4259
4287
|
cookies: {
|
|
4260
4288
|
value: string;
|
|
@@ -4267,17 +4295,23 @@ export declare const useWorkspace: () => {
|
|
|
4267
4295
|
required?: boolean | undefined;
|
|
4268
4296
|
description?: string | undefined;
|
|
4269
4297
|
enum?: string[] | undefined;
|
|
4270
|
-
nullable?: boolean | undefined;
|
|
4271
|
-
format?: string | undefined;
|
|
4272
4298
|
file?: any;
|
|
4273
4299
|
refUid?: string | undefined;
|
|
4300
|
+
format?: string | undefined;
|
|
4301
|
+
nullable?: boolean | undefined;
|
|
4274
4302
|
}[];
|
|
4275
4303
|
};
|
|
4304
|
+
auth: Record<string, any>;
|
|
4305
|
+
}) => void;
|
|
4306
|
+
add: (request: Request, name?: string) => {
|
|
4307
|
+
uid: string;
|
|
4308
|
+
name: string;
|
|
4309
|
+
url: string;
|
|
4276
4310
|
requestUid: string;
|
|
4277
4311
|
body: {
|
|
4278
4312
|
raw: {
|
|
4279
4313
|
value: string;
|
|
4280
|
-
encoding: "
|
|
4314
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4281
4315
|
};
|
|
4282
4316
|
formData: {
|
|
4283
4317
|
value: {
|
|
@@ -4291,22 +4325,16 @@ export declare const useWorkspace: () => {
|
|
|
4291
4325
|
required?: boolean | undefined;
|
|
4292
4326
|
description?: string | undefined;
|
|
4293
4327
|
enum?: string[] | undefined;
|
|
4294
|
-
nullable?: boolean | undefined;
|
|
4295
|
-
format?: string | undefined;
|
|
4296
4328
|
file?: any;
|
|
4297
4329
|
refUid?: string | undefined;
|
|
4330
|
+
format?: string | undefined;
|
|
4331
|
+
nullable?: boolean | undefined;
|
|
4298
4332
|
}[];
|
|
4299
4333
|
encoding: "form-data" | "urlencoded";
|
|
4300
4334
|
};
|
|
4301
4335
|
activeBody: "raw" | "formData" | "binary";
|
|
4302
4336
|
binary?: File | undefined;
|
|
4303
4337
|
};
|
|
4304
|
-
auth: Record<string, any>;
|
|
4305
|
-
}) => void;
|
|
4306
|
-
add: (request: Request, name?: string) => {
|
|
4307
|
-
uid: string;
|
|
4308
|
-
name: string;
|
|
4309
|
-
url: string;
|
|
4310
4338
|
parameters: {
|
|
4311
4339
|
path: {
|
|
4312
4340
|
value: string;
|
|
@@ -4319,10 +4347,10 @@ export declare const useWorkspace: () => {
|
|
|
4319
4347
|
required?: boolean | undefined;
|
|
4320
4348
|
description?: string | undefined;
|
|
4321
4349
|
enum?: string[] | undefined;
|
|
4322
|
-
nullable?: boolean | undefined;
|
|
4323
|
-
format?: string | undefined;
|
|
4324
4350
|
file?: any;
|
|
4325
4351
|
refUid?: string | undefined;
|
|
4352
|
+
format?: string | undefined;
|
|
4353
|
+
nullable?: boolean | undefined;
|
|
4326
4354
|
}[];
|
|
4327
4355
|
query: {
|
|
4328
4356
|
value: string;
|
|
@@ -4335,10 +4363,10 @@ export declare const useWorkspace: () => {
|
|
|
4335
4363
|
required?: boolean | undefined;
|
|
4336
4364
|
description?: string | undefined;
|
|
4337
4365
|
enum?: string[] | undefined;
|
|
4338
|
-
nullable?: boolean | undefined;
|
|
4339
|
-
format?: string | undefined;
|
|
4340
4366
|
file?: any;
|
|
4341
4367
|
refUid?: string | undefined;
|
|
4368
|
+
format?: string | undefined;
|
|
4369
|
+
nullable?: boolean | undefined;
|
|
4342
4370
|
}[];
|
|
4343
4371
|
headers: {
|
|
4344
4372
|
value: string;
|
|
@@ -4351,10 +4379,10 @@ export declare const useWorkspace: () => {
|
|
|
4351
4379
|
required?: boolean | undefined;
|
|
4352
4380
|
description?: string | undefined;
|
|
4353
4381
|
enum?: string[] | undefined;
|
|
4354
|
-
nullable?: boolean | undefined;
|
|
4355
|
-
format?: string | undefined;
|
|
4356
4382
|
file?: any;
|
|
4357
4383
|
refUid?: string | undefined;
|
|
4384
|
+
format?: string | undefined;
|
|
4385
|
+
nullable?: boolean | undefined;
|
|
4358
4386
|
}[];
|
|
4359
4387
|
cookies: {
|
|
4360
4388
|
value: string;
|
|
@@ -4367,17 +4395,24 @@ export declare const useWorkspace: () => {
|
|
|
4367
4395
|
required?: boolean | undefined;
|
|
4368
4396
|
description?: string | undefined;
|
|
4369
4397
|
enum?: string[] | undefined;
|
|
4370
|
-
nullable?: boolean | undefined;
|
|
4371
|
-
format?: string | undefined;
|
|
4372
4398
|
file?: any;
|
|
4373
4399
|
refUid?: string | undefined;
|
|
4400
|
+
format?: string | undefined;
|
|
4401
|
+
nullable?: boolean | undefined;
|
|
4374
4402
|
}[];
|
|
4375
4403
|
};
|
|
4404
|
+
auth: Record<string, any>;
|
|
4405
|
+
};
|
|
4406
|
+
delete: (requestExample: RequestExample) => void;
|
|
4407
|
+
set: (item: {
|
|
4408
|
+
uid: string;
|
|
4409
|
+
name: string;
|
|
4410
|
+
url: string;
|
|
4376
4411
|
requestUid: string;
|
|
4377
4412
|
body: {
|
|
4378
4413
|
raw: {
|
|
4379
4414
|
value: string;
|
|
4380
|
-
encoding: "
|
|
4415
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4381
4416
|
};
|
|
4382
4417
|
formData: {
|
|
4383
4418
|
value: {
|
|
@@ -4391,23 +4426,16 @@ export declare const useWorkspace: () => {
|
|
|
4391
4426
|
required?: boolean | undefined;
|
|
4392
4427
|
description?: string | undefined;
|
|
4393
4428
|
enum?: string[] | undefined;
|
|
4394
|
-
nullable?: boolean | undefined;
|
|
4395
|
-
format?: string | undefined;
|
|
4396
4429
|
file?: any;
|
|
4397
4430
|
refUid?: string | undefined;
|
|
4431
|
+
format?: string | undefined;
|
|
4432
|
+
nullable?: boolean | undefined;
|
|
4398
4433
|
}[];
|
|
4399
4434
|
encoding: "form-data" | "urlencoded";
|
|
4400
4435
|
};
|
|
4401
4436
|
activeBody: "raw" | "formData" | "binary";
|
|
4402
4437
|
binary?: File | undefined;
|
|
4403
4438
|
};
|
|
4404
|
-
auth: Record<string, any>;
|
|
4405
|
-
};
|
|
4406
|
-
delete: (requestExample: RequestExample) => void;
|
|
4407
|
-
set: (item: {
|
|
4408
|
-
uid: string;
|
|
4409
|
-
name: string;
|
|
4410
|
-
url: string;
|
|
4411
4439
|
parameters: {
|
|
4412
4440
|
path: {
|
|
4413
4441
|
value: string;
|
|
@@ -4420,10 +4448,10 @@ export declare const useWorkspace: () => {
|
|
|
4420
4448
|
required?: boolean | undefined;
|
|
4421
4449
|
description?: string | undefined;
|
|
4422
4450
|
enum?: string[] | undefined;
|
|
4423
|
-
nullable?: boolean | undefined;
|
|
4424
|
-
format?: string | undefined;
|
|
4425
4451
|
file?: any;
|
|
4426
4452
|
refUid?: string | undefined;
|
|
4453
|
+
format?: string | undefined;
|
|
4454
|
+
nullable?: boolean | undefined;
|
|
4427
4455
|
}[];
|
|
4428
4456
|
query: {
|
|
4429
4457
|
value: string;
|
|
@@ -4436,10 +4464,10 @@ export declare const useWorkspace: () => {
|
|
|
4436
4464
|
required?: boolean | undefined;
|
|
4437
4465
|
description?: string | undefined;
|
|
4438
4466
|
enum?: string[] | undefined;
|
|
4439
|
-
nullable?: boolean | undefined;
|
|
4440
|
-
format?: string | undefined;
|
|
4441
4467
|
file?: any;
|
|
4442
4468
|
refUid?: string | undefined;
|
|
4469
|
+
format?: string | undefined;
|
|
4470
|
+
nullable?: boolean | undefined;
|
|
4443
4471
|
}[];
|
|
4444
4472
|
headers: {
|
|
4445
4473
|
value: string;
|
|
@@ -4452,10 +4480,10 @@ export declare const useWorkspace: () => {
|
|
|
4452
4480
|
required?: boolean | undefined;
|
|
4453
4481
|
description?: string | undefined;
|
|
4454
4482
|
enum?: string[] | undefined;
|
|
4455
|
-
nullable?: boolean | undefined;
|
|
4456
|
-
format?: string | undefined;
|
|
4457
4483
|
file?: any;
|
|
4458
4484
|
refUid?: string | undefined;
|
|
4485
|
+
format?: string | undefined;
|
|
4486
|
+
nullable?: boolean | undefined;
|
|
4459
4487
|
}[];
|
|
4460
4488
|
cookies: {
|
|
4461
4489
|
value: string;
|
|
@@ -4468,17 +4496,23 @@ export declare const useWorkspace: () => {
|
|
|
4468
4496
|
required?: boolean | undefined;
|
|
4469
4497
|
description?: string | undefined;
|
|
4470
4498
|
enum?: string[] | undefined;
|
|
4471
|
-
nullable?: boolean | undefined;
|
|
4472
|
-
format?: string | undefined;
|
|
4473
4499
|
file?: any;
|
|
4474
4500
|
refUid?: string | undefined;
|
|
4501
|
+
format?: string | undefined;
|
|
4502
|
+
nullable?: boolean | undefined;
|
|
4475
4503
|
}[];
|
|
4476
4504
|
};
|
|
4505
|
+
auth: Record<string, any>;
|
|
4506
|
+
}) => void;
|
|
4507
|
+
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `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}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `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}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `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}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `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}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `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" ? {
|
|
4508
|
+
uid: string;
|
|
4509
|
+
name: string;
|
|
4510
|
+
url: string;
|
|
4477
4511
|
requestUid: string;
|
|
4478
4512
|
body: {
|
|
4479
4513
|
raw: {
|
|
4480
4514
|
value: string;
|
|
4481
|
-
encoding: "
|
|
4515
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4482
4516
|
};
|
|
4483
4517
|
formData: {
|
|
4484
4518
|
value: {
|
|
@@ -4492,22 +4526,16 @@ export declare const useWorkspace: () => {
|
|
|
4492
4526
|
required?: boolean | undefined;
|
|
4493
4527
|
description?: string | undefined;
|
|
4494
4528
|
enum?: string[] | undefined;
|
|
4495
|
-
nullable?: boolean | undefined;
|
|
4496
|
-
format?: string | undefined;
|
|
4497
4529
|
file?: any;
|
|
4498
4530
|
refUid?: string | undefined;
|
|
4531
|
+
format?: string | undefined;
|
|
4532
|
+
nullable?: boolean | undefined;
|
|
4499
4533
|
}[];
|
|
4500
4534
|
encoding: "form-data" | "urlencoded";
|
|
4501
4535
|
};
|
|
4502
4536
|
activeBody: "raw" | "formData" | "binary";
|
|
4503
4537
|
binary?: File | undefined;
|
|
4504
4538
|
};
|
|
4505
|
-
auth: Record<string, any>;
|
|
4506
|
-
}) => void;
|
|
4507
|
-
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
|
|
4508
|
-
uid: string;
|
|
4509
|
-
name: string;
|
|
4510
|
-
url: string;
|
|
4511
4539
|
parameters: {
|
|
4512
4540
|
path: {
|
|
4513
4541
|
value: string;
|
|
@@ -4520,10 +4548,10 @@ export declare const useWorkspace: () => {
|
|
|
4520
4548
|
required?: boolean | undefined;
|
|
4521
4549
|
description?: string | undefined;
|
|
4522
4550
|
enum?: string[] | undefined;
|
|
4523
|
-
nullable?: boolean | undefined;
|
|
4524
|
-
format?: string | undefined;
|
|
4525
4551
|
file?: any;
|
|
4526
4552
|
refUid?: string | undefined;
|
|
4553
|
+
format?: string | undefined;
|
|
4554
|
+
nullable?: boolean | undefined;
|
|
4527
4555
|
}[];
|
|
4528
4556
|
query: {
|
|
4529
4557
|
value: string;
|
|
@@ -4536,10 +4564,10 @@ export declare const useWorkspace: () => {
|
|
|
4536
4564
|
required?: boolean | undefined;
|
|
4537
4565
|
description?: string | undefined;
|
|
4538
4566
|
enum?: string[] | undefined;
|
|
4539
|
-
nullable?: boolean | undefined;
|
|
4540
|
-
format?: string | undefined;
|
|
4541
4567
|
file?: any;
|
|
4542
4568
|
refUid?: string | undefined;
|
|
4569
|
+
format?: string | undefined;
|
|
4570
|
+
nullable?: boolean | undefined;
|
|
4543
4571
|
}[];
|
|
4544
4572
|
headers: {
|
|
4545
4573
|
value: string;
|
|
@@ -4552,10 +4580,10 @@ export declare const useWorkspace: () => {
|
|
|
4552
4580
|
required?: boolean | undefined;
|
|
4553
4581
|
description?: string | undefined;
|
|
4554
4582
|
enum?: string[] | undefined;
|
|
4555
|
-
nullable?: boolean | undefined;
|
|
4556
|
-
format?: string | undefined;
|
|
4557
4583
|
file?: any;
|
|
4558
4584
|
refUid?: string | undefined;
|
|
4585
|
+
format?: string | undefined;
|
|
4586
|
+
nullable?: boolean | undefined;
|
|
4559
4587
|
}[];
|
|
4560
4588
|
cookies: {
|
|
4561
4589
|
value: string;
|
|
@@ -4568,17 +4596,22 @@ export declare const useWorkspace: () => {
|
|
|
4568
4596
|
required?: boolean | undefined;
|
|
4569
4597
|
description?: string | undefined;
|
|
4570
4598
|
enum?: string[] | undefined;
|
|
4571
|
-
nullable?: boolean | undefined;
|
|
4572
|
-
format?: string | undefined;
|
|
4573
4599
|
file?: any;
|
|
4574
4600
|
refUid?: string | undefined;
|
|
4601
|
+
format?: string | undefined;
|
|
4602
|
+
nullable?: boolean | undefined;
|
|
4575
4603
|
}[];
|
|
4576
4604
|
};
|
|
4605
|
+
auth: Record<string, any>;
|
|
4606
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
4607
|
+
uid: string;
|
|
4608
|
+
name: string;
|
|
4609
|
+
url: string;
|
|
4577
4610
|
requestUid: string;
|
|
4578
4611
|
body: {
|
|
4579
4612
|
raw: {
|
|
4580
4613
|
value: string;
|
|
4581
|
-
encoding: "
|
|
4614
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4582
4615
|
};
|
|
4583
4616
|
formData: {
|
|
4584
4617
|
value: {
|
|
@@ -4592,21 +4625,16 @@ export declare const useWorkspace: () => {
|
|
|
4592
4625
|
required?: boolean | undefined;
|
|
4593
4626
|
description?: string | undefined;
|
|
4594
4627
|
enum?: string[] | undefined;
|
|
4595
|
-
nullable?: boolean | undefined;
|
|
4596
|
-
format?: string | undefined;
|
|
4597
4628
|
file?: any;
|
|
4598
4629
|
refUid?: string | undefined;
|
|
4630
|
+
format?: string | undefined;
|
|
4631
|
+
nullable?: boolean | undefined;
|
|
4599
4632
|
}[];
|
|
4600
4633
|
encoding: "form-data" | "urlencoded";
|
|
4601
4634
|
};
|
|
4602
4635
|
activeBody: "raw" | "formData" | "binary";
|
|
4603
4636
|
binary?: File | undefined;
|
|
4604
4637
|
};
|
|
4605
|
-
auth: Record<string, any>;
|
|
4606
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
4607
|
-
uid: string;
|
|
4608
|
-
name: string;
|
|
4609
|
-
url: string;
|
|
4610
4638
|
parameters: {
|
|
4611
4639
|
path: {
|
|
4612
4640
|
value: string;
|
|
@@ -4619,10 +4647,10 @@ export declare const useWorkspace: () => {
|
|
|
4619
4647
|
required?: boolean | undefined;
|
|
4620
4648
|
description?: string | undefined;
|
|
4621
4649
|
enum?: string[] | undefined;
|
|
4622
|
-
nullable?: boolean | undefined;
|
|
4623
|
-
format?: string | undefined;
|
|
4624
4650
|
file?: any;
|
|
4625
4651
|
refUid?: string | undefined;
|
|
4652
|
+
format?: string | undefined;
|
|
4653
|
+
nullable?: boolean | undefined;
|
|
4626
4654
|
}[];
|
|
4627
4655
|
query: {
|
|
4628
4656
|
value: string;
|
|
@@ -4635,10 +4663,10 @@ export declare const useWorkspace: () => {
|
|
|
4635
4663
|
required?: boolean | undefined;
|
|
4636
4664
|
description?: string | undefined;
|
|
4637
4665
|
enum?: string[] | undefined;
|
|
4638
|
-
nullable?: boolean | undefined;
|
|
4639
|
-
format?: string | undefined;
|
|
4640
4666
|
file?: any;
|
|
4641
4667
|
refUid?: string | undefined;
|
|
4668
|
+
format?: string | undefined;
|
|
4669
|
+
nullable?: boolean | undefined;
|
|
4642
4670
|
}[];
|
|
4643
4671
|
headers: {
|
|
4644
4672
|
value: string;
|
|
@@ -4651,10 +4679,10 @@ export declare const useWorkspace: () => {
|
|
|
4651
4679
|
required?: boolean | undefined;
|
|
4652
4680
|
description?: string | undefined;
|
|
4653
4681
|
enum?: string[] | undefined;
|
|
4654
|
-
nullable?: boolean | undefined;
|
|
4655
|
-
format?: string | undefined;
|
|
4656
4682
|
file?: any;
|
|
4657
4683
|
refUid?: string | undefined;
|
|
4684
|
+
format?: string | undefined;
|
|
4685
|
+
nullable?: boolean | undefined;
|
|
4658
4686
|
}[];
|
|
4659
4687
|
cookies: {
|
|
4660
4688
|
value: string;
|
|
@@ -4667,17 +4695,22 @@ export declare const useWorkspace: () => {
|
|
|
4667
4695
|
required?: boolean | undefined;
|
|
4668
4696
|
description?: string | undefined;
|
|
4669
4697
|
enum?: string[] | undefined;
|
|
4670
|
-
nullable?: boolean | undefined;
|
|
4671
|
-
format?: string | undefined;
|
|
4672
4698
|
file?: any;
|
|
4673
4699
|
refUid?: string | undefined;
|
|
4700
|
+
format?: string | undefined;
|
|
4701
|
+
nullable?: boolean | undefined;
|
|
4674
4702
|
}[];
|
|
4675
4703
|
};
|
|
4704
|
+
auth: Record<string, any>;
|
|
4705
|
+
}[K]> ? PathValue<{
|
|
4706
|
+
uid: string;
|
|
4707
|
+
name: string;
|
|
4708
|
+
url: string;
|
|
4676
4709
|
requestUid: string;
|
|
4677
4710
|
body: {
|
|
4678
4711
|
raw: {
|
|
4679
4712
|
value: string;
|
|
4680
|
-
encoding: "
|
|
4713
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4681
4714
|
};
|
|
4682
4715
|
formData: {
|
|
4683
4716
|
value: {
|
|
@@ -4691,21 +4724,16 @@ export declare const useWorkspace: () => {
|
|
|
4691
4724
|
required?: boolean | undefined;
|
|
4692
4725
|
description?: string | undefined;
|
|
4693
4726
|
enum?: string[] | undefined;
|
|
4694
|
-
nullable?: boolean | undefined;
|
|
4695
|
-
format?: string | undefined;
|
|
4696
4727
|
file?: any;
|
|
4697
4728
|
refUid?: string | undefined;
|
|
4729
|
+
format?: string | undefined;
|
|
4730
|
+
nullable?: boolean | undefined;
|
|
4698
4731
|
}[];
|
|
4699
4732
|
encoding: "form-data" | "urlencoded";
|
|
4700
4733
|
};
|
|
4701
4734
|
activeBody: "raw" | "formData" | "binary";
|
|
4702
4735
|
binary?: File | undefined;
|
|
4703
4736
|
};
|
|
4704
|
-
auth: Record<string, any>;
|
|
4705
|
-
}[K]> ? PathValue<{
|
|
4706
|
-
uid: string;
|
|
4707
|
-
name: string;
|
|
4708
|
-
url: string;
|
|
4709
4737
|
parameters: {
|
|
4710
4738
|
path: {
|
|
4711
4739
|
value: string;
|
|
@@ -4718,10 +4746,10 @@ export declare const useWorkspace: () => {
|
|
|
4718
4746
|
required?: boolean | undefined;
|
|
4719
4747
|
description?: string | undefined;
|
|
4720
4748
|
enum?: string[] | undefined;
|
|
4721
|
-
nullable?: boolean | undefined;
|
|
4722
|
-
format?: string | undefined;
|
|
4723
4749
|
file?: any;
|
|
4724
4750
|
refUid?: string | undefined;
|
|
4751
|
+
format?: string | undefined;
|
|
4752
|
+
nullable?: boolean | undefined;
|
|
4725
4753
|
}[];
|
|
4726
4754
|
query: {
|
|
4727
4755
|
value: string;
|
|
@@ -4734,10 +4762,10 @@ export declare const useWorkspace: () => {
|
|
|
4734
4762
|
required?: boolean | undefined;
|
|
4735
4763
|
description?: string | undefined;
|
|
4736
4764
|
enum?: string[] | undefined;
|
|
4737
|
-
nullable?: boolean | undefined;
|
|
4738
|
-
format?: string | undefined;
|
|
4739
4765
|
file?: any;
|
|
4740
4766
|
refUid?: string | undefined;
|
|
4767
|
+
format?: string | undefined;
|
|
4768
|
+
nullable?: boolean | undefined;
|
|
4741
4769
|
}[];
|
|
4742
4770
|
headers: {
|
|
4743
4771
|
value: string;
|
|
@@ -4750,10 +4778,10 @@ export declare const useWorkspace: () => {
|
|
|
4750
4778
|
required?: boolean | undefined;
|
|
4751
4779
|
description?: string | undefined;
|
|
4752
4780
|
enum?: string[] | undefined;
|
|
4753
|
-
nullable?: boolean | undefined;
|
|
4754
|
-
format?: string | undefined;
|
|
4755
4781
|
file?: any;
|
|
4756
4782
|
refUid?: string | undefined;
|
|
4783
|
+
format?: string | undefined;
|
|
4784
|
+
nullable?: boolean | undefined;
|
|
4757
4785
|
}[];
|
|
4758
4786
|
cookies: {
|
|
4759
4787
|
value: string;
|
|
@@ -4766,17 +4794,23 @@ export declare const useWorkspace: () => {
|
|
|
4766
4794
|
required?: boolean | undefined;
|
|
4767
4795
|
description?: string | undefined;
|
|
4768
4796
|
enum?: string[] | undefined;
|
|
4769
|
-
nullable?: boolean | undefined;
|
|
4770
|
-
format?: string | undefined;
|
|
4771
4797
|
file?: any;
|
|
4772
4798
|
refUid?: string | undefined;
|
|
4799
|
+
format?: string | undefined;
|
|
4800
|
+
nullable?: boolean | undefined;
|
|
4773
4801
|
}[];
|
|
4774
4802
|
};
|
|
4803
|
+
auth: Record<string, any>;
|
|
4804
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4805
|
+
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `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}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `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}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `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}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `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}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `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" ? {
|
|
4806
|
+
uid: string;
|
|
4807
|
+
name: string;
|
|
4808
|
+
url: string;
|
|
4775
4809
|
requestUid: string;
|
|
4776
4810
|
body: {
|
|
4777
4811
|
raw: {
|
|
4778
4812
|
value: string;
|
|
4779
|
-
encoding: "
|
|
4813
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4780
4814
|
};
|
|
4781
4815
|
formData: {
|
|
4782
4816
|
value: {
|
|
@@ -4790,22 +4824,16 @@ export declare const useWorkspace: () => {
|
|
|
4790
4824
|
required?: boolean | undefined;
|
|
4791
4825
|
description?: string | undefined;
|
|
4792
4826
|
enum?: string[] | undefined;
|
|
4793
|
-
nullable?: boolean | undefined;
|
|
4794
|
-
format?: string | undefined;
|
|
4795
4827
|
file?: any;
|
|
4796
4828
|
refUid?: string | undefined;
|
|
4829
|
+
format?: string | undefined;
|
|
4830
|
+
nullable?: boolean | undefined;
|
|
4797
4831
|
}[];
|
|
4798
4832
|
encoding: "form-data" | "urlencoded";
|
|
4799
4833
|
};
|
|
4800
4834
|
activeBody: "raw" | "formData" | "binary";
|
|
4801
4835
|
binary?: File | undefined;
|
|
4802
4836
|
};
|
|
4803
|
-
auth: Record<string, any>;
|
|
4804
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4805
|
-
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
|
|
4806
|
-
uid: string;
|
|
4807
|
-
name: string;
|
|
4808
|
-
url: string;
|
|
4809
4837
|
parameters: {
|
|
4810
4838
|
path: {
|
|
4811
4839
|
value: string;
|
|
@@ -4818,10 +4846,10 @@ export declare const useWorkspace: () => {
|
|
|
4818
4846
|
required?: boolean | undefined;
|
|
4819
4847
|
description?: string | undefined;
|
|
4820
4848
|
enum?: string[] | undefined;
|
|
4821
|
-
nullable?: boolean | undefined;
|
|
4822
|
-
format?: string | undefined;
|
|
4823
4849
|
file?: any;
|
|
4824
4850
|
refUid?: string | undefined;
|
|
4851
|
+
format?: string | undefined;
|
|
4852
|
+
nullable?: boolean | undefined;
|
|
4825
4853
|
}[];
|
|
4826
4854
|
query: {
|
|
4827
4855
|
value: string;
|
|
@@ -4834,10 +4862,10 @@ export declare const useWorkspace: () => {
|
|
|
4834
4862
|
required?: boolean | undefined;
|
|
4835
4863
|
description?: string | undefined;
|
|
4836
4864
|
enum?: string[] | undefined;
|
|
4837
|
-
nullable?: boolean | undefined;
|
|
4838
|
-
format?: string | undefined;
|
|
4839
4865
|
file?: any;
|
|
4840
4866
|
refUid?: string | undefined;
|
|
4867
|
+
format?: string | undefined;
|
|
4868
|
+
nullable?: boolean | undefined;
|
|
4841
4869
|
}[];
|
|
4842
4870
|
headers: {
|
|
4843
4871
|
value: string;
|
|
@@ -4850,10 +4878,10 @@ export declare const useWorkspace: () => {
|
|
|
4850
4878
|
required?: boolean | undefined;
|
|
4851
4879
|
description?: string | undefined;
|
|
4852
4880
|
enum?: string[] | undefined;
|
|
4853
|
-
nullable?: boolean | undefined;
|
|
4854
|
-
format?: string | undefined;
|
|
4855
4881
|
file?: any;
|
|
4856
4882
|
refUid?: string | undefined;
|
|
4883
|
+
format?: string | undefined;
|
|
4884
|
+
nullable?: boolean | undefined;
|
|
4857
4885
|
}[];
|
|
4858
4886
|
cookies: {
|
|
4859
4887
|
value: string;
|
|
@@ -4866,17 +4894,22 @@ export declare const useWorkspace: () => {
|
|
|
4866
4894
|
required?: boolean | undefined;
|
|
4867
4895
|
description?: string | undefined;
|
|
4868
4896
|
enum?: string[] | undefined;
|
|
4869
|
-
nullable?: boolean | undefined;
|
|
4870
|
-
format?: string | undefined;
|
|
4871
4897
|
file?: any;
|
|
4872
4898
|
refUid?: string | undefined;
|
|
4899
|
+
format?: string | undefined;
|
|
4900
|
+
nullable?: boolean | undefined;
|
|
4873
4901
|
}[];
|
|
4874
4902
|
};
|
|
4903
|
+
auth: Record<string, any>;
|
|
4904
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
4905
|
+
uid: string;
|
|
4906
|
+
name: string;
|
|
4907
|
+
url: string;
|
|
4875
4908
|
requestUid: string;
|
|
4876
4909
|
body: {
|
|
4877
4910
|
raw: {
|
|
4878
4911
|
value: string;
|
|
4879
|
-
encoding: "
|
|
4912
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4880
4913
|
};
|
|
4881
4914
|
formData: {
|
|
4882
4915
|
value: {
|
|
@@ -4890,21 +4923,16 @@ export declare const useWorkspace: () => {
|
|
|
4890
4923
|
required?: boolean | undefined;
|
|
4891
4924
|
description?: string | undefined;
|
|
4892
4925
|
enum?: string[] | undefined;
|
|
4893
|
-
nullable?: boolean | undefined;
|
|
4894
|
-
format?: string | undefined;
|
|
4895
4926
|
file?: any;
|
|
4896
4927
|
refUid?: string | undefined;
|
|
4928
|
+
format?: string | undefined;
|
|
4929
|
+
nullable?: boolean | undefined;
|
|
4897
4930
|
}[];
|
|
4898
4931
|
encoding: "form-data" | "urlencoded";
|
|
4899
4932
|
};
|
|
4900
4933
|
activeBody: "raw" | "formData" | "binary";
|
|
4901
4934
|
binary?: File | undefined;
|
|
4902
4935
|
};
|
|
4903
|
-
auth: Record<string, any>;
|
|
4904
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path<{
|
|
4905
|
-
uid: string;
|
|
4906
|
-
name: string;
|
|
4907
|
-
url: string;
|
|
4908
4936
|
parameters: {
|
|
4909
4937
|
path: {
|
|
4910
4938
|
value: string;
|
|
@@ -4917,10 +4945,10 @@ export declare const useWorkspace: () => {
|
|
|
4917
4945
|
required?: boolean | undefined;
|
|
4918
4946
|
description?: string | undefined;
|
|
4919
4947
|
enum?: string[] | undefined;
|
|
4920
|
-
nullable?: boolean | undefined;
|
|
4921
|
-
format?: string | undefined;
|
|
4922
4948
|
file?: any;
|
|
4923
4949
|
refUid?: string | undefined;
|
|
4950
|
+
format?: string | undefined;
|
|
4951
|
+
nullable?: boolean | undefined;
|
|
4924
4952
|
}[];
|
|
4925
4953
|
query: {
|
|
4926
4954
|
value: string;
|
|
@@ -4933,10 +4961,10 @@ export declare const useWorkspace: () => {
|
|
|
4933
4961
|
required?: boolean | undefined;
|
|
4934
4962
|
description?: string | undefined;
|
|
4935
4963
|
enum?: string[] | undefined;
|
|
4936
|
-
nullable?: boolean | undefined;
|
|
4937
|
-
format?: string | undefined;
|
|
4938
4964
|
file?: any;
|
|
4939
4965
|
refUid?: string | undefined;
|
|
4966
|
+
format?: string | undefined;
|
|
4967
|
+
nullable?: boolean | undefined;
|
|
4940
4968
|
}[];
|
|
4941
4969
|
headers: {
|
|
4942
4970
|
value: string;
|
|
@@ -4949,10 +4977,10 @@ export declare const useWorkspace: () => {
|
|
|
4949
4977
|
required?: boolean | undefined;
|
|
4950
4978
|
description?: string | undefined;
|
|
4951
4979
|
enum?: string[] | undefined;
|
|
4952
|
-
nullable?: boolean | undefined;
|
|
4953
|
-
format?: string | undefined;
|
|
4954
4980
|
file?: any;
|
|
4955
4981
|
refUid?: string | undefined;
|
|
4982
|
+
format?: string | undefined;
|
|
4983
|
+
nullable?: boolean | undefined;
|
|
4956
4984
|
}[];
|
|
4957
4985
|
cookies: {
|
|
4958
4986
|
value: string;
|
|
@@ -4965,17 +4993,22 @@ export declare const useWorkspace: () => {
|
|
|
4965
4993
|
required?: boolean | undefined;
|
|
4966
4994
|
description?: string | undefined;
|
|
4967
4995
|
enum?: string[] | undefined;
|
|
4968
|
-
nullable?: boolean | undefined;
|
|
4969
|
-
format?: string | undefined;
|
|
4970
4996
|
file?: any;
|
|
4971
4997
|
refUid?: string | undefined;
|
|
4998
|
+
format?: string | undefined;
|
|
4999
|
+
nullable?: boolean | undefined;
|
|
4972
5000
|
}[];
|
|
4973
5001
|
};
|
|
5002
|
+
auth: Record<string, any>;
|
|
5003
|
+
}[K]> ? PathValue<{
|
|
5004
|
+
uid: string;
|
|
5005
|
+
name: string;
|
|
5006
|
+
url: string;
|
|
4974
5007
|
requestUid: string;
|
|
4975
5008
|
body: {
|
|
4976
5009
|
raw: {
|
|
4977
5010
|
value: string;
|
|
4978
|
-
encoding: "
|
|
5011
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4979
5012
|
};
|
|
4980
5013
|
formData: {
|
|
4981
5014
|
value: {
|
|
@@ -4989,21 +5022,16 @@ export declare const useWorkspace: () => {
|
|
|
4989
5022
|
required?: boolean | undefined;
|
|
4990
5023
|
description?: string | undefined;
|
|
4991
5024
|
enum?: string[] | undefined;
|
|
4992
|
-
nullable?: boolean | undefined;
|
|
4993
|
-
format?: string | undefined;
|
|
4994
5025
|
file?: any;
|
|
4995
5026
|
refUid?: string | undefined;
|
|
5027
|
+
format?: string | undefined;
|
|
5028
|
+
nullable?: boolean | undefined;
|
|
4996
5029
|
}[];
|
|
4997
5030
|
encoding: "form-data" | "urlencoded";
|
|
4998
5031
|
};
|
|
4999
5032
|
activeBody: "raw" | "formData" | "binary";
|
|
5000
5033
|
binary?: File | undefined;
|
|
5001
5034
|
};
|
|
5002
|
-
auth: Record<string, any>;
|
|
5003
|
-
}[K]> ? PathValue<{
|
|
5004
|
-
uid: string;
|
|
5005
|
-
name: string;
|
|
5006
|
-
url: string;
|
|
5007
5035
|
parameters: {
|
|
5008
5036
|
path: {
|
|
5009
5037
|
value: string;
|
|
@@ -5016,10 +5044,10 @@ export declare const useWorkspace: () => {
|
|
|
5016
5044
|
required?: boolean | undefined;
|
|
5017
5045
|
description?: string | undefined;
|
|
5018
5046
|
enum?: string[] | undefined;
|
|
5019
|
-
nullable?: boolean | undefined;
|
|
5020
|
-
format?: string | undefined;
|
|
5021
5047
|
file?: any;
|
|
5022
5048
|
refUid?: string | undefined;
|
|
5049
|
+
format?: string | undefined;
|
|
5050
|
+
nullable?: boolean | undefined;
|
|
5023
5051
|
}[];
|
|
5024
5052
|
query: {
|
|
5025
5053
|
value: string;
|
|
@@ -5032,10 +5060,10 @@ export declare const useWorkspace: () => {
|
|
|
5032
5060
|
required?: boolean | undefined;
|
|
5033
5061
|
description?: string | undefined;
|
|
5034
5062
|
enum?: string[] | undefined;
|
|
5035
|
-
nullable?: boolean | undefined;
|
|
5036
|
-
format?: string | undefined;
|
|
5037
5063
|
file?: any;
|
|
5038
5064
|
refUid?: string | undefined;
|
|
5065
|
+
format?: string | undefined;
|
|
5066
|
+
nullable?: boolean | undefined;
|
|
5039
5067
|
}[];
|
|
5040
5068
|
headers: {
|
|
5041
5069
|
value: string;
|
|
@@ -5048,10 +5076,10 @@ export declare const useWorkspace: () => {
|
|
|
5048
5076
|
required?: boolean | undefined;
|
|
5049
5077
|
description?: string | undefined;
|
|
5050
5078
|
enum?: string[] | undefined;
|
|
5051
|
-
nullable?: boolean | undefined;
|
|
5052
|
-
format?: string | undefined;
|
|
5053
5079
|
file?: any;
|
|
5054
5080
|
refUid?: string | undefined;
|
|
5081
|
+
format?: string | undefined;
|
|
5082
|
+
nullable?: boolean | undefined;
|
|
5055
5083
|
}[];
|
|
5056
5084
|
cookies: {
|
|
5057
5085
|
value: string;
|
|
@@ -5064,40 +5092,12 @@ export declare const useWorkspace: () => {
|
|
|
5064
5092
|
required?: boolean | undefined;
|
|
5065
5093
|
description?: string | undefined;
|
|
5066
5094
|
enum?: string[] | undefined;
|
|
5067
|
-
nullable?: boolean | undefined;
|
|
5068
|
-
format?: string | undefined;
|
|
5069
5095
|
file?: any;
|
|
5070
5096
|
refUid?: string | undefined;
|
|
5097
|
+
format?: string | undefined;
|
|
5098
|
+
nullable?: boolean | undefined;
|
|
5071
5099
|
}[];
|
|
5072
5100
|
};
|
|
5073
|
-
requestUid: string;
|
|
5074
|
-
body: {
|
|
5075
|
-
raw: {
|
|
5076
|
-
value: string;
|
|
5077
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
5078
|
-
};
|
|
5079
|
-
formData: {
|
|
5080
|
-
value: {
|
|
5081
|
-
value: string;
|
|
5082
|
-
key: string;
|
|
5083
|
-
enabled: boolean;
|
|
5084
|
-
minimum?: number | undefined;
|
|
5085
|
-
type?: string | undefined;
|
|
5086
|
-
maximum?: number | undefined;
|
|
5087
|
-
default?: any;
|
|
5088
|
-
required?: boolean | undefined;
|
|
5089
|
-
description?: string | undefined;
|
|
5090
|
-
enum?: string[] | undefined;
|
|
5091
|
-
nullable?: boolean | undefined;
|
|
5092
|
-
format?: string | undefined;
|
|
5093
|
-
file?: any;
|
|
5094
|
-
refUid?: string | undefined;
|
|
5095
|
-
}[];
|
|
5096
|
-
encoding: "form-data" | "urlencoded";
|
|
5097
|
-
};
|
|
5098
|
-
activeBody: "raw" | "formData" | "binary";
|
|
5099
|
-
binary?: File | undefined;
|
|
5100
|
-
};
|
|
5101
5101
|
auth: Record<string, any>;
|
|
5102
5102
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5103
5103
|
undo: (uid: string) => void;
|
|
@@ -5242,7 +5242,7 @@ export declare const useWorkspace: () => {
|
|
|
5242
5242
|
openIdConnectUrl: string;
|
|
5243
5243
|
description?: string | undefined;
|
|
5244
5244
|
}) => void;
|
|
5245
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5245
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "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" | "nameKey" | "in" ? {
|
|
5246
5246
|
type: "apiKey";
|
|
5247
5247
|
value: string;
|
|
5248
5248
|
uid: string;
|
|
@@ -5250,7 +5250,7 @@ export declare const useWorkspace: () => {
|
|
|
5250
5250
|
nameKey: string;
|
|
5251
5251
|
in: "query" | "header" | "cookie";
|
|
5252
5252
|
description?: string | undefined;
|
|
5253
|
-
}[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" | "nameKey" | "in" ? R extends Path<{
|
|
5254
5254
|
type: "apiKey";
|
|
5255
5255
|
value: string;
|
|
5256
5256
|
uid: string;
|
|
@@ -5441,7 +5441,7 @@ export declare const useWorkspace: () => {
|
|
|
5441
5441
|
openIdConnectUrl: string;
|
|
5442
5442
|
description?: string | undefined;
|
|
5443
5443
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
5444
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5444
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "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" | "nameKey" | "in" ? {
|
|
5445
5445
|
type: "apiKey";
|
|
5446
5446
|
value: string;
|
|
5447
5447
|
uid: string;
|
|
@@ -5449,7 +5449,7 @@ export declare const useWorkspace: () => {
|
|
|
5449
5449
|
nameKey: string;
|
|
5450
5450
|
in: "query" | "header" | "cookie";
|
|
5451
5451
|
description?: string | undefined;
|
|
5452
|
-
}[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" | "nameKey" | "in" ? R extends Path<{
|
|
5453
5453
|
type: "apiKey";
|
|
5454
5454
|
value: string;
|
|
5455
5455
|
uid: string;
|
|
@@ -5756,7 +5756,7 @@ export declare const useWorkspace: () => {
|
|
|
5756
5756
|
hotKeyConfig?: {
|
|
5757
5757
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5758
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5759
|
-
event: "closeModal" | "
|
|
5759
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5760
5760
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5761
5761
|
}>> | undefined;
|
|
5762
5762
|
} | undefined;
|
|
@@ -5774,7 +5774,7 @@ export declare const useWorkspace: () => {
|
|
|
5774
5774
|
hotKeyConfig?: {
|
|
5775
5775
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5776
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5777
|
-
event: "closeModal" | "
|
|
5777
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5778
5778
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5779
5779
|
}>> | undefined;
|
|
5780
5780
|
} | undefined;
|
|
@@ -5794,13 +5794,13 @@ export declare const useWorkspace: () => {
|
|
|
5794
5794
|
hotKeyConfig?: {
|
|
5795
5795
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5796
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5797
|
-
event: "closeModal" | "
|
|
5797
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5798
5798
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5799
5799
|
}>> | undefined;
|
|
5800
5800
|
} | undefined;
|
|
5801
5801
|
proxyUrl?: string | undefined;
|
|
5802
5802
|
}) => void;
|
|
5803
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
5803
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5804
5804
|
uid: string;
|
|
5805
5805
|
name: string;
|
|
5806
5806
|
description: string;
|
|
@@ -5812,7 +5812,7 @@ export declare const useWorkspace: () => {
|
|
|
5812
5812
|
hotKeyConfig?: {
|
|
5813
5813
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5814
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5815
|
-
event: "closeModal" | "
|
|
5815
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5816
5816
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5817
5817
|
}>> | undefined;
|
|
5818
5818
|
} | undefined;
|
|
@@ -5829,7 +5829,7 @@ export declare const useWorkspace: () => {
|
|
|
5829
5829
|
hotKeyConfig?: {
|
|
5830
5830
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5831
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5832
|
-
event: "closeModal" | "
|
|
5832
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5833
5833
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5834
5834
|
}>> | undefined;
|
|
5835
5835
|
} | undefined;
|
|
@@ -5846,13 +5846,13 @@ export declare const useWorkspace: () => {
|
|
|
5846
5846
|
hotKeyConfig?: {
|
|
5847
5847
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5848
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5849
|
-
event: "closeModal" | "
|
|
5849
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5850
5850
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5851
5851
|
}>> | undefined;
|
|
5852
5852
|
} | undefined;
|
|
5853
5853
|
proxyUrl?: string | undefined;
|
|
5854
5854
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5855
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
5855
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5856
5856
|
uid: string;
|
|
5857
5857
|
name: string;
|
|
5858
5858
|
description: string;
|
|
@@ -5864,7 +5864,7 @@ export declare const useWorkspace: () => {
|
|
|
5864
5864
|
hotKeyConfig?: {
|
|
5865
5865
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5866
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5867
|
-
event: "closeModal" | "
|
|
5867
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5868
5868
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5869
5869
|
}>> | undefined;
|
|
5870
5870
|
} | undefined;
|
|
@@ -5881,7 +5881,7 @@ export declare const useWorkspace: () => {
|
|
|
5881
5881
|
hotKeyConfig?: {
|
|
5882
5882
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5883
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5884
|
-
event: "closeModal" | "
|
|
5884
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5885
5885
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5886
5886
|
}>> | undefined;
|
|
5887
5887
|
} | undefined;
|
|
@@ -5898,7 +5898,7 @@ export declare const useWorkspace: () => {
|
|
|
5898
5898
|
hotKeyConfig?: {
|
|
5899
5899
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5900
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5901
|
-
event: "closeModal" | "
|
|
5901
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5902
5902
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5903
5903
|
}>> | undefined;
|
|
5904
5904
|
} | undefined;
|