@scalar/api-client 2.0.51 → 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 +23 -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/dist/style.css +1 -1
- package/package.json +8 -7
|
@@ -6,8 +6,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
6
6
|
app: import("vue").App<Element>;
|
|
7
7
|
updateConfig(newConfig: ClientConfiguration, mergeConfigs?: boolean): void;
|
|
8
8
|
updateServerUrl: (serverUrl: string) => void;
|
|
9
|
-
updateAuth: (auth: import("@scalar/
|
|
10
|
-
updateSpec: (spec: import("@scalar/
|
|
9
|
+
updateAuth: (auth: import("@scalar/types/legacy").AuthenticationState) => void;
|
|
10
|
+
updateSpec: (spec: import("@scalar/types/legacy").SpecConfiguration) => Promise<void>;
|
|
11
11
|
route: (params: import("../../libs/index.js").OpenClientPayload) => void;
|
|
12
12
|
open: (payload?: import("../../libs/index.js").OpenClientPayload) => void;
|
|
13
13
|
mount: (mountingEl?: HTMLElement | null) => void;
|
|
@@ -19,18 +19,18 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
19
19
|
store: {
|
|
20
20
|
workspaces: Record<string, {
|
|
21
21
|
uid: string;
|
|
22
|
-
description: string;
|
|
23
22
|
name: string;
|
|
23
|
+
description: string;
|
|
24
24
|
isReadOnly: boolean;
|
|
25
25
|
collectionUids: string[];
|
|
26
26
|
environmentUids: string[];
|
|
27
27
|
cookieUids: string[];
|
|
28
28
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
29
29
|
hotKeyConfig?: {
|
|
30
|
-
modifiers: ("
|
|
31
|
-
hotKeys?: Partial<Record<"" | "
|
|
30
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
31
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
32
32
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
33
|
-
modifiers?: ("
|
|
33
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
34
34
|
}>> | undefined;
|
|
35
35
|
} | undefined;
|
|
36
36
|
proxyUrl?: string | undefined;
|
|
@@ -117,14 +117,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
117
117
|
minimum?: number | undefined;
|
|
118
118
|
type?: string | undefined;
|
|
119
119
|
maximum?: number | undefined;
|
|
120
|
-
description?: string | undefined;
|
|
121
120
|
default?: any;
|
|
122
121
|
required?: boolean | undefined;
|
|
122
|
+
description?: string | undefined;
|
|
123
123
|
enum?: string[] | undefined;
|
|
124
|
-
file?: File | undefined;
|
|
125
|
-
refUid?: string | undefined;
|
|
126
|
-
format?: string | undefined;
|
|
127
124
|
nullable?: boolean | undefined;
|
|
125
|
+
format?: string | undefined;
|
|
126
|
+
file?: any;
|
|
127
|
+
refUid?: string | undefined;
|
|
128
128
|
}[];
|
|
129
129
|
query: {
|
|
130
130
|
value: string;
|
|
@@ -133,53 +133,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
133
133
|
minimum?: number | undefined;
|
|
134
134
|
type?: string | undefined;
|
|
135
135
|
maximum?: number | undefined;
|
|
136
|
-
description?: string | undefined;
|
|
137
136
|
default?: any;
|
|
138
137
|
required?: boolean | undefined;
|
|
138
|
+
description?: string | undefined;
|
|
139
139
|
enum?: string[] | undefined;
|
|
140
|
-
file?: File | undefined;
|
|
141
|
-
refUid?: string | undefined;
|
|
142
|
-
format?: string | undefined;
|
|
143
140
|
nullable?: boolean | undefined;
|
|
141
|
+
format?: string | undefined;
|
|
142
|
+
file?: any;
|
|
143
|
+
refUid?: string | undefined;
|
|
144
144
|
}[];
|
|
145
|
-
|
|
145
|
+
headers: {
|
|
146
146
|
value: string;
|
|
147
147
|
key: string;
|
|
148
148
|
enabled: boolean;
|
|
149
149
|
minimum?: number | undefined;
|
|
150
150
|
type?: string | undefined;
|
|
151
151
|
maximum?: number | undefined;
|
|
152
|
-
description?: string | undefined;
|
|
153
152
|
default?: any;
|
|
154
153
|
required?: boolean | undefined;
|
|
154
|
+
description?: string | undefined;
|
|
155
155
|
enum?: string[] | undefined;
|
|
156
|
-
file?: File | undefined;
|
|
157
|
-
refUid?: string | undefined;
|
|
158
|
-
format?: string | undefined;
|
|
159
156
|
nullable?: boolean | undefined;
|
|
157
|
+
format?: string | undefined;
|
|
158
|
+
file?: any;
|
|
159
|
+
refUid?: string | undefined;
|
|
160
160
|
}[];
|
|
161
|
-
|
|
161
|
+
cookies: {
|
|
162
162
|
value: string;
|
|
163
163
|
key: string;
|
|
164
164
|
enabled: boolean;
|
|
165
165
|
minimum?: number | undefined;
|
|
166
166
|
type?: string | undefined;
|
|
167
167
|
maximum?: number | undefined;
|
|
168
|
-
description?: string | undefined;
|
|
169
168
|
default?: any;
|
|
170
169
|
required?: boolean | undefined;
|
|
170
|
+
description?: string | undefined;
|
|
171
171
|
enum?: string[] | undefined;
|
|
172
|
-
file?: File | undefined;
|
|
173
|
-
refUid?: string | undefined;
|
|
174
|
-
format?: string | undefined;
|
|
175
172
|
nullable?: boolean | undefined;
|
|
173
|
+
format?: string | undefined;
|
|
174
|
+
file?: any;
|
|
175
|
+
refUid?: string | undefined;
|
|
176
176
|
}[];
|
|
177
177
|
};
|
|
178
178
|
requestUid: string;
|
|
179
179
|
body: {
|
|
180
180
|
raw: {
|
|
181
181
|
value: string;
|
|
182
|
-
encoding: "
|
|
182
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
183
183
|
};
|
|
184
184
|
formData: {
|
|
185
185
|
value: {
|
|
@@ -189,14 +189,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
189
189
|
minimum?: number | undefined;
|
|
190
190
|
type?: string | undefined;
|
|
191
191
|
maximum?: number | undefined;
|
|
192
|
-
description?: string | undefined;
|
|
193
192
|
default?: any;
|
|
194
193
|
required?: boolean | undefined;
|
|
194
|
+
description?: string | undefined;
|
|
195
195
|
enum?: string[] | undefined;
|
|
196
|
-
file?: File | undefined;
|
|
197
|
-
refUid?: string | undefined;
|
|
198
|
-
format?: string | undefined;
|
|
199
196
|
nullable?: boolean | undefined;
|
|
197
|
+
format?: string | undefined;
|
|
198
|
+
file?: any;
|
|
199
|
+
refUid?: string | undefined;
|
|
200
200
|
}[];
|
|
201
201
|
encoding: "form-data" | "urlencoded";
|
|
202
202
|
};
|
|
@@ -211,8 +211,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
211
211
|
url: string;
|
|
212
212
|
description?: string | undefined;
|
|
213
213
|
variables?: Record<string, {
|
|
214
|
-
uid: string;
|
|
215
214
|
default: string;
|
|
215
|
+
uid: string;
|
|
216
216
|
value?: string | undefined;
|
|
217
217
|
description?: string | undefined;
|
|
218
218
|
enum?: string[] | undefined;
|
|
@@ -222,8 +222,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
222
222
|
type: "apiKey";
|
|
223
223
|
value: string;
|
|
224
224
|
uid: string;
|
|
225
|
-
nameKey: string;
|
|
226
225
|
name: string;
|
|
226
|
+
nameKey: string;
|
|
227
227
|
in: "query" | "header" | "cookie";
|
|
228
228
|
description?: string | undefined;
|
|
229
229
|
} | {
|
|
@@ -338,14 +338,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
338
338
|
minimum?: number | undefined;
|
|
339
339
|
type?: string | undefined;
|
|
340
340
|
maximum?: number | undefined;
|
|
341
|
-
description?: string | undefined;
|
|
342
341
|
default?: any;
|
|
343
342
|
required?: boolean | undefined;
|
|
343
|
+
description?: string | undefined;
|
|
344
344
|
enum?: string[] | undefined;
|
|
345
|
-
file?: File | undefined;
|
|
346
|
-
refUid?: string | undefined;
|
|
347
|
-
format?: string | undefined;
|
|
348
345
|
nullable?: boolean | undefined;
|
|
346
|
+
format?: string | undefined;
|
|
347
|
+
file?: any;
|
|
348
|
+
refUid?: string | undefined;
|
|
349
349
|
}[];
|
|
350
350
|
query: {
|
|
351
351
|
value: string;
|
|
@@ -354,53 +354,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
354
354
|
minimum?: number | undefined;
|
|
355
355
|
type?: string | undefined;
|
|
356
356
|
maximum?: number | undefined;
|
|
357
|
-
description?: string | undefined;
|
|
358
357
|
default?: any;
|
|
359
358
|
required?: boolean | undefined;
|
|
359
|
+
description?: string | undefined;
|
|
360
360
|
enum?: string[] | undefined;
|
|
361
|
-
file?: File | undefined;
|
|
362
|
-
refUid?: string | undefined;
|
|
363
|
-
format?: string | undefined;
|
|
364
361
|
nullable?: boolean | undefined;
|
|
362
|
+
format?: string | undefined;
|
|
363
|
+
file?: any;
|
|
364
|
+
refUid?: string | undefined;
|
|
365
365
|
}[];
|
|
366
|
-
|
|
366
|
+
headers: {
|
|
367
367
|
value: string;
|
|
368
368
|
key: string;
|
|
369
369
|
enabled: boolean;
|
|
370
370
|
minimum?: number | undefined;
|
|
371
371
|
type?: string | undefined;
|
|
372
372
|
maximum?: number | undefined;
|
|
373
|
-
description?: string | undefined;
|
|
374
373
|
default?: any;
|
|
375
374
|
required?: boolean | undefined;
|
|
375
|
+
description?: string | undefined;
|
|
376
376
|
enum?: string[] | undefined;
|
|
377
|
-
file?: File | undefined;
|
|
378
|
-
refUid?: string | undefined;
|
|
379
|
-
format?: string | undefined;
|
|
380
377
|
nullable?: boolean | undefined;
|
|
378
|
+
format?: string | undefined;
|
|
379
|
+
file?: any;
|
|
380
|
+
refUid?: string | undefined;
|
|
381
381
|
}[];
|
|
382
|
-
|
|
382
|
+
cookies: {
|
|
383
383
|
value: string;
|
|
384
384
|
key: string;
|
|
385
385
|
enabled: boolean;
|
|
386
386
|
minimum?: number | undefined;
|
|
387
387
|
type?: string | undefined;
|
|
388
388
|
maximum?: number | undefined;
|
|
389
|
-
description?: string | undefined;
|
|
390
389
|
default?: any;
|
|
391
390
|
required?: boolean | undefined;
|
|
391
|
+
description?: string | undefined;
|
|
392
392
|
enum?: string[] | undefined;
|
|
393
|
-
file?: File | undefined;
|
|
394
|
-
refUid?: string | undefined;
|
|
395
|
-
format?: string | undefined;
|
|
396
393
|
nullable?: boolean | undefined;
|
|
394
|
+
format?: string | undefined;
|
|
395
|
+
file?: any;
|
|
396
|
+
refUid?: string | undefined;
|
|
397
397
|
}[];
|
|
398
398
|
};
|
|
399
399
|
requestUid: string;
|
|
400
400
|
body: {
|
|
401
401
|
raw: {
|
|
402
402
|
value: string;
|
|
403
|
-
encoding: "
|
|
403
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
404
404
|
};
|
|
405
405
|
formData: {
|
|
406
406
|
value: {
|
|
@@ -410,14 +410,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
410
410
|
minimum?: number | undefined;
|
|
411
411
|
type?: string | undefined;
|
|
412
412
|
maximum?: number | undefined;
|
|
413
|
-
description?: string | undefined;
|
|
414
413
|
default?: any;
|
|
415
414
|
required?: boolean | undefined;
|
|
415
|
+
description?: string | undefined;
|
|
416
416
|
enum?: string[] | undefined;
|
|
417
|
-
file?: File | undefined;
|
|
418
|
-
refUid?: string | undefined;
|
|
419
|
-
format?: string | undefined;
|
|
420
417
|
nullable?: boolean | undefined;
|
|
418
|
+
format?: string | undefined;
|
|
419
|
+
file?: any;
|
|
420
|
+
refUid?: string | undefined;
|
|
421
421
|
}[];
|
|
422
422
|
encoding: "form-data" | "urlencoded";
|
|
423
423
|
};
|
|
@@ -442,8 +442,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
442
442
|
type: "apiKey";
|
|
443
443
|
value: string;
|
|
444
444
|
uid: string;
|
|
445
|
-
nameKey: string;
|
|
446
445
|
name: string;
|
|
446
|
+
nameKey: string;
|
|
447
447
|
in: "query" | "header" | "cookie";
|
|
448
448
|
description?: string | undefined;
|
|
449
449
|
} | {
|
|
@@ -510,8 +510,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
510
510
|
url: string;
|
|
511
511
|
description?: string | undefined;
|
|
512
512
|
variables?: Record<string, {
|
|
513
|
-
uid: string;
|
|
514
513
|
default: string;
|
|
514
|
+
uid: string;
|
|
515
515
|
value?: string | undefined;
|
|
516
516
|
description?: string | undefined;
|
|
517
517
|
enum?: string[] | undefined;
|
|
@@ -519,18 +519,18 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
519
519
|
} | null>;
|
|
520
520
|
activeWorkspace: import("vue").ComputedRef<{
|
|
521
521
|
uid: string;
|
|
522
|
-
description: string;
|
|
523
522
|
name: string;
|
|
523
|
+
description: string;
|
|
524
524
|
isReadOnly: boolean;
|
|
525
525
|
collectionUids: string[];
|
|
526
526
|
environmentUids: string[];
|
|
527
527
|
cookieUids: string[];
|
|
528
528
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
529
529
|
hotKeyConfig?: {
|
|
530
|
-
modifiers: ("
|
|
531
|
-
hotKeys?: Partial<Record<"" | "
|
|
530
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
531
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
532
532
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
533
|
-
modifiers?: ("
|
|
533
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
534
534
|
}>> | undefined;
|
|
535
535
|
} | undefined;
|
|
536
536
|
proxyUrl?: string | undefined;
|
|
@@ -580,8 +580,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
580
580
|
url: string;
|
|
581
581
|
description?: string | undefined;
|
|
582
582
|
variables?: Record<string, {
|
|
583
|
-
uid: string;
|
|
584
583
|
default: string;
|
|
584
|
+
uid: string;
|
|
585
585
|
value?: string | undefined;
|
|
586
586
|
description?: string | undefined;
|
|
587
587
|
enum?: string[] | undefined;
|
|
@@ -606,8 +606,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
606
606
|
sidebarWidth: import("vue").Ref<string>;
|
|
607
607
|
setSidebarWidth: (width: string) => void;
|
|
608
608
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
609
|
-
importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: import("@scalar/
|
|
610
|
-
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/
|
|
609
|
+
importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
610
|
+
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
611
611
|
cookieMutators: {
|
|
612
612
|
add: (item: {
|
|
613
613
|
value: string;
|
|
@@ -1223,13 +1223,13 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1223
1223
|
path: string;
|
|
1224
1224
|
uid: string;
|
|
1225
1225
|
childUids: string[];
|
|
1226
|
-
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
1227
1226
|
parameters: {
|
|
1228
1227
|
path: Record<string, any>;
|
|
1229
1228
|
query: Record<string, any>;
|
|
1230
|
-
cookies: Record<string, any>;
|
|
1231
1229
|
headers: Record<string, any>;
|
|
1230
|
+
cookies: Record<string, any>;
|
|
1232
1231
|
};
|
|
1232
|
+
method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
|
|
1233
1233
|
ref: {
|
|
1234
1234
|
path: string;
|
|
1235
1235
|
isExternal: boolean;
|
|
@@ -1247,8 +1247,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1247
1247
|
};
|
|
1248
1248
|
delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid?: string) => void;
|
|
1249
1249
|
set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
1250
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1251
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1250
|
+
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;
|
|
1251
|
+
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;
|
|
1252
1252
|
undo: (uid: string) => void;
|
|
1253
1253
|
redo: (uid: string) => void;
|
|
1254
1254
|
loadLocalStorage: () => void;
|
|
@@ -1266,14 +1266,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1266
1266
|
minimum?: number | undefined;
|
|
1267
1267
|
type?: string | undefined;
|
|
1268
1268
|
maximum?: number | undefined;
|
|
1269
|
-
description?: string | undefined;
|
|
1270
1269
|
default?: any;
|
|
1271
1270
|
required?: boolean | undefined;
|
|
1271
|
+
description?: string | undefined;
|
|
1272
1272
|
enum?: string[] | undefined;
|
|
1273
|
-
file?: File | undefined;
|
|
1274
|
-
refUid?: string | undefined;
|
|
1275
|
-
format?: string | undefined;
|
|
1276
1273
|
nullable?: boolean | undefined;
|
|
1274
|
+
format?: string | undefined;
|
|
1275
|
+
file?: any;
|
|
1276
|
+
refUid?: string | undefined;
|
|
1277
1277
|
}[];
|
|
1278
1278
|
query: {
|
|
1279
1279
|
value: string;
|
|
@@ -1282,53 +1282,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1282
1282
|
minimum?: number | undefined;
|
|
1283
1283
|
type?: string | undefined;
|
|
1284
1284
|
maximum?: number | undefined;
|
|
1285
|
-
description?: string | undefined;
|
|
1286
1285
|
default?: any;
|
|
1287
1286
|
required?: boolean | undefined;
|
|
1287
|
+
description?: string | undefined;
|
|
1288
1288
|
enum?: string[] | undefined;
|
|
1289
|
-
file?: File | undefined;
|
|
1290
|
-
refUid?: string | undefined;
|
|
1291
|
-
format?: string | undefined;
|
|
1292
1289
|
nullable?: boolean | undefined;
|
|
1290
|
+
format?: string | undefined;
|
|
1291
|
+
file?: any;
|
|
1292
|
+
refUid?: string | undefined;
|
|
1293
1293
|
}[];
|
|
1294
|
-
|
|
1294
|
+
headers: {
|
|
1295
1295
|
value: string;
|
|
1296
1296
|
key: string;
|
|
1297
1297
|
enabled: boolean;
|
|
1298
1298
|
minimum?: number | undefined;
|
|
1299
1299
|
type?: string | undefined;
|
|
1300
1300
|
maximum?: number | undefined;
|
|
1301
|
-
description?: string | undefined;
|
|
1302
1301
|
default?: any;
|
|
1303
1302
|
required?: boolean | undefined;
|
|
1303
|
+
description?: string | undefined;
|
|
1304
1304
|
enum?: string[] | undefined;
|
|
1305
|
-
file?: File | undefined;
|
|
1306
|
-
refUid?: string | undefined;
|
|
1307
|
-
format?: string | undefined;
|
|
1308
1305
|
nullable?: boolean | undefined;
|
|
1306
|
+
format?: string | undefined;
|
|
1307
|
+
file?: any;
|
|
1308
|
+
refUid?: string | undefined;
|
|
1309
1309
|
}[];
|
|
1310
|
-
|
|
1310
|
+
cookies: {
|
|
1311
1311
|
value: string;
|
|
1312
1312
|
key: string;
|
|
1313
1313
|
enabled: boolean;
|
|
1314
1314
|
minimum?: number | undefined;
|
|
1315
1315
|
type?: string | undefined;
|
|
1316
1316
|
maximum?: number | undefined;
|
|
1317
|
-
description?: string | undefined;
|
|
1318
1317
|
default?: any;
|
|
1319
1318
|
required?: boolean | undefined;
|
|
1319
|
+
description?: string | undefined;
|
|
1320
1320
|
enum?: string[] | undefined;
|
|
1321
|
-
file?: File | undefined;
|
|
1322
|
-
refUid?: string | undefined;
|
|
1323
|
-
format?: string | undefined;
|
|
1324
1321
|
nullable?: boolean | undefined;
|
|
1322
|
+
format?: string | undefined;
|
|
1323
|
+
file?: any;
|
|
1324
|
+
refUid?: string | undefined;
|
|
1325
1325
|
}[];
|
|
1326
1326
|
};
|
|
1327
1327
|
requestUid: string;
|
|
1328
1328
|
body: {
|
|
1329
1329
|
raw: {
|
|
1330
1330
|
value: string;
|
|
1331
|
-
encoding: "
|
|
1331
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1332
1332
|
};
|
|
1333
1333
|
formData: {
|
|
1334
1334
|
value: {
|
|
@@ -1338,14 +1338,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1338
1338
|
minimum?: number | undefined;
|
|
1339
1339
|
type?: string | undefined;
|
|
1340
1340
|
maximum?: number | undefined;
|
|
1341
|
-
description?: string | undefined;
|
|
1342
1341
|
default?: any;
|
|
1343
1342
|
required?: boolean | undefined;
|
|
1343
|
+
description?: string | undefined;
|
|
1344
1344
|
enum?: string[] | undefined;
|
|
1345
|
-
file?: File | undefined;
|
|
1346
|
-
refUid?: string | undefined;
|
|
1347
|
-
format?: string | undefined;
|
|
1348
1345
|
nullable?: boolean | undefined;
|
|
1346
|
+
format?: string | undefined;
|
|
1347
|
+
file?: any;
|
|
1348
|
+
refUid?: string | undefined;
|
|
1349
1349
|
}[];
|
|
1350
1350
|
encoding: "form-data" | "urlencoded";
|
|
1351
1351
|
};
|
|
@@ -1366,14 +1366,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1366
1366
|
minimum?: number | undefined;
|
|
1367
1367
|
type?: string | undefined;
|
|
1368
1368
|
maximum?: number | undefined;
|
|
1369
|
-
description?: string | undefined;
|
|
1370
1369
|
default?: any;
|
|
1371
1370
|
required?: boolean | undefined;
|
|
1371
|
+
description?: string | undefined;
|
|
1372
1372
|
enum?: string[] | undefined;
|
|
1373
|
-
file?: File | undefined;
|
|
1374
|
-
refUid?: string | undefined;
|
|
1375
|
-
format?: string | undefined;
|
|
1376
1373
|
nullable?: boolean | undefined;
|
|
1374
|
+
format?: string | undefined;
|
|
1375
|
+
file?: any;
|
|
1376
|
+
refUid?: string | undefined;
|
|
1377
1377
|
}[];
|
|
1378
1378
|
query: {
|
|
1379
1379
|
value: string;
|
|
@@ -1382,53 +1382,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1382
1382
|
minimum?: number | undefined;
|
|
1383
1383
|
type?: string | undefined;
|
|
1384
1384
|
maximum?: number | undefined;
|
|
1385
|
-
description?: string | undefined;
|
|
1386
1385
|
default?: any;
|
|
1387
1386
|
required?: boolean | undefined;
|
|
1387
|
+
description?: string | undefined;
|
|
1388
1388
|
enum?: string[] | undefined;
|
|
1389
|
-
file?: File | undefined;
|
|
1390
|
-
refUid?: string | undefined;
|
|
1391
|
-
format?: string | undefined;
|
|
1392
1389
|
nullable?: boolean | undefined;
|
|
1390
|
+
format?: string | undefined;
|
|
1391
|
+
file?: any;
|
|
1392
|
+
refUid?: string | undefined;
|
|
1393
1393
|
}[];
|
|
1394
|
-
|
|
1394
|
+
headers: {
|
|
1395
1395
|
value: string;
|
|
1396
1396
|
key: string;
|
|
1397
1397
|
enabled: boolean;
|
|
1398
1398
|
minimum?: number | undefined;
|
|
1399
1399
|
type?: string | undefined;
|
|
1400
1400
|
maximum?: number | undefined;
|
|
1401
|
-
description?: string | undefined;
|
|
1402
1401
|
default?: any;
|
|
1403
1402
|
required?: boolean | undefined;
|
|
1403
|
+
description?: string | undefined;
|
|
1404
1404
|
enum?: string[] | undefined;
|
|
1405
|
-
file?: File | undefined;
|
|
1406
|
-
refUid?: string | undefined;
|
|
1407
|
-
format?: string | undefined;
|
|
1408
1405
|
nullable?: boolean | undefined;
|
|
1406
|
+
format?: string | undefined;
|
|
1407
|
+
file?: any;
|
|
1408
|
+
refUid?: string | undefined;
|
|
1409
1409
|
}[];
|
|
1410
|
-
|
|
1410
|
+
cookies: {
|
|
1411
1411
|
value: string;
|
|
1412
1412
|
key: string;
|
|
1413
1413
|
enabled: boolean;
|
|
1414
1414
|
minimum?: number | undefined;
|
|
1415
1415
|
type?: string | undefined;
|
|
1416
1416
|
maximum?: number | undefined;
|
|
1417
|
-
description?: string | undefined;
|
|
1418
1417
|
default?: any;
|
|
1419
1418
|
required?: boolean | undefined;
|
|
1419
|
+
description?: string | undefined;
|
|
1420
1420
|
enum?: string[] | undefined;
|
|
1421
|
-
file?: File | undefined;
|
|
1422
|
-
refUid?: string | undefined;
|
|
1423
|
-
format?: string | undefined;
|
|
1424
1421
|
nullable?: boolean | undefined;
|
|
1422
|
+
format?: string | undefined;
|
|
1423
|
+
file?: any;
|
|
1424
|
+
refUid?: string | undefined;
|
|
1425
1425
|
}[];
|
|
1426
1426
|
};
|
|
1427
1427
|
requestUid: string;
|
|
1428
1428
|
body: {
|
|
1429
1429
|
raw: {
|
|
1430
1430
|
value: string;
|
|
1431
|
-
encoding: "
|
|
1431
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1432
1432
|
};
|
|
1433
1433
|
formData: {
|
|
1434
1434
|
value: {
|
|
@@ -1438,14 +1438,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1438
1438
|
minimum?: number | undefined;
|
|
1439
1439
|
type?: string | undefined;
|
|
1440
1440
|
maximum?: number | undefined;
|
|
1441
|
-
description?: string | undefined;
|
|
1442
1441
|
default?: any;
|
|
1443
1442
|
required?: boolean | undefined;
|
|
1443
|
+
description?: string | undefined;
|
|
1444
1444
|
enum?: string[] | undefined;
|
|
1445
|
-
file?: File | undefined;
|
|
1446
|
-
refUid?: string | undefined;
|
|
1447
|
-
format?: string | undefined;
|
|
1448
1445
|
nullable?: boolean | undefined;
|
|
1446
|
+
format?: string | undefined;
|
|
1447
|
+
file?: any;
|
|
1448
|
+
refUid?: string | undefined;
|
|
1449
1449
|
}[];
|
|
1450
1450
|
encoding: "form-data" | "urlencoded";
|
|
1451
1451
|
};
|
|
@@ -1467,14 +1467,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1467
1467
|
minimum?: number | undefined;
|
|
1468
1468
|
type?: string | undefined;
|
|
1469
1469
|
maximum?: number | undefined;
|
|
1470
|
-
description?: string | undefined;
|
|
1471
1470
|
default?: any;
|
|
1472
1471
|
required?: boolean | undefined;
|
|
1472
|
+
description?: string | undefined;
|
|
1473
1473
|
enum?: string[] | undefined;
|
|
1474
|
-
file?: File | undefined;
|
|
1475
|
-
refUid?: string | undefined;
|
|
1476
|
-
format?: string | undefined;
|
|
1477
1474
|
nullable?: boolean | undefined;
|
|
1475
|
+
format?: string | undefined;
|
|
1476
|
+
file?: any;
|
|
1477
|
+
refUid?: string | undefined;
|
|
1478
1478
|
}[];
|
|
1479
1479
|
query: {
|
|
1480
1480
|
value: string;
|
|
@@ -1483,53 +1483,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1483
1483
|
minimum?: number | undefined;
|
|
1484
1484
|
type?: string | undefined;
|
|
1485
1485
|
maximum?: number | undefined;
|
|
1486
|
-
description?: string | undefined;
|
|
1487
1486
|
default?: any;
|
|
1488
1487
|
required?: boolean | undefined;
|
|
1488
|
+
description?: string | undefined;
|
|
1489
1489
|
enum?: string[] | undefined;
|
|
1490
|
-
file?: File | undefined;
|
|
1491
|
-
refUid?: string | undefined;
|
|
1492
|
-
format?: string | undefined;
|
|
1493
1490
|
nullable?: boolean | undefined;
|
|
1491
|
+
format?: string | undefined;
|
|
1492
|
+
file?: any;
|
|
1493
|
+
refUid?: string | undefined;
|
|
1494
1494
|
}[];
|
|
1495
|
-
|
|
1495
|
+
headers: {
|
|
1496
1496
|
value: string;
|
|
1497
1497
|
key: string;
|
|
1498
1498
|
enabled: boolean;
|
|
1499
1499
|
minimum?: number | undefined;
|
|
1500
1500
|
type?: string | undefined;
|
|
1501
1501
|
maximum?: number | undefined;
|
|
1502
|
-
description?: string | undefined;
|
|
1503
1502
|
default?: any;
|
|
1504
1503
|
required?: boolean | undefined;
|
|
1504
|
+
description?: string | undefined;
|
|
1505
1505
|
enum?: string[] | undefined;
|
|
1506
|
-
file?: File | undefined;
|
|
1507
|
-
refUid?: string | undefined;
|
|
1508
|
-
format?: string | undefined;
|
|
1509
1506
|
nullable?: boolean | undefined;
|
|
1507
|
+
format?: string | undefined;
|
|
1508
|
+
file?: any;
|
|
1509
|
+
refUid?: string | undefined;
|
|
1510
1510
|
}[];
|
|
1511
|
-
|
|
1511
|
+
cookies: {
|
|
1512
1512
|
value: string;
|
|
1513
1513
|
key: string;
|
|
1514
1514
|
enabled: boolean;
|
|
1515
1515
|
minimum?: number | undefined;
|
|
1516
1516
|
type?: string | undefined;
|
|
1517
1517
|
maximum?: number | undefined;
|
|
1518
|
-
description?: string | undefined;
|
|
1519
1518
|
default?: any;
|
|
1520
1519
|
required?: boolean | undefined;
|
|
1520
|
+
description?: string | undefined;
|
|
1521
1521
|
enum?: string[] | undefined;
|
|
1522
|
-
file?: File | undefined;
|
|
1523
|
-
refUid?: string | undefined;
|
|
1524
|
-
format?: string | undefined;
|
|
1525
1522
|
nullable?: boolean | undefined;
|
|
1523
|
+
format?: string | undefined;
|
|
1524
|
+
file?: any;
|
|
1525
|
+
refUid?: string | undefined;
|
|
1526
1526
|
}[];
|
|
1527
1527
|
};
|
|
1528
1528
|
requestUid: string;
|
|
1529
1529
|
body: {
|
|
1530
1530
|
raw: {
|
|
1531
1531
|
value: string;
|
|
1532
|
-
encoding: "
|
|
1532
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1533
1533
|
};
|
|
1534
1534
|
formData: {
|
|
1535
1535
|
value: {
|
|
@@ -1539,14 +1539,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1539
1539
|
minimum?: number | undefined;
|
|
1540
1540
|
type?: string | undefined;
|
|
1541
1541
|
maximum?: number | undefined;
|
|
1542
|
-
description?: string | undefined;
|
|
1543
1542
|
default?: any;
|
|
1544
1543
|
required?: boolean | undefined;
|
|
1544
|
+
description?: string | undefined;
|
|
1545
1545
|
enum?: string[] | undefined;
|
|
1546
|
-
file?: File | undefined;
|
|
1547
|
-
refUid?: string | undefined;
|
|
1548
|
-
format?: string | undefined;
|
|
1549
1546
|
nullable?: boolean | undefined;
|
|
1547
|
+
format?: string | undefined;
|
|
1548
|
+
file?: any;
|
|
1549
|
+
refUid?: string | undefined;
|
|
1550
1550
|
}[];
|
|
1551
1551
|
encoding: "form-data" | "urlencoded";
|
|
1552
1552
|
};
|
|
@@ -1555,7 +1555,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1555
1555
|
};
|
|
1556
1556
|
auth: Record<string, any>;
|
|
1557
1557
|
}) => void;
|
|
1558
|
-
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}.
|
|
1558
|
+
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" ? {
|
|
1559
1559
|
uid: string;
|
|
1560
1560
|
name: string;
|
|
1561
1561
|
url: string;
|
|
@@ -1567,14 +1567,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1567
1567
|
minimum?: number | undefined;
|
|
1568
1568
|
type?: string | undefined;
|
|
1569
1569
|
maximum?: number | undefined;
|
|
1570
|
-
description?: string | undefined;
|
|
1571
1570
|
default?: any;
|
|
1572
1571
|
required?: boolean | undefined;
|
|
1572
|
+
description?: string | undefined;
|
|
1573
1573
|
enum?: string[] | undefined;
|
|
1574
|
-
file?: File | undefined;
|
|
1575
|
-
refUid?: string | undefined;
|
|
1576
|
-
format?: string | undefined;
|
|
1577
1574
|
nullable?: boolean | undefined;
|
|
1575
|
+
format?: string | undefined;
|
|
1576
|
+
file?: any;
|
|
1577
|
+
refUid?: string | undefined;
|
|
1578
1578
|
}[];
|
|
1579
1579
|
query: {
|
|
1580
1580
|
value: string;
|
|
@@ -1583,53 +1583,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1583
1583
|
minimum?: number | undefined;
|
|
1584
1584
|
type?: string | undefined;
|
|
1585
1585
|
maximum?: number | undefined;
|
|
1586
|
-
description?: string | undefined;
|
|
1587
1586
|
default?: any;
|
|
1588
1587
|
required?: boolean | undefined;
|
|
1588
|
+
description?: string | undefined;
|
|
1589
1589
|
enum?: string[] | undefined;
|
|
1590
|
-
file?: File | undefined;
|
|
1591
|
-
refUid?: string | undefined;
|
|
1592
|
-
format?: string | undefined;
|
|
1593
1590
|
nullable?: boolean | undefined;
|
|
1591
|
+
format?: string | undefined;
|
|
1592
|
+
file?: any;
|
|
1593
|
+
refUid?: string | undefined;
|
|
1594
1594
|
}[];
|
|
1595
|
-
|
|
1595
|
+
headers: {
|
|
1596
1596
|
value: string;
|
|
1597
1597
|
key: string;
|
|
1598
1598
|
enabled: boolean;
|
|
1599
1599
|
minimum?: number | undefined;
|
|
1600
1600
|
type?: string | undefined;
|
|
1601
1601
|
maximum?: number | undefined;
|
|
1602
|
-
description?: string | undefined;
|
|
1603
1602
|
default?: any;
|
|
1604
1603
|
required?: boolean | undefined;
|
|
1604
|
+
description?: string | undefined;
|
|
1605
1605
|
enum?: string[] | undefined;
|
|
1606
|
-
file?: File | undefined;
|
|
1607
|
-
refUid?: string | undefined;
|
|
1608
|
-
format?: string | undefined;
|
|
1609
1606
|
nullable?: boolean | undefined;
|
|
1607
|
+
format?: string | undefined;
|
|
1608
|
+
file?: any;
|
|
1609
|
+
refUid?: string | undefined;
|
|
1610
1610
|
}[];
|
|
1611
|
-
|
|
1611
|
+
cookies: {
|
|
1612
1612
|
value: string;
|
|
1613
1613
|
key: string;
|
|
1614
1614
|
enabled: boolean;
|
|
1615
1615
|
minimum?: number | undefined;
|
|
1616
1616
|
type?: string | undefined;
|
|
1617
1617
|
maximum?: number | undefined;
|
|
1618
|
-
description?: string | undefined;
|
|
1619
1618
|
default?: any;
|
|
1620
1619
|
required?: boolean | undefined;
|
|
1620
|
+
description?: string | undefined;
|
|
1621
1621
|
enum?: string[] | undefined;
|
|
1622
|
-
file?: File | undefined;
|
|
1623
|
-
refUid?: string | undefined;
|
|
1624
|
-
format?: string | undefined;
|
|
1625
1622
|
nullable?: boolean | undefined;
|
|
1623
|
+
format?: string | undefined;
|
|
1624
|
+
file?: any;
|
|
1625
|
+
refUid?: string | undefined;
|
|
1626
1626
|
}[];
|
|
1627
1627
|
};
|
|
1628
1628
|
requestUid: string;
|
|
1629
1629
|
body: {
|
|
1630
1630
|
raw: {
|
|
1631
1631
|
value: string;
|
|
1632
|
-
encoding: "
|
|
1632
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1633
1633
|
};
|
|
1634
1634
|
formData: {
|
|
1635
1635
|
value: {
|
|
@@ -1639,14 +1639,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1639
1639
|
minimum?: number | undefined;
|
|
1640
1640
|
type?: string | undefined;
|
|
1641
1641
|
maximum?: number | undefined;
|
|
1642
|
-
description?: string | undefined;
|
|
1643
1642
|
default?: any;
|
|
1644
1643
|
required?: boolean | undefined;
|
|
1644
|
+
description?: string | undefined;
|
|
1645
1645
|
enum?: string[] | undefined;
|
|
1646
|
-
file?: File | undefined;
|
|
1647
|
-
refUid?: string | undefined;
|
|
1648
|
-
format?: string | undefined;
|
|
1649
1646
|
nullable?: boolean | undefined;
|
|
1647
|
+
format?: string | undefined;
|
|
1648
|
+
file?: any;
|
|
1649
|
+
refUid?: string | undefined;
|
|
1650
1650
|
}[];
|
|
1651
1651
|
encoding: "form-data" | "urlencoded";
|
|
1652
1652
|
};
|
|
@@ -1666,14 +1666,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1666
1666
|
minimum?: number | undefined;
|
|
1667
1667
|
type?: string | undefined;
|
|
1668
1668
|
maximum?: number | undefined;
|
|
1669
|
-
description?: string | undefined;
|
|
1670
1669
|
default?: any;
|
|
1671
1670
|
required?: boolean | undefined;
|
|
1671
|
+
description?: string | undefined;
|
|
1672
1672
|
enum?: string[] | undefined;
|
|
1673
|
-
file?: File | undefined;
|
|
1674
|
-
refUid?: string | undefined;
|
|
1675
|
-
format?: string | undefined;
|
|
1676
1673
|
nullable?: boolean | undefined;
|
|
1674
|
+
format?: string | undefined;
|
|
1675
|
+
file?: any;
|
|
1676
|
+
refUid?: string | undefined;
|
|
1677
1677
|
}[];
|
|
1678
1678
|
query: {
|
|
1679
1679
|
value: string;
|
|
@@ -1682,53 +1682,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1682
1682
|
minimum?: number | undefined;
|
|
1683
1683
|
type?: string | undefined;
|
|
1684
1684
|
maximum?: number | undefined;
|
|
1685
|
-
description?: string | undefined;
|
|
1686
1685
|
default?: any;
|
|
1687
1686
|
required?: boolean | undefined;
|
|
1687
|
+
description?: string | undefined;
|
|
1688
1688
|
enum?: string[] | undefined;
|
|
1689
|
-
file?: File | undefined;
|
|
1690
|
-
refUid?: string | undefined;
|
|
1691
|
-
format?: string | undefined;
|
|
1692
1689
|
nullable?: boolean | undefined;
|
|
1690
|
+
format?: string | undefined;
|
|
1691
|
+
file?: any;
|
|
1692
|
+
refUid?: string | undefined;
|
|
1693
1693
|
}[];
|
|
1694
|
-
|
|
1694
|
+
headers: {
|
|
1695
1695
|
value: string;
|
|
1696
1696
|
key: string;
|
|
1697
1697
|
enabled: boolean;
|
|
1698
1698
|
minimum?: number | undefined;
|
|
1699
1699
|
type?: string | undefined;
|
|
1700
1700
|
maximum?: number | undefined;
|
|
1701
|
-
description?: string | undefined;
|
|
1702
1701
|
default?: any;
|
|
1703
1702
|
required?: boolean | undefined;
|
|
1703
|
+
description?: string | undefined;
|
|
1704
1704
|
enum?: string[] | undefined;
|
|
1705
|
-
file?: File | undefined;
|
|
1706
|
-
refUid?: string | undefined;
|
|
1707
|
-
format?: string | undefined;
|
|
1708
1705
|
nullable?: boolean | undefined;
|
|
1706
|
+
format?: string | undefined;
|
|
1707
|
+
file?: any;
|
|
1708
|
+
refUid?: string | undefined;
|
|
1709
1709
|
}[];
|
|
1710
|
-
|
|
1710
|
+
cookies: {
|
|
1711
1711
|
value: string;
|
|
1712
1712
|
key: string;
|
|
1713
1713
|
enabled: boolean;
|
|
1714
1714
|
minimum?: number | undefined;
|
|
1715
1715
|
type?: string | undefined;
|
|
1716
1716
|
maximum?: number | undefined;
|
|
1717
|
-
description?: string | undefined;
|
|
1718
1717
|
default?: any;
|
|
1719
1718
|
required?: boolean | undefined;
|
|
1719
|
+
description?: string | undefined;
|
|
1720
1720
|
enum?: string[] | undefined;
|
|
1721
|
-
file?: File | undefined;
|
|
1722
|
-
refUid?: string | undefined;
|
|
1723
|
-
format?: string | undefined;
|
|
1724
1721
|
nullable?: boolean | undefined;
|
|
1722
|
+
format?: string | undefined;
|
|
1723
|
+
file?: any;
|
|
1724
|
+
refUid?: string | undefined;
|
|
1725
1725
|
}[];
|
|
1726
1726
|
};
|
|
1727
1727
|
requestUid: string;
|
|
1728
1728
|
body: {
|
|
1729
1729
|
raw: {
|
|
1730
1730
|
value: string;
|
|
1731
|
-
encoding: "
|
|
1731
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1732
1732
|
};
|
|
1733
1733
|
formData: {
|
|
1734
1734
|
value: {
|
|
@@ -1738,14 +1738,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1738
1738
|
minimum?: number | undefined;
|
|
1739
1739
|
type?: string | undefined;
|
|
1740
1740
|
maximum?: number | undefined;
|
|
1741
|
-
description?: string | undefined;
|
|
1742
1741
|
default?: any;
|
|
1743
1742
|
required?: boolean | undefined;
|
|
1743
|
+
description?: string | undefined;
|
|
1744
1744
|
enum?: string[] | undefined;
|
|
1745
|
-
file?: File | undefined;
|
|
1746
|
-
refUid?: string | undefined;
|
|
1747
|
-
format?: string | undefined;
|
|
1748
1745
|
nullable?: boolean | undefined;
|
|
1746
|
+
format?: string | undefined;
|
|
1747
|
+
file?: any;
|
|
1748
|
+
refUid?: string | undefined;
|
|
1749
1749
|
}[];
|
|
1750
1750
|
encoding: "form-data" | "urlencoded";
|
|
1751
1751
|
};
|
|
@@ -1765,14 +1765,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1765
1765
|
minimum?: number | undefined;
|
|
1766
1766
|
type?: string | undefined;
|
|
1767
1767
|
maximum?: number | undefined;
|
|
1768
|
-
description?: string | undefined;
|
|
1769
1768
|
default?: any;
|
|
1770
1769
|
required?: boolean | undefined;
|
|
1770
|
+
description?: string | undefined;
|
|
1771
1771
|
enum?: string[] | undefined;
|
|
1772
|
-
file?: File | undefined;
|
|
1773
|
-
refUid?: string | undefined;
|
|
1774
|
-
format?: string | undefined;
|
|
1775
1772
|
nullable?: boolean | undefined;
|
|
1773
|
+
format?: string | undefined;
|
|
1774
|
+
file?: any;
|
|
1775
|
+
refUid?: string | undefined;
|
|
1776
1776
|
}[];
|
|
1777
1777
|
query: {
|
|
1778
1778
|
value: string;
|
|
@@ -1781,53 +1781,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1781
1781
|
minimum?: number | undefined;
|
|
1782
1782
|
type?: string | undefined;
|
|
1783
1783
|
maximum?: number | undefined;
|
|
1784
|
-
description?: string | undefined;
|
|
1785
1784
|
default?: any;
|
|
1786
1785
|
required?: boolean | undefined;
|
|
1786
|
+
description?: string | undefined;
|
|
1787
1787
|
enum?: string[] | undefined;
|
|
1788
|
-
file?: File | undefined;
|
|
1789
|
-
refUid?: string | undefined;
|
|
1790
|
-
format?: string | undefined;
|
|
1791
1788
|
nullable?: boolean | undefined;
|
|
1789
|
+
format?: string | undefined;
|
|
1790
|
+
file?: any;
|
|
1791
|
+
refUid?: string | undefined;
|
|
1792
1792
|
}[];
|
|
1793
|
-
|
|
1793
|
+
headers: {
|
|
1794
1794
|
value: string;
|
|
1795
1795
|
key: string;
|
|
1796
1796
|
enabled: boolean;
|
|
1797
1797
|
minimum?: number | undefined;
|
|
1798
1798
|
type?: string | undefined;
|
|
1799
1799
|
maximum?: number | undefined;
|
|
1800
|
-
description?: string | undefined;
|
|
1801
1800
|
default?: any;
|
|
1802
1801
|
required?: boolean | undefined;
|
|
1802
|
+
description?: string | undefined;
|
|
1803
1803
|
enum?: string[] | undefined;
|
|
1804
|
-
file?: File | undefined;
|
|
1805
|
-
refUid?: string | undefined;
|
|
1806
|
-
format?: string | undefined;
|
|
1807
1804
|
nullable?: boolean | undefined;
|
|
1805
|
+
format?: string | undefined;
|
|
1806
|
+
file?: any;
|
|
1807
|
+
refUid?: string | undefined;
|
|
1808
1808
|
}[];
|
|
1809
|
-
|
|
1809
|
+
cookies: {
|
|
1810
1810
|
value: string;
|
|
1811
1811
|
key: string;
|
|
1812
1812
|
enabled: boolean;
|
|
1813
1813
|
minimum?: number | undefined;
|
|
1814
1814
|
type?: string | undefined;
|
|
1815
1815
|
maximum?: number | undefined;
|
|
1816
|
-
description?: string | undefined;
|
|
1817
1816
|
default?: any;
|
|
1818
1817
|
required?: boolean | undefined;
|
|
1818
|
+
description?: string | undefined;
|
|
1819
1819
|
enum?: string[] | undefined;
|
|
1820
|
-
file?: File | undefined;
|
|
1821
|
-
refUid?: string | undefined;
|
|
1822
|
-
format?: string | undefined;
|
|
1823
1820
|
nullable?: boolean | undefined;
|
|
1821
|
+
format?: string | undefined;
|
|
1822
|
+
file?: any;
|
|
1823
|
+
refUid?: string | undefined;
|
|
1824
1824
|
}[];
|
|
1825
1825
|
};
|
|
1826
1826
|
requestUid: string;
|
|
1827
1827
|
body: {
|
|
1828
1828
|
raw: {
|
|
1829
1829
|
value: string;
|
|
1830
|
-
encoding: "
|
|
1830
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1831
1831
|
};
|
|
1832
1832
|
formData: {
|
|
1833
1833
|
value: {
|
|
@@ -1837,14 +1837,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1837
1837
|
minimum?: number | undefined;
|
|
1838
1838
|
type?: string | undefined;
|
|
1839
1839
|
maximum?: number | undefined;
|
|
1840
|
-
description?: string | undefined;
|
|
1841
1840
|
default?: any;
|
|
1842
1841
|
required?: boolean | undefined;
|
|
1842
|
+
description?: string | undefined;
|
|
1843
1843
|
enum?: string[] | undefined;
|
|
1844
|
-
file?: File | undefined;
|
|
1845
|
-
refUid?: string | undefined;
|
|
1846
|
-
format?: string | undefined;
|
|
1847
1844
|
nullable?: boolean | undefined;
|
|
1845
|
+
format?: string | undefined;
|
|
1846
|
+
file?: any;
|
|
1847
|
+
refUid?: string | undefined;
|
|
1848
1848
|
}[];
|
|
1849
1849
|
encoding: "form-data" | "urlencoded";
|
|
1850
1850
|
};
|
|
@@ -1853,7 +1853,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1853
1853
|
};
|
|
1854
1854
|
auth: Record<string, any>;
|
|
1855
1855
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1856
|
-
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}.
|
|
1856
|
+
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" ? {
|
|
1857
1857
|
uid: string;
|
|
1858
1858
|
name: string;
|
|
1859
1859
|
url: string;
|
|
@@ -1865,14 +1865,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1865
1865
|
minimum?: number | undefined;
|
|
1866
1866
|
type?: string | undefined;
|
|
1867
1867
|
maximum?: number | undefined;
|
|
1868
|
-
description?: string | undefined;
|
|
1869
1868
|
default?: any;
|
|
1870
1869
|
required?: boolean | undefined;
|
|
1870
|
+
description?: string | undefined;
|
|
1871
1871
|
enum?: string[] | undefined;
|
|
1872
|
-
file?: File | undefined;
|
|
1873
|
-
refUid?: string | undefined;
|
|
1874
|
-
format?: string | undefined;
|
|
1875
1872
|
nullable?: boolean | undefined;
|
|
1873
|
+
format?: string | undefined;
|
|
1874
|
+
file?: any;
|
|
1875
|
+
refUid?: string | undefined;
|
|
1876
1876
|
}[];
|
|
1877
1877
|
query: {
|
|
1878
1878
|
value: string;
|
|
@@ -1881,53 +1881,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1881
1881
|
minimum?: number | undefined;
|
|
1882
1882
|
type?: string | undefined;
|
|
1883
1883
|
maximum?: number | undefined;
|
|
1884
|
-
description?: string | undefined;
|
|
1885
1884
|
default?: any;
|
|
1886
1885
|
required?: boolean | undefined;
|
|
1886
|
+
description?: string | undefined;
|
|
1887
1887
|
enum?: string[] | undefined;
|
|
1888
|
-
file?: File | undefined;
|
|
1889
|
-
refUid?: string | undefined;
|
|
1890
|
-
format?: string | undefined;
|
|
1891
1888
|
nullable?: boolean | undefined;
|
|
1889
|
+
format?: string | undefined;
|
|
1890
|
+
file?: any;
|
|
1891
|
+
refUid?: string | undefined;
|
|
1892
1892
|
}[];
|
|
1893
|
-
|
|
1893
|
+
headers: {
|
|
1894
1894
|
value: string;
|
|
1895
1895
|
key: string;
|
|
1896
1896
|
enabled: boolean;
|
|
1897
1897
|
minimum?: number | undefined;
|
|
1898
1898
|
type?: string | undefined;
|
|
1899
1899
|
maximum?: number | undefined;
|
|
1900
|
-
description?: string | undefined;
|
|
1901
1900
|
default?: any;
|
|
1902
1901
|
required?: boolean | undefined;
|
|
1902
|
+
description?: string | undefined;
|
|
1903
1903
|
enum?: string[] | undefined;
|
|
1904
|
-
file?: File | undefined;
|
|
1905
|
-
refUid?: string | undefined;
|
|
1906
|
-
format?: string | undefined;
|
|
1907
1904
|
nullable?: boolean | undefined;
|
|
1905
|
+
format?: string | undefined;
|
|
1906
|
+
file?: any;
|
|
1907
|
+
refUid?: string | undefined;
|
|
1908
1908
|
}[];
|
|
1909
|
-
|
|
1909
|
+
cookies: {
|
|
1910
1910
|
value: string;
|
|
1911
1911
|
key: string;
|
|
1912
1912
|
enabled: boolean;
|
|
1913
1913
|
minimum?: number | undefined;
|
|
1914
1914
|
type?: string | undefined;
|
|
1915
1915
|
maximum?: number | undefined;
|
|
1916
|
-
description?: string | undefined;
|
|
1917
1916
|
default?: any;
|
|
1918
1917
|
required?: boolean | undefined;
|
|
1918
|
+
description?: string | undefined;
|
|
1919
1919
|
enum?: string[] | undefined;
|
|
1920
|
-
file?: File | undefined;
|
|
1921
|
-
refUid?: string | undefined;
|
|
1922
|
-
format?: string | undefined;
|
|
1923
1920
|
nullable?: boolean | undefined;
|
|
1921
|
+
format?: string | undefined;
|
|
1922
|
+
file?: any;
|
|
1923
|
+
refUid?: string | undefined;
|
|
1924
1924
|
}[];
|
|
1925
1925
|
};
|
|
1926
1926
|
requestUid: string;
|
|
1927
1927
|
body: {
|
|
1928
1928
|
raw: {
|
|
1929
1929
|
value: string;
|
|
1930
|
-
encoding: "
|
|
1930
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1931
1931
|
};
|
|
1932
1932
|
formData: {
|
|
1933
1933
|
value: {
|
|
@@ -1937,14 +1937,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1937
1937
|
minimum?: number | undefined;
|
|
1938
1938
|
type?: string | undefined;
|
|
1939
1939
|
maximum?: number | undefined;
|
|
1940
|
-
description?: string | undefined;
|
|
1941
1940
|
default?: any;
|
|
1942
1941
|
required?: boolean | undefined;
|
|
1942
|
+
description?: string | undefined;
|
|
1943
1943
|
enum?: string[] | undefined;
|
|
1944
|
-
file?: File | undefined;
|
|
1945
|
-
refUid?: string | undefined;
|
|
1946
|
-
format?: string | undefined;
|
|
1947
1944
|
nullable?: boolean | undefined;
|
|
1945
|
+
format?: string | undefined;
|
|
1946
|
+
file?: any;
|
|
1947
|
+
refUid?: string | undefined;
|
|
1948
1948
|
}[];
|
|
1949
1949
|
encoding: "form-data" | "urlencoded";
|
|
1950
1950
|
};
|
|
@@ -1964,14 +1964,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1964
1964
|
minimum?: number | undefined;
|
|
1965
1965
|
type?: string | undefined;
|
|
1966
1966
|
maximum?: number | undefined;
|
|
1967
|
-
description?: string | undefined;
|
|
1968
1967
|
default?: any;
|
|
1969
1968
|
required?: boolean | undefined;
|
|
1969
|
+
description?: string | undefined;
|
|
1970
1970
|
enum?: string[] | undefined;
|
|
1971
|
-
file?: File | undefined;
|
|
1972
|
-
refUid?: string | undefined;
|
|
1973
|
-
format?: string | undefined;
|
|
1974
1971
|
nullable?: boolean | undefined;
|
|
1972
|
+
format?: string | undefined;
|
|
1973
|
+
file?: any;
|
|
1974
|
+
refUid?: string | undefined;
|
|
1975
1975
|
}[];
|
|
1976
1976
|
query: {
|
|
1977
1977
|
value: string;
|
|
@@ -1980,53 +1980,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1980
1980
|
minimum?: number | undefined;
|
|
1981
1981
|
type?: string | undefined;
|
|
1982
1982
|
maximum?: number | undefined;
|
|
1983
|
-
description?: string | undefined;
|
|
1984
1983
|
default?: any;
|
|
1985
1984
|
required?: boolean | undefined;
|
|
1985
|
+
description?: string | undefined;
|
|
1986
1986
|
enum?: string[] | undefined;
|
|
1987
|
-
file?: File | undefined;
|
|
1988
|
-
refUid?: string | undefined;
|
|
1989
|
-
format?: string | undefined;
|
|
1990
1987
|
nullable?: boolean | undefined;
|
|
1988
|
+
format?: string | undefined;
|
|
1989
|
+
file?: any;
|
|
1990
|
+
refUid?: string | undefined;
|
|
1991
1991
|
}[];
|
|
1992
|
-
|
|
1992
|
+
headers: {
|
|
1993
1993
|
value: string;
|
|
1994
1994
|
key: string;
|
|
1995
1995
|
enabled: boolean;
|
|
1996
1996
|
minimum?: number | undefined;
|
|
1997
1997
|
type?: string | undefined;
|
|
1998
1998
|
maximum?: number | undefined;
|
|
1999
|
-
description?: string | undefined;
|
|
2000
1999
|
default?: any;
|
|
2001
2000
|
required?: boolean | undefined;
|
|
2001
|
+
description?: string | undefined;
|
|
2002
2002
|
enum?: string[] | undefined;
|
|
2003
|
-
file?: File | undefined;
|
|
2004
|
-
refUid?: string | undefined;
|
|
2005
|
-
format?: string | undefined;
|
|
2006
2003
|
nullable?: boolean | undefined;
|
|
2004
|
+
format?: string | undefined;
|
|
2005
|
+
file?: any;
|
|
2006
|
+
refUid?: string | undefined;
|
|
2007
2007
|
}[];
|
|
2008
|
-
|
|
2008
|
+
cookies: {
|
|
2009
2009
|
value: string;
|
|
2010
2010
|
key: string;
|
|
2011
2011
|
enabled: boolean;
|
|
2012
2012
|
minimum?: number | undefined;
|
|
2013
2013
|
type?: string | undefined;
|
|
2014
2014
|
maximum?: number | undefined;
|
|
2015
|
-
description?: string | undefined;
|
|
2016
2015
|
default?: any;
|
|
2017
2016
|
required?: boolean | undefined;
|
|
2017
|
+
description?: string | undefined;
|
|
2018
2018
|
enum?: string[] | undefined;
|
|
2019
|
-
file?: File | undefined;
|
|
2020
|
-
refUid?: string | undefined;
|
|
2021
|
-
format?: string | undefined;
|
|
2022
2019
|
nullable?: boolean | undefined;
|
|
2020
|
+
format?: string | undefined;
|
|
2021
|
+
file?: any;
|
|
2022
|
+
refUid?: string | undefined;
|
|
2023
2023
|
}[];
|
|
2024
2024
|
};
|
|
2025
2025
|
requestUid: string;
|
|
2026
2026
|
body: {
|
|
2027
2027
|
raw: {
|
|
2028
2028
|
value: string;
|
|
2029
|
-
encoding: "
|
|
2029
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2030
2030
|
};
|
|
2031
2031
|
formData: {
|
|
2032
2032
|
value: {
|
|
@@ -2036,14 +2036,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2036
2036
|
minimum?: number | undefined;
|
|
2037
2037
|
type?: string | undefined;
|
|
2038
2038
|
maximum?: number | undefined;
|
|
2039
|
-
description?: string | undefined;
|
|
2040
2039
|
default?: any;
|
|
2041
2040
|
required?: boolean | undefined;
|
|
2041
|
+
description?: string | undefined;
|
|
2042
2042
|
enum?: string[] | undefined;
|
|
2043
|
-
file?: File | undefined;
|
|
2044
|
-
refUid?: string | undefined;
|
|
2045
|
-
format?: string | undefined;
|
|
2046
2043
|
nullable?: boolean | undefined;
|
|
2044
|
+
format?: string | undefined;
|
|
2045
|
+
file?: any;
|
|
2046
|
+
refUid?: string | undefined;
|
|
2047
2047
|
}[];
|
|
2048
2048
|
encoding: "form-data" | "urlencoded";
|
|
2049
2049
|
};
|
|
@@ -2063,14 +2063,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2063
2063
|
minimum?: number | undefined;
|
|
2064
2064
|
type?: string | undefined;
|
|
2065
2065
|
maximum?: number | undefined;
|
|
2066
|
-
description?: string | undefined;
|
|
2067
2066
|
default?: any;
|
|
2068
2067
|
required?: boolean | undefined;
|
|
2068
|
+
description?: string | undefined;
|
|
2069
2069
|
enum?: string[] | undefined;
|
|
2070
|
-
file?: File | undefined;
|
|
2071
|
-
refUid?: string | undefined;
|
|
2072
|
-
format?: string | undefined;
|
|
2073
2070
|
nullable?: boolean | undefined;
|
|
2071
|
+
format?: string | undefined;
|
|
2072
|
+
file?: any;
|
|
2073
|
+
refUid?: string | undefined;
|
|
2074
2074
|
}[];
|
|
2075
2075
|
query: {
|
|
2076
2076
|
value: string;
|
|
@@ -2079,53 +2079,53 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2079
2079
|
minimum?: number | undefined;
|
|
2080
2080
|
type?: string | undefined;
|
|
2081
2081
|
maximum?: number | undefined;
|
|
2082
|
-
description?: string | undefined;
|
|
2083
2082
|
default?: any;
|
|
2084
2083
|
required?: boolean | undefined;
|
|
2084
|
+
description?: string | undefined;
|
|
2085
2085
|
enum?: string[] | undefined;
|
|
2086
|
-
file?: File | undefined;
|
|
2087
|
-
refUid?: string | undefined;
|
|
2088
|
-
format?: string | undefined;
|
|
2089
2086
|
nullable?: boolean | undefined;
|
|
2087
|
+
format?: string | undefined;
|
|
2088
|
+
file?: any;
|
|
2089
|
+
refUid?: string | undefined;
|
|
2090
2090
|
}[];
|
|
2091
|
-
|
|
2091
|
+
headers: {
|
|
2092
2092
|
value: string;
|
|
2093
2093
|
key: string;
|
|
2094
2094
|
enabled: boolean;
|
|
2095
2095
|
minimum?: number | undefined;
|
|
2096
2096
|
type?: string | undefined;
|
|
2097
2097
|
maximum?: number | undefined;
|
|
2098
|
-
description?: string | undefined;
|
|
2099
2098
|
default?: any;
|
|
2100
2099
|
required?: boolean | undefined;
|
|
2100
|
+
description?: string | undefined;
|
|
2101
2101
|
enum?: string[] | undefined;
|
|
2102
|
-
file?: File | undefined;
|
|
2103
|
-
refUid?: string | undefined;
|
|
2104
|
-
format?: string | undefined;
|
|
2105
2102
|
nullable?: boolean | undefined;
|
|
2103
|
+
format?: string | undefined;
|
|
2104
|
+
file?: any;
|
|
2105
|
+
refUid?: string | undefined;
|
|
2106
2106
|
}[];
|
|
2107
|
-
|
|
2107
|
+
cookies: {
|
|
2108
2108
|
value: string;
|
|
2109
2109
|
key: string;
|
|
2110
2110
|
enabled: boolean;
|
|
2111
2111
|
minimum?: number | undefined;
|
|
2112
2112
|
type?: string | undefined;
|
|
2113
2113
|
maximum?: number | undefined;
|
|
2114
|
-
description?: string | undefined;
|
|
2115
2114
|
default?: any;
|
|
2116
2115
|
required?: boolean | undefined;
|
|
2116
|
+
description?: string | undefined;
|
|
2117
2117
|
enum?: string[] | undefined;
|
|
2118
|
-
file?: File | undefined;
|
|
2119
|
-
refUid?: string | undefined;
|
|
2120
|
-
format?: string | undefined;
|
|
2121
2118
|
nullable?: boolean | undefined;
|
|
2119
|
+
format?: string | undefined;
|
|
2120
|
+
file?: any;
|
|
2121
|
+
refUid?: string | undefined;
|
|
2122
2122
|
}[];
|
|
2123
2123
|
};
|
|
2124
2124
|
requestUid: string;
|
|
2125
2125
|
body: {
|
|
2126
2126
|
raw: {
|
|
2127
2127
|
value: string;
|
|
2128
|
-
encoding: "
|
|
2128
|
+
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2129
2129
|
};
|
|
2130
2130
|
formData: {
|
|
2131
2131
|
value: {
|
|
@@ -2135,14 +2135,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2135
2135
|
minimum?: number | undefined;
|
|
2136
2136
|
type?: string | undefined;
|
|
2137
2137
|
maximum?: number | undefined;
|
|
2138
|
-
description?: string | undefined;
|
|
2139
2138
|
default?: any;
|
|
2140
2139
|
required?: boolean | undefined;
|
|
2140
|
+
description?: string | undefined;
|
|
2141
2141
|
enum?: string[] | undefined;
|
|
2142
|
-
file?: File | undefined;
|
|
2143
|
-
refUid?: string | undefined;
|
|
2144
|
-
format?: string | undefined;
|
|
2145
2142
|
nullable?: boolean | undefined;
|
|
2143
|
+
format?: string | undefined;
|
|
2144
|
+
file?: any;
|
|
2145
|
+
refUid?: string | undefined;
|
|
2146
2146
|
}[];
|
|
2147
2147
|
encoding: "form-data" | "urlencoded";
|
|
2148
2148
|
};
|
|
@@ -2161,8 +2161,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2161
2161
|
type: "apiKey";
|
|
2162
2162
|
value: string;
|
|
2163
2163
|
uid: string;
|
|
2164
|
-
nameKey: string;
|
|
2165
2164
|
name: string;
|
|
2165
|
+
nameKey: string;
|
|
2166
2166
|
in: "query" | "header" | "cookie";
|
|
2167
2167
|
description?: string | undefined;
|
|
2168
2168
|
} | {
|
|
@@ -2230,8 +2230,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2230
2230
|
type: "apiKey";
|
|
2231
2231
|
value: string;
|
|
2232
2232
|
uid: string;
|
|
2233
|
-
nameKey: string;
|
|
2234
2233
|
name: string;
|
|
2234
|
+
nameKey: string;
|
|
2235
2235
|
in: "query" | "header" | "cookie";
|
|
2236
2236
|
description?: string | undefined;
|
|
2237
2237
|
} | {
|
|
@@ -2293,28 +2293,28 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2293
2293
|
openIdConnectUrl: string;
|
|
2294
2294
|
description?: string | undefined;
|
|
2295
2295
|
}) => void;
|
|
2296
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2296
|
+
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" ? {
|
|
2297
2297
|
type: "apiKey";
|
|
2298
2298
|
value: string;
|
|
2299
2299
|
uid: string;
|
|
2300
|
-
nameKey: string;
|
|
2301
2300
|
name: string;
|
|
2301
|
+
nameKey: string;
|
|
2302
2302
|
in: "query" | "header" | "cookie";
|
|
2303
2303
|
description?: string | undefined;
|
|
2304
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2304
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2305
2305
|
type: "apiKey";
|
|
2306
2306
|
value: string;
|
|
2307
2307
|
uid: string;
|
|
2308
|
-
nameKey: string;
|
|
2309
2308
|
name: string;
|
|
2309
|
+
nameKey: string;
|
|
2310
2310
|
in: "query" | "header" | "cookie";
|
|
2311
2311
|
description?: string | undefined;
|
|
2312
2312
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2313
2313
|
type: "apiKey";
|
|
2314
2314
|
value: string;
|
|
2315
2315
|
uid: string;
|
|
2316
|
-
nameKey: string;
|
|
2317
2316
|
name: string;
|
|
2317
|
+
nameKey: string;
|
|
2318
2318
|
in: "query" | "header" | "cookie";
|
|
2319
2319
|
description?: string | undefined;
|
|
2320
2320
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -2492,28 +2492,28 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2492
2492
|
openIdConnectUrl: string;
|
|
2493
2493
|
description?: string | undefined;
|
|
2494
2494
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2495
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2495
|
+
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" ? {
|
|
2496
2496
|
type: "apiKey";
|
|
2497
2497
|
value: string;
|
|
2498
2498
|
uid: string;
|
|
2499
|
-
nameKey: string;
|
|
2500
2499
|
name: string;
|
|
2500
|
+
nameKey: string;
|
|
2501
2501
|
in: "query" | "header" | "cookie";
|
|
2502
2502
|
description?: string | undefined;
|
|
2503
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2503
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2504
2504
|
type: "apiKey";
|
|
2505
2505
|
value: string;
|
|
2506
2506
|
uid: string;
|
|
2507
|
-
nameKey: string;
|
|
2508
2507
|
name: string;
|
|
2508
|
+
nameKey: string;
|
|
2509
2509
|
in: "query" | "header" | "cookie";
|
|
2510
2510
|
description?: string | undefined;
|
|
2511
2511
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2512
2512
|
type: "apiKey";
|
|
2513
2513
|
value: string;
|
|
2514
2514
|
uid: string;
|
|
2515
|
-
nameKey: string;
|
|
2516
2515
|
name: string;
|
|
2516
|
+
nameKey: string;
|
|
2517
2517
|
in: "query" | "header" | "cookie";
|
|
2518
2518
|
description?: string | undefined;
|
|
2519
2519
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
|
|
@@ -2701,8 +2701,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2701
2701
|
url: string;
|
|
2702
2702
|
description?: string | undefined;
|
|
2703
2703
|
variables?: Record<string, {
|
|
2704
|
-
uid: string;
|
|
2705
2704
|
default: string;
|
|
2705
|
+
uid: string;
|
|
2706
2706
|
value?: string | undefined;
|
|
2707
2707
|
description?: string | undefined;
|
|
2708
2708
|
enum?: string[] | undefined;
|
|
@@ -2715,8 +2715,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2715
2715
|
url: string;
|
|
2716
2716
|
description?: string | undefined;
|
|
2717
2717
|
variables?: Record<string, {
|
|
2718
|
-
uid: string;
|
|
2719
2718
|
default: string;
|
|
2719
|
+
uid: string;
|
|
2720
2720
|
value?: string | undefined;
|
|
2721
2721
|
description?: string | undefined;
|
|
2722
2722
|
enum?: string[] | undefined;
|
|
@@ -2727,8 +2727,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2727
2727
|
url: string;
|
|
2728
2728
|
description?: string | undefined;
|
|
2729
2729
|
variables?: Record<string, {
|
|
2730
|
-
uid: string;
|
|
2731
2730
|
default: string;
|
|
2731
|
+
uid: string;
|
|
2732
2732
|
value?: string | undefined;
|
|
2733
2733
|
description?: string | undefined;
|
|
2734
2734
|
enum?: string[] | undefined;
|
|
@@ -2738,8 +2738,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2738
2738
|
url: string;
|
|
2739
2739
|
description?: string | undefined;
|
|
2740
2740
|
variables?: Record<string, {
|
|
2741
|
-
uid: string;
|
|
2742
2741
|
default: string;
|
|
2742
|
+
uid: string;
|
|
2743
2743
|
value?: string | undefined;
|
|
2744
2744
|
description?: string | undefined;
|
|
2745
2745
|
enum?: string[] | undefined;
|
|
@@ -2749,8 +2749,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2749
2749
|
url: string;
|
|
2750
2750
|
description?: string | undefined;
|
|
2751
2751
|
variables?: Record<string, {
|
|
2752
|
-
uid: string;
|
|
2753
2752
|
default: string;
|
|
2753
|
+
uid: string;
|
|
2754
2754
|
value?: string | undefined;
|
|
2755
2755
|
description?: string | undefined;
|
|
2756
2756
|
enum?: string[] | undefined;
|
|
@@ -2761,8 +2761,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2761
2761
|
url: string;
|
|
2762
2762
|
description?: string | undefined;
|
|
2763
2763
|
variables?: Record<string, {
|
|
2764
|
-
uid: string;
|
|
2765
2764
|
default: string;
|
|
2765
|
+
uid: string;
|
|
2766
2766
|
value?: string | undefined;
|
|
2767
2767
|
description?: string | undefined;
|
|
2768
2768
|
enum?: string[] | undefined;
|
|
@@ -2772,8 +2772,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2772
2772
|
url: string;
|
|
2773
2773
|
description?: string | undefined;
|
|
2774
2774
|
variables?: Record<string, {
|
|
2775
|
-
uid: string;
|
|
2776
2775
|
default: string;
|
|
2776
|
+
uid: string;
|
|
2777
2777
|
value?: string | undefined;
|
|
2778
2778
|
description?: string | undefined;
|
|
2779
2779
|
enum?: string[] | undefined;
|
|
@@ -2783,8 +2783,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2783
2783
|
url: string;
|
|
2784
2784
|
description?: string | undefined;
|
|
2785
2785
|
variables?: Record<string, {
|
|
2786
|
-
uid: string;
|
|
2787
2786
|
default: string;
|
|
2787
|
+
uid: string;
|
|
2788
2788
|
value?: string | undefined;
|
|
2789
2789
|
description?: string | undefined;
|
|
2790
2790
|
enum?: string[] | undefined;
|
|
@@ -2797,36 +2797,36 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2797
2797
|
workspaceMutators: {
|
|
2798
2798
|
rawAdd: (item: {
|
|
2799
2799
|
uid: string;
|
|
2800
|
-
description: string;
|
|
2801
2800
|
name: string;
|
|
2801
|
+
description: string;
|
|
2802
2802
|
isReadOnly: boolean;
|
|
2803
2803
|
collectionUids: string[];
|
|
2804
2804
|
environmentUids: string[];
|
|
2805
2805
|
cookieUids: string[];
|
|
2806
2806
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2807
2807
|
hotKeyConfig?: {
|
|
2808
|
-
modifiers: ("
|
|
2809
|
-
hotKeys?: Partial<Record<"" | "
|
|
2808
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2809
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2810
2810
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2811
|
-
modifiers?: ("
|
|
2811
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2812
2812
|
}>> | undefined;
|
|
2813
2813
|
} | undefined;
|
|
2814
2814
|
proxyUrl?: string | undefined;
|
|
2815
2815
|
}) => void;
|
|
2816
2816
|
add: (payload?: import("@scalar/oas-utils/entities/workspace").WorkspacePayload) => {
|
|
2817
2817
|
uid: string;
|
|
2818
|
-
description: string;
|
|
2819
2818
|
name: string;
|
|
2819
|
+
description: string;
|
|
2820
2820
|
isReadOnly: boolean;
|
|
2821
2821
|
collectionUids: string[];
|
|
2822
2822
|
environmentUids: string[];
|
|
2823
2823
|
cookieUids: string[];
|
|
2824
2824
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2825
2825
|
hotKeyConfig?: {
|
|
2826
|
-
modifiers: ("
|
|
2827
|
-
hotKeys?: Partial<Record<"" | "
|
|
2826
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2827
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2828
2828
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2829
|
-
modifiers?: ("
|
|
2829
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2830
2830
|
}>> | undefined;
|
|
2831
2831
|
} | undefined;
|
|
2832
2832
|
proxyUrl?: string | undefined;
|
|
@@ -2835,122 +2835,122 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2835
2835
|
rename: (uid: string, newName: string) => void;
|
|
2836
2836
|
set: (item: {
|
|
2837
2837
|
uid: string;
|
|
2838
|
-
description: string;
|
|
2839
2838
|
name: string;
|
|
2839
|
+
description: string;
|
|
2840
2840
|
isReadOnly: boolean;
|
|
2841
2841
|
collectionUids: string[];
|
|
2842
2842
|
environmentUids: string[];
|
|
2843
2843
|
cookieUids: string[];
|
|
2844
2844
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2845
2845
|
hotKeyConfig?: {
|
|
2846
|
-
modifiers: ("
|
|
2847
|
-
hotKeys?: Partial<Record<"" | "
|
|
2846
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2847
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2848
2848
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2849
|
-
modifiers?: ("
|
|
2849
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2850
2850
|
}>> | undefined;
|
|
2851
2851
|
} | undefined;
|
|
2852
2852
|
proxyUrl?: string | undefined;
|
|
2853
2853
|
}) => void;
|
|
2854
|
-
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" ? {
|
|
2854
|
+
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" ? {
|
|
2855
2855
|
uid: string;
|
|
2856
|
-
description: string;
|
|
2857
2856
|
name: string;
|
|
2857
|
+
description: string;
|
|
2858
2858
|
isReadOnly: boolean;
|
|
2859
2859
|
collectionUids: string[];
|
|
2860
2860
|
environmentUids: string[];
|
|
2861
2861
|
cookieUids: string[];
|
|
2862
2862
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2863
2863
|
hotKeyConfig?: {
|
|
2864
|
-
modifiers: ("
|
|
2865
|
-
hotKeys?: Partial<Record<"" | "
|
|
2864
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2865
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2866
2866
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2867
|
-
modifiers?: ("
|
|
2867
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2868
2868
|
}>> | undefined;
|
|
2869
2869
|
} | undefined;
|
|
2870
2870
|
proxyUrl?: string | undefined;
|
|
2871
2871
|
}[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<{
|
|
2872
2872
|
uid: string;
|
|
2873
|
-
description: string;
|
|
2874
2873
|
name: string;
|
|
2874
|
+
description: string;
|
|
2875
2875
|
isReadOnly: boolean;
|
|
2876
2876
|
collectionUids: string[];
|
|
2877
2877
|
environmentUids: string[];
|
|
2878
2878
|
cookieUids: string[];
|
|
2879
2879
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2880
2880
|
hotKeyConfig?: {
|
|
2881
|
-
modifiers: ("
|
|
2882
|
-
hotKeys?: Partial<Record<"" | "
|
|
2881
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2882
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2883
2883
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2884
|
-
modifiers?: ("
|
|
2884
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2885
2885
|
}>> | undefined;
|
|
2886
2886
|
} | undefined;
|
|
2887
2887
|
proxyUrl?: string | undefined;
|
|
2888
2888
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2889
2889
|
uid: string;
|
|
2890
|
-
description: string;
|
|
2891
2890
|
name: string;
|
|
2891
|
+
description: string;
|
|
2892
2892
|
isReadOnly: boolean;
|
|
2893
2893
|
collectionUids: string[];
|
|
2894
2894
|
environmentUids: string[];
|
|
2895
2895
|
cookieUids: string[];
|
|
2896
2896
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2897
2897
|
hotKeyConfig?: {
|
|
2898
|
-
modifiers: ("
|
|
2899
|
-
hotKeys?: Partial<Record<"" | "
|
|
2898
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2899
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2900
2900
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2901
|
-
modifiers?: ("
|
|
2901
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2902
2902
|
}>> | undefined;
|
|
2903
2903
|
} | undefined;
|
|
2904
2904
|
proxyUrl?: string | undefined;
|
|
2905
2905
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2906
|
-
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" ? {
|
|
2906
|
+
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" ? {
|
|
2907
2907
|
uid: string;
|
|
2908
|
-
description: string;
|
|
2909
2908
|
name: string;
|
|
2909
|
+
description: string;
|
|
2910
2910
|
isReadOnly: boolean;
|
|
2911
2911
|
collectionUids: string[];
|
|
2912
2912
|
environmentUids: string[];
|
|
2913
2913
|
cookieUids: string[];
|
|
2914
2914
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2915
2915
|
hotKeyConfig?: {
|
|
2916
|
-
modifiers: ("
|
|
2917
|
-
hotKeys?: Partial<Record<"" | "
|
|
2916
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2917
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2918
2918
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2919
|
-
modifiers?: ("
|
|
2919
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2920
2920
|
}>> | undefined;
|
|
2921
2921
|
} | undefined;
|
|
2922
2922
|
proxyUrl?: string | undefined;
|
|
2923
2923
|
}[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<{
|
|
2924
2924
|
uid: string;
|
|
2925
|
-
description: string;
|
|
2926
2925
|
name: string;
|
|
2926
|
+
description: string;
|
|
2927
2927
|
isReadOnly: boolean;
|
|
2928
2928
|
collectionUids: string[];
|
|
2929
2929
|
environmentUids: string[];
|
|
2930
2930
|
cookieUids: string[];
|
|
2931
2931
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2932
2932
|
hotKeyConfig?: {
|
|
2933
|
-
modifiers: ("
|
|
2934
|
-
hotKeys?: Partial<Record<"" | "
|
|
2933
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2934
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2935
2935
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2936
|
-
modifiers?: ("
|
|
2936
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2937
2937
|
}>> | undefined;
|
|
2938
2938
|
} | undefined;
|
|
2939
2939
|
proxyUrl?: string | undefined;
|
|
2940
2940
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2941
2941
|
uid: string;
|
|
2942
|
-
description: string;
|
|
2943
2942
|
name: string;
|
|
2943
|
+
description: string;
|
|
2944
2944
|
isReadOnly: boolean;
|
|
2945
2945
|
collectionUids: string[];
|
|
2946
2946
|
environmentUids: string[];
|
|
2947
2947
|
cookieUids: string[];
|
|
2948
2948
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2949
2949
|
hotKeyConfig?: {
|
|
2950
|
-
modifiers: ("
|
|
2951
|
-
hotKeys?: Partial<Record<"" | "
|
|
2950
|
+
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2951
|
+
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2952
2952
|
event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
|
|
2953
|
-
modifiers?: ("
|
|
2953
|
+
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2954
2954
|
}>> | undefined;
|
|
2955
2955
|
} | undefined;
|
|
2956
2956
|
proxyUrl?: string | undefined;
|