@scalar/api-client 2.0.52 → 2.0.53
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 +12 -0
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/layouts/App/create-api-client-app.d.ts +334 -334
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +668 -668
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +331 -331
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.d.ts +2 -2
- package/dist/libs/local-storage.js +1 -1
- package/dist/store/workspace.d.ts +683 -771
- package/dist/store/workspace.d.ts.map +1 -1
- package/package.json +8 -7
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import type { AuthenticationState, Spec, SpecConfiguration } from '@scalar/oas-utils';
|
|
2
1
|
import type { SecurityScheme } from '@scalar/oas-utils/entities/workspace/security';
|
|
3
2
|
import { type RequestMethod } from '@scalar/oas-utils/helpers';
|
|
4
3
|
import type { ThemeId } from '@scalar/themes';
|
|
4
|
+
import type { AuthenticationState, Spec, SpecConfiguration } from '@scalar/types/legacy';
|
|
5
5
|
import type { LiteralUnion } from 'type-fest';
|
|
6
6
|
import { type Component } from 'vue';
|
|
7
7
|
import type { Router } from 'vue-router';
|
|
@@ -81,18 +81,18 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
81
81
|
store: {
|
|
82
82
|
workspaces: Record<string, {
|
|
83
83
|
uid: string;
|
|
84
|
-
description: string;
|
|
85
84
|
name: string;
|
|
85
|
+
description: string;
|
|
86
86
|
isReadOnly: boolean;
|
|
87
87
|
collectionUids: string[];
|
|
88
88
|
environmentUids: string[];
|
|
89
89
|
cookieUids: string[];
|
|
90
90
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
91
91
|
hotKeyConfig?: {
|
|
92
|
-
modifiers: ("
|
|
93
|
-
hotKeys?: Partial<Record<"" | "
|
|
92
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
93
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
94
94
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
95
|
-
modifiers?: ("
|
|
95
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
96
96
|
}>> | undefined;
|
|
97
97
|
} | undefined;
|
|
98
98
|
proxyUrl?: string | undefined;
|
|
@@ -179,14 +179,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
179
179
|
minimum?: number | undefined;
|
|
180
180
|
type?: string | undefined;
|
|
181
181
|
maximum?: number | undefined;
|
|
182
|
-
description?: string | undefined;
|
|
183
182
|
default?: any;
|
|
184
183
|
required?: boolean | undefined;
|
|
184
|
+
description?: string | undefined;
|
|
185
185
|
enum?: string[] | undefined;
|
|
186
|
-
file?: File | undefined;
|
|
187
|
-
refUid?: string | undefined;
|
|
188
|
-
format?: string | undefined;
|
|
189
186
|
nullable?: boolean | undefined;
|
|
187
|
+
format?: string | undefined;
|
|
188
|
+
file?: any;
|
|
189
|
+
refUid?: string | undefined;
|
|
190
190
|
}[];
|
|
191
191
|
query: {
|
|
192
192
|
value: string;
|
|
@@ -195,53 +195,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
195
195
|
minimum?: number | undefined;
|
|
196
196
|
type?: string | undefined;
|
|
197
197
|
maximum?: number | undefined;
|
|
198
|
-
description?: string | undefined;
|
|
199
198
|
default?: any;
|
|
200
199
|
required?: boolean | undefined;
|
|
200
|
+
description?: string | undefined;
|
|
201
201
|
enum?: string[] | undefined;
|
|
202
|
-
file?: File | undefined;
|
|
203
|
-
refUid?: string | undefined;
|
|
204
|
-
format?: string | undefined;
|
|
205
202
|
nullable?: boolean | undefined;
|
|
203
|
+
format?: string | undefined;
|
|
204
|
+
file?: any;
|
|
205
|
+
refUid?: string | undefined;
|
|
206
206
|
}[];
|
|
207
|
-
|
|
207
|
+
headers: {
|
|
208
208
|
value: string;
|
|
209
209
|
key: string;
|
|
210
210
|
enabled: boolean;
|
|
211
211
|
minimum?: number | undefined;
|
|
212
212
|
type?: string | undefined;
|
|
213
213
|
maximum?: number | undefined;
|
|
214
|
-
description?: string | undefined;
|
|
215
214
|
default?: any;
|
|
216
215
|
required?: boolean | undefined;
|
|
216
|
+
description?: string | undefined;
|
|
217
217
|
enum?: string[] | undefined;
|
|
218
|
-
file?: File | undefined;
|
|
219
|
-
refUid?: string | undefined;
|
|
220
|
-
format?: string | undefined;
|
|
221
218
|
nullable?: boolean | undefined;
|
|
219
|
+
format?: string | undefined;
|
|
220
|
+
file?: any;
|
|
221
|
+
refUid?: string | undefined;
|
|
222
222
|
}[];
|
|
223
|
-
|
|
223
|
+
cookies: {
|
|
224
224
|
value: string;
|
|
225
225
|
key: string;
|
|
226
226
|
enabled: boolean;
|
|
227
227
|
minimum?: number | undefined;
|
|
228
228
|
type?: string | undefined;
|
|
229
229
|
maximum?: number | undefined;
|
|
230
|
-
description?: string | undefined;
|
|
231
230
|
default?: any;
|
|
232
231
|
required?: boolean | undefined;
|
|
232
|
+
description?: string | undefined;
|
|
233
233
|
enum?: string[] | undefined;
|
|
234
|
-
file?: File | undefined;
|
|
235
|
-
refUid?: string | undefined;
|
|
236
|
-
format?: string | undefined;
|
|
237
234
|
nullable?: boolean | undefined;
|
|
235
|
+
format?: string | undefined;
|
|
236
|
+
file?: any;
|
|
237
|
+
refUid?: string | undefined;
|
|
238
238
|
}[];
|
|
239
239
|
};
|
|
240
240
|
requestUid: string;
|
|
241
241
|
body: {
|
|
242
242
|
raw: {
|
|
243
243
|
value: string;
|
|
244
|
-
encoding: "
|
|
244
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
245
245
|
};
|
|
246
246
|
formData: {
|
|
247
247
|
value: {
|
|
@@ -251,14 +251,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
251
251
|
minimum?: number | undefined;
|
|
252
252
|
type?: string | undefined;
|
|
253
253
|
maximum?: number | undefined;
|
|
254
|
-
description?: string | undefined;
|
|
255
254
|
default?: any;
|
|
256
255
|
required?: boolean | undefined;
|
|
256
|
+
description?: string | undefined;
|
|
257
257
|
enum?: string[] | undefined;
|
|
258
|
-
file?: File | undefined;
|
|
259
|
-
refUid?: string | undefined;
|
|
260
|
-
format?: string | undefined;
|
|
261
258
|
nullable?: boolean | undefined;
|
|
259
|
+
format?: string | undefined;
|
|
260
|
+
file?: any;
|
|
261
|
+
refUid?: string | undefined;
|
|
262
262
|
}[];
|
|
263
263
|
encoding: "form-data" | "urlencoded";
|
|
264
264
|
};
|
|
@@ -273,8 +273,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
273
273
|
url: string;
|
|
274
274
|
description?: string | undefined;
|
|
275
275
|
variables?: Record<string, {
|
|
276
|
-
uid: string;
|
|
277
276
|
default: string;
|
|
277
|
+
uid: string;
|
|
278
278
|
value?: string | undefined;
|
|
279
279
|
description?: string | undefined;
|
|
280
280
|
enum?: string[] | undefined;
|
|
@@ -284,8 +284,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
284
284
|
type: "apiKey";
|
|
285
285
|
value: string;
|
|
286
286
|
uid: string;
|
|
287
|
-
nameKey: string;
|
|
288
287
|
name: string;
|
|
288
|
+
nameKey: string;
|
|
289
289
|
in: "query" | "header" | "cookie";
|
|
290
290
|
description?: string | undefined;
|
|
291
291
|
} | {
|
|
@@ -400,14 +400,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
400
400
|
minimum?: number | undefined;
|
|
401
401
|
type?: string | undefined;
|
|
402
402
|
maximum?: number | undefined;
|
|
403
|
-
description?: string | undefined;
|
|
404
403
|
default?: any;
|
|
405
404
|
required?: boolean | undefined;
|
|
405
|
+
description?: string | undefined;
|
|
406
406
|
enum?: string[] | undefined;
|
|
407
|
-
file?: File | undefined;
|
|
408
|
-
refUid?: string | undefined;
|
|
409
|
-
format?: string | undefined;
|
|
410
407
|
nullable?: boolean | undefined;
|
|
408
|
+
format?: string | undefined;
|
|
409
|
+
file?: any;
|
|
410
|
+
refUid?: string | undefined;
|
|
411
411
|
}[];
|
|
412
412
|
query: {
|
|
413
413
|
value: string;
|
|
@@ -416,53 +416,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
416
416
|
minimum?: number | undefined;
|
|
417
417
|
type?: string | undefined;
|
|
418
418
|
maximum?: number | undefined;
|
|
419
|
-
description?: string | undefined;
|
|
420
419
|
default?: any;
|
|
421
420
|
required?: boolean | undefined;
|
|
421
|
+
description?: string | undefined;
|
|
422
422
|
enum?: string[] | undefined;
|
|
423
|
-
file?: File | undefined;
|
|
424
|
-
refUid?: string | undefined;
|
|
425
|
-
format?: string | undefined;
|
|
426
423
|
nullable?: boolean | undefined;
|
|
424
|
+
format?: string | undefined;
|
|
425
|
+
file?: any;
|
|
426
|
+
refUid?: string | undefined;
|
|
427
427
|
}[];
|
|
428
|
-
|
|
428
|
+
headers: {
|
|
429
429
|
value: string;
|
|
430
430
|
key: string;
|
|
431
431
|
enabled: boolean;
|
|
432
432
|
minimum?: number | undefined;
|
|
433
433
|
type?: string | undefined;
|
|
434
434
|
maximum?: number | undefined;
|
|
435
|
-
description?: string | undefined;
|
|
436
435
|
default?: any;
|
|
437
436
|
required?: boolean | undefined;
|
|
437
|
+
description?: string | undefined;
|
|
438
438
|
enum?: string[] | undefined;
|
|
439
|
-
file?: File | undefined;
|
|
440
|
-
refUid?: string | undefined;
|
|
441
|
-
format?: string | undefined;
|
|
442
439
|
nullable?: boolean | undefined;
|
|
440
|
+
format?: string | undefined;
|
|
441
|
+
file?: any;
|
|
442
|
+
refUid?: string | undefined;
|
|
443
443
|
}[];
|
|
444
|
-
|
|
444
|
+
cookies: {
|
|
445
445
|
value: string;
|
|
446
446
|
key: string;
|
|
447
447
|
enabled: boolean;
|
|
448
448
|
minimum?: number | undefined;
|
|
449
449
|
type?: string | undefined;
|
|
450
450
|
maximum?: number | undefined;
|
|
451
|
-
description?: string | undefined;
|
|
452
451
|
default?: any;
|
|
453
452
|
required?: boolean | undefined;
|
|
453
|
+
description?: string | undefined;
|
|
454
454
|
enum?: string[] | undefined;
|
|
455
|
-
file?: File | undefined;
|
|
456
|
-
refUid?: string | undefined;
|
|
457
|
-
format?: string | undefined;
|
|
458
455
|
nullable?: boolean | undefined;
|
|
456
|
+
format?: string | undefined;
|
|
457
|
+
file?: any;
|
|
458
|
+
refUid?: string | undefined;
|
|
459
459
|
}[];
|
|
460
460
|
};
|
|
461
461
|
requestUid: string;
|
|
462
462
|
body: {
|
|
463
463
|
raw: {
|
|
464
464
|
value: string;
|
|
465
|
-
encoding: "
|
|
465
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
466
466
|
};
|
|
467
467
|
formData: {
|
|
468
468
|
value: {
|
|
@@ -472,14 +472,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
472
472
|
minimum?: number | undefined;
|
|
473
473
|
type?: string | undefined;
|
|
474
474
|
maximum?: number | undefined;
|
|
475
|
-
description?: string | undefined;
|
|
476
475
|
default?: any;
|
|
477
476
|
required?: boolean | undefined;
|
|
477
|
+
description?: string | undefined;
|
|
478
478
|
enum?: string[] | undefined;
|
|
479
|
-
file?: File | undefined;
|
|
480
|
-
refUid?: string | undefined;
|
|
481
|
-
format?: string | undefined;
|
|
482
479
|
nullable?: boolean | undefined;
|
|
480
|
+
format?: string | undefined;
|
|
481
|
+
file?: any;
|
|
482
|
+
refUid?: string | undefined;
|
|
483
483
|
}[];
|
|
484
484
|
encoding: "form-data" | "urlencoded";
|
|
485
485
|
};
|
|
@@ -504,8 +504,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
504
504
|
type: "apiKey";
|
|
505
505
|
value: string;
|
|
506
506
|
uid: string;
|
|
507
|
-
nameKey: string;
|
|
508
507
|
name: string;
|
|
508
|
+
nameKey: string;
|
|
509
509
|
in: "query" | "header" | "cookie";
|
|
510
510
|
description?: string | undefined;
|
|
511
511
|
} | {
|
|
@@ -572,8 +572,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
572
572
|
url: string;
|
|
573
573
|
description?: string | undefined;
|
|
574
574
|
variables?: Record<string, {
|
|
575
|
-
uid: string;
|
|
576
575
|
default: string;
|
|
576
|
+
uid: string;
|
|
577
577
|
value?: string | undefined;
|
|
578
578
|
description?: string | undefined;
|
|
579
579
|
enum?: string[] | undefined;
|
|
@@ -581,18 +581,18 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
581
581
|
} | null>;
|
|
582
582
|
activeWorkspace: import("vue").ComputedRef<{
|
|
583
583
|
uid: string;
|
|
584
|
-
description: string;
|
|
585
584
|
name: string;
|
|
585
|
+
description: string;
|
|
586
586
|
isReadOnly: boolean;
|
|
587
587
|
collectionUids: string[];
|
|
588
588
|
environmentUids: string[];
|
|
589
589
|
cookieUids: string[];
|
|
590
590
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
591
591
|
hotKeyConfig?: {
|
|
592
|
-
modifiers: ("
|
|
593
|
-
hotKeys?: Partial<Record<"" | "
|
|
592
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
593
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
594
594
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
595
|
-
modifiers?: ("
|
|
595
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
596
596
|
}>> | undefined;
|
|
597
597
|
} | undefined;
|
|
598
598
|
proxyUrl?: string | undefined;
|
|
@@ -642,8 +642,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
642
642
|
url: string;
|
|
643
643
|
description?: string | undefined;
|
|
644
644
|
variables?: Record<string, {
|
|
645
|
-
uid: string;
|
|
646
645
|
default: string;
|
|
646
|
+
uid: string;
|
|
647
647
|
value?: string | undefined;
|
|
648
648
|
description?: string | undefined;
|
|
649
649
|
enum?: string[] | undefined;
|
|
@@ -1285,13 +1285,13 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1285
1285
|
path: string;
|
|
1286
1286
|
uid: string;
|
|
1287
1287
|
childUids: string[];
|
|
1288
|
-
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
1289
1288
|
parameters: {
|
|
1290
1289
|
path: Record<string, any>;
|
|
1291
1290
|
query: Record<string, any>;
|
|
1292
|
-
cookies: Record<string, any>;
|
|
1293
1291
|
headers: Record<string, any>;
|
|
1292
|
+
cookies: Record<string, any>;
|
|
1294
1293
|
};
|
|
1294
|
+
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
1295
1295
|
ref: {
|
|
1296
1296
|
path: string;
|
|
1297
1297
|
isExternal: boolean;
|
|
@@ -1309,8 +1309,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1309
1309
|
};
|
|
1310
1310
|
delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid?: string) => void;
|
|
1311
1311
|
set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
1312
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1313
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1312
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1313
|
+
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1314
1314
|
undo: (uid: string) => void;
|
|
1315
1315
|
redo: (uid: string) => void;
|
|
1316
1316
|
loadLocalStorage: () => void;
|
|
@@ -1328,14 +1328,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1328
1328
|
minimum?: number | undefined;
|
|
1329
1329
|
type?: string | undefined;
|
|
1330
1330
|
maximum?: number | undefined;
|
|
1331
|
-
description?: string | undefined;
|
|
1332
1331
|
default?: any;
|
|
1333
1332
|
required?: boolean | undefined;
|
|
1333
|
+
description?: string | undefined;
|
|
1334
1334
|
enum?: string[] | undefined;
|
|
1335
|
-
file?: File | undefined;
|
|
1336
|
-
refUid?: string | undefined;
|
|
1337
|
-
format?: string | undefined;
|
|
1338
1335
|
nullable?: boolean | undefined;
|
|
1336
|
+
format?: string | undefined;
|
|
1337
|
+
file?: any;
|
|
1338
|
+
refUid?: string | undefined;
|
|
1339
1339
|
}[];
|
|
1340
1340
|
query: {
|
|
1341
1341
|
value: string;
|
|
@@ -1344,53 +1344,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1344
1344
|
minimum?: number | undefined;
|
|
1345
1345
|
type?: string | undefined;
|
|
1346
1346
|
maximum?: number | undefined;
|
|
1347
|
-
description?: string | undefined;
|
|
1348
1347
|
default?: any;
|
|
1349
1348
|
required?: boolean | undefined;
|
|
1349
|
+
description?: string | undefined;
|
|
1350
1350
|
enum?: string[] | undefined;
|
|
1351
|
-
file?: File | undefined;
|
|
1352
|
-
refUid?: string | undefined;
|
|
1353
|
-
format?: string | undefined;
|
|
1354
1351
|
nullable?: boolean | undefined;
|
|
1352
|
+
format?: string | undefined;
|
|
1353
|
+
file?: any;
|
|
1354
|
+
refUid?: string | undefined;
|
|
1355
1355
|
}[];
|
|
1356
|
-
|
|
1356
|
+
headers: {
|
|
1357
1357
|
value: string;
|
|
1358
1358
|
key: string;
|
|
1359
1359
|
enabled: boolean;
|
|
1360
1360
|
minimum?: number | undefined;
|
|
1361
1361
|
type?: string | undefined;
|
|
1362
1362
|
maximum?: number | undefined;
|
|
1363
|
-
description?: string | undefined;
|
|
1364
1363
|
default?: any;
|
|
1365
1364
|
required?: boolean | undefined;
|
|
1365
|
+
description?: string | undefined;
|
|
1366
1366
|
enum?: string[] | undefined;
|
|
1367
|
-
file?: File | undefined;
|
|
1368
|
-
refUid?: string | undefined;
|
|
1369
|
-
format?: string | undefined;
|
|
1370
1367
|
nullable?: boolean | undefined;
|
|
1368
|
+
format?: string | undefined;
|
|
1369
|
+
file?: any;
|
|
1370
|
+
refUid?: string | undefined;
|
|
1371
1371
|
}[];
|
|
1372
|
-
|
|
1372
|
+
cookies: {
|
|
1373
1373
|
value: string;
|
|
1374
1374
|
key: string;
|
|
1375
1375
|
enabled: boolean;
|
|
1376
1376
|
minimum?: number | undefined;
|
|
1377
1377
|
type?: string | undefined;
|
|
1378
1378
|
maximum?: number | undefined;
|
|
1379
|
-
description?: string | undefined;
|
|
1380
1379
|
default?: any;
|
|
1381
1380
|
required?: boolean | undefined;
|
|
1381
|
+
description?: string | undefined;
|
|
1382
1382
|
enum?: string[] | undefined;
|
|
1383
|
-
file?: File | undefined;
|
|
1384
|
-
refUid?: string | undefined;
|
|
1385
|
-
format?: string | undefined;
|
|
1386
1383
|
nullable?: boolean | undefined;
|
|
1384
|
+
format?: string | undefined;
|
|
1385
|
+
file?: any;
|
|
1386
|
+
refUid?: string | undefined;
|
|
1387
1387
|
}[];
|
|
1388
1388
|
};
|
|
1389
1389
|
requestUid: string;
|
|
1390
1390
|
body: {
|
|
1391
1391
|
raw: {
|
|
1392
1392
|
value: string;
|
|
1393
|
-
encoding: "
|
|
1393
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1394
1394
|
};
|
|
1395
1395
|
formData: {
|
|
1396
1396
|
value: {
|
|
@@ -1400,14 +1400,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1400
1400
|
minimum?: number | undefined;
|
|
1401
1401
|
type?: string | undefined;
|
|
1402
1402
|
maximum?: number | undefined;
|
|
1403
|
-
description?: string | undefined;
|
|
1404
1403
|
default?: any;
|
|
1405
1404
|
required?: boolean | undefined;
|
|
1405
|
+
description?: string | undefined;
|
|
1406
1406
|
enum?: string[] | undefined;
|
|
1407
|
-
file?: File | undefined;
|
|
1408
|
-
refUid?: string | undefined;
|
|
1409
|
-
format?: string | undefined;
|
|
1410
1407
|
nullable?: boolean | undefined;
|
|
1408
|
+
format?: string | undefined;
|
|
1409
|
+
file?: any;
|
|
1410
|
+
refUid?: string | undefined;
|
|
1411
1411
|
}[];
|
|
1412
1412
|
encoding: "form-data" | "urlencoded";
|
|
1413
1413
|
};
|
|
@@ -1428,14 +1428,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1428
1428
|
minimum?: number | undefined;
|
|
1429
1429
|
type?: string | undefined;
|
|
1430
1430
|
maximum?: number | undefined;
|
|
1431
|
-
description?: string | undefined;
|
|
1432
1431
|
default?: any;
|
|
1433
1432
|
required?: boolean | undefined;
|
|
1433
|
+
description?: string | undefined;
|
|
1434
1434
|
enum?: string[] | undefined;
|
|
1435
|
-
file?: File | undefined;
|
|
1436
|
-
refUid?: string | undefined;
|
|
1437
|
-
format?: string | undefined;
|
|
1438
1435
|
nullable?: boolean | undefined;
|
|
1436
|
+
format?: string | undefined;
|
|
1437
|
+
file?: any;
|
|
1438
|
+
refUid?: string | undefined;
|
|
1439
1439
|
}[];
|
|
1440
1440
|
query: {
|
|
1441
1441
|
value: string;
|
|
@@ -1444,53 +1444,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1444
1444
|
minimum?: number | undefined;
|
|
1445
1445
|
type?: string | undefined;
|
|
1446
1446
|
maximum?: number | undefined;
|
|
1447
|
-
description?: string | undefined;
|
|
1448
1447
|
default?: any;
|
|
1449
1448
|
required?: boolean | undefined;
|
|
1449
|
+
description?: string | undefined;
|
|
1450
1450
|
enum?: string[] | undefined;
|
|
1451
|
-
file?: File | undefined;
|
|
1452
|
-
refUid?: string | undefined;
|
|
1453
|
-
format?: string | undefined;
|
|
1454
1451
|
nullable?: boolean | undefined;
|
|
1452
|
+
format?: string | undefined;
|
|
1453
|
+
file?: any;
|
|
1454
|
+
refUid?: string | undefined;
|
|
1455
1455
|
}[];
|
|
1456
|
-
|
|
1456
|
+
headers: {
|
|
1457
1457
|
value: string;
|
|
1458
1458
|
key: string;
|
|
1459
1459
|
enabled: boolean;
|
|
1460
1460
|
minimum?: number | undefined;
|
|
1461
1461
|
type?: string | undefined;
|
|
1462
1462
|
maximum?: number | undefined;
|
|
1463
|
-
description?: string | undefined;
|
|
1464
1463
|
default?: any;
|
|
1465
1464
|
required?: boolean | undefined;
|
|
1465
|
+
description?: string | undefined;
|
|
1466
1466
|
enum?: string[] | undefined;
|
|
1467
|
-
file?: File | undefined;
|
|
1468
|
-
refUid?: string | undefined;
|
|
1469
|
-
format?: string | undefined;
|
|
1470
1467
|
nullable?: boolean | undefined;
|
|
1468
|
+
format?: string | undefined;
|
|
1469
|
+
file?: any;
|
|
1470
|
+
refUid?: string | undefined;
|
|
1471
1471
|
}[];
|
|
1472
|
-
|
|
1472
|
+
cookies: {
|
|
1473
1473
|
value: string;
|
|
1474
1474
|
key: string;
|
|
1475
1475
|
enabled: boolean;
|
|
1476
1476
|
minimum?: number | undefined;
|
|
1477
1477
|
type?: string | undefined;
|
|
1478
1478
|
maximum?: number | undefined;
|
|
1479
|
-
description?: string | undefined;
|
|
1480
1479
|
default?: any;
|
|
1481
1480
|
required?: boolean | undefined;
|
|
1481
|
+
description?: string | undefined;
|
|
1482
1482
|
enum?: string[] | undefined;
|
|
1483
|
-
file?: File | undefined;
|
|
1484
|
-
refUid?: string | undefined;
|
|
1485
|
-
format?: string | undefined;
|
|
1486
1483
|
nullable?: boolean | undefined;
|
|
1484
|
+
format?: string | undefined;
|
|
1485
|
+
file?: any;
|
|
1486
|
+
refUid?: string | undefined;
|
|
1487
1487
|
}[];
|
|
1488
1488
|
};
|
|
1489
1489
|
requestUid: string;
|
|
1490
1490
|
body: {
|
|
1491
1491
|
raw: {
|
|
1492
1492
|
value: string;
|
|
1493
|
-
encoding: "
|
|
1493
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1494
1494
|
};
|
|
1495
1495
|
formData: {
|
|
1496
1496
|
value: {
|
|
@@ -1500,14 +1500,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1500
1500
|
minimum?: number | undefined;
|
|
1501
1501
|
type?: string | undefined;
|
|
1502
1502
|
maximum?: number | undefined;
|
|
1503
|
-
description?: string | undefined;
|
|
1504
1503
|
default?: any;
|
|
1505
1504
|
required?: boolean | undefined;
|
|
1505
|
+
description?: string | undefined;
|
|
1506
1506
|
enum?: string[] | undefined;
|
|
1507
|
-
file?: File | undefined;
|
|
1508
|
-
refUid?: string | undefined;
|
|
1509
|
-
format?: string | undefined;
|
|
1510
1507
|
nullable?: boolean | undefined;
|
|
1508
|
+
format?: string | undefined;
|
|
1509
|
+
file?: any;
|
|
1510
|
+
refUid?: string | undefined;
|
|
1511
1511
|
}[];
|
|
1512
1512
|
encoding: "form-data" | "urlencoded";
|
|
1513
1513
|
};
|
|
@@ -1529,14 +1529,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1529
1529
|
minimum?: number | undefined;
|
|
1530
1530
|
type?: string | undefined;
|
|
1531
1531
|
maximum?: number | undefined;
|
|
1532
|
-
description?: string | undefined;
|
|
1533
1532
|
default?: any;
|
|
1534
1533
|
required?: boolean | undefined;
|
|
1534
|
+
description?: string | undefined;
|
|
1535
1535
|
enum?: string[] | undefined;
|
|
1536
|
-
file?: File | undefined;
|
|
1537
|
-
refUid?: string | undefined;
|
|
1538
|
-
format?: string | undefined;
|
|
1539
1536
|
nullable?: boolean | undefined;
|
|
1537
|
+
format?: string | undefined;
|
|
1538
|
+
file?: any;
|
|
1539
|
+
refUid?: string | undefined;
|
|
1540
1540
|
}[];
|
|
1541
1541
|
query: {
|
|
1542
1542
|
value: string;
|
|
@@ -1545,53 +1545,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1545
1545
|
minimum?: number | undefined;
|
|
1546
1546
|
type?: string | undefined;
|
|
1547
1547
|
maximum?: number | undefined;
|
|
1548
|
-
description?: string | undefined;
|
|
1549
1548
|
default?: any;
|
|
1550
1549
|
required?: boolean | undefined;
|
|
1550
|
+
description?: string | undefined;
|
|
1551
1551
|
enum?: string[] | undefined;
|
|
1552
|
-
file?: File | undefined;
|
|
1553
|
-
refUid?: string | undefined;
|
|
1554
|
-
format?: string | undefined;
|
|
1555
1552
|
nullable?: boolean | undefined;
|
|
1553
|
+
format?: string | undefined;
|
|
1554
|
+
file?: any;
|
|
1555
|
+
refUid?: string | undefined;
|
|
1556
1556
|
}[];
|
|
1557
|
-
|
|
1557
|
+
headers: {
|
|
1558
1558
|
value: string;
|
|
1559
1559
|
key: string;
|
|
1560
1560
|
enabled: boolean;
|
|
1561
1561
|
minimum?: number | undefined;
|
|
1562
1562
|
type?: string | undefined;
|
|
1563
1563
|
maximum?: number | undefined;
|
|
1564
|
-
description?: string | undefined;
|
|
1565
1564
|
default?: any;
|
|
1566
1565
|
required?: boolean | undefined;
|
|
1566
|
+
description?: string | undefined;
|
|
1567
1567
|
enum?: string[] | undefined;
|
|
1568
|
-
file?: File | undefined;
|
|
1569
|
-
refUid?: string | undefined;
|
|
1570
|
-
format?: string | undefined;
|
|
1571
1568
|
nullable?: boolean | undefined;
|
|
1569
|
+
format?: string | undefined;
|
|
1570
|
+
file?: any;
|
|
1571
|
+
refUid?: string | undefined;
|
|
1572
1572
|
}[];
|
|
1573
|
-
|
|
1573
|
+
cookies: {
|
|
1574
1574
|
value: string;
|
|
1575
1575
|
key: string;
|
|
1576
1576
|
enabled: boolean;
|
|
1577
1577
|
minimum?: number | undefined;
|
|
1578
1578
|
type?: string | undefined;
|
|
1579
1579
|
maximum?: number | undefined;
|
|
1580
|
-
description?: string | undefined;
|
|
1581
1580
|
default?: any;
|
|
1582
1581
|
required?: boolean | undefined;
|
|
1582
|
+
description?: string | undefined;
|
|
1583
1583
|
enum?: string[] | undefined;
|
|
1584
|
-
file?: File | undefined;
|
|
1585
|
-
refUid?: string | undefined;
|
|
1586
|
-
format?: string | undefined;
|
|
1587
1584
|
nullable?: boolean | undefined;
|
|
1585
|
+
format?: string | undefined;
|
|
1586
|
+
file?: any;
|
|
1587
|
+
refUid?: string | undefined;
|
|
1588
1588
|
}[];
|
|
1589
1589
|
};
|
|
1590
1590
|
requestUid: string;
|
|
1591
1591
|
body: {
|
|
1592
1592
|
raw: {
|
|
1593
1593
|
value: string;
|
|
1594
|
-
encoding: "
|
|
1594
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1595
1595
|
};
|
|
1596
1596
|
formData: {
|
|
1597
1597
|
value: {
|
|
@@ -1601,14 +1601,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1601
1601
|
minimum?: number | undefined;
|
|
1602
1602
|
type?: string | undefined;
|
|
1603
1603
|
maximum?: number | undefined;
|
|
1604
|
-
description?: string | undefined;
|
|
1605
1604
|
default?: any;
|
|
1606
1605
|
required?: boolean | undefined;
|
|
1606
|
+
description?: string | undefined;
|
|
1607
1607
|
enum?: string[] | undefined;
|
|
1608
|
-
file?: File | undefined;
|
|
1609
|
-
refUid?: string | undefined;
|
|
1610
|
-
format?: string | undefined;
|
|
1611
1608
|
nullable?: boolean | undefined;
|
|
1609
|
+
format?: string | undefined;
|
|
1610
|
+
file?: any;
|
|
1611
|
+
refUid?: string | undefined;
|
|
1612
1612
|
}[];
|
|
1613
1613
|
encoding: "form-data" | "urlencoded";
|
|
1614
1614
|
};
|
|
@@ -1617,7 +1617,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1617
1617
|
};
|
|
1618
1618
|
auth: Record<string, any>;
|
|
1619
1619
|
}) => void;
|
|
1620
|
-
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}.
|
|
1620
|
+
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" ? {
|
|
1621
1621
|
uid: string;
|
|
1622
1622
|
name: string;
|
|
1623
1623
|
url: string;
|
|
@@ -1629,14 +1629,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1629
1629
|
minimum?: number | undefined;
|
|
1630
1630
|
type?: string | undefined;
|
|
1631
1631
|
maximum?: number | undefined;
|
|
1632
|
-
description?: string | undefined;
|
|
1633
1632
|
default?: any;
|
|
1634
1633
|
required?: boolean | undefined;
|
|
1634
|
+
description?: string | undefined;
|
|
1635
1635
|
enum?: string[] | undefined;
|
|
1636
|
-
file?: File | undefined;
|
|
1637
|
-
refUid?: string | undefined;
|
|
1638
|
-
format?: string | undefined;
|
|
1639
1636
|
nullable?: boolean | undefined;
|
|
1637
|
+
format?: string | undefined;
|
|
1638
|
+
file?: any;
|
|
1639
|
+
refUid?: string | undefined;
|
|
1640
1640
|
}[];
|
|
1641
1641
|
query: {
|
|
1642
1642
|
value: string;
|
|
@@ -1645,53 +1645,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1645
1645
|
minimum?: number | undefined;
|
|
1646
1646
|
type?: string | undefined;
|
|
1647
1647
|
maximum?: number | undefined;
|
|
1648
|
-
description?: string | undefined;
|
|
1649
1648
|
default?: any;
|
|
1650
1649
|
required?: boolean | undefined;
|
|
1650
|
+
description?: string | undefined;
|
|
1651
1651
|
enum?: string[] | undefined;
|
|
1652
|
-
file?: File | undefined;
|
|
1653
|
-
refUid?: string | undefined;
|
|
1654
|
-
format?: string | undefined;
|
|
1655
1652
|
nullable?: boolean | undefined;
|
|
1653
|
+
format?: string | undefined;
|
|
1654
|
+
file?: any;
|
|
1655
|
+
refUid?: string | undefined;
|
|
1656
1656
|
}[];
|
|
1657
|
-
|
|
1657
|
+
headers: {
|
|
1658
1658
|
value: string;
|
|
1659
1659
|
key: string;
|
|
1660
1660
|
enabled: boolean;
|
|
1661
1661
|
minimum?: number | undefined;
|
|
1662
1662
|
type?: string | undefined;
|
|
1663
1663
|
maximum?: number | undefined;
|
|
1664
|
-
description?: string | undefined;
|
|
1665
1664
|
default?: any;
|
|
1666
1665
|
required?: boolean | undefined;
|
|
1666
|
+
description?: string | undefined;
|
|
1667
1667
|
enum?: string[] | undefined;
|
|
1668
|
-
file?: File | undefined;
|
|
1669
|
-
refUid?: string | undefined;
|
|
1670
|
-
format?: string | undefined;
|
|
1671
1668
|
nullable?: boolean | undefined;
|
|
1669
|
+
format?: string | undefined;
|
|
1670
|
+
file?: any;
|
|
1671
|
+
refUid?: string | undefined;
|
|
1672
1672
|
}[];
|
|
1673
|
-
|
|
1673
|
+
cookies: {
|
|
1674
1674
|
value: string;
|
|
1675
1675
|
key: string;
|
|
1676
1676
|
enabled: boolean;
|
|
1677
1677
|
minimum?: number | undefined;
|
|
1678
1678
|
type?: string | undefined;
|
|
1679
1679
|
maximum?: number | undefined;
|
|
1680
|
-
description?: string | undefined;
|
|
1681
1680
|
default?: any;
|
|
1682
1681
|
required?: boolean | undefined;
|
|
1682
|
+
description?: string | undefined;
|
|
1683
1683
|
enum?: string[] | undefined;
|
|
1684
|
-
file?: File | undefined;
|
|
1685
|
-
refUid?: string | undefined;
|
|
1686
|
-
format?: string | undefined;
|
|
1687
1684
|
nullable?: boolean | undefined;
|
|
1685
|
+
format?: string | undefined;
|
|
1686
|
+
file?: any;
|
|
1687
|
+
refUid?: string | undefined;
|
|
1688
1688
|
}[];
|
|
1689
1689
|
};
|
|
1690
1690
|
requestUid: string;
|
|
1691
1691
|
body: {
|
|
1692
1692
|
raw: {
|
|
1693
1693
|
value: string;
|
|
1694
|
-
encoding: "
|
|
1694
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1695
1695
|
};
|
|
1696
1696
|
formData: {
|
|
1697
1697
|
value: {
|
|
@@ -1701,14 +1701,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1701
1701
|
minimum?: number | undefined;
|
|
1702
1702
|
type?: string | undefined;
|
|
1703
1703
|
maximum?: number | undefined;
|
|
1704
|
-
description?: string | undefined;
|
|
1705
1704
|
default?: any;
|
|
1706
1705
|
required?: boolean | undefined;
|
|
1706
|
+
description?: string | undefined;
|
|
1707
1707
|
enum?: string[] | undefined;
|
|
1708
|
-
file?: File | undefined;
|
|
1709
|
-
refUid?: string | undefined;
|
|
1710
|
-
format?: string | undefined;
|
|
1711
1708
|
nullable?: boolean | undefined;
|
|
1709
|
+
format?: string | undefined;
|
|
1710
|
+
file?: any;
|
|
1711
|
+
refUid?: string | undefined;
|
|
1712
1712
|
}[];
|
|
1713
1713
|
encoding: "form-data" | "urlencoded";
|
|
1714
1714
|
};
|
|
@@ -1728,14 +1728,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1728
1728
|
minimum?: number | undefined;
|
|
1729
1729
|
type?: string | undefined;
|
|
1730
1730
|
maximum?: number | undefined;
|
|
1731
|
-
description?: string | undefined;
|
|
1732
1731
|
default?: any;
|
|
1733
1732
|
required?: boolean | undefined;
|
|
1733
|
+
description?: string | undefined;
|
|
1734
1734
|
enum?: string[] | undefined;
|
|
1735
|
-
file?: File | undefined;
|
|
1736
|
-
refUid?: string | undefined;
|
|
1737
|
-
format?: string | undefined;
|
|
1738
1735
|
nullable?: boolean | undefined;
|
|
1736
|
+
format?: string | undefined;
|
|
1737
|
+
file?: any;
|
|
1738
|
+
refUid?: string | undefined;
|
|
1739
1739
|
}[];
|
|
1740
1740
|
query: {
|
|
1741
1741
|
value: string;
|
|
@@ -1744,53 +1744,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1744
1744
|
minimum?: number | undefined;
|
|
1745
1745
|
type?: string | undefined;
|
|
1746
1746
|
maximum?: number | undefined;
|
|
1747
|
-
description?: string | undefined;
|
|
1748
1747
|
default?: any;
|
|
1749
1748
|
required?: boolean | undefined;
|
|
1749
|
+
description?: string | undefined;
|
|
1750
1750
|
enum?: string[] | undefined;
|
|
1751
|
-
file?: File | undefined;
|
|
1752
|
-
refUid?: string | undefined;
|
|
1753
|
-
format?: string | undefined;
|
|
1754
1751
|
nullable?: boolean | undefined;
|
|
1752
|
+
format?: string | undefined;
|
|
1753
|
+
file?: any;
|
|
1754
|
+
refUid?: string | undefined;
|
|
1755
1755
|
}[];
|
|
1756
|
-
|
|
1756
|
+
headers: {
|
|
1757
1757
|
value: string;
|
|
1758
1758
|
key: string;
|
|
1759
1759
|
enabled: boolean;
|
|
1760
1760
|
minimum?: number | undefined;
|
|
1761
1761
|
type?: string | undefined;
|
|
1762
1762
|
maximum?: number | undefined;
|
|
1763
|
-
description?: string | undefined;
|
|
1764
1763
|
default?: any;
|
|
1765
1764
|
required?: boolean | undefined;
|
|
1765
|
+
description?: string | undefined;
|
|
1766
1766
|
enum?: string[] | undefined;
|
|
1767
|
-
file?: File | undefined;
|
|
1768
|
-
refUid?: string | undefined;
|
|
1769
|
-
format?: string | undefined;
|
|
1770
1767
|
nullable?: boolean | undefined;
|
|
1768
|
+
format?: string | undefined;
|
|
1769
|
+
file?: any;
|
|
1770
|
+
refUid?: string | undefined;
|
|
1771
1771
|
}[];
|
|
1772
|
-
|
|
1772
|
+
cookies: {
|
|
1773
1773
|
value: string;
|
|
1774
1774
|
key: string;
|
|
1775
1775
|
enabled: boolean;
|
|
1776
1776
|
minimum?: number | undefined;
|
|
1777
1777
|
type?: string | undefined;
|
|
1778
1778
|
maximum?: number | undefined;
|
|
1779
|
-
description?: string | undefined;
|
|
1780
1779
|
default?: any;
|
|
1781
1780
|
required?: boolean | undefined;
|
|
1781
|
+
description?: string | undefined;
|
|
1782
1782
|
enum?: string[] | undefined;
|
|
1783
|
-
file?: File | undefined;
|
|
1784
|
-
refUid?: string | undefined;
|
|
1785
|
-
format?: string | undefined;
|
|
1786
1783
|
nullable?: boolean | undefined;
|
|
1784
|
+
format?: string | undefined;
|
|
1785
|
+
file?: any;
|
|
1786
|
+
refUid?: string | undefined;
|
|
1787
1787
|
}[];
|
|
1788
1788
|
};
|
|
1789
1789
|
requestUid: string;
|
|
1790
1790
|
body: {
|
|
1791
1791
|
raw: {
|
|
1792
1792
|
value: string;
|
|
1793
|
-
encoding: "
|
|
1793
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1794
1794
|
};
|
|
1795
1795
|
formData: {
|
|
1796
1796
|
value: {
|
|
@@ -1800,14 +1800,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1800
1800
|
minimum?: number | undefined;
|
|
1801
1801
|
type?: string | undefined;
|
|
1802
1802
|
maximum?: number | undefined;
|
|
1803
|
-
description?: string | undefined;
|
|
1804
1803
|
default?: any;
|
|
1805
1804
|
required?: boolean | undefined;
|
|
1805
|
+
description?: string | undefined;
|
|
1806
1806
|
enum?: string[] | undefined;
|
|
1807
|
-
file?: File | undefined;
|
|
1808
|
-
refUid?: string | undefined;
|
|
1809
|
-
format?: string | undefined;
|
|
1810
1807
|
nullable?: boolean | undefined;
|
|
1808
|
+
format?: string | undefined;
|
|
1809
|
+
file?: any;
|
|
1810
|
+
refUid?: string | undefined;
|
|
1811
1811
|
}[];
|
|
1812
1812
|
encoding: "form-data" | "urlencoded";
|
|
1813
1813
|
};
|
|
@@ -1827,14 +1827,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1827
1827
|
minimum?: number | undefined;
|
|
1828
1828
|
type?: string | undefined;
|
|
1829
1829
|
maximum?: number | undefined;
|
|
1830
|
-
description?: string | undefined;
|
|
1831
1830
|
default?: any;
|
|
1832
1831
|
required?: boolean | undefined;
|
|
1832
|
+
description?: string | undefined;
|
|
1833
1833
|
enum?: string[] | undefined;
|
|
1834
|
-
file?: File | undefined;
|
|
1835
|
-
refUid?: string | undefined;
|
|
1836
|
-
format?: string | undefined;
|
|
1837
1834
|
nullable?: boolean | undefined;
|
|
1835
|
+
format?: string | undefined;
|
|
1836
|
+
file?: any;
|
|
1837
|
+
refUid?: string | undefined;
|
|
1838
1838
|
}[];
|
|
1839
1839
|
query: {
|
|
1840
1840
|
value: string;
|
|
@@ -1843,53 +1843,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1843
1843
|
minimum?: number | undefined;
|
|
1844
1844
|
type?: string | undefined;
|
|
1845
1845
|
maximum?: number | undefined;
|
|
1846
|
-
description?: string | undefined;
|
|
1847
1846
|
default?: any;
|
|
1848
1847
|
required?: boolean | undefined;
|
|
1848
|
+
description?: string | undefined;
|
|
1849
1849
|
enum?: string[] | undefined;
|
|
1850
|
-
file?: File | undefined;
|
|
1851
|
-
refUid?: string | undefined;
|
|
1852
|
-
format?: string | undefined;
|
|
1853
1850
|
nullable?: boolean | undefined;
|
|
1851
|
+
format?: string | undefined;
|
|
1852
|
+
file?: any;
|
|
1853
|
+
refUid?: string | undefined;
|
|
1854
1854
|
}[];
|
|
1855
|
-
|
|
1855
|
+
headers: {
|
|
1856
1856
|
value: string;
|
|
1857
1857
|
key: string;
|
|
1858
1858
|
enabled: boolean;
|
|
1859
1859
|
minimum?: number | undefined;
|
|
1860
1860
|
type?: string | undefined;
|
|
1861
1861
|
maximum?: number | undefined;
|
|
1862
|
-
description?: string | undefined;
|
|
1863
1862
|
default?: any;
|
|
1864
1863
|
required?: boolean | undefined;
|
|
1864
|
+
description?: string | undefined;
|
|
1865
1865
|
enum?: string[] | undefined;
|
|
1866
|
-
file?: File | undefined;
|
|
1867
|
-
refUid?: string | undefined;
|
|
1868
|
-
format?: string | undefined;
|
|
1869
1866
|
nullable?: boolean | undefined;
|
|
1867
|
+
format?: string | undefined;
|
|
1868
|
+
file?: any;
|
|
1869
|
+
refUid?: string | undefined;
|
|
1870
1870
|
}[];
|
|
1871
|
-
|
|
1871
|
+
cookies: {
|
|
1872
1872
|
value: string;
|
|
1873
1873
|
key: string;
|
|
1874
1874
|
enabled: boolean;
|
|
1875
1875
|
minimum?: number | undefined;
|
|
1876
1876
|
type?: string | undefined;
|
|
1877
1877
|
maximum?: number | undefined;
|
|
1878
|
-
description?: string | undefined;
|
|
1879
1878
|
default?: any;
|
|
1880
1879
|
required?: boolean | undefined;
|
|
1880
|
+
description?: string | undefined;
|
|
1881
1881
|
enum?: string[] | undefined;
|
|
1882
|
-
file?: File | undefined;
|
|
1883
|
-
refUid?: string | undefined;
|
|
1884
|
-
format?: string | undefined;
|
|
1885
1882
|
nullable?: boolean | undefined;
|
|
1883
|
+
format?: string | undefined;
|
|
1884
|
+
file?: any;
|
|
1885
|
+
refUid?: string | undefined;
|
|
1886
1886
|
}[];
|
|
1887
1887
|
};
|
|
1888
1888
|
requestUid: string;
|
|
1889
1889
|
body: {
|
|
1890
1890
|
raw: {
|
|
1891
1891
|
value: string;
|
|
1892
|
-
encoding: "
|
|
1892
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1893
1893
|
};
|
|
1894
1894
|
formData: {
|
|
1895
1895
|
value: {
|
|
@@ -1899,14 +1899,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1899
1899
|
minimum?: number | undefined;
|
|
1900
1900
|
type?: string | undefined;
|
|
1901
1901
|
maximum?: number | undefined;
|
|
1902
|
-
description?: string | undefined;
|
|
1903
1902
|
default?: any;
|
|
1904
1903
|
required?: boolean | undefined;
|
|
1904
|
+
description?: string | undefined;
|
|
1905
1905
|
enum?: string[] | undefined;
|
|
1906
|
-
file?: File | undefined;
|
|
1907
|
-
refUid?: string | undefined;
|
|
1908
|
-
format?: string | undefined;
|
|
1909
1906
|
nullable?: boolean | undefined;
|
|
1907
|
+
format?: string | undefined;
|
|
1908
|
+
file?: any;
|
|
1909
|
+
refUid?: string | undefined;
|
|
1910
1910
|
}[];
|
|
1911
1911
|
encoding: "form-data" | "urlencoded";
|
|
1912
1912
|
};
|
|
@@ -1915,7 +1915,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1915
1915
|
};
|
|
1916
1916
|
auth: Record<string, any>;
|
|
1917
1917
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1918
|
-
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}.
|
|
1918
|
+
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" ? {
|
|
1919
1919
|
uid: string;
|
|
1920
1920
|
name: string;
|
|
1921
1921
|
url: string;
|
|
@@ -1927,14 +1927,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1927
1927
|
minimum?: number | undefined;
|
|
1928
1928
|
type?: string | undefined;
|
|
1929
1929
|
maximum?: number | undefined;
|
|
1930
|
-
description?: string | undefined;
|
|
1931
1930
|
default?: any;
|
|
1932
1931
|
required?: boolean | undefined;
|
|
1932
|
+
description?: string | undefined;
|
|
1933
1933
|
enum?: string[] | undefined;
|
|
1934
|
-
file?: File | undefined;
|
|
1935
|
-
refUid?: string | undefined;
|
|
1936
|
-
format?: string | undefined;
|
|
1937
1934
|
nullable?: boolean | undefined;
|
|
1935
|
+
format?: string | undefined;
|
|
1936
|
+
file?: any;
|
|
1937
|
+
refUid?: string | undefined;
|
|
1938
1938
|
}[];
|
|
1939
1939
|
query: {
|
|
1940
1940
|
value: string;
|
|
@@ -1943,53 +1943,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1943
1943
|
minimum?: number | undefined;
|
|
1944
1944
|
type?: string | undefined;
|
|
1945
1945
|
maximum?: number | undefined;
|
|
1946
|
-
description?: string | undefined;
|
|
1947
1946
|
default?: any;
|
|
1948
1947
|
required?: boolean | undefined;
|
|
1948
|
+
description?: string | undefined;
|
|
1949
1949
|
enum?: string[] | undefined;
|
|
1950
|
-
file?: File | undefined;
|
|
1951
|
-
refUid?: string | undefined;
|
|
1952
|
-
format?: string | undefined;
|
|
1953
1950
|
nullable?: boolean | undefined;
|
|
1951
|
+
format?: string | undefined;
|
|
1952
|
+
file?: any;
|
|
1953
|
+
refUid?: string | undefined;
|
|
1954
1954
|
}[];
|
|
1955
|
-
|
|
1955
|
+
headers: {
|
|
1956
1956
|
value: string;
|
|
1957
1957
|
key: string;
|
|
1958
1958
|
enabled: boolean;
|
|
1959
1959
|
minimum?: number | undefined;
|
|
1960
1960
|
type?: string | undefined;
|
|
1961
1961
|
maximum?: number | undefined;
|
|
1962
|
-
description?: string | undefined;
|
|
1963
1962
|
default?: any;
|
|
1964
1963
|
required?: boolean | undefined;
|
|
1964
|
+
description?: string | undefined;
|
|
1965
1965
|
enum?: string[] | undefined;
|
|
1966
|
-
file?: File | undefined;
|
|
1967
|
-
refUid?: string | undefined;
|
|
1968
|
-
format?: string | undefined;
|
|
1969
1966
|
nullable?: boolean | undefined;
|
|
1967
|
+
format?: string | undefined;
|
|
1968
|
+
file?: any;
|
|
1969
|
+
refUid?: string | undefined;
|
|
1970
1970
|
}[];
|
|
1971
|
-
|
|
1971
|
+
cookies: {
|
|
1972
1972
|
value: string;
|
|
1973
1973
|
key: string;
|
|
1974
1974
|
enabled: boolean;
|
|
1975
1975
|
minimum?: number | undefined;
|
|
1976
1976
|
type?: string | undefined;
|
|
1977
1977
|
maximum?: number | undefined;
|
|
1978
|
-
description?: string | undefined;
|
|
1979
1978
|
default?: any;
|
|
1980
1979
|
required?: boolean | undefined;
|
|
1980
|
+
description?: string | undefined;
|
|
1981
1981
|
enum?: string[] | undefined;
|
|
1982
|
-
file?: File | undefined;
|
|
1983
|
-
refUid?: string | undefined;
|
|
1984
|
-
format?: string | undefined;
|
|
1985
1982
|
nullable?: boolean | undefined;
|
|
1983
|
+
format?: string | undefined;
|
|
1984
|
+
file?: any;
|
|
1985
|
+
refUid?: string | undefined;
|
|
1986
1986
|
}[];
|
|
1987
1987
|
};
|
|
1988
1988
|
requestUid: string;
|
|
1989
1989
|
body: {
|
|
1990
1990
|
raw: {
|
|
1991
1991
|
value: string;
|
|
1992
|
-
encoding: "
|
|
1992
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1993
1993
|
};
|
|
1994
1994
|
formData: {
|
|
1995
1995
|
value: {
|
|
@@ -1999,14 +1999,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1999
1999
|
minimum?: number | undefined;
|
|
2000
2000
|
type?: string | undefined;
|
|
2001
2001
|
maximum?: number | undefined;
|
|
2002
|
-
description?: string | undefined;
|
|
2003
2002
|
default?: any;
|
|
2004
2003
|
required?: boolean | undefined;
|
|
2004
|
+
description?: string | undefined;
|
|
2005
2005
|
enum?: string[] | undefined;
|
|
2006
|
-
file?: File | undefined;
|
|
2007
|
-
refUid?: string | undefined;
|
|
2008
|
-
format?: string | undefined;
|
|
2009
2006
|
nullable?: boolean | undefined;
|
|
2007
|
+
format?: string | undefined;
|
|
2008
|
+
file?: any;
|
|
2009
|
+
refUid?: string | undefined;
|
|
2010
2010
|
}[];
|
|
2011
2011
|
encoding: "form-data" | "urlencoded";
|
|
2012
2012
|
};
|
|
@@ -2026,14 +2026,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2026
2026
|
minimum?: number | undefined;
|
|
2027
2027
|
type?: string | undefined;
|
|
2028
2028
|
maximum?: number | undefined;
|
|
2029
|
-
description?: string | undefined;
|
|
2030
2029
|
default?: any;
|
|
2031
2030
|
required?: boolean | undefined;
|
|
2031
|
+
description?: string | undefined;
|
|
2032
2032
|
enum?: string[] | undefined;
|
|
2033
|
-
file?: File | undefined;
|
|
2034
|
-
refUid?: string | undefined;
|
|
2035
|
-
format?: string | undefined;
|
|
2036
2033
|
nullable?: boolean | undefined;
|
|
2034
|
+
format?: string | undefined;
|
|
2035
|
+
file?: any;
|
|
2036
|
+
refUid?: string | undefined;
|
|
2037
2037
|
}[];
|
|
2038
2038
|
query: {
|
|
2039
2039
|
value: string;
|
|
@@ -2042,53 +2042,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2042
2042
|
minimum?: number | undefined;
|
|
2043
2043
|
type?: string | undefined;
|
|
2044
2044
|
maximum?: number | undefined;
|
|
2045
|
-
description?: string | undefined;
|
|
2046
2045
|
default?: any;
|
|
2047
2046
|
required?: boolean | undefined;
|
|
2047
|
+
description?: string | undefined;
|
|
2048
2048
|
enum?: string[] | undefined;
|
|
2049
|
-
file?: File | undefined;
|
|
2050
|
-
refUid?: string | undefined;
|
|
2051
|
-
format?: string | undefined;
|
|
2052
2049
|
nullable?: boolean | undefined;
|
|
2050
|
+
format?: string | undefined;
|
|
2051
|
+
file?: any;
|
|
2052
|
+
refUid?: string | undefined;
|
|
2053
2053
|
}[];
|
|
2054
|
-
|
|
2054
|
+
headers: {
|
|
2055
2055
|
value: string;
|
|
2056
2056
|
key: string;
|
|
2057
2057
|
enabled: boolean;
|
|
2058
2058
|
minimum?: number | undefined;
|
|
2059
2059
|
type?: string | undefined;
|
|
2060
2060
|
maximum?: number | undefined;
|
|
2061
|
-
description?: string | undefined;
|
|
2062
2061
|
default?: any;
|
|
2063
2062
|
required?: boolean | undefined;
|
|
2063
|
+
description?: string | undefined;
|
|
2064
2064
|
enum?: string[] | undefined;
|
|
2065
|
-
file?: File | undefined;
|
|
2066
|
-
refUid?: string | undefined;
|
|
2067
|
-
format?: string | undefined;
|
|
2068
2065
|
nullable?: boolean | undefined;
|
|
2066
|
+
format?: string | undefined;
|
|
2067
|
+
file?: any;
|
|
2068
|
+
refUid?: string | undefined;
|
|
2069
2069
|
}[];
|
|
2070
|
-
|
|
2070
|
+
cookies: {
|
|
2071
2071
|
value: string;
|
|
2072
2072
|
key: string;
|
|
2073
2073
|
enabled: boolean;
|
|
2074
2074
|
minimum?: number | undefined;
|
|
2075
2075
|
type?: string | undefined;
|
|
2076
2076
|
maximum?: number | undefined;
|
|
2077
|
-
description?: string | undefined;
|
|
2078
2077
|
default?: any;
|
|
2079
2078
|
required?: boolean | undefined;
|
|
2079
|
+
description?: string | undefined;
|
|
2080
2080
|
enum?: string[] | undefined;
|
|
2081
|
-
file?: File | undefined;
|
|
2082
|
-
refUid?: string | undefined;
|
|
2083
|
-
format?: string | undefined;
|
|
2084
2081
|
nullable?: boolean | undefined;
|
|
2082
|
+
format?: string | undefined;
|
|
2083
|
+
file?: any;
|
|
2084
|
+
refUid?: string | undefined;
|
|
2085
2085
|
}[];
|
|
2086
2086
|
};
|
|
2087
2087
|
requestUid: string;
|
|
2088
2088
|
body: {
|
|
2089
2089
|
raw: {
|
|
2090
2090
|
value: string;
|
|
2091
|
-
encoding: "
|
|
2091
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2092
2092
|
};
|
|
2093
2093
|
formData: {
|
|
2094
2094
|
value: {
|
|
@@ -2098,14 +2098,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2098
2098
|
minimum?: number | undefined;
|
|
2099
2099
|
type?: string | undefined;
|
|
2100
2100
|
maximum?: number | undefined;
|
|
2101
|
-
description?: string | undefined;
|
|
2102
2101
|
default?: any;
|
|
2103
2102
|
required?: boolean | undefined;
|
|
2103
|
+
description?: string | undefined;
|
|
2104
2104
|
enum?: string[] | undefined;
|
|
2105
|
-
file?: File | undefined;
|
|
2106
|
-
refUid?: string | undefined;
|
|
2107
|
-
format?: string | undefined;
|
|
2108
2105
|
nullable?: boolean | undefined;
|
|
2106
|
+
format?: string | undefined;
|
|
2107
|
+
file?: any;
|
|
2108
|
+
refUid?: string | undefined;
|
|
2109
2109
|
}[];
|
|
2110
2110
|
encoding: "form-data" | "urlencoded";
|
|
2111
2111
|
};
|
|
@@ -2125,14 +2125,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2125
2125
|
minimum?: number | undefined;
|
|
2126
2126
|
type?: string | undefined;
|
|
2127
2127
|
maximum?: number | undefined;
|
|
2128
|
-
description?: string | undefined;
|
|
2129
2128
|
default?: any;
|
|
2130
2129
|
required?: boolean | undefined;
|
|
2130
|
+
description?: string | undefined;
|
|
2131
2131
|
enum?: string[] | undefined;
|
|
2132
|
-
file?: File | undefined;
|
|
2133
|
-
refUid?: string | undefined;
|
|
2134
|
-
format?: string | undefined;
|
|
2135
2132
|
nullable?: boolean | undefined;
|
|
2133
|
+
format?: string | undefined;
|
|
2134
|
+
file?: any;
|
|
2135
|
+
refUid?: string | undefined;
|
|
2136
2136
|
}[];
|
|
2137
2137
|
query: {
|
|
2138
2138
|
value: string;
|
|
@@ -2141,53 +2141,53 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2141
2141
|
minimum?: number | undefined;
|
|
2142
2142
|
type?: string | undefined;
|
|
2143
2143
|
maximum?: number | undefined;
|
|
2144
|
-
description?: string | undefined;
|
|
2145
2144
|
default?: any;
|
|
2146
2145
|
required?: boolean | undefined;
|
|
2146
|
+
description?: string | undefined;
|
|
2147
2147
|
enum?: string[] | undefined;
|
|
2148
|
-
file?: File | undefined;
|
|
2149
|
-
refUid?: string | undefined;
|
|
2150
|
-
format?: string | undefined;
|
|
2151
2148
|
nullable?: boolean | undefined;
|
|
2149
|
+
format?: string | undefined;
|
|
2150
|
+
file?: any;
|
|
2151
|
+
refUid?: string | undefined;
|
|
2152
2152
|
}[];
|
|
2153
|
-
|
|
2153
|
+
headers: {
|
|
2154
2154
|
value: string;
|
|
2155
2155
|
key: string;
|
|
2156
2156
|
enabled: boolean;
|
|
2157
2157
|
minimum?: number | undefined;
|
|
2158
2158
|
type?: string | undefined;
|
|
2159
2159
|
maximum?: number | undefined;
|
|
2160
|
-
description?: string | undefined;
|
|
2161
2160
|
default?: any;
|
|
2162
2161
|
required?: boolean | undefined;
|
|
2162
|
+
description?: string | undefined;
|
|
2163
2163
|
enum?: string[] | undefined;
|
|
2164
|
-
file?: File | undefined;
|
|
2165
|
-
refUid?: string | undefined;
|
|
2166
|
-
format?: string | undefined;
|
|
2167
2164
|
nullable?: boolean | undefined;
|
|
2165
|
+
format?: string | undefined;
|
|
2166
|
+
file?: any;
|
|
2167
|
+
refUid?: string | undefined;
|
|
2168
2168
|
}[];
|
|
2169
|
-
|
|
2169
|
+
cookies: {
|
|
2170
2170
|
value: string;
|
|
2171
2171
|
key: string;
|
|
2172
2172
|
enabled: boolean;
|
|
2173
2173
|
minimum?: number | undefined;
|
|
2174
2174
|
type?: string | undefined;
|
|
2175
2175
|
maximum?: number | undefined;
|
|
2176
|
-
description?: string | undefined;
|
|
2177
2176
|
default?: any;
|
|
2178
2177
|
required?: boolean | undefined;
|
|
2178
|
+
description?: string | undefined;
|
|
2179
2179
|
enum?: string[] | undefined;
|
|
2180
|
-
file?: File | undefined;
|
|
2181
|
-
refUid?: string | undefined;
|
|
2182
|
-
format?: string | undefined;
|
|
2183
2180
|
nullable?: boolean | undefined;
|
|
2181
|
+
format?: string | undefined;
|
|
2182
|
+
file?: any;
|
|
2183
|
+
refUid?: string | undefined;
|
|
2184
2184
|
}[];
|
|
2185
2185
|
};
|
|
2186
2186
|
requestUid: string;
|
|
2187
2187
|
body: {
|
|
2188
2188
|
raw: {
|
|
2189
2189
|
value: string;
|
|
2190
|
-
encoding: "
|
|
2190
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2191
2191
|
};
|
|
2192
2192
|
formData: {
|
|
2193
2193
|
value: {
|
|
@@ -2197,14 +2197,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2197
2197
|
minimum?: number | undefined;
|
|
2198
2198
|
type?: string | undefined;
|
|
2199
2199
|
maximum?: number | undefined;
|
|
2200
|
-
description?: string | undefined;
|
|
2201
2200
|
default?: any;
|
|
2202
2201
|
required?: boolean | undefined;
|
|
2202
|
+
description?: string | undefined;
|
|
2203
2203
|
enum?: string[] | undefined;
|
|
2204
|
-
file?: File | undefined;
|
|
2205
|
-
refUid?: string | undefined;
|
|
2206
|
-
format?: string | undefined;
|
|
2207
2204
|
nullable?: boolean | undefined;
|
|
2205
|
+
format?: string | undefined;
|
|
2206
|
+
file?: any;
|
|
2207
|
+
refUid?: string | undefined;
|
|
2208
2208
|
}[];
|
|
2209
2209
|
encoding: "form-data" | "urlencoded";
|
|
2210
2210
|
};
|
|
@@ -2223,8 +2223,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2223
2223
|
type: "apiKey";
|
|
2224
2224
|
value: string;
|
|
2225
2225
|
uid: string;
|
|
2226
|
-
nameKey: string;
|
|
2227
2226
|
name: string;
|
|
2227
|
+
nameKey: string;
|
|
2228
2228
|
in: "query" | "header" | "cookie";
|
|
2229
2229
|
description?: string | undefined;
|
|
2230
2230
|
} | {
|
|
@@ -2292,8 +2292,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2292
2292
|
type: "apiKey";
|
|
2293
2293
|
value: string;
|
|
2294
2294
|
uid: string;
|
|
2295
|
-
nameKey: string;
|
|
2296
2295
|
name: string;
|
|
2296
|
+
nameKey: string;
|
|
2297
2297
|
in: "query" | "header" | "cookie";
|
|
2298
2298
|
description?: string | undefined;
|
|
2299
2299
|
} | {
|
|
@@ -2355,28 +2355,28 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2355
2355
|
openIdConnectUrl: string;
|
|
2356
2356
|
description?: string | undefined;
|
|
2357
2357
|
}) => void;
|
|
2358
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2358
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
|
|
2359
2359
|
type: "apiKey";
|
|
2360
2360
|
value: string;
|
|
2361
2361
|
uid: string;
|
|
2362
|
-
nameKey: string;
|
|
2363
2362
|
name: string;
|
|
2363
|
+
nameKey: string;
|
|
2364
2364
|
in: "query" | "header" | "cookie";
|
|
2365
2365
|
description?: string | undefined;
|
|
2366
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2366
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2367
2367
|
type: "apiKey";
|
|
2368
2368
|
value: string;
|
|
2369
2369
|
uid: string;
|
|
2370
|
-
nameKey: string;
|
|
2371
2370
|
name: string;
|
|
2371
|
+
nameKey: string;
|
|
2372
2372
|
in: "query" | "header" | "cookie";
|
|
2373
2373
|
description?: string | undefined;
|
|
2374
2374
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2375
2375
|
type: "apiKey";
|
|
2376
2376
|
value: string;
|
|
2377
2377
|
uid: string;
|
|
2378
|
-
nameKey: string;
|
|
2379
2378
|
name: string;
|
|
2379
|
+
nameKey: string;
|
|
2380
2380
|
in: "query" | "header" | "cookie";
|
|
2381
2381
|
description?: string | undefined;
|
|
2382
2382
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -2554,28 +2554,28 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2554
2554
|
openIdConnectUrl: string;
|
|
2555
2555
|
description?: string | undefined;
|
|
2556
2556
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2557
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2557
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
|
|
2558
2558
|
type: "apiKey";
|
|
2559
2559
|
value: string;
|
|
2560
2560
|
uid: string;
|
|
2561
|
-
nameKey: string;
|
|
2562
2561
|
name: string;
|
|
2562
|
+
nameKey: string;
|
|
2563
2563
|
in: "query" | "header" | "cookie";
|
|
2564
2564
|
description?: string | undefined;
|
|
2565
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2565
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2566
2566
|
type: "apiKey";
|
|
2567
2567
|
value: string;
|
|
2568
2568
|
uid: string;
|
|
2569
|
-
nameKey: string;
|
|
2570
2569
|
name: string;
|
|
2570
|
+
nameKey: string;
|
|
2571
2571
|
in: "query" | "header" | "cookie";
|
|
2572
2572
|
description?: string | undefined;
|
|
2573
2573
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2574
2574
|
type: "apiKey";
|
|
2575
2575
|
value: string;
|
|
2576
2576
|
uid: string;
|
|
2577
|
-
nameKey: string;
|
|
2578
2577
|
name: string;
|
|
2578
|
+
nameKey: string;
|
|
2579
2579
|
in: "query" | "header" | "cookie";
|
|
2580
2580
|
description?: string | undefined;
|
|
2581
2581
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -2763,8 +2763,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2763
2763
|
url: string;
|
|
2764
2764
|
description?: string | undefined;
|
|
2765
2765
|
variables?: Record<string, {
|
|
2766
|
-
uid: string;
|
|
2767
2766
|
default: string;
|
|
2767
|
+
uid: string;
|
|
2768
2768
|
value?: string | undefined;
|
|
2769
2769
|
description?: string | undefined;
|
|
2770
2770
|
enum?: string[] | undefined;
|
|
@@ -2777,8 +2777,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2777
2777
|
url: string;
|
|
2778
2778
|
description?: string | undefined;
|
|
2779
2779
|
variables?: Record<string, {
|
|
2780
|
-
uid: string;
|
|
2781
2780
|
default: string;
|
|
2781
|
+
uid: string;
|
|
2782
2782
|
value?: string | undefined;
|
|
2783
2783
|
description?: string | undefined;
|
|
2784
2784
|
enum?: string[] | undefined;
|
|
@@ -2789,8 +2789,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2789
2789
|
url: string;
|
|
2790
2790
|
description?: string | undefined;
|
|
2791
2791
|
variables?: Record<string, {
|
|
2792
|
-
uid: string;
|
|
2793
2792
|
default: string;
|
|
2793
|
+
uid: string;
|
|
2794
2794
|
value?: string | undefined;
|
|
2795
2795
|
description?: string | undefined;
|
|
2796
2796
|
enum?: string[] | undefined;
|
|
@@ -2800,8 +2800,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2800
2800
|
url: string;
|
|
2801
2801
|
description?: string | undefined;
|
|
2802
2802
|
variables?: Record<string, {
|
|
2803
|
-
uid: string;
|
|
2804
2803
|
default: string;
|
|
2804
|
+
uid: string;
|
|
2805
2805
|
value?: string | undefined;
|
|
2806
2806
|
description?: string | undefined;
|
|
2807
2807
|
enum?: string[] | undefined;
|
|
@@ -2811,8 +2811,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2811
2811
|
url: string;
|
|
2812
2812
|
description?: string | undefined;
|
|
2813
2813
|
variables?: Record<string, {
|
|
2814
|
-
uid: string;
|
|
2815
2814
|
default: string;
|
|
2815
|
+
uid: string;
|
|
2816
2816
|
value?: string | undefined;
|
|
2817
2817
|
description?: string | undefined;
|
|
2818
2818
|
enum?: string[] | undefined;
|
|
@@ -2823,8 +2823,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2823
2823
|
url: string;
|
|
2824
2824
|
description?: string | undefined;
|
|
2825
2825
|
variables?: Record<string, {
|
|
2826
|
-
uid: string;
|
|
2827
2826
|
default: string;
|
|
2827
|
+
uid: string;
|
|
2828
2828
|
value?: string | undefined;
|
|
2829
2829
|
description?: string | undefined;
|
|
2830
2830
|
enum?: string[] | undefined;
|
|
@@ -2834,8 +2834,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2834
2834
|
url: string;
|
|
2835
2835
|
description?: string | undefined;
|
|
2836
2836
|
variables?: Record<string, {
|
|
2837
|
-
uid: string;
|
|
2838
2837
|
default: string;
|
|
2838
|
+
uid: string;
|
|
2839
2839
|
value?: string | undefined;
|
|
2840
2840
|
description?: string | undefined;
|
|
2841
2841
|
enum?: string[] | undefined;
|
|
@@ -2845,8 +2845,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2845
2845
|
url: string;
|
|
2846
2846
|
description?: string | undefined;
|
|
2847
2847
|
variables?: Record<string, {
|
|
2848
|
-
uid: string;
|
|
2849
2848
|
default: string;
|
|
2849
|
+
uid: string;
|
|
2850
2850
|
value?: string | undefined;
|
|
2851
2851
|
description?: string | undefined;
|
|
2852
2852
|
enum?: string[] | undefined;
|
|
@@ -2859,36 +2859,36 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2859
2859
|
workspaceMutators: {
|
|
2860
2860
|
rawAdd: (item: {
|
|
2861
2861
|
uid: string;
|
|
2862
|
-
description: string;
|
|
2863
2862
|
name: string;
|
|
2863
|
+
description: string;
|
|
2864
2864
|
isReadOnly: boolean;
|
|
2865
2865
|
collectionUids: string[];
|
|
2866
2866
|
environmentUids: string[];
|
|
2867
2867
|
cookieUids: string[];
|
|
2868
2868
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2869
2869
|
hotKeyConfig?: {
|
|
2870
|
-
modifiers: ("
|
|
2871
|
-
hotKeys?: Partial<Record<"" | "
|
|
2870
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2871
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2872
2872
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2873
|
-
modifiers?: ("
|
|
2873
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2874
2874
|
}>> | undefined;
|
|
2875
2875
|
} | undefined;
|
|
2876
2876
|
proxyUrl?: string | undefined;
|
|
2877
2877
|
}) => void;
|
|
2878
2878
|
add: (payload?: import("@scalar/oas-utils/entities/workspace").WorkspacePayload) => {
|
|
2879
2879
|
uid: string;
|
|
2880
|
-
description: string;
|
|
2881
2880
|
name: string;
|
|
2881
|
+
description: string;
|
|
2882
2882
|
isReadOnly: boolean;
|
|
2883
2883
|
collectionUids: string[];
|
|
2884
2884
|
environmentUids: string[];
|
|
2885
2885
|
cookieUids: string[];
|
|
2886
2886
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2887
2887
|
hotKeyConfig?: {
|
|
2888
|
-
modifiers: ("
|
|
2889
|
-
hotKeys?: Partial<Record<"" | "
|
|
2888
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2889
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2890
2890
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2891
|
-
modifiers?: ("
|
|
2891
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2892
2892
|
}>> | undefined;
|
|
2893
2893
|
} | undefined;
|
|
2894
2894
|
proxyUrl?: string | undefined;
|
|
@@ -2897,122 +2897,122 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2897
2897
|
rename: (uid: string, newName: string) => void;
|
|
2898
2898
|
set: (item: {
|
|
2899
2899
|
uid: string;
|
|
2900
|
-
description: string;
|
|
2901
2900
|
name: string;
|
|
2901
|
+
description: string;
|
|
2902
2902
|
isReadOnly: boolean;
|
|
2903
2903
|
collectionUids: string[];
|
|
2904
2904
|
environmentUids: string[];
|
|
2905
2905
|
cookieUids: string[];
|
|
2906
2906
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2907
2907
|
hotKeyConfig?: {
|
|
2908
|
-
modifiers: ("
|
|
2909
|
-
hotKeys?: Partial<Record<"" | "
|
|
2908
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2909
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2910
2910
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2911
|
-
modifiers?: ("
|
|
2911
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2912
2912
|
}>> | undefined;
|
|
2913
2913
|
} | undefined;
|
|
2914
2914
|
proxyUrl?: string | undefined;
|
|
2915
2915
|
}) => void;
|
|
2916
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2916
|
+
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" ? {
|
|
2917
2917
|
uid: string;
|
|
2918
|
-
description: string;
|
|
2919
2918
|
name: string;
|
|
2919
|
+
description: string;
|
|
2920
2920
|
isReadOnly: boolean;
|
|
2921
2921
|
collectionUids: string[];
|
|
2922
2922
|
environmentUids: string[];
|
|
2923
2923
|
cookieUids: string[];
|
|
2924
2924
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2925
2925
|
hotKeyConfig?: {
|
|
2926
|
-
modifiers: ("
|
|
2927
|
-
hotKeys?: Partial<Record<"" | "
|
|
2926
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2927
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2928
2928
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2929
|
-
modifiers?: ("
|
|
2929
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2930
2930
|
}>> | undefined;
|
|
2931
2931
|
} | undefined;
|
|
2932
2932
|
proxyUrl?: string | undefined;
|
|
2933
2933
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2934
2934
|
uid: string;
|
|
2935
|
-
description: string;
|
|
2936
2935
|
name: string;
|
|
2936
|
+
description: string;
|
|
2937
2937
|
isReadOnly: boolean;
|
|
2938
2938
|
collectionUids: string[];
|
|
2939
2939
|
environmentUids: string[];
|
|
2940
2940
|
cookieUids: string[];
|
|
2941
2941
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2942
2942
|
hotKeyConfig?: {
|
|
2943
|
-
modifiers: ("
|
|
2944
|
-
hotKeys?: Partial<Record<"" | "
|
|
2943
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2944
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2945
2945
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2946
|
-
modifiers?: ("
|
|
2946
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2947
2947
|
}>> | undefined;
|
|
2948
2948
|
} | undefined;
|
|
2949
2949
|
proxyUrl?: string | undefined;
|
|
2950
2950
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2951
2951
|
uid: string;
|
|
2952
|
-
description: string;
|
|
2953
2952
|
name: string;
|
|
2953
|
+
description: string;
|
|
2954
2954
|
isReadOnly: boolean;
|
|
2955
2955
|
collectionUids: string[];
|
|
2956
2956
|
environmentUids: string[];
|
|
2957
2957
|
cookieUids: string[];
|
|
2958
2958
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2959
2959
|
hotKeyConfig?: {
|
|
2960
|
-
modifiers: ("
|
|
2961
|
-
hotKeys?: Partial<Record<"" | "
|
|
2960
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2961
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2962
2962
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2963
|
-
modifiers?: ("
|
|
2963
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2964
2964
|
}>> | undefined;
|
|
2965
2965
|
} | undefined;
|
|
2966
2966
|
proxyUrl?: string | undefined;
|
|
2967
2967
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2968
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2968
|
+
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" ? {
|
|
2969
2969
|
uid: string;
|
|
2970
|
-
description: string;
|
|
2971
2970
|
name: string;
|
|
2971
|
+
description: string;
|
|
2972
2972
|
isReadOnly: boolean;
|
|
2973
2973
|
collectionUids: string[];
|
|
2974
2974
|
environmentUids: string[];
|
|
2975
2975
|
cookieUids: string[];
|
|
2976
2976
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2977
2977
|
hotKeyConfig?: {
|
|
2978
|
-
modifiers: ("
|
|
2979
|
-
hotKeys?: Partial<Record<"" | "
|
|
2978
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2979
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2980
2980
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2981
|
-
modifiers?: ("
|
|
2981
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2982
2982
|
}>> | undefined;
|
|
2983
2983
|
} | undefined;
|
|
2984
2984
|
proxyUrl?: string | undefined;
|
|
2985
2985
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2986
2986
|
uid: string;
|
|
2987
|
-
description: string;
|
|
2988
2987
|
name: string;
|
|
2988
|
+
description: string;
|
|
2989
2989
|
isReadOnly: boolean;
|
|
2990
2990
|
collectionUids: string[];
|
|
2991
2991
|
environmentUids: string[];
|
|
2992
2992
|
cookieUids: string[];
|
|
2993
2993
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2994
2994
|
hotKeyConfig?: {
|
|
2995
|
-
modifiers: ("
|
|
2996
|
-
hotKeys?: Partial<Record<"" | "
|
|
2995
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2996
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2997
2997
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2998
|
-
modifiers?: ("
|
|
2998
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2999
2999
|
}>> | undefined;
|
|
3000
3000
|
} | undefined;
|
|
3001
3001
|
proxyUrl?: string | undefined;
|
|
3002
3002
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
3003
3003
|
uid: string;
|
|
3004
|
-
description: string;
|
|
3005
3004
|
name: string;
|
|
3005
|
+
description: string;
|
|
3006
3006
|
isReadOnly: boolean;
|
|
3007
3007
|
collectionUids: string[];
|
|
3008
3008
|
environmentUids: string[];
|
|
3009
3009
|
cookieUids: string[];
|
|
3010
3010
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3011
3011
|
hotKeyConfig?: {
|
|
3012
|
-
modifiers: ("
|
|
3013
|
-
hotKeys?: Partial<Record<"" | "
|
|
3012
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
3013
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
3014
3014
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
3015
|
-
modifiers?: ("
|
|
3015
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
3016
3016
|
}>> | undefined;
|
|
3017
3017
|
} | undefined;
|
|
3018
3018
|
proxyUrl?: string | undefined;
|