@scalar/api-client 2.0.54 → 2.0.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/components/CodeInput/CodeInput.vue.d.ts.map +1 -1
  3. package/dist/components/CodeInput/CodeInput.vue.js +2 -2
  4. package/dist/components/CodeInput/CodeInput.vue2.js +6 -6
  5. package/dist/components/CommandPalette/TheCommandPalette.vue.d.ts.map +1 -1
  6. package/dist/components/CommandPalette/TheCommandPalette.vue.js +4 -4
  7. package/dist/components/CommandPalette/TheCommandPalette.vue2.js +45 -45
  8. package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
  9. package/dist/components/Search/useSearch.d.ts +29 -0
  10. package/dist/components/Search/useSearch.d.ts.map +1 -0
  11. package/dist/components/Search/useSearch.js +62 -0
  12. package/dist/layouts/App/create-api-client-app.d.ts +260 -260
  13. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  14. package/dist/layouts/Modal/create-api-client-modal.d.ts +520 -520
  15. package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
  16. package/dist/libs/create-client.d.ts +260 -260
  17. package/dist/libs/create-client.d.ts.map +1 -1
  18. package/dist/libs/event-busses/hot-keys-bus.d.ts +3 -3
  19. package/dist/libs/event-busses/hot-keys-bus.d.ts.map +1 -1
  20. package/dist/libs/event-busses/hot-keys-bus.js +17 -16
  21. package/dist/libs/local-storage.js +1 -1
  22. package/dist/store/workspace.d.ts +520 -520
  23. package/dist/store/workspace.d.ts.map +1 -1
  24. package/dist/style.css +1 -1
  25. package/dist/views/Request/Request.vue.d.ts.map +1 -1
  26. package/dist/views/Request/Request.vue.js +2 -2
  27. package/dist/views/Request/Request.vue2.js +259 -215
  28. package/dist/views/Request/RequestSection/RequestParams.vue.d.ts.map +1 -1
  29. package/dist/views/Request/RequestSection/RequestParams.vue.js +45 -41
  30. package/dist/views/Request/RequestSection/RequestTableTooltip.vue.d.ts.map +1 -1
  31. package/dist/views/Request/RequestSection/RequestTableTooltip.vue.js +31 -25
  32. package/package.json +5 -5
  33. package/dist/components/Search/SearchButton.vue.js +0 -7
  34. package/dist/components/Search/SearchButton.vue2.js +0 -30
@@ -91,7 +91,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
91
91
  hotKeyConfig?: {
92
92
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
93
93
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
94
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
94
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
95
95
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
96
96
  }>> | undefined;
97
97
  } | undefined;
@@ -171,6 +171,34 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
171
171
  uid: string;
172
172
  name: string;
173
173
  url: string;
174
+ requestUid: string;
175
+ body: {
176
+ raw: {
177
+ value: string;
178
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
179
+ };
180
+ formData: {
181
+ value: {
182
+ value: string;
183
+ key: string;
184
+ enabled: boolean;
185
+ minimum?: number | undefined;
186
+ type?: string | undefined;
187
+ maximum?: number | undefined;
188
+ default?: any;
189
+ required?: boolean | undefined;
190
+ description?: string | undefined;
191
+ enum?: string[] | undefined;
192
+ file?: any;
193
+ refUid?: string | undefined;
194
+ format?: string | undefined;
195
+ nullable?: boolean | undefined;
196
+ }[];
197
+ encoding: "form-data" | "urlencoded";
198
+ };
199
+ activeBody: "raw" | "formData" | "binary";
200
+ binary?: File | undefined;
201
+ };
174
202
  parameters: {
175
203
  path: {
176
204
  value: string;
@@ -183,10 +211,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
183
211
  required?: boolean | undefined;
184
212
  description?: string | undefined;
185
213
  enum?: string[] | undefined;
186
- nullable?: boolean | undefined;
187
- format?: string | undefined;
188
214
  file?: any;
189
215
  refUid?: string | undefined;
216
+ format?: string | undefined;
217
+ nullable?: boolean | undefined;
190
218
  }[];
191
219
  query: {
192
220
  value: string;
@@ -199,10 +227,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
199
227
  required?: boolean | undefined;
200
228
  description?: string | undefined;
201
229
  enum?: string[] | undefined;
202
- nullable?: boolean | undefined;
203
- format?: string | undefined;
204
230
  file?: any;
205
231
  refUid?: string | undefined;
232
+ format?: string | undefined;
233
+ nullable?: boolean | undefined;
206
234
  }[];
207
235
  headers: {
208
236
  value: string;
@@ -215,10 +243,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
215
243
  required?: boolean | undefined;
216
244
  description?: string | undefined;
217
245
  enum?: string[] | undefined;
218
- nullable?: boolean | undefined;
219
- format?: string | undefined;
220
246
  file?: any;
221
247
  refUid?: string | undefined;
248
+ format?: string | undefined;
249
+ nullable?: boolean | undefined;
222
250
  }[];
223
251
  cookies: {
224
252
  value: string;
@@ -231,40 +259,12 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
231
259
  required?: boolean | undefined;
232
260
  description?: string | undefined;
233
261
  enum?: string[] | undefined;
234
- nullable?: boolean | undefined;
235
- format?: string | undefined;
236
262
  file?: any;
237
263
  refUid?: string | undefined;
264
+ format?: string | undefined;
265
+ nullable?: boolean | undefined;
238
266
  }[];
239
267
  };
240
- requestUid: string;
241
- body: {
242
- raw: {
243
- value: string;
244
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
245
- };
246
- formData: {
247
- value: {
248
- value: string;
249
- key: string;
250
- enabled: boolean;
251
- minimum?: number | undefined;
252
- type?: string | undefined;
253
- maximum?: number | undefined;
254
- default?: any;
255
- required?: boolean | undefined;
256
- description?: string | undefined;
257
- enum?: string[] | undefined;
258
- nullable?: boolean | undefined;
259
- format?: string | undefined;
260
- file?: any;
261
- refUid?: string | undefined;
262
- }[];
263
- encoding: "form-data" | "urlencoded";
264
- };
265
- activeBody: "raw" | "formData" | "binary";
266
- binary?: File | undefined;
267
- };
268
268
  auth: Record<string, any>;
269
269
  }>;
270
270
  requests: Record<string, import("@scalar/oas-utils/entities/workspace/spec").Request>;
@@ -392,6 +392,34 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
392
392
  uid: string;
393
393
  name: string;
394
394
  url: string;
395
+ requestUid: string;
396
+ body: {
397
+ raw: {
398
+ value: string;
399
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
400
+ };
401
+ formData: {
402
+ value: {
403
+ value: string;
404
+ key: string;
405
+ enabled: boolean;
406
+ minimum?: number | undefined;
407
+ type?: string | undefined;
408
+ maximum?: number | undefined;
409
+ default?: any;
410
+ required?: boolean | undefined;
411
+ description?: string | undefined;
412
+ enum?: string[] | undefined;
413
+ file?: any;
414
+ refUid?: string | undefined;
415
+ format?: string | undefined;
416
+ nullable?: boolean | undefined;
417
+ }[];
418
+ encoding: "form-data" | "urlencoded";
419
+ };
420
+ activeBody: "raw" | "formData" | "binary";
421
+ binary?: File | undefined;
422
+ };
395
423
  parameters: {
396
424
  path: {
397
425
  value: string;
@@ -404,10 +432,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
404
432
  required?: boolean | undefined;
405
433
  description?: string | undefined;
406
434
  enum?: string[] | undefined;
407
- nullable?: boolean | undefined;
408
- format?: string | undefined;
409
435
  file?: any;
410
436
  refUid?: string | undefined;
437
+ format?: string | undefined;
438
+ nullable?: boolean | undefined;
411
439
  }[];
412
440
  query: {
413
441
  value: string;
@@ -420,10 +448,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
420
448
  required?: boolean | undefined;
421
449
  description?: string | undefined;
422
450
  enum?: string[] | undefined;
423
- nullable?: boolean | undefined;
424
- format?: string | undefined;
425
451
  file?: any;
426
452
  refUid?: string | undefined;
453
+ format?: string | undefined;
454
+ nullable?: boolean | undefined;
427
455
  }[];
428
456
  headers: {
429
457
  value: string;
@@ -436,10 +464,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
436
464
  required?: boolean | undefined;
437
465
  description?: string | undefined;
438
466
  enum?: string[] | undefined;
439
- nullable?: boolean | undefined;
440
- format?: string | undefined;
441
467
  file?: any;
442
468
  refUid?: string | undefined;
469
+ format?: string | undefined;
470
+ nullable?: boolean | undefined;
443
471
  }[];
444
472
  cookies: {
445
473
  value: string;
@@ -452,40 +480,12 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
452
480
  required?: boolean | undefined;
453
481
  description?: string | undefined;
454
482
  enum?: string[] | undefined;
455
- nullable?: boolean | undefined;
456
- format?: string | undefined;
457
483
  file?: any;
458
484
  refUid?: string | undefined;
485
+ format?: string | undefined;
486
+ nullable?: boolean | undefined;
459
487
  }[];
460
488
  };
461
- requestUid: string;
462
- body: {
463
- raw: {
464
- value: string;
465
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
466
- };
467
- formData: {
468
- value: {
469
- value: string;
470
- key: string;
471
- enabled: boolean;
472
- minimum?: number | undefined;
473
- type?: string | undefined;
474
- maximum?: number | undefined;
475
- default?: any;
476
- required?: boolean | undefined;
477
- description?: string | undefined;
478
- enum?: string[] | undefined;
479
- nullable?: boolean | undefined;
480
- format?: string | undefined;
481
- file?: any;
482
- refUid?: string | undefined;
483
- }[];
484
- encoding: "form-data" | "urlencoded";
485
- };
486
- activeBody: "raw" | "formData" | "binary";
487
- binary?: File | undefined;
488
- };
489
489
  auth: Record<string, any>;
490
490
  }>;
491
491
  activeRequest: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request>;
@@ -591,7 +591,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
591
591
  hotKeyConfig?: {
592
592
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
593
593
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
594
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
594
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
595
595
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
596
596
  }>> | undefined;
597
597
  } | undefined;
@@ -1309,8 +1309,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1309
1309
  };
1310
1310
  delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid?: string) => void;
1311
1311
  set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
1312
- edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1313
- untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `requestBody.${string}` | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "operationId" | "parameters" | "requestBody" | "method" | "history" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" ? R extends import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1312
+ 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;
1313
+ 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;
1314
1314
  undo: (uid: string) => void;
1315
1315
  redo: (uid: string) => void;
1316
1316
  loadLocalStorage: () => void;
@@ -1320,6 +1320,34 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1320
1320
  uid: string;
1321
1321
  name: string;
1322
1322
  url: string;
1323
+ requestUid: string;
1324
+ body: {
1325
+ raw: {
1326
+ value: string;
1327
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1328
+ };
1329
+ formData: {
1330
+ value: {
1331
+ value: string;
1332
+ key: string;
1333
+ enabled: boolean;
1334
+ minimum?: number | undefined;
1335
+ type?: string | undefined;
1336
+ maximum?: number | undefined;
1337
+ default?: any;
1338
+ required?: boolean | undefined;
1339
+ description?: string | undefined;
1340
+ enum?: string[] | undefined;
1341
+ file?: any;
1342
+ refUid?: string | undefined;
1343
+ format?: string | undefined;
1344
+ nullable?: boolean | undefined;
1345
+ }[];
1346
+ encoding: "form-data" | "urlencoded";
1347
+ };
1348
+ activeBody: "raw" | "formData" | "binary";
1349
+ binary?: File | undefined;
1350
+ };
1323
1351
  parameters: {
1324
1352
  path: {
1325
1353
  value: string;
@@ -1332,10 +1360,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1332
1360
  required?: boolean | undefined;
1333
1361
  description?: string | undefined;
1334
1362
  enum?: string[] | undefined;
1335
- nullable?: boolean | undefined;
1336
- format?: string | undefined;
1337
1363
  file?: any;
1338
1364
  refUid?: string | undefined;
1365
+ format?: string | undefined;
1366
+ nullable?: boolean | undefined;
1339
1367
  }[];
1340
1368
  query: {
1341
1369
  value: string;
@@ -1348,10 +1376,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1348
1376
  required?: boolean | undefined;
1349
1377
  description?: string | undefined;
1350
1378
  enum?: string[] | undefined;
1351
- nullable?: boolean | undefined;
1352
- format?: string | undefined;
1353
1379
  file?: any;
1354
1380
  refUid?: string | undefined;
1381
+ format?: string | undefined;
1382
+ nullable?: boolean | undefined;
1355
1383
  }[];
1356
1384
  headers: {
1357
1385
  value: string;
@@ -1364,10 +1392,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1364
1392
  required?: boolean | undefined;
1365
1393
  description?: string | undefined;
1366
1394
  enum?: string[] | undefined;
1367
- nullable?: boolean | undefined;
1368
- format?: string | undefined;
1369
1395
  file?: any;
1370
1396
  refUid?: string | undefined;
1397
+ format?: string | undefined;
1398
+ nullable?: boolean | undefined;
1371
1399
  }[];
1372
1400
  cookies: {
1373
1401
  value: string;
@@ -1380,17 +1408,23 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1380
1408
  required?: boolean | undefined;
1381
1409
  description?: string | undefined;
1382
1410
  enum?: string[] | undefined;
1383
- nullable?: boolean | undefined;
1384
- format?: string | undefined;
1385
1411
  file?: any;
1386
1412
  refUid?: string | undefined;
1413
+ format?: string | undefined;
1414
+ nullable?: boolean | undefined;
1387
1415
  }[];
1388
1416
  };
1417
+ auth: Record<string, any>;
1418
+ }) => void;
1419
+ add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
1420
+ uid: string;
1421
+ name: string;
1422
+ url: string;
1389
1423
  requestUid: string;
1390
1424
  body: {
1391
1425
  raw: {
1392
1426
  value: string;
1393
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1427
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1394
1428
  };
1395
1429
  formData: {
1396
1430
  value: {
@@ -1404,22 +1438,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1404
1438
  required?: boolean | undefined;
1405
1439
  description?: string | undefined;
1406
1440
  enum?: string[] | undefined;
1407
- nullable?: boolean | undefined;
1408
- format?: string | undefined;
1409
1441
  file?: any;
1410
1442
  refUid?: string | undefined;
1443
+ format?: string | undefined;
1444
+ nullable?: boolean | undefined;
1411
1445
  }[];
1412
1446
  encoding: "form-data" | "urlencoded";
1413
1447
  };
1414
1448
  activeBody: "raw" | "formData" | "binary";
1415
1449
  binary?: File | undefined;
1416
1450
  };
1417
- auth: Record<string, any>;
1418
- }) => void;
1419
- add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
1420
- uid: string;
1421
- name: string;
1422
- url: string;
1423
1451
  parameters: {
1424
1452
  path: {
1425
1453
  value: string;
@@ -1432,10 +1460,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1432
1460
  required?: boolean | undefined;
1433
1461
  description?: string | undefined;
1434
1462
  enum?: string[] | undefined;
1435
- nullable?: boolean | undefined;
1436
- format?: string | undefined;
1437
1463
  file?: any;
1438
1464
  refUid?: string | undefined;
1465
+ format?: string | undefined;
1466
+ nullable?: boolean | undefined;
1439
1467
  }[];
1440
1468
  query: {
1441
1469
  value: string;
@@ -1448,10 +1476,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1448
1476
  required?: boolean | undefined;
1449
1477
  description?: string | undefined;
1450
1478
  enum?: string[] | undefined;
1451
- nullable?: boolean | undefined;
1452
- format?: string | undefined;
1453
1479
  file?: any;
1454
1480
  refUid?: string | undefined;
1481
+ format?: string | undefined;
1482
+ nullable?: boolean | undefined;
1455
1483
  }[];
1456
1484
  headers: {
1457
1485
  value: string;
@@ -1464,10 +1492,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1464
1492
  required?: boolean | undefined;
1465
1493
  description?: string | undefined;
1466
1494
  enum?: string[] | undefined;
1467
- nullable?: boolean | undefined;
1468
- format?: string | undefined;
1469
1495
  file?: any;
1470
1496
  refUid?: string | undefined;
1497
+ format?: string | undefined;
1498
+ nullable?: boolean | undefined;
1471
1499
  }[];
1472
1500
  cookies: {
1473
1501
  value: string;
@@ -1480,17 +1508,24 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1480
1508
  required?: boolean | undefined;
1481
1509
  description?: string | undefined;
1482
1510
  enum?: string[] | undefined;
1483
- nullable?: boolean | undefined;
1484
- format?: string | undefined;
1485
1511
  file?: any;
1486
1512
  refUid?: string | undefined;
1513
+ format?: string | undefined;
1514
+ nullable?: boolean | undefined;
1487
1515
  }[];
1488
1516
  };
1517
+ auth: Record<string, any>;
1518
+ };
1519
+ delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
1520
+ set: (item: {
1521
+ uid: string;
1522
+ name: string;
1523
+ url: string;
1489
1524
  requestUid: string;
1490
1525
  body: {
1491
1526
  raw: {
1492
1527
  value: string;
1493
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1528
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1494
1529
  };
1495
1530
  formData: {
1496
1531
  value: {
@@ -1504,23 +1539,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1504
1539
  required?: boolean | undefined;
1505
1540
  description?: string | undefined;
1506
1541
  enum?: string[] | undefined;
1507
- nullable?: boolean | undefined;
1508
- format?: string | undefined;
1509
1542
  file?: any;
1510
1543
  refUid?: string | undefined;
1544
+ format?: string | undefined;
1545
+ nullable?: boolean | undefined;
1511
1546
  }[];
1512
1547
  encoding: "form-data" | "urlencoded";
1513
1548
  };
1514
1549
  activeBody: "raw" | "formData" | "binary";
1515
1550
  binary?: File | undefined;
1516
1551
  };
1517
- auth: Record<string, any>;
1518
- };
1519
- delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
1520
- set: (item: {
1521
- uid: string;
1522
- name: string;
1523
- url: string;
1524
1552
  parameters: {
1525
1553
  path: {
1526
1554
  value: string;
@@ -1533,10 +1561,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1533
1561
  required?: boolean | undefined;
1534
1562
  description?: string | undefined;
1535
1563
  enum?: string[] | undefined;
1536
- nullable?: boolean | undefined;
1537
- format?: string | undefined;
1538
1564
  file?: any;
1539
1565
  refUid?: string | undefined;
1566
+ format?: string | undefined;
1567
+ nullable?: boolean | undefined;
1540
1568
  }[];
1541
1569
  query: {
1542
1570
  value: string;
@@ -1549,10 +1577,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1549
1577
  required?: boolean | undefined;
1550
1578
  description?: string | undefined;
1551
1579
  enum?: string[] | undefined;
1552
- nullable?: boolean | undefined;
1553
- format?: string | undefined;
1554
1580
  file?: any;
1555
1581
  refUid?: string | undefined;
1582
+ format?: string | undefined;
1583
+ nullable?: boolean | undefined;
1556
1584
  }[];
1557
1585
  headers: {
1558
1586
  value: string;
@@ -1565,10 +1593,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1565
1593
  required?: boolean | undefined;
1566
1594
  description?: string | undefined;
1567
1595
  enum?: string[] | undefined;
1568
- nullable?: boolean | undefined;
1569
- format?: string | undefined;
1570
1596
  file?: any;
1571
1597
  refUid?: string | undefined;
1598
+ format?: string | undefined;
1599
+ nullable?: boolean | undefined;
1572
1600
  }[];
1573
1601
  cookies: {
1574
1602
  value: string;
@@ -1581,17 +1609,23 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1581
1609
  required?: boolean | undefined;
1582
1610
  description?: string | undefined;
1583
1611
  enum?: string[] | undefined;
1584
- nullable?: boolean | undefined;
1585
- format?: string | undefined;
1586
1612
  file?: any;
1587
1613
  refUid?: string | undefined;
1614
+ format?: string | undefined;
1615
+ nullable?: boolean | undefined;
1588
1616
  }[];
1589
1617
  };
1618
+ auth: Record<string, any>;
1619
+ }) => void;
1620
+ edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
1621
+ uid: string;
1622
+ name: string;
1623
+ url: string;
1590
1624
  requestUid: string;
1591
1625
  body: {
1592
1626
  raw: {
1593
1627
  value: string;
1594
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1628
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1595
1629
  };
1596
1630
  formData: {
1597
1631
  value: {
@@ -1605,22 +1639,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1605
1639
  required?: boolean | undefined;
1606
1640
  description?: string | undefined;
1607
1641
  enum?: string[] | undefined;
1608
- nullable?: boolean | undefined;
1609
- format?: string | undefined;
1610
1642
  file?: any;
1611
1643
  refUid?: string | undefined;
1644
+ format?: string | undefined;
1645
+ nullable?: boolean | undefined;
1612
1646
  }[];
1613
1647
  encoding: "form-data" | "urlencoded";
1614
1648
  };
1615
1649
  activeBody: "raw" | "formData" | "binary";
1616
1650
  binary?: File | undefined;
1617
1651
  };
1618
- auth: Record<string, any>;
1619
- }) => void;
1620
- edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.enabled` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.enabled` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
1621
- uid: string;
1622
- name: string;
1623
- url: string;
1624
1652
  parameters: {
1625
1653
  path: {
1626
1654
  value: string;
@@ -1633,10 +1661,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1633
1661
  required?: boolean | undefined;
1634
1662
  description?: string | undefined;
1635
1663
  enum?: string[] | undefined;
1636
- nullable?: boolean | undefined;
1637
- format?: string | undefined;
1638
1664
  file?: any;
1639
1665
  refUid?: string | undefined;
1666
+ format?: string | undefined;
1667
+ nullable?: boolean | undefined;
1640
1668
  }[];
1641
1669
  query: {
1642
1670
  value: string;
@@ -1649,10 +1677,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1649
1677
  required?: boolean | undefined;
1650
1678
  description?: string | undefined;
1651
1679
  enum?: string[] | undefined;
1652
- nullable?: boolean | undefined;
1653
- format?: string | undefined;
1654
1680
  file?: any;
1655
1681
  refUid?: string | undefined;
1682
+ format?: string | undefined;
1683
+ nullable?: boolean | undefined;
1656
1684
  }[];
1657
1685
  headers: {
1658
1686
  value: string;
@@ -1665,10 +1693,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1665
1693
  required?: boolean | undefined;
1666
1694
  description?: string | undefined;
1667
1695
  enum?: string[] | undefined;
1668
- nullable?: boolean | undefined;
1669
- format?: string | undefined;
1670
1696
  file?: any;
1671
1697
  refUid?: string | undefined;
1698
+ format?: string | undefined;
1699
+ nullable?: boolean | undefined;
1672
1700
  }[];
1673
1701
  cookies: {
1674
1702
  value: string;
@@ -1681,17 +1709,22 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1681
1709
  required?: boolean | undefined;
1682
1710
  description?: string | undefined;
1683
1711
  enum?: string[] | undefined;
1684
- nullable?: boolean | undefined;
1685
- format?: string | undefined;
1686
1712
  file?: any;
1687
1713
  refUid?: string | undefined;
1714
+ format?: string | undefined;
1715
+ nullable?: boolean | undefined;
1688
1716
  }[];
1689
1717
  };
1718
+ auth: Record<string, any>;
1719
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
1720
+ uid: string;
1721
+ name: string;
1722
+ url: string;
1690
1723
  requestUid: string;
1691
1724
  body: {
1692
1725
  raw: {
1693
1726
  value: string;
1694
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1727
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1695
1728
  };
1696
1729
  formData: {
1697
1730
  value: {
@@ -1705,21 +1738,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1705
1738
  required?: boolean | undefined;
1706
1739
  description?: string | undefined;
1707
1740
  enum?: string[] | undefined;
1708
- nullable?: boolean | undefined;
1709
- format?: string | undefined;
1710
1741
  file?: any;
1711
1742
  refUid?: string | undefined;
1743
+ format?: string | undefined;
1744
+ nullable?: boolean | undefined;
1712
1745
  }[];
1713
1746
  encoding: "form-data" | "urlencoded";
1714
1747
  };
1715
1748
  activeBody: "raw" | "formData" | "binary";
1716
1749
  binary?: File | undefined;
1717
1750
  };
1718
- auth: Record<string, any>;
1719
- }[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
1720
- uid: string;
1721
- name: string;
1722
- url: string;
1723
1751
  parameters: {
1724
1752
  path: {
1725
1753
  value: string;
@@ -1732,10 +1760,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1732
1760
  required?: boolean | undefined;
1733
1761
  description?: string | undefined;
1734
1762
  enum?: string[] | undefined;
1735
- nullable?: boolean | undefined;
1736
- format?: string | undefined;
1737
1763
  file?: any;
1738
1764
  refUid?: string | undefined;
1765
+ format?: string | undefined;
1766
+ nullable?: boolean | undefined;
1739
1767
  }[];
1740
1768
  query: {
1741
1769
  value: string;
@@ -1748,10 +1776,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1748
1776
  required?: boolean | undefined;
1749
1777
  description?: string | undefined;
1750
1778
  enum?: string[] | undefined;
1751
- nullable?: boolean | undefined;
1752
- format?: string | undefined;
1753
1779
  file?: any;
1754
1780
  refUid?: string | undefined;
1781
+ format?: string | undefined;
1782
+ nullable?: boolean | undefined;
1755
1783
  }[];
1756
1784
  headers: {
1757
1785
  value: string;
@@ -1764,10 +1792,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1764
1792
  required?: boolean | undefined;
1765
1793
  description?: string | undefined;
1766
1794
  enum?: string[] | undefined;
1767
- nullable?: boolean | undefined;
1768
- format?: string | undefined;
1769
1795
  file?: any;
1770
1796
  refUid?: string | undefined;
1797
+ format?: string | undefined;
1798
+ nullable?: boolean | undefined;
1771
1799
  }[];
1772
1800
  cookies: {
1773
1801
  value: string;
@@ -1780,17 +1808,22 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1780
1808
  required?: boolean | undefined;
1781
1809
  description?: string | undefined;
1782
1810
  enum?: string[] | undefined;
1783
- nullable?: boolean | undefined;
1784
- format?: string | undefined;
1785
1811
  file?: any;
1786
1812
  refUid?: string | undefined;
1813
+ format?: string | undefined;
1814
+ nullable?: boolean | undefined;
1787
1815
  }[];
1788
1816
  };
1817
+ auth: Record<string, any>;
1818
+ }[K]> ? import("@scalar/object-utils/nested").PathValue<{
1819
+ uid: string;
1820
+ name: string;
1821
+ url: string;
1789
1822
  requestUid: string;
1790
1823
  body: {
1791
1824
  raw: {
1792
1825
  value: string;
1793
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1826
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1794
1827
  };
1795
1828
  formData: {
1796
1829
  value: {
@@ -1804,21 +1837,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1804
1837
  required?: boolean | undefined;
1805
1838
  description?: string | undefined;
1806
1839
  enum?: string[] | undefined;
1807
- nullable?: boolean | undefined;
1808
- format?: string | undefined;
1809
1840
  file?: any;
1810
1841
  refUid?: string | undefined;
1842
+ format?: string | undefined;
1843
+ nullable?: boolean | undefined;
1811
1844
  }[];
1812
1845
  encoding: "form-data" | "urlencoded";
1813
1846
  };
1814
1847
  activeBody: "raw" | "formData" | "binary";
1815
1848
  binary?: File | undefined;
1816
1849
  };
1817
- auth: Record<string, any>;
1818
- }[K]> ? import("@scalar/object-utils/nested").PathValue<{
1819
- uid: string;
1820
- name: string;
1821
- url: string;
1822
1850
  parameters: {
1823
1851
  path: {
1824
1852
  value: string;
@@ -1831,10 +1859,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1831
1859
  required?: boolean | undefined;
1832
1860
  description?: string | undefined;
1833
1861
  enum?: string[] | undefined;
1834
- nullable?: boolean | undefined;
1835
- format?: string | undefined;
1836
1862
  file?: any;
1837
1863
  refUid?: string | undefined;
1864
+ format?: string | undefined;
1865
+ nullable?: boolean | undefined;
1838
1866
  }[];
1839
1867
  query: {
1840
1868
  value: string;
@@ -1847,10 +1875,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1847
1875
  required?: boolean | undefined;
1848
1876
  description?: string | undefined;
1849
1877
  enum?: string[] | undefined;
1850
- nullable?: boolean | undefined;
1851
- format?: string | undefined;
1852
1878
  file?: any;
1853
1879
  refUid?: string | undefined;
1880
+ format?: string | undefined;
1881
+ nullable?: boolean | undefined;
1854
1882
  }[];
1855
1883
  headers: {
1856
1884
  value: string;
@@ -1863,10 +1891,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1863
1891
  required?: boolean | undefined;
1864
1892
  description?: string | undefined;
1865
1893
  enum?: string[] | undefined;
1866
- nullable?: boolean | undefined;
1867
- format?: string | undefined;
1868
1894
  file?: any;
1869
1895
  refUid?: string | undefined;
1896
+ format?: string | undefined;
1897
+ nullable?: boolean | undefined;
1870
1898
  }[];
1871
1899
  cookies: {
1872
1900
  value: string;
@@ -1879,17 +1907,23 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1879
1907
  required?: boolean | undefined;
1880
1908
  description?: string | undefined;
1881
1909
  enum?: string[] | undefined;
1882
- nullable?: boolean | undefined;
1883
- format?: string | undefined;
1884
1910
  file?: any;
1885
1911
  refUid?: string | undefined;
1912
+ format?: string | undefined;
1913
+ nullable?: boolean | undefined;
1886
1914
  }[];
1887
1915
  };
1916
+ auth: Record<string, any>;
1917
+ }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1918
+ untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
1919
+ uid: string;
1920
+ name: string;
1921
+ url: string;
1888
1922
  requestUid: string;
1889
1923
  body: {
1890
1924
  raw: {
1891
1925
  value: string;
1892
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
1926
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1893
1927
  };
1894
1928
  formData: {
1895
1929
  value: {
@@ -1903,22 +1937,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1903
1937
  required?: boolean | undefined;
1904
1938
  description?: string | undefined;
1905
1939
  enum?: string[] | undefined;
1906
- nullable?: boolean | undefined;
1907
- format?: string | undefined;
1908
1940
  file?: any;
1909
1941
  refUid?: string | undefined;
1942
+ format?: string | undefined;
1943
+ nullable?: boolean | undefined;
1910
1944
  }[];
1911
1945
  encoding: "form-data" | "urlencoded";
1912
1946
  };
1913
1947
  activeBody: "raw" | "formData" | "binary";
1914
1948
  binary?: File | undefined;
1915
1949
  };
1916
- auth: Record<string, any>;
1917
- }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1918
- untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.enabled` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.enabled` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
1919
- uid: string;
1920
- name: string;
1921
- url: string;
1922
1950
  parameters: {
1923
1951
  path: {
1924
1952
  value: string;
@@ -1931,10 +1959,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1931
1959
  required?: boolean | undefined;
1932
1960
  description?: string | undefined;
1933
1961
  enum?: string[] | undefined;
1934
- nullable?: boolean | undefined;
1935
- format?: string | undefined;
1936
1962
  file?: any;
1937
1963
  refUid?: string | undefined;
1964
+ format?: string | undefined;
1965
+ nullable?: boolean | undefined;
1938
1966
  }[];
1939
1967
  query: {
1940
1968
  value: string;
@@ -1947,10 +1975,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1947
1975
  required?: boolean | undefined;
1948
1976
  description?: string | undefined;
1949
1977
  enum?: string[] | undefined;
1950
- nullable?: boolean | undefined;
1951
- format?: string | undefined;
1952
1978
  file?: any;
1953
1979
  refUid?: string | undefined;
1980
+ format?: string | undefined;
1981
+ nullable?: boolean | undefined;
1954
1982
  }[];
1955
1983
  headers: {
1956
1984
  value: string;
@@ -1963,10 +1991,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1963
1991
  required?: boolean | undefined;
1964
1992
  description?: string | undefined;
1965
1993
  enum?: string[] | undefined;
1966
- nullable?: boolean | undefined;
1967
- format?: string | undefined;
1968
1994
  file?: any;
1969
1995
  refUid?: string | undefined;
1996
+ format?: string | undefined;
1997
+ nullable?: boolean | undefined;
1970
1998
  }[];
1971
1999
  cookies: {
1972
2000
  value: string;
@@ -1979,17 +2007,22 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1979
2007
  required?: boolean | undefined;
1980
2008
  description?: string | undefined;
1981
2009
  enum?: string[] | undefined;
1982
- nullable?: boolean | undefined;
1983
- format?: string | undefined;
1984
2010
  file?: any;
1985
2011
  refUid?: string | undefined;
2012
+ format?: string | undefined;
2013
+ nullable?: boolean | undefined;
1986
2014
  }[];
1987
2015
  };
2016
+ auth: Record<string, any>;
2017
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
2018
+ uid: string;
2019
+ name: string;
2020
+ url: string;
1988
2021
  requestUid: string;
1989
2022
  body: {
1990
2023
  raw: {
1991
2024
  value: string;
1992
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
2025
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1993
2026
  };
1994
2027
  formData: {
1995
2028
  value: {
@@ -2003,21 +2036,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2003
2036
  required?: boolean | undefined;
2004
2037
  description?: string | undefined;
2005
2038
  enum?: string[] | undefined;
2006
- nullable?: boolean | undefined;
2007
- format?: string | undefined;
2008
2039
  file?: any;
2009
2040
  refUid?: string | undefined;
2041
+ format?: string | undefined;
2042
+ nullable?: boolean | undefined;
2010
2043
  }[];
2011
2044
  encoding: "form-data" | "urlencoded";
2012
2045
  };
2013
2046
  activeBody: "raw" | "formData" | "binary";
2014
2047
  binary?: File | undefined;
2015
2048
  };
2016
- auth: Record<string, any>;
2017
- }[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
2018
- uid: string;
2019
- name: string;
2020
- url: string;
2021
2049
  parameters: {
2022
2050
  path: {
2023
2051
  value: string;
@@ -2030,10 +2058,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2030
2058
  required?: boolean | undefined;
2031
2059
  description?: string | undefined;
2032
2060
  enum?: string[] | undefined;
2033
- nullable?: boolean | undefined;
2034
- format?: string | undefined;
2035
2061
  file?: any;
2036
2062
  refUid?: string | undefined;
2063
+ format?: string | undefined;
2064
+ nullable?: boolean | undefined;
2037
2065
  }[];
2038
2066
  query: {
2039
2067
  value: string;
@@ -2046,10 +2074,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2046
2074
  required?: boolean | undefined;
2047
2075
  description?: string | undefined;
2048
2076
  enum?: string[] | undefined;
2049
- nullable?: boolean | undefined;
2050
- format?: string | undefined;
2051
2077
  file?: any;
2052
2078
  refUid?: string | undefined;
2079
+ format?: string | undefined;
2080
+ nullable?: boolean | undefined;
2053
2081
  }[];
2054
2082
  headers: {
2055
2083
  value: string;
@@ -2062,10 +2090,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2062
2090
  required?: boolean | undefined;
2063
2091
  description?: string | undefined;
2064
2092
  enum?: string[] | undefined;
2065
- nullable?: boolean | undefined;
2066
- format?: string | undefined;
2067
2093
  file?: any;
2068
2094
  refUid?: string | undefined;
2095
+ format?: string | undefined;
2096
+ nullable?: boolean | undefined;
2069
2097
  }[];
2070
2098
  cookies: {
2071
2099
  value: string;
@@ -2078,17 +2106,22 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2078
2106
  required?: boolean | undefined;
2079
2107
  description?: string | undefined;
2080
2108
  enum?: string[] | undefined;
2081
- nullable?: boolean | undefined;
2082
- format?: string | undefined;
2083
2109
  file?: any;
2084
2110
  refUid?: string | undefined;
2111
+ format?: string | undefined;
2112
+ nullable?: boolean | undefined;
2085
2113
  }[];
2086
2114
  };
2115
+ auth: Record<string, any>;
2116
+ }[K]> ? import("@scalar/object-utils/nested").PathValue<{
2117
+ uid: string;
2118
+ name: string;
2119
+ url: string;
2087
2120
  requestUid: string;
2088
2121
  body: {
2089
2122
  raw: {
2090
2123
  value: string;
2091
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
2124
+ encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
2092
2125
  };
2093
2126
  formData: {
2094
2127
  value: {
@@ -2102,21 +2135,16 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2102
2135
  required?: boolean | undefined;
2103
2136
  description?: string | undefined;
2104
2137
  enum?: string[] | undefined;
2105
- nullable?: boolean | undefined;
2106
- format?: string | undefined;
2107
2138
  file?: any;
2108
2139
  refUid?: string | undefined;
2140
+ format?: string | undefined;
2141
+ nullable?: boolean | undefined;
2109
2142
  }[];
2110
2143
  encoding: "form-data" | "urlencoded";
2111
2144
  };
2112
2145
  activeBody: "raw" | "formData" | "binary";
2113
2146
  binary?: File | undefined;
2114
2147
  };
2115
- auth: Record<string, any>;
2116
- }[K]> ? import("@scalar/object-utils/nested").PathValue<{
2117
- uid: string;
2118
- name: string;
2119
- url: string;
2120
2148
  parameters: {
2121
2149
  path: {
2122
2150
  value: string;
@@ -2129,10 +2157,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2129
2157
  required?: boolean | undefined;
2130
2158
  description?: string | undefined;
2131
2159
  enum?: string[] | undefined;
2132
- nullable?: boolean | undefined;
2133
- format?: string | undefined;
2134
2160
  file?: any;
2135
2161
  refUid?: string | undefined;
2162
+ format?: string | undefined;
2163
+ nullable?: boolean | undefined;
2136
2164
  }[];
2137
2165
  query: {
2138
2166
  value: string;
@@ -2145,10 +2173,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2145
2173
  required?: boolean | undefined;
2146
2174
  description?: string | undefined;
2147
2175
  enum?: string[] | undefined;
2148
- nullable?: boolean | undefined;
2149
- format?: string | undefined;
2150
2176
  file?: any;
2151
2177
  refUid?: string | undefined;
2178
+ format?: string | undefined;
2179
+ nullable?: boolean | undefined;
2152
2180
  }[];
2153
2181
  headers: {
2154
2182
  value: string;
@@ -2161,10 +2189,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2161
2189
  required?: boolean | undefined;
2162
2190
  description?: string | undefined;
2163
2191
  enum?: string[] | undefined;
2164
- nullable?: boolean | undefined;
2165
- format?: string | undefined;
2166
2192
  file?: any;
2167
2193
  refUid?: string | undefined;
2194
+ format?: string | undefined;
2195
+ nullable?: boolean | undefined;
2168
2196
  }[];
2169
2197
  cookies: {
2170
2198
  value: string;
@@ -2177,40 +2205,12 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2177
2205
  required?: boolean | undefined;
2178
2206
  description?: string | undefined;
2179
2207
  enum?: string[] | undefined;
2180
- nullable?: boolean | undefined;
2181
- format?: string | undefined;
2182
2208
  file?: any;
2183
2209
  refUid?: string | undefined;
2210
+ format?: string | undefined;
2211
+ nullable?: boolean | undefined;
2184
2212
  }[];
2185
2213
  };
2186
- requestUid: string;
2187
- body: {
2188
- raw: {
2189
- value: string;
2190
- encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
2191
- };
2192
- formData: {
2193
- value: {
2194
- value: string;
2195
- key: string;
2196
- enabled: boolean;
2197
- minimum?: number | undefined;
2198
- type?: string | undefined;
2199
- maximum?: number | undefined;
2200
- default?: any;
2201
- required?: boolean | undefined;
2202
- description?: string | undefined;
2203
- enum?: string[] | undefined;
2204
- nullable?: boolean | undefined;
2205
- format?: string | undefined;
2206
- file?: any;
2207
- refUid?: string | undefined;
2208
- }[];
2209
- encoding: "form-data" | "urlencoded";
2210
- };
2211
- activeBody: "raw" | "formData" | "binary";
2212
- binary?: File | undefined;
2213
- };
2214
2214
  auth: Record<string, any>;
2215
2215
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
2216
2216
  undo: (uid: string) => void;
@@ -2355,7 +2355,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2355
2355
  openIdConnectUrl: string;
2356
2356
  description?: string | undefined;
2357
2357
  }) => void;
2358
- edit: <P extends "value" | "type" | "description" | "name" | "uid" | "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" ? {
2358
+ 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" ? {
2359
2359
  type: "apiKey";
2360
2360
  value: string;
2361
2361
  uid: string;
@@ -2363,7 +2363,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2363
2363
  nameKey: string;
2364
2364
  in: "query" | "header" | "cookie";
2365
2365
  description?: string | undefined;
2366
- }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2366
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
2367
2367
  type: "apiKey";
2368
2368
  value: string;
2369
2369
  uid: string;
@@ -2554,7 +2554,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2554
2554
  openIdConnectUrl: string;
2555
2555
  description?: string | undefined;
2556
2556
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
2557
- untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "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" ? {
2557
+ 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" ? {
2558
2558
  type: "apiKey";
2559
2559
  value: string;
2560
2560
  uid: string;
@@ -2562,7 +2562,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2562
2562
  nameKey: string;
2563
2563
  in: "query" | "header" | "cookie";
2564
2564
  description?: string | undefined;
2565
- }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "in" | "nameKey" ? R extends import("@scalar/object-utils/nested").Path<{
2565
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
2566
2566
  type: "apiKey";
2567
2567
  value: string;
2568
2568
  uid: string;
@@ -2869,7 +2869,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2869
2869
  hotKeyConfig?: {
2870
2870
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2871
2871
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2872
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2872
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2873
2873
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2874
2874
  }>> | undefined;
2875
2875
  } | undefined;
@@ -2887,7 +2887,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2887
2887
  hotKeyConfig?: {
2888
2888
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2889
2889
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2890
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2890
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2891
2891
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2892
2892
  }>> | undefined;
2893
2893
  } | undefined;
@@ -2907,13 +2907,13 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2907
2907
  hotKeyConfig?: {
2908
2908
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2909
2909
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2910
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2910
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2911
2911
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2912
2912
  }>> | undefined;
2913
2913
  } | undefined;
2914
2914
  proxyUrl?: string | undefined;
2915
2915
  }) => void;
2916
- edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
2916
+ edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
2917
2917
  uid: string;
2918
2918
  name: string;
2919
2919
  description: string;
@@ -2925,7 +2925,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2925
2925
  hotKeyConfig?: {
2926
2926
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2927
2927
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2928
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2928
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2929
2929
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2930
2930
  }>> | undefined;
2931
2931
  } | undefined;
@@ -2942,7 +2942,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2942
2942
  hotKeyConfig?: {
2943
2943
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2944
2944
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2945
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2945
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2946
2946
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2947
2947
  }>> | undefined;
2948
2948
  } | undefined;
@@ -2959,13 +2959,13 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2959
2959
  hotKeyConfig?: {
2960
2960
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2961
2961
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2962
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2962
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2963
2963
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2964
2964
  }>> | undefined;
2965
2965
  } | undefined;
2966
2966
  proxyUrl?: string | undefined;
2967
2967
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
2968
- untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
2968
+ untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
2969
2969
  uid: string;
2970
2970
  name: string;
2971
2971
  description: string;
@@ -2977,7 +2977,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2977
2977
  hotKeyConfig?: {
2978
2978
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2979
2979
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2980
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2980
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2981
2981
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2982
2982
  }>> | undefined;
2983
2983
  } | undefined;
@@ -2994,7 +2994,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2994
2994
  hotKeyConfig?: {
2995
2995
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
2996
2996
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
2997
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
2997
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
2998
2998
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
2999
2999
  }>> | undefined;
3000
3000
  } | undefined;
@@ -3011,7 +3011,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
3011
3011
  hotKeyConfig?: {
3012
3012
  modifiers: ("Meta" | "Control" | "Shift" | "Alt" | "default")[];
3013
3013
  hotKeys?: Partial<Record<"" | "Space" | "Backspace" | "Tab" | "Enter" | "Escape" | "ArrowDown" | "ArrowLeft" | "ArrowRight" | "ArrowUp" | "End" | "Home" | "PageDown" | "PageUp" | "Delete" | "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" | "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h" | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p" | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x" | "y" | "z" | "*" | "+" | "-" | "." | "/" | "F1" | "F2" | "F3" | "F4" | "F5" | "F6" | "F7" | "F8" | "F9" | "F10" | "F11" | "F12" | ";" | "=" | "," | "`" | "[" | "\\" | "]", {
3014
- event: "closeModal" | "commandPaletteDown" | "commandPaletteSelect" | "commandPaletteUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab";
3014
+ event: "closeModal" | "navigateSearchResultsDown" | "selectSearchResult" | "navigateSearchResultsUp" | "openCommandPalette" | "toggleSidebar" | "addTopNav" | "closeTopNav" | "navigateTopNavLeft" | "navigateTopNavRight" | "focusAddressBar" | "jumpToTab" | "jumpToLastTab" | "focusRequestSearch";
3015
3015
  modifiers?: ("Meta" | "Control" | "Shift" | "Alt" | "default")[] | undefined;
3016
3016
  }>> | undefined;
3017
3017
  } | undefined;