@scalar/api-client 2.0.54 → 2.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +6 -6
- package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts.map +1 -1
- package/dist/components/CommandPalette/TheCommandPalette.vue.js +4 -4
- package/dist/components/CommandPalette/TheCommandPalette.vue2.js +45 -45
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/components/Search/useSearch.d.ts +29 -0
- package/dist/components/Search/useSearch.d.ts.map +1 -0
- package/dist/components/Search/useSearch.js +62 -0
- package/dist/layouts/App/create-api-client-app.d.ts +260 -260
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +520 -520
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +260 -260
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.d.ts +3 -3
- package/dist/libs/event-busses/hot-keys-bus.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.js +17 -16
- package/dist/libs/local-storage.js +1 -1
- package/dist/store/workspace.d.ts +520 -520
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/views/Request/Request.vue.d.ts.map +1 -1
- package/dist/views/Request/Request.vue.js +2 -2
- package/dist/views/Request/Request.vue2.js +259 -215
- package/dist/views/Request/RequestSection/RequestParams.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestParams.vue.js +45 -41
- package/dist/views/Request/RequestSection/RequestTableTooltip.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestTableTooltip.vue.js +31 -25
- package/package.json +5 -5
- package/dist/components/Search/SearchButton.vue.js +0 -7
- package/dist/components/Search/SearchButton.vue2.js +0 -30
|
@@ -31,7 +31,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
31
31
|
hotKeyConfig?: {
|
|
32
32
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
33
33
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
34
|
-
event: "closeModal" | "
|
|
34
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
35
35
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
36
36
|
}>> | undefined;
|
|
37
37
|
} | undefined;
|
|
@@ -111,6 +111,34 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
111
111
|
uid: string;
|
|
112
112
|
name: string;
|
|
113
113
|
url: string;
|
|
114
|
+
requestUid: string;
|
|
115
|
+
body: {
|
|
116
|
+
raw: {
|
|
117
|
+
value: string;
|
|
118
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
119
|
+
};
|
|
120
|
+
formData: {
|
|
121
|
+
value: {
|
|
122
|
+
value: string;
|
|
123
|
+
key: string;
|
|
124
|
+
enabled: boolean;
|
|
125
|
+
minimum?: number | undefined;
|
|
126
|
+
type?: string | undefined;
|
|
127
|
+
maximum?: number | undefined;
|
|
128
|
+
default?: any;
|
|
129
|
+
required?: boolean | undefined;
|
|
130
|
+
description?: string | undefined;
|
|
131
|
+
enum?: string[] | undefined;
|
|
132
|
+
file?: any;
|
|
133
|
+
refUid?: string | undefined;
|
|
134
|
+
format?: string | undefined;
|
|
135
|
+
nullable?: boolean | undefined;
|
|
136
|
+
}[];
|
|
137
|
+
encoding: "form-data" | "urlencoded";
|
|
138
|
+
};
|
|
139
|
+
activeBody: "raw" | "formData" | "binary";
|
|
140
|
+
binary?: File | undefined;
|
|
141
|
+
};
|
|
114
142
|
parameters: {
|
|
115
143
|
path: {
|
|
116
144
|
value: string;
|
|
@@ -123,10 +151,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
123
151
|
required?: boolean | undefined;
|
|
124
152
|
description?: string | undefined;
|
|
125
153
|
enum?: string[] | undefined;
|
|
126
|
-
nullable?: boolean | undefined;
|
|
127
|
-
format?: string | undefined;
|
|
128
154
|
file?: any;
|
|
129
155
|
refUid?: string | undefined;
|
|
156
|
+
format?: string | undefined;
|
|
157
|
+
nullable?: boolean | undefined;
|
|
130
158
|
}[];
|
|
131
159
|
query: {
|
|
132
160
|
value: string;
|
|
@@ -139,10 +167,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
139
167
|
required?: boolean | undefined;
|
|
140
168
|
description?: string | undefined;
|
|
141
169
|
enum?: string[] | undefined;
|
|
142
|
-
nullable?: boolean | undefined;
|
|
143
|
-
format?: string | undefined;
|
|
144
170
|
file?: any;
|
|
145
171
|
refUid?: string | undefined;
|
|
172
|
+
format?: string | undefined;
|
|
173
|
+
nullable?: boolean | undefined;
|
|
146
174
|
}[];
|
|
147
175
|
headers: {
|
|
148
176
|
value: string;
|
|
@@ -155,10 +183,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
155
183
|
required?: boolean | undefined;
|
|
156
184
|
description?: string | undefined;
|
|
157
185
|
enum?: string[] | undefined;
|
|
158
|
-
nullable?: boolean | undefined;
|
|
159
|
-
format?: string | undefined;
|
|
160
186
|
file?: any;
|
|
161
187
|
refUid?: string | undefined;
|
|
188
|
+
format?: string | undefined;
|
|
189
|
+
nullable?: boolean | undefined;
|
|
162
190
|
}[];
|
|
163
191
|
cookies: {
|
|
164
192
|
value: string;
|
|
@@ -171,40 +199,12 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
171
199
|
required?: boolean | undefined;
|
|
172
200
|
description?: string | undefined;
|
|
173
201
|
enum?: string[] | undefined;
|
|
174
|
-
nullable?: boolean | undefined;
|
|
175
|
-
format?: string | undefined;
|
|
176
202
|
file?: any;
|
|
177
203
|
refUid?: string | undefined;
|
|
204
|
+
format?: string | undefined;
|
|
205
|
+
nullable?: boolean | undefined;
|
|
178
206
|
}[];
|
|
179
207
|
};
|
|
180
|
-
requestUid: string;
|
|
181
|
-
body: {
|
|
182
|
-
raw: {
|
|
183
|
-
value: string;
|
|
184
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
185
|
-
};
|
|
186
|
-
formData: {
|
|
187
|
-
value: {
|
|
188
|
-
value: string;
|
|
189
|
-
key: string;
|
|
190
|
-
enabled: boolean;
|
|
191
|
-
minimum?: number | undefined;
|
|
192
|
-
type?: string | undefined;
|
|
193
|
-
maximum?: number | undefined;
|
|
194
|
-
default?: any;
|
|
195
|
-
required?: boolean | undefined;
|
|
196
|
-
description?: string | undefined;
|
|
197
|
-
enum?: string[] | undefined;
|
|
198
|
-
nullable?: boolean | undefined;
|
|
199
|
-
format?: string | undefined;
|
|
200
|
-
file?: any;
|
|
201
|
-
refUid?: string | undefined;
|
|
202
|
-
}[];
|
|
203
|
-
encoding: "form-data" | "urlencoded";
|
|
204
|
-
};
|
|
205
|
-
activeBody: "raw" | "formData" | "binary";
|
|
206
|
-
binary?: File | undefined;
|
|
207
|
-
};
|
|
208
208
|
auth: Record<string, any>;
|
|
209
209
|
}>;
|
|
210
210
|
requests: Record<string, import("@scalar/oas-utils/entities/workspace/spec").Request>;
|
|
@@ -332,6 +332,34 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
332
332
|
uid: string;
|
|
333
333
|
name: string;
|
|
334
334
|
url: string;
|
|
335
|
+
requestUid: string;
|
|
336
|
+
body: {
|
|
337
|
+
raw: {
|
|
338
|
+
value: string;
|
|
339
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
340
|
+
};
|
|
341
|
+
formData: {
|
|
342
|
+
value: {
|
|
343
|
+
value: string;
|
|
344
|
+
key: string;
|
|
345
|
+
enabled: boolean;
|
|
346
|
+
minimum?: number | undefined;
|
|
347
|
+
type?: string | undefined;
|
|
348
|
+
maximum?: number | undefined;
|
|
349
|
+
default?: any;
|
|
350
|
+
required?: boolean | undefined;
|
|
351
|
+
description?: string | undefined;
|
|
352
|
+
enum?: string[] | undefined;
|
|
353
|
+
file?: any;
|
|
354
|
+
refUid?: string | undefined;
|
|
355
|
+
format?: string | undefined;
|
|
356
|
+
nullable?: boolean | undefined;
|
|
357
|
+
}[];
|
|
358
|
+
encoding: "form-data" | "urlencoded";
|
|
359
|
+
};
|
|
360
|
+
activeBody: "raw" | "formData" | "binary";
|
|
361
|
+
binary?: File | undefined;
|
|
362
|
+
};
|
|
335
363
|
parameters: {
|
|
336
364
|
path: {
|
|
337
365
|
value: string;
|
|
@@ -344,10 +372,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
344
372
|
required?: boolean | undefined;
|
|
345
373
|
description?: string | undefined;
|
|
346
374
|
enum?: string[] | undefined;
|
|
347
|
-
nullable?: boolean | undefined;
|
|
348
|
-
format?: string | undefined;
|
|
349
375
|
file?: any;
|
|
350
376
|
refUid?: string | undefined;
|
|
377
|
+
format?: string | undefined;
|
|
378
|
+
nullable?: boolean | undefined;
|
|
351
379
|
}[];
|
|
352
380
|
query: {
|
|
353
381
|
value: string;
|
|
@@ -360,10 +388,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
360
388
|
required?: boolean | undefined;
|
|
361
389
|
description?: string | undefined;
|
|
362
390
|
enum?: string[] | undefined;
|
|
363
|
-
nullable?: boolean | undefined;
|
|
364
|
-
format?: string | undefined;
|
|
365
391
|
file?: any;
|
|
366
392
|
refUid?: string | undefined;
|
|
393
|
+
format?: string | undefined;
|
|
394
|
+
nullable?: boolean | undefined;
|
|
367
395
|
}[];
|
|
368
396
|
headers: {
|
|
369
397
|
value: string;
|
|
@@ -376,10 +404,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
376
404
|
required?: boolean | undefined;
|
|
377
405
|
description?: string | undefined;
|
|
378
406
|
enum?: string[] | undefined;
|
|
379
|
-
nullable?: boolean | undefined;
|
|
380
|
-
format?: string | undefined;
|
|
381
407
|
file?: any;
|
|
382
408
|
refUid?: string | undefined;
|
|
409
|
+
format?: string | undefined;
|
|
410
|
+
nullable?: boolean | undefined;
|
|
383
411
|
}[];
|
|
384
412
|
cookies: {
|
|
385
413
|
value: string;
|
|
@@ -392,40 +420,12 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
392
420
|
required?: boolean | undefined;
|
|
393
421
|
description?: string | undefined;
|
|
394
422
|
enum?: string[] | undefined;
|
|
395
|
-
nullable?: boolean | undefined;
|
|
396
|
-
format?: string | undefined;
|
|
397
423
|
file?: any;
|
|
398
424
|
refUid?: string | undefined;
|
|
425
|
+
format?: string | undefined;
|
|
426
|
+
nullable?: boolean | undefined;
|
|
399
427
|
}[];
|
|
400
428
|
};
|
|
401
|
-
requestUid: string;
|
|
402
|
-
body: {
|
|
403
|
-
raw: {
|
|
404
|
-
value: string;
|
|
405
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
406
|
-
};
|
|
407
|
-
formData: {
|
|
408
|
-
value: {
|
|
409
|
-
value: string;
|
|
410
|
-
key: string;
|
|
411
|
-
enabled: boolean;
|
|
412
|
-
minimum?: number | undefined;
|
|
413
|
-
type?: string | undefined;
|
|
414
|
-
maximum?: number | undefined;
|
|
415
|
-
default?: any;
|
|
416
|
-
required?: boolean | undefined;
|
|
417
|
-
description?: string | undefined;
|
|
418
|
-
enum?: string[] | undefined;
|
|
419
|
-
nullable?: boolean | undefined;
|
|
420
|
-
format?: string | undefined;
|
|
421
|
-
file?: any;
|
|
422
|
-
refUid?: string | undefined;
|
|
423
|
-
}[];
|
|
424
|
-
encoding: "form-data" | "urlencoded";
|
|
425
|
-
};
|
|
426
|
-
activeBody: "raw" | "formData" | "binary";
|
|
427
|
-
binary?: File | undefined;
|
|
428
|
-
};
|
|
429
429
|
auth: Record<string, any>;
|
|
430
430
|
}>;
|
|
431
431
|
activeRequest: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request>;
|
|
@@ -531,7 +531,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
531
531
|
hotKeyConfig?: {
|
|
532
532
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
533
533
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
534
|
-
event: "closeModal" | "
|
|
534
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
535
535
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
536
536
|
}>> | undefined;
|
|
537
537
|
} | undefined;
|
|
@@ -1249,8 +1249,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1249
1249
|
};
|
|
1250
1250
|
delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid?: string) => void;
|
|
1251
1251
|
set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
1252
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1253
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1252
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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;
|
|
1253
|
+
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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;
|
|
1254
1254
|
undo: (uid: string) => void;
|
|
1255
1255
|
redo: (uid: string) => void;
|
|
1256
1256
|
loadLocalStorage: () => void;
|
|
@@ -1260,6 +1260,34 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1260
1260
|
uid: string;
|
|
1261
1261
|
name: string;
|
|
1262
1262
|
url: string;
|
|
1263
|
+
requestUid: string;
|
|
1264
|
+
body: {
|
|
1265
|
+
raw: {
|
|
1266
|
+
value: string;
|
|
1267
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1268
|
+
};
|
|
1269
|
+
formData: {
|
|
1270
|
+
value: {
|
|
1271
|
+
value: string;
|
|
1272
|
+
key: string;
|
|
1273
|
+
enabled: boolean;
|
|
1274
|
+
minimum?: number | undefined;
|
|
1275
|
+
type?: string | undefined;
|
|
1276
|
+
maximum?: number | undefined;
|
|
1277
|
+
default?: any;
|
|
1278
|
+
required?: boolean | undefined;
|
|
1279
|
+
description?: string | undefined;
|
|
1280
|
+
enum?: string[] | undefined;
|
|
1281
|
+
file?: any;
|
|
1282
|
+
refUid?: string | undefined;
|
|
1283
|
+
format?: string | undefined;
|
|
1284
|
+
nullable?: boolean | undefined;
|
|
1285
|
+
}[];
|
|
1286
|
+
encoding: "form-data" | "urlencoded";
|
|
1287
|
+
};
|
|
1288
|
+
activeBody: "raw" | "formData" | "binary";
|
|
1289
|
+
binary?: File | undefined;
|
|
1290
|
+
};
|
|
1263
1291
|
parameters: {
|
|
1264
1292
|
path: {
|
|
1265
1293
|
value: string;
|
|
@@ -1272,10 +1300,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1272
1300
|
required?: boolean | undefined;
|
|
1273
1301
|
description?: string | undefined;
|
|
1274
1302
|
enum?: string[] | undefined;
|
|
1275
|
-
nullable?: boolean | undefined;
|
|
1276
|
-
format?: string | undefined;
|
|
1277
1303
|
file?: any;
|
|
1278
1304
|
refUid?: string | undefined;
|
|
1305
|
+
format?: string | undefined;
|
|
1306
|
+
nullable?: boolean | undefined;
|
|
1279
1307
|
}[];
|
|
1280
1308
|
query: {
|
|
1281
1309
|
value: string;
|
|
@@ -1288,10 +1316,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1288
1316
|
required?: boolean | undefined;
|
|
1289
1317
|
description?: string | undefined;
|
|
1290
1318
|
enum?: string[] | undefined;
|
|
1291
|
-
nullable?: boolean | undefined;
|
|
1292
|
-
format?: string | undefined;
|
|
1293
1319
|
file?: any;
|
|
1294
1320
|
refUid?: string | undefined;
|
|
1321
|
+
format?: string | undefined;
|
|
1322
|
+
nullable?: boolean | undefined;
|
|
1295
1323
|
}[];
|
|
1296
1324
|
headers: {
|
|
1297
1325
|
value: string;
|
|
@@ -1304,10 +1332,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1304
1332
|
required?: boolean | undefined;
|
|
1305
1333
|
description?: string | undefined;
|
|
1306
1334
|
enum?: string[] | undefined;
|
|
1307
|
-
nullable?: boolean | undefined;
|
|
1308
|
-
format?: string | undefined;
|
|
1309
1335
|
file?: any;
|
|
1310
1336
|
refUid?: string | undefined;
|
|
1337
|
+
format?: string | undefined;
|
|
1338
|
+
nullable?: boolean | undefined;
|
|
1311
1339
|
}[];
|
|
1312
1340
|
cookies: {
|
|
1313
1341
|
value: string;
|
|
@@ -1320,17 +1348,23 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1320
1348
|
required?: boolean | undefined;
|
|
1321
1349
|
description?: string | undefined;
|
|
1322
1350
|
enum?: string[] | undefined;
|
|
1323
|
-
nullable?: boolean | undefined;
|
|
1324
|
-
format?: string | undefined;
|
|
1325
1351
|
file?: any;
|
|
1326
1352
|
refUid?: string | undefined;
|
|
1353
|
+
format?: string | undefined;
|
|
1354
|
+
nullable?: boolean | undefined;
|
|
1327
1355
|
}[];
|
|
1328
1356
|
};
|
|
1357
|
+
auth: Record<string, any>;
|
|
1358
|
+
}) => void;
|
|
1359
|
+
add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
|
|
1360
|
+
uid: string;
|
|
1361
|
+
name: string;
|
|
1362
|
+
url: string;
|
|
1329
1363
|
requestUid: string;
|
|
1330
1364
|
body: {
|
|
1331
1365
|
raw: {
|
|
1332
1366
|
value: string;
|
|
1333
|
-
encoding: "
|
|
1367
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1334
1368
|
};
|
|
1335
1369
|
formData: {
|
|
1336
1370
|
value: {
|
|
@@ -1344,22 +1378,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1344
1378
|
required?: boolean | undefined;
|
|
1345
1379
|
description?: string | undefined;
|
|
1346
1380
|
enum?: string[] | undefined;
|
|
1347
|
-
nullable?: boolean | undefined;
|
|
1348
|
-
format?: string | undefined;
|
|
1349
1381
|
file?: any;
|
|
1350
1382
|
refUid?: string | undefined;
|
|
1383
|
+
format?: string | undefined;
|
|
1384
|
+
nullable?: boolean | undefined;
|
|
1351
1385
|
}[];
|
|
1352
1386
|
encoding: "form-data" | "urlencoded";
|
|
1353
1387
|
};
|
|
1354
1388
|
activeBody: "raw" | "formData" | "binary";
|
|
1355
1389
|
binary?: File | undefined;
|
|
1356
1390
|
};
|
|
1357
|
-
auth: Record<string, any>;
|
|
1358
|
-
}) => void;
|
|
1359
|
-
add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
|
|
1360
|
-
uid: string;
|
|
1361
|
-
name: string;
|
|
1362
|
-
url: string;
|
|
1363
1391
|
parameters: {
|
|
1364
1392
|
path: {
|
|
1365
1393
|
value: string;
|
|
@@ -1372,10 +1400,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1372
1400
|
required?: boolean | undefined;
|
|
1373
1401
|
description?: string | undefined;
|
|
1374
1402
|
enum?: string[] | undefined;
|
|
1375
|
-
nullable?: boolean | undefined;
|
|
1376
|
-
format?: string | undefined;
|
|
1377
1403
|
file?: any;
|
|
1378
1404
|
refUid?: string | undefined;
|
|
1405
|
+
format?: string | undefined;
|
|
1406
|
+
nullable?: boolean | undefined;
|
|
1379
1407
|
}[];
|
|
1380
1408
|
query: {
|
|
1381
1409
|
value: string;
|
|
@@ -1388,10 +1416,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1388
1416
|
required?: boolean | undefined;
|
|
1389
1417
|
description?: string | undefined;
|
|
1390
1418
|
enum?: string[] | undefined;
|
|
1391
|
-
nullable?: boolean | undefined;
|
|
1392
|
-
format?: string | undefined;
|
|
1393
1419
|
file?: any;
|
|
1394
1420
|
refUid?: string | undefined;
|
|
1421
|
+
format?: string | undefined;
|
|
1422
|
+
nullable?: boolean | undefined;
|
|
1395
1423
|
}[];
|
|
1396
1424
|
headers: {
|
|
1397
1425
|
value: string;
|
|
@@ -1404,10 +1432,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1404
1432
|
required?: boolean | undefined;
|
|
1405
1433
|
description?: string | undefined;
|
|
1406
1434
|
enum?: string[] | undefined;
|
|
1407
|
-
nullable?: boolean | undefined;
|
|
1408
|
-
format?: string | undefined;
|
|
1409
1435
|
file?: any;
|
|
1410
1436
|
refUid?: string | undefined;
|
|
1437
|
+
format?: string | undefined;
|
|
1438
|
+
nullable?: boolean | undefined;
|
|
1411
1439
|
}[];
|
|
1412
1440
|
cookies: {
|
|
1413
1441
|
value: string;
|
|
@@ -1420,17 +1448,24 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1420
1448
|
required?: boolean | undefined;
|
|
1421
1449
|
description?: string | undefined;
|
|
1422
1450
|
enum?: string[] | undefined;
|
|
1423
|
-
nullable?: boolean | undefined;
|
|
1424
|
-
format?: string | undefined;
|
|
1425
1451
|
file?: any;
|
|
1426
1452
|
refUid?: string | undefined;
|
|
1453
|
+
format?: string | undefined;
|
|
1454
|
+
nullable?: boolean | undefined;
|
|
1427
1455
|
}[];
|
|
1428
1456
|
};
|
|
1457
|
+
auth: Record<string, any>;
|
|
1458
|
+
};
|
|
1459
|
+
delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
|
|
1460
|
+
set: (item: {
|
|
1461
|
+
uid: string;
|
|
1462
|
+
name: string;
|
|
1463
|
+
url: string;
|
|
1429
1464
|
requestUid: string;
|
|
1430
1465
|
body: {
|
|
1431
1466
|
raw: {
|
|
1432
1467
|
value: string;
|
|
1433
|
-
encoding: "
|
|
1468
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1434
1469
|
};
|
|
1435
1470
|
formData: {
|
|
1436
1471
|
value: {
|
|
@@ -1444,23 +1479,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1444
1479
|
required?: boolean | undefined;
|
|
1445
1480
|
description?: string | undefined;
|
|
1446
1481
|
enum?: string[] | undefined;
|
|
1447
|
-
nullable?: boolean | undefined;
|
|
1448
|
-
format?: string | undefined;
|
|
1449
1482
|
file?: any;
|
|
1450
1483
|
refUid?: string | undefined;
|
|
1484
|
+
format?: string | undefined;
|
|
1485
|
+
nullable?: boolean | undefined;
|
|
1451
1486
|
}[];
|
|
1452
1487
|
encoding: "form-data" | "urlencoded";
|
|
1453
1488
|
};
|
|
1454
1489
|
activeBody: "raw" | "formData" | "binary";
|
|
1455
1490
|
binary?: File | undefined;
|
|
1456
1491
|
};
|
|
1457
|
-
auth: Record<string, any>;
|
|
1458
|
-
};
|
|
1459
|
-
delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
|
|
1460
|
-
set: (item: {
|
|
1461
|
-
uid: string;
|
|
1462
|
-
name: string;
|
|
1463
|
-
url: string;
|
|
1464
1492
|
parameters: {
|
|
1465
1493
|
path: {
|
|
1466
1494
|
value: string;
|
|
@@ -1473,10 +1501,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1473
1501
|
required?: boolean | undefined;
|
|
1474
1502
|
description?: string | undefined;
|
|
1475
1503
|
enum?: string[] | undefined;
|
|
1476
|
-
nullable?: boolean | undefined;
|
|
1477
|
-
format?: string | undefined;
|
|
1478
1504
|
file?: any;
|
|
1479
1505
|
refUid?: string | undefined;
|
|
1506
|
+
format?: string | undefined;
|
|
1507
|
+
nullable?: boolean | undefined;
|
|
1480
1508
|
}[];
|
|
1481
1509
|
query: {
|
|
1482
1510
|
value: string;
|
|
@@ -1489,10 +1517,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1489
1517
|
required?: boolean | undefined;
|
|
1490
1518
|
description?: string | undefined;
|
|
1491
1519
|
enum?: string[] | undefined;
|
|
1492
|
-
nullable?: boolean | undefined;
|
|
1493
|
-
format?: string | undefined;
|
|
1494
1520
|
file?: any;
|
|
1495
1521
|
refUid?: string | undefined;
|
|
1522
|
+
format?: string | undefined;
|
|
1523
|
+
nullable?: boolean | undefined;
|
|
1496
1524
|
}[];
|
|
1497
1525
|
headers: {
|
|
1498
1526
|
value: string;
|
|
@@ -1505,10 +1533,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1505
1533
|
required?: boolean | undefined;
|
|
1506
1534
|
description?: string | undefined;
|
|
1507
1535
|
enum?: string[] | undefined;
|
|
1508
|
-
nullable?: boolean | undefined;
|
|
1509
|
-
format?: string | undefined;
|
|
1510
1536
|
file?: any;
|
|
1511
1537
|
refUid?: string | undefined;
|
|
1538
|
+
format?: string | undefined;
|
|
1539
|
+
nullable?: boolean | undefined;
|
|
1512
1540
|
}[];
|
|
1513
1541
|
cookies: {
|
|
1514
1542
|
value: string;
|
|
@@ -1521,17 +1549,23 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1521
1549
|
required?: boolean | undefined;
|
|
1522
1550
|
description?: string | undefined;
|
|
1523
1551
|
enum?: string[] | undefined;
|
|
1524
|
-
nullable?: boolean | undefined;
|
|
1525
|
-
format?: string | undefined;
|
|
1526
1552
|
file?: any;
|
|
1527
1553
|
refUid?: string | undefined;
|
|
1554
|
+
format?: string | undefined;
|
|
1555
|
+
nullable?: boolean | undefined;
|
|
1528
1556
|
}[];
|
|
1529
1557
|
};
|
|
1558
|
+
auth: Record<string, any>;
|
|
1559
|
+
}) => void;
|
|
1560
|
+
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1561
|
+
uid: string;
|
|
1562
|
+
name: string;
|
|
1563
|
+
url: string;
|
|
1530
1564
|
requestUid: string;
|
|
1531
1565
|
body: {
|
|
1532
1566
|
raw: {
|
|
1533
1567
|
value: string;
|
|
1534
|
-
encoding: "
|
|
1568
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1535
1569
|
};
|
|
1536
1570
|
formData: {
|
|
1537
1571
|
value: {
|
|
@@ -1545,22 +1579,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1545
1579
|
required?: boolean | undefined;
|
|
1546
1580
|
description?: string | undefined;
|
|
1547
1581
|
enum?: string[] | undefined;
|
|
1548
|
-
nullable?: boolean | undefined;
|
|
1549
|
-
format?: string | undefined;
|
|
1550
1582
|
file?: any;
|
|
1551
1583
|
refUid?: string | undefined;
|
|
1584
|
+
format?: string | undefined;
|
|
1585
|
+
nullable?: boolean | undefined;
|
|
1552
1586
|
}[];
|
|
1553
1587
|
encoding: "form-data" | "urlencoded";
|
|
1554
1588
|
};
|
|
1555
1589
|
activeBody: "raw" | "formData" | "binary";
|
|
1556
1590
|
binary?: File | undefined;
|
|
1557
1591
|
};
|
|
1558
|
-
auth: Record<string, any>;
|
|
1559
|
-
}) => void;
|
|
1560
|
-
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" ? {
|
|
1561
|
-
uid: string;
|
|
1562
|
-
name: string;
|
|
1563
|
-
url: string;
|
|
1564
1592
|
parameters: {
|
|
1565
1593
|
path: {
|
|
1566
1594
|
value: string;
|
|
@@ -1573,10 +1601,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1573
1601
|
required?: boolean | undefined;
|
|
1574
1602
|
description?: string | undefined;
|
|
1575
1603
|
enum?: string[] | undefined;
|
|
1576
|
-
nullable?: boolean | undefined;
|
|
1577
|
-
format?: string | undefined;
|
|
1578
1604
|
file?: any;
|
|
1579
1605
|
refUid?: string | undefined;
|
|
1606
|
+
format?: string | undefined;
|
|
1607
|
+
nullable?: boolean | undefined;
|
|
1580
1608
|
}[];
|
|
1581
1609
|
query: {
|
|
1582
1610
|
value: string;
|
|
@@ -1589,10 +1617,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1589
1617
|
required?: boolean | undefined;
|
|
1590
1618
|
description?: string | undefined;
|
|
1591
1619
|
enum?: string[] | undefined;
|
|
1592
|
-
nullable?: boolean | undefined;
|
|
1593
|
-
format?: string | undefined;
|
|
1594
1620
|
file?: any;
|
|
1595
1621
|
refUid?: string | undefined;
|
|
1622
|
+
format?: string | undefined;
|
|
1623
|
+
nullable?: boolean | undefined;
|
|
1596
1624
|
}[];
|
|
1597
1625
|
headers: {
|
|
1598
1626
|
value: string;
|
|
@@ -1605,10 +1633,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1605
1633
|
required?: boolean | undefined;
|
|
1606
1634
|
description?: string | undefined;
|
|
1607
1635
|
enum?: string[] | undefined;
|
|
1608
|
-
nullable?: boolean | undefined;
|
|
1609
|
-
format?: string | undefined;
|
|
1610
1636
|
file?: any;
|
|
1611
1637
|
refUid?: string | undefined;
|
|
1638
|
+
format?: string | undefined;
|
|
1639
|
+
nullable?: boolean | undefined;
|
|
1612
1640
|
}[];
|
|
1613
1641
|
cookies: {
|
|
1614
1642
|
value: string;
|
|
@@ -1621,17 +1649,22 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1621
1649
|
required?: boolean | undefined;
|
|
1622
1650
|
description?: string | undefined;
|
|
1623
1651
|
enum?: string[] | undefined;
|
|
1624
|
-
nullable?: boolean | undefined;
|
|
1625
|
-
format?: string | undefined;
|
|
1626
1652
|
file?: any;
|
|
1627
1653
|
refUid?: string | undefined;
|
|
1654
|
+
format?: string | undefined;
|
|
1655
|
+
nullable?: boolean | undefined;
|
|
1628
1656
|
}[];
|
|
1629
1657
|
};
|
|
1658
|
+
auth: Record<string, any>;
|
|
1659
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1660
|
+
uid: string;
|
|
1661
|
+
name: string;
|
|
1662
|
+
url: string;
|
|
1630
1663
|
requestUid: string;
|
|
1631
1664
|
body: {
|
|
1632
1665
|
raw: {
|
|
1633
1666
|
value: string;
|
|
1634
|
-
encoding: "
|
|
1667
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1635
1668
|
};
|
|
1636
1669
|
formData: {
|
|
1637
1670
|
value: {
|
|
@@ -1645,21 +1678,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1645
1678
|
required?: boolean | undefined;
|
|
1646
1679
|
description?: string | undefined;
|
|
1647
1680
|
enum?: string[] | undefined;
|
|
1648
|
-
nullable?: boolean | undefined;
|
|
1649
|
-
format?: string | undefined;
|
|
1650
1681
|
file?: any;
|
|
1651
1682
|
refUid?: string | undefined;
|
|
1683
|
+
format?: string | undefined;
|
|
1684
|
+
nullable?: boolean | undefined;
|
|
1652
1685
|
}[];
|
|
1653
1686
|
encoding: "form-data" | "urlencoded";
|
|
1654
1687
|
};
|
|
1655
1688
|
activeBody: "raw" | "formData" | "binary";
|
|
1656
1689
|
binary?: File | undefined;
|
|
1657
1690
|
};
|
|
1658
|
-
auth: Record<string, any>;
|
|
1659
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1660
|
-
uid: string;
|
|
1661
|
-
name: string;
|
|
1662
|
-
url: string;
|
|
1663
1691
|
parameters: {
|
|
1664
1692
|
path: {
|
|
1665
1693
|
value: string;
|
|
@@ -1672,10 +1700,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1672
1700
|
required?: boolean | undefined;
|
|
1673
1701
|
description?: string | undefined;
|
|
1674
1702
|
enum?: string[] | undefined;
|
|
1675
|
-
nullable?: boolean | undefined;
|
|
1676
|
-
format?: string | undefined;
|
|
1677
1703
|
file?: any;
|
|
1678
1704
|
refUid?: string | undefined;
|
|
1705
|
+
format?: string | undefined;
|
|
1706
|
+
nullable?: boolean | undefined;
|
|
1679
1707
|
}[];
|
|
1680
1708
|
query: {
|
|
1681
1709
|
value: string;
|
|
@@ -1688,10 +1716,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1688
1716
|
required?: boolean | undefined;
|
|
1689
1717
|
description?: string | undefined;
|
|
1690
1718
|
enum?: string[] | undefined;
|
|
1691
|
-
nullable?: boolean | undefined;
|
|
1692
|
-
format?: string | undefined;
|
|
1693
1719
|
file?: any;
|
|
1694
1720
|
refUid?: string | undefined;
|
|
1721
|
+
format?: string | undefined;
|
|
1722
|
+
nullable?: boolean | undefined;
|
|
1695
1723
|
}[];
|
|
1696
1724
|
headers: {
|
|
1697
1725
|
value: string;
|
|
@@ -1704,10 +1732,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1704
1732
|
required?: boolean | undefined;
|
|
1705
1733
|
description?: string | undefined;
|
|
1706
1734
|
enum?: string[] | undefined;
|
|
1707
|
-
nullable?: boolean | undefined;
|
|
1708
|
-
format?: string | undefined;
|
|
1709
1735
|
file?: any;
|
|
1710
1736
|
refUid?: string | undefined;
|
|
1737
|
+
format?: string | undefined;
|
|
1738
|
+
nullable?: boolean | undefined;
|
|
1711
1739
|
}[];
|
|
1712
1740
|
cookies: {
|
|
1713
1741
|
value: string;
|
|
@@ -1720,17 +1748,22 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1720
1748
|
required?: boolean | undefined;
|
|
1721
1749
|
description?: string | undefined;
|
|
1722
1750
|
enum?: string[] | undefined;
|
|
1723
|
-
nullable?: boolean | undefined;
|
|
1724
|
-
format?: string | undefined;
|
|
1725
1751
|
file?: any;
|
|
1726
1752
|
refUid?: string | undefined;
|
|
1753
|
+
format?: string | undefined;
|
|
1754
|
+
nullable?: boolean | undefined;
|
|
1727
1755
|
}[];
|
|
1728
1756
|
};
|
|
1757
|
+
auth: Record<string, any>;
|
|
1758
|
+
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1759
|
+
uid: string;
|
|
1760
|
+
name: string;
|
|
1761
|
+
url: string;
|
|
1729
1762
|
requestUid: string;
|
|
1730
1763
|
body: {
|
|
1731
1764
|
raw: {
|
|
1732
1765
|
value: string;
|
|
1733
|
-
encoding: "
|
|
1766
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1734
1767
|
};
|
|
1735
1768
|
formData: {
|
|
1736
1769
|
value: {
|
|
@@ -1744,21 +1777,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1744
1777
|
required?: boolean | undefined;
|
|
1745
1778
|
description?: string | undefined;
|
|
1746
1779
|
enum?: string[] | undefined;
|
|
1747
|
-
nullable?: boolean | undefined;
|
|
1748
|
-
format?: string | undefined;
|
|
1749
1780
|
file?: any;
|
|
1750
1781
|
refUid?: string | undefined;
|
|
1782
|
+
format?: string | undefined;
|
|
1783
|
+
nullable?: boolean | undefined;
|
|
1751
1784
|
}[];
|
|
1752
1785
|
encoding: "form-data" | "urlencoded";
|
|
1753
1786
|
};
|
|
1754
1787
|
activeBody: "raw" | "formData" | "binary";
|
|
1755
1788
|
binary?: File | undefined;
|
|
1756
1789
|
};
|
|
1757
|
-
auth: Record<string, any>;
|
|
1758
|
-
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1759
|
-
uid: string;
|
|
1760
|
-
name: string;
|
|
1761
|
-
url: string;
|
|
1762
1790
|
parameters: {
|
|
1763
1791
|
path: {
|
|
1764
1792
|
value: string;
|
|
@@ -1771,10 +1799,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1771
1799
|
required?: boolean | undefined;
|
|
1772
1800
|
description?: string | undefined;
|
|
1773
1801
|
enum?: string[] | undefined;
|
|
1774
|
-
nullable?: boolean | undefined;
|
|
1775
|
-
format?: string | undefined;
|
|
1776
1802
|
file?: any;
|
|
1777
1803
|
refUid?: string | undefined;
|
|
1804
|
+
format?: string | undefined;
|
|
1805
|
+
nullable?: boolean | undefined;
|
|
1778
1806
|
}[];
|
|
1779
1807
|
query: {
|
|
1780
1808
|
value: string;
|
|
@@ -1787,10 +1815,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1787
1815
|
required?: boolean | undefined;
|
|
1788
1816
|
description?: string | undefined;
|
|
1789
1817
|
enum?: string[] | undefined;
|
|
1790
|
-
nullable?: boolean | undefined;
|
|
1791
|
-
format?: string | undefined;
|
|
1792
1818
|
file?: any;
|
|
1793
1819
|
refUid?: string | undefined;
|
|
1820
|
+
format?: string | undefined;
|
|
1821
|
+
nullable?: boolean | undefined;
|
|
1794
1822
|
}[];
|
|
1795
1823
|
headers: {
|
|
1796
1824
|
value: string;
|
|
@@ -1803,10 +1831,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1803
1831
|
required?: boolean | undefined;
|
|
1804
1832
|
description?: string | undefined;
|
|
1805
1833
|
enum?: string[] | undefined;
|
|
1806
|
-
nullable?: boolean | undefined;
|
|
1807
|
-
format?: string | undefined;
|
|
1808
1834
|
file?: any;
|
|
1809
1835
|
refUid?: string | undefined;
|
|
1836
|
+
format?: string | undefined;
|
|
1837
|
+
nullable?: boolean | undefined;
|
|
1810
1838
|
}[];
|
|
1811
1839
|
cookies: {
|
|
1812
1840
|
value: string;
|
|
@@ -1819,17 +1847,23 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1819
1847
|
required?: boolean | undefined;
|
|
1820
1848
|
description?: string | undefined;
|
|
1821
1849
|
enum?: string[] | undefined;
|
|
1822
|
-
nullable?: boolean | undefined;
|
|
1823
|
-
format?: string | undefined;
|
|
1824
1850
|
file?: any;
|
|
1825
1851
|
refUid?: string | undefined;
|
|
1852
|
+
format?: string | undefined;
|
|
1853
|
+
nullable?: boolean | undefined;
|
|
1826
1854
|
}[];
|
|
1827
1855
|
};
|
|
1856
|
+
auth: Record<string, any>;
|
|
1857
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1858
|
+
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1859
|
+
uid: string;
|
|
1860
|
+
name: string;
|
|
1861
|
+
url: string;
|
|
1828
1862
|
requestUid: string;
|
|
1829
1863
|
body: {
|
|
1830
1864
|
raw: {
|
|
1831
1865
|
value: string;
|
|
1832
|
-
encoding: "
|
|
1866
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1833
1867
|
};
|
|
1834
1868
|
formData: {
|
|
1835
1869
|
value: {
|
|
@@ -1843,22 +1877,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1843
1877
|
required?: boolean | undefined;
|
|
1844
1878
|
description?: string | undefined;
|
|
1845
1879
|
enum?: string[] | undefined;
|
|
1846
|
-
nullable?: boolean | undefined;
|
|
1847
|
-
format?: string | undefined;
|
|
1848
1880
|
file?: any;
|
|
1849
1881
|
refUid?: string | undefined;
|
|
1882
|
+
format?: string | undefined;
|
|
1883
|
+
nullable?: boolean | undefined;
|
|
1850
1884
|
}[];
|
|
1851
1885
|
encoding: "form-data" | "urlencoded";
|
|
1852
1886
|
};
|
|
1853
1887
|
activeBody: "raw" | "formData" | "binary";
|
|
1854
1888
|
binary?: File | undefined;
|
|
1855
1889
|
};
|
|
1856
|
-
auth: Record<string, any>;
|
|
1857
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1858
|
-
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" ? {
|
|
1859
|
-
uid: string;
|
|
1860
|
-
name: string;
|
|
1861
|
-
url: string;
|
|
1862
1890
|
parameters: {
|
|
1863
1891
|
path: {
|
|
1864
1892
|
value: string;
|
|
@@ -1871,10 +1899,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1871
1899
|
required?: boolean | undefined;
|
|
1872
1900
|
description?: string | undefined;
|
|
1873
1901
|
enum?: string[] | undefined;
|
|
1874
|
-
nullable?: boolean | undefined;
|
|
1875
|
-
format?: string | undefined;
|
|
1876
1902
|
file?: any;
|
|
1877
1903
|
refUid?: string | undefined;
|
|
1904
|
+
format?: string | undefined;
|
|
1905
|
+
nullable?: boolean | undefined;
|
|
1878
1906
|
}[];
|
|
1879
1907
|
query: {
|
|
1880
1908
|
value: string;
|
|
@@ -1887,10 +1915,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1887
1915
|
required?: boolean | undefined;
|
|
1888
1916
|
description?: string | undefined;
|
|
1889
1917
|
enum?: string[] | undefined;
|
|
1890
|
-
nullable?: boolean | undefined;
|
|
1891
|
-
format?: string | undefined;
|
|
1892
1918
|
file?: any;
|
|
1893
1919
|
refUid?: string | undefined;
|
|
1920
|
+
format?: string | undefined;
|
|
1921
|
+
nullable?: boolean | undefined;
|
|
1894
1922
|
}[];
|
|
1895
1923
|
headers: {
|
|
1896
1924
|
value: string;
|
|
@@ -1903,10 +1931,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1903
1931
|
required?: boolean | undefined;
|
|
1904
1932
|
description?: string | undefined;
|
|
1905
1933
|
enum?: string[] | undefined;
|
|
1906
|
-
nullable?: boolean | undefined;
|
|
1907
|
-
format?: string | undefined;
|
|
1908
1934
|
file?: any;
|
|
1909
1935
|
refUid?: string | undefined;
|
|
1936
|
+
format?: string | undefined;
|
|
1937
|
+
nullable?: boolean | undefined;
|
|
1910
1938
|
}[];
|
|
1911
1939
|
cookies: {
|
|
1912
1940
|
value: string;
|
|
@@ -1919,17 +1947,22 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1919
1947
|
required?: boolean | undefined;
|
|
1920
1948
|
description?: string | undefined;
|
|
1921
1949
|
enum?: string[] | undefined;
|
|
1922
|
-
nullable?: boolean | undefined;
|
|
1923
|
-
format?: string | undefined;
|
|
1924
1950
|
file?: any;
|
|
1925
1951
|
refUid?: string | undefined;
|
|
1952
|
+
format?: string | undefined;
|
|
1953
|
+
nullable?: boolean | undefined;
|
|
1926
1954
|
}[];
|
|
1927
1955
|
};
|
|
1956
|
+
auth: Record<string, any>;
|
|
1957
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1958
|
+
uid: string;
|
|
1959
|
+
name: string;
|
|
1960
|
+
url: string;
|
|
1928
1961
|
requestUid: string;
|
|
1929
1962
|
body: {
|
|
1930
1963
|
raw: {
|
|
1931
1964
|
value: string;
|
|
1932
|
-
encoding: "
|
|
1965
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1933
1966
|
};
|
|
1934
1967
|
formData: {
|
|
1935
1968
|
value: {
|
|
@@ -1943,21 +1976,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1943
1976
|
required?: boolean | undefined;
|
|
1944
1977
|
description?: string | undefined;
|
|
1945
1978
|
enum?: string[] | undefined;
|
|
1946
|
-
nullable?: boolean | undefined;
|
|
1947
|
-
format?: string | undefined;
|
|
1948
1979
|
file?: any;
|
|
1949
1980
|
refUid?: string | undefined;
|
|
1981
|
+
format?: string | undefined;
|
|
1982
|
+
nullable?: boolean | undefined;
|
|
1950
1983
|
}[];
|
|
1951
1984
|
encoding: "form-data" | "urlencoded";
|
|
1952
1985
|
};
|
|
1953
1986
|
activeBody: "raw" | "formData" | "binary";
|
|
1954
1987
|
binary?: File | undefined;
|
|
1955
1988
|
};
|
|
1956
|
-
auth: Record<string, any>;
|
|
1957
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1958
|
-
uid: string;
|
|
1959
|
-
name: string;
|
|
1960
|
-
url: string;
|
|
1961
1989
|
parameters: {
|
|
1962
1990
|
path: {
|
|
1963
1991
|
value: string;
|
|
@@ -1970,10 +1998,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1970
1998
|
required?: boolean | undefined;
|
|
1971
1999
|
description?: string | undefined;
|
|
1972
2000
|
enum?: string[] | undefined;
|
|
1973
|
-
nullable?: boolean | undefined;
|
|
1974
|
-
format?: string | undefined;
|
|
1975
2001
|
file?: any;
|
|
1976
2002
|
refUid?: string | undefined;
|
|
2003
|
+
format?: string | undefined;
|
|
2004
|
+
nullable?: boolean | undefined;
|
|
1977
2005
|
}[];
|
|
1978
2006
|
query: {
|
|
1979
2007
|
value: string;
|
|
@@ -1986,10 +2014,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1986
2014
|
required?: boolean | undefined;
|
|
1987
2015
|
description?: string | undefined;
|
|
1988
2016
|
enum?: string[] | undefined;
|
|
1989
|
-
nullable?: boolean | undefined;
|
|
1990
|
-
format?: string | undefined;
|
|
1991
2017
|
file?: any;
|
|
1992
2018
|
refUid?: string | undefined;
|
|
2019
|
+
format?: string | undefined;
|
|
2020
|
+
nullable?: boolean | undefined;
|
|
1993
2021
|
}[];
|
|
1994
2022
|
headers: {
|
|
1995
2023
|
value: string;
|
|
@@ -2002,10 +2030,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2002
2030
|
required?: boolean | undefined;
|
|
2003
2031
|
description?: string | undefined;
|
|
2004
2032
|
enum?: string[] | undefined;
|
|
2005
|
-
nullable?: boolean | undefined;
|
|
2006
|
-
format?: string | undefined;
|
|
2007
2033
|
file?: any;
|
|
2008
2034
|
refUid?: string | undefined;
|
|
2035
|
+
format?: string | undefined;
|
|
2036
|
+
nullable?: boolean | undefined;
|
|
2009
2037
|
}[];
|
|
2010
2038
|
cookies: {
|
|
2011
2039
|
value: string;
|
|
@@ -2018,17 +2046,22 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2018
2046
|
required?: boolean | undefined;
|
|
2019
2047
|
description?: string | undefined;
|
|
2020
2048
|
enum?: string[] | undefined;
|
|
2021
|
-
nullable?: boolean | undefined;
|
|
2022
|
-
format?: string | undefined;
|
|
2023
2049
|
file?: any;
|
|
2024
2050
|
refUid?: string | undefined;
|
|
2051
|
+
format?: string | undefined;
|
|
2052
|
+
nullable?: boolean | undefined;
|
|
2025
2053
|
}[];
|
|
2026
2054
|
};
|
|
2055
|
+
auth: Record<string, any>;
|
|
2056
|
+
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2057
|
+
uid: string;
|
|
2058
|
+
name: string;
|
|
2059
|
+
url: string;
|
|
2027
2060
|
requestUid: string;
|
|
2028
2061
|
body: {
|
|
2029
2062
|
raw: {
|
|
2030
2063
|
value: string;
|
|
2031
|
-
encoding: "
|
|
2064
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
2032
2065
|
};
|
|
2033
2066
|
formData: {
|
|
2034
2067
|
value: {
|
|
@@ -2042,21 +2075,16 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2042
2075
|
required?: boolean | undefined;
|
|
2043
2076
|
description?: string | undefined;
|
|
2044
2077
|
enum?: string[] | undefined;
|
|
2045
|
-
nullable?: boolean | undefined;
|
|
2046
|
-
format?: string | undefined;
|
|
2047
2078
|
file?: any;
|
|
2048
2079
|
refUid?: string | undefined;
|
|
2080
|
+
format?: string | undefined;
|
|
2081
|
+
nullable?: boolean | undefined;
|
|
2049
2082
|
}[];
|
|
2050
2083
|
encoding: "form-data" | "urlencoded";
|
|
2051
2084
|
};
|
|
2052
2085
|
activeBody: "raw" | "formData" | "binary";
|
|
2053
2086
|
binary?: File | undefined;
|
|
2054
2087
|
};
|
|
2055
|
-
auth: Record<string, any>;
|
|
2056
|
-
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2057
|
-
uid: string;
|
|
2058
|
-
name: string;
|
|
2059
|
-
url: string;
|
|
2060
2088
|
parameters: {
|
|
2061
2089
|
path: {
|
|
2062
2090
|
value: string;
|
|
@@ -2069,10 +2097,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2069
2097
|
required?: boolean | undefined;
|
|
2070
2098
|
description?: string | undefined;
|
|
2071
2099
|
enum?: string[] | undefined;
|
|
2072
|
-
nullable?: boolean | undefined;
|
|
2073
|
-
format?: string | undefined;
|
|
2074
2100
|
file?: any;
|
|
2075
2101
|
refUid?: string | undefined;
|
|
2102
|
+
format?: string | undefined;
|
|
2103
|
+
nullable?: boolean | undefined;
|
|
2076
2104
|
}[];
|
|
2077
2105
|
query: {
|
|
2078
2106
|
value: string;
|
|
@@ -2085,10 +2113,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2085
2113
|
required?: boolean | undefined;
|
|
2086
2114
|
description?: string | undefined;
|
|
2087
2115
|
enum?: string[] | undefined;
|
|
2088
|
-
nullable?: boolean | undefined;
|
|
2089
|
-
format?: string | undefined;
|
|
2090
2116
|
file?: any;
|
|
2091
2117
|
refUid?: string | undefined;
|
|
2118
|
+
format?: string | undefined;
|
|
2119
|
+
nullable?: boolean | undefined;
|
|
2092
2120
|
}[];
|
|
2093
2121
|
headers: {
|
|
2094
2122
|
value: string;
|
|
@@ -2101,10 +2129,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2101
2129
|
required?: boolean | undefined;
|
|
2102
2130
|
description?: string | undefined;
|
|
2103
2131
|
enum?: string[] | undefined;
|
|
2104
|
-
nullable?: boolean | undefined;
|
|
2105
|
-
format?: string | undefined;
|
|
2106
2132
|
file?: any;
|
|
2107
2133
|
refUid?: string | undefined;
|
|
2134
|
+
format?: string | undefined;
|
|
2135
|
+
nullable?: boolean | undefined;
|
|
2108
2136
|
}[];
|
|
2109
2137
|
cookies: {
|
|
2110
2138
|
value: string;
|
|
@@ -2117,40 +2145,12 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2117
2145
|
required?: boolean | undefined;
|
|
2118
2146
|
description?: string | undefined;
|
|
2119
2147
|
enum?: string[] | undefined;
|
|
2120
|
-
nullable?: boolean | undefined;
|
|
2121
|
-
format?: string | undefined;
|
|
2122
2148
|
file?: any;
|
|
2123
2149
|
refUid?: string | undefined;
|
|
2150
|
+
format?: string | undefined;
|
|
2151
|
+
nullable?: boolean | undefined;
|
|
2124
2152
|
}[];
|
|
2125
2153
|
};
|
|
2126
|
-
requestUid: string;
|
|
2127
|
-
body: {
|
|
2128
|
-
raw: {
|
|
2129
|
-
value: string;
|
|
2130
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2131
|
-
};
|
|
2132
|
-
formData: {
|
|
2133
|
-
value: {
|
|
2134
|
-
value: string;
|
|
2135
|
-
key: string;
|
|
2136
|
-
enabled: boolean;
|
|
2137
|
-
minimum?: number | undefined;
|
|
2138
|
-
type?: string | undefined;
|
|
2139
|
-
maximum?: number | undefined;
|
|
2140
|
-
default?: any;
|
|
2141
|
-
required?: boolean | undefined;
|
|
2142
|
-
description?: string | undefined;
|
|
2143
|
-
enum?: string[] | undefined;
|
|
2144
|
-
nullable?: boolean | undefined;
|
|
2145
|
-
format?: string | undefined;
|
|
2146
|
-
file?: any;
|
|
2147
|
-
refUid?: string | undefined;
|
|
2148
|
-
}[];
|
|
2149
|
-
encoding: "form-data" | "urlencoded";
|
|
2150
|
-
};
|
|
2151
|
-
activeBody: "raw" | "formData" | "binary";
|
|
2152
|
-
binary?: File | undefined;
|
|
2153
|
-
};
|
|
2154
2154
|
auth: Record<string, any>;
|
|
2155
2155
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2156
2156
|
undo: (uid: string) => void;
|
|
@@ -2295,7 +2295,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2295
2295
|
openIdConnectUrl: string;
|
|
2296
2296
|
description?: string | undefined;
|
|
2297
2297
|
}) => void;
|
|
2298
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2298
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? {
|
|
2299
2299
|
type: "apiKey";
|
|
2300
2300
|
value: string;
|
|
2301
2301
|
uid: string;
|
|
@@ -2303,7 +2303,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2303
2303
|
nameKey: string;
|
|
2304
2304
|
in: "query" | "header" | "cookie";
|
|
2305
2305
|
description?: string | undefined;
|
|
2306
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2306
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2307
2307
|
type: "apiKey";
|
|
2308
2308
|
value: string;
|
|
2309
2309
|
uid: string;
|
|
@@ -2494,7 +2494,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2494
2494
|
openIdConnectUrl: string;
|
|
2495
2495
|
description?: string | undefined;
|
|
2496
2496
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2497
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2497
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? {
|
|
2498
2498
|
type: "apiKey";
|
|
2499
2499
|
value: string;
|
|
2500
2500
|
uid: string;
|
|
@@ -2502,7 +2502,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2502
2502
|
nameKey: string;
|
|
2503
2503
|
in: "query" | "header" | "cookie";
|
|
2504
2504
|
description?: string | undefined;
|
|
2505
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2505
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2506
2506
|
type: "apiKey";
|
|
2507
2507
|
value: string;
|
|
2508
2508
|
uid: string;
|
|
@@ -2809,7 +2809,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2809
2809
|
hotKeyConfig?: {
|
|
2810
2810
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2811
2811
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2812
|
-
event: "closeModal" | "
|
|
2812
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2813
2813
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2814
2814
|
}>> | undefined;
|
|
2815
2815
|
} | undefined;
|
|
@@ -2827,7 +2827,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2827
2827
|
hotKeyConfig?: {
|
|
2828
2828
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2829
2829
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2830
|
-
event: "closeModal" | "
|
|
2830
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2831
2831
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2832
2832
|
}>> | undefined;
|
|
2833
2833
|
} | undefined;
|
|
@@ -2847,13 +2847,13 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2847
2847
|
hotKeyConfig?: {
|
|
2848
2848
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2849
2849
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2850
|
-
event: "closeModal" | "
|
|
2850
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2851
2851
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2852
2852
|
}>> | undefined;
|
|
2853
2853
|
} | undefined;
|
|
2854
2854
|
proxyUrl?: string | undefined;
|
|
2855
2855
|
}) => void;
|
|
2856
|
-
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" ? {
|
|
2856
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2857
2857
|
uid: string;
|
|
2858
2858
|
name: string;
|
|
2859
2859
|
description: string;
|
|
@@ -2865,7 +2865,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2865
2865
|
hotKeyConfig?: {
|
|
2866
2866
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2867
2867
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2868
|
-
event: "closeModal" | "
|
|
2868
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2869
2869
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2870
2870
|
}>> | undefined;
|
|
2871
2871
|
} | undefined;
|
|
@@ -2882,7 +2882,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2882
2882
|
hotKeyConfig?: {
|
|
2883
2883
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2884
2884
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2885
|
-
event: "closeModal" | "
|
|
2885
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2886
2886
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2887
2887
|
}>> | undefined;
|
|
2888
2888
|
} | undefined;
|
|
@@ -2899,13 +2899,13 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2899
2899
|
hotKeyConfig?: {
|
|
2900
2900
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2901
2901
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2902
|
-
event: "closeModal" | "
|
|
2902
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2903
2903
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2904
2904
|
}>> | undefined;
|
|
2905
2905
|
} | undefined;
|
|
2906
2906
|
proxyUrl?: string | undefined;
|
|
2907
2907
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2908
|
-
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" ? {
|
|
2908
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2909
2909
|
uid: string;
|
|
2910
2910
|
name: string;
|
|
2911
2911
|
description: string;
|
|
@@ -2917,7 +2917,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2917
2917
|
hotKeyConfig?: {
|
|
2918
2918
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2919
2919
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2920
|
-
event: "closeModal" | "
|
|
2920
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2921
2921
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2922
2922
|
}>> | undefined;
|
|
2923
2923
|
} | undefined;
|
|
@@ -2934,7 +2934,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2934
2934
|
hotKeyConfig?: {
|
|
2935
2935
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2936
2936
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2937
|
-
event: "closeModal" | "
|
|
2937
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2938
2938
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2939
2939
|
}>> | undefined;
|
|
2940
2940
|
} | undefined;
|
|
@@ -2951,7 +2951,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2951
2951
|
hotKeyConfig?: {
|
|
2952
2952
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2953
2953
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2954
|
-
event: "closeModal" | "
|
|
2954
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2955
2955
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
2956
2956
|
}>> | undefined;
|
|
2957
2957
|
} | undefined;
|
|
@@ -2995,7 +2995,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
2995
2995
|
hotKeyConfig?: {
|
|
2996
2996
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
2997
2997
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
2998
|
-
event: "closeModal" | "
|
|
2998
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
2999
2999
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
3000
3000
|
}>> | undefined;
|
|
3001
3001
|
} | undefined;
|
|
@@ -3075,6 +3075,34 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3075
3075
|
uid: string;
|
|
3076
3076
|
name: string;
|
|
3077
3077
|
url: string;
|
|
3078
|
+
requestUid: string;
|
|
3079
|
+
body: {
|
|
3080
|
+
raw: {
|
|
3081
|
+
value: string;
|
|
3082
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
3083
|
+
};
|
|
3084
|
+
formData: {
|
|
3085
|
+
value: {
|
|
3086
|
+
value: string;
|
|
3087
|
+
key: string;
|
|
3088
|
+
enabled: boolean;
|
|
3089
|
+
minimum?: number | undefined;
|
|
3090
|
+
type?: string | undefined;
|
|
3091
|
+
maximum?: number | undefined;
|
|
3092
|
+
default?: any;
|
|
3093
|
+
required?: boolean | undefined;
|
|
3094
|
+
description?: string | undefined;
|
|
3095
|
+
enum?: string[] | undefined;
|
|
3096
|
+
file?: any;
|
|
3097
|
+
refUid?: string | undefined;
|
|
3098
|
+
format?: string | undefined;
|
|
3099
|
+
nullable?: boolean | undefined;
|
|
3100
|
+
}[];
|
|
3101
|
+
encoding: "form-data" | "urlencoded";
|
|
3102
|
+
};
|
|
3103
|
+
activeBody: "raw" | "formData" | "binary";
|
|
3104
|
+
binary?: File | undefined;
|
|
3105
|
+
};
|
|
3078
3106
|
parameters: {
|
|
3079
3107
|
path: {
|
|
3080
3108
|
value: string;
|
|
@@ -3087,10 +3115,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3087
3115
|
required?: boolean | undefined;
|
|
3088
3116
|
description?: string | undefined;
|
|
3089
3117
|
enum?: string[] | undefined;
|
|
3090
|
-
nullable?: boolean | undefined;
|
|
3091
|
-
format?: string | undefined;
|
|
3092
3118
|
file?: any;
|
|
3093
3119
|
refUid?: string | undefined;
|
|
3120
|
+
format?: string | undefined;
|
|
3121
|
+
nullable?: boolean | undefined;
|
|
3094
3122
|
}[];
|
|
3095
3123
|
query: {
|
|
3096
3124
|
value: string;
|
|
@@ -3103,10 +3131,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3103
3131
|
required?: boolean | undefined;
|
|
3104
3132
|
description?: string | undefined;
|
|
3105
3133
|
enum?: string[] | undefined;
|
|
3106
|
-
nullable?: boolean | undefined;
|
|
3107
|
-
format?: string | undefined;
|
|
3108
3134
|
file?: any;
|
|
3109
3135
|
refUid?: string | undefined;
|
|
3136
|
+
format?: string | undefined;
|
|
3137
|
+
nullable?: boolean | undefined;
|
|
3110
3138
|
}[];
|
|
3111
3139
|
headers: {
|
|
3112
3140
|
value: string;
|
|
@@ -3119,10 +3147,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3119
3147
|
required?: boolean | undefined;
|
|
3120
3148
|
description?: string | undefined;
|
|
3121
3149
|
enum?: string[] | undefined;
|
|
3122
|
-
nullable?: boolean | undefined;
|
|
3123
|
-
format?: string | undefined;
|
|
3124
3150
|
file?: any;
|
|
3125
3151
|
refUid?: string | undefined;
|
|
3152
|
+
format?: string | undefined;
|
|
3153
|
+
nullable?: boolean | undefined;
|
|
3126
3154
|
}[];
|
|
3127
3155
|
cookies: {
|
|
3128
3156
|
value: string;
|
|
@@ -3135,40 +3163,12 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3135
3163
|
required?: boolean | undefined;
|
|
3136
3164
|
description?: string | undefined;
|
|
3137
3165
|
enum?: string[] | undefined;
|
|
3138
|
-
nullable?: boolean | undefined;
|
|
3139
|
-
format?: string | undefined;
|
|
3140
3166
|
file?: any;
|
|
3141
3167
|
refUid?: string | undefined;
|
|
3168
|
+
format?: string | undefined;
|
|
3169
|
+
nullable?: boolean | undefined;
|
|
3142
3170
|
}[];
|
|
3143
3171
|
};
|
|
3144
|
-
requestUid: string;
|
|
3145
|
-
body: {
|
|
3146
|
-
raw: {
|
|
3147
|
-
value: string;
|
|
3148
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
3149
|
-
};
|
|
3150
|
-
formData: {
|
|
3151
|
-
value: {
|
|
3152
|
-
value: string;
|
|
3153
|
-
key: string;
|
|
3154
|
-
enabled: boolean;
|
|
3155
|
-
minimum?: number | undefined;
|
|
3156
|
-
type?: string | undefined;
|
|
3157
|
-
maximum?: number | undefined;
|
|
3158
|
-
default?: any;
|
|
3159
|
-
required?: boolean | undefined;
|
|
3160
|
-
description?: string | undefined;
|
|
3161
|
-
enum?: string[] | undefined;
|
|
3162
|
-
nullable?: boolean | undefined;
|
|
3163
|
-
format?: string | undefined;
|
|
3164
|
-
file?: any;
|
|
3165
|
-
refUid?: string | undefined;
|
|
3166
|
-
}[];
|
|
3167
|
-
encoding: "form-data" | "urlencoded";
|
|
3168
|
-
};
|
|
3169
|
-
activeBody: "raw" | "formData" | "binary";
|
|
3170
|
-
binary?: File | undefined;
|
|
3171
|
-
};
|
|
3172
3172
|
auth: Record<string, any>;
|
|
3173
3173
|
}>;
|
|
3174
3174
|
requests: Record<string, import("@scalar/oas-utils/entities/workspace/spec").Request>;
|
|
@@ -3296,6 +3296,34 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3296
3296
|
uid: string;
|
|
3297
3297
|
name: string;
|
|
3298
3298
|
url: string;
|
|
3299
|
+
requestUid: string;
|
|
3300
|
+
body: {
|
|
3301
|
+
raw: {
|
|
3302
|
+
value: string;
|
|
3303
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
3304
|
+
};
|
|
3305
|
+
formData: {
|
|
3306
|
+
value: {
|
|
3307
|
+
value: string;
|
|
3308
|
+
key: string;
|
|
3309
|
+
enabled: boolean;
|
|
3310
|
+
minimum?: number | undefined;
|
|
3311
|
+
type?: string | undefined;
|
|
3312
|
+
maximum?: number | undefined;
|
|
3313
|
+
default?: any;
|
|
3314
|
+
required?: boolean | undefined;
|
|
3315
|
+
description?: string | undefined;
|
|
3316
|
+
enum?: string[] | undefined;
|
|
3317
|
+
file?: any;
|
|
3318
|
+
refUid?: string | undefined;
|
|
3319
|
+
format?: string | undefined;
|
|
3320
|
+
nullable?: boolean | undefined;
|
|
3321
|
+
}[];
|
|
3322
|
+
encoding: "form-data" | "urlencoded";
|
|
3323
|
+
};
|
|
3324
|
+
activeBody: "raw" | "formData" | "binary";
|
|
3325
|
+
binary?: File | undefined;
|
|
3326
|
+
};
|
|
3299
3327
|
parameters: {
|
|
3300
3328
|
path: {
|
|
3301
3329
|
value: string;
|
|
@@ -3308,10 +3336,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3308
3336
|
required?: boolean | undefined;
|
|
3309
3337
|
description?: string | undefined;
|
|
3310
3338
|
enum?: string[] | undefined;
|
|
3311
|
-
nullable?: boolean | undefined;
|
|
3312
|
-
format?: string | undefined;
|
|
3313
3339
|
file?: any;
|
|
3314
3340
|
refUid?: string | undefined;
|
|
3341
|
+
format?: string | undefined;
|
|
3342
|
+
nullable?: boolean | undefined;
|
|
3315
3343
|
}[];
|
|
3316
3344
|
query: {
|
|
3317
3345
|
value: string;
|
|
@@ -3324,10 +3352,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3324
3352
|
required?: boolean | undefined;
|
|
3325
3353
|
description?: string | undefined;
|
|
3326
3354
|
enum?: string[] | undefined;
|
|
3327
|
-
nullable?: boolean | undefined;
|
|
3328
|
-
format?: string | undefined;
|
|
3329
3355
|
file?: any;
|
|
3330
3356
|
refUid?: string | undefined;
|
|
3357
|
+
format?: string | undefined;
|
|
3358
|
+
nullable?: boolean | undefined;
|
|
3331
3359
|
}[];
|
|
3332
3360
|
headers: {
|
|
3333
3361
|
value: string;
|
|
@@ -3340,10 +3368,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3340
3368
|
required?: boolean | undefined;
|
|
3341
3369
|
description?: string | undefined;
|
|
3342
3370
|
enum?: string[] | undefined;
|
|
3343
|
-
nullable?: boolean | undefined;
|
|
3344
|
-
format?: string | undefined;
|
|
3345
3371
|
file?: any;
|
|
3346
3372
|
refUid?: string | undefined;
|
|
3373
|
+
format?: string | undefined;
|
|
3374
|
+
nullable?: boolean | undefined;
|
|
3347
3375
|
}[];
|
|
3348
3376
|
cookies: {
|
|
3349
3377
|
value: string;
|
|
@@ -3356,40 +3384,12 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3356
3384
|
required?: boolean | undefined;
|
|
3357
3385
|
description?: string | undefined;
|
|
3358
3386
|
enum?: string[] | undefined;
|
|
3359
|
-
nullable?: boolean | undefined;
|
|
3360
|
-
format?: string | undefined;
|
|
3361
3387
|
file?: any;
|
|
3362
3388
|
refUid?: string | undefined;
|
|
3389
|
+
format?: string | undefined;
|
|
3390
|
+
nullable?: boolean | undefined;
|
|
3363
3391
|
}[];
|
|
3364
3392
|
};
|
|
3365
|
-
requestUid: string;
|
|
3366
|
-
body: {
|
|
3367
|
-
raw: {
|
|
3368
|
-
value: string;
|
|
3369
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
3370
|
-
};
|
|
3371
|
-
formData: {
|
|
3372
|
-
value: {
|
|
3373
|
-
value: string;
|
|
3374
|
-
key: string;
|
|
3375
|
-
enabled: boolean;
|
|
3376
|
-
minimum?: number | undefined;
|
|
3377
|
-
type?: string | undefined;
|
|
3378
|
-
maximum?: number | undefined;
|
|
3379
|
-
default?: any;
|
|
3380
|
-
required?: boolean | undefined;
|
|
3381
|
-
description?: string | undefined;
|
|
3382
|
-
enum?: string[] | undefined;
|
|
3383
|
-
nullable?: boolean | undefined;
|
|
3384
|
-
format?: string | undefined;
|
|
3385
|
-
file?: any;
|
|
3386
|
-
refUid?: string | undefined;
|
|
3387
|
-
}[];
|
|
3388
|
-
encoding: "form-data" | "urlencoded";
|
|
3389
|
-
};
|
|
3390
|
-
activeBody: "raw" | "formData" | "binary";
|
|
3391
|
-
binary?: File | undefined;
|
|
3392
|
-
};
|
|
3393
3393
|
auth: Record<string, any>;
|
|
3394
3394
|
}>;
|
|
3395
3395
|
activeRequest: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request>;
|
|
@@ -3495,7 +3495,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3495
3495
|
hotKeyConfig?: {
|
|
3496
3496
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
3497
3497
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
3498
|
-
event: "closeModal" | "
|
|
3498
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
3499
3499
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
3500
3500
|
}>> | undefined;
|
|
3501
3501
|
} | undefined;
|
|
@@ -4213,8 +4213,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4213
4213
|
};
|
|
4214
4214
|
delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid?: string) => void;
|
|
4215
4215
|
set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
4216
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
4217
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
4216
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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;
|
|
4217
|
+
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? 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;
|
|
4218
4218
|
undo: (uid: string) => void;
|
|
4219
4219
|
redo: (uid: string) => void;
|
|
4220
4220
|
loadLocalStorage: () => void;
|
|
@@ -4224,6 +4224,34 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4224
4224
|
uid: string;
|
|
4225
4225
|
name: string;
|
|
4226
4226
|
url: string;
|
|
4227
|
+
requestUid: string;
|
|
4228
|
+
body: {
|
|
4229
|
+
raw: {
|
|
4230
|
+
value: string;
|
|
4231
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4232
|
+
};
|
|
4233
|
+
formData: {
|
|
4234
|
+
value: {
|
|
4235
|
+
value: string;
|
|
4236
|
+
key: string;
|
|
4237
|
+
enabled: boolean;
|
|
4238
|
+
minimum?: number | undefined;
|
|
4239
|
+
type?: string | undefined;
|
|
4240
|
+
maximum?: number | undefined;
|
|
4241
|
+
default?: any;
|
|
4242
|
+
required?: boolean | undefined;
|
|
4243
|
+
description?: string | undefined;
|
|
4244
|
+
enum?: string[] | undefined;
|
|
4245
|
+
file?: any;
|
|
4246
|
+
refUid?: string | undefined;
|
|
4247
|
+
format?: string | undefined;
|
|
4248
|
+
nullable?: boolean | undefined;
|
|
4249
|
+
}[];
|
|
4250
|
+
encoding: "form-data" | "urlencoded";
|
|
4251
|
+
};
|
|
4252
|
+
activeBody: "raw" | "formData" | "binary";
|
|
4253
|
+
binary?: File | undefined;
|
|
4254
|
+
};
|
|
4227
4255
|
parameters: {
|
|
4228
4256
|
path: {
|
|
4229
4257
|
value: string;
|
|
@@ -4236,10 +4264,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4236
4264
|
required?: boolean | undefined;
|
|
4237
4265
|
description?: string | undefined;
|
|
4238
4266
|
enum?: string[] | undefined;
|
|
4239
|
-
nullable?: boolean | undefined;
|
|
4240
|
-
format?: string | undefined;
|
|
4241
4267
|
file?: any;
|
|
4242
4268
|
refUid?: string | undefined;
|
|
4269
|
+
format?: string | undefined;
|
|
4270
|
+
nullable?: boolean | undefined;
|
|
4243
4271
|
}[];
|
|
4244
4272
|
query: {
|
|
4245
4273
|
value: string;
|
|
@@ -4252,10 +4280,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4252
4280
|
required?: boolean | undefined;
|
|
4253
4281
|
description?: string | undefined;
|
|
4254
4282
|
enum?: string[] | undefined;
|
|
4255
|
-
nullable?: boolean | undefined;
|
|
4256
|
-
format?: string | undefined;
|
|
4257
4283
|
file?: any;
|
|
4258
4284
|
refUid?: string | undefined;
|
|
4285
|
+
format?: string | undefined;
|
|
4286
|
+
nullable?: boolean | undefined;
|
|
4259
4287
|
}[];
|
|
4260
4288
|
headers: {
|
|
4261
4289
|
value: string;
|
|
@@ -4268,10 +4296,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4268
4296
|
required?: boolean | undefined;
|
|
4269
4297
|
description?: string | undefined;
|
|
4270
4298
|
enum?: string[] | undefined;
|
|
4271
|
-
nullable?: boolean | undefined;
|
|
4272
|
-
format?: string | undefined;
|
|
4273
4299
|
file?: any;
|
|
4274
4300
|
refUid?: string | undefined;
|
|
4301
|
+
format?: string | undefined;
|
|
4302
|
+
nullable?: boolean | undefined;
|
|
4275
4303
|
}[];
|
|
4276
4304
|
cookies: {
|
|
4277
4305
|
value: string;
|
|
@@ -4284,17 +4312,23 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4284
4312
|
required?: boolean | undefined;
|
|
4285
4313
|
description?: string | undefined;
|
|
4286
4314
|
enum?: string[] | undefined;
|
|
4287
|
-
nullable?: boolean | undefined;
|
|
4288
|
-
format?: string | undefined;
|
|
4289
4315
|
file?: any;
|
|
4290
4316
|
refUid?: string | undefined;
|
|
4317
|
+
format?: string | undefined;
|
|
4318
|
+
nullable?: boolean | undefined;
|
|
4291
4319
|
}[];
|
|
4292
4320
|
};
|
|
4321
|
+
auth: Record<string, any>;
|
|
4322
|
+
}) => void;
|
|
4323
|
+
add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
|
|
4324
|
+
uid: string;
|
|
4325
|
+
name: string;
|
|
4326
|
+
url: string;
|
|
4293
4327
|
requestUid: string;
|
|
4294
4328
|
body: {
|
|
4295
4329
|
raw: {
|
|
4296
4330
|
value: string;
|
|
4297
|
-
encoding: "
|
|
4331
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4298
4332
|
};
|
|
4299
4333
|
formData: {
|
|
4300
4334
|
value: {
|
|
@@ -4308,22 +4342,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4308
4342
|
required?: boolean | undefined;
|
|
4309
4343
|
description?: string | undefined;
|
|
4310
4344
|
enum?: string[] | undefined;
|
|
4311
|
-
nullable?: boolean | undefined;
|
|
4312
|
-
format?: string | undefined;
|
|
4313
4345
|
file?: any;
|
|
4314
4346
|
refUid?: string | undefined;
|
|
4347
|
+
format?: string | undefined;
|
|
4348
|
+
nullable?: boolean | undefined;
|
|
4315
4349
|
}[];
|
|
4316
4350
|
encoding: "form-data" | "urlencoded";
|
|
4317
4351
|
};
|
|
4318
4352
|
activeBody: "raw" | "formData" | "binary";
|
|
4319
4353
|
binary?: File | undefined;
|
|
4320
4354
|
};
|
|
4321
|
-
auth: Record<string, any>;
|
|
4322
|
-
}) => void;
|
|
4323
|
-
add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
|
|
4324
|
-
uid: string;
|
|
4325
|
-
name: string;
|
|
4326
|
-
url: string;
|
|
4327
4355
|
parameters: {
|
|
4328
4356
|
path: {
|
|
4329
4357
|
value: string;
|
|
@@ -4336,10 +4364,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4336
4364
|
required?: boolean | undefined;
|
|
4337
4365
|
description?: string | undefined;
|
|
4338
4366
|
enum?: string[] | undefined;
|
|
4339
|
-
nullable?: boolean | undefined;
|
|
4340
|
-
format?: string | undefined;
|
|
4341
4367
|
file?: any;
|
|
4342
4368
|
refUid?: string | undefined;
|
|
4369
|
+
format?: string | undefined;
|
|
4370
|
+
nullable?: boolean | undefined;
|
|
4343
4371
|
}[];
|
|
4344
4372
|
query: {
|
|
4345
4373
|
value: string;
|
|
@@ -4352,10 +4380,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4352
4380
|
required?: boolean | undefined;
|
|
4353
4381
|
description?: string | undefined;
|
|
4354
4382
|
enum?: string[] | undefined;
|
|
4355
|
-
nullable?: boolean | undefined;
|
|
4356
|
-
format?: string | undefined;
|
|
4357
4383
|
file?: any;
|
|
4358
4384
|
refUid?: string | undefined;
|
|
4385
|
+
format?: string | undefined;
|
|
4386
|
+
nullable?: boolean | undefined;
|
|
4359
4387
|
}[];
|
|
4360
4388
|
headers: {
|
|
4361
4389
|
value: string;
|
|
@@ -4368,10 +4396,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4368
4396
|
required?: boolean | undefined;
|
|
4369
4397
|
description?: string | undefined;
|
|
4370
4398
|
enum?: string[] | undefined;
|
|
4371
|
-
nullable?: boolean | undefined;
|
|
4372
|
-
format?: string | undefined;
|
|
4373
4399
|
file?: any;
|
|
4374
4400
|
refUid?: string | undefined;
|
|
4401
|
+
format?: string | undefined;
|
|
4402
|
+
nullable?: boolean | undefined;
|
|
4375
4403
|
}[];
|
|
4376
4404
|
cookies: {
|
|
4377
4405
|
value: string;
|
|
@@ -4384,17 +4412,24 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4384
4412
|
required?: boolean | undefined;
|
|
4385
4413
|
description?: string | undefined;
|
|
4386
4414
|
enum?: string[] | undefined;
|
|
4387
|
-
nullable?: boolean | undefined;
|
|
4388
|
-
format?: string | undefined;
|
|
4389
4415
|
file?: any;
|
|
4390
4416
|
refUid?: string | undefined;
|
|
4417
|
+
format?: string | undefined;
|
|
4418
|
+
nullable?: boolean | undefined;
|
|
4391
4419
|
}[];
|
|
4392
4420
|
};
|
|
4421
|
+
auth: Record<string, any>;
|
|
4422
|
+
};
|
|
4423
|
+
delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
|
|
4424
|
+
set: (item: {
|
|
4425
|
+
uid: string;
|
|
4426
|
+
name: string;
|
|
4427
|
+
url: string;
|
|
4393
4428
|
requestUid: string;
|
|
4394
4429
|
body: {
|
|
4395
4430
|
raw: {
|
|
4396
4431
|
value: string;
|
|
4397
|
-
encoding: "
|
|
4432
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4398
4433
|
};
|
|
4399
4434
|
formData: {
|
|
4400
4435
|
value: {
|
|
@@ -4408,23 +4443,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4408
4443
|
required?: boolean | undefined;
|
|
4409
4444
|
description?: string | undefined;
|
|
4410
4445
|
enum?: string[] | undefined;
|
|
4411
|
-
nullable?: boolean | undefined;
|
|
4412
|
-
format?: string | undefined;
|
|
4413
4446
|
file?: any;
|
|
4414
4447
|
refUid?: string | undefined;
|
|
4448
|
+
format?: string | undefined;
|
|
4449
|
+
nullable?: boolean | undefined;
|
|
4415
4450
|
}[];
|
|
4416
4451
|
encoding: "form-data" | "urlencoded";
|
|
4417
4452
|
};
|
|
4418
4453
|
activeBody: "raw" | "formData" | "binary";
|
|
4419
4454
|
binary?: File | undefined;
|
|
4420
4455
|
};
|
|
4421
|
-
auth: Record<string, any>;
|
|
4422
|
-
};
|
|
4423
|
-
delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
|
|
4424
|
-
set: (item: {
|
|
4425
|
-
uid: string;
|
|
4426
|
-
name: string;
|
|
4427
|
-
url: string;
|
|
4428
4456
|
parameters: {
|
|
4429
4457
|
path: {
|
|
4430
4458
|
value: string;
|
|
@@ -4437,10 +4465,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4437
4465
|
required?: boolean | undefined;
|
|
4438
4466
|
description?: string | undefined;
|
|
4439
4467
|
enum?: string[] | undefined;
|
|
4440
|
-
nullable?: boolean | undefined;
|
|
4441
|
-
format?: string | undefined;
|
|
4442
4468
|
file?: any;
|
|
4443
4469
|
refUid?: string | undefined;
|
|
4470
|
+
format?: string | undefined;
|
|
4471
|
+
nullable?: boolean | undefined;
|
|
4444
4472
|
}[];
|
|
4445
4473
|
query: {
|
|
4446
4474
|
value: string;
|
|
@@ -4453,10 +4481,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4453
4481
|
required?: boolean | undefined;
|
|
4454
4482
|
description?: string | undefined;
|
|
4455
4483
|
enum?: string[] | undefined;
|
|
4456
|
-
nullable?: boolean | undefined;
|
|
4457
|
-
format?: string | undefined;
|
|
4458
4484
|
file?: any;
|
|
4459
4485
|
refUid?: string | undefined;
|
|
4486
|
+
format?: string | undefined;
|
|
4487
|
+
nullable?: boolean | undefined;
|
|
4460
4488
|
}[];
|
|
4461
4489
|
headers: {
|
|
4462
4490
|
value: string;
|
|
@@ -4469,10 +4497,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4469
4497
|
required?: boolean | undefined;
|
|
4470
4498
|
description?: string | undefined;
|
|
4471
4499
|
enum?: string[] | undefined;
|
|
4472
|
-
nullable?: boolean | undefined;
|
|
4473
|
-
format?: string | undefined;
|
|
4474
4500
|
file?: any;
|
|
4475
4501
|
refUid?: string | undefined;
|
|
4502
|
+
format?: string | undefined;
|
|
4503
|
+
nullable?: boolean | undefined;
|
|
4476
4504
|
}[];
|
|
4477
4505
|
cookies: {
|
|
4478
4506
|
value: string;
|
|
@@ -4485,17 +4513,23 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4485
4513
|
required?: boolean | undefined;
|
|
4486
4514
|
description?: string | undefined;
|
|
4487
4515
|
enum?: string[] | undefined;
|
|
4488
|
-
nullable?: boolean | undefined;
|
|
4489
|
-
format?: string | undefined;
|
|
4490
4516
|
file?: any;
|
|
4491
4517
|
refUid?: string | undefined;
|
|
4518
|
+
format?: string | undefined;
|
|
4519
|
+
nullable?: boolean | undefined;
|
|
4492
4520
|
}[];
|
|
4493
4521
|
};
|
|
4522
|
+
auth: Record<string, any>;
|
|
4523
|
+
}) => void;
|
|
4524
|
+
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
4525
|
+
uid: string;
|
|
4526
|
+
name: string;
|
|
4527
|
+
url: string;
|
|
4494
4528
|
requestUid: string;
|
|
4495
4529
|
body: {
|
|
4496
4530
|
raw: {
|
|
4497
4531
|
value: string;
|
|
4498
|
-
encoding: "
|
|
4532
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4499
4533
|
};
|
|
4500
4534
|
formData: {
|
|
4501
4535
|
value: {
|
|
@@ -4509,22 +4543,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4509
4543
|
required?: boolean | undefined;
|
|
4510
4544
|
description?: string | undefined;
|
|
4511
4545
|
enum?: string[] | undefined;
|
|
4512
|
-
nullable?: boolean | undefined;
|
|
4513
|
-
format?: string | undefined;
|
|
4514
4546
|
file?: any;
|
|
4515
4547
|
refUid?: string | undefined;
|
|
4548
|
+
format?: string | undefined;
|
|
4549
|
+
nullable?: boolean | undefined;
|
|
4516
4550
|
}[];
|
|
4517
4551
|
encoding: "form-data" | "urlencoded";
|
|
4518
4552
|
};
|
|
4519
4553
|
activeBody: "raw" | "formData" | "binary";
|
|
4520
4554
|
binary?: File | undefined;
|
|
4521
4555
|
};
|
|
4522
|
-
auth: Record<string, any>;
|
|
4523
|
-
}) => void;
|
|
4524
|
-
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" ? {
|
|
4525
|
-
uid: string;
|
|
4526
|
-
name: string;
|
|
4527
|
-
url: string;
|
|
4528
4556
|
parameters: {
|
|
4529
4557
|
path: {
|
|
4530
4558
|
value: string;
|
|
@@ -4537,10 +4565,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4537
4565
|
required?: boolean | undefined;
|
|
4538
4566
|
description?: string | undefined;
|
|
4539
4567
|
enum?: string[] | undefined;
|
|
4540
|
-
nullable?: boolean | undefined;
|
|
4541
|
-
format?: string | undefined;
|
|
4542
4568
|
file?: any;
|
|
4543
4569
|
refUid?: string | undefined;
|
|
4570
|
+
format?: string | undefined;
|
|
4571
|
+
nullable?: boolean | undefined;
|
|
4544
4572
|
}[];
|
|
4545
4573
|
query: {
|
|
4546
4574
|
value: string;
|
|
@@ -4553,10 +4581,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4553
4581
|
required?: boolean | undefined;
|
|
4554
4582
|
description?: string | undefined;
|
|
4555
4583
|
enum?: string[] | undefined;
|
|
4556
|
-
nullable?: boolean | undefined;
|
|
4557
|
-
format?: string | undefined;
|
|
4558
4584
|
file?: any;
|
|
4559
4585
|
refUid?: string | undefined;
|
|
4586
|
+
format?: string | undefined;
|
|
4587
|
+
nullable?: boolean | undefined;
|
|
4560
4588
|
}[];
|
|
4561
4589
|
headers: {
|
|
4562
4590
|
value: string;
|
|
@@ -4569,10 +4597,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4569
4597
|
required?: boolean | undefined;
|
|
4570
4598
|
description?: string | undefined;
|
|
4571
4599
|
enum?: string[] | undefined;
|
|
4572
|
-
nullable?: boolean | undefined;
|
|
4573
|
-
format?: string | undefined;
|
|
4574
4600
|
file?: any;
|
|
4575
4601
|
refUid?: string | undefined;
|
|
4602
|
+
format?: string | undefined;
|
|
4603
|
+
nullable?: boolean | undefined;
|
|
4576
4604
|
}[];
|
|
4577
4605
|
cookies: {
|
|
4578
4606
|
value: string;
|
|
@@ -4585,17 +4613,22 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4585
4613
|
required?: boolean | undefined;
|
|
4586
4614
|
description?: string | undefined;
|
|
4587
4615
|
enum?: string[] | undefined;
|
|
4588
|
-
nullable?: boolean | undefined;
|
|
4589
|
-
format?: string | undefined;
|
|
4590
4616
|
file?: any;
|
|
4591
4617
|
refUid?: string | undefined;
|
|
4618
|
+
format?: string | undefined;
|
|
4619
|
+
nullable?: boolean | undefined;
|
|
4592
4620
|
}[];
|
|
4593
4621
|
};
|
|
4622
|
+
auth: Record<string, any>;
|
|
4623
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4624
|
+
uid: string;
|
|
4625
|
+
name: string;
|
|
4626
|
+
url: string;
|
|
4594
4627
|
requestUid: string;
|
|
4595
4628
|
body: {
|
|
4596
4629
|
raw: {
|
|
4597
4630
|
value: string;
|
|
4598
|
-
encoding: "
|
|
4631
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4599
4632
|
};
|
|
4600
4633
|
formData: {
|
|
4601
4634
|
value: {
|
|
@@ -4609,21 +4642,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4609
4642
|
required?: boolean | undefined;
|
|
4610
4643
|
description?: string | undefined;
|
|
4611
4644
|
enum?: string[] | undefined;
|
|
4612
|
-
nullable?: boolean | undefined;
|
|
4613
|
-
format?: string | undefined;
|
|
4614
4645
|
file?: any;
|
|
4615
4646
|
refUid?: string | undefined;
|
|
4647
|
+
format?: string | undefined;
|
|
4648
|
+
nullable?: boolean | undefined;
|
|
4616
4649
|
}[];
|
|
4617
4650
|
encoding: "form-data" | "urlencoded";
|
|
4618
4651
|
};
|
|
4619
4652
|
activeBody: "raw" | "formData" | "binary";
|
|
4620
4653
|
binary?: File | undefined;
|
|
4621
4654
|
};
|
|
4622
|
-
auth: Record<string, any>;
|
|
4623
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4624
|
-
uid: string;
|
|
4625
|
-
name: string;
|
|
4626
|
-
url: string;
|
|
4627
4655
|
parameters: {
|
|
4628
4656
|
path: {
|
|
4629
4657
|
value: string;
|
|
@@ -4636,10 +4664,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4636
4664
|
required?: boolean | undefined;
|
|
4637
4665
|
description?: string | undefined;
|
|
4638
4666
|
enum?: string[] | undefined;
|
|
4639
|
-
nullable?: boolean | undefined;
|
|
4640
|
-
format?: string | undefined;
|
|
4641
4667
|
file?: any;
|
|
4642
4668
|
refUid?: string | undefined;
|
|
4669
|
+
format?: string | undefined;
|
|
4670
|
+
nullable?: boolean | undefined;
|
|
4643
4671
|
}[];
|
|
4644
4672
|
query: {
|
|
4645
4673
|
value: string;
|
|
@@ -4652,10 +4680,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4652
4680
|
required?: boolean | undefined;
|
|
4653
4681
|
description?: string | undefined;
|
|
4654
4682
|
enum?: string[] | undefined;
|
|
4655
|
-
nullable?: boolean | undefined;
|
|
4656
|
-
format?: string | undefined;
|
|
4657
4683
|
file?: any;
|
|
4658
4684
|
refUid?: string | undefined;
|
|
4685
|
+
format?: string | undefined;
|
|
4686
|
+
nullable?: boolean | undefined;
|
|
4659
4687
|
}[];
|
|
4660
4688
|
headers: {
|
|
4661
4689
|
value: string;
|
|
@@ -4668,10 +4696,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4668
4696
|
required?: boolean | undefined;
|
|
4669
4697
|
description?: string | undefined;
|
|
4670
4698
|
enum?: string[] | undefined;
|
|
4671
|
-
nullable?: boolean | undefined;
|
|
4672
|
-
format?: string | undefined;
|
|
4673
4699
|
file?: any;
|
|
4674
4700
|
refUid?: string | undefined;
|
|
4701
|
+
format?: string | undefined;
|
|
4702
|
+
nullable?: boolean | undefined;
|
|
4675
4703
|
}[];
|
|
4676
4704
|
cookies: {
|
|
4677
4705
|
value: string;
|
|
@@ -4684,17 +4712,22 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4684
4712
|
required?: boolean | undefined;
|
|
4685
4713
|
description?: string | undefined;
|
|
4686
4714
|
enum?: string[] | undefined;
|
|
4687
|
-
nullable?: boolean | undefined;
|
|
4688
|
-
format?: string | undefined;
|
|
4689
4715
|
file?: any;
|
|
4690
4716
|
refUid?: string | undefined;
|
|
4717
|
+
format?: string | undefined;
|
|
4718
|
+
nullable?: boolean | undefined;
|
|
4691
4719
|
}[];
|
|
4692
4720
|
};
|
|
4721
|
+
auth: Record<string, any>;
|
|
4722
|
+
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4723
|
+
uid: string;
|
|
4724
|
+
name: string;
|
|
4725
|
+
url: string;
|
|
4693
4726
|
requestUid: string;
|
|
4694
4727
|
body: {
|
|
4695
4728
|
raw: {
|
|
4696
4729
|
value: string;
|
|
4697
|
-
encoding: "
|
|
4730
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4698
4731
|
};
|
|
4699
4732
|
formData: {
|
|
4700
4733
|
value: {
|
|
@@ -4708,21 +4741,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4708
4741
|
required?: boolean | undefined;
|
|
4709
4742
|
description?: string | undefined;
|
|
4710
4743
|
enum?: string[] | undefined;
|
|
4711
|
-
nullable?: boolean | undefined;
|
|
4712
|
-
format?: string | undefined;
|
|
4713
4744
|
file?: any;
|
|
4714
4745
|
refUid?: string | undefined;
|
|
4746
|
+
format?: string | undefined;
|
|
4747
|
+
nullable?: boolean | undefined;
|
|
4715
4748
|
}[];
|
|
4716
4749
|
encoding: "form-data" | "urlencoded";
|
|
4717
4750
|
};
|
|
4718
4751
|
activeBody: "raw" | "formData" | "binary";
|
|
4719
4752
|
binary?: File | undefined;
|
|
4720
4753
|
};
|
|
4721
|
-
auth: Record<string, any>;
|
|
4722
|
-
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
4723
|
-
uid: string;
|
|
4724
|
-
name: string;
|
|
4725
|
-
url: string;
|
|
4726
4754
|
parameters: {
|
|
4727
4755
|
path: {
|
|
4728
4756
|
value: string;
|
|
@@ -4735,10 +4763,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4735
4763
|
required?: boolean | undefined;
|
|
4736
4764
|
description?: string | undefined;
|
|
4737
4765
|
enum?: string[] | undefined;
|
|
4738
|
-
nullable?: boolean | undefined;
|
|
4739
|
-
format?: string | undefined;
|
|
4740
4766
|
file?: any;
|
|
4741
4767
|
refUid?: string | undefined;
|
|
4768
|
+
format?: string | undefined;
|
|
4769
|
+
nullable?: boolean | undefined;
|
|
4742
4770
|
}[];
|
|
4743
4771
|
query: {
|
|
4744
4772
|
value: string;
|
|
@@ -4751,10 +4779,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4751
4779
|
required?: boolean | undefined;
|
|
4752
4780
|
description?: string | undefined;
|
|
4753
4781
|
enum?: string[] | undefined;
|
|
4754
|
-
nullable?: boolean | undefined;
|
|
4755
|
-
format?: string | undefined;
|
|
4756
4782
|
file?: any;
|
|
4757
4783
|
refUid?: string | undefined;
|
|
4784
|
+
format?: string | undefined;
|
|
4785
|
+
nullable?: boolean | undefined;
|
|
4758
4786
|
}[];
|
|
4759
4787
|
headers: {
|
|
4760
4788
|
value: string;
|
|
@@ -4767,10 +4795,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4767
4795
|
required?: boolean | undefined;
|
|
4768
4796
|
description?: string | undefined;
|
|
4769
4797
|
enum?: string[] | undefined;
|
|
4770
|
-
nullable?: boolean | undefined;
|
|
4771
|
-
format?: string | undefined;
|
|
4772
4798
|
file?: any;
|
|
4773
4799
|
refUid?: string | undefined;
|
|
4800
|
+
format?: string | undefined;
|
|
4801
|
+
nullable?: boolean | undefined;
|
|
4774
4802
|
}[];
|
|
4775
4803
|
cookies: {
|
|
4776
4804
|
value: string;
|
|
@@ -4783,17 +4811,23 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4783
4811
|
required?: boolean | undefined;
|
|
4784
4812
|
description?: string | undefined;
|
|
4785
4813
|
enum?: string[] | undefined;
|
|
4786
|
-
nullable?: boolean | undefined;
|
|
4787
|
-
format?: string | undefined;
|
|
4788
4814
|
file?: any;
|
|
4789
4815
|
refUid?: string | undefined;
|
|
4816
|
+
format?: string | undefined;
|
|
4817
|
+
nullable?: boolean | undefined;
|
|
4790
4818
|
}[];
|
|
4791
4819
|
};
|
|
4820
|
+
auth: Record<string, any>;
|
|
4821
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4822
|
+
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
4823
|
+
uid: string;
|
|
4824
|
+
name: string;
|
|
4825
|
+
url: string;
|
|
4792
4826
|
requestUid: string;
|
|
4793
4827
|
body: {
|
|
4794
4828
|
raw: {
|
|
4795
4829
|
value: string;
|
|
4796
|
-
encoding: "
|
|
4830
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4797
4831
|
};
|
|
4798
4832
|
formData: {
|
|
4799
4833
|
value: {
|
|
@@ -4807,22 +4841,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4807
4841
|
required?: boolean | undefined;
|
|
4808
4842
|
description?: string | undefined;
|
|
4809
4843
|
enum?: string[] | undefined;
|
|
4810
|
-
nullable?: boolean | undefined;
|
|
4811
|
-
format?: string | undefined;
|
|
4812
4844
|
file?: any;
|
|
4813
4845
|
refUid?: string | undefined;
|
|
4846
|
+
format?: string | undefined;
|
|
4847
|
+
nullable?: boolean | undefined;
|
|
4814
4848
|
}[];
|
|
4815
4849
|
encoding: "form-data" | "urlencoded";
|
|
4816
4850
|
};
|
|
4817
4851
|
activeBody: "raw" | "formData" | "binary";
|
|
4818
4852
|
binary?: File | undefined;
|
|
4819
4853
|
};
|
|
4820
|
-
auth: Record<string, any>;
|
|
4821
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4822
|
-
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" ? {
|
|
4823
|
-
uid: string;
|
|
4824
|
-
name: string;
|
|
4825
|
-
url: string;
|
|
4826
4854
|
parameters: {
|
|
4827
4855
|
path: {
|
|
4828
4856
|
value: string;
|
|
@@ -4835,10 +4863,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4835
4863
|
required?: boolean | undefined;
|
|
4836
4864
|
description?: string | undefined;
|
|
4837
4865
|
enum?: string[] | undefined;
|
|
4838
|
-
nullable?: boolean | undefined;
|
|
4839
|
-
format?: string | undefined;
|
|
4840
4866
|
file?: any;
|
|
4841
4867
|
refUid?: string | undefined;
|
|
4868
|
+
format?: string | undefined;
|
|
4869
|
+
nullable?: boolean | undefined;
|
|
4842
4870
|
}[];
|
|
4843
4871
|
query: {
|
|
4844
4872
|
value: string;
|
|
@@ -4851,10 +4879,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4851
4879
|
required?: boolean | undefined;
|
|
4852
4880
|
description?: string | undefined;
|
|
4853
4881
|
enum?: string[] | undefined;
|
|
4854
|
-
nullable?: boolean | undefined;
|
|
4855
|
-
format?: string | undefined;
|
|
4856
4882
|
file?: any;
|
|
4857
4883
|
refUid?: string | undefined;
|
|
4884
|
+
format?: string | undefined;
|
|
4885
|
+
nullable?: boolean | undefined;
|
|
4858
4886
|
}[];
|
|
4859
4887
|
headers: {
|
|
4860
4888
|
value: string;
|
|
@@ -4867,10 +4895,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4867
4895
|
required?: boolean | undefined;
|
|
4868
4896
|
description?: string | undefined;
|
|
4869
4897
|
enum?: string[] | undefined;
|
|
4870
|
-
nullable?: boolean | undefined;
|
|
4871
|
-
format?: string | undefined;
|
|
4872
4898
|
file?: any;
|
|
4873
4899
|
refUid?: string | undefined;
|
|
4900
|
+
format?: string | undefined;
|
|
4901
|
+
nullable?: boolean | undefined;
|
|
4874
4902
|
}[];
|
|
4875
4903
|
cookies: {
|
|
4876
4904
|
value: string;
|
|
@@ -4883,17 +4911,22 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4883
4911
|
required?: boolean | undefined;
|
|
4884
4912
|
description?: string | undefined;
|
|
4885
4913
|
enum?: string[] | undefined;
|
|
4886
|
-
nullable?: boolean | undefined;
|
|
4887
|
-
format?: string | undefined;
|
|
4888
4914
|
file?: any;
|
|
4889
4915
|
refUid?: string | undefined;
|
|
4916
|
+
format?: string | undefined;
|
|
4917
|
+
nullable?: boolean | undefined;
|
|
4890
4918
|
}[];
|
|
4891
4919
|
};
|
|
4920
|
+
auth: Record<string, any>;
|
|
4921
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4922
|
+
uid: string;
|
|
4923
|
+
name: string;
|
|
4924
|
+
url: string;
|
|
4892
4925
|
requestUid: string;
|
|
4893
4926
|
body: {
|
|
4894
4927
|
raw: {
|
|
4895
4928
|
value: string;
|
|
4896
|
-
encoding: "
|
|
4929
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4897
4930
|
};
|
|
4898
4931
|
formData: {
|
|
4899
4932
|
value: {
|
|
@@ -4907,21 +4940,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4907
4940
|
required?: boolean | undefined;
|
|
4908
4941
|
description?: string | undefined;
|
|
4909
4942
|
enum?: string[] | undefined;
|
|
4910
|
-
nullable?: boolean | undefined;
|
|
4911
|
-
format?: string | undefined;
|
|
4912
4943
|
file?: any;
|
|
4913
4944
|
refUid?: string | undefined;
|
|
4945
|
+
format?: string | undefined;
|
|
4946
|
+
nullable?: boolean | undefined;
|
|
4914
4947
|
}[];
|
|
4915
4948
|
encoding: "form-data" | "urlencoded";
|
|
4916
4949
|
};
|
|
4917
4950
|
activeBody: "raw" | "formData" | "binary";
|
|
4918
4951
|
binary?: File | undefined;
|
|
4919
4952
|
};
|
|
4920
|
-
auth: Record<string, any>;
|
|
4921
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
4922
|
-
uid: string;
|
|
4923
|
-
name: string;
|
|
4924
|
-
url: string;
|
|
4925
4953
|
parameters: {
|
|
4926
4954
|
path: {
|
|
4927
4955
|
value: string;
|
|
@@ -4934,10 +4962,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4934
4962
|
required?: boolean | undefined;
|
|
4935
4963
|
description?: string | undefined;
|
|
4936
4964
|
enum?: string[] | undefined;
|
|
4937
|
-
nullable?: boolean | undefined;
|
|
4938
|
-
format?: string | undefined;
|
|
4939
4965
|
file?: any;
|
|
4940
4966
|
refUid?: string | undefined;
|
|
4967
|
+
format?: string | undefined;
|
|
4968
|
+
nullable?: boolean | undefined;
|
|
4941
4969
|
}[];
|
|
4942
4970
|
query: {
|
|
4943
4971
|
value: string;
|
|
@@ -4950,10 +4978,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4950
4978
|
required?: boolean | undefined;
|
|
4951
4979
|
description?: string | undefined;
|
|
4952
4980
|
enum?: string[] | undefined;
|
|
4953
|
-
nullable?: boolean | undefined;
|
|
4954
|
-
format?: string | undefined;
|
|
4955
4981
|
file?: any;
|
|
4956
4982
|
refUid?: string | undefined;
|
|
4983
|
+
format?: string | undefined;
|
|
4984
|
+
nullable?: boolean | undefined;
|
|
4957
4985
|
}[];
|
|
4958
4986
|
headers: {
|
|
4959
4987
|
value: string;
|
|
@@ -4966,10 +4994,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4966
4994
|
required?: boolean | undefined;
|
|
4967
4995
|
description?: string | undefined;
|
|
4968
4996
|
enum?: string[] | undefined;
|
|
4969
|
-
nullable?: boolean | undefined;
|
|
4970
|
-
format?: string | undefined;
|
|
4971
4997
|
file?: any;
|
|
4972
4998
|
refUid?: string | undefined;
|
|
4999
|
+
format?: string | undefined;
|
|
5000
|
+
nullable?: boolean | undefined;
|
|
4973
5001
|
}[];
|
|
4974
5002
|
cookies: {
|
|
4975
5003
|
value: string;
|
|
@@ -4982,17 +5010,22 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4982
5010
|
required?: boolean | undefined;
|
|
4983
5011
|
description?: string | undefined;
|
|
4984
5012
|
enum?: string[] | undefined;
|
|
4985
|
-
nullable?: boolean | undefined;
|
|
4986
|
-
format?: string | undefined;
|
|
4987
5013
|
file?: any;
|
|
4988
5014
|
refUid?: string | undefined;
|
|
5015
|
+
format?: string | undefined;
|
|
5016
|
+
nullable?: boolean | undefined;
|
|
4989
5017
|
}[];
|
|
4990
5018
|
};
|
|
5019
|
+
auth: Record<string, any>;
|
|
5020
|
+
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
5021
|
+
uid: string;
|
|
5022
|
+
name: string;
|
|
5023
|
+
url: string;
|
|
4991
5024
|
requestUid: string;
|
|
4992
5025
|
body: {
|
|
4993
5026
|
raw: {
|
|
4994
5027
|
value: string;
|
|
4995
|
-
encoding: "
|
|
5028
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
4996
5029
|
};
|
|
4997
5030
|
formData: {
|
|
4998
5031
|
value: {
|
|
@@ -5006,21 +5039,16 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5006
5039
|
required?: boolean | undefined;
|
|
5007
5040
|
description?: string | undefined;
|
|
5008
5041
|
enum?: string[] | undefined;
|
|
5009
|
-
nullable?: boolean | undefined;
|
|
5010
|
-
format?: string | undefined;
|
|
5011
5042
|
file?: any;
|
|
5012
5043
|
refUid?: string | undefined;
|
|
5044
|
+
format?: string | undefined;
|
|
5045
|
+
nullable?: boolean | undefined;
|
|
5013
5046
|
}[];
|
|
5014
5047
|
encoding: "form-data" | "urlencoded";
|
|
5015
5048
|
};
|
|
5016
5049
|
activeBody: "raw" | "formData" | "binary";
|
|
5017
5050
|
binary?: File | undefined;
|
|
5018
5051
|
};
|
|
5019
|
-
auth: Record<string, any>;
|
|
5020
|
-
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
5021
|
-
uid: string;
|
|
5022
|
-
name: string;
|
|
5023
|
-
url: string;
|
|
5024
5052
|
parameters: {
|
|
5025
5053
|
path: {
|
|
5026
5054
|
value: string;
|
|
@@ -5033,10 +5061,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5033
5061
|
required?: boolean | undefined;
|
|
5034
5062
|
description?: string | undefined;
|
|
5035
5063
|
enum?: string[] | undefined;
|
|
5036
|
-
nullable?: boolean | undefined;
|
|
5037
|
-
format?: string | undefined;
|
|
5038
5064
|
file?: any;
|
|
5039
5065
|
refUid?: string | undefined;
|
|
5066
|
+
format?: string | undefined;
|
|
5067
|
+
nullable?: boolean | undefined;
|
|
5040
5068
|
}[];
|
|
5041
5069
|
query: {
|
|
5042
5070
|
value: string;
|
|
@@ -5049,10 +5077,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5049
5077
|
required?: boolean | undefined;
|
|
5050
5078
|
description?: string | undefined;
|
|
5051
5079
|
enum?: string[] | undefined;
|
|
5052
|
-
nullable?: boolean | undefined;
|
|
5053
|
-
format?: string | undefined;
|
|
5054
5080
|
file?: any;
|
|
5055
5081
|
refUid?: string | undefined;
|
|
5082
|
+
format?: string | undefined;
|
|
5083
|
+
nullable?: boolean | undefined;
|
|
5056
5084
|
}[];
|
|
5057
5085
|
headers: {
|
|
5058
5086
|
value: string;
|
|
@@ -5065,10 +5093,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5065
5093
|
required?: boolean | undefined;
|
|
5066
5094
|
description?: string | undefined;
|
|
5067
5095
|
enum?: string[] | undefined;
|
|
5068
|
-
nullable?: boolean | undefined;
|
|
5069
|
-
format?: string | undefined;
|
|
5070
5096
|
file?: any;
|
|
5071
5097
|
refUid?: string | undefined;
|
|
5098
|
+
format?: string | undefined;
|
|
5099
|
+
nullable?: boolean | undefined;
|
|
5072
5100
|
}[];
|
|
5073
5101
|
cookies: {
|
|
5074
5102
|
value: string;
|
|
@@ -5081,40 +5109,12 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5081
5109
|
required?: boolean | undefined;
|
|
5082
5110
|
description?: string | undefined;
|
|
5083
5111
|
enum?: string[] | undefined;
|
|
5084
|
-
nullable?: boolean | undefined;
|
|
5085
|
-
format?: string | undefined;
|
|
5086
5112
|
file?: any;
|
|
5087
5113
|
refUid?: string | undefined;
|
|
5114
|
+
format?: string | undefined;
|
|
5115
|
+
nullable?: boolean | undefined;
|
|
5088
5116
|
}[];
|
|
5089
5117
|
};
|
|
5090
|
-
requestUid: string;
|
|
5091
|
-
body: {
|
|
5092
|
-
raw: {
|
|
5093
|
-
value: string;
|
|
5094
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
5095
|
-
};
|
|
5096
|
-
formData: {
|
|
5097
|
-
value: {
|
|
5098
|
-
value: string;
|
|
5099
|
-
key: string;
|
|
5100
|
-
enabled: boolean;
|
|
5101
|
-
minimum?: number | undefined;
|
|
5102
|
-
type?: string | undefined;
|
|
5103
|
-
maximum?: number | undefined;
|
|
5104
|
-
default?: any;
|
|
5105
|
-
required?: boolean | undefined;
|
|
5106
|
-
description?: string | undefined;
|
|
5107
|
-
enum?: string[] | undefined;
|
|
5108
|
-
nullable?: boolean | undefined;
|
|
5109
|
-
format?: string | undefined;
|
|
5110
|
-
file?: any;
|
|
5111
|
-
refUid?: string | undefined;
|
|
5112
|
-
}[];
|
|
5113
|
-
encoding: "form-data" | "urlencoded";
|
|
5114
|
-
};
|
|
5115
|
-
activeBody: "raw" | "formData" | "binary";
|
|
5116
|
-
binary?: File | undefined;
|
|
5117
|
-
};
|
|
5118
5118
|
auth: Record<string, any>;
|
|
5119
5119
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5120
5120
|
undo: (uid: string) => void;
|
|
@@ -5259,7 +5259,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5259
5259
|
openIdConnectUrl: string;
|
|
5260
5260
|
description?: string | undefined;
|
|
5261
5261
|
}) => void;
|
|
5262
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5262
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? {
|
|
5263
5263
|
type: "apiKey";
|
|
5264
5264
|
value: string;
|
|
5265
5265
|
uid: string;
|
|
@@ -5267,7 +5267,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5267
5267
|
nameKey: string;
|
|
5268
5268
|
in: "query" | "header" | "cookie";
|
|
5269
5269
|
description?: string | undefined;
|
|
5270
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5270
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5271
5271
|
type: "apiKey";
|
|
5272
5272
|
value: string;
|
|
5273
5273
|
uid: string;
|
|
@@ -5458,7 +5458,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5458
5458
|
openIdConnectUrl: string;
|
|
5459
5459
|
description?: string | undefined;
|
|
5460
5460
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
5461
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5461
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? {
|
|
5462
5462
|
type: "apiKey";
|
|
5463
5463
|
value: string;
|
|
5464
5464
|
uid: string;
|
|
@@ -5466,7 +5466,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5466
5466
|
nameKey: string;
|
|
5467
5467
|
in: "query" | "header" | "cookie";
|
|
5468
5468
|
description?: string | undefined;
|
|
5469
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
5469
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5470
5470
|
type: "apiKey";
|
|
5471
5471
|
value: string;
|
|
5472
5472
|
uid: string;
|
|
@@ -5773,7 +5773,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5773
5773
|
hotKeyConfig?: {
|
|
5774
5774
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5775
5775
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5776
|
-
event: "closeModal" | "
|
|
5776
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5777
5777
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5778
5778
|
}>> | undefined;
|
|
5779
5779
|
} | undefined;
|
|
@@ -5791,7 +5791,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5791
5791
|
hotKeyConfig?: {
|
|
5792
5792
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5793
5793
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5794
|
-
event: "closeModal" | "
|
|
5794
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5795
5795
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5796
5796
|
}>> | undefined;
|
|
5797
5797
|
} | undefined;
|
|
@@ -5811,13 +5811,13 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5811
5811
|
hotKeyConfig?: {
|
|
5812
5812
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5813
5813
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5814
|
-
event: "closeModal" | "
|
|
5814
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5815
5815
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5816
5816
|
}>> | undefined;
|
|
5817
5817
|
} | undefined;
|
|
5818
5818
|
proxyUrl?: string | undefined;
|
|
5819
5819
|
}) => void;
|
|
5820
|
-
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" ? {
|
|
5820
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5821
5821
|
uid: string;
|
|
5822
5822
|
name: string;
|
|
5823
5823
|
description: string;
|
|
@@ -5829,7 +5829,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5829
5829
|
hotKeyConfig?: {
|
|
5830
5830
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5831
5831
|
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5832
|
-
event: "closeModal" | "
|
|
5832
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5833
5833
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5834
5834
|
}>> | undefined;
|
|
5835
5835
|
} | undefined;
|
|
@@ -5846,7 +5846,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5846
5846
|
hotKeyConfig?: {
|
|
5847
5847
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5848
5848
|
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5849
|
-
event: "closeModal" | "
|
|
5849
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5850
5850
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5851
5851
|
}>> | undefined;
|
|
5852
5852
|
} | undefined;
|
|
@@ -5863,13 +5863,13 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5863
5863
|
hotKeyConfig?: {
|
|
5864
5864
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5865
5865
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5866
|
-
event: "closeModal" | "
|
|
5866
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5867
5867
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5868
5868
|
}>> | undefined;
|
|
5869
5869
|
} | undefined;
|
|
5870
5870
|
proxyUrl?: string | undefined;
|
|
5871
5871
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5872
|
-
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" ? {
|
|
5872
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
5873
5873
|
uid: string;
|
|
5874
5874
|
name: string;
|
|
5875
5875
|
description: string;
|
|
@@ -5881,7 +5881,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5881
5881
|
hotKeyConfig?: {
|
|
5882
5882
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5883
5883
|
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5884
|
-
event: "closeModal" | "
|
|
5884
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5885
5885
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5886
5886
|
}>> | undefined;
|
|
5887
5887
|
} | undefined;
|
|
@@ -5898,7 +5898,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5898
5898
|
hotKeyConfig?: {
|
|
5899
5899
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5900
5900
|
hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5901
|
-
event: "closeModal" | "
|
|
5901
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5902
5902
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5903
5903
|
}>> | undefined;
|
|
5904
5904
|
} | undefined;
|
|
@@ -5915,7 +5915,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5915
5915
|
hotKeyConfig?: {
|
|
5916
5916
|
modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
|
|
5917
5917
|
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" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
|
|
5918
|
-
event: "closeModal" | "
|
|
5918
|
+
event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
|
|
5919
5919
|
modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
|
|
5920
5920
|
}>> | undefined;
|
|
5921
5921
|
} | undefined;
|