@scalar/api-client 2.0.52 → 2.0.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,8 +8,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
8
8
  app: import("vue").App<Element>;
9
9
  updateConfig(newConfig: ClientConfiguration, mergeConfigs?: boolean): void;
10
10
  updateServerUrl: (serverUrl: string) => void;
11
- updateAuth: (auth: import("@scalar/oas-utils").AuthenticationState) => void;
12
- updateSpec: (spec: import("@scalar/oas-utils").SpecConfiguration) => Promise<void>;
11
+ updateAuth: (auth: import("@scalar/types/legacy").AuthenticationState) => void;
12
+ updateSpec: (spec: import("@scalar/types/legacy").SpecConfiguration) => Promise<void>;
13
13
  route: (params: import("../../libs/index.js").OpenClientPayload) => void;
14
14
  open: (payload?: import("../../libs/index.js").OpenClientPayload) => void;
15
15
  mount: (mountingEl?: HTMLElement | null) => void;
@@ -21,18 +21,18 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
21
21
  store: {
22
22
  workspaces: Record<string, {
23
23
  uid: string;
24
- description: string;
25
24
  name: string;
25
+ description: string;
26
26
  isReadOnly: boolean;
27
27
  collectionUids: string[];
28
28
  environmentUids: string[];
29
29
  cookieUids: string[];
30
30
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
31
31
  hotKeyConfig?: {
32
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
33
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
32
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
34
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
35
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
35
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
36
36
  }>> | undefined;
37
37
  } | undefined;
38
38
  proxyUrl?: string | undefined;
@@ -119,14 +119,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
119
119
  minimum?: number | undefined;
120
120
  type?: string | undefined;
121
121
  maximum?: number | undefined;
122
- description?: string | undefined;
123
122
  default?: any;
124
123
  required?: boolean | undefined;
124
+ description?: string | undefined;
125
125
  enum?: string[] | undefined;
126
- file?: File | undefined;
127
- refUid?: string | undefined;
128
- format?: string | undefined;
129
126
  nullable?: boolean | undefined;
127
+ format?: string | undefined;
128
+ file?: any;
129
+ refUid?: string | undefined;
130
130
  }[];
131
131
  query: {
132
132
  value: string;
@@ -135,53 +135,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
135
135
  minimum?: number | undefined;
136
136
  type?: string | undefined;
137
137
  maximum?: number | undefined;
138
- description?: string | undefined;
139
138
  default?: any;
140
139
  required?: boolean | undefined;
140
+ description?: string | undefined;
141
141
  enum?: string[] | undefined;
142
- file?: File | undefined;
143
- refUid?: string | undefined;
144
- format?: string | undefined;
145
142
  nullable?: boolean | undefined;
143
+ format?: string | undefined;
144
+ file?: any;
145
+ refUid?: string | undefined;
146
146
  }[];
147
- cookies: {
147
+ headers: {
148
148
  value: string;
149
149
  key: string;
150
150
  enabled: boolean;
151
151
  minimum?: number | undefined;
152
152
  type?: string | undefined;
153
153
  maximum?: number | undefined;
154
- description?: string | undefined;
155
154
  default?: any;
156
155
  required?: boolean | undefined;
156
+ description?: string | undefined;
157
157
  enum?: string[] | undefined;
158
- file?: File | undefined;
159
- refUid?: string | undefined;
160
- format?: string | undefined;
161
158
  nullable?: boolean | undefined;
159
+ format?: string | undefined;
160
+ file?: any;
161
+ refUid?: string | undefined;
162
162
  }[];
163
- headers: {
163
+ cookies: {
164
164
  value: string;
165
165
  key: string;
166
166
  enabled: boolean;
167
167
  minimum?: number | undefined;
168
168
  type?: string | undefined;
169
169
  maximum?: number | undefined;
170
- description?: string | undefined;
171
170
  default?: any;
172
171
  required?: boolean | undefined;
172
+ description?: string | undefined;
173
173
  enum?: string[] | undefined;
174
- file?: File | undefined;
175
- refUid?: string | undefined;
176
- format?: string | undefined;
177
174
  nullable?: boolean | undefined;
175
+ format?: string | undefined;
176
+ file?: any;
177
+ refUid?: string | undefined;
178
178
  }[];
179
179
  };
180
180
  requestUid: string;
181
181
  body: {
182
182
  raw: {
183
183
  value: string;
184
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
184
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
185
185
  };
186
186
  formData: {
187
187
  value: {
@@ -191,14 +191,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
191
191
  minimum?: number | undefined;
192
192
  type?: string | undefined;
193
193
  maximum?: number | undefined;
194
- description?: string | undefined;
195
194
  default?: any;
196
195
  required?: boolean | undefined;
196
+ description?: string | undefined;
197
197
  enum?: string[] | undefined;
198
- file?: File | undefined;
199
- refUid?: string | undefined;
200
- format?: string | undefined;
201
198
  nullable?: boolean | undefined;
199
+ format?: string | undefined;
200
+ file?: any;
201
+ refUid?: string | undefined;
202
202
  }[];
203
203
  encoding: "form-data" | "urlencoded";
204
204
  };
@@ -213,8 +213,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
213
213
  url: string;
214
214
  description?: string | undefined;
215
215
  variables?: Record<string, {
216
- uid: string;
217
216
  default: string;
217
+ uid: string;
218
218
  value?: string | undefined;
219
219
  description?: string | undefined;
220
220
  enum?: string[] | undefined;
@@ -224,8 +224,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
224
224
  type: "apiKey";
225
225
  value: string;
226
226
  uid: string;
227
- nameKey: string;
228
227
  name: string;
228
+ nameKey: string;
229
229
  in: "query" | "header" | "cookie";
230
230
  description?: string | undefined;
231
231
  } | {
@@ -340,14 +340,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
340
340
  minimum?: number | undefined;
341
341
  type?: string | undefined;
342
342
  maximum?: number | undefined;
343
- description?: string | undefined;
344
343
  default?: any;
345
344
  required?: boolean | undefined;
345
+ description?: string | undefined;
346
346
  enum?: string[] | undefined;
347
- file?: File | undefined;
348
- refUid?: string | undefined;
349
- format?: string | undefined;
350
347
  nullable?: boolean | undefined;
348
+ format?: string | undefined;
349
+ file?: any;
350
+ refUid?: string | undefined;
351
351
  }[];
352
352
  query: {
353
353
  value: string;
@@ -356,53 +356,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
356
356
  minimum?: number | undefined;
357
357
  type?: string | undefined;
358
358
  maximum?: number | undefined;
359
- description?: string | undefined;
360
359
  default?: any;
361
360
  required?: boolean | undefined;
361
+ description?: string | undefined;
362
362
  enum?: string[] | undefined;
363
- file?: File | undefined;
364
- refUid?: string | undefined;
365
- format?: string | undefined;
366
363
  nullable?: boolean | undefined;
364
+ format?: string | undefined;
365
+ file?: any;
366
+ refUid?: string | undefined;
367
367
  }[];
368
- cookies: {
368
+ headers: {
369
369
  value: string;
370
370
  key: string;
371
371
  enabled: boolean;
372
372
  minimum?: number | undefined;
373
373
  type?: string | undefined;
374
374
  maximum?: number | undefined;
375
- description?: string | undefined;
376
375
  default?: any;
377
376
  required?: boolean | undefined;
377
+ description?: string | undefined;
378
378
  enum?: string[] | undefined;
379
- file?: File | undefined;
380
- refUid?: string | undefined;
381
- format?: string | undefined;
382
379
  nullable?: boolean | undefined;
380
+ format?: string | undefined;
381
+ file?: any;
382
+ refUid?: string | undefined;
383
383
  }[];
384
- headers: {
384
+ cookies: {
385
385
  value: string;
386
386
  key: string;
387
387
  enabled: boolean;
388
388
  minimum?: number | undefined;
389
389
  type?: string | undefined;
390
390
  maximum?: number | undefined;
391
- description?: string | undefined;
392
391
  default?: any;
393
392
  required?: boolean | undefined;
393
+ description?: string | undefined;
394
394
  enum?: string[] | undefined;
395
- file?: File | undefined;
396
- refUid?: string | undefined;
397
- format?: string | undefined;
398
395
  nullable?: boolean | undefined;
396
+ format?: string | undefined;
397
+ file?: any;
398
+ refUid?: string | undefined;
399
399
  }[];
400
400
  };
401
401
  requestUid: string;
402
402
  body: {
403
403
  raw: {
404
404
  value: string;
405
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
405
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
406
406
  };
407
407
  formData: {
408
408
  value: {
@@ -412,14 +412,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
412
412
  minimum?: number | undefined;
413
413
  type?: string | undefined;
414
414
  maximum?: number | undefined;
415
- description?: string | undefined;
416
415
  default?: any;
417
416
  required?: boolean | undefined;
417
+ description?: string | undefined;
418
418
  enum?: string[] | undefined;
419
- file?: File | undefined;
420
- refUid?: string | undefined;
421
- format?: string | undefined;
422
419
  nullable?: boolean | undefined;
420
+ format?: string | undefined;
421
+ file?: any;
422
+ refUid?: string | undefined;
423
423
  }[];
424
424
  encoding: "form-data" | "urlencoded";
425
425
  };
@@ -444,8 +444,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
444
444
  type: "apiKey";
445
445
  value: string;
446
446
  uid: string;
447
- nameKey: string;
448
447
  name: string;
448
+ nameKey: string;
449
449
  in: "query" | "header" | "cookie";
450
450
  description?: string | undefined;
451
451
  } | {
@@ -512,8 +512,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
512
512
  url: string;
513
513
  description?: string | undefined;
514
514
  variables?: Record<string, {
515
- uid: string;
516
515
  default: string;
516
+ uid: string;
517
517
  value?: string | undefined;
518
518
  description?: string | undefined;
519
519
  enum?: string[] | undefined;
@@ -521,18 +521,18 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
521
521
  } | null>;
522
522
  activeWorkspace: import("vue").ComputedRef<{
523
523
  uid: string;
524
- description: string;
525
524
  name: string;
525
+ description: string;
526
526
  isReadOnly: boolean;
527
527
  collectionUids: string[];
528
528
  environmentUids: string[];
529
529
  cookieUids: string[];
530
530
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
531
531
  hotKeyConfig?: {
532
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
533
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
532
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
534
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
535
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
535
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
536
536
  }>> | undefined;
537
537
  } | undefined;
538
538
  proxyUrl?: string | undefined;
@@ -582,8 +582,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
582
582
  url: string;
583
583
  description?: string | undefined;
584
584
  variables?: Record<string, {
585
- uid: string;
586
585
  default: string;
586
+ uid: string;
587
587
  value?: string | undefined;
588
588
  description?: string | undefined;
589
589
  enum?: string[] | undefined;
@@ -608,8 +608,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
608
608
  sidebarWidth: import("vue").Ref<string>;
609
609
  setSidebarWidth: (width: string) => void;
610
610
  findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
611
- importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: import("@scalar/oas-utils").Spec["servers"]) => Promise<void>;
612
- importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/oas-utils").Spec["servers"]) => Promise<void>;
611
+ importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
612
+ importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
613
613
  cookieMutators: {
614
614
  add: (item: {
615
615
  value: string;
@@ -1225,13 +1225,13 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1225
1225
  path: string;
1226
1226
  uid: string;
1227
1227
  childUids: string[];
1228
- method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
1229
1228
  parameters: {
1230
1229
  path: Record<string, any>;
1231
1230
  query: Record<string, any>;
1232
- cookies: Record<string, any>;
1233
1231
  headers: Record<string, any>;
1232
+ cookies: Record<string, any>;
1234
1233
  };
1234
+ method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
1235
1235
  ref: {
1236
1236
  path: string;
1237
1237
  isExternal: boolean;
@@ -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" | "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;
1252
+ edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1253
+ untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1254
1254
  undo: (uid: string) => void;
1255
1255
  redo: (uid: string) => void;
1256
1256
  loadLocalStorage: () => void;
@@ -1268,14 +1268,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1268
1268
  minimum?: number | undefined;
1269
1269
  type?: string | undefined;
1270
1270
  maximum?: number | undefined;
1271
- description?: string | undefined;
1272
1271
  default?: any;
1273
1272
  required?: boolean | undefined;
1273
+ description?: string | undefined;
1274
1274
  enum?: string[] | undefined;
1275
- file?: File | undefined;
1276
- refUid?: string | undefined;
1277
- format?: string | undefined;
1278
1275
  nullable?: boolean | undefined;
1276
+ format?: string | undefined;
1277
+ file?: any;
1278
+ refUid?: string | undefined;
1279
1279
  }[];
1280
1280
  query: {
1281
1281
  value: string;
@@ -1284,53 +1284,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1284
1284
  minimum?: number | undefined;
1285
1285
  type?: string | undefined;
1286
1286
  maximum?: number | undefined;
1287
- description?: string | undefined;
1288
1287
  default?: any;
1289
1288
  required?: boolean | undefined;
1289
+ description?: string | undefined;
1290
1290
  enum?: string[] | undefined;
1291
- file?: File | undefined;
1292
- refUid?: string | undefined;
1293
- format?: string | undefined;
1294
1291
  nullable?: boolean | undefined;
1292
+ format?: string | undefined;
1293
+ file?: any;
1294
+ refUid?: string | undefined;
1295
1295
  }[];
1296
- cookies: {
1296
+ headers: {
1297
1297
  value: string;
1298
1298
  key: string;
1299
1299
  enabled: boolean;
1300
1300
  minimum?: number | undefined;
1301
1301
  type?: string | undefined;
1302
1302
  maximum?: number | undefined;
1303
- description?: string | undefined;
1304
1303
  default?: any;
1305
1304
  required?: boolean | undefined;
1305
+ description?: string | undefined;
1306
1306
  enum?: string[] | undefined;
1307
- file?: File | undefined;
1308
- refUid?: string | undefined;
1309
- format?: string | undefined;
1310
1307
  nullable?: boolean | undefined;
1308
+ format?: string | undefined;
1309
+ file?: any;
1310
+ refUid?: string | undefined;
1311
1311
  }[];
1312
- headers: {
1312
+ cookies: {
1313
1313
  value: string;
1314
1314
  key: string;
1315
1315
  enabled: boolean;
1316
1316
  minimum?: number | undefined;
1317
1317
  type?: string | undefined;
1318
1318
  maximum?: number | undefined;
1319
- description?: string | undefined;
1320
1319
  default?: any;
1321
1320
  required?: boolean | undefined;
1321
+ description?: string | undefined;
1322
1322
  enum?: string[] | undefined;
1323
- file?: File | undefined;
1324
- refUid?: string | undefined;
1325
- format?: string | undefined;
1326
1323
  nullable?: boolean | undefined;
1324
+ format?: string | undefined;
1325
+ file?: any;
1326
+ refUid?: string | undefined;
1327
1327
  }[];
1328
1328
  };
1329
1329
  requestUid: string;
1330
1330
  body: {
1331
1331
  raw: {
1332
1332
  value: string;
1333
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1333
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1334
1334
  };
1335
1335
  formData: {
1336
1336
  value: {
@@ -1340,14 +1340,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1340
1340
  minimum?: number | undefined;
1341
1341
  type?: string | undefined;
1342
1342
  maximum?: number | undefined;
1343
- description?: string | undefined;
1344
1343
  default?: any;
1345
1344
  required?: boolean | undefined;
1345
+ description?: string | undefined;
1346
1346
  enum?: string[] | undefined;
1347
- file?: File | undefined;
1348
- refUid?: string | undefined;
1349
- format?: string | undefined;
1350
1347
  nullable?: boolean | undefined;
1348
+ format?: string | undefined;
1349
+ file?: any;
1350
+ refUid?: string | undefined;
1351
1351
  }[];
1352
1352
  encoding: "form-data" | "urlencoded";
1353
1353
  };
@@ -1368,14 +1368,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1368
1368
  minimum?: number | undefined;
1369
1369
  type?: string | undefined;
1370
1370
  maximum?: number | undefined;
1371
- description?: string | undefined;
1372
1371
  default?: any;
1373
1372
  required?: boolean | undefined;
1373
+ description?: string | undefined;
1374
1374
  enum?: string[] | undefined;
1375
- file?: File | undefined;
1376
- refUid?: string | undefined;
1377
- format?: string | undefined;
1378
1375
  nullable?: boolean | undefined;
1376
+ format?: string | undefined;
1377
+ file?: any;
1378
+ refUid?: string | undefined;
1379
1379
  }[];
1380
1380
  query: {
1381
1381
  value: string;
@@ -1384,53 +1384,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1384
1384
  minimum?: number | undefined;
1385
1385
  type?: string | undefined;
1386
1386
  maximum?: number | undefined;
1387
- description?: string | undefined;
1388
1387
  default?: any;
1389
1388
  required?: boolean | undefined;
1389
+ description?: string | undefined;
1390
1390
  enum?: string[] | undefined;
1391
- file?: File | undefined;
1392
- refUid?: string | undefined;
1393
- format?: string | undefined;
1394
1391
  nullable?: boolean | undefined;
1392
+ format?: string | undefined;
1393
+ file?: any;
1394
+ refUid?: string | undefined;
1395
1395
  }[];
1396
- cookies: {
1396
+ headers: {
1397
1397
  value: string;
1398
1398
  key: string;
1399
1399
  enabled: boolean;
1400
1400
  minimum?: number | undefined;
1401
1401
  type?: string | undefined;
1402
1402
  maximum?: number | undefined;
1403
- description?: string | undefined;
1404
1403
  default?: any;
1405
1404
  required?: boolean | undefined;
1405
+ description?: string | undefined;
1406
1406
  enum?: string[] | undefined;
1407
- file?: File | undefined;
1408
- refUid?: string | undefined;
1409
- format?: string | undefined;
1410
1407
  nullable?: boolean | undefined;
1408
+ format?: string | undefined;
1409
+ file?: any;
1410
+ refUid?: string | undefined;
1411
1411
  }[];
1412
- headers: {
1412
+ cookies: {
1413
1413
  value: string;
1414
1414
  key: string;
1415
1415
  enabled: boolean;
1416
1416
  minimum?: number | undefined;
1417
1417
  type?: string | undefined;
1418
1418
  maximum?: number | undefined;
1419
- description?: string | undefined;
1420
1419
  default?: any;
1421
1420
  required?: boolean | undefined;
1421
+ description?: string | undefined;
1422
1422
  enum?: string[] | undefined;
1423
- file?: File | undefined;
1424
- refUid?: string | undefined;
1425
- format?: string | undefined;
1426
1423
  nullable?: boolean | undefined;
1424
+ format?: string | undefined;
1425
+ file?: any;
1426
+ refUid?: string | undefined;
1427
1427
  }[];
1428
1428
  };
1429
1429
  requestUid: string;
1430
1430
  body: {
1431
1431
  raw: {
1432
1432
  value: string;
1433
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1433
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1434
1434
  };
1435
1435
  formData: {
1436
1436
  value: {
@@ -1440,14 +1440,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1440
1440
  minimum?: number | undefined;
1441
1441
  type?: string | undefined;
1442
1442
  maximum?: number | undefined;
1443
- description?: string | undefined;
1444
1443
  default?: any;
1445
1444
  required?: boolean | undefined;
1445
+ description?: string | undefined;
1446
1446
  enum?: string[] | undefined;
1447
- file?: File | undefined;
1448
- refUid?: string | undefined;
1449
- format?: string | undefined;
1450
1447
  nullable?: boolean | undefined;
1448
+ format?: string | undefined;
1449
+ file?: any;
1450
+ refUid?: string | undefined;
1451
1451
  }[];
1452
1452
  encoding: "form-data" | "urlencoded";
1453
1453
  };
@@ -1469,14 +1469,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1469
1469
  minimum?: number | undefined;
1470
1470
  type?: string | undefined;
1471
1471
  maximum?: number | undefined;
1472
- description?: string | undefined;
1473
1472
  default?: any;
1474
1473
  required?: boolean | undefined;
1474
+ description?: string | undefined;
1475
1475
  enum?: string[] | undefined;
1476
- file?: File | undefined;
1477
- refUid?: string | undefined;
1478
- format?: string | undefined;
1479
1476
  nullable?: boolean | undefined;
1477
+ format?: string | undefined;
1478
+ file?: any;
1479
+ refUid?: string | undefined;
1480
1480
  }[];
1481
1481
  query: {
1482
1482
  value: string;
@@ -1485,53 +1485,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1485
1485
  minimum?: number | undefined;
1486
1486
  type?: string | undefined;
1487
1487
  maximum?: number | undefined;
1488
- description?: string | undefined;
1489
1488
  default?: any;
1490
1489
  required?: boolean | undefined;
1490
+ description?: string | undefined;
1491
1491
  enum?: string[] | undefined;
1492
- file?: File | undefined;
1493
- refUid?: string | undefined;
1494
- format?: string | undefined;
1495
1492
  nullable?: boolean | undefined;
1493
+ format?: string | undefined;
1494
+ file?: any;
1495
+ refUid?: string | undefined;
1496
1496
  }[];
1497
- cookies: {
1497
+ headers: {
1498
1498
  value: string;
1499
1499
  key: string;
1500
1500
  enabled: boolean;
1501
1501
  minimum?: number | undefined;
1502
1502
  type?: string | undefined;
1503
1503
  maximum?: number | undefined;
1504
- description?: string | undefined;
1505
1504
  default?: any;
1506
1505
  required?: boolean | undefined;
1506
+ description?: string | undefined;
1507
1507
  enum?: string[] | undefined;
1508
- file?: File | undefined;
1509
- refUid?: string | undefined;
1510
- format?: string | undefined;
1511
1508
  nullable?: boolean | undefined;
1509
+ format?: string | undefined;
1510
+ file?: any;
1511
+ refUid?: string | undefined;
1512
1512
  }[];
1513
- headers: {
1513
+ cookies: {
1514
1514
  value: string;
1515
1515
  key: string;
1516
1516
  enabled: boolean;
1517
1517
  minimum?: number | undefined;
1518
1518
  type?: string | undefined;
1519
1519
  maximum?: number | undefined;
1520
- description?: string | undefined;
1521
1520
  default?: any;
1522
1521
  required?: boolean | undefined;
1522
+ description?: string | undefined;
1523
1523
  enum?: string[] | undefined;
1524
- file?: File | undefined;
1525
- refUid?: string | undefined;
1526
- format?: string | undefined;
1527
1524
  nullable?: boolean | undefined;
1525
+ format?: string | undefined;
1526
+ file?: any;
1527
+ refUid?: string | undefined;
1528
1528
  }[];
1529
1529
  };
1530
1530
  requestUid: string;
1531
1531
  body: {
1532
1532
  raw: {
1533
1533
  value: string;
1534
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1534
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1535
1535
  };
1536
1536
  formData: {
1537
1537
  value: {
@@ -1541,14 +1541,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1541
1541
  minimum?: number | undefined;
1542
1542
  type?: string | undefined;
1543
1543
  maximum?: number | undefined;
1544
- description?: string | undefined;
1545
1544
  default?: any;
1546
1545
  required?: boolean | undefined;
1546
+ description?: string | undefined;
1547
1547
  enum?: string[] | undefined;
1548
- file?: File | undefined;
1549
- refUid?: string | undefined;
1550
- format?: string | undefined;
1551
1548
  nullable?: boolean | undefined;
1549
+ format?: string | undefined;
1550
+ file?: any;
1551
+ refUid?: string | undefined;
1552
1552
  }[];
1553
1553
  encoding: "form-data" | "urlencoded";
1554
1554
  };
@@ -1557,7 +1557,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1557
1557
  };
1558
1558
  auth: Record<string, any>;
1559
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}.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}.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}.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}.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}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
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
1561
  uid: string;
1562
1562
  name: string;
1563
1563
  url: string;
@@ -1569,14 +1569,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1569
1569
  minimum?: number | undefined;
1570
1570
  type?: string | undefined;
1571
1571
  maximum?: number | undefined;
1572
- description?: string | undefined;
1573
1572
  default?: any;
1574
1573
  required?: boolean | undefined;
1574
+ description?: string | undefined;
1575
1575
  enum?: string[] | undefined;
1576
- file?: File | undefined;
1577
- refUid?: string | undefined;
1578
- format?: string | undefined;
1579
1576
  nullable?: boolean | undefined;
1577
+ format?: string | undefined;
1578
+ file?: any;
1579
+ refUid?: string | undefined;
1580
1580
  }[];
1581
1581
  query: {
1582
1582
  value: string;
@@ -1585,53 +1585,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1585
1585
  minimum?: number | undefined;
1586
1586
  type?: string | undefined;
1587
1587
  maximum?: number | undefined;
1588
- description?: string | undefined;
1589
1588
  default?: any;
1590
1589
  required?: boolean | undefined;
1590
+ description?: string | undefined;
1591
1591
  enum?: string[] | undefined;
1592
- file?: File | undefined;
1593
- refUid?: string | undefined;
1594
- format?: string | undefined;
1595
1592
  nullable?: boolean | undefined;
1593
+ format?: string | undefined;
1594
+ file?: any;
1595
+ refUid?: string | undefined;
1596
1596
  }[];
1597
- cookies: {
1597
+ headers: {
1598
1598
  value: string;
1599
1599
  key: string;
1600
1600
  enabled: boolean;
1601
1601
  minimum?: number | undefined;
1602
1602
  type?: string | undefined;
1603
1603
  maximum?: number | undefined;
1604
- description?: string | undefined;
1605
1604
  default?: any;
1606
1605
  required?: boolean | undefined;
1606
+ description?: string | undefined;
1607
1607
  enum?: string[] | undefined;
1608
- file?: File | undefined;
1609
- refUid?: string | undefined;
1610
- format?: string | undefined;
1611
1608
  nullable?: boolean | undefined;
1609
+ format?: string | undefined;
1610
+ file?: any;
1611
+ refUid?: string | undefined;
1612
1612
  }[];
1613
- headers: {
1613
+ cookies: {
1614
1614
  value: string;
1615
1615
  key: string;
1616
1616
  enabled: boolean;
1617
1617
  minimum?: number | undefined;
1618
1618
  type?: string | undefined;
1619
1619
  maximum?: number | undefined;
1620
- description?: string | undefined;
1621
1620
  default?: any;
1622
1621
  required?: boolean | undefined;
1622
+ description?: string | undefined;
1623
1623
  enum?: string[] | undefined;
1624
- file?: File | undefined;
1625
- refUid?: string | undefined;
1626
- format?: string | undefined;
1627
1624
  nullable?: boolean | undefined;
1625
+ format?: string | undefined;
1626
+ file?: any;
1627
+ refUid?: string | undefined;
1628
1628
  }[];
1629
1629
  };
1630
1630
  requestUid: string;
1631
1631
  body: {
1632
1632
  raw: {
1633
1633
  value: string;
1634
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1634
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1635
1635
  };
1636
1636
  formData: {
1637
1637
  value: {
@@ -1641,14 +1641,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1641
1641
  minimum?: number | undefined;
1642
1642
  type?: string | undefined;
1643
1643
  maximum?: number | undefined;
1644
- description?: string | undefined;
1645
1644
  default?: any;
1646
1645
  required?: boolean | undefined;
1646
+ description?: string | undefined;
1647
1647
  enum?: string[] | undefined;
1648
- file?: File | undefined;
1649
- refUid?: string | undefined;
1650
- format?: string | undefined;
1651
1648
  nullable?: boolean | undefined;
1649
+ format?: string | undefined;
1650
+ file?: any;
1651
+ refUid?: string | undefined;
1652
1652
  }[];
1653
1653
  encoding: "form-data" | "urlencoded";
1654
1654
  };
@@ -1668,14 +1668,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1668
1668
  minimum?: number | undefined;
1669
1669
  type?: string | undefined;
1670
1670
  maximum?: number | undefined;
1671
- description?: string | undefined;
1672
1671
  default?: any;
1673
1672
  required?: boolean | undefined;
1673
+ description?: string | undefined;
1674
1674
  enum?: string[] | undefined;
1675
- file?: File | undefined;
1676
- refUid?: string | undefined;
1677
- format?: string | undefined;
1678
1675
  nullable?: boolean | undefined;
1676
+ format?: string | undefined;
1677
+ file?: any;
1678
+ refUid?: string | undefined;
1679
1679
  }[];
1680
1680
  query: {
1681
1681
  value: string;
@@ -1684,53 +1684,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1684
1684
  minimum?: number | undefined;
1685
1685
  type?: string | undefined;
1686
1686
  maximum?: number | undefined;
1687
- description?: string | undefined;
1688
1687
  default?: any;
1689
1688
  required?: boolean | undefined;
1689
+ description?: string | undefined;
1690
1690
  enum?: string[] | undefined;
1691
- file?: File | undefined;
1692
- refUid?: string | undefined;
1693
- format?: string | undefined;
1694
1691
  nullable?: boolean | undefined;
1692
+ format?: string | undefined;
1693
+ file?: any;
1694
+ refUid?: string | undefined;
1695
1695
  }[];
1696
- cookies: {
1696
+ headers: {
1697
1697
  value: string;
1698
1698
  key: string;
1699
1699
  enabled: boolean;
1700
1700
  minimum?: number | undefined;
1701
1701
  type?: string | undefined;
1702
1702
  maximum?: number | undefined;
1703
- description?: string | undefined;
1704
1703
  default?: any;
1705
1704
  required?: boolean | undefined;
1705
+ description?: string | undefined;
1706
1706
  enum?: string[] | undefined;
1707
- file?: File | undefined;
1708
- refUid?: string | undefined;
1709
- format?: string | undefined;
1710
1707
  nullable?: boolean | undefined;
1708
+ format?: string | undefined;
1709
+ file?: any;
1710
+ refUid?: string | undefined;
1711
1711
  }[];
1712
- headers: {
1712
+ cookies: {
1713
1713
  value: string;
1714
1714
  key: string;
1715
1715
  enabled: boolean;
1716
1716
  minimum?: number | undefined;
1717
1717
  type?: string | undefined;
1718
1718
  maximum?: number | undefined;
1719
- description?: string | undefined;
1720
1719
  default?: any;
1721
1720
  required?: boolean | undefined;
1721
+ description?: string | undefined;
1722
1722
  enum?: string[] | undefined;
1723
- file?: File | undefined;
1724
- refUid?: string | undefined;
1725
- format?: string | undefined;
1726
1723
  nullable?: boolean | undefined;
1724
+ format?: string | undefined;
1725
+ file?: any;
1726
+ refUid?: string | undefined;
1727
1727
  }[];
1728
1728
  };
1729
1729
  requestUid: string;
1730
1730
  body: {
1731
1731
  raw: {
1732
1732
  value: string;
1733
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1733
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1734
1734
  };
1735
1735
  formData: {
1736
1736
  value: {
@@ -1740,14 +1740,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1740
1740
  minimum?: number | undefined;
1741
1741
  type?: string | undefined;
1742
1742
  maximum?: number | undefined;
1743
- description?: string | undefined;
1744
1743
  default?: any;
1745
1744
  required?: boolean | undefined;
1745
+ description?: string | undefined;
1746
1746
  enum?: string[] | undefined;
1747
- file?: File | undefined;
1748
- refUid?: string | undefined;
1749
- format?: string | undefined;
1750
1747
  nullable?: boolean | undefined;
1748
+ format?: string | undefined;
1749
+ file?: any;
1750
+ refUid?: string | undefined;
1751
1751
  }[];
1752
1752
  encoding: "form-data" | "urlencoded";
1753
1753
  };
@@ -1767,14 +1767,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1767
1767
  minimum?: number | undefined;
1768
1768
  type?: string | undefined;
1769
1769
  maximum?: number | undefined;
1770
- description?: string | undefined;
1771
1770
  default?: any;
1772
1771
  required?: boolean | undefined;
1772
+ description?: string | undefined;
1773
1773
  enum?: string[] | undefined;
1774
- file?: File | undefined;
1775
- refUid?: string | undefined;
1776
- format?: string | undefined;
1777
1774
  nullable?: boolean | undefined;
1775
+ format?: string | undefined;
1776
+ file?: any;
1777
+ refUid?: string | undefined;
1778
1778
  }[];
1779
1779
  query: {
1780
1780
  value: string;
@@ -1783,53 +1783,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1783
1783
  minimum?: number | undefined;
1784
1784
  type?: string | undefined;
1785
1785
  maximum?: number | undefined;
1786
- description?: string | undefined;
1787
1786
  default?: any;
1788
1787
  required?: boolean | undefined;
1788
+ description?: string | undefined;
1789
1789
  enum?: string[] | undefined;
1790
- file?: File | undefined;
1791
- refUid?: string | undefined;
1792
- format?: string | undefined;
1793
1790
  nullable?: boolean | undefined;
1791
+ format?: string | undefined;
1792
+ file?: any;
1793
+ refUid?: string | undefined;
1794
1794
  }[];
1795
- cookies: {
1795
+ headers: {
1796
1796
  value: string;
1797
1797
  key: string;
1798
1798
  enabled: boolean;
1799
1799
  minimum?: number | undefined;
1800
1800
  type?: string | undefined;
1801
1801
  maximum?: number | undefined;
1802
- description?: string | undefined;
1803
1802
  default?: any;
1804
1803
  required?: boolean | undefined;
1804
+ description?: string | undefined;
1805
1805
  enum?: string[] | undefined;
1806
- file?: File | undefined;
1807
- refUid?: string | undefined;
1808
- format?: string | undefined;
1809
1806
  nullable?: boolean | undefined;
1807
+ format?: string | undefined;
1808
+ file?: any;
1809
+ refUid?: string | undefined;
1810
1810
  }[];
1811
- headers: {
1811
+ cookies: {
1812
1812
  value: string;
1813
1813
  key: string;
1814
1814
  enabled: boolean;
1815
1815
  minimum?: number | undefined;
1816
1816
  type?: string | undefined;
1817
1817
  maximum?: number | undefined;
1818
- description?: string | undefined;
1819
1818
  default?: any;
1820
1819
  required?: boolean | undefined;
1820
+ description?: string | undefined;
1821
1821
  enum?: string[] | undefined;
1822
- file?: File | undefined;
1823
- refUid?: string | undefined;
1824
- format?: string | undefined;
1825
1822
  nullable?: boolean | undefined;
1823
+ format?: string | undefined;
1824
+ file?: any;
1825
+ refUid?: string | undefined;
1826
1826
  }[];
1827
1827
  };
1828
1828
  requestUid: string;
1829
1829
  body: {
1830
1830
  raw: {
1831
1831
  value: string;
1832
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1832
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1833
1833
  };
1834
1834
  formData: {
1835
1835
  value: {
@@ -1839,14 +1839,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1839
1839
  minimum?: number | undefined;
1840
1840
  type?: string | undefined;
1841
1841
  maximum?: number | undefined;
1842
- description?: string | undefined;
1843
1842
  default?: any;
1844
1843
  required?: boolean | undefined;
1844
+ description?: string | undefined;
1845
1845
  enum?: string[] | undefined;
1846
- file?: File | undefined;
1847
- refUid?: string | undefined;
1848
- format?: string | undefined;
1849
1846
  nullable?: boolean | undefined;
1847
+ format?: string | undefined;
1848
+ file?: any;
1849
+ refUid?: string | undefined;
1850
1850
  }[];
1851
1851
  encoding: "form-data" | "urlencoded";
1852
1852
  };
@@ -1855,7 +1855,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1855
1855
  };
1856
1856
  auth: Record<string, any>;
1857
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}.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}.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}.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}.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}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
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
1859
  uid: string;
1860
1860
  name: string;
1861
1861
  url: string;
@@ -1867,14 +1867,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1867
1867
  minimum?: number | undefined;
1868
1868
  type?: string | undefined;
1869
1869
  maximum?: number | undefined;
1870
- description?: string | undefined;
1871
1870
  default?: any;
1872
1871
  required?: boolean | undefined;
1872
+ description?: string | undefined;
1873
1873
  enum?: string[] | undefined;
1874
- file?: File | undefined;
1875
- refUid?: string | undefined;
1876
- format?: string | undefined;
1877
1874
  nullable?: boolean | undefined;
1875
+ format?: string | undefined;
1876
+ file?: any;
1877
+ refUid?: string | undefined;
1878
1878
  }[];
1879
1879
  query: {
1880
1880
  value: string;
@@ -1883,53 +1883,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1883
1883
  minimum?: number | undefined;
1884
1884
  type?: string | undefined;
1885
1885
  maximum?: number | undefined;
1886
- description?: string | undefined;
1887
1886
  default?: any;
1888
1887
  required?: boolean | undefined;
1888
+ description?: string | undefined;
1889
1889
  enum?: string[] | undefined;
1890
- file?: File | undefined;
1891
- refUid?: string | undefined;
1892
- format?: string | undefined;
1893
1890
  nullable?: boolean | undefined;
1891
+ format?: string | undefined;
1892
+ file?: any;
1893
+ refUid?: string | undefined;
1894
1894
  }[];
1895
- cookies: {
1895
+ headers: {
1896
1896
  value: string;
1897
1897
  key: string;
1898
1898
  enabled: boolean;
1899
1899
  minimum?: number | undefined;
1900
1900
  type?: string | undefined;
1901
1901
  maximum?: number | undefined;
1902
- description?: string | undefined;
1903
1902
  default?: any;
1904
1903
  required?: boolean | undefined;
1904
+ description?: string | undefined;
1905
1905
  enum?: string[] | undefined;
1906
- file?: File | undefined;
1907
- refUid?: string | undefined;
1908
- format?: string | undefined;
1909
1906
  nullable?: boolean | undefined;
1907
+ format?: string | undefined;
1908
+ file?: any;
1909
+ refUid?: string | undefined;
1910
1910
  }[];
1911
- headers: {
1911
+ cookies: {
1912
1912
  value: string;
1913
1913
  key: string;
1914
1914
  enabled: boolean;
1915
1915
  minimum?: number | undefined;
1916
1916
  type?: string | undefined;
1917
1917
  maximum?: number | undefined;
1918
- description?: string | undefined;
1919
1918
  default?: any;
1920
1919
  required?: boolean | undefined;
1920
+ description?: string | undefined;
1921
1921
  enum?: string[] | undefined;
1922
- file?: File | undefined;
1923
- refUid?: string | undefined;
1924
- format?: string | undefined;
1925
1922
  nullable?: boolean | undefined;
1923
+ format?: string | undefined;
1924
+ file?: any;
1925
+ refUid?: string | undefined;
1926
1926
  }[];
1927
1927
  };
1928
1928
  requestUid: string;
1929
1929
  body: {
1930
1930
  raw: {
1931
1931
  value: string;
1932
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1932
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1933
1933
  };
1934
1934
  formData: {
1935
1935
  value: {
@@ -1939,14 +1939,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1939
1939
  minimum?: number | undefined;
1940
1940
  type?: string | undefined;
1941
1941
  maximum?: number | undefined;
1942
- description?: string | undefined;
1943
1942
  default?: any;
1944
1943
  required?: boolean | undefined;
1944
+ description?: string | undefined;
1945
1945
  enum?: string[] | undefined;
1946
- file?: File | undefined;
1947
- refUid?: string | undefined;
1948
- format?: string | undefined;
1949
1946
  nullable?: boolean | undefined;
1947
+ format?: string | undefined;
1948
+ file?: any;
1949
+ refUid?: string | undefined;
1950
1950
  }[];
1951
1951
  encoding: "form-data" | "urlencoded";
1952
1952
  };
@@ -1966,14 +1966,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1966
1966
  minimum?: number | undefined;
1967
1967
  type?: string | undefined;
1968
1968
  maximum?: number | undefined;
1969
- description?: string | undefined;
1970
1969
  default?: any;
1971
1970
  required?: boolean | undefined;
1971
+ description?: string | undefined;
1972
1972
  enum?: string[] | undefined;
1973
- file?: File | undefined;
1974
- refUid?: string | undefined;
1975
- format?: string | undefined;
1976
1973
  nullable?: boolean | undefined;
1974
+ format?: string | undefined;
1975
+ file?: any;
1976
+ refUid?: string | undefined;
1977
1977
  }[];
1978
1978
  query: {
1979
1979
  value: string;
@@ -1982,53 +1982,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
1982
1982
  minimum?: number | undefined;
1983
1983
  type?: string | undefined;
1984
1984
  maximum?: number | undefined;
1985
- description?: string | undefined;
1986
1985
  default?: any;
1987
1986
  required?: boolean | undefined;
1987
+ description?: string | undefined;
1988
1988
  enum?: string[] | undefined;
1989
- file?: File | undefined;
1990
- refUid?: string | undefined;
1991
- format?: string | undefined;
1992
1989
  nullable?: boolean | undefined;
1990
+ format?: string | undefined;
1991
+ file?: any;
1992
+ refUid?: string | undefined;
1993
1993
  }[];
1994
- cookies: {
1994
+ headers: {
1995
1995
  value: string;
1996
1996
  key: string;
1997
1997
  enabled: boolean;
1998
1998
  minimum?: number | undefined;
1999
1999
  type?: string | undefined;
2000
2000
  maximum?: number | undefined;
2001
- description?: string | undefined;
2002
2001
  default?: any;
2003
2002
  required?: boolean | undefined;
2003
+ description?: string | undefined;
2004
2004
  enum?: string[] | undefined;
2005
- file?: File | undefined;
2006
- refUid?: string | undefined;
2007
- format?: string | undefined;
2008
2005
  nullable?: boolean | undefined;
2006
+ format?: string | undefined;
2007
+ file?: any;
2008
+ refUid?: string | undefined;
2009
2009
  }[];
2010
- headers: {
2010
+ cookies: {
2011
2011
  value: string;
2012
2012
  key: string;
2013
2013
  enabled: boolean;
2014
2014
  minimum?: number | undefined;
2015
2015
  type?: string | undefined;
2016
2016
  maximum?: number | undefined;
2017
- description?: string | undefined;
2018
2017
  default?: any;
2019
2018
  required?: boolean | undefined;
2019
+ description?: string | undefined;
2020
2020
  enum?: string[] | undefined;
2021
- file?: File | undefined;
2022
- refUid?: string | undefined;
2023
- format?: string | undefined;
2024
2021
  nullable?: boolean | undefined;
2022
+ format?: string | undefined;
2023
+ file?: any;
2024
+ refUid?: string | undefined;
2025
2025
  }[];
2026
2026
  };
2027
2027
  requestUid: string;
2028
2028
  body: {
2029
2029
  raw: {
2030
2030
  value: string;
2031
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
2031
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
2032
2032
  };
2033
2033
  formData: {
2034
2034
  value: {
@@ -2038,14 +2038,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2038
2038
  minimum?: number | undefined;
2039
2039
  type?: string | undefined;
2040
2040
  maximum?: number | undefined;
2041
- description?: string | undefined;
2042
2041
  default?: any;
2043
2042
  required?: boolean | undefined;
2043
+ description?: string | undefined;
2044
2044
  enum?: string[] | undefined;
2045
- file?: File | undefined;
2046
- refUid?: string | undefined;
2047
- format?: string | undefined;
2048
2045
  nullable?: boolean | undefined;
2046
+ format?: string | undefined;
2047
+ file?: any;
2048
+ refUid?: string | undefined;
2049
2049
  }[];
2050
2050
  encoding: "form-data" | "urlencoded";
2051
2051
  };
@@ -2065,14 +2065,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2065
2065
  minimum?: number | undefined;
2066
2066
  type?: string | undefined;
2067
2067
  maximum?: number | undefined;
2068
- description?: string | undefined;
2069
2068
  default?: any;
2070
2069
  required?: boolean | undefined;
2070
+ description?: string | undefined;
2071
2071
  enum?: string[] | undefined;
2072
- file?: File | undefined;
2073
- refUid?: string | undefined;
2074
- format?: string | undefined;
2075
2072
  nullable?: boolean | undefined;
2073
+ format?: string | undefined;
2074
+ file?: any;
2075
+ refUid?: string | undefined;
2076
2076
  }[];
2077
2077
  query: {
2078
2078
  value: string;
@@ -2081,53 +2081,53 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2081
2081
  minimum?: number | undefined;
2082
2082
  type?: string | undefined;
2083
2083
  maximum?: number | undefined;
2084
- description?: string | undefined;
2085
2084
  default?: any;
2086
2085
  required?: boolean | undefined;
2086
+ description?: string | undefined;
2087
2087
  enum?: string[] | undefined;
2088
- file?: File | undefined;
2089
- refUid?: string | undefined;
2090
- format?: string | undefined;
2091
2088
  nullable?: boolean | undefined;
2089
+ format?: string | undefined;
2090
+ file?: any;
2091
+ refUid?: string | undefined;
2092
2092
  }[];
2093
- cookies: {
2093
+ headers: {
2094
2094
  value: string;
2095
2095
  key: string;
2096
2096
  enabled: boolean;
2097
2097
  minimum?: number | undefined;
2098
2098
  type?: string | undefined;
2099
2099
  maximum?: number | undefined;
2100
- description?: string | undefined;
2101
2100
  default?: any;
2102
2101
  required?: boolean | undefined;
2102
+ description?: string | undefined;
2103
2103
  enum?: string[] | undefined;
2104
- file?: File | undefined;
2105
- refUid?: string | undefined;
2106
- format?: string | undefined;
2107
2104
  nullable?: boolean | undefined;
2105
+ format?: string | undefined;
2106
+ file?: any;
2107
+ refUid?: string | undefined;
2108
2108
  }[];
2109
- headers: {
2109
+ cookies: {
2110
2110
  value: string;
2111
2111
  key: string;
2112
2112
  enabled: boolean;
2113
2113
  minimum?: number | undefined;
2114
2114
  type?: string | undefined;
2115
2115
  maximum?: number | undefined;
2116
- description?: string | undefined;
2117
2116
  default?: any;
2118
2117
  required?: boolean | undefined;
2118
+ description?: string | undefined;
2119
2119
  enum?: string[] | undefined;
2120
- file?: File | undefined;
2121
- refUid?: string | undefined;
2122
- format?: string | undefined;
2123
2120
  nullable?: boolean | undefined;
2121
+ format?: string | undefined;
2122
+ file?: any;
2123
+ refUid?: string | undefined;
2124
2124
  }[];
2125
2125
  };
2126
2126
  requestUid: string;
2127
2127
  body: {
2128
2128
  raw: {
2129
2129
  value: string;
2130
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
2130
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
2131
2131
  };
2132
2132
  formData: {
2133
2133
  value: {
@@ -2137,14 +2137,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2137
2137
  minimum?: number | undefined;
2138
2138
  type?: string | undefined;
2139
2139
  maximum?: number | undefined;
2140
- description?: string | undefined;
2141
2140
  default?: any;
2142
2141
  required?: boolean | undefined;
2142
+ description?: string | undefined;
2143
2143
  enum?: string[] | undefined;
2144
- file?: File | undefined;
2145
- refUid?: string | undefined;
2146
- format?: string | undefined;
2147
2144
  nullable?: boolean | undefined;
2145
+ format?: string | undefined;
2146
+ file?: any;
2147
+ refUid?: string | undefined;
2148
2148
  }[];
2149
2149
  encoding: "form-data" | "urlencoded";
2150
2150
  };
@@ -2163,8 +2163,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2163
2163
  type: "apiKey";
2164
2164
  value: string;
2165
2165
  uid: string;
2166
- nameKey: string;
2167
2166
  name: string;
2167
+ nameKey: string;
2168
2168
  in: "query" | "header" | "cookie";
2169
2169
  description?: string | undefined;
2170
2170
  } | {
@@ -2232,8 +2232,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2232
2232
  type: "apiKey";
2233
2233
  value: string;
2234
2234
  uid: string;
2235
- nameKey: string;
2236
2235
  name: string;
2236
+ nameKey: string;
2237
2237
  in: "query" | "header" | "cookie";
2238
2238
  description?: string | undefined;
2239
2239
  } | {
@@ -2295,28 +2295,28 @@ 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" | "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" ? {
2298
+ edit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
2299
2299
  type: "apiKey";
2300
2300
  value: string;
2301
2301
  uid: string;
2302
- nameKey: string;
2303
2302
  name: string;
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" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
2306
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2307
2307
  type: "apiKey";
2308
2308
  value: string;
2309
2309
  uid: string;
2310
- nameKey: string;
2311
2310
  name: string;
2311
+ nameKey: string;
2312
2312
  in: "query" | "header" | "cookie";
2313
2313
  description?: string | undefined;
2314
2314
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
2315
2315
  type: "apiKey";
2316
2316
  value: string;
2317
2317
  uid: string;
2318
- nameKey: string;
2319
2318
  name: string;
2319
+ nameKey: string;
2320
2320
  in: "query" | "header" | "cookie";
2321
2321
  description?: string | undefined;
2322
2322
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
@@ -2494,28 +2494,28 @@ 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" | "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" ? {
2497
+ untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
2498
2498
  type: "apiKey";
2499
2499
  value: string;
2500
2500
  uid: string;
2501
- nameKey: string;
2502
2501
  name: string;
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" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
2505
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2506
2506
  type: "apiKey";
2507
2507
  value: string;
2508
2508
  uid: string;
2509
- nameKey: string;
2510
2509
  name: string;
2510
+ nameKey: string;
2511
2511
  in: "query" | "header" | "cookie";
2512
2512
  description?: string | undefined;
2513
2513
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
2514
2514
  type: "apiKey";
2515
2515
  value: string;
2516
2516
  uid: string;
2517
- nameKey: string;
2518
2517
  name: string;
2518
+ nameKey: string;
2519
2519
  in: "query" | "header" | "cookie";
2520
2520
  description?: string | undefined;
2521
2521
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
@@ -2703,8 +2703,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2703
2703
  url: string;
2704
2704
  description?: string | undefined;
2705
2705
  variables?: Record<string, {
2706
- uid: string;
2707
2706
  default: string;
2707
+ uid: string;
2708
2708
  value?: string | undefined;
2709
2709
  description?: string | undefined;
2710
2710
  enum?: string[] | undefined;
@@ -2717,8 +2717,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2717
2717
  url: string;
2718
2718
  description?: string | undefined;
2719
2719
  variables?: Record<string, {
2720
- uid: string;
2721
2720
  default: string;
2721
+ uid: string;
2722
2722
  value?: string | undefined;
2723
2723
  description?: string | undefined;
2724
2724
  enum?: string[] | undefined;
@@ -2729,8 +2729,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2729
2729
  url: string;
2730
2730
  description?: string | undefined;
2731
2731
  variables?: Record<string, {
2732
- uid: string;
2733
2732
  default: string;
2733
+ uid: string;
2734
2734
  value?: string | undefined;
2735
2735
  description?: string | undefined;
2736
2736
  enum?: string[] | undefined;
@@ -2740,8 +2740,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2740
2740
  url: string;
2741
2741
  description?: string | undefined;
2742
2742
  variables?: Record<string, {
2743
- uid: string;
2744
2743
  default: string;
2744
+ uid: string;
2745
2745
  value?: string | undefined;
2746
2746
  description?: string | undefined;
2747
2747
  enum?: string[] | undefined;
@@ -2751,8 +2751,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2751
2751
  url: string;
2752
2752
  description?: string | undefined;
2753
2753
  variables?: Record<string, {
2754
- uid: string;
2755
2754
  default: string;
2755
+ uid: string;
2756
2756
  value?: string | undefined;
2757
2757
  description?: string | undefined;
2758
2758
  enum?: string[] | undefined;
@@ -2763,8 +2763,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2763
2763
  url: string;
2764
2764
  description?: string | undefined;
2765
2765
  variables?: Record<string, {
2766
- uid: string;
2767
2766
  default: string;
2767
+ uid: string;
2768
2768
  value?: string | undefined;
2769
2769
  description?: string | undefined;
2770
2770
  enum?: string[] | undefined;
@@ -2774,8 +2774,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2774
2774
  url: string;
2775
2775
  description?: string | undefined;
2776
2776
  variables?: Record<string, {
2777
- uid: string;
2778
2777
  default: string;
2778
+ uid: string;
2779
2779
  value?: string | undefined;
2780
2780
  description?: string | undefined;
2781
2781
  enum?: string[] | undefined;
@@ -2785,8 +2785,8 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2785
2785
  url: string;
2786
2786
  description?: string | undefined;
2787
2787
  variables?: Record<string, {
2788
- uid: string;
2789
2788
  default: string;
2789
+ uid: string;
2790
2790
  value?: string | undefined;
2791
2791
  description?: string | undefined;
2792
2792
  enum?: string[] | undefined;
@@ -2799,36 +2799,36 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2799
2799
  workspaceMutators: {
2800
2800
  rawAdd: (item: {
2801
2801
  uid: string;
2802
- description: string;
2803
2802
  name: string;
2803
+ description: string;
2804
2804
  isReadOnly: boolean;
2805
2805
  collectionUids: string[];
2806
2806
  environmentUids: string[];
2807
2807
  cookieUids: string[];
2808
2808
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2809
2809
  hotKeyConfig?: {
2810
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2811
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2810
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2812
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2813
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2813
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2814
2814
  }>> | undefined;
2815
2815
  } | undefined;
2816
2816
  proxyUrl?: string | undefined;
2817
2817
  }) => void;
2818
2818
  add: (payload?: import("@scalar/oas-utils/entities/workspace").WorkspacePayload) => {
2819
2819
  uid: string;
2820
- description: string;
2821
2820
  name: string;
2821
+ description: string;
2822
2822
  isReadOnly: boolean;
2823
2823
  collectionUids: string[];
2824
2824
  environmentUids: string[];
2825
2825
  cookieUids: string[];
2826
2826
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2827
2827
  hotKeyConfig?: {
2828
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2829
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2828
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2830
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2831
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2831
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2832
2832
  }>> | undefined;
2833
2833
  } | undefined;
2834
2834
  proxyUrl?: string | undefined;
@@ -2837,122 +2837,122 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
2837
2837
  rename: (uid: string, newName: string) => void;
2838
2838
  set: (item: {
2839
2839
  uid: string;
2840
- description: string;
2841
2840
  name: string;
2841
+ description: string;
2842
2842
  isReadOnly: boolean;
2843
2843
  collectionUids: string[];
2844
2844
  environmentUids: string[];
2845
2845
  cookieUids: string[];
2846
2846
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2847
2847
  hotKeyConfig?: {
2848
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2849
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2848
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2850
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2851
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
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" ? {
2857
2857
  uid: string;
2858
- description: string;
2859
2858
  name: string;
2859
+ description: string;
2860
2860
  isReadOnly: boolean;
2861
2861
  collectionUids: string[];
2862
2862
  environmentUids: string[];
2863
2863
  cookieUids: string[];
2864
2864
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2865
2865
  hotKeyConfig?: {
2866
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2867
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2866
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2868
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2869
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2869
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2870
2870
  }>> | undefined;
2871
2871
  } | undefined;
2872
2872
  proxyUrl?: string | undefined;
2873
2873
  }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
2874
2874
  uid: string;
2875
- description: string;
2876
2875
  name: string;
2876
+ description: string;
2877
2877
  isReadOnly: boolean;
2878
2878
  collectionUids: string[];
2879
2879
  environmentUids: string[];
2880
2880
  cookieUids: string[];
2881
2881
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2882
2882
  hotKeyConfig?: {
2883
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2884
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2883
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2885
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2886
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2886
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2887
2887
  }>> | undefined;
2888
2888
  } | undefined;
2889
2889
  proxyUrl?: string | undefined;
2890
2890
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
2891
2891
  uid: string;
2892
- description: string;
2893
2892
  name: string;
2893
+ description: string;
2894
2894
  isReadOnly: boolean;
2895
2895
  collectionUids: string[];
2896
2896
  environmentUids: string[];
2897
2897
  cookieUids: string[];
2898
2898
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2899
2899
  hotKeyConfig?: {
2900
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2901
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2900
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2902
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2903
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
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" ? {
2909
2909
  uid: string;
2910
- description: string;
2911
2910
  name: string;
2911
+ description: string;
2912
2912
  isReadOnly: boolean;
2913
2913
  collectionUids: string[];
2914
2914
  environmentUids: string[];
2915
2915
  cookieUids: string[];
2916
2916
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2917
2917
  hotKeyConfig?: {
2918
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2919
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2918
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2920
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2921
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2921
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2922
2922
  }>> | undefined;
2923
2923
  } | undefined;
2924
2924
  proxyUrl?: string | undefined;
2925
2925
  }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
2926
2926
  uid: string;
2927
- description: string;
2928
2927
  name: string;
2928
+ description: string;
2929
2929
  isReadOnly: boolean;
2930
2930
  collectionUids: string[];
2931
2931
  environmentUids: string[];
2932
2932
  cookieUids: string[];
2933
2933
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2934
2934
  hotKeyConfig?: {
2935
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2936
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2935
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2937
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2938
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2938
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2939
2939
  }>> | undefined;
2940
2940
  } | undefined;
2941
2941
  proxyUrl?: string | undefined;
2942
2942
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
2943
2943
  uid: string;
2944
- description: string;
2945
2944
  name: string;
2945
+ description: string;
2946
2946
  isReadOnly: boolean;
2947
2947
  collectionUids: string[];
2948
2948
  environmentUids: string[];
2949
2949
  cookieUids: string[];
2950
2950
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2951
2951
  hotKeyConfig?: {
2952
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2953
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
2952
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2954
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2955
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2955
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2956
2956
  }>> | undefined;
2957
2957
  } | undefined;
2958
2958
  proxyUrl?: string | undefined;
@@ -2972,8 +2972,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
2972
2972
  app: import("vue").App<Element>;
2973
2973
  updateConfig(newConfig: ClientConfiguration, mergeConfigs?: boolean): void;
2974
2974
  updateServerUrl: (serverUrl: string) => void;
2975
- updateAuth: (auth: import("@scalar/oas-utils").AuthenticationState) => void;
2976
- updateSpec: (spec: import("@scalar/oas-utils").SpecConfiguration) => Promise<void>;
2975
+ updateAuth: (auth: import("@scalar/types/legacy").AuthenticationState) => void;
2976
+ updateSpec: (spec: import("@scalar/types/legacy").SpecConfiguration) => Promise<void>;
2977
2977
  route: (params: import("../../libs/index.js").OpenClientPayload) => void;
2978
2978
  open: (payload?: import("../../libs/index.js").OpenClientPayload) => void;
2979
2979
  mount: (mountingEl?: HTMLElement | null) => void;
@@ -2985,18 +2985,18 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
2985
2985
  store: {
2986
2986
  workspaces: Record<string, {
2987
2987
  uid: string;
2988
- description: string;
2989
2988
  name: string;
2989
+ description: string;
2990
2990
  isReadOnly: boolean;
2991
2991
  collectionUids: string[];
2992
2992
  environmentUids: string[];
2993
2993
  cookieUids: string[];
2994
2994
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2995
2995
  hotKeyConfig?: {
2996
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
2997
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
2996
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
2998
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2999
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
2999
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
3000
3000
  }>> | undefined;
3001
3001
  } | undefined;
3002
3002
  proxyUrl?: string | undefined;
@@ -3083,14 +3083,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3083
3083
  minimum?: number | undefined;
3084
3084
  type?: string | undefined;
3085
3085
  maximum?: number | undefined;
3086
- description?: string | undefined;
3087
3086
  default?: any;
3088
3087
  required?: boolean | undefined;
3088
+ description?: string | undefined;
3089
3089
  enum?: string[] | undefined;
3090
- file?: File | undefined;
3091
- refUid?: string | undefined;
3092
- format?: string | undefined;
3093
3090
  nullable?: boolean | undefined;
3091
+ format?: string | undefined;
3092
+ file?: any;
3093
+ refUid?: string | undefined;
3094
3094
  }[];
3095
3095
  query: {
3096
3096
  value: string;
@@ -3099,53 +3099,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3099
3099
  minimum?: number | undefined;
3100
3100
  type?: string | undefined;
3101
3101
  maximum?: number | undefined;
3102
- description?: string | undefined;
3103
3102
  default?: any;
3104
3103
  required?: boolean | undefined;
3104
+ description?: string | undefined;
3105
3105
  enum?: string[] | undefined;
3106
- file?: File | undefined;
3107
- refUid?: string | undefined;
3108
- format?: string | undefined;
3109
3106
  nullable?: boolean | undefined;
3107
+ format?: string | undefined;
3108
+ file?: any;
3109
+ refUid?: string | undefined;
3110
3110
  }[];
3111
- cookies: {
3111
+ headers: {
3112
3112
  value: string;
3113
3113
  key: string;
3114
3114
  enabled: boolean;
3115
3115
  minimum?: number | undefined;
3116
3116
  type?: string | undefined;
3117
3117
  maximum?: number | undefined;
3118
- description?: string | undefined;
3119
3118
  default?: any;
3120
3119
  required?: boolean | undefined;
3120
+ description?: string | undefined;
3121
3121
  enum?: string[] | undefined;
3122
- file?: File | undefined;
3123
- refUid?: string | undefined;
3124
- format?: string | undefined;
3125
3122
  nullable?: boolean | undefined;
3123
+ format?: string | undefined;
3124
+ file?: any;
3125
+ refUid?: string | undefined;
3126
3126
  }[];
3127
- headers: {
3127
+ cookies: {
3128
3128
  value: string;
3129
3129
  key: string;
3130
3130
  enabled: boolean;
3131
3131
  minimum?: number | undefined;
3132
3132
  type?: string | undefined;
3133
3133
  maximum?: number | undefined;
3134
- description?: string | undefined;
3135
3134
  default?: any;
3136
3135
  required?: boolean | undefined;
3136
+ description?: string | undefined;
3137
3137
  enum?: string[] | undefined;
3138
- file?: File | undefined;
3139
- refUid?: string | undefined;
3140
- format?: string | undefined;
3141
3138
  nullable?: boolean | undefined;
3139
+ format?: string | undefined;
3140
+ file?: any;
3141
+ refUid?: string | undefined;
3142
3142
  }[];
3143
3143
  };
3144
3144
  requestUid: string;
3145
3145
  body: {
3146
3146
  raw: {
3147
3147
  value: string;
3148
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
3148
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
3149
3149
  };
3150
3150
  formData: {
3151
3151
  value: {
@@ -3155,14 +3155,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3155
3155
  minimum?: number | undefined;
3156
3156
  type?: string | undefined;
3157
3157
  maximum?: number | undefined;
3158
- description?: string | undefined;
3159
3158
  default?: any;
3160
3159
  required?: boolean | undefined;
3160
+ description?: string | undefined;
3161
3161
  enum?: string[] | undefined;
3162
- file?: File | undefined;
3163
- refUid?: string | undefined;
3164
- format?: string | undefined;
3165
3162
  nullable?: boolean | undefined;
3163
+ format?: string | undefined;
3164
+ file?: any;
3165
+ refUid?: string | undefined;
3166
3166
  }[];
3167
3167
  encoding: "form-data" | "urlencoded";
3168
3168
  };
@@ -3177,8 +3177,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3177
3177
  url: string;
3178
3178
  description?: string | undefined;
3179
3179
  variables?: Record<string, {
3180
- uid: string;
3181
3180
  default: string;
3181
+ uid: string;
3182
3182
  value?: string | undefined;
3183
3183
  description?: string | undefined;
3184
3184
  enum?: string[] | undefined;
@@ -3188,8 +3188,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3188
3188
  type: "apiKey";
3189
3189
  value: string;
3190
3190
  uid: string;
3191
- nameKey: string;
3192
3191
  name: string;
3192
+ nameKey: string;
3193
3193
  in: "query" | "header" | "cookie";
3194
3194
  description?: string | undefined;
3195
3195
  } | {
@@ -3304,14 +3304,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3304
3304
  minimum?: number | undefined;
3305
3305
  type?: string | undefined;
3306
3306
  maximum?: number | undefined;
3307
- description?: string | undefined;
3308
3307
  default?: any;
3309
3308
  required?: boolean | undefined;
3309
+ description?: string | undefined;
3310
3310
  enum?: string[] | undefined;
3311
- file?: File | undefined;
3312
- refUid?: string | undefined;
3313
- format?: string | undefined;
3314
3311
  nullable?: boolean | undefined;
3312
+ format?: string | undefined;
3313
+ file?: any;
3314
+ refUid?: string | undefined;
3315
3315
  }[];
3316
3316
  query: {
3317
3317
  value: string;
@@ -3320,53 +3320,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3320
3320
  minimum?: number | undefined;
3321
3321
  type?: string | undefined;
3322
3322
  maximum?: number | undefined;
3323
- description?: string | undefined;
3324
3323
  default?: any;
3325
3324
  required?: boolean | undefined;
3325
+ description?: string | undefined;
3326
3326
  enum?: string[] | undefined;
3327
- file?: File | undefined;
3328
- refUid?: string | undefined;
3329
- format?: string | undefined;
3330
3327
  nullable?: boolean | undefined;
3328
+ format?: string | undefined;
3329
+ file?: any;
3330
+ refUid?: string | undefined;
3331
3331
  }[];
3332
- cookies: {
3332
+ headers: {
3333
3333
  value: string;
3334
3334
  key: string;
3335
3335
  enabled: boolean;
3336
3336
  minimum?: number | undefined;
3337
3337
  type?: string | undefined;
3338
3338
  maximum?: number | undefined;
3339
- description?: string | undefined;
3340
3339
  default?: any;
3341
3340
  required?: boolean | undefined;
3341
+ description?: string | undefined;
3342
3342
  enum?: string[] | undefined;
3343
- file?: File | undefined;
3344
- refUid?: string | undefined;
3345
- format?: string | undefined;
3346
3343
  nullable?: boolean | undefined;
3344
+ format?: string | undefined;
3345
+ file?: any;
3346
+ refUid?: string | undefined;
3347
3347
  }[];
3348
- headers: {
3348
+ cookies: {
3349
3349
  value: string;
3350
3350
  key: string;
3351
3351
  enabled: boolean;
3352
3352
  minimum?: number | undefined;
3353
3353
  type?: string | undefined;
3354
3354
  maximum?: number | undefined;
3355
- description?: string | undefined;
3356
3355
  default?: any;
3357
3356
  required?: boolean | undefined;
3357
+ description?: string | undefined;
3358
3358
  enum?: string[] | undefined;
3359
- file?: File | undefined;
3360
- refUid?: string | undefined;
3361
- format?: string | undefined;
3362
3359
  nullable?: boolean | undefined;
3360
+ format?: string | undefined;
3361
+ file?: any;
3362
+ refUid?: string | undefined;
3363
3363
  }[];
3364
3364
  };
3365
3365
  requestUid: string;
3366
3366
  body: {
3367
3367
  raw: {
3368
3368
  value: string;
3369
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
3369
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
3370
3370
  };
3371
3371
  formData: {
3372
3372
  value: {
@@ -3376,14 +3376,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3376
3376
  minimum?: number | undefined;
3377
3377
  type?: string | undefined;
3378
3378
  maximum?: number | undefined;
3379
- description?: string | undefined;
3380
3379
  default?: any;
3381
3380
  required?: boolean | undefined;
3381
+ description?: string | undefined;
3382
3382
  enum?: string[] | undefined;
3383
- file?: File | undefined;
3384
- refUid?: string | undefined;
3385
- format?: string | undefined;
3386
3383
  nullable?: boolean | undefined;
3384
+ format?: string | undefined;
3385
+ file?: any;
3386
+ refUid?: string | undefined;
3387
3387
  }[];
3388
3388
  encoding: "form-data" | "urlencoded";
3389
3389
  };
@@ -3408,8 +3408,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3408
3408
  type: "apiKey";
3409
3409
  value: string;
3410
3410
  uid: string;
3411
- nameKey: string;
3412
3411
  name: string;
3412
+ nameKey: string;
3413
3413
  in: "query" | "header" | "cookie";
3414
3414
  description?: string | undefined;
3415
3415
  } | {
@@ -3476,8 +3476,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3476
3476
  url: string;
3477
3477
  description?: string | undefined;
3478
3478
  variables?: Record<string, {
3479
- uid: string;
3480
3479
  default: string;
3480
+ uid: string;
3481
3481
  value?: string | undefined;
3482
3482
  description?: string | undefined;
3483
3483
  enum?: string[] | undefined;
@@ -3485,18 +3485,18 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3485
3485
  } | null>;
3486
3486
  activeWorkspace: import("vue").ComputedRef<{
3487
3487
  uid: string;
3488
- description: string;
3489
3488
  name: string;
3489
+ description: string;
3490
3490
  isReadOnly: boolean;
3491
3491
  collectionUids: string[];
3492
3492
  environmentUids: string[];
3493
3493
  cookieUids: string[];
3494
3494
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
3495
3495
  hotKeyConfig?: {
3496
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
3497
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
3496
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
3498
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
3499
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
3499
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
3500
3500
  }>> | undefined;
3501
3501
  } | undefined;
3502
3502
  proxyUrl?: string | undefined;
@@ -3546,8 +3546,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3546
3546
  url: string;
3547
3547
  description?: string | undefined;
3548
3548
  variables?: Record<string, {
3549
- uid: string;
3550
3549
  default: string;
3550
+ uid: string;
3551
3551
  value?: string | undefined;
3552
3552
  description?: string | undefined;
3553
3553
  enum?: string[] | undefined;
@@ -3572,8 +3572,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
3572
3572
  sidebarWidth: import("vue").Ref<string>;
3573
3573
  setSidebarWidth: (width: string) => void;
3574
3574
  findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
3575
- importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: import("@scalar/oas-utils").Spec["servers"]) => Promise<void>;
3576
- importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/oas-utils").Spec["servers"]) => Promise<void>;
3575
+ importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
3576
+ importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
3577
3577
  cookieMutators: {
3578
3578
  add: (item: {
3579
3579
  value: string;
@@ -4189,13 +4189,13 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4189
4189
  path: string;
4190
4190
  uid: string;
4191
4191
  childUids: string[];
4192
- method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
4193
4192
  parameters: {
4194
4193
  path: Record<string, any>;
4195
4194
  query: Record<string, any>;
4196
- cookies: Record<string, any>;
4197
4195
  headers: Record<string, any>;
4196
+ cookies: Record<string, any>;
4198
4197
  };
4198
+ method: "GET" | "HEAD" | "PATCH" | "POST" | "PUT" | "TRACE" | "CONNECT" | "DELETE" | "OPTIONS";
4199
4199
  ref: {
4200
4200
  path: string;
4201
4201
  isExternal: boolean;
@@ -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" | "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;
4216
+ edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
4217
+ untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
4218
4218
  undo: (uid: string) => void;
4219
4219
  redo: (uid: string) => void;
4220
4220
  loadLocalStorage: () => void;
@@ -4232,14 +4232,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4232
4232
  minimum?: number | undefined;
4233
4233
  type?: string | undefined;
4234
4234
  maximum?: number | undefined;
4235
- description?: string | undefined;
4236
4235
  default?: any;
4237
4236
  required?: boolean | undefined;
4237
+ description?: string | undefined;
4238
4238
  enum?: string[] | undefined;
4239
- file?: File | undefined;
4240
- refUid?: string | undefined;
4241
- format?: string | undefined;
4242
4239
  nullable?: boolean | undefined;
4240
+ format?: string | undefined;
4241
+ file?: any;
4242
+ refUid?: string | undefined;
4243
4243
  }[];
4244
4244
  query: {
4245
4245
  value: string;
@@ -4248,53 +4248,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4248
4248
  minimum?: number | undefined;
4249
4249
  type?: string | undefined;
4250
4250
  maximum?: number | undefined;
4251
- description?: string | undefined;
4252
4251
  default?: any;
4253
4252
  required?: boolean | undefined;
4253
+ description?: string | undefined;
4254
4254
  enum?: string[] | undefined;
4255
- file?: File | undefined;
4256
- refUid?: string | undefined;
4257
- format?: string | undefined;
4258
4255
  nullable?: boolean | undefined;
4256
+ format?: string | undefined;
4257
+ file?: any;
4258
+ refUid?: string | undefined;
4259
4259
  }[];
4260
- cookies: {
4260
+ headers: {
4261
4261
  value: string;
4262
4262
  key: string;
4263
4263
  enabled: boolean;
4264
4264
  minimum?: number | undefined;
4265
4265
  type?: string | undefined;
4266
4266
  maximum?: number | undefined;
4267
- description?: string | undefined;
4268
4267
  default?: any;
4269
4268
  required?: boolean | undefined;
4269
+ description?: string | undefined;
4270
4270
  enum?: string[] | undefined;
4271
- file?: File | undefined;
4272
- refUid?: string | undefined;
4273
- format?: string | undefined;
4274
4271
  nullable?: boolean | undefined;
4272
+ format?: string | undefined;
4273
+ file?: any;
4274
+ refUid?: string | undefined;
4275
4275
  }[];
4276
- headers: {
4276
+ cookies: {
4277
4277
  value: string;
4278
4278
  key: string;
4279
4279
  enabled: boolean;
4280
4280
  minimum?: number | undefined;
4281
4281
  type?: string | undefined;
4282
4282
  maximum?: number | undefined;
4283
- description?: string | undefined;
4284
4283
  default?: any;
4285
4284
  required?: boolean | undefined;
4285
+ description?: string | undefined;
4286
4286
  enum?: string[] | undefined;
4287
- file?: File | undefined;
4288
- refUid?: string | undefined;
4289
- format?: string | undefined;
4290
4287
  nullable?: boolean | undefined;
4288
+ format?: string | undefined;
4289
+ file?: any;
4290
+ refUid?: string | undefined;
4291
4291
  }[];
4292
4292
  };
4293
4293
  requestUid: string;
4294
4294
  body: {
4295
4295
  raw: {
4296
4296
  value: string;
4297
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4297
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4298
4298
  };
4299
4299
  formData: {
4300
4300
  value: {
@@ -4304,14 +4304,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4304
4304
  minimum?: number | undefined;
4305
4305
  type?: string | undefined;
4306
4306
  maximum?: number | undefined;
4307
- description?: string | undefined;
4308
4307
  default?: any;
4309
4308
  required?: boolean | undefined;
4309
+ description?: string | undefined;
4310
4310
  enum?: string[] | undefined;
4311
- file?: File | undefined;
4312
- refUid?: string | undefined;
4313
- format?: string | undefined;
4314
4311
  nullable?: boolean | undefined;
4312
+ format?: string | undefined;
4313
+ file?: any;
4314
+ refUid?: string | undefined;
4315
4315
  }[];
4316
4316
  encoding: "form-data" | "urlencoded";
4317
4317
  };
@@ -4332,14 +4332,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4332
4332
  minimum?: number | undefined;
4333
4333
  type?: string | undefined;
4334
4334
  maximum?: number | undefined;
4335
- description?: string | undefined;
4336
4335
  default?: any;
4337
4336
  required?: boolean | undefined;
4337
+ description?: string | undefined;
4338
4338
  enum?: string[] | undefined;
4339
- file?: File | undefined;
4340
- refUid?: string | undefined;
4341
- format?: string | undefined;
4342
4339
  nullable?: boolean | undefined;
4340
+ format?: string | undefined;
4341
+ file?: any;
4342
+ refUid?: string | undefined;
4343
4343
  }[];
4344
4344
  query: {
4345
4345
  value: string;
@@ -4348,53 +4348,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4348
4348
  minimum?: number | undefined;
4349
4349
  type?: string | undefined;
4350
4350
  maximum?: number | undefined;
4351
- description?: string | undefined;
4352
4351
  default?: any;
4353
4352
  required?: boolean | undefined;
4353
+ description?: string | undefined;
4354
4354
  enum?: string[] | undefined;
4355
- file?: File | undefined;
4356
- refUid?: string | undefined;
4357
- format?: string | undefined;
4358
4355
  nullable?: boolean | undefined;
4356
+ format?: string | undefined;
4357
+ file?: any;
4358
+ refUid?: string | undefined;
4359
4359
  }[];
4360
- cookies: {
4360
+ headers: {
4361
4361
  value: string;
4362
4362
  key: string;
4363
4363
  enabled: boolean;
4364
4364
  minimum?: number | undefined;
4365
4365
  type?: string | undefined;
4366
4366
  maximum?: number | undefined;
4367
- description?: string | undefined;
4368
4367
  default?: any;
4369
4368
  required?: boolean | undefined;
4369
+ description?: string | undefined;
4370
4370
  enum?: string[] | undefined;
4371
- file?: File | undefined;
4372
- refUid?: string | undefined;
4373
- format?: string | undefined;
4374
4371
  nullable?: boolean | undefined;
4372
+ format?: string | undefined;
4373
+ file?: any;
4374
+ refUid?: string | undefined;
4375
4375
  }[];
4376
- headers: {
4376
+ cookies: {
4377
4377
  value: string;
4378
4378
  key: string;
4379
4379
  enabled: boolean;
4380
4380
  minimum?: number | undefined;
4381
4381
  type?: string | undefined;
4382
4382
  maximum?: number | undefined;
4383
- description?: string | undefined;
4384
4383
  default?: any;
4385
4384
  required?: boolean | undefined;
4385
+ description?: string | undefined;
4386
4386
  enum?: string[] | undefined;
4387
- file?: File | undefined;
4388
- refUid?: string | undefined;
4389
- format?: string | undefined;
4390
4387
  nullable?: boolean | undefined;
4388
+ format?: string | undefined;
4389
+ file?: any;
4390
+ refUid?: string | undefined;
4391
4391
  }[];
4392
4392
  };
4393
4393
  requestUid: string;
4394
4394
  body: {
4395
4395
  raw: {
4396
4396
  value: string;
4397
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4397
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4398
4398
  };
4399
4399
  formData: {
4400
4400
  value: {
@@ -4404,14 +4404,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4404
4404
  minimum?: number | undefined;
4405
4405
  type?: string | undefined;
4406
4406
  maximum?: number | undefined;
4407
- description?: string | undefined;
4408
4407
  default?: any;
4409
4408
  required?: boolean | undefined;
4409
+ description?: string | undefined;
4410
4410
  enum?: string[] | undefined;
4411
- file?: File | undefined;
4412
- refUid?: string | undefined;
4413
- format?: string | undefined;
4414
4411
  nullable?: boolean | undefined;
4412
+ format?: string | undefined;
4413
+ file?: any;
4414
+ refUid?: string | undefined;
4415
4415
  }[];
4416
4416
  encoding: "form-data" | "urlencoded";
4417
4417
  };
@@ -4433,14 +4433,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4433
4433
  minimum?: number | undefined;
4434
4434
  type?: string | undefined;
4435
4435
  maximum?: number | undefined;
4436
- description?: string | undefined;
4437
4436
  default?: any;
4438
4437
  required?: boolean | undefined;
4438
+ description?: string | undefined;
4439
4439
  enum?: string[] | undefined;
4440
- file?: File | undefined;
4441
- refUid?: string | undefined;
4442
- format?: string | undefined;
4443
4440
  nullable?: boolean | undefined;
4441
+ format?: string | undefined;
4442
+ file?: any;
4443
+ refUid?: string | undefined;
4444
4444
  }[];
4445
4445
  query: {
4446
4446
  value: string;
@@ -4449,53 +4449,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4449
4449
  minimum?: number | undefined;
4450
4450
  type?: string | undefined;
4451
4451
  maximum?: number | undefined;
4452
- description?: string | undefined;
4453
4452
  default?: any;
4454
4453
  required?: boolean | undefined;
4454
+ description?: string | undefined;
4455
4455
  enum?: string[] | undefined;
4456
- file?: File | undefined;
4457
- refUid?: string | undefined;
4458
- format?: string | undefined;
4459
4456
  nullable?: boolean | undefined;
4457
+ format?: string | undefined;
4458
+ file?: any;
4459
+ refUid?: string | undefined;
4460
4460
  }[];
4461
- cookies: {
4461
+ headers: {
4462
4462
  value: string;
4463
4463
  key: string;
4464
4464
  enabled: boolean;
4465
4465
  minimum?: number | undefined;
4466
4466
  type?: string | undefined;
4467
4467
  maximum?: number | undefined;
4468
- description?: string | undefined;
4469
4468
  default?: any;
4470
4469
  required?: boolean | undefined;
4470
+ description?: string | undefined;
4471
4471
  enum?: string[] | undefined;
4472
- file?: File | undefined;
4473
- refUid?: string | undefined;
4474
- format?: string | undefined;
4475
4472
  nullable?: boolean | undefined;
4473
+ format?: string | undefined;
4474
+ file?: any;
4475
+ refUid?: string | undefined;
4476
4476
  }[];
4477
- headers: {
4477
+ cookies: {
4478
4478
  value: string;
4479
4479
  key: string;
4480
4480
  enabled: boolean;
4481
4481
  minimum?: number | undefined;
4482
4482
  type?: string | undefined;
4483
4483
  maximum?: number | undefined;
4484
- description?: string | undefined;
4485
4484
  default?: any;
4486
4485
  required?: boolean | undefined;
4486
+ description?: string | undefined;
4487
4487
  enum?: string[] | undefined;
4488
- file?: File | undefined;
4489
- refUid?: string | undefined;
4490
- format?: string | undefined;
4491
4488
  nullable?: boolean | undefined;
4489
+ format?: string | undefined;
4490
+ file?: any;
4491
+ refUid?: string | undefined;
4492
4492
  }[];
4493
4493
  };
4494
4494
  requestUid: string;
4495
4495
  body: {
4496
4496
  raw: {
4497
4497
  value: string;
4498
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4498
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4499
4499
  };
4500
4500
  formData: {
4501
4501
  value: {
@@ -4505,14 +4505,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4505
4505
  minimum?: number | undefined;
4506
4506
  type?: string | undefined;
4507
4507
  maximum?: number | undefined;
4508
- description?: string | undefined;
4509
4508
  default?: any;
4510
4509
  required?: boolean | undefined;
4510
+ description?: string | undefined;
4511
4511
  enum?: string[] | undefined;
4512
- file?: File | undefined;
4513
- refUid?: string | undefined;
4514
- format?: string | undefined;
4515
4512
  nullable?: boolean | undefined;
4513
+ format?: string | undefined;
4514
+ file?: any;
4515
+ refUid?: string | undefined;
4516
4516
  }[];
4517
4517
  encoding: "form-data" | "urlencoded";
4518
4518
  };
@@ -4521,7 +4521,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4521
4521
  };
4522
4522
  auth: Record<string, any>;
4523
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}.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}.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}.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}.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}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
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
4525
  uid: string;
4526
4526
  name: string;
4527
4527
  url: string;
@@ -4533,14 +4533,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4533
4533
  minimum?: number | undefined;
4534
4534
  type?: string | undefined;
4535
4535
  maximum?: number | undefined;
4536
- description?: string | undefined;
4537
4536
  default?: any;
4538
4537
  required?: boolean | undefined;
4538
+ description?: string | undefined;
4539
4539
  enum?: string[] | undefined;
4540
- file?: File | undefined;
4541
- refUid?: string | undefined;
4542
- format?: string | undefined;
4543
4540
  nullable?: boolean | undefined;
4541
+ format?: string | undefined;
4542
+ file?: any;
4543
+ refUid?: string | undefined;
4544
4544
  }[];
4545
4545
  query: {
4546
4546
  value: string;
@@ -4549,53 +4549,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4549
4549
  minimum?: number | undefined;
4550
4550
  type?: string | undefined;
4551
4551
  maximum?: number | undefined;
4552
- description?: string | undefined;
4553
4552
  default?: any;
4554
4553
  required?: boolean | undefined;
4554
+ description?: string | undefined;
4555
4555
  enum?: string[] | undefined;
4556
- file?: File | undefined;
4557
- refUid?: string | undefined;
4558
- format?: string | undefined;
4559
4556
  nullable?: boolean | undefined;
4557
+ format?: string | undefined;
4558
+ file?: any;
4559
+ refUid?: string | undefined;
4560
4560
  }[];
4561
- cookies: {
4561
+ headers: {
4562
4562
  value: string;
4563
4563
  key: string;
4564
4564
  enabled: boolean;
4565
4565
  minimum?: number | undefined;
4566
4566
  type?: string | undefined;
4567
4567
  maximum?: number | undefined;
4568
- description?: string | undefined;
4569
4568
  default?: any;
4570
4569
  required?: boolean | undefined;
4570
+ description?: string | undefined;
4571
4571
  enum?: string[] | undefined;
4572
- file?: File | undefined;
4573
- refUid?: string | undefined;
4574
- format?: string | undefined;
4575
4572
  nullable?: boolean | undefined;
4573
+ format?: string | undefined;
4574
+ file?: any;
4575
+ refUid?: string | undefined;
4576
4576
  }[];
4577
- headers: {
4577
+ cookies: {
4578
4578
  value: string;
4579
4579
  key: string;
4580
4580
  enabled: boolean;
4581
4581
  minimum?: number | undefined;
4582
4582
  type?: string | undefined;
4583
4583
  maximum?: number | undefined;
4584
- description?: string | undefined;
4585
4584
  default?: any;
4586
4585
  required?: boolean | undefined;
4586
+ description?: string | undefined;
4587
4587
  enum?: string[] | undefined;
4588
- file?: File | undefined;
4589
- refUid?: string | undefined;
4590
- format?: string | undefined;
4591
4588
  nullable?: boolean | undefined;
4589
+ format?: string | undefined;
4590
+ file?: any;
4591
+ refUid?: string | undefined;
4592
4592
  }[];
4593
4593
  };
4594
4594
  requestUid: string;
4595
4595
  body: {
4596
4596
  raw: {
4597
4597
  value: string;
4598
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4598
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4599
4599
  };
4600
4600
  formData: {
4601
4601
  value: {
@@ -4605,14 +4605,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4605
4605
  minimum?: number | undefined;
4606
4606
  type?: string | undefined;
4607
4607
  maximum?: number | undefined;
4608
- description?: string | undefined;
4609
4608
  default?: any;
4610
4609
  required?: boolean | undefined;
4610
+ description?: string | undefined;
4611
4611
  enum?: string[] | undefined;
4612
- file?: File | undefined;
4613
- refUid?: string | undefined;
4614
- format?: string | undefined;
4615
4612
  nullable?: boolean | undefined;
4613
+ format?: string | undefined;
4614
+ file?: any;
4615
+ refUid?: string | undefined;
4616
4616
  }[];
4617
4617
  encoding: "form-data" | "urlencoded";
4618
4618
  };
@@ -4632,14 +4632,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4632
4632
  minimum?: number | undefined;
4633
4633
  type?: string | undefined;
4634
4634
  maximum?: number | undefined;
4635
- description?: string | undefined;
4636
4635
  default?: any;
4637
4636
  required?: boolean | undefined;
4637
+ description?: string | undefined;
4638
4638
  enum?: string[] | undefined;
4639
- file?: File | undefined;
4640
- refUid?: string | undefined;
4641
- format?: string | undefined;
4642
4639
  nullable?: boolean | undefined;
4640
+ format?: string | undefined;
4641
+ file?: any;
4642
+ refUid?: string | undefined;
4643
4643
  }[];
4644
4644
  query: {
4645
4645
  value: string;
@@ -4648,53 +4648,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4648
4648
  minimum?: number | undefined;
4649
4649
  type?: string | undefined;
4650
4650
  maximum?: number | undefined;
4651
- description?: string | undefined;
4652
4651
  default?: any;
4653
4652
  required?: boolean | undefined;
4653
+ description?: string | undefined;
4654
4654
  enum?: string[] | undefined;
4655
- file?: File | undefined;
4656
- refUid?: string | undefined;
4657
- format?: string | undefined;
4658
4655
  nullable?: boolean | undefined;
4656
+ format?: string | undefined;
4657
+ file?: any;
4658
+ refUid?: string | undefined;
4659
4659
  }[];
4660
- cookies: {
4660
+ headers: {
4661
4661
  value: string;
4662
4662
  key: string;
4663
4663
  enabled: boolean;
4664
4664
  minimum?: number | undefined;
4665
4665
  type?: string | undefined;
4666
4666
  maximum?: number | undefined;
4667
- description?: string | undefined;
4668
4667
  default?: any;
4669
4668
  required?: boolean | undefined;
4669
+ description?: string | undefined;
4670
4670
  enum?: string[] | undefined;
4671
- file?: File | undefined;
4672
- refUid?: string | undefined;
4673
- format?: string | undefined;
4674
4671
  nullable?: boolean | undefined;
4672
+ format?: string | undefined;
4673
+ file?: any;
4674
+ refUid?: string | undefined;
4675
4675
  }[];
4676
- headers: {
4676
+ cookies: {
4677
4677
  value: string;
4678
4678
  key: string;
4679
4679
  enabled: boolean;
4680
4680
  minimum?: number | undefined;
4681
4681
  type?: string | undefined;
4682
4682
  maximum?: number | undefined;
4683
- description?: string | undefined;
4684
4683
  default?: any;
4685
4684
  required?: boolean | undefined;
4685
+ description?: string | undefined;
4686
4686
  enum?: string[] | undefined;
4687
- file?: File | undefined;
4688
- refUid?: string | undefined;
4689
- format?: string | undefined;
4690
4687
  nullable?: boolean | undefined;
4688
+ format?: string | undefined;
4689
+ file?: any;
4690
+ refUid?: string | undefined;
4691
4691
  }[];
4692
4692
  };
4693
4693
  requestUid: string;
4694
4694
  body: {
4695
4695
  raw: {
4696
4696
  value: string;
4697
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4697
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4698
4698
  };
4699
4699
  formData: {
4700
4700
  value: {
@@ -4704,14 +4704,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4704
4704
  minimum?: number | undefined;
4705
4705
  type?: string | undefined;
4706
4706
  maximum?: number | undefined;
4707
- description?: string | undefined;
4708
4707
  default?: any;
4709
4708
  required?: boolean | undefined;
4709
+ description?: string | undefined;
4710
4710
  enum?: string[] | undefined;
4711
- file?: File | undefined;
4712
- refUid?: string | undefined;
4713
- format?: string | undefined;
4714
4711
  nullable?: boolean | undefined;
4712
+ format?: string | undefined;
4713
+ file?: any;
4714
+ refUid?: string | undefined;
4715
4715
  }[];
4716
4716
  encoding: "form-data" | "urlencoded";
4717
4717
  };
@@ -4731,14 +4731,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4731
4731
  minimum?: number | undefined;
4732
4732
  type?: string | undefined;
4733
4733
  maximum?: number | undefined;
4734
- description?: string | undefined;
4735
4734
  default?: any;
4736
4735
  required?: boolean | undefined;
4736
+ description?: string | undefined;
4737
4737
  enum?: string[] | undefined;
4738
- file?: File | undefined;
4739
- refUid?: string | undefined;
4740
- format?: string | undefined;
4741
4738
  nullable?: boolean | undefined;
4739
+ format?: string | undefined;
4740
+ file?: any;
4741
+ refUid?: string | undefined;
4742
4742
  }[];
4743
4743
  query: {
4744
4744
  value: string;
@@ -4747,53 +4747,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4747
4747
  minimum?: number | undefined;
4748
4748
  type?: string | undefined;
4749
4749
  maximum?: number | undefined;
4750
- description?: string | undefined;
4751
4750
  default?: any;
4752
4751
  required?: boolean | undefined;
4752
+ description?: string | undefined;
4753
4753
  enum?: string[] | undefined;
4754
- file?: File | undefined;
4755
- refUid?: string | undefined;
4756
- format?: string | undefined;
4757
4754
  nullable?: boolean | undefined;
4755
+ format?: string | undefined;
4756
+ file?: any;
4757
+ refUid?: string | undefined;
4758
4758
  }[];
4759
- cookies: {
4759
+ headers: {
4760
4760
  value: string;
4761
4761
  key: string;
4762
4762
  enabled: boolean;
4763
4763
  minimum?: number | undefined;
4764
4764
  type?: string | undefined;
4765
4765
  maximum?: number | undefined;
4766
- description?: string | undefined;
4767
4766
  default?: any;
4768
4767
  required?: boolean | undefined;
4768
+ description?: string | undefined;
4769
4769
  enum?: string[] | undefined;
4770
- file?: File | undefined;
4771
- refUid?: string | undefined;
4772
- format?: string | undefined;
4773
4770
  nullable?: boolean | undefined;
4771
+ format?: string | undefined;
4772
+ file?: any;
4773
+ refUid?: string | undefined;
4774
4774
  }[];
4775
- headers: {
4775
+ cookies: {
4776
4776
  value: string;
4777
4777
  key: string;
4778
4778
  enabled: boolean;
4779
4779
  minimum?: number | undefined;
4780
4780
  type?: string | undefined;
4781
4781
  maximum?: number | undefined;
4782
- description?: string | undefined;
4783
4782
  default?: any;
4784
4783
  required?: boolean | undefined;
4784
+ description?: string | undefined;
4785
4785
  enum?: string[] | undefined;
4786
- file?: File | undefined;
4787
- refUid?: string | undefined;
4788
- format?: string | undefined;
4789
4786
  nullable?: boolean | undefined;
4787
+ format?: string | undefined;
4788
+ file?: any;
4789
+ refUid?: string | undefined;
4790
4790
  }[];
4791
4791
  };
4792
4792
  requestUid: string;
4793
4793
  body: {
4794
4794
  raw: {
4795
4795
  value: string;
4796
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4796
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4797
4797
  };
4798
4798
  formData: {
4799
4799
  value: {
@@ -4803,14 +4803,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4803
4803
  minimum?: number | undefined;
4804
4804
  type?: string | undefined;
4805
4805
  maximum?: number | undefined;
4806
- description?: string | undefined;
4807
4806
  default?: any;
4808
4807
  required?: boolean | undefined;
4808
+ description?: string | undefined;
4809
4809
  enum?: string[] | undefined;
4810
- file?: File | undefined;
4811
- refUid?: string | undefined;
4812
- format?: string | undefined;
4813
4810
  nullable?: boolean | undefined;
4811
+ format?: string | undefined;
4812
+ file?: any;
4813
+ refUid?: string | undefined;
4814
4814
  }[];
4815
4815
  encoding: "form-data" | "urlencoded";
4816
4816
  };
@@ -4819,7 +4819,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4819
4819
  };
4820
4820
  auth: Record<string, any>;
4821
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}.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}.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}.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}.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}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
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
4823
  uid: string;
4824
4824
  name: string;
4825
4825
  url: string;
@@ -4831,14 +4831,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4831
4831
  minimum?: number | undefined;
4832
4832
  type?: string | undefined;
4833
4833
  maximum?: number | undefined;
4834
- description?: string | undefined;
4835
4834
  default?: any;
4836
4835
  required?: boolean | undefined;
4836
+ description?: string | undefined;
4837
4837
  enum?: string[] | undefined;
4838
- file?: File | undefined;
4839
- refUid?: string | undefined;
4840
- format?: string | undefined;
4841
4838
  nullable?: boolean | undefined;
4839
+ format?: string | undefined;
4840
+ file?: any;
4841
+ refUid?: string | undefined;
4842
4842
  }[];
4843
4843
  query: {
4844
4844
  value: string;
@@ -4847,53 +4847,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4847
4847
  minimum?: number | undefined;
4848
4848
  type?: string | undefined;
4849
4849
  maximum?: number | undefined;
4850
- description?: string | undefined;
4851
4850
  default?: any;
4852
4851
  required?: boolean | undefined;
4852
+ description?: string | undefined;
4853
4853
  enum?: string[] | undefined;
4854
- file?: File | undefined;
4855
- refUid?: string | undefined;
4856
- format?: string | undefined;
4857
4854
  nullable?: boolean | undefined;
4855
+ format?: string | undefined;
4856
+ file?: any;
4857
+ refUid?: string | undefined;
4858
4858
  }[];
4859
- cookies: {
4859
+ headers: {
4860
4860
  value: string;
4861
4861
  key: string;
4862
4862
  enabled: boolean;
4863
4863
  minimum?: number | undefined;
4864
4864
  type?: string | undefined;
4865
4865
  maximum?: number | undefined;
4866
- description?: string | undefined;
4867
4866
  default?: any;
4868
4867
  required?: boolean | undefined;
4868
+ description?: string | undefined;
4869
4869
  enum?: string[] | undefined;
4870
- file?: File | undefined;
4871
- refUid?: string | undefined;
4872
- format?: string | undefined;
4873
4870
  nullable?: boolean | undefined;
4871
+ format?: string | undefined;
4872
+ file?: any;
4873
+ refUid?: string | undefined;
4874
4874
  }[];
4875
- headers: {
4875
+ cookies: {
4876
4876
  value: string;
4877
4877
  key: string;
4878
4878
  enabled: boolean;
4879
4879
  minimum?: number | undefined;
4880
4880
  type?: string | undefined;
4881
4881
  maximum?: number | undefined;
4882
- description?: string | undefined;
4883
4882
  default?: any;
4884
4883
  required?: boolean | undefined;
4884
+ description?: string | undefined;
4885
4885
  enum?: string[] | undefined;
4886
- file?: File | undefined;
4887
- refUid?: string | undefined;
4888
- format?: string | undefined;
4889
4886
  nullable?: boolean | undefined;
4887
+ format?: string | undefined;
4888
+ file?: any;
4889
+ refUid?: string | undefined;
4890
4890
  }[];
4891
4891
  };
4892
4892
  requestUid: string;
4893
4893
  body: {
4894
4894
  raw: {
4895
4895
  value: string;
4896
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4896
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4897
4897
  };
4898
4898
  formData: {
4899
4899
  value: {
@@ -4903,14 +4903,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4903
4903
  minimum?: number | undefined;
4904
4904
  type?: string | undefined;
4905
4905
  maximum?: number | undefined;
4906
- description?: string | undefined;
4907
4906
  default?: any;
4908
4907
  required?: boolean | undefined;
4908
+ description?: string | undefined;
4909
4909
  enum?: string[] | undefined;
4910
- file?: File | undefined;
4911
- refUid?: string | undefined;
4912
- format?: string | undefined;
4913
4910
  nullable?: boolean | undefined;
4911
+ format?: string | undefined;
4912
+ file?: any;
4913
+ refUid?: string | undefined;
4914
4914
  }[];
4915
4915
  encoding: "form-data" | "urlencoded";
4916
4916
  };
@@ -4930,14 +4930,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4930
4930
  minimum?: number | undefined;
4931
4931
  type?: string | undefined;
4932
4932
  maximum?: number | undefined;
4933
- description?: string | undefined;
4934
4933
  default?: any;
4935
4934
  required?: boolean | undefined;
4935
+ description?: string | undefined;
4936
4936
  enum?: string[] | undefined;
4937
- file?: File | undefined;
4938
- refUid?: string | undefined;
4939
- format?: string | undefined;
4940
4937
  nullable?: boolean | undefined;
4938
+ format?: string | undefined;
4939
+ file?: any;
4940
+ refUid?: string | undefined;
4941
4941
  }[];
4942
4942
  query: {
4943
4943
  value: string;
@@ -4946,53 +4946,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
4946
4946
  minimum?: number | undefined;
4947
4947
  type?: string | undefined;
4948
4948
  maximum?: number | undefined;
4949
- description?: string | undefined;
4950
4949
  default?: any;
4951
4950
  required?: boolean | undefined;
4951
+ description?: string | undefined;
4952
4952
  enum?: string[] | undefined;
4953
- file?: File | undefined;
4954
- refUid?: string | undefined;
4955
- format?: string | undefined;
4956
4953
  nullable?: boolean | undefined;
4954
+ format?: string | undefined;
4955
+ file?: any;
4956
+ refUid?: string | undefined;
4957
4957
  }[];
4958
- cookies: {
4958
+ headers: {
4959
4959
  value: string;
4960
4960
  key: string;
4961
4961
  enabled: boolean;
4962
4962
  minimum?: number | undefined;
4963
4963
  type?: string | undefined;
4964
4964
  maximum?: number | undefined;
4965
- description?: string | undefined;
4966
4965
  default?: any;
4967
4966
  required?: boolean | undefined;
4967
+ description?: string | undefined;
4968
4968
  enum?: string[] | undefined;
4969
- file?: File | undefined;
4970
- refUid?: string | undefined;
4971
- format?: string | undefined;
4972
4969
  nullable?: boolean | undefined;
4970
+ format?: string | undefined;
4971
+ file?: any;
4972
+ refUid?: string | undefined;
4973
4973
  }[];
4974
- headers: {
4974
+ cookies: {
4975
4975
  value: string;
4976
4976
  key: string;
4977
4977
  enabled: boolean;
4978
4978
  minimum?: number | undefined;
4979
4979
  type?: string | undefined;
4980
4980
  maximum?: number | undefined;
4981
- description?: string | undefined;
4982
4981
  default?: any;
4983
4982
  required?: boolean | undefined;
4983
+ description?: string | undefined;
4984
4984
  enum?: string[] | undefined;
4985
- file?: File | undefined;
4986
- refUid?: string | undefined;
4987
- format?: string | undefined;
4988
4985
  nullable?: boolean | undefined;
4986
+ format?: string | undefined;
4987
+ file?: any;
4988
+ refUid?: string | undefined;
4989
4989
  }[];
4990
4990
  };
4991
4991
  requestUid: string;
4992
4992
  body: {
4993
4993
  raw: {
4994
4994
  value: string;
4995
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
4995
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
4996
4996
  };
4997
4997
  formData: {
4998
4998
  value: {
@@ -5002,14 +5002,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5002
5002
  minimum?: number | undefined;
5003
5003
  type?: string | undefined;
5004
5004
  maximum?: number | undefined;
5005
- description?: string | undefined;
5006
5005
  default?: any;
5007
5006
  required?: boolean | undefined;
5007
+ description?: string | undefined;
5008
5008
  enum?: string[] | undefined;
5009
- file?: File | undefined;
5010
- refUid?: string | undefined;
5011
- format?: string | undefined;
5012
5009
  nullable?: boolean | undefined;
5010
+ format?: string | undefined;
5011
+ file?: any;
5012
+ refUid?: string | undefined;
5013
5013
  }[];
5014
5014
  encoding: "form-data" | "urlencoded";
5015
5015
  };
@@ -5029,14 +5029,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5029
5029
  minimum?: number | undefined;
5030
5030
  type?: string | undefined;
5031
5031
  maximum?: number | undefined;
5032
- description?: string | undefined;
5033
5032
  default?: any;
5034
5033
  required?: boolean | undefined;
5034
+ description?: string | undefined;
5035
5035
  enum?: string[] | undefined;
5036
- file?: File | undefined;
5037
- refUid?: string | undefined;
5038
- format?: string | undefined;
5039
5036
  nullable?: boolean | undefined;
5037
+ format?: string | undefined;
5038
+ file?: any;
5039
+ refUid?: string | undefined;
5040
5040
  }[];
5041
5041
  query: {
5042
5042
  value: string;
@@ -5045,53 +5045,53 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5045
5045
  minimum?: number | undefined;
5046
5046
  type?: string | undefined;
5047
5047
  maximum?: number | undefined;
5048
- description?: string | undefined;
5049
5048
  default?: any;
5050
5049
  required?: boolean | undefined;
5050
+ description?: string | undefined;
5051
5051
  enum?: string[] | undefined;
5052
- file?: File | undefined;
5053
- refUid?: string | undefined;
5054
- format?: string | undefined;
5055
5052
  nullable?: boolean | undefined;
5053
+ format?: string | undefined;
5054
+ file?: any;
5055
+ refUid?: string | undefined;
5056
5056
  }[];
5057
- cookies: {
5057
+ headers: {
5058
5058
  value: string;
5059
5059
  key: string;
5060
5060
  enabled: boolean;
5061
5061
  minimum?: number | undefined;
5062
5062
  type?: string | undefined;
5063
5063
  maximum?: number | undefined;
5064
- description?: string | undefined;
5065
5064
  default?: any;
5066
5065
  required?: boolean | undefined;
5066
+ description?: string | undefined;
5067
5067
  enum?: string[] | undefined;
5068
- file?: File | undefined;
5069
- refUid?: string | undefined;
5070
- format?: string | undefined;
5071
5068
  nullable?: boolean | undefined;
5069
+ format?: string | undefined;
5070
+ file?: any;
5071
+ refUid?: string | undefined;
5072
5072
  }[];
5073
- headers: {
5073
+ cookies: {
5074
5074
  value: string;
5075
5075
  key: string;
5076
5076
  enabled: boolean;
5077
5077
  minimum?: number | undefined;
5078
5078
  type?: string | undefined;
5079
5079
  maximum?: number | undefined;
5080
- description?: string | undefined;
5081
5080
  default?: any;
5082
5081
  required?: boolean | undefined;
5082
+ description?: string | undefined;
5083
5083
  enum?: string[] | undefined;
5084
- file?: File | undefined;
5085
- refUid?: string | undefined;
5086
- format?: string | undefined;
5087
5084
  nullable?: boolean | undefined;
5085
+ format?: string | undefined;
5086
+ file?: any;
5087
+ refUid?: string | undefined;
5088
5088
  }[];
5089
5089
  };
5090
5090
  requestUid: string;
5091
5091
  body: {
5092
5092
  raw: {
5093
5093
  value: string;
5094
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
5094
+ encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
5095
5095
  };
5096
5096
  formData: {
5097
5097
  value: {
@@ -5101,14 +5101,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5101
5101
  minimum?: number | undefined;
5102
5102
  type?: string | undefined;
5103
5103
  maximum?: number | undefined;
5104
- description?: string | undefined;
5105
5104
  default?: any;
5106
5105
  required?: boolean | undefined;
5106
+ description?: string | undefined;
5107
5107
  enum?: string[] | undefined;
5108
- file?: File | undefined;
5109
- refUid?: string | undefined;
5110
- format?: string | undefined;
5111
5108
  nullable?: boolean | undefined;
5109
+ format?: string | undefined;
5110
+ file?: any;
5111
+ refUid?: string | undefined;
5112
5112
  }[];
5113
5113
  encoding: "form-data" | "urlencoded";
5114
5114
  };
@@ -5127,8 +5127,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5127
5127
  type: "apiKey";
5128
5128
  value: string;
5129
5129
  uid: string;
5130
- nameKey: string;
5131
5130
  name: string;
5131
+ nameKey: string;
5132
5132
  in: "query" | "header" | "cookie";
5133
5133
  description?: string | undefined;
5134
5134
  } | {
@@ -5196,8 +5196,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5196
5196
  type: "apiKey";
5197
5197
  value: string;
5198
5198
  uid: string;
5199
- nameKey: string;
5200
5199
  name: string;
5200
+ nameKey: string;
5201
5201
  in: "query" | "header" | "cookie";
5202
5202
  description?: string | undefined;
5203
5203
  } | {
@@ -5259,28 +5259,28 @@ 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" | "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" ? {
5262
+ edit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
5263
5263
  type: "apiKey";
5264
5264
  value: string;
5265
5265
  uid: string;
5266
- nameKey: string;
5267
5266
  name: string;
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" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
5270
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
5271
5271
  type: "apiKey";
5272
5272
  value: string;
5273
5273
  uid: string;
5274
- nameKey: string;
5275
5274
  name: string;
5275
+ nameKey: string;
5276
5276
  in: "query" | "header" | "cookie";
5277
5277
  description?: string | undefined;
5278
5278
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
5279
5279
  type: "apiKey";
5280
5280
  value: string;
5281
5281
  uid: string;
5282
- nameKey: string;
5283
5282
  name: string;
5283
+ nameKey: string;
5284
5284
  in: "query" | "header" | "cookie";
5285
5285
  description?: string | undefined;
5286
5286
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
@@ -5458,28 +5458,28 @@ 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" | "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" ? {
5461
+ untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "in" | "secondValue" | "flow" | "nameKey" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? {
5462
5462
  type: "apiKey";
5463
5463
  value: string;
5464
5464
  uid: string;
5465
- nameKey: string;
5466
5465
  name: string;
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" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
5469
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
5470
5470
  type: "apiKey";
5471
5471
  value: string;
5472
5472
  uid: string;
5473
- nameKey: string;
5474
5473
  name: string;
5474
+ nameKey: string;
5475
5475
  in: "query" | "header" | "cookie";
5476
5476
  description?: string | undefined;
5477
5477
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
5478
5478
  type: "apiKey";
5479
5479
  value: string;
5480
5480
  uid: string;
5481
- nameKey: string;
5482
5481
  name: string;
5482
+ nameKey: string;
5483
5483
  in: "query" | "header" | "cookie";
5484
5484
  description?: string | undefined;
5485
5485
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "description" | "uid" | "secondValue" | "nameKey" | "scheme" | "bearerFormat" ? {
@@ -5667,8 +5667,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5667
5667
  url: string;
5668
5668
  description?: string | undefined;
5669
5669
  variables?: Record<string, {
5670
- uid: string;
5671
5670
  default: string;
5671
+ uid: string;
5672
5672
  value?: string | undefined;
5673
5673
  description?: string | undefined;
5674
5674
  enum?: string[] | undefined;
@@ -5681,8 +5681,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5681
5681
  url: string;
5682
5682
  description?: string | undefined;
5683
5683
  variables?: Record<string, {
5684
- uid: string;
5685
5684
  default: string;
5685
+ uid: string;
5686
5686
  value?: string | undefined;
5687
5687
  description?: string | undefined;
5688
5688
  enum?: string[] | undefined;
@@ -5693,8 +5693,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5693
5693
  url: string;
5694
5694
  description?: string | undefined;
5695
5695
  variables?: Record<string, {
5696
- uid: string;
5697
5696
  default: string;
5697
+ uid: string;
5698
5698
  value?: string | undefined;
5699
5699
  description?: string | undefined;
5700
5700
  enum?: string[] | undefined;
@@ -5704,8 +5704,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5704
5704
  url: string;
5705
5705
  description?: string | undefined;
5706
5706
  variables?: Record<string, {
5707
- uid: string;
5708
5707
  default: string;
5708
+ uid: string;
5709
5709
  value?: string | undefined;
5710
5710
  description?: string | undefined;
5711
5711
  enum?: string[] | undefined;
@@ -5715,8 +5715,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5715
5715
  url: string;
5716
5716
  description?: string | undefined;
5717
5717
  variables?: Record<string, {
5718
- uid: string;
5719
5718
  default: string;
5719
+ uid: string;
5720
5720
  value?: string | undefined;
5721
5721
  description?: string | undefined;
5722
5722
  enum?: string[] | undefined;
@@ -5727,8 +5727,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5727
5727
  url: string;
5728
5728
  description?: string | undefined;
5729
5729
  variables?: Record<string, {
5730
- uid: string;
5731
5730
  default: string;
5731
+ uid: string;
5732
5732
  value?: string | undefined;
5733
5733
  description?: string | undefined;
5734
5734
  enum?: string[] | undefined;
@@ -5738,8 +5738,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5738
5738
  url: string;
5739
5739
  description?: string | undefined;
5740
5740
  variables?: Record<string, {
5741
- uid: string;
5742
5741
  default: string;
5742
+ uid: string;
5743
5743
  value?: string | undefined;
5744
5744
  description?: string | undefined;
5745
5745
  enum?: string[] | undefined;
@@ -5749,8 +5749,8 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5749
5749
  url: string;
5750
5750
  description?: string | undefined;
5751
5751
  variables?: Record<string, {
5752
- uid: string;
5753
5752
  default: string;
5753
+ uid: string;
5754
5754
  value?: string | undefined;
5755
5755
  description?: string | undefined;
5756
5756
  enum?: string[] | undefined;
@@ -5763,36 +5763,36 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5763
5763
  workspaceMutators: {
5764
5764
  rawAdd: (item: {
5765
5765
  uid: string;
5766
- description: string;
5767
5766
  name: string;
5767
+ description: string;
5768
5768
  isReadOnly: boolean;
5769
5769
  collectionUids: string[];
5770
5770
  environmentUids: string[];
5771
5771
  cookieUids: string[];
5772
5772
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5773
5773
  hotKeyConfig?: {
5774
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5775
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5774
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
5776
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5777
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
5777
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
5778
5778
  }>> | undefined;
5779
5779
  } | undefined;
5780
5780
  proxyUrl?: string | undefined;
5781
5781
  }) => void;
5782
5782
  add: (payload?: import("@scalar/oas-utils/entities/workspace").WorkspacePayload) => {
5783
5783
  uid: string;
5784
- description: string;
5785
5784
  name: string;
5785
+ description: string;
5786
5786
  isReadOnly: boolean;
5787
5787
  collectionUids: string[];
5788
5788
  environmentUids: string[];
5789
5789
  cookieUids: string[];
5790
5790
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5791
5791
  hotKeyConfig?: {
5792
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5793
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5792
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
5794
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5795
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
5795
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
5796
5796
  }>> | undefined;
5797
5797
  } | undefined;
5798
5798
  proxyUrl?: string | undefined;
@@ -5801,122 +5801,122 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
5801
5801
  rename: (uid: string, newName: string) => void;
5802
5802
  set: (item: {
5803
5803
  uid: string;
5804
- description: string;
5805
5804
  name: string;
5805
+ description: string;
5806
5806
  isReadOnly: boolean;
5807
5807
  collectionUids: string[];
5808
5808
  environmentUids: string[];
5809
5809
  cookieUids: string[];
5810
5810
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5811
5811
  hotKeyConfig?: {
5812
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5813
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5812
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
5814
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5815
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
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" ? {
5821
5821
  uid: string;
5822
- description: string;
5823
5822
  name: string;
5823
+ description: string;
5824
5824
  isReadOnly: boolean;
5825
5825
  collectionUids: string[];
5826
5826
  environmentUids: string[];
5827
5827
  cookieUids: string[];
5828
5828
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5829
5829
  hotKeyConfig?: {
5830
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5831
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5830
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
5831
+ hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
5832
5832
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5833
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
5833
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
5834
5834
  }>> | undefined;
5835
5835
  } | undefined;
5836
5836
  proxyUrl?: string | undefined;
5837
5837
  }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
5838
5838
  uid: string;
5839
- description: string;
5840
5839
  name: string;
5840
+ description: string;
5841
5841
  isReadOnly: boolean;
5842
5842
  collectionUids: string[];
5843
5843
  environmentUids: string[];
5844
5844
  cookieUids: string[];
5845
5845
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5846
5846
  hotKeyConfig?: {
5847
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5848
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "\\" | "]", {
5847
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
5848
+ hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
5849
5849
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5850
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
5850
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
5851
5851
  }>> | undefined;
5852
5852
  } | undefined;
5853
5853
  proxyUrl?: string | undefined;
5854
5854
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
5855
5855
  uid: string;
5856
- description: string;
5857
5856
  name: string;
5857
+ description: string;
5858
5858
  isReadOnly: boolean;
5859
5859
  collectionUids: string[];
5860
5860
  environmentUids: string[];
5861
5861
  cookieUids: string[];
5862
5862
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5863
5863
  hotKeyConfig?: {
5864
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5865
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5864
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
5866
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5867
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
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" ? {
5873
5873
  uid: string;
5874
- description: string;
5875
5874
  name: string;
5875
+ description: string;
5876
5876
  isReadOnly: boolean;
5877
5877
  collectionUids: string[];
5878
5878
  environmentUids: string[];
5879
5879
  cookieUids: string[];
5880
5880
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5881
5881
  hotKeyConfig?: {
5882
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5883
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5882
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
5883
+ hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
5884
5884
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5885
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
5885
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
5886
5886
  }>> | undefined;
5887
5887
  } | undefined;
5888
5888
  proxyUrl?: string | undefined;
5889
5889
  }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
5890
5890
  uid: string;
5891
- description: string;
5892
5891
  name: string;
5892
+ description: string;
5893
5893
  isReadOnly: boolean;
5894
5894
  collectionUids: string[];
5895
5895
  environmentUids: string[];
5896
5896
  cookieUids: string[];
5897
5897
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5898
5898
  hotKeyConfig?: {
5899
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5900
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5899
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
5900
+ hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
5901
5901
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5902
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
5902
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
5903
5903
  }>> | undefined;
5904
5904
  } | undefined;
5905
5905
  proxyUrl?: string | undefined;
5906
5906
  }[K]> ? import("@scalar/object-utils/nested").PathValue<{
5907
5907
  uid: string;
5908
- description: string;
5909
5908
  name: string;
5909
+ description: string;
5910
5910
  isReadOnly: boolean;
5911
5911
  collectionUids: string[];
5912
5912
  environmentUids: string[];
5913
5913
  cookieUids: string[];
5914
5914
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
5915
5915
  hotKeyConfig?: {
5916
- modifiers: ("default" | "Meta" | "Control" | "Shift" | "Alt")[];
5917
- hotKeys?: Partial<Record<"" | "0" | "1" | "2" | "/" | "[" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "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" | ";" | "=" | "," | "`" | "\\" | "]", {
5916
+ modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
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
5918
  event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
5919
- modifiers?: ("default" | "Meta" | "Control" | "Shift" | "Alt")[] | undefined;
5919
+ modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
5920
5920
  }>> | undefined;
5921
5921
  } | undefined;
5922
5922
  proxyUrl?: string | undefined;