@scalar/api-client 2.0.59 → 2.0.62

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 (47) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/dist/components/CodeInput/CodeInput.vue.js +2 -2
  3. package/dist/components/CodeInput/CodeInput.vue2.js +16 -15
  4. package/dist/components/CodeInput/codeVariableWidget.d.ts.map +1 -1
  5. package/dist/components/CodeInput/codeVariableWidget.js +35 -30
  6. package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.d.ts +3 -0
  7. package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.d.ts.map +1 -0
  8. package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.js +114 -0
  9. package/dist/components/EnvironmentSelector/EnvironmentSelector.vue2.js +4 -0
  10. package/dist/components/TopNav/TopNav.vue.d.ts.map +1 -1
  11. package/dist/components/TopNav/TopNav.vue.js +2 -2
  12. package/dist/components/TopNav/TopNav.vue2.js +112 -64
  13. package/dist/layouts/App/create-api-client-app.d.ts +153 -129
  14. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  15. package/dist/layouts/Modal/create-api-client-modal.d.ts +306 -258
  16. package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
  17. package/dist/libs/create-client.d.ts +153 -129
  18. package/dist/libs/create-client.d.ts.map +1 -1
  19. package/dist/libs/event-busses/hot-keys-bus.d.ts +1 -1
  20. package/dist/libs/local-storage.js +1 -1
  21. package/dist/libs/normalizeHeaders.d.ts +1 -2
  22. package/dist/libs/normalizeHeaders.d.ts.map +1 -1
  23. package/dist/libs/sendRequest.d.ts +4 -5
  24. package/dist/libs/sendRequest.d.ts.map +1 -1
  25. package/dist/libs/sendRequest.js +104 -86
  26. package/dist/store/workspace.d.ts +302 -257
  27. package/dist/store/workspace.d.ts.map +1 -1
  28. package/dist/store/workspace.js +219 -216
  29. package/dist/style.css +1 -1
  30. package/dist/views/Environment/Environment.vue2.js +12 -12
  31. package/dist/views/Environment/EnvironmentVariableDropdown.vue.d.ts.map +1 -1
  32. package/dist/views/Environment/EnvironmentVariableDropdown.vue.js +54 -52
  33. package/dist/views/Request/Request.vue.d.ts.map +1 -1
  34. package/dist/views/Request/Request.vue.js +4 -4
  35. package/dist/views/Request/Request.vue2.js +91 -89
  36. package/dist/views/Request/RequestSection/RequestTable.vue.d.ts.map +1 -1
  37. package/dist/views/Request/RequestSection/RequestTable.vue.js +2 -2
  38. package/dist/views/Request/RequestSection/RequestTable.vue2.js +1 -1
  39. package/dist/views/Request/RequestSidebarItem.vue.d.ts.map +1 -1
  40. package/dist/views/Request/RequestSidebarItem.vue.js +2 -2
  41. package/dist/views/Request/RequestSidebarItem.vue2.js +82 -80
  42. package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts +2 -2
  43. package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts.map +1 -1
  44. package/dist/views/Request/ResponseSection/ResponseBody.vue.js +20 -20
  45. package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts.map +1 -1
  46. package/dist/views/Request/ResponseSection/ResponseSection.vue.js +47 -42
  47. package/package.json +8 -8
@@ -86,6 +86,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
86
86
  isReadOnly: boolean;
87
87
  collectionUids: string[];
88
88
  environmentUids: string[];
89
+ activeEnvironmentId: string;
89
90
  cookieUids: string[];
90
91
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
91
92
  hotKeyConfig?: {
@@ -175,7 +176,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
175
176
  body: {
176
177
  raw: {
177
178
  value: string;
178
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
179
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
179
180
  };
180
181
  formData: {
181
182
  value: {
@@ -189,10 +190,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
189
190
  required?: boolean | undefined;
190
191
  description?: string | undefined;
191
192
  enum?: string[] | undefined;
193
+ nullable?: boolean | undefined;
194
+ format?: string | undefined;
192
195
  file?: any;
193
196
  refUid?: string | undefined;
194
- format?: string | undefined;
195
- nullable?: boolean | undefined;
196
197
  }[];
197
198
  encoding: "form-data" | "urlencoded";
198
199
  };
@@ -211,10 +212,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
211
212
  required?: boolean | undefined;
212
213
  description?: string | undefined;
213
214
  enum?: string[] | undefined;
215
+ nullable?: boolean | undefined;
216
+ format?: string | undefined;
214
217
  file?: any;
215
218
  refUid?: string | undefined;
216
- format?: string | undefined;
217
- nullable?: boolean | undefined;
218
219
  }[];
219
220
  query: {
220
221
  value: string;
@@ -227,10 +228,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
227
228
  required?: boolean | undefined;
228
229
  description?: string | undefined;
229
230
  enum?: string[] | undefined;
231
+ nullable?: boolean | undefined;
232
+ format?: string | undefined;
230
233
  file?: any;
231
234
  refUid?: string | undefined;
232
- format?: string | undefined;
233
- nullable?: boolean | undefined;
234
235
  }[];
235
236
  headers: {
236
237
  value: string;
@@ -243,10 +244,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
243
244
  required?: boolean | undefined;
244
245
  description?: string | undefined;
245
246
  enum?: string[] | undefined;
247
+ nullable?: boolean | undefined;
248
+ format?: string | undefined;
246
249
  file?: any;
247
250
  refUid?: string | undefined;
248
- format?: string | undefined;
249
- nullable?: boolean | undefined;
250
251
  }[];
251
252
  cookies: {
252
253
  value: string;
@@ -259,10 +260,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
259
260
  required?: boolean | undefined;
260
261
  description?: string | undefined;
261
262
  enum?: string[] | undefined;
263
+ nullable?: boolean | undefined;
264
+ format?: string | undefined;
262
265
  file?: any;
263
266
  refUid?: string | undefined;
264
- format?: string | undefined;
265
- nullable?: boolean | undefined;
266
267
  }[];
267
268
  };
268
269
  auth: Record<string, any>;
@@ -396,7 +397,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
396
397
  body: {
397
398
  raw: {
398
399
  value: string;
399
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
400
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
400
401
  };
401
402
  formData: {
402
403
  value: {
@@ -410,10 +411,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
410
411
  required?: boolean | undefined;
411
412
  description?: string | undefined;
412
413
  enum?: string[] | undefined;
414
+ nullable?: boolean | undefined;
415
+ format?: string | undefined;
413
416
  file?: any;
414
417
  refUid?: string | undefined;
415
- format?: string | undefined;
416
- nullable?: boolean | undefined;
417
418
  }[];
418
419
  encoding: "form-data" | "urlencoded";
419
420
  };
@@ -432,10 +433,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
432
433
  required?: boolean | undefined;
433
434
  description?: string | undefined;
434
435
  enum?: string[] | undefined;
436
+ nullable?: boolean | undefined;
437
+ format?: string | undefined;
435
438
  file?: any;
436
439
  refUid?: string | undefined;
437
- format?: string | undefined;
438
- nullable?: boolean | undefined;
439
440
  }[];
440
441
  query: {
441
442
  value: string;
@@ -448,10 +449,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
448
449
  required?: boolean | undefined;
449
450
  description?: string | undefined;
450
451
  enum?: string[] | undefined;
452
+ nullable?: boolean | undefined;
453
+ format?: string | undefined;
451
454
  file?: any;
452
455
  refUid?: string | undefined;
453
- format?: string | undefined;
454
- nullable?: boolean | undefined;
455
456
  }[];
456
457
  headers: {
457
458
  value: string;
@@ -464,10 +465,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
464
465
  required?: boolean | undefined;
465
466
  description?: string | undefined;
466
467
  enum?: string[] | undefined;
468
+ nullable?: boolean | undefined;
469
+ format?: string | undefined;
467
470
  file?: any;
468
471
  refUid?: string | undefined;
469
- format?: string | undefined;
470
- nullable?: boolean | undefined;
471
472
  }[];
472
473
  cookies: {
473
474
  value: string;
@@ -480,10 +481,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
480
481
  required?: boolean | undefined;
481
482
  description?: string | undefined;
482
483
  enum?: string[] | undefined;
484
+ nullable?: boolean | undefined;
485
+ format?: string | undefined;
483
486
  file?: any;
484
487
  refUid?: string | undefined;
485
- format?: string | undefined;
486
- nullable?: boolean | undefined;
487
488
  }[];
488
489
  };
489
490
  auth: Record<string, any>;
@@ -586,6 +587,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
586
587
  isReadOnly: boolean;
587
588
  collectionUids: string[];
588
589
  environmentUids: string[];
590
+ activeEnvironmentId: string;
589
591
  cookieUids: string[];
590
592
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
591
593
  hotKeyConfig?: {
@@ -653,11 +655,22 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
653
655
  key: string;
654
656
  value: string;
655
657
  } | {
656
- _scalarEnvId: any;
658
+ _scalarEnvId: string;
657
659
  key: string;
658
660
  value: unknown;
659
661
  })[]>;
660
662
  activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
663
+ activeEnvironment: import("vue").ComputedRef<{
664
+ uid: string;
665
+ name: string;
666
+ color: string;
667
+ raw: string;
668
+ parsed: {
669
+ value: string;
670
+ key: string;
671
+ }[];
672
+ isDefault?: boolean | undefined;
673
+ }>;
661
674
  modalState: {
662
675
  open: boolean;
663
676
  show: () => void;
@@ -668,7 +681,9 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
668
681
  sidebarWidth: import("vue").Ref<string>;
669
682
  setSidebarWidth: (width: string) => void;
670
683
  findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
671
- importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: Spec["servers"]) => Promise<void>;
684
+ importSpecFile: (_spec: string | {
685
+ [x: string]: any;
686
+ }, workspaceUid?: string, overloadServers?: Spec["servers"]) => Promise<void>;
672
687
  importSpecFromUrl: (url: string, proxy?: string, overloadServers?: Spec["servers"]) => Promise<void>;
673
688
  cookieMutators: {
674
689
  add: (item: {
@@ -1324,7 +1339,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1324
1339
  body: {
1325
1340
  raw: {
1326
1341
  value: string;
1327
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1342
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1328
1343
  };
1329
1344
  formData: {
1330
1345
  value: {
@@ -1338,10 +1353,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1338
1353
  required?: boolean | undefined;
1339
1354
  description?: string | undefined;
1340
1355
  enum?: string[] | undefined;
1356
+ nullable?: boolean | undefined;
1357
+ format?: string | undefined;
1341
1358
  file?: any;
1342
1359
  refUid?: string | undefined;
1343
- format?: string | undefined;
1344
- nullable?: boolean | undefined;
1345
1360
  }[];
1346
1361
  encoding: "form-data" | "urlencoded";
1347
1362
  };
@@ -1360,10 +1375,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1360
1375
  required?: boolean | undefined;
1361
1376
  description?: string | undefined;
1362
1377
  enum?: string[] | undefined;
1378
+ nullable?: boolean | undefined;
1379
+ format?: string | undefined;
1363
1380
  file?: any;
1364
1381
  refUid?: string | undefined;
1365
- format?: string | undefined;
1366
- nullable?: boolean | undefined;
1367
1382
  }[];
1368
1383
  query: {
1369
1384
  value: string;
@@ -1376,10 +1391,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1376
1391
  required?: boolean | undefined;
1377
1392
  description?: string | undefined;
1378
1393
  enum?: string[] | undefined;
1394
+ nullable?: boolean | undefined;
1395
+ format?: string | undefined;
1379
1396
  file?: any;
1380
1397
  refUid?: string | undefined;
1381
- format?: string | undefined;
1382
- nullable?: boolean | undefined;
1383
1398
  }[];
1384
1399
  headers: {
1385
1400
  value: string;
@@ -1392,10 +1407,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1392
1407
  required?: boolean | undefined;
1393
1408
  description?: string | undefined;
1394
1409
  enum?: string[] | undefined;
1410
+ nullable?: boolean | undefined;
1411
+ format?: string | undefined;
1395
1412
  file?: any;
1396
1413
  refUid?: string | undefined;
1397
- format?: string | undefined;
1398
- nullable?: boolean | undefined;
1399
1414
  }[];
1400
1415
  cookies: {
1401
1416
  value: string;
@@ -1408,10 +1423,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1408
1423
  required?: boolean | undefined;
1409
1424
  description?: string | undefined;
1410
1425
  enum?: string[] | undefined;
1426
+ nullable?: boolean | undefined;
1427
+ format?: string | undefined;
1411
1428
  file?: any;
1412
1429
  refUid?: string | undefined;
1413
- format?: string | undefined;
1414
- nullable?: boolean | undefined;
1415
1430
  }[];
1416
1431
  };
1417
1432
  auth: Record<string, any>;
@@ -1424,7 +1439,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1424
1439
  body: {
1425
1440
  raw: {
1426
1441
  value: string;
1427
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1442
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1428
1443
  };
1429
1444
  formData: {
1430
1445
  value: {
@@ -1438,10 +1453,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1438
1453
  required?: boolean | undefined;
1439
1454
  description?: string | undefined;
1440
1455
  enum?: string[] | undefined;
1456
+ nullable?: boolean | undefined;
1457
+ format?: string | undefined;
1441
1458
  file?: any;
1442
1459
  refUid?: string | undefined;
1443
- format?: string | undefined;
1444
- nullable?: boolean | undefined;
1445
1460
  }[];
1446
1461
  encoding: "form-data" | "urlencoded";
1447
1462
  };
@@ -1460,10 +1475,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1460
1475
  required?: boolean | undefined;
1461
1476
  description?: string | undefined;
1462
1477
  enum?: string[] | undefined;
1478
+ nullable?: boolean | undefined;
1479
+ format?: string | undefined;
1463
1480
  file?: any;
1464
1481
  refUid?: string | undefined;
1465
- format?: string | undefined;
1466
- nullable?: boolean | undefined;
1467
1482
  }[];
1468
1483
  query: {
1469
1484
  value: string;
@@ -1476,10 +1491,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1476
1491
  required?: boolean | undefined;
1477
1492
  description?: string | undefined;
1478
1493
  enum?: string[] | undefined;
1494
+ nullable?: boolean | undefined;
1495
+ format?: string | undefined;
1479
1496
  file?: any;
1480
1497
  refUid?: string | undefined;
1481
- format?: string | undefined;
1482
- nullable?: boolean | undefined;
1483
1498
  }[];
1484
1499
  headers: {
1485
1500
  value: string;
@@ -1492,10 +1507,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1492
1507
  required?: boolean | undefined;
1493
1508
  description?: string | undefined;
1494
1509
  enum?: string[] | undefined;
1510
+ nullable?: boolean | undefined;
1511
+ format?: string | undefined;
1495
1512
  file?: any;
1496
1513
  refUid?: string | undefined;
1497
- format?: string | undefined;
1498
- nullable?: boolean | undefined;
1499
1514
  }[];
1500
1515
  cookies: {
1501
1516
  value: string;
@@ -1508,10 +1523,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1508
1523
  required?: boolean | undefined;
1509
1524
  description?: string | undefined;
1510
1525
  enum?: string[] | undefined;
1526
+ nullable?: boolean | undefined;
1527
+ format?: string | undefined;
1511
1528
  file?: any;
1512
1529
  refUid?: string | undefined;
1513
- format?: string | undefined;
1514
- nullable?: boolean | undefined;
1515
1530
  }[];
1516
1531
  };
1517
1532
  auth: Record<string, any>;
@@ -1525,7 +1540,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1525
1540
  body: {
1526
1541
  raw: {
1527
1542
  value: string;
1528
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1543
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1529
1544
  };
1530
1545
  formData: {
1531
1546
  value: {
@@ -1539,10 +1554,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1539
1554
  required?: boolean | undefined;
1540
1555
  description?: string | undefined;
1541
1556
  enum?: string[] | undefined;
1557
+ nullable?: boolean | undefined;
1558
+ format?: string | undefined;
1542
1559
  file?: any;
1543
1560
  refUid?: string | undefined;
1544
- format?: string | undefined;
1545
- nullable?: boolean | undefined;
1546
1561
  }[];
1547
1562
  encoding: "form-data" | "urlencoded";
1548
1563
  };
@@ -1561,10 +1576,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1561
1576
  required?: boolean | undefined;
1562
1577
  description?: string | undefined;
1563
1578
  enum?: string[] | undefined;
1579
+ nullable?: boolean | undefined;
1580
+ format?: string | undefined;
1564
1581
  file?: any;
1565
1582
  refUid?: string | undefined;
1566
- format?: string | undefined;
1567
- nullable?: boolean | undefined;
1568
1583
  }[];
1569
1584
  query: {
1570
1585
  value: string;
@@ -1577,10 +1592,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1577
1592
  required?: boolean | undefined;
1578
1593
  description?: string | undefined;
1579
1594
  enum?: string[] | undefined;
1595
+ nullable?: boolean | undefined;
1596
+ format?: string | undefined;
1580
1597
  file?: any;
1581
1598
  refUid?: string | undefined;
1582
- format?: string | undefined;
1583
- nullable?: boolean | undefined;
1584
1599
  }[];
1585
1600
  headers: {
1586
1601
  value: string;
@@ -1593,10 +1608,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1593
1608
  required?: boolean | undefined;
1594
1609
  description?: string | undefined;
1595
1610
  enum?: string[] | undefined;
1611
+ nullable?: boolean | undefined;
1612
+ format?: string | undefined;
1596
1613
  file?: any;
1597
1614
  refUid?: string | undefined;
1598
- format?: string | undefined;
1599
- nullable?: boolean | undefined;
1600
1615
  }[];
1601
1616
  cookies: {
1602
1617
  value: string;
@@ -1609,15 +1624,15 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1609
1624
  required?: boolean | undefined;
1610
1625
  description?: string | undefined;
1611
1626
  enum?: string[] | undefined;
1627
+ nullable?: boolean | undefined;
1628
+ format?: string | undefined;
1612
1629
  file?: any;
1613
1630
  refUid?: string | undefined;
1614
- format?: string | undefined;
1615
- nullable?: boolean | undefined;
1616
1631
  }[];
1617
1632
  };
1618
1633
  auth: Record<string, any>;
1619
1634
  }) => 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" ? {
1635
+ 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}.format` | `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}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.format` | `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}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.format` | `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}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.format` | `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}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.format` | `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
1636
  uid: string;
1622
1637
  name: string;
1623
1638
  url: string;
@@ -1625,7 +1640,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1625
1640
  body: {
1626
1641
  raw: {
1627
1642
  value: string;
1628
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1643
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1629
1644
  };
1630
1645
  formData: {
1631
1646
  value: {
@@ -1639,10 +1654,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1639
1654
  required?: boolean | undefined;
1640
1655
  description?: string | undefined;
1641
1656
  enum?: string[] | undefined;
1657
+ nullable?: boolean | undefined;
1658
+ format?: string | undefined;
1642
1659
  file?: any;
1643
1660
  refUid?: string | undefined;
1644
- format?: string | undefined;
1645
- nullable?: boolean | undefined;
1646
1661
  }[];
1647
1662
  encoding: "form-data" | "urlencoded";
1648
1663
  };
@@ -1661,10 +1676,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1661
1676
  required?: boolean | undefined;
1662
1677
  description?: string | undefined;
1663
1678
  enum?: string[] | undefined;
1679
+ nullable?: boolean | undefined;
1680
+ format?: string | undefined;
1664
1681
  file?: any;
1665
1682
  refUid?: string | undefined;
1666
- format?: string | undefined;
1667
- nullable?: boolean | undefined;
1668
1683
  }[];
1669
1684
  query: {
1670
1685
  value: string;
@@ -1677,10 +1692,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1677
1692
  required?: boolean | undefined;
1678
1693
  description?: string | undefined;
1679
1694
  enum?: string[] | undefined;
1695
+ nullable?: boolean | undefined;
1696
+ format?: string | undefined;
1680
1697
  file?: any;
1681
1698
  refUid?: string | undefined;
1682
- format?: string | undefined;
1683
- nullable?: boolean | undefined;
1684
1699
  }[];
1685
1700
  headers: {
1686
1701
  value: string;
@@ -1693,10 +1708,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1693
1708
  required?: boolean | undefined;
1694
1709
  description?: string | undefined;
1695
1710
  enum?: string[] | undefined;
1711
+ nullable?: boolean | undefined;
1712
+ format?: string | undefined;
1696
1713
  file?: any;
1697
1714
  refUid?: string | undefined;
1698
- format?: string | undefined;
1699
- nullable?: boolean | undefined;
1700
1715
  }[];
1701
1716
  cookies: {
1702
1717
  value: string;
@@ -1709,10 +1724,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1709
1724
  required?: boolean | undefined;
1710
1725
  description?: string | undefined;
1711
1726
  enum?: string[] | undefined;
1727
+ nullable?: boolean | undefined;
1728
+ format?: string | undefined;
1712
1729
  file?: any;
1713
1730
  refUid?: string | undefined;
1714
- format?: string | undefined;
1715
- nullable?: boolean | undefined;
1716
1731
  }[];
1717
1732
  };
1718
1733
  auth: Record<string, any>;
@@ -1724,7 +1739,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1724
1739
  body: {
1725
1740
  raw: {
1726
1741
  value: string;
1727
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1742
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1728
1743
  };
1729
1744
  formData: {
1730
1745
  value: {
@@ -1738,10 +1753,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1738
1753
  required?: boolean | undefined;
1739
1754
  description?: string | undefined;
1740
1755
  enum?: string[] | undefined;
1756
+ nullable?: boolean | undefined;
1757
+ format?: string | undefined;
1741
1758
  file?: any;
1742
1759
  refUid?: string | undefined;
1743
- format?: string | undefined;
1744
- nullable?: boolean | undefined;
1745
1760
  }[];
1746
1761
  encoding: "form-data" | "urlencoded";
1747
1762
  };
@@ -1760,10 +1775,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1760
1775
  required?: boolean | undefined;
1761
1776
  description?: string | undefined;
1762
1777
  enum?: string[] | undefined;
1778
+ nullable?: boolean | undefined;
1779
+ format?: string | undefined;
1763
1780
  file?: any;
1764
1781
  refUid?: string | undefined;
1765
- format?: string | undefined;
1766
- nullable?: boolean | undefined;
1767
1782
  }[];
1768
1783
  query: {
1769
1784
  value: string;
@@ -1776,10 +1791,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1776
1791
  required?: boolean | undefined;
1777
1792
  description?: string | undefined;
1778
1793
  enum?: string[] | undefined;
1794
+ nullable?: boolean | undefined;
1795
+ format?: string | undefined;
1779
1796
  file?: any;
1780
1797
  refUid?: string | undefined;
1781
- format?: string | undefined;
1782
- nullable?: boolean | undefined;
1783
1798
  }[];
1784
1799
  headers: {
1785
1800
  value: string;
@@ -1792,10 +1807,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1792
1807
  required?: boolean | undefined;
1793
1808
  description?: string | undefined;
1794
1809
  enum?: string[] | undefined;
1810
+ nullable?: boolean | undefined;
1811
+ format?: string | undefined;
1795
1812
  file?: any;
1796
1813
  refUid?: string | undefined;
1797
- format?: string | undefined;
1798
- nullable?: boolean | undefined;
1799
1814
  }[];
1800
1815
  cookies: {
1801
1816
  value: string;
@@ -1808,10 +1823,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1808
1823
  required?: boolean | undefined;
1809
1824
  description?: string | undefined;
1810
1825
  enum?: string[] | undefined;
1826
+ nullable?: boolean | undefined;
1827
+ format?: string | undefined;
1811
1828
  file?: any;
1812
1829
  refUid?: string | undefined;
1813
- format?: string | undefined;
1814
- nullable?: boolean | undefined;
1815
1830
  }[];
1816
1831
  };
1817
1832
  auth: Record<string, any>;
@@ -1823,7 +1838,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1823
1838
  body: {
1824
1839
  raw: {
1825
1840
  value: string;
1826
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1841
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1827
1842
  };
1828
1843
  formData: {
1829
1844
  value: {
@@ -1837,10 +1852,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1837
1852
  required?: boolean | undefined;
1838
1853
  description?: string | undefined;
1839
1854
  enum?: string[] | undefined;
1855
+ nullable?: boolean | undefined;
1856
+ format?: string | undefined;
1840
1857
  file?: any;
1841
1858
  refUid?: string | undefined;
1842
- format?: string | undefined;
1843
- nullable?: boolean | undefined;
1844
1859
  }[];
1845
1860
  encoding: "form-data" | "urlencoded";
1846
1861
  };
@@ -1859,10 +1874,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1859
1874
  required?: boolean | undefined;
1860
1875
  description?: string | undefined;
1861
1876
  enum?: string[] | undefined;
1877
+ nullable?: boolean | undefined;
1878
+ format?: string | undefined;
1862
1879
  file?: any;
1863
1880
  refUid?: string | undefined;
1864
- format?: string | undefined;
1865
- nullable?: boolean | undefined;
1866
1881
  }[];
1867
1882
  query: {
1868
1883
  value: string;
@@ -1875,10 +1890,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1875
1890
  required?: boolean | undefined;
1876
1891
  description?: string | undefined;
1877
1892
  enum?: string[] | undefined;
1893
+ nullable?: boolean | undefined;
1894
+ format?: string | undefined;
1878
1895
  file?: any;
1879
1896
  refUid?: string | undefined;
1880
- format?: string | undefined;
1881
- nullable?: boolean | undefined;
1882
1897
  }[];
1883
1898
  headers: {
1884
1899
  value: string;
@@ -1891,10 +1906,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1891
1906
  required?: boolean | undefined;
1892
1907
  description?: string | undefined;
1893
1908
  enum?: string[] | undefined;
1909
+ nullable?: boolean | undefined;
1910
+ format?: string | undefined;
1894
1911
  file?: any;
1895
1912
  refUid?: string | undefined;
1896
- format?: string | undefined;
1897
- nullable?: boolean | undefined;
1898
1913
  }[];
1899
1914
  cookies: {
1900
1915
  value: string;
@@ -1907,15 +1922,15 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1907
1922
  required?: boolean | undefined;
1908
1923
  description?: string | undefined;
1909
1924
  enum?: string[] | undefined;
1925
+ nullable?: boolean | undefined;
1926
+ format?: string | undefined;
1910
1927
  file?: any;
1911
1928
  refUid?: string | undefined;
1912
- format?: string | undefined;
1913
- nullable?: boolean | undefined;
1914
1929
  }[];
1915
1930
  };
1916
1931
  auth: Record<string, any>;
1917
1932
  }[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" ? {
1933
+ 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}.format` | `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}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.format` | `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}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.format` | `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}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.format` | `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}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.format` | `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
1934
  uid: string;
1920
1935
  name: string;
1921
1936
  url: string;
@@ -1923,7 +1938,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1923
1938
  body: {
1924
1939
  raw: {
1925
1940
  value: string;
1926
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1941
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1927
1942
  };
1928
1943
  formData: {
1929
1944
  value: {
@@ -1937,10 +1952,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1937
1952
  required?: boolean | undefined;
1938
1953
  description?: string | undefined;
1939
1954
  enum?: string[] | undefined;
1955
+ nullable?: boolean | undefined;
1956
+ format?: string | undefined;
1940
1957
  file?: any;
1941
1958
  refUid?: string | undefined;
1942
- format?: string | undefined;
1943
- nullable?: boolean | undefined;
1944
1959
  }[];
1945
1960
  encoding: "form-data" | "urlencoded";
1946
1961
  };
@@ -1959,10 +1974,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1959
1974
  required?: boolean | undefined;
1960
1975
  description?: string | undefined;
1961
1976
  enum?: string[] | undefined;
1977
+ nullable?: boolean | undefined;
1978
+ format?: string | undefined;
1962
1979
  file?: any;
1963
1980
  refUid?: string | undefined;
1964
- format?: string | undefined;
1965
- nullable?: boolean | undefined;
1966
1981
  }[];
1967
1982
  query: {
1968
1983
  value: string;
@@ -1975,10 +1990,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1975
1990
  required?: boolean | undefined;
1976
1991
  description?: string | undefined;
1977
1992
  enum?: string[] | undefined;
1993
+ nullable?: boolean | undefined;
1994
+ format?: string | undefined;
1978
1995
  file?: any;
1979
1996
  refUid?: string | undefined;
1980
- format?: string | undefined;
1981
- nullable?: boolean | undefined;
1982
1997
  }[];
1983
1998
  headers: {
1984
1999
  value: string;
@@ -1991,10 +2006,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
1991
2006
  required?: boolean | undefined;
1992
2007
  description?: string | undefined;
1993
2008
  enum?: string[] | undefined;
2009
+ nullable?: boolean | undefined;
2010
+ format?: string | undefined;
1994
2011
  file?: any;
1995
2012
  refUid?: string | undefined;
1996
- format?: string | undefined;
1997
- nullable?: boolean | undefined;
1998
2013
  }[];
1999
2014
  cookies: {
2000
2015
  value: string;
@@ -2007,10 +2022,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2007
2022
  required?: boolean | undefined;
2008
2023
  description?: string | undefined;
2009
2024
  enum?: string[] | undefined;
2025
+ nullable?: boolean | undefined;
2026
+ format?: string | undefined;
2010
2027
  file?: any;
2011
2028
  refUid?: string | undefined;
2012
- format?: string | undefined;
2013
- nullable?: boolean | undefined;
2014
2029
  }[];
2015
2030
  };
2016
2031
  auth: Record<string, any>;
@@ -2022,7 +2037,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2022
2037
  body: {
2023
2038
  raw: {
2024
2039
  value: string;
2025
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
2040
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
2026
2041
  };
2027
2042
  formData: {
2028
2043
  value: {
@@ -2036,10 +2051,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2036
2051
  required?: boolean | undefined;
2037
2052
  description?: string | undefined;
2038
2053
  enum?: string[] | undefined;
2054
+ nullable?: boolean | undefined;
2055
+ format?: string | undefined;
2039
2056
  file?: any;
2040
2057
  refUid?: string | undefined;
2041
- format?: string | undefined;
2042
- nullable?: boolean | undefined;
2043
2058
  }[];
2044
2059
  encoding: "form-data" | "urlencoded";
2045
2060
  };
@@ -2058,10 +2073,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2058
2073
  required?: boolean | undefined;
2059
2074
  description?: string | undefined;
2060
2075
  enum?: string[] | undefined;
2076
+ nullable?: boolean | undefined;
2077
+ format?: string | undefined;
2061
2078
  file?: any;
2062
2079
  refUid?: string | undefined;
2063
- format?: string | undefined;
2064
- nullable?: boolean | undefined;
2065
2080
  }[];
2066
2081
  query: {
2067
2082
  value: string;
@@ -2074,10 +2089,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2074
2089
  required?: boolean | undefined;
2075
2090
  description?: string | undefined;
2076
2091
  enum?: string[] | undefined;
2092
+ nullable?: boolean | undefined;
2093
+ format?: string | undefined;
2077
2094
  file?: any;
2078
2095
  refUid?: string | undefined;
2079
- format?: string | undefined;
2080
- nullable?: boolean | undefined;
2081
2096
  }[];
2082
2097
  headers: {
2083
2098
  value: string;
@@ -2090,10 +2105,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2090
2105
  required?: boolean | undefined;
2091
2106
  description?: string | undefined;
2092
2107
  enum?: string[] | undefined;
2108
+ nullable?: boolean | undefined;
2109
+ format?: string | undefined;
2093
2110
  file?: any;
2094
2111
  refUid?: string | undefined;
2095
- format?: string | undefined;
2096
- nullable?: boolean | undefined;
2097
2112
  }[];
2098
2113
  cookies: {
2099
2114
  value: string;
@@ -2106,10 +2121,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2106
2121
  required?: boolean | undefined;
2107
2122
  description?: string | undefined;
2108
2123
  enum?: string[] | undefined;
2124
+ nullable?: boolean | undefined;
2125
+ format?: string | undefined;
2109
2126
  file?: any;
2110
2127
  refUid?: string | undefined;
2111
- format?: string | undefined;
2112
- nullable?: boolean | undefined;
2113
2128
  }[];
2114
2129
  };
2115
2130
  auth: Record<string, any>;
@@ -2121,7 +2136,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2121
2136
  body: {
2122
2137
  raw: {
2123
2138
  value: string;
2124
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
2139
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
2125
2140
  };
2126
2141
  formData: {
2127
2142
  value: {
@@ -2135,10 +2150,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2135
2150
  required?: boolean | undefined;
2136
2151
  description?: string | undefined;
2137
2152
  enum?: string[] | undefined;
2153
+ nullable?: boolean | undefined;
2154
+ format?: string | undefined;
2138
2155
  file?: any;
2139
2156
  refUid?: string | undefined;
2140
- format?: string | undefined;
2141
- nullable?: boolean | undefined;
2142
2157
  }[];
2143
2158
  encoding: "form-data" | "urlencoded";
2144
2159
  };
@@ -2157,10 +2172,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2157
2172
  required?: boolean | undefined;
2158
2173
  description?: string | undefined;
2159
2174
  enum?: string[] | undefined;
2175
+ nullable?: boolean | undefined;
2176
+ format?: string | undefined;
2160
2177
  file?: any;
2161
2178
  refUid?: string | undefined;
2162
- format?: string | undefined;
2163
- nullable?: boolean | undefined;
2164
2179
  }[];
2165
2180
  query: {
2166
2181
  value: string;
@@ -2173,10 +2188,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2173
2188
  required?: boolean | undefined;
2174
2189
  description?: string | undefined;
2175
2190
  enum?: string[] | undefined;
2191
+ nullable?: boolean | undefined;
2192
+ format?: string | undefined;
2176
2193
  file?: any;
2177
2194
  refUid?: string | undefined;
2178
- format?: string | undefined;
2179
- nullable?: boolean | undefined;
2180
2195
  }[];
2181
2196
  headers: {
2182
2197
  value: string;
@@ -2189,10 +2204,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2189
2204
  required?: boolean | undefined;
2190
2205
  description?: string | undefined;
2191
2206
  enum?: string[] | undefined;
2207
+ nullable?: boolean | undefined;
2208
+ format?: string | undefined;
2192
2209
  file?: any;
2193
2210
  refUid?: string | undefined;
2194
- format?: string | undefined;
2195
- nullable?: boolean | undefined;
2196
2211
  }[];
2197
2212
  cookies: {
2198
2213
  value: string;
@@ -2205,10 +2220,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2205
2220
  required?: boolean | undefined;
2206
2221
  description?: string | undefined;
2207
2222
  enum?: string[] | undefined;
2223
+ nullable?: boolean | undefined;
2224
+ format?: string | undefined;
2208
2225
  file?: any;
2209
2226
  refUid?: string | undefined;
2210
- format?: string | undefined;
2211
- nullable?: boolean | undefined;
2212
2227
  }[];
2213
2228
  };
2214
2229
  auth: Record<string, any>;
@@ -2864,6 +2879,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2864
2879
  isReadOnly: boolean;
2865
2880
  collectionUids: string[];
2866
2881
  environmentUids: string[];
2882
+ activeEnvironmentId: string;
2867
2883
  cookieUids: string[];
2868
2884
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2869
2885
  hotKeyConfig?: {
@@ -2882,6 +2898,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2882
2898
  isReadOnly: boolean;
2883
2899
  collectionUids: string[];
2884
2900
  environmentUids: string[];
2901
+ activeEnvironmentId: string;
2885
2902
  cookieUids: string[];
2886
2903
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2887
2904
  hotKeyConfig?: {
@@ -2902,6 +2919,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2902
2919
  isReadOnly: boolean;
2903
2920
  collectionUids: string[];
2904
2921
  environmentUids: string[];
2922
+ activeEnvironmentId: string;
2905
2923
  cookieUids: string[];
2906
2924
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2907
2925
  hotKeyConfig?: {
@@ -2913,13 +2931,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2913
2931
  } | undefined;
2914
2932
  proxyUrl?: string | undefined;
2915
2933
  }) => 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.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" ? {
2934
+ edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `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.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "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.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.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.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.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.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.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.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">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
2917
2935
  uid: string;
2918
2936
  name: string;
2919
2937
  description: string;
2920
2938
  isReadOnly: boolean;
2921
2939
  collectionUids: string[];
2922
2940
  environmentUids: string[];
2941
+ activeEnvironmentId: string;
2923
2942
  cookieUids: string[];
2924
2943
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2925
2944
  hotKeyConfig?: {
@@ -2930,13 +2949,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2930
2949
  }>> | undefined;
2931
2950
  } | undefined;
2932
2951
  proxyUrl?: string | undefined;
2933
- }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
2952
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
2934
2953
  uid: string;
2935
2954
  name: string;
2936
2955
  description: string;
2937
2956
  isReadOnly: boolean;
2938
2957
  collectionUids: string[];
2939
2958
  environmentUids: string[];
2959
+ activeEnvironmentId: string;
2940
2960
  cookieUids: string[];
2941
2961
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2942
2962
  hotKeyConfig?: {
@@ -2954,6 +2974,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2954
2974
  isReadOnly: boolean;
2955
2975
  collectionUids: string[];
2956
2976
  environmentUids: string[];
2977
+ activeEnvironmentId: string;
2957
2978
  cookieUids: string[];
2958
2979
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2959
2980
  hotKeyConfig?: {
@@ -2965,13 +2986,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2965
2986
  } | undefined;
2966
2987
  proxyUrl?: string | undefined;
2967
2988
  }[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.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" ? {
2989
+ untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.modifiers" | "hotKeyConfig.hotKeys" | `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.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "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.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.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.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.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.z.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.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.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">(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
2969
2990
  uid: string;
2970
2991
  name: string;
2971
2992
  description: string;
2972
2993
  isReadOnly: boolean;
2973
2994
  collectionUids: string[];
2974
2995
  environmentUids: string[];
2996
+ activeEnvironmentId: string;
2975
2997
  cookieUids: string[];
2976
2998
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2977
2999
  hotKeyConfig?: {
@@ -2982,13 +3004,14 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
2982
3004
  }>> | undefined;
2983
3005
  } | undefined;
2984
3006
  proxyUrl?: string | undefined;
2985
- }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
3007
+ }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
2986
3008
  uid: string;
2987
3009
  name: string;
2988
3010
  description: string;
2989
3011
  isReadOnly: boolean;
2990
3012
  collectionUids: string[];
2991
3013
  environmentUids: string[];
3014
+ activeEnvironmentId: string;
2992
3015
  cookieUids: string[];
2993
3016
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2994
3017
  hotKeyConfig?: {
@@ -3006,6 +3029,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
3006
3029
  isReadOnly: boolean;
3007
3030
  collectionUids: string[];
3008
3031
  environmentUids: string[];
3032
+ activeEnvironmentId: string;
3009
3033
  cookieUids: string[];
3010
3034
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
3011
3035
  hotKeyConfig?: {