@scalar/api-client 2.0.60 → 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 (44) hide show
  1. package/CHANGELOG.md +34 -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/layouts/App/create-api-client-app.d.ts +153 -129
  11. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  12. package/dist/layouts/Modal/create-api-client-modal.d.ts +306 -258
  13. package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
  14. package/dist/libs/create-client.d.ts +153 -129
  15. package/dist/libs/create-client.d.ts.map +1 -1
  16. package/dist/libs/event-busses/hot-keys-bus.d.ts +1 -1
  17. package/dist/libs/local-storage.js +1 -1
  18. package/dist/libs/normalizeHeaders.d.ts +1 -2
  19. package/dist/libs/normalizeHeaders.d.ts.map +1 -1
  20. package/dist/libs/sendRequest.d.ts +4 -5
  21. package/dist/libs/sendRequest.d.ts.map +1 -1
  22. package/dist/libs/sendRequest.js +104 -86
  23. package/dist/store/workspace.d.ts +302 -257
  24. package/dist/store/workspace.d.ts.map +1 -1
  25. package/dist/store/workspace.js +219 -216
  26. package/dist/style.css +1 -1
  27. package/dist/views/Environment/Environment.vue2.js +12 -12
  28. package/dist/views/Environment/EnvironmentVariableDropdown.vue.d.ts.map +1 -1
  29. package/dist/views/Environment/EnvironmentVariableDropdown.vue.js +54 -52
  30. package/dist/views/Request/Request.vue.d.ts.map +1 -1
  31. package/dist/views/Request/Request.vue.js +4 -4
  32. package/dist/views/Request/Request.vue2.js +91 -89
  33. package/dist/views/Request/RequestSection/RequestTable.vue.d.ts.map +1 -1
  34. package/dist/views/Request/RequestSection/RequestTable.vue.js +2 -2
  35. package/dist/views/Request/RequestSection/RequestTable.vue2.js +1 -1
  36. package/dist/views/Request/RequestSidebarItem.vue.d.ts.map +1 -1
  37. package/dist/views/Request/RequestSidebarItem.vue.js +2 -2
  38. package/dist/views/Request/RequestSidebarItem.vue2.js +82 -80
  39. package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts +2 -2
  40. package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts.map +1 -1
  41. package/dist/views/Request/ResponseSection/ResponseBody.vue.js +20 -20
  42. package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts.map +1 -1
  43. package/dist/views/Request/ResponseSection/ResponseSection.vue.js +47 -42
  44. package/package.json +9 -9
@@ -24,6 +24,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
24
24
  isReadOnly: boolean;
25
25
  collectionUids: string[];
26
26
  environmentUids: string[];
27
+ activeEnvironmentId: string;
27
28
  cookieUids: string[];
28
29
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
29
30
  hotKeyConfig?: {
@@ -113,7 +114,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
113
114
  body: {
114
115
  raw: {
115
116
  value: string;
116
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
117
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
117
118
  };
118
119
  formData: {
119
120
  value: {
@@ -127,10 +128,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
127
128
  required?: boolean | undefined;
128
129
  description?: string | undefined;
129
130
  enum?: string[] | undefined;
131
+ nullable?: boolean | undefined;
132
+ format?: string | undefined;
130
133
  file?: any;
131
134
  refUid?: string | undefined;
132
- format?: string | undefined;
133
- nullable?: boolean | undefined;
134
135
  }[];
135
136
  encoding: "form-data" | "urlencoded";
136
137
  };
@@ -149,10 +150,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
149
150
  required?: boolean | undefined;
150
151
  description?: string | undefined;
151
152
  enum?: string[] | undefined;
153
+ nullable?: boolean | undefined;
154
+ format?: string | undefined;
152
155
  file?: any;
153
156
  refUid?: string | undefined;
154
- format?: string | undefined;
155
- nullable?: boolean | undefined;
156
157
  }[];
157
158
  query: {
158
159
  value: string;
@@ -165,10 +166,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
165
166
  required?: boolean | undefined;
166
167
  description?: string | undefined;
167
168
  enum?: string[] | undefined;
169
+ nullable?: boolean | undefined;
170
+ format?: string | undefined;
168
171
  file?: any;
169
172
  refUid?: string | undefined;
170
- format?: string | undefined;
171
- nullable?: boolean | undefined;
172
173
  }[];
173
174
  headers: {
174
175
  value: string;
@@ -181,10 +182,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
181
182
  required?: boolean | undefined;
182
183
  description?: string | undefined;
183
184
  enum?: string[] | undefined;
185
+ nullable?: boolean | undefined;
186
+ format?: string | undefined;
184
187
  file?: any;
185
188
  refUid?: string | undefined;
186
- format?: string | undefined;
187
- nullable?: boolean | undefined;
188
189
  }[];
189
190
  cookies: {
190
191
  value: string;
@@ -197,10 +198,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
197
198
  required?: boolean | undefined;
198
199
  description?: string | undefined;
199
200
  enum?: string[] | undefined;
201
+ nullable?: boolean | undefined;
202
+ format?: string | undefined;
200
203
  file?: any;
201
204
  refUid?: string | undefined;
202
- format?: string | undefined;
203
- nullable?: boolean | undefined;
204
205
  }[];
205
206
  };
206
207
  auth: Record<string, any>;
@@ -334,7 +335,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
334
335
  body: {
335
336
  raw: {
336
337
  value: string;
337
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
338
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
338
339
  };
339
340
  formData: {
340
341
  value: {
@@ -348,10 +349,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
348
349
  required?: boolean | undefined;
349
350
  description?: string | undefined;
350
351
  enum?: string[] | undefined;
352
+ nullable?: boolean | undefined;
353
+ format?: string | undefined;
351
354
  file?: any;
352
355
  refUid?: string | undefined;
353
- format?: string | undefined;
354
- nullable?: boolean | undefined;
355
356
  }[];
356
357
  encoding: "form-data" | "urlencoded";
357
358
  };
@@ -370,10 +371,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
370
371
  required?: boolean | undefined;
371
372
  description?: string | undefined;
372
373
  enum?: string[] | undefined;
374
+ nullable?: boolean | undefined;
375
+ format?: string | undefined;
373
376
  file?: any;
374
377
  refUid?: string | undefined;
375
- format?: string | undefined;
376
- nullable?: boolean | undefined;
377
378
  }[];
378
379
  query: {
379
380
  value: string;
@@ -386,10 +387,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
386
387
  required?: boolean | undefined;
387
388
  description?: string | undefined;
388
389
  enum?: string[] | undefined;
390
+ nullable?: boolean | undefined;
391
+ format?: string | undefined;
389
392
  file?: any;
390
393
  refUid?: string | undefined;
391
- format?: string | undefined;
392
- nullable?: boolean | undefined;
393
394
  }[];
394
395
  headers: {
395
396
  value: string;
@@ -402,10 +403,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
402
403
  required?: boolean | undefined;
403
404
  description?: string | undefined;
404
405
  enum?: string[] | undefined;
406
+ nullable?: boolean | undefined;
407
+ format?: string | undefined;
405
408
  file?: any;
406
409
  refUid?: string | undefined;
407
- format?: string | undefined;
408
- nullable?: boolean | undefined;
409
410
  }[];
410
411
  cookies: {
411
412
  value: string;
@@ -418,10 +419,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
418
419
  required?: boolean | undefined;
419
420
  description?: string | undefined;
420
421
  enum?: string[] | undefined;
422
+ nullable?: boolean | undefined;
423
+ format?: string | undefined;
421
424
  file?: any;
422
425
  refUid?: string | undefined;
423
- format?: string | undefined;
424
- nullable?: boolean | undefined;
425
426
  }[];
426
427
  };
427
428
  auth: Record<string, any>;
@@ -524,6 +525,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
524
525
  isReadOnly: boolean;
525
526
  collectionUids: string[];
526
527
  environmentUids: string[];
528
+ activeEnvironmentId: string;
527
529
  cookieUids: string[];
528
530
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
529
531
  hotKeyConfig?: {
@@ -591,11 +593,22 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
591
593
  key: string;
592
594
  value: string;
593
595
  } | {
594
- _scalarEnvId: any;
596
+ _scalarEnvId: string;
595
597
  key: string;
596
598
  value: unknown;
597
599
  })[]>;
598
600
  activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
601
+ activeEnvironment: import("vue").ComputedRef<{
602
+ uid: string;
603
+ name: string;
604
+ color: string;
605
+ raw: string;
606
+ parsed: {
607
+ value: string;
608
+ key: string;
609
+ }[];
610
+ isDefault?: boolean | undefined;
611
+ }>;
599
612
  modalState: {
600
613
  open: boolean;
601
614
  show: () => void;
@@ -606,7 +619,9 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
606
619
  sidebarWidth: import("vue").Ref<string>;
607
620
  setSidebarWidth: (width: string) => void;
608
621
  findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
609
- importSpecFile: (_spec: string | import("@scalar/openapi-parser").AnyObject, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
622
+ importSpecFile: (_spec: string | {
623
+ [x: string]: any;
624
+ }, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
610
625
  importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
611
626
  cookieMutators: {
612
627
  add: (item: {
@@ -1262,7 +1277,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1262
1277
  body: {
1263
1278
  raw: {
1264
1279
  value: string;
1265
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1280
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1266
1281
  };
1267
1282
  formData: {
1268
1283
  value: {
@@ -1276,10 +1291,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1276
1291
  required?: boolean | undefined;
1277
1292
  description?: string | undefined;
1278
1293
  enum?: string[] | undefined;
1294
+ nullable?: boolean | undefined;
1295
+ format?: string | undefined;
1279
1296
  file?: any;
1280
1297
  refUid?: string | undefined;
1281
- format?: string | undefined;
1282
- nullable?: boolean | undefined;
1283
1298
  }[];
1284
1299
  encoding: "form-data" | "urlencoded";
1285
1300
  };
@@ -1298,10 +1313,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1298
1313
  required?: boolean | undefined;
1299
1314
  description?: string | undefined;
1300
1315
  enum?: string[] | undefined;
1316
+ nullable?: boolean | undefined;
1317
+ format?: string | undefined;
1301
1318
  file?: any;
1302
1319
  refUid?: string | undefined;
1303
- format?: string | undefined;
1304
- nullable?: boolean | undefined;
1305
1320
  }[];
1306
1321
  query: {
1307
1322
  value: string;
@@ -1314,10 +1329,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1314
1329
  required?: boolean | undefined;
1315
1330
  description?: string | undefined;
1316
1331
  enum?: string[] | undefined;
1332
+ nullable?: boolean | undefined;
1333
+ format?: string | undefined;
1317
1334
  file?: any;
1318
1335
  refUid?: string | undefined;
1319
- format?: string | undefined;
1320
- nullable?: boolean | undefined;
1321
1336
  }[];
1322
1337
  headers: {
1323
1338
  value: string;
@@ -1330,10 +1345,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1330
1345
  required?: boolean | undefined;
1331
1346
  description?: string | undefined;
1332
1347
  enum?: string[] | undefined;
1348
+ nullable?: boolean | undefined;
1349
+ format?: string | undefined;
1333
1350
  file?: any;
1334
1351
  refUid?: string | undefined;
1335
- format?: string | undefined;
1336
- nullable?: boolean | undefined;
1337
1352
  }[];
1338
1353
  cookies: {
1339
1354
  value: string;
@@ -1346,10 +1361,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1346
1361
  required?: boolean | undefined;
1347
1362
  description?: string | undefined;
1348
1363
  enum?: string[] | undefined;
1364
+ nullable?: boolean | undefined;
1365
+ format?: string | undefined;
1349
1366
  file?: any;
1350
1367
  refUid?: string | undefined;
1351
- format?: string | undefined;
1352
- nullable?: boolean | undefined;
1353
1368
  }[];
1354
1369
  };
1355
1370
  auth: Record<string, any>;
@@ -1362,7 +1377,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1362
1377
  body: {
1363
1378
  raw: {
1364
1379
  value: string;
1365
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1380
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1366
1381
  };
1367
1382
  formData: {
1368
1383
  value: {
@@ -1376,10 +1391,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
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
  encoding: "form-data" | "urlencoded";
1385
1400
  };
@@ -1398,10 +1413,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1398
1413
  required?: boolean | undefined;
1399
1414
  description?: string | undefined;
1400
1415
  enum?: string[] | undefined;
1416
+ nullable?: boolean | undefined;
1417
+ format?: string | undefined;
1401
1418
  file?: any;
1402
1419
  refUid?: string | undefined;
1403
- format?: string | undefined;
1404
- nullable?: boolean | undefined;
1405
1420
  }[];
1406
1421
  query: {
1407
1422
  value: string;
@@ -1414,10 +1429,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1414
1429
  required?: boolean | undefined;
1415
1430
  description?: string | undefined;
1416
1431
  enum?: string[] | undefined;
1432
+ nullable?: boolean | undefined;
1433
+ format?: string | undefined;
1417
1434
  file?: any;
1418
1435
  refUid?: string | undefined;
1419
- format?: string | undefined;
1420
- nullable?: boolean | undefined;
1421
1436
  }[];
1422
1437
  headers: {
1423
1438
  value: string;
@@ -1430,10 +1445,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1430
1445
  required?: boolean | undefined;
1431
1446
  description?: string | undefined;
1432
1447
  enum?: string[] | undefined;
1448
+ nullable?: boolean | undefined;
1449
+ format?: string | undefined;
1433
1450
  file?: any;
1434
1451
  refUid?: string | undefined;
1435
- format?: string | undefined;
1436
- nullable?: boolean | undefined;
1437
1452
  }[];
1438
1453
  cookies: {
1439
1454
  value: string;
@@ -1446,10 +1461,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1446
1461
  required?: boolean | undefined;
1447
1462
  description?: string | undefined;
1448
1463
  enum?: string[] | undefined;
1464
+ nullable?: boolean | undefined;
1465
+ format?: string | undefined;
1449
1466
  file?: any;
1450
1467
  refUid?: string | undefined;
1451
- format?: string | undefined;
1452
- nullable?: boolean | undefined;
1453
1468
  }[];
1454
1469
  };
1455
1470
  auth: Record<string, any>;
@@ -1463,7 +1478,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1463
1478
  body: {
1464
1479
  raw: {
1465
1480
  value: string;
1466
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1481
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1467
1482
  };
1468
1483
  formData: {
1469
1484
  value: {
@@ -1477,10 +1492,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1477
1492
  required?: boolean | undefined;
1478
1493
  description?: string | undefined;
1479
1494
  enum?: string[] | undefined;
1495
+ nullable?: boolean | undefined;
1496
+ format?: string | undefined;
1480
1497
  file?: any;
1481
1498
  refUid?: string | undefined;
1482
- format?: string | undefined;
1483
- nullable?: boolean | undefined;
1484
1499
  }[];
1485
1500
  encoding: "form-data" | "urlencoded";
1486
1501
  };
@@ -1499,10 +1514,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1499
1514
  required?: boolean | undefined;
1500
1515
  description?: string | undefined;
1501
1516
  enum?: string[] | undefined;
1517
+ nullable?: boolean | undefined;
1518
+ format?: string | undefined;
1502
1519
  file?: any;
1503
1520
  refUid?: string | undefined;
1504
- format?: string | undefined;
1505
- nullable?: boolean | undefined;
1506
1521
  }[];
1507
1522
  query: {
1508
1523
  value: string;
@@ -1515,10 +1530,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1515
1530
  required?: boolean | undefined;
1516
1531
  description?: string | undefined;
1517
1532
  enum?: string[] | undefined;
1533
+ nullable?: boolean | undefined;
1534
+ format?: string | undefined;
1518
1535
  file?: any;
1519
1536
  refUid?: string | undefined;
1520
- format?: string | undefined;
1521
- nullable?: boolean | undefined;
1522
1537
  }[];
1523
1538
  headers: {
1524
1539
  value: string;
@@ -1531,10 +1546,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1531
1546
  required?: boolean | undefined;
1532
1547
  description?: string | undefined;
1533
1548
  enum?: string[] | undefined;
1549
+ nullable?: boolean | undefined;
1550
+ format?: string | undefined;
1534
1551
  file?: any;
1535
1552
  refUid?: string | undefined;
1536
- format?: string | undefined;
1537
- nullable?: boolean | undefined;
1538
1553
  }[];
1539
1554
  cookies: {
1540
1555
  value: string;
@@ -1547,15 +1562,15 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1547
1562
  required?: boolean | undefined;
1548
1563
  description?: string | undefined;
1549
1564
  enum?: string[] | undefined;
1565
+ nullable?: boolean | undefined;
1566
+ format?: string | undefined;
1550
1567
  file?: any;
1551
1568
  refUid?: string | undefined;
1552
- format?: string | undefined;
1553
- nullable?: boolean | undefined;
1554
1569
  }[];
1555
1570
  };
1556
1571
  auth: Record<string, any>;
1557
1572
  }) => void;
1558
- edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
1573
+ 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" ? {
1559
1574
  uid: string;
1560
1575
  name: string;
1561
1576
  url: string;
@@ -1563,7 +1578,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1563
1578
  body: {
1564
1579
  raw: {
1565
1580
  value: string;
1566
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1581
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1567
1582
  };
1568
1583
  formData: {
1569
1584
  value: {
@@ -1577,10 +1592,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
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
  encoding: "form-data" | "urlencoded";
1586
1601
  };
@@ -1599,10 +1614,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1599
1614
  required?: boolean | undefined;
1600
1615
  description?: string | undefined;
1601
1616
  enum?: string[] | undefined;
1617
+ nullable?: boolean | undefined;
1618
+ format?: string | undefined;
1602
1619
  file?: any;
1603
1620
  refUid?: string | undefined;
1604
- format?: string | undefined;
1605
- nullable?: boolean | undefined;
1606
1621
  }[];
1607
1622
  query: {
1608
1623
  value: string;
@@ -1615,10 +1630,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1615
1630
  required?: boolean | undefined;
1616
1631
  description?: string | undefined;
1617
1632
  enum?: string[] | undefined;
1633
+ nullable?: boolean | undefined;
1634
+ format?: string | undefined;
1618
1635
  file?: any;
1619
1636
  refUid?: string | undefined;
1620
- format?: string | undefined;
1621
- nullable?: boolean | undefined;
1622
1637
  }[];
1623
1638
  headers: {
1624
1639
  value: string;
@@ -1631,10 +1646,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1631
1646
  required?: boolean | undefined;
1632
1647
  description?: string | undefined;
1633
1648
  enum?: string[] | undefined;
1649
+ nullable?: boolean | undefined;
1650
+ format?: string | undefined;
1634
1651
  file?: any;
1635
1652
  refUid?: string | undefined;
1636
- format?: string | undefined;
1637
- nullable?: boolean | undefined;
1638
1653
  }[];
1639
1654
  cookies: {
1640
1655
  value: string;
@@ -1647,10 +1662,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1647
1662
  required?: boolean | undefined;
1648
1663
  description?: string | undefined;
1649
1664
  enum?: string[] | undefined;
1665
+ nullable?: boolean | undefined;
1666
+ format?: string | undefined;
1650
1667
  file?: any;
1651
1668
  refUid?: string | undefined;
1652
- format?: string | undefined;
1653
- nullable?: boolean | undefined;
1654
1669
  }[];
1655
1670
  };
1656
1671
  auth: Record<string, any>;
@@ -1662,7 +1677,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1662
1677
  body: {
1663
1678
  raw: {
1664
1679
  value: string;
1665
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1680
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1666
1681
  };
1667
1682
  formData: {
1668
1683
  value: {
@@ -1676,10 +1691,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1676
1691
  required?: boolean | undefined;
1677
1692
  description?: string | undefined;
1678
1693
  enum?: string[] | undefined;
1694
+ nullable?: boolean | undefined;
1695
+ format?: string | undefined;
1679
1696
  file?: any;
1680
1697
  refUid?: string | undefined;
1681
- format?: string | undefined;
1682
- nullable?: boolean | undefined;
1683
1698
  }[];
1684
1699
  encoding: "form-data" | "urlencoded";
1685
1700
  };
@@ -1698,10 +1713,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1698
1713
  required?: boolean | undefined;
1699
1714
  description?: string | undefined;
1700
1715
  enum?: string[] | undefined;
1716
+ nullable?: boolean | undefined;
1717
+ format?: string | undefined;
1701
1718
  file?: any;
1702
1719
  refUid?: string | undefined;
1703
- format?: string | undefined;
1704
- nullable?: boolean | undefined;
1705
1720
  }[];
1706
1721
  query: {
1707
1722
  value: string;
@@ -1714,10 +1729,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1714
1729
  required?: boolean | undefined;
1715
1730
  description?: string | undefined;
1716
1731
  enum?: string[] | undefined;
1732
+ nullable?: boolean | undefined;
1733
+ format?: string | undefined;
1717
1734
  file?: any;
1718
1735
  refUid?: string | undefined;
1719
- format?: string | undefined;
1720
- nullable?: boolean | undefined;
1721
1736
  }[];
1722
1737
  headers: {
1723
1738
  value: string;
@@ -1730,10 +1745,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1730
1745
  required?: boolean | undefined;
1731
1746
  description?: string | undefined;
1732
1747
  enum?: string[] | undefined;
1748
+ nullable?: boolean | undefined;
1749
+ format?: string | undefined;
1733
1750
  file?: any;
1734
1751
  refUid?: string | undefined;
1735
- format?: string | undefined;
1736
- nullable?: boolean | undefined;
1737
1752
  }[];
1738
1753
  cookies: {
1739
1754
  value: string;
@@ -1746,10 +1761,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1746
1761
  required?: boolean | undefined;
1747
1762
  description?: string | undefined;
1748
1763
  enum?: string[] | undefined;
1764
+ nullable?: boolean | undefined;
1765
+ format?: string | undefined;
1749
1766
  file?: any;
1750
1767
  refUid?: string | undefined;
1751
- format?: string | undefined;
1752
- nullable?: boolean | undefined;
1753
1768
  }[];
1754
1769
  };
1755
1770
  auth: Record<string, any>;
@@ -1761,7 +1776,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1761
1776
  body: {
1762
1777
  raw: {
1763
1778
  value: string;
1764
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1779
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1765
1780
  };
1766
1781
  formData: {
1767
1782
  value: {
@@ -1775,10 +1790,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1775
1790
  required?: boolean | undefined;
1776
1791
  description?: string | undefined;
1777
1792
  enum?: string[] | undefined;
1793
+ nullable?: boolean | undefined;
1794
+ format?: string | undefined;
1778
1795
  file?: any;
1779
1796
  refUid?: string | undefined;
1780
- format?: string | undefined;
1781
- nullable?: boolean | undefined;
1782
1797
  }[];
1783
1798
  encoding: "form-data" | "urlencoded";
1784
1799
  };
@@ -1797,10 +1812,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1797
1812
  required?: boolean | undefined;
1798
1813
  description?: string | undefined;
1799
1814
  enum?: string[] | undefined;
1815
+ nullable?: boolean | undefined;
1816
+ format?: string | undefined;
1800
1817
  file?: any;
1801
1818
  refUid?: string | undefined;
1802
- format?: string | undefined;
1803
- nullable?: boolean | undefined;
1804
1819
  }[];
1805
1820
  query: {
1806
1821
  value: string;
@@ -1813,10 +1828,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1813
1828
  required?: boolean | undefined;
1814
1829
  description?: string | undefined;
1815
1830
  enum?: string[] | undefined;
1831
+ nullable?: boolean | undefined;
1832
+ format?: string | undefined;
1816
1833
  file?: any;
1817
1834
  refUid?: string | undefined;
1818
- format?: string | undefined;
1819
- nullable?: boolean | undefined;
1820
1835
  }[];
1821
1836
  headers: {
1822
1837
  value: string;
@@ -1829,10 +1844,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1829
1844
  required?: boolean | undefined;
1830
1845
  description?: string | undefined;
1831
1846
  enum?: string[] | undefined;
1847
+ nullable?: boolean | undefined;
1848
+ format?: string | undefined;
1832
1849
  file?: any;
1833
1850
  refUid?: string | undefined;
1834
- format?: string | undefined;
1835
- nullable?: boolean | undefined;
1836
1851
  }[];
1837
1852
  cookies: {
1838
1853
  value: string;
@@ -1845,15 +1860,15 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1845
1860
  required?: boolean | undefined;
1846
1861
  description?: string | undefined;
1847
1862
  enum?: string[] | undefined;
1863
+ nullable?: boolean | undefined;
1864
+ format?: string | undefined;
1848
1865
  file?: any;
1849
1866
  refUid?: string | undefined;
1850
- format?: string | undefined;
1851
- nullable?: boolean | undefined;
1852
1867
  }[];
1853
1868
  };
1854
1869
  auth: Record<string, any>;
1855
1870
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
1856
- untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
1871
+ 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" ? {
1857
1872
  uid: string;
1858
1873
  name: string;
1859
1874
  url: string;
@@ -1861,7 +1876,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1861
1876
  body: {
1862
1877
  raw: {
1863
1878
  value: string;
1864
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1879
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1865
1880
  };
1866
1881
  formData: {
1867
1882
  value: {
@@ -1875,10 +1890,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
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
  encoding: "form-data" | "urlencoded";
1884
1899
  };
@@ -1897,10 +1912,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1897
1912
  required?: boolean | undefined;
1898
1913
  description?: string | undefined;
1899
1914
  enum?: string[] | undefined;
1915
+ nullable?: boolean | undefined;
1916
+ format?: string | undefined;
1900
1917
  file?: any;
1901
1918
  refUid?: string | undefined;
1902
- format?: string | undefined;
1903
- nullable?: boolean | undefined;
1904
1919
  }[];
1905
1920
  query: {
1906
1921
  value: string;
@@ -1913,10 +1928,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1913
1928
  required?: boolean | undefined;
1914
1929
  description?: string | undefined;
1915
1930
  enum?: string[] | undefined;
1931
+ nullable?: boolean | undefined;
1932
+ format?: string | undefined;
1916
1933
  file?: any;
1917
1934
  refUid?: string | undefined;
1918
- format?: string | undefined;
1919
- nullable?: boolean | undefined;
1920
1935
  }[];
1921
1936
  headers: {
1922
1937
  value: string;
@@ -1929,10 +1944,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1929
1944
  required?: boolean | undefined;
1930
1945
  description?: string | undefined;
1931
1946
  enum?: string[] | undefined;
1947
+ nullable?: boolean | undefined;
1948
+ format?: string | undefined;
1932
1949
  file?: any;
1933
1950
  refUid?: string | undefined;
1934
- format?: string | undefined;
1935
- nullable?: boolean | undefined;
1936
1951
  }[];
1937
1952
  cookies: {
1938
1953
  value: string;
@@ -1945,10 +1960,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1945
1960
  required?: boolean | undefined;
1946
1961
  description?: string | undefined;
1947
1962
  enum?: string[] | undefined;
1963
+ nullable?: boolean | undefined;
1964
+ format?: string | undefined;
1948
1965
  file?: any;
1949
1966
  refUid?: string | undefined;
1950
- format?: string | undefined;
1951
- nullable?: boolean | undefined;
1952
1967
  }[];
1953
1968
  };
1954
1969
  auth: Record<string, any>;
@@ -1960,7 +1975,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1960
1975
  body: {
1961
1976
  raw: {
1962
1977
  value: string;
1963
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
1978
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
1964
1979
  };
1965
1980
  formData: {
1966
1981
  value: {
@@ -1974,10 +1989,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1974
1989
  required?: boolean | undefined;
1975
1990
  description?: string | undefined;
1976
1991
  enum?: string[] | undefined;
1992
+ nullable?: boolean | undefined;
1993
+ format?: string | undefined;
1977
1994
  file?: any;
1978
1995
  refUid?: string | undefined;
1979
- format?: string | undefined;
1980
- nullable?: boolean | undefined;
1981
1996
  }[];
1982
1997
  encoding: "form-data" | "urlencoded";
1983
1998
  };
@@ -1996,10 +2011,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
1996
2011
  required?: boolean | undefined;
1997
2012
  description?: string | undefined;
1998
2013
  enum?: string[] | undefined;
2014
+ nullable?: boolean | undefined;
2015
+ format?: string | undefined;
1999
2016
  file?: any;
2000
2017
  refUid?: string | undefined;
2001
- format?: string | undefined;
2002
- nullable?: boolean | undefined;
2003
2018
  }[];
2004
2019
  query: {
2005
2020
  value: string;
@@ -2012,10 +2027,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2012
2027
  required?: boolean | undefined;
2013
2028
  description?: string | undefined;
2014
2029
  enum?: string[] | undefined;
2030
+ nullable?: boolean | undefined;
2031
+ format?: string | undefined;
2015
2032
  file?: any;
2016
2033
  refUid?: string | undefined;
2017
- format?: string | undefined;
2018
- nullable?: boolean | undefined;
2019
2034
  }[];
2020
2035
  headers: {
2021
2036
  value: string;
@@ -2028,10 +2043,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2028
2043
  required?: boolean | undefined;
2029
2044
  description?: string | undefined;
2030
2045
  enum?: string[] | undefined;
2046
+ nullable?: boolean | undefined;
2047
+ format?: string | undefined;
2031
2048
  file?: any;
2032
2049
  refUid?: string | undefined;
2033
- format?: string | undefined;
2034
- nullable?: boolean | undefined;
2035
2050
  }[];
2036
2051
  cookies: {
2037
2052
  value: string;
@@ -2044,10 +2059,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2044
2059
  required?: boolean | undefined;
2045
2060
  description?: string | undefined;
2046
2061
  enum?: string[] | undefined;
2062
+ nullable?: boolean | undefined;
2063
+ format?: string | undefined;
2047
2064
  file?: any;
2048
2065
  refUid?: string | undefined;
2049
- format?: string | undefined;
2050
- nullable?: boolean | undefined;
2051
2066
  }[];
2052
2067
  };
2053
2068
  auth: Record<string, any>;
@@ -2059,7 +2074,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2059
2074
  body: {
2060
2075
  raw: {
2061
2076
  value: string;
2062
- encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
2077
+ encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
2063
2078
  };
2064
2079
  formData: {
2065
2080
  value: {
@@ -2073,10 +2088,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2073
2088
  required?: boolean | undefined;
2074
2089
  description?: string | undefined;
2075
2090
  enum?: string[] | undefined;
2091
+ nullable?: boolean | undefined;
2092
+ format?: string | undefined;
2076
2093
  file?: any;
2077
2094
  refUid?: string | undefined;
2078
- format?: string | undefined;
2079
- nullable?: boolean | undefined;
2080
2095
  }[];
2081
2096
  encoding: "form-data" | "urlencoded";
2082
2097
  };
@@ -2095,10 +2110,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2095
2110
  required?: boolean | undefined;
2096
2111
  description?: string | undefined;
2097
2112
  enum?: string[] | undefined;
2113
+ nullable?: boolean | undefined;
2114
+ format?: string | undefined;
2098
2115
  file?: any;
2099
2116
  refUid?: string | undefined;
2100
- format?: string | undefined;
2101
- nullable?: boolean | undefined;
2102
2117
  }[];
2103
2118
  query: {
2104
2119
  value: string;
@@ -2111,10 +2126,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2111
2126
  required?: boolean | undefined;
2112
2127
  description?: string | undefined;
2113
2128
  enum?: string[] | undefined;
2129
+ nullable?: boolean | undefined;
2130
+ format?: string | undefined;
2114
2131
  file?: any;
2115
2132
  refUid?: string | undefined;
2116
- format?: string | undefined;
2117
- nullable?: boolean | undefined;
2118
2133
  }[];
2119
2134
  headers: {
2120
2135
  value: string;
@@ -2127,10 +2142,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2127
2142
  required?: boolean | undefined;
2128
2143
  description?: string | undefined;
2129
2144
  enum?: string[] | undefined;
2145
+ nullable?: boolean | undefined;
2146
+ format?: string | undefined;
2130
2147
  file?: any;
2131
2148
  refUid?: string | undefined;
2132
- format?: string | undefined;
2133
- nullable?: boolean | undefined;
2134
2149
  }[];
2135
2150
  cookies: {
2136
2151
  value: string;
@@ -2143,10 +2158,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2143
2158
  required?: boolean | undefined;
2144
2159
  description?: string | undefined;
2145
2160
  enum?: string[] | undefined;
2161
+ nullable?: boolean | undefined;
2162
+ format?: string | undefined;
2146
2163
  file?: any;
2147
2164
  refUid?: string | undefined;
2148
- format?: string | undefined;
2149
- nullable?: boolean | undefined;
2150
2165
  }[];
2151
2166
  };
2152
2167
  auth: Record<string, any>;
@@ -2802,6 +2817,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2802
2817
  isReadOnly: boolean;
2803
2818
  collectionUids: string[];
2804
2819
  environmentUids: string[];
2820
+ activeEnvironmentId: string;
2805
2821
  cookieUids: string[];
2806
2822
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2807
2823
  hotKeyConfig?: {
@@ -2820,6 +2836,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2820
2836
  isReadOnly: boolean;
2821
2837
  collectionUids: string[];
2822
2838
  environmentUids: string[];
2839
+ activeEnvironmentId: string;
2823
2840
  cookieUids: string[];
2824
2841
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2825
2842
  hotKeyConfig?: {
@@ -2840,6 +2857,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2840
2857
  isReadOnly: boolean;
2841
2858
  collectionUids: string[];
2842
2859
  environmentUids: string[];
2860
+ activeEnvironmentId: string;
2843
2861
  cookieUids: string[];
2844
2862
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2845
2863
  hotKeyConfig?: {
@@ -2851,13 +2869,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2851
2869
  } | undefined;
2852
2870
  proxyUrl?: string | undefined;
2853
2871
  }) => void;
2854
- edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
2872
+ 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" ? {
2855
2873
  uid: string;
2856
2874
  name: string;
2857
2875
  description: string;
2858
2876
  isReadOnly: boolean;
2859
2877
  collectionUids: string[];
2860
2878
  environmentUids: string[];
2879
+ activeEnvironmentId: string;
2861
2880
  cookieUids: string[];
2862
2881
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2863
2882
  hotKeyConfig?: {
@@ -2868,13 +2887,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2868
2887
  }>> | undefined;
2869
2888
  } | undefined;
2870
2889
  proxyUrl?: string | undefined;
2871
- }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
2890
+ }[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<{
2872
2891
  uid: string;
2873
2892
  name: string;
2874
2893
  description: string;
2875
2894
  isReadOnly: boolean;
2876
2895
  collectionUids: string[];
2877
2896
  environmentUids: string[];
2897
+ activeEnvironmentId: string;
2878
2898
  cookieUids: string[];
2879
2899
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2880
2900
  hotKeyConfig?: {
@@ -2892,6 +2912,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2892
2912
  isReadOnly: boolean;
2893
2913
  collectionUids: string[];
2894
2914
  environmentUids: string[];
2915
+ activeEnvironmentId: string;
2895
2916
  cookieUids: string[];
2896
2917
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2897
2918
  hotKeyConfig?: {
@@ -2903,13 +2924,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2903
2924
  } | undefined;
2904
2925
  proxyUrl?: string | undefined;
2905
2926
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
2906
- untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
2927
+ 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" ? {
2907
2928
  uid: string;
2908
2929
  name: string;
2909
2930
  description: string;
2910
2931
  isReadOnly: boolean;
2911
2932
  collectionUids: string[];
2912
2933
  environmentUids: string[];
2934
+ activeEnvironmentId: string;
2913
2935
  cookieUids: string[];
2914
2936
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2915
2937
  hotKeyConfig?: {
@@ -2920,13 +2942,14 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2920
2942
  }>> | undefined;
2921
2943
  } | undefined;
2922
2944
  proxyUrl?: string | undefined;
2923
- }[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
2945
+ }[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<{
2924
2946
  uid: string;
2925
2947
  name: string;
2926
2948
  description: string;
2927
2949
  isReadOnly: boolean;
2928
2950
  collectionUids: string[];
2929
2951
  environmentUids: string[];
2952
+ activeEnvironmentId: string;
2930
2953
  cookieUids: string[];
2931
2954
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2932
2955
  hotKeyConfig?: {
@@ -2944,6 +2967,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
2944
2967
  isReadOnly: boolean;
2945
2968
  collectionUids: string[];
2946
2969
  environmentUids: string[];
2970
+ activeEnvironmentId: string;
2947
2971
  cookieUids: string[];
2948
2972
  themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
2949
2973
  hotKeyConfig?: {