@scalar/api-client 2.0.59 → 2.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +47 -0
- package/dist/components/CodeInput/CodeInput.vue.js +2 -2
- package/dist/components/CodeInput/CodeInput.vue2.js +16 -15
- package/dist/components/CodeInput/codeVariableWidget.d.ts.map +1 -1
- package/dist/components/CodeInput/codeVariableWidget.js +35 -30
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.d.ts +3 -0
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.d.ts.map +1 -0
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.js +114 -0
- package/dist/components/EnvironmentSelector/EnvironmentSelector.vue2.js +4 -0
- package/dist/components/TopNav/TopNav.vue.d.ts.map +1 -1
- package/dist/components/TopNav/TopNav.vue.js +2 -2
- package/dist/components/TopNav/TopNav.vue2.js +112 -64
- package/dist/layouts/App/create-api-client-app.d.ts +153 -129
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +306 -258
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +153 -129
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.d.ts +1 -1
- package/dist/libs/local-storage.js +1 -1
- package/dist/libs/normalizeHeaders.d.ts +1 -2
- package/dist/libs/normalizeHeaders.d.ts.map +1 -1
- package/dist/libs/sendRequest.d.ts +4 -5
- package/dist/libs/sendRequest.d.ts.map +1 -1
- package/dist/libs/sendRequest.js +104 -86
- package/dist/store/workspace.d.ts +302 -257
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/store/workspace.js +219 -216
- package/dist/style.css +1 -1
- package/dist/views/Environment/Environment.vue2.js +12 -12
- package/dist/views/Environment/EnvironmentVariableDropdown.vue.d.ts.map +1 -1
- package/dist/views/Environment/EnvironmentVariableDropdown.vue.js +54 -52
- package/dist/views/Request/Request.vue.d.ts.map +1 -1
- package/dist/views/Request/Request.vue.js +4 -4
- package/dist/views/Request/Request.vue2.js +91 -89
- package/dist/views/Request/RequestSection/RequestTable.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestTable.vue.js +2 -2
- package/dist/views/Request/RequestSection/RequestTable.vue2.js +1 -1
- package/dist/views/Request/RequestSidebarItem.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebarItem.vue.js +2 -2
- package/dist/views/Request/RequestSidebarItem.vue2.js +82 -80
- package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts +2 -2
- package/dist/views/Request/ResponseSection/ResponseBody.vue.d.ts.map +1 -1
- package/dist/views/Request/ResponseSection/ResponseBody.vue.js +20 -20
- package/dist/views/Request/ResponseSection/ResponseSection.vue.d.ts.map +1 -1
- package/dist/views/Request/ResponseSection/ResponseSection.vue.js +47 -42
- package/package.json +8 -8
|
@@ -26,6 +26,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
26
26
|
isReadOnly: boolean;
|
|
27
27
|
collectionUids: string[];
|
|
28
28
|
environmentUids: string[];
|
|
29
|
+
activeEnvironmentId: string;
|
|
29
30
|
cookieUids: string[];
|
|
30
31
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
31
32
|
hotKeyConfig?: {
|
|
@@ -115,7 +116,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
115
116
|
body: {
|
|
116
117
|
raw: {
|
|
117
118
|
value: string;
|
|
118
|
-
encoding: "
|
|
119
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
119
120
|
};
|
|
120
121
|
formData: {
|
|
121
122
|
value: {
|
|
@@ -129,10 +130,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
129
130
|
required?: boolean | undefined;
|
|
130
131
|
description?: string | undefined;
|
|
131
132
|
enum?: string[] | undefined;
|
|
133
|
+
nullable?: boolean | undefined;
|
|
134
|
+
format?: string | undefined;
|
|
132
135
|
file?: any;
|
|
133
136
|
refUid?: string | undefined;
|
|
134
|
-
format?: string | undefined;
|
|
135
|
-
nullable?: boolean | undefined;
|
|
136
137
|
}[];
|
|
137
138
|
encoding: "form-data" | "urlencoded";
|
|
138
139
|
};
|
|
@@ -151,10 +152,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
151
152
|
required?: boolean | undefined;
|
|
152
153
|
description?: string | undefined;
|
|
153
154
|
enum?: string[] | undefined;
|
|
155
|
+
nullable?: boolean | undefined;
|
|
156
|
+
format?: string | undefined;
|
|
154
157
|
file?: any;
|
|
155
158
|
refUid?: string | undefined;
|
|
156
|
-
format?: string | undefined;
|
|
157
|
-
nullable?: boolean | undefined;
|
|
158
159
|
}[];
|
|
159
160
|
query: {
|
|
160
161
|
value: string;
|
|
@@ -167,10 +168,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
167
168
|
required?: boolean | undefined;
|
|
168
169
|
description?: string | undefined;
|
|
169
170
|
enum?: string[] | undefined;
|
|
171
|
+
nullable?: boolean | undefined;
|
|
172
|
+
format?: string | undefined;
|
|
170
173
|
file?: any;
|
|
171
174
|
refUid?: string | undefined;
|
|
172
|
-
format?: string | undefined;
|
|
173
|
-
nullable?: boolean | undefined;
|
|
174
175
|
}[];
|
|
175
176
|
headers: {
|
|
176
177
|
value: string;
|
|
@@ -183,10 +184,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
183
184
|
required?: boolean | undefined;
|
|
184
185
|
description?: string | undefined;
|
|
185
186
|
enum?: string[] | undefined;
|
|
187
|
+
nullable?: boolean | undefined;
|
|
188
|
+
format?: string | undefined;
|
|
186
189
|
file?: any;
|
|
187
190
|
refUid?: string | undefined;
|
|
188
|
-
format?: string | undefined;
|
|
189
|
-
nullable?: boolean | undefined;
|
|
190
191
|
}[];
|
|
191
192
|
cookies: {
|
|
192
193
|
value: string;
|
|
@@ -199,10 +200,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
199
200
|
required?: boolean | undefined;
|
|
200
201
|
description?: string | undefined;
|
|
201
202
|
enum?: string[] | undefined;
|
|
203
|
+
nullable?: boolean | undefined;
|
|
204
|
+
format?: string | undefined;
|
|
202
205
|
file?: any;
|
|
203
206
|
refUid?: string | undefined;
|
|
204
|
-
format?: string | undefined;
|
|
205
|
-
nullable?: boolean | undefined;
|
|
206
207
|
}[];
|
|
207
208
|
};
|
|
208
209
|
auth: Record<string, any>;
|
|
@@ -336,7 +337,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
336
337
|
body: {
|
|
337
338
|
raw: {
|
|
338
339
|
value: string;
|
|
339
|
-
encoding: "
|
|
340
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
340
341
|
};
|
|
341
342
|
formData: {
|
|
342
343
|
value: {
|
|
@@ -350,10 +351,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
350
351
|
required?: boolean | undefined;
|
|
351
352
|
description?: string | undefined;
|
|
352
353
|
enum?: string[] | undefined;
|
|
354
|
+
nullable?: boolean | undefined;
|
|
355
|
+
format?: string | undefined;
|
|
353
356
|
file?: any;
|
|
354
357
|
refUid?: string | undefined;
|
|
355
|
-
format?: string | undefined;
|
|
356
|
-
nullable?: boolean | undefined;
|
|
357
358
|
}[];
|
|
358
359
|
encoding: "form-data" | "urlencoded";
|
|
359
360
|
};
|
|
@@ -372,10 +373,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
372
373
|
required?: boolean | undefined;
|
|
373
374
|
description?: string | undefined;
|
|
374
375
|
enum?: string[] | undefined;
|
|
376
|
+
nullable?: boolean | undefined;
|
|
377
|
+
format?: string | undefined;
|
|
375
378
|
file?: any;
|
|
376
379
|
refUid?: string | undefined;
|
|
377
|
-
format?: string | undefined;
|
|
378
|
-
nullable?: boolean | undefined;
|
|
379
380
|
}[];
|
|
380
381
|
query: {
|
|
381
382
|
value: string;
|
|
@@ -388,10 +389,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
388
389
|
required?: boolean | undefined;
|
|
389
390
|
description?: string | undefined;
|
|
390
391
|
enum?: string[] | undefined;
|
|
392
|
+
nullable?: boolean | undefined;
|
|
393
|
+
format?: string | undefined;
|
|
391
394
|
file?: any;
|
|
392
395
|
refUid?: string | undefined;
|
|
393
|
-
format?: string | undefined;
|
|
394
|
-
nullable?: boolean | undefined;
|
|
395
396
|
}[];
|
|
396
397
|
headers: {
|
|
397
398
|
value: string;
|
|
@@ -404,10 +405,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
404
405
|
required?: boolean | undefined;
|
|
405
406
|
description?: string | undefined;
|
|
406
407
|
enum?: string[] | undefined;
|
|
408
|
+
nullable?: boolean | undefined;
|
|
409
|
+
format?: string | undefined;
|
|
407
410
|
file?: any;
|
|
408
411
|
refUid?: string | undefined;
|
|
409
|
-
format?: string | undefined;
|
|
410
|
-
nullable?: boolean | undefined;
|
|
411
412
|
}[];
|
|
412
413
|
cookies: {
|
|
413
414
|
value: string;
|
|
@@ -420,10 +421,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
420
421
|
required?: boolean | undefined;
|
|
421
422
|
description?: string | undefined;
|
|
422
423
|
enum?: string[] | undefined;
|
|
424
|
+
nullable?: boolean | undefined;
|
|
425
|
+
format?: string | undefined;
|
|
423
426
|
file?: any;
|
|
424
427
|
refUid?: string | undefined;
|
|
425
|
-
format?: string | undefined;
|
|
426
|
-
nullable?: boolean | undefined;
|
|
427
428
|
}[];
|
|
428
429
|
};
|
|
429
430
|
auth: Record<string, any>;
|
|
@@ -526,6 +527,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
526
527
|
isReadOnly: boolean;
|
|
527
528
|
collectionUids: string[];
|
|
528
529
|
environmentUids: string[];
|
|
530
|
+
activeEnvironmentId: string;
|
|
529
531
|
cookieUids: string[];
|
|
530
532
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
531
533
|
hotKeyConfig?: {
|
|
@@ -593,11 +595,22 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
593
595
|
key: string;
|
|
594
596
|
value: string;
|
|
595
597
|
} | {
|
|
596
|
-
_scalarEnvId:
|
|
598
|
+
_scalarEnvId: string;
|
|
597
599
|
key: string;
|
|
598
600
|
value: unknown;
|
|
599
601
|
})[]>;
|
|
600
602
|
activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
|
|
603
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
604
|
+
uid: string;
|
|
605
|
+
name: string;
|
|
606
|
+
color: string;
|
|
607
|
+
raw: string;
|
|
608
|
+
parsed: {
|
|
609
|
+
value: string;
|
|
610
|
+
key: string;
|
|
611
|
+
}[];
|
|
612
|
+
isDefault?: boolean | undefined;
|
|
613
|
+
}>;
|
|
601
614
|
modalState: {
|
|
602
615
|
open: boolean;
|
|
603
616
|
show: () => void;
|
|
@@ -608,7 +621,9 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
608
621
|
sidebarWidth: import("vue").Ref<string>;
|
|
609
622
|
setSidebarWidth: (width: string) => void;
|
|
610
623
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
611
|
-
importSpecFile: (_spec: string |
|
|
624
|
+
importSpecFile: (_spec: string | {
|
|
625
|
+
[x: string]: any;
|
|
626
|
+
}, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
612
627
|
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
613
628
|
cookieMutators: {
|
|
614
629
|
add: (item: {
|
|
@@ -1264,7 +1279,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1264
1279
|
body: {
|
|
1265
1280
|
raw: {
|
|
1266
1281
|
value: string;
|
|
1267
|
-
encoding: "
|
|
1282
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1268
1283
|
};
|
|
1269
1284
|
formData: {
|
|
1270
1285
|
value: {
|
|
@@ -1278,10 +1293,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1278
1293
|
required?: boolean | undefined;
|
|
1279
1294
|
description?: string | undefined;
|
|
1280
1295
|
enum?: string[] | undefined;
|
|
1296
|
+
nullable?: boolean | undefined;
|
|
1297
|
+
format?: string | undefined;
|
|
1281
1298
|
file?: any;
|
|
1282
1299
|
refUid?: string | undefined;
|
|
1283
|
-
format?: string | undefined;
|
|
1284
|
-
nullable?: boolean | undefined;
|
|
1285
1300
|
}[];
|
|
1286
1301
|
encoding: "form-data" | "urlencoded";
|
|
1287
1302
|
};
|
|
@@ -1300,10 +1315,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1300
1315
|
required?: boolean | undefined;
|
|
1301
1316
|
description?: string | undefined;
|
|
1302
1317
|
enum?: string[] | undefined;
|
|
1318
|
+
nullable?: boolean | undefined;
|
|
1319
|
+
format?: string | undefined;
|
|
1303
1320
|
file?: any;
|
|
1304
1321
|
refUid?: string | undefined;
|
|
1305
|
-
format?: string | undefined;
|
|
1306
|
-
nullable?: boolean | undefined;
|
|
1307
1322
|
}[];
|
|
1308
1323
|
query: {
|
|
1309
1324
|
value: string;
|
|
@@ -1316,10 +1331,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1316
1331
|
required?: boolean | undefined;
|
|
1317
1332
|
description?: string | undefined;
|
|
1318
1333
|
enum?: string[] | undefined;
|
|
1334
|
+
nullable?: boolean | undefined;
|
|
1335
|
+
format?: string | undefined;
|
|
1319
1336
|
file?: any;
|
|
1320
1337
|
refUid?: string | undefined;
|
|
1321
|
-
format?: string | undefined;
|
|
1322
|
-
nullable?: boolean | undefined;
|
|
1323
1338
|
}[];
|
|
1324
1339
|
headers: {
|
|
1325
1340
|
value: string;
|
|
@@ -1332,10 +1347,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1332
1347
|
required?: boolean | undefined;
|
|
1333
1348
|
description?: string | undefined;
|
|
1334
1349
|
enum?: string[] | undefined;
|
|
1350
|
+
nullable?: boolean | undefined;
|
|
1351
|
+
format?: string | undefined;
|
|
1335
1352
|
file?: any;
|
|
1336
1353
|
refUid?: string | undefined;
|
|
1337
|
-
format?: string | undefined;
|
|
1338
|
-
nullable?: boolean | undefined;
|
|
1339
1354
|
}[];
|
|
1340
1355
|
cookies: {
|
|
1341
1356
|
value: string;
|
|
@@ -1348,10 +1363,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1348
1363
|
required?: boolean | undefined;
|
|
1349
1364
|
description?: string | undefined;
|
|
1350
1365
|
enum?: string[] | undefined;
|
|
1366
|
+
nullable?: boolean | undefined;
|
|
1367
|
+
format?: string | undefined;
|
|
1351
1368
|
file?: any;
|
|
1352
1369
|
refUid?: string | undefined;
|
|
1353
|
-
format?: string | undefined;
|
|
1354
|
-
nullable?: boolean | undefined;
|
|
1355
1370
|
}[];
|
|
1356
1371
|
};
|
|
1357
1372
|
auth: Record<string, any>;
|
|
@@ -1364,7 +1379,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1364
1379
|
body: {
|
|
1365
1380
|
raw: {
|
|
1366
1381
|
value: string;
|
|
1367
|
-
encoding: "
|
|
1382
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1368
1383
|
};
|
|
1369
1384
|
formData: {
|
|
1370
1385
|
value: {
|
|
@@ -1378,10 +1393,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1378
1393
|
required?: boolean | undefined;
|
|
1379
1394
|
description?: string | undefined;
|
|
1380
1395
|
enum?: string[] | undefined;
|
|
1396
|
+
nullable?: boolean | undefined;
|
|
1397
|
+
format?: string | undefined;
|
|
1381
1398
|
file?: any;
|
|
1382
1399
|
refUid?: string | undefined;
|
|
1383
|
-
format?: string | undefined;
|
|
1384
|
-
nullable?: boolean | undefined;
|
|
1385
1400
|
}[];
|
|
1386
1401
|
encoding: "form-data" | "urlencoded";
|
|
1387
1402
|
};
|
|
@@ -1400,10 +1415,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1400
1415
|
required?: boolean | undefined;
|
|
1401
1416
|
description?: string | undefined;
|
|
1402
1417
|
enum?: string[] | undefined;
|
|
1418
|
+
nullable?: boolean | undefined;
|
|
1419
|
+
format?: string | undefined;
|
|
1403
1420
|
file?: any;
|
|
1404
1421
|
refUid?: string | undefined;
|
|
1405
|
-
format?: string | undefined;
|
|
1406
|
-
nullable?: boolean | undefined;
|
|
1407
1422
|
}[];
|
|
1408
1423
|
query: {
|
|
1409
1424
|
value: string;
|
|
@@ -1416,10 +1431,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1416
1431
|
required?: boolean | undefined;
|
|
1417
1432
|
description?: string | undefined;
|
|
1418
1433
|
enum?: string[] | undefined;
|
|
1434
|
+
nullable?: boolean | undefined;
|
|
1435
|
+
format?: string | undefined;
|
|
1419
1436
|
file?: any;
|
|
1420
1437
|
refUid?: string | undefined;
|
|
1421
|
-
format?: string | undefined;
|
|
1422
|
-
nullable?: boolean | undefined;
|
|
1423
1438
|
}[];
|
|
1424
1439
|
headers: {
|
|
1425
1440
|
value: string;
|
|
@@ -1432,10 +1447,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1432
1447
|
required?: boolean | undefined;
|
|
1433
1448
|
description?: string | undefined;
|
|
1434
1449
|
enum?: string[] | undefined;
|
|
1450
|
+
nullable?: boolean | undefined;
|
|
1451
|
+
format?: string | undefined;
|
|
1435
1452
|
file?: any;
|
|
1436
1453
|
refUid?: string | undefined;
|
|
1437
|
-
format?: string | undefined;
|
|
1438
|
-
nullable?: boolean | undefined;
|
|
1439
1454
|
}[];
|
|
1440
1455
|
cookies: {
|
|
1441
1456
|
value: string;
|
|
@@ -1448,10 +1463,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1448
1463
|
required?: boolean | undefined;
|
|
1449
1464
|
description?: string | undefined;
|
|
1450
1465
|
enum?: string[] | undefined;
|
|
1466
|
+
nullable?: boolean | undefined;
|
|
1467
|
+
format?: string | undefined;
|
|
1451
1468
|
file?: any;
|
|
1452
1469
|
refUid?: string | undefined;
|
|
1453
|
-
format?: string | undefined;
|
|
1454
|
-
nullable?: boolean | undefined;
|
|
1455
1470
|
}[];
|
|
1456
1471
|
};
|
|
1457
1472
|
auth: Record<string, any>;
|
|
@@ -1465,7 +1480,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1465
1480
|
body: {
|
|
1466
1481
|
raw: {
|
|
1467
1482
|
value: string;
|
|
1468
|
-
encoding: "
|
|
1483
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1469
1484
|
};
|
|
1470
1485
|
formData: {
|
|
1471
1486
|
value: {
|
|
@@ -1479,10 +1494,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1479
1494
|
required?: boolean | undefined;
|
|
1480
1495
|
description?: string | undefined;
|
|
1481
1496
|
enum?: string[] | undefined;
|
|
1497
|
+
nullable?: boolean | undefined;
|
|
1498
|
+
format?: string | undefined;
|
|
1482
1499
|
file?: any;
|
|
1483
1500
|
refUid?: string | undefined;
|
|
1484
|
-
format?: string | undefined;
|
|
1485
|
-
nullable?: boolean | undefined;
|
|
1486
1501
|
}[];
|
|
1487
1502
|
encoding: "form-data" | "urlencoded";
|
|
1488
1503
|
};
|
|
@@ -1501,10 +1516,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1501
1516
|
required?: boolean | undefined;
|
|
1502
1517
|
description?: string | undefined;
|
|
1503
1518
|
enum?: string[] | undefined;
|
|
1519
|
+
nullable?: boolean | undefined;
|
|
1520
|
+
format?: string | undefined;
|
|
1504
1521
|
file?: any;
|
|
1505
1522
|
refUid?: string | undefined;
|
|
1506
|
-
format?: string | undefined;
|
|
1507
|
-
nullable?: boolean | undefined;
|
|
1508
1523
|
}[];
|
|
1509
1524
|
query: {
|
|
1510
1525
|
value: string;
|
|
@@ -1517,10 +1532,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1517
1532
|
required?: boolean | undefined;
|
|
1518
1533
|
description?: string | undefined;
|
|
1519
1534
|
enum?: string[] | undefined;
|
|
1535
|
+
nullable?: boolean | undefined;
|
|
1536
|
+
format?: string | undefined;
|
|
1520
1537
|
file?: any;
|
|
1521
1538
|
refUid?: string | undefined;
|
|
1522
|
-
format?: string | undefined;
|
|
1523
|
-
nullable?: boolean | undefined;
|
|
1524
1539
|
}[];
|
|
1525
1540
|
headers: {
|
|
1526
1541
|
value: string;
|
|
@@ -1533,10 +1548,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1533
1548
|
required?: boolean | undefined;
|
|
1534
1549
|
description?: string | undefined;
|
|
1535
1550
|
enum?: string[] | undefined;
|
|
1551
|
+
nullable?: boolean | undefined;
|
|
1552
|
+
format?: string | undefined;
|
|
1536
1553
|
file?: any;
|
|
1537
1554
|
refUid?: string | undefined;
|
|
1538
|
-
format?: string | undefined;
|
|
1539
|
-
nullable?: boolean | undefined;
|
|
1540
1555
|
}[];
|
|
1541
1556
|
cookies: {
|
|
1542
1557
|
value: string;
|
|
@@ -1549,15 +1564,15 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1549
1564
|
required?: boolean | undefined;
|
|
1550
1565
|
description?: string | undefined;
|
|
1551
1566
|
enum?: string[] | undefined;
|
|
1567
|
+
nullable?: boolean | undefined;
|
|
1568
|
+
format?: string | undefined;
|
|
1552
1569
|
file?: any;
|
|
1553
1570
|
refUid?: string | undefined;
|
|
1554
|
-
format?: string | undefined;
|
|
1555
|
-
nullable?: boolean | undefined;
|
|
1556
1571
|
}[];
|
|
1557
1572
|
};
|
|
1558
1573
|
auth: Record<string, any>;
|
|
1559
1574
|
}) => void;
|
|
1560
|
-
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.
|
|
1575
|
+
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" ? {
|
|
1561
1576
|
uid: string;
|
|
1562
1577
|
name: string;
|
|
1563
1578
|
url: string;
|
|
@@ -1565,7 +1580,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1565
1580
|
body: {
|
|
1566
1581
|
raw: {
|
|
1567
1582
|
value: string;
|
|
1568
|
-
encoding: "
|
|
1583
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1569
1584
|
};
|
|
1570
1585
|
formData: {
|
|
1571
1586
|
value: {
|
|
@@ -1579,10 +1594,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1579
1594
|
required?: boolean | undefined;
|
|
1580
1595
|
description?: string | undefined;
|
|
1581
1596
|
enum?: string[] | undefined;
|
|
1597
|
+
nullable?: boolean | undefined;
|
|
1598
|
+
format?: string | undefined;
|
|
1582
1599
|
file?: any;
|
|
1583
1600
|
refUid?: string | undefined;
|
|
1584
|
-
format?: string | undefined;
|
|
1585
|
-
nullable?: boolean | undefined;
|
|
1586
1601
|
}[];
|
|
1587
1602
|
encoding: "form-data" | "urlencoded";
|
|
1588
1603
|
};
|
|
@@ -1601,10 +1616,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1601
1616
|
required?: boolean | undefined;
|
|
1602
1617
|
description?: string | undefined;
|
|
1603
1618
|
enum?: string[] | undefined;
|
|
1619
|
+
nullable?: boolean | undefined;
|
|
1620
|
+
format?: string | undefined;
|
|
1604
1621
|
file?: any;
|
|
1605
1622
|
refUid?: string | undefined;
|
|
1606
|
-
format?: string | undefined;
|
|
1607
|
-
nullable?: boolean | undefined;
|
|
1608
1623
|
}[];
|
|
1609
1624
|
query: {
|
|
1610
1625
|
value: string;
|
|
@@ -1617,10 +1632,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1617
1632
|
required?: boolean | undefined;
|
|
1618
1633
|
description?: string | undefined;
|
|
1619
1634
|
enum?: string[] | undefined;
|
|
1635
|
+
nullable?: boolean | undefined;
|
|
1636
|
+
format?: string | undefined;
|
|
1620
1637
|
file?: any;
|
|
1621
1638
|
refUid?: string | undefined;
|
|
1622
|
-
format?: string | undefined;
|
|
1623
|
-
nullable?: boolean | undefined;
|
|
1624
1639
|
}[];
|
|
1625
1640
|
headers: {
|
|
1626
1641
|
value: string;
|
|
@@ -1633,10 +1648,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1633
1648
|
required?: boolean | undefined;
|
|
1634
1649
|
description?: string | undefined;
|
|
1635
1650
|
enum?: string[] | undefined;
|
|
1651
|
+
nullable?: boolean | undefined;
|
|
1652
|
+
format?: string | undefined;
|
|
1636
1653
|
file?: any;
|
|
1637
1654
|
refUid?: string | undefined;
|
|
1638
|
-
format?: string | undefined;
|
|
1639
|
-
nullable?: boolean | undefined;
|
|
1640
1655
|
}[];
|
|
1641
1656
|
cookies: {
|
|
1642
1657
|
value: string;
|
|
@@ -1649,10 +1664,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1649
1664
|
required?: boolean | undefined;
|
|
1650
1665
|
description?: string | undefined;
|
|
1651
1666
|
enum?: string[] | undefined;
|
|
1667
|
+
nullable?: boolean | undefined;
|
|
1668
|
+
format?: string | undefined;
|
|
1652
1669
|
file?: any;
|
|
1653
1670
|
refUid?: string | undefined;
|
|
1654
|
-
format?: string | undefined;
|
|
1655
|
-
nullable?: boolean | undefined;
|
|
1656
1671
|
}[];
|
|
1657
1672
|
};
|
|
1658
1673
|
auth: Record<string, any>;
|
|
@@ -1664,7 +1679,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1664
1679
|
body: {
|
|
1665
1680
|
raw: {
|
|
1666
1681
|
value: string;
|
|
1667
|
-
encoding: "
|
|
1682
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1668
1683
|
};
|
|
1669
1684
|
formData: {
|
|
1670
1685
|
value: {
|
|
@@ -1678,10 +1693,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1678
1693
|
required?: boolean | undefined;
|
|
1679
1694
|
description?: string | undefined;
|
|
1680
1695
|
enum?: string[] | undefined;
|
|
1696
|
+
nullable?: boolean | undefined;
|
|
1697
|
+
format?: string | undefined;
|
|
1681
1698
|
file?: any;
|
|
1682
1699
|
refUid?: string | undefined;
|
|
1683
|
-
format?: string | undefined;
|
|
1684
|
-
nullable?: boolean | undefined;
|
|
1685
1700
|
}[];
|
|
1686
1701
|
encoding: "form-data" | "urlencoded";
|
|
1687
1702
|
};
|
|
@@ -1700,10 +1715,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1700
1715
|
required?: boolean | undefined;
|
|
1701
1716
|
description?: string | undefined;
|
|
1702
1717
|
enum?: string[] | undefined;
|
|
1718
|
+
nullable?: boolean | undefined;
|
|
1719
|
+
format?: string | undefined;
|
|
1703
1720
|
file?: any;
|
|
1704
1721
|
refUid?: string | undefined;
|
|
1705
|
-
format?: string | undefined;
|
|
1706
|
-
nullable?: boolean | undefined;
|
|
1707
1722
|
}[];
|
|
1708
1723
|
query: {
|
|
1709
1724
|
value: string;
|
|
@@ -1716,10 +1731,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1716
1731
|
required?: boolean | undefined;
|
|
1717
1732
|
description?: string | undefined;
|
|
1718
1733
|
enum?: string[] | undefined;
|
|
1734
|
+
nullable?: boolean | undefined;
|
|
1735
|
+
format?: string | undefined;
|
|
1719
1736
|
file?: any;
|
|
1720
1737
|
refUid?: string | undefined;
|
|
1721
|
-
format?: string | undefined;
|
|
1722
|
-
nullable?: boolean | undefined;
|
|
1723
1738
|
}[];
|
|
1724
1739
|
headers: {
|
|
1725
1740
|
value: string;
|
|
@@ -1732,10 +1747,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1732
1747
|
required?: boolean | undefined;
|
|
1733
1748
|
description?: string | undefined;
|
|
1734
1749
|
enum?: string[] | undefined;
|
|
1750
|
+
nullable?: boolean | undefined;
|
|
1751
|
+
format?: string | undefined;
|
|
1735
1752
|
file?: any;
|
|
1736
1753
|
refUid?: string | undefined;
|
|
1737
|
-
format?: string | undefined;
|
|
1738
|
-
nullable?: boolean | undefined;
|
|
1739
1754
|
}[];
|
|
1740
1755
|
cookies: {
|
|
1741
1756
|
value: string;
|
|
@@ -1748,10 +1763,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1748
1763
|
required?: boolean | undefined;
|
|
1749
1764
|
description?: string | undefined;
|
|
1750
1765
|
enum?: string[] | undefined;
|
|
1766
|
+
nullable?: boolean | undefined;
|
|
1767
|
+
format?: string | undefined;
|
|
1751
1768
|
file?: any;
|
|
1752
1769
|
refUid?: string | undefined;
|
|
1753
|
-
format?: string | undefined;
|
|
1754
|
-
nullable?: boolean | undefined;
|
|
1755
1770
|
}[];
|
|
1756
1771
|
};
|
|
1757
1772
|
auth: Record<string, any>;
|
|
@@ -1763,7 +1778,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1763
1778
|
body: {
|
|
1764
1779
|
raw: {
|
|
1765
1780
|
value: string;
|
|
1766
|
-
encoding: "
|
|
1781
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1767
1782
|
};
|
|
1768
1783
|
formData: {
|
|
1769
1784
|
value: {
|
|
@@ -1777,10 +1792,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1777
1792
|
required?: boolean | undefined;
|
|
1778
1793
|
description?: string | undefined;
|
|
1779
1794
|
enum?: string[] | undefined;
|
|
1795
|
+
nullable?: boolean | undefined;
|
|
1796
|
+
format?: string | undefined;
|
|
1780
1797
|
file?: any;
|
|
1781
1798
|
refUid?: string | undefined;
|
|
1782
|
-
format?: string | undefined;
|
|
1783
|
-
nullable?: boolean | undefined;
|
|
1784
1799
|
}[];
|
|
1785
1800
|
encoding: "form-data" | "urlencoded";
|
|
1786
1801
|
};
|
|
@@ -1799,10 +1814,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1799
1814
|
required?: boolean | undefined;
|
|
1800
1815
|
description?: string | undefined;
|
|
1801
1816
|
enum?: string[] | undefined;
|
|
1817
|
+
nullable?: boolean | undefined;
|
|
1818
|
+
format?: string | undefined;
|
|
1802
1819
|
file?: any;
|
|
1803
1820
|
refUid?: string | undefined;
|
|
1804
|
-
format?: string | undefined;
|
|
1805
|
-
nullable?: boolean | undefined;
|
|
1806
1821
|
}[];
|
|
1807
1822
|
query: {
|
|
1808
1823
|
value: string;
|
|
@@ -1815,10 +1830,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1815
1830
|
required?: boolean | undefined;
|
|
1816
1831
|
description?: string | undefined;
|
|
1817
1832
|
enum?: string[] | undefined;
|
|
1833
|
+
nullable?: boolean | undefined;
|
|
1834
|
+
format?: string | undefined;
|
|
1818
1835
|
file?: any;
|
|
1819
1836
|
refUid?: string | undefined;
|
|
1820
|
-
format?: string | undefined;
|
|
1821
|
-
nullable?: boolean | undefined;
|
|
1822
1837
|
}[];
|
|
1823
1838
|
headers: {
|
|
1824
1839
|
value: string;
|
|
@@ -1831,10 +1846,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1831
1846
|
required?: boolean | undefined;
|
|
1832
1847
|
description?: string | undefined;
|
|
1833
1848
|
enum?: string[] | undefined;
|
|
1849
|
+
nullable?: boolean | undefined;
|
|
1850
|
+
format?: string | undefined;
|
|
1834
1851
|
file?: any;
|
|
1835
1852
|
refUid?: string | undefined;
|
|
1836
|
-
format?: string | undefined;
|
|
1837
|
-
nullable?: boolean | undefined;
|
|
1838
1853
|
}[];
|
|
1839
1854
|
cookies: {
|
|
1840
1855
|
value: string;
|
|
@@ -1847,15 +1862,15 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1847
1862
|
required?: boolean | undefined;
|
|
1848
1863
|
description?: string | undefined;
|
|
1849
1864
|
enum?: string[] | undefined;
|
|
1865
|
+
nullable?: boolean | undefined;
|
|
1866
|
+
format?: string | undefined;
|
|
1850
1867
|
file?: any;
|
|
1851
1868
|
refUid?: string | undefined;
|
|
1852
|
-
format?: string | undefined;
|
|
1853
|
-
nullable?: boolean | undefined;
|
|
1854
1869
|
}[];
|
|
1855
1870
|
};
|
|
1856
1871
|
auth: Record<string, any>;
|
|
1857
1872
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1858
|
-
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.
|
|
1873
|
+
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" ? {
|
|
1859
1874
|
uid: string;
|
|
1860
1875
|
name: string;
|
|
1861
1876
|
url: string;
|
|
@@ -1863,7 +1878,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1863
1878
|
body: {
|
|
1864
1879
|
raw: {
|
|
1865
1880
|
value: string;
|
|
1866
|
-
encoding: "
|
|
1881
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1867
1882
|
};
|
|
1868
1883
|
formData: {
|
|
1869
1884
|
value: {
|
|
@@ -1877,10 +1892,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1877
1892
|
required?: boolean | undefined;
|
|
1878
1893
|
description?: string | undefined;
|
|
1879
1894
|
enum?: string[] | undefined;
|
|
1895
|
+
nullable?: boolean | undefined;
|
|
1896
|
+
format?: string | undefined;
|
|
1880
1897
|
file?: any;
|
|
1881
1898
|
refUid?: string | undefined;
|
|
1882
|
-
format?: string | undefined;
|
|
1883
|
-
nullable?: boolean | undefined;
|
|
1884
1899
|
}[];
|
|
1885
1900
|
encoding: "form-data" | "urlencoded";
|
|
1886
1901
|
};
|
|
@@ -1899,10 +1914,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1899
1914
|
required?: boolean | undefined;
|
|
1900
1915
|
description?: string | undefined;
|
|
1901
1916
|
enum?: string[] | undefined;
|
|
1917
|
+
nullable?: boolean | undefined;
|
|
1918
|
+
format?: string | undefined;
|
|
1902
1919
|
file?: any;
|
|
1903
1920
|
refUid?: string | undefined;
|
|
1904
|
-
format?: string | undefined;
|
|
1905
|
-
nullable?: boolean | undefined;
|
|
1906
1921
|
}[];
|
|
1907
1922
|
query: {
|
|
1908
1923
|
value: string;
|
|
@@ -1915,10 +1930,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1915
1930
|
required?: boolean | undefined;
|
|
1916
1931
|
description?: string | undefined;
|
|
1917
1932
|
enum?: string[] | undefined;
|
|
1933
|
+
nullable?: boolean | undefined;
|
|
1934
|
+
format?: string | undefined;
|
|
1918
1935
|
file?: any;
|
|
1919
1936
|
refUid?: string | undefined;
|
|
1920
|
-
format?: string | undefined;
|
|
1921
|
-
nullable?: boolean | undefined;
|
|
1922
1937
|
}[];
|
|
1923
1938
|
headers: {
|
|
1924
1939
|
value: string;
|
|
@@ -1931,10 +1946,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1931
1946
|
required?: boolean | undefined;
|
|
1932
1947
|
description?: string | undefined;
|
|
1933
1948
|
enum?: string[] | undefined;
|
|
1949
|
+
nullable?: boolean | undefined;
|
|
1950
|
+
format?: string | undefined;
|
|
1934
1951
|
file?: any;
|
|
1935
1952
|
refUid?: string | undefined;
|
|
1936
|
-
format?: string | undefined;
|
|
1937
|
-
nullable?: boolean | undefined;
|
|
1938
1953
|
}[];
|
|
1939
1954
|
cookies: {
|
|
1940
1955
|
value: string;
|
|
@@ -1947,10 +1962,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1947
1962
|
required?: boolean | undefined;
|
|
1948
1963
|
description?: string | undefined;
|
|
1949
1964
|
enum?: string[] | undefined;
|
|
1965
|
+
nullable?: boolean | undefined;
|
|
1966
|
+
format?: string | undefined;
|
|
1950
1967
|
file?: any;
|
|
1951
1968
|
refUid?: string | undefined;
|
|
1952
|
-
format?: string | undefined;
|
|
1953
|
-
nullable?: boolean | undefined;
|
|
1954
1969
|
}[];
|
|
1955
1970
|
};
|
|
1956
1971
|
auth: Record<string, any>;
|
|
@@ -1962,7 +1977,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1962
1977
|
body: {
|
|
1963
1978
|
raw: {
|
|
1964
1979
|
value: string;
|
|
1965
|
-
encoding: "
|
|
1980
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1966
1981
|
};
|
|
1967
1982
|
formData: {
|
|
1968
1983
|
value: {
|
|
@@ -1976,10 +1991,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1976
1991
|
required?: boolean | undefined;
|
|
1977
1992
|
description?: string | undefined;
|
|
1978
1993
|
enum?: string[] | undefined;
|
|
1994
|
+
nullable?: boolean | undefined;
|
|
1995
|
+
format?: string | undefined;
|
|
1979
1996
|
file?: any;
|
|
1980
1997
|
refUid?: string | undefined;
|
|
1981
|
-
format?: string | undefined;
|
|
1982
|
-
nullable?: boolean | undefined;
|
|
1983
1998
|
}[];
|
|
1984
1999
|
encoding: "form-data" | "urlencoded";
|
|
1985
2000
|
};
|
|
@@ -1998,10 +2013,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
1998
2013
|
required?: boolean | undefined;
|
|
1999
2014
|
description?: string | undefined;
|
|
2000
2015
|
enum?: string[] | undefined;
|
|
2016
|
+
nullable?: boolean | undefined;
|
|
2017
|
+
format?: string | undefined;
|
|
2001
2018
|
file?: any;
|
|
2002
2019
|
refUid?: string | undefined;
|
|
2003
|
-
format?: string | undefined;
|
|
2004
|
-
nullable?: boolean | undefined;
|
|
2005
2020
|
}[];
|
|
2006
2021
|
query: {
|
|
2007
2022
|
value: string;
|
|
@@ -2014,10 +2029,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2014
2029
|
required?: boolean | undefined;
|
|
2015
2030
|
description?: string | undefined;
|
|
2016
2031
|
enum?: string[] | undefined;
|
|
2032
|
+
nullable?: boolean | undefined;
|
|
2033
|
+
format?: string | undefined;
|
|
2017
2034
|
file?: any;
|
|
2018
2035
|
refUid?: string | undefined;
|
|
2019
|
-
format?: string | undefined;
|
|
2020
|
-
nullable?: boolean | undefined;
|
|
2021
2036
|
}[];
|
|
2022
2037
|
headers: {
|
|
2023
2038
|
value: string;
|
|
@@ -2030,10 +2045,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2030
2045
|
required?: boolean | undefined;
|
|
2031
2046
|
description?: string | undefined;
|
|
2032
2047
|
enum?: string[] | undefined;
|
|
2048
|
+
nullable?: boolean | undefined;
|
|
2049
|
+
format?: string | undefined;
|
|
2033
2050
|
file?: any;
|
|
2034
2051
|
refUid?: string | undefined;
|
|
2035
|
-
format?: string | undefined;
|
|
2036
|
-
nullable?: boolean | undefined;
|
|
2037
2052
|
}[];
|
|
2038
2053
|
cookies: {
|
|
2039
2054
|
value: string;
|
|
@@ -2046,10 +2061,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2046
2061
|
required?: boolean | undefined;
|
|
2047
2062
|
description?: string | undefined;
|
|
2048
2063
|
enum?: string[] | undefined;
|
|
2064
|
+
nullable?: boolean | undefined;
|
|
2065
|
+
format?: string | undefined;
|
|
2049
2066
|
file?: any;
|
|
2050
2067
|
refUid?: string | undefined;
|
|
2051
|
-
format?: string | undefined;
|
|
2052
|
-
nullable?: boolean | undefined;
|
|
2053
2068
|
}[];
|
|
2054
2069
|
};
|
|
2055
2070
|
auth: Record<string, any>;
|
|
@@ -2061,7 +2076,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2061
2076
|
body: {
|
|
2062
2077
|
raw: {
|
|
2063
2078
|
value: string;
|
|
2064
|
-
encoding: "
|
|
2079
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
2065
2080
|
};
|
|
2066
2081
|
formData: {
|
|
2067
2082
|
value: {
|
|
@@ -2075,10 +2090,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2075
2090
|
required?: boolean | undefined;
|
|
2076
2091
|
description?: string | undefined;
|
|
2077
2092
|
enum?: string[] | undefined;
|
|
2093
|
+
nullable?: boolean | undefined;
|
|
2094
|
+
format?: string | undefined;
|
|
2078
2095
|
file?: any;
|
|
2079
2096
|
refUid?: string | undefined;
|
|
2080
|
-
format?: string | undefined;
|
|
2081
|
-
nullable?: boolean | undefined;
|
|
2082
2097
|
}[];
|
|
2083
2098
|
encoding: "form-data" | "urlencoded";
|
|
2084
2099
|
};
|
|
@@ -2097,10 +2112,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2097
2112
|
required?: boolean | undefined;
|
|
2098
2113
|
description?: string | undefined;
|
|
2099
2114
|
enum?: string[] | undefined;
|
|
2115
|
+
nullable?: boolean | undefined;
|
|
2116
|
+
format?: string | undefined;
|
|
2100
2117
|
file?: any;
|
|
2101
2118
|
refUid?: string | undefined;
|
|
2102
|
-
format?: string | undefined;
|
|
2103
|
-
nullable?: boolean | undefined;
|
|
2104
2119
|
}[];
|
|
2105
2120
|
query: {
|
|
2106
2121
|
value: string;
|
|
@@ -2113,10 +2128,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2113
2128
|
required?: boolean | undefined;
|
|
2114
2129
|
description?: string | undefined;
|
|
2115
2130
|
enum?: string[] | undefined;
|
|
2131
|
+
nullable?: boolean | undefined;
|
|
2132
|
+
format?: string | undefined;
|
|
2116
2133
|
file?: any;
|
|
2117
2134
|
refUid?: string | undefined;
|
|
2118
|
-
format?: string | undefined;
|
|
2119
|
-
nullable?: boolean | undefined;
|
|
2120
2135
|
}[];
|
|
2121
2136
|
headers: {
|
|
2122
2137
|
value: string;
|
|
@@ -2129,10 +2144,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2129
2144
|
required?: boolean | undefined;
|
|
2130
2145
|
description?: string | undefined;
|
|
2131
2146
|
enum?: string[] | undefined;
|
|
2147
|
+
nullable?: boolean | undefined;
|
|
2148
|
+
format?: string | undefined;
|
|
2132
2149
|
file?: any;
|
|
2133
2150
|
refUid?: string | undefined;
|
|
2134
|
-
format?: string | undefined;
|
|
2135
|
-
nullable?: boolean | undefined;
|
|
2136
2151
|
}[];
|
|
2137
2152
|
cookies: {
|
|
2138
2153
|
value: string;
|
|
@@ -2145,10 +2160,10 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2145
2160
|
required?: boolean | undefined;
|
|
2146
2161
|
description?: string | undefined;
|
|
2147
2162
|
enum?: string[] | undefined;
|
|
2163
|
+
nullable?: boolean | undefined;
|
|
2164
|
+
format?: string | undefined;
|
|
2148
2165
|
file?: any;
|
|
2149
2166
|
refUid?: string | undefined;
|
|
2150
|
-
format?: string | undefined;
|
|
2151
|
-
nullable?: boolean | undefined;
|
|
2152
2167
|
}[];
|
|
2153
2168
|
};
|
|
2154
2169
|
auth: Record<string, any>;
|
|
@@ -2804,6 +2819,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2804
2819
|
isReadOnly: boolean;
|
|
2805
2820
|
collectionUids: string[];
|
|
2806
2821
|
environmentUids: string[];
|
|
2822
|
+
activeEnvironmentId: string;
|
|
2807
2823
|
cookieUids: string[];
|
|
2808
2824
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2809
2825
|
hotKeyConfig?: {
|
|
@@ -2822,6 +2838,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2822
2838
|
isReadOnly: boolean;
|
|
2823
2839
|
collectionUids: string[];
|
|
2824
2840
|
environmentUids: string[];
|
|
2841
|
+
activeEnvironmentId: string;
|
|
2825
2842
|
cookieUids: string[];
|
|
2826
2843
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2827
2844
|
hotKeyConfig?: {
|
|
@@ -2842,6 +2859,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2842
2859
|
isReadOnly: boolean;
|
|
2843
2860
|
collectionUids: string[];
|
|
2844
2861
|
environmentUids: string[];
|
|
2862
|
+
activeEnvironmentId: string;
|
|
2845
2863
|
cookieUids: string[];
|
|
2846
2864
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2847
2865
|
hotKeyConfig?: {
|
|
@@ -2853,13 +2871,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2853
2871
|
} | undefined;
|
|
2854
2872
|
proxyUrl?: string | undefined;
|
|
2855
2873
|
}) => void;
|
|
2856
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2874
|
+
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" ? {
|
|
2857
2875
|
uid: string;
|
|
2858
2876
|
name: string;
|
|
2859
2877
|
description: string;
|
|
2860
2878
|
isReadOnly: boolean;
|
|
2861
2879
|
collectionUids: string[];
|
|
2862
2880
|
environmentUids: string[];
|
|
2881
|
+
activeEnvironmentId: string;
|
|
2863
2882
|
cookieUids: string[];
|
|
2864
2883
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2865
2884
|
hotKeyConfig?: {
|
|
@@ -2870,13 +2889,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2870
2889
|
}>> | undefined;
|
|
2871
2890
|
} | undefined;
|
|
2872
2891
|
proxyUrl?: string | undefined;
|
|
2873
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2892
|
+
}[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<{
|
|
2874
2893
|
uid: string;
|
|
2875
2894
|
name: string;
|
|
2876
2895
|
description: string;
|
|
2877
2896
|
isReadOnly: boolean;
|
|
2878
2897
|
collectionUids: string[];
|
|
2879
2898
|
environmentUids: string[];
|
|
2899
|
+
activeEnvironmentId: string;
|
|
2880
2900
|
cookieUids: string[];
|
|
2881
2901
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2882
2902
|
hotKeyConfig?: {
|
|
@@ -2894,6 +2914,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2894
2914
|
isReadOnly: boolean;
|
|
2895
2915
|
collectionUids: string[];
|
|
2896
2916
|
environmentUids: string[];
|
|
2917
|
+
activeEnvironmentId: string;
|
|
2897
2918
|
cookieUids: string[];
|
|
2898
2919
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2899
2920
|
hotKeyConfig?: {
|
|
@@ -2905,13 +2926,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2905
2926
|
} | undefined;
|
|
2906
2927
|
proxyUrl?: string | undefined;
|
|
2907
2928
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2908
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2929
|
+
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" ? {
|
|
2909
2930
|
uid: string;
|
|
2910
2931
|
name: string;
|
|
2911
2932
|
description: string;
|
|
2912
2933
|
isReadOnly: boolean;
|
|
2913
2934
|
collectionUids: string[];
|
|
2914
2935
|
environmentUids: string[];
|
|
2936
|
+
activeEnvironmentId: string;
|
|
2915
2937
|
cookieUids: string[];
|
|
2916
2938
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2917
2939
|
hotKeyConfig?: {
|
|
@@ -2922,13 +2944,14 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2922
2944
|
}>> | undefined;
|
|
2923
2945
|
} | undefined;
|
|
2924
2946
|
proxyUrl?: string | undefined;
|
|
2925
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2947
|
+
}[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<{
|
|
2926
2948
|
uid: string;
|
|
2927
2949
|
name: string;
|
|
2928
2950
|
description: string;
|
|
2929
2951
|
isReadOnly: boolean;
|
|
2930
2952
|
collectionUids: string[];
|
|
2931
2953
|
environmentUids: string[];
|
|
2954
|
+
activeEnvironmentId: string;
|
|
2932
2955
|
cookieUids: string[];
|
|
2933
2956
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2934
2957
|
hotKeyConfig?: {
|
|
@@ -2946,6 +2969,7 @@ export declare const createApiClientModal: (el: HTMLElement | null, configuratio
|
|
|
2946
2969
|
isReadOnly: boolean;
|
|
2947
2970
|
collectionUids: string[];
|
|
2948
2971
|
environmentUids: string[];
|
|
2972
|
+
activeEnvironmentId: string;
|
|
2949
2973
|
cookieUids: string[];
|
|
2950
2974
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2951
2975
|
hotKeyConfig?: {
|
|
@@ -2990,6 +3014,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
2990
3014
|
isReadOnly: boolean;
|
|
2991
3015
|
collectionUids: string[];
|
|
2992
3016
|
environmentUids: string[];
|
|
3017
|
+
activeEnvironmentId: string;
|
|
2993
3018
|
cookieUids: string[];
|
|
2994
3019
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2995
3020
|
hotKeyConfig?: {
|
|
@@ -3079,7 +3104,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3079
3104
|
body: {
|
|
3080
3105
|
raw: {
|
|
3081
3106
|
value: string;
|
|
3082
|
-
encoding: "
|
|
3107
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
3083
3108
|
};
|
|
3084
3109
|
formData: {
|
|
3085
3110
|
value: {
|
|
@@ -3093,10 +3118,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3093
3118
|
required?: boolean | undefined;
|
|
3094
3119
|
description?: string | undefined;
|
|
3095
3120
|
enum?: string[] | undefined;
|
|
3121
|
+
nullable?: boolean | undefined;
|
|
3122
|
+
format?: string | undefined;
|
|
3096
3123
|
file?: any;
|
|
3097
3124
|
refUid?: string | undefined;
|
|
3098
|
-
format?: string | undefined;
|
|
3099
|
-
nullable?: boolean | undefined;
|
|
3100
3125
|
}[];
|
|
3101
3126
|
encoding: "form-data" | "urlencoded";
|
|
3102
3127
|
};
|
|
@@ -3115,10 +3140,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3115
3140
|
required?: boolean | undefined;
|
|
3116
3141
|
description?: string | undefined;
|
|
3117
3142
|
enum?: string[] | undefined;
|
|
3143
|
+
nullable?: boolean | undefined;
|
|
3144
|
+
format?: string | undefined;
|
|
3118
3145
|
file?: any;
|
|
3119
3146
|
refUid?: string | undefined;
|
|
3120
|
-
format?: string | undefined;
|
|
3121
|
-
nullable?: boolean | undefined;
|
|
3122
3147
|
}[];
|
|
3123
3148
|
query: {
|
|
3124
3149
|
value: string;
|
|
@@ -3131,10 +3156,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3131
3156
|
required?: boolean | undefined;
|
|
3132
3157
|
description?: string | undefined;
|
|
3133
3158
|
enum?: string[] | undefined;
|
|
3159
|
+
nullable?: boolean | undefined;
|
|
3160
|
+
format?: string | undefined;
|
|
3134
3161
|
file?: any;
|
|
3135
3162
|
refUid?: string | undefined;
|
|
3136
|
-
format?: string | undefined;
|
|
3137
|
-
nullable?: boolean | undefined;
|
|
3138
3163
|
}[];
|
|
3139
3164
|
headers: {
|
|
3140
3165
|
value: string;
|
|
@@ -3147,10 +3172,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3147
3172
|
required?: boolean | undefined;
|
|
3148
3173
|
description?: string | undefined;
|
|
3149
3174
|
enum?: string[] | undefined;
|
|
3175
|
+
nullable?: boolean | undefined;
|
|
3176
|
+
format?: string | undefined;
|
|
3150
3177
|
file?: any;
|
|
3151
3178
|
refUid?: string | undefined;
|
|
3152
|
-
format?: string | undefined;
|
|
3153
|
-
nullable?: boolean | undefined;
|
|
3154
3179
|
}[];
|
|
3155
3180
|
cookies: {
|
|
3156
3181
|
value: string;
|
|
@@ -3163,10 +3188,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3163
3188
|
required?: boolean | undefined;
|
|
3164
3189
|
description?: string | undefined;
|
|
3165
3190
|
enum?: string[] | undefined;
|
|
3191
|
+
nullable?: boolean | undefined;
|
|
3192
|
+
format?: string | undefined;
|
|
3166
3193
|
file?: any;
|
|
3167
3194
|
refUid?: string | undefined;
|
|
3168
|
-
format?: string | undefined;
|
|
3169
|
-
nullable?: boolean | undefined;
|
|
3170
3195
|
}[];
|
|
3171
3196
|
};
|
|
3172
3197
|
auth: Record<string, any>;
|
|
@@ -3300,7 +3325,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3300
3325
|
body: {
|
|
3301
3326
|
raw: {
|
|
3302
3327
|
value: string;
|
|
3303
|
-
encoding: "
|
|
3328
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
3304
3329
|
};
|
|
3305
3330
|
formData: {
|
|
3306
3331
|
value: {
|
|
@@ -3314,10 +3339,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3314
3339
|
required?: boolean | undefined;
|
|
3315
3340
|
description?: string | undefined;
|
|
3316
3341
|
enum?: string[] | undefined;
|
|
3342
|
+
nullable?: boolean | undefined;
|
|
3343
|
+
format?: string | undefined;
|
|
3317
3344
|
file?: any;
|
|
3318
3345
|
refUid?: string | undefined;
|
|
3319
|
-
format?: string | undefined;
|
|
3320
|
-
nullable?: boolean | undefined;
|
|
3321
3346
|
}[];
|
|
3322
3347
|
encoding: "form-data" | "urlencoded";
|
|
3323
3348
|
};
|
|
@@ -3336,10 +3361,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3336
3361
|
required?: boolean | undefined;
|
|
3337
3362
|
description?: string | undefined;
|
|
3338
3363
|
enum?: string[] | undefined;
|
|
3364
|
+
nullable?: boolean | undefined;
|
|
3365
|
+
format?: string | undefined;
|
|
3339
3366
|
file?: any;
|
|
3340
3367
|
refUid?: string | undefined;
|
|
3341
|
-
format?: string | undefined;
|
|
3342
|
-
nullable?: boolean | undefined;
|
|
3343
3368
|
}[];
|
|
3344
3369
|
query: {
|
|
3345
3370
|
value: string;
|
|
@@ -3352,10 +3377,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3352
3377
|
required?: boolean | undefined;
|
|
3353
3378
|
description?: string | undefined;
|
|
3354
3379
|
enum?: string[] | undefined;
|
|
3380
|
+
nullable?: boolean | undefined;
|
|
3381
|
+
format?: string | undefined;
|
|
3355
3382
|
file?: any;
|
|
3356
3383
|
refUid?: string | undefined;
|
|
3357
|
-
format?: string | undefined;
|
|
3358
|
-
nullable?: boolean | undefined;
|
|
3359
3384
|
}[];
|
|
3360
3385
|
headers: {
|
|
3361
3386
|
value: string;
|
|
@@ -3368,10 +3393,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3368
3393
|
required?: boolean | undefined;
|
|
3369
3394
|
description?: string | undefined;
|
|
3370
3395
|
enum?: string[] | undefined;
|
|
3396
|
+
nullable?: boolean | undefined;
|
|
3397
|
+
format?: string | undefined;
|
|
3371
3398
|
file?: any;
|
|
3372
3399
|
refUid?: string | undefined;
|
|
3373
|
-
format?: string | undefined;
|
|
3374
|
-
nullable?: boolean | undefined;
|
|
3375
3400
|
}[];
|
|
3376
3401
|
cookies: {
|
|
3377
3402
|
value: string;
|
|
@@ -3384,10 +3409,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3384
3409
|
required?: boolean | undefined;
|
|
3385
3410
|
description?: string | undefined;
|
|
3386
3411
|
enum?: string[] | undefined;
|
|
3412
|
+
nullable?: boolean | undefined;
|
|
3413
|
+
format?: string | undefined;
|
|
3387
3414
|
file?: any;
|
|
3388
3415
|
refUid?: string | undefined;
|
|
3389
|
-
format?: string | undefined;
|
|
3390
|
-
nullable?: boolean | undefined;
|
|
3391
3416
|
}[];
|
|
3392
3417
|
};
|
|
3393
3418
|
auth: Record<string, any>;
|
|
@@ -3490,6 +3515,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3490
3515
|
isReadOnly: boolean;
|
|
3491
3516
|
collectionUids: string[];
|
|
3492
3517
|
environmentUids: string[];
|
|
3518
|
+
activeEnvironmentId: string;
|
|
3493
3519
|
cookieUids: string[];
|
|
3494
3520
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3495
3521
|
hotKeyConfig?: {
|
|
@@ -3557,11 +3583,22 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3557
3583
|
key: string;
|
|
3558
3584
|
value: string;
|
|
3559
3585
|
} | {
|
|
3560
|
-
_scalarEnvId:
|
|
3586
|
+
_scalarEnvId: string;
|
|
3561
3587
|
key: string;
|
|
3562
3588
|
value: unknown;
|
|
3563
3589
|
})[]>;
|
|
3564
3590
|
activeWorkspaceRequests: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request[]>;
|
|
3591
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
3592
|
+
uid: string;
|
|
3593
|
+
name: string;
|
|
3594
|
+
color: string;
|
|
3595
|
+
raw: string;
|
|
3596
|
+
parsed: {
|
|
3597
|
+
value: string;
|
|
3598
|
+
key: string;
|
|
3599
|
+
}[];
|
|
3600
|
+
isDefault?: boolean | undefined;
|
|
3601
|
+
}>;
|
|
3565
3602
|
modalState: {
|
|
3566
3603
|
open: boolean;
|
|
3567
3604
|
show: () => void;
|
|
@@ -3572,7 +3609,9 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
3572
3609
|
sidebarWidth: import("vue").Ref<string>;
|
|
3573
3610
|
setSidebarWidth: (width: string) => void;
|
|
3574
3611
|
findRequestFolders: (uid: string, foldersToOpen?: string[]) => string[];
|
|
3575
|
-
importSpecFile: (_spec: string |
|
|
3612
|
+
importSpecFile: (_spec: string | {
|
|
3613
|
+
[x: string]: any;
|
|
3614
|
+
}, workspaceUid?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
3576
3615
|
importSpecFromUrl: (url: string, proxy?: string, overloadServers?: import("@scalar/types/legacy").Spec["servers"]) => Promise<void>;
|
|
3577
3616
|
cookieMutators: {
|
|
3578
3617
|
add: (item: {
|
|
@@ -4228,7 +4267,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4228
4267
|
body: {
|
|
4229
4268
|
raw: {
|
|
4230
4269
|
value: string;
|
|
4231
|
-
encoding: "
|
|
4270
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4232
4271
|
};
|
|
4233
4272
|
formData: {
|
|
4234
4273
|
value: {
|
|
@@ -4242,10 +4281,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4242
4281
|
required?: boolean | undefined;
|
|
4243
4282
|
description?: string | undefined;
|
|
4244
4283
|
enum?: string[] | undefined;
|
|
4284
|
+
nullable?: boolean | undefined;
|
|
4285
|
+
format?: string | undefined;
|
|
4245
4286
|
file?: any;
|
|
4246
4287
|
refUid?: string | undefined;
|
|
4247
|
-
format?: string | undefined;
|
|
4248
|
-
nullable?: boolean | undefined;
|
|
4249
4288
|
}[];
|
|
4250
4289
|
encoding: "form-data" | "urlencoded";
|
|
4251
4290
|
};
|
|
@@ -4264,10 +4303,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4264
4303
|
required?: boolean | undefined;
|
|
4265
4304
|
description?: string | undefined;
|
|
4266
4305
|
enum?: string[] | undefined;
|
|
4306
|
+
nullable?: boolean | undefined;
|
|
4307
|
+
format?: string | undefined;
|
|
4267
4308
|
file?: any;
|
|
4268
4309
|
refUid?: string | undefined;
|
|
4269
|
-
format?: string | undefined;
|
|
4270
|
-
nullable?: boolean | undefined;
|
|
4271
4310
|
}[];
|
|
4272
4311
|
query: {
|
|
4273
4312
|
value: string;
|
|
@@ -4280,10 +4319,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4280
4319
|
required?: boolean | undefined;
|
|
4281
4320
|
description?: string | undefined;
|
|
4282
4321
|
enum?: string[] | undefined;
|
|
4322
|
+
nullable?: boolean | undefined;
|
|
4323
|
+
format?: string | undefined;
|
|
4283
4324
|
file?: any;
|
|
4284
4325
|
refUid?: string | undefined;
|
|
4285
|
-
format?: string | undefined;
|
|
4286
|
-
nullable?: boolean | undefined;
|
|
4287
4326
|
}[];
|
|
4288
4327
|
headers: {
|
|
4289
4328
|
value: string;
|
|
@@ -4296,10 +4335,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4296
4335
|
required?: boolean | undefined;
|
|
4297
4336
|
description?: string | undefined;
|
|
4298
4337
|
enum?: string[] | undefined;
|
|
4338
|
+
nullable?: boolean | undefined;
|
|
4339
|
+
format?: string | undefined;
|
|
4299
4340
|
file?: any;
|
|
4300
4341
|
refUid?: string | undefined;
|
|
4301
|
-
format?: string | undefined;
|
|
4302
|
-
nullable?: boolean | undefined;
|
|
4303
4342
|
}[];
|
|
4304
4343
|
cookies: {
|
|
4305
4344
|
value: string;
|
|
@@ -4312,10 +4351,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4312
4351
|
required?: boolean | undefined;
|
|
4313
4352
|
description?: string | undefined;
|
|
4314
4353
|
enum?: string[] | undefined;
|
|
4354
|
+
nullable?: boolean | undefined;
|
|
4355
|
+
format?: string | undefined;
|
|
4315
4356
|
file?: any;
|
|
4316
4357
|
refUid?: string | undefined;
|
|
4317
|
-
format?: string | undefined;
|
|
4318
|
-
nullable?: boolean | undefined;
|
|
4319
4358
|
}[];
|
|
4320
4359
|
};
|
|
4321
4360
|
auth: Record<string, any>;
|
|
@@ -4328,7 +4367,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4328
4367
|
body: {
|
|
4329
4368
|
raw: {
|
|
4330
4369
|
value: string;
|
|
4331
|
-
encoding: "
|
|
4370
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4332
4371
|
};
|
|
4333
4372
|
formData: {
|
|
4334
4373
|
value: {
|
|
@@ -4342,10 +4381,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4342
4381
|
required?: boolean | undefined;
|
|
4343
4382
|
description?: string | undefined;
|
|
4344
4383
|
enum?: string[] | undefined;
|
|
4384
|
+
nullable?: boolean | undefined;
|
|
4385
|
+
format?: string | undefined;
|
|
4345
4386
|
file?: any;
|
|
4346
4387
|
refUid?: string | undefined;
|
|
4347
|
-
format?: string | undefined;
|
|
4348
|
-
nullable?: boolean | undefined;
|
|
4349
4388
|
}[];
|
|
4350
4389
|
encoding: "form-data" | "urlencoded";
|
|
4351
4390
|
};
|
|
@@ -4364,10 +4403,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4364
4403
|
required?: boolean | undefined;
|
|
4365
4404
|
description?: string | undefined;
|
|
4366
4405
|
enum?: string[] | undefined;
|
|
4406
|
+
nullable?: boolean | undefined;
|
|
4407
|
+
format?: string | undefined;
|
|
4367
4408
|
file?: any;
|
|
4368
4409
|
refUid?: string | undefined;
|
|
4369
|
-
format?: string | undefined;
|
|
4370
|
-
nullable?: boolean | undefined;
|
|
4371
4410
|
}[];
|
|
4372
4411
|
query: {
|
|
4373
4412
|
value: string;
|
|
@@ -4380,10 +4419,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4380
4419
|
required?: boolean | undefined;
|
|
4381
4420
|
description?: string | undefined;
|
|
4382
4421
|
enum?: string[] | undefined;
|
|
4422
|
+
nullable?: boolean | undefined;
|
|
4423
|
+
format?: string | undefined;
|
|
4383
4424
|
file?: any;
|
|
4384
4425
|
refUid?: string | undefined;
|
|
4385
|
-
format?: string | undefined;
|
|
4386
|
-
nullable?: boolean | undefined;
|
|
4387
4426
|
}[];
|
|
4388
4427
|
headers: {
|
|
4389
4428
|
value: string;
|
|
@@ -4396,10 +4435,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4396
4435
|
required?: boolean | undefined;
|
|
4397
4436
|
description?: string | undefined;
|
|
4398
4437
|
enum?: string[] | undefined;
|
|
4438
|
+
nullable?: boolean | undefined;
|
|
4439
|
+
format?: string | undefined;
|
|
4399
4440
|
file?: any;
|
|
4400
4441
|
refUid?: string | undefined;
|
|
4401
|
-
format?: string | undefined;
|
|
4402
|
-
nullable?: boolean | undefined;
|
|
4403
4442
|
}[];
|
|
4404
4443
|
cookies: {
|
|
4405
4444
|
value: string;
|
|
@@ -4412,10 +4451,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4412
4451
|
required?: boolean | undefined;
|
|
4413
4452
|
description?: string | undefined;
|
|
4414
4453
|
enum?: string[] | undefined;
|
|
4454
|
+
nullable?: boolean | undefined;
|
|
4455
|
+
format?: string | undefined;
|
|
4415
4456
|
file?: any;
|
|
4416
4457
|
refUid?: string | undefined;
|
|
4417
|
-
format?: string | undefined;
|
|
4418
|
-
nullable?: boolean | undefined;
|
|
4419
4458
|
}[];
|
|
4420
4459
|
};
|
|
4421
4460
|
auth: Record<string, any>;
|
|
@@ -4429,7 +4468,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4429
4468
|
body: {
|
|
4430
4469
|
raw: {
|
|
4431
4470
|
value: string;
|
|
4432
|
-
encoding: "
|
|
4471
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4433
4472
|
};
|
|
4434
4473
|
formData: {
|
|
4435
4474
|
value: {
|
|
@@ -4443,10 +4482,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4443
4482
|
required?: boolean | undefined;
|
|
4444
4483
|
description?: string | undefined;
|
|
4445
4484
|
enum?: string[] | undefined;
|
|
4485
|
+
nullable?: boolean | undefined;
|
|
4486
|
+
format?: string | undefined;
|
|
4446
4487
|
file?: any;
|
|
4447
4488
|
refUid?: string | undefined;
|
|
4448
|
-
format?: string | undefined;
|
|
4449
|
-
nullable?: boolean | undefined;
|
|
4450
4489
|
}[];
|
|
4451
4490
|
encoding: "form-data" | "urlencoded";
|
|
4452
4491
|
};
|
|
@@ -4465,10 +4504,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4465
4504
|
required?: boolean | undefined;
|
|
4466
4505
|
description?: string | undefined;
|
|
4467
4506
|
enum?: string[] | undefined;
|
|
4507
|
+
nullable?: boolean | undefined;
|
|
4508
|
+
format?: string | undefined;
|
|
4468
4509
|
file?: any;
|
|
4469
4510
|
refUid?: string | undefined;
|
|
4470
|
-
format?: string | undefined;
|
|
4471
|
-
nullable?: boolean | undefined;
|
|
4472
4511
|
}[];
|
|
4473
4512
|
query: {
|
|
4474
4513
|
value: string;
|
|
@@ -4481,10 +4520,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4481
4520
|
required?: boolean | undefined;
|
|
4482
4521
|
description?: string | undefined;
|
|
4483
4522
|
enum?: string[] | undefined;
|
|
4523
|
+
nullable?: boolean | undefined;
|
|
4524
|
+
format?: string | undefined;
|
|
4484
4525
|
file?: any;
|
|
4485
4526
|
refUid?: string | undefined;
|
|
4486
|
-
format?: string | undefined;
|
|
4487
|
-
nullable?: boolean | undefined;
|
|
4488
4527
|
}[];
|
|
4489
4528
|
headers: {
|
|
4490
4529
|
value: string;
|
|
@@ -4497,10 +4536,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4497
4536
|
required?: boolean | undefined;
|
|
4498
4537
|
description?: string | undefined;
|
|
4499
4538
|
enum?: string[] | undefined;
|
|
4539
|
+
nullable?: boolean | undefined;
|
|
4540
|
+
format?: string | undefined;
|
|
4500
4541
|
file?: any;
|
|
4501
4542
|
refUid?: string | undefined;
|
|
4502
|
-
format?: string | undefined;
|
|
4503
|
-
nullable?: boolean | undefined;
|
|
4504
4543
|
}[];
|
|
4505
4544
|
cookies: {
|
|
4506
4545
|
value: string;
|
|
@@ -4513,15 +4552,15 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4513
4552
|
required?: boolean | undefined;
|
|
4514
4553
|
description?: string | undefined;
|
|
4515
4554
|
enum?: string[] | undefined;
|
|
4555
|
+
nullable?: boolean | undefined;
|
|
4556
|
+
format?: string | undefined;
|
|
4516
4557
|
file?: any;
|
|
4517
4558
|
refUid?: string | undefined;
|
|
4518
|
-
format?: string | undefined;
|
|
4519
|
-
nullable?: boolean | undefined;
|
|
4520
4559
|
}[];
|
|
4521
4560
|
};
|
|
4522
4561
|
auth: Record<string, any>;
|
|
4523
4562
|
}) => void;
|
|
4524
|
-
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.
|
|
4563
|
+
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" ? {
|
|
4525
4564
|
uid: string;
|
|
4526
4565
|
name: string;
|
|
4527
4566
|
url: string;
|
|
@@ -4529,7 +4568,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4529
4568
|
body: {
|
|
4530
4569
|
raw: {
|
|
4531
4570
|
value: string;
|
|
4532
|
-
encoding: "
|
|
4571
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4533
4572
|
};
|
|
4534
4573
|
formData: {
|
|
4535
4574
|
value: {
|
|
@@ -4543,10 +4582,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4543
4582
|
required?: boolean | undefined;
|
|
4544
4583
|
description?: string | undefined;
|
|
4545
4584
|
enum?: string[] | undefined;
|
|
4585
|
+
nullable?: boolean | undefined;
|
|
4586
|
+
format?: string | undefined;
|
|
4546
4587
|
file?: any;
|
|
4547
4588
|
refUid?: string | undefined;
|
|
4548
|
-
format?: string | undefined;
|
|
4549
|
-
nullable?: boolean | undefined;
|
|
4550
4589
|
}[];
|
|
4551
4590
|
encoding: "form-data" | "urlencoded";
|
|
4552
4591
|
};
|
|
@@ -4565,10 +4604,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4565
4604
|
required?: boolean | undefined;
|
|
4566
4605
|
description?: string | undefined;
|
|
4567
4606
|
enum?: string[] | undefined;
|
|
4607
|
+
nullable?: boolean | undefined;
|
|
4608
|
+
format?: string | undefined;
|
|
4568
4609
|
file?: any;
|
|
4569
4610
|
refUid?: string | undefined;
|
|
4570
|
-
format?: string | undefined;
|
|
4571
|
-
nullable?: boolean | undefined;
|
|
4572
4611
|
}[];
|
|
4573
4612
|
query: {
|
|
4574
4613
|
value: string;
|
|
@@ -4581,10 +4620,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4581
4620
|
required?: boolean | undefined;
|
|
4582
4621
|
description?: string | undefined;
|
|
4583
4622
|
enum?: string[] | undefined;
|
|
4623
|
+
nullable?: boolean | undefined;
|
|
4624
|
+
format?: string | undefined;
|
|
4584
4625
|
file?: any;
|
|
4585
4626
|
refUid?: string | undefined;
|
|
4586
|
-
format?: string | undefined;
|
|
4587
|
-
nullable?: boolean | undefined;
|
|
4588
4627
|
}[];
|
|
4589
4628
|
headers: {
|
|
4590
4629
|
value: string;
|
|
@@ -4597,10 +4636,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4597
4636
|
required?: boolean | undefined;
|
|
4598
4637
|
description?: string | undefined;
|
|
4599
4638
|
enum?: string[] | undefined;
|
|
4639
|
+
nullable?: boolean | undefined;
|
|
4640
|
+
format?: string | undefined;
|
|
4600
4641
|
file?: any;
|
|
4601
4642
|
refUid?: string | undefined;
|
|
4602
|
-
format?: string | undefined;
|
|
4603
|
-
nullable?: boolean | undefined;
|
|
4604
4643
|
}[];
|
|
4605
4644
|
cookies: {
|
|
4606
4645
|
value: string;
|
|
@@ -4613,10 +4652,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4613
4652
|
required?: boolean | undefined;
|
|
4614
4653
|
description?: string | undefined;
|
|
4615
4654
|
enum?: string[] | undefined;
|
|
4655
|
+
nullable?: boolean | undefined;
|
|
4656
|
+
format?: string | undefined;
|
|
4616
4657
|
file?: any;
|
|
4617
4658
|
refUid?: string | undefined;
|
|
4618
|
-
format?: string | undefined;
|
|
4619
|
-
nullable?: boolean | undefined;
|
|
4620
4659
|
}[];
|
|
4621
4660
|
};
|
|
4622
4661
|
auth: Record<string, any>;
|
|
@@ -4628,7 +4667,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4628
4667
|
body: {
|
|
4629
4668
|
raw: {
|
|
4630
4669
|
value: string;
|
|
4631
|
-
encoding: "
|
|
4670
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4632
4671
|
};
|
|
4633
4672
|
formData: {
|
|
4634
4673
|
value: {
|
|
@@ -4642,10 +4681,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4642
4681
|
required?: boolean | undefined;
|
|
4643
4682
|
description?: string | undefined;
|
|
4644
4683
|
enum?: string[] | undefined;
|
|
4684
|
+
nullable?: boolean | undefined;
|
|
4685
|
+
format?: string | undefined;
|
|
4645
4686
|
file?: any;
|
|
4646
4687
|
refUid?: string | undefined;
|
|
4647
|
-
format?: string | undefined;
|
|
4648
|
-
nullable?: boolean | undefined;
|
|
4649
4688
|
}[];
|
|
4650
4689
|
encoding: "form-data" | "urlencoded";
|
|
4651
4690
|
};
|
|
@@ -4664,10 +4703,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4664
4703
|
required?: boolean | undefined;
|
|
4665
4704
|
description?: string | undefined;
|
|
4666
4705
|
enum?: string[] | undefined;
|
|
4706
|
+
nullable?: boolean | undefined;
|
|
4707
|
+
format?: string | undefined;
|
|
4667
4708
|
file?: any;
|
|
4668
4709
|
refUid?: string | undefined;
|
|
4669
|
-
format?: string | undefined;
|
|
4670
|
-
nullable?: boolean | undefined;
|
|
4671
4710
|
}[];
|
|
4672
4711
|
query: {
|
|
4673
4712
|
value: string;
|
|
@@ -4680,10 +4719,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4680
4719
|
required?: boolean | undefined;
|
|
4681
4720
|
description?: string | undefined;
|
|
4682
4721
|
enum?: string[] | undefined;
|
|
4722
|
+
nullable?: boolean | undefined;
|
|
4723
|
+
format?: string | undefined;
|
|
4683
4724
|
file?: any;
|
|
4684
4725
|
refUid?: string | undefined;
|
|
4685
|
-
format?: string | undefined;
|
|
4686
|
-
nullable?: boolean | undefined;
|
|
4687
4726
|
}[];
|
|
4688
4727
|
headers: {
|
|
4689
4728
|
value: string;
|
|
@@ -4696,10 +4735,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4696
4735
|
required?: boolean | undefined;
|
|
4697
4736
|
description?: string | undefined;
|
|
4698
4737
|
enum?: string[] | undefined;
|
|
4738
|
+
nullable?: boolean | undefined;
|
|
4739
|
+
format?: string | undefined;
|
|
4699
4740
|
file?: any;
|
|
4700
4741
|
refUid?: string | undefined;
|
|
4701
|
-
format?: string | undefined;
|
|
4702
|
-
nullable?: boolean | undefined;
|
|
4703
4742
|
}[];
|
|
4704
4743
|
cookies: {
|
|
4705
4744
|
value: string;
|
|
@@ -4712,10 +4751,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4712
4751
|
required?: boolean | undefined;
|
|
4713
4752
|
description?: string | undefined;
|
|
4714
4753
|
enum?: string[] | undefined;
|
|
4754
|
+
nullable?: boolean | undefined;
|
|
4755
|
+
format?: string | undefined;
|
|
4715
4756
|
file?: any;
|
|
4716
4757
|
refUid?: string | undefined;
|
|
4717
|
-
format?: string | undefined;
|
|
4718
|
-
nullable?: boolean | undefined;
|
|
4719
4758
|
}[];
|
|
4720
4759
|
};
|
|
4721
4760
|
auth: Record<string, any>;
|
|
@@ -4727,7 +4766,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4727
4766
|
body: {
|
|
4728
4767
|
raw: {
|
|
4729
4768
|
value: string;
|
|
4730
|
-
encoding: "
|
|
4769
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4731
4770
|
};
|
|
4732
4771
|
formData: {
|
|
4733
4772
|
value: {
|
|
@@ -4741,10 +4780,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4741
4780
|
required?: boolean | undefined;
|
|
4742
4781
|
description?: string | undefined;
|
|
4743
4782
|
enum?: string[] | undefined;
|
|
4783
|
+
nullable?: boolean | undefined;
|
|
4784
|
+
format?: string | undefined;
|
|
4744
4785
|
file?: any;
|
|
4745
4786
|
refUid?: string | undefined;
|
|
4746
|
-
format?: string | undefined;
|
|
4747
|
-
nullable?: boolean | undefined;
|
|
4748
4787
|
}[];
|
|
4749
4788
|
encoding: "form-data" | "urlencoded";
|
|
4750
4789
|
};
|
|
@@ -4763,10 +4802,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4763
4802
|
required?: boolean | undefined;
|
|
4764
4803
|
description?: string | undefined;
|
|
4765
4804
|
enum?: string[] | undefined;
|
|
4805
|
+
nullable?: boolean | undefined;
|
|
4806
|
+
format?: string | undefined;
|
|
4766
4807
|
file?: any;
|
|
4767
4808
|
refUid?: string | undefined;
|
|
4768
|
-
format?: string | undefined;
|
|
4769
|
-
nullable?: boolean | undefined;
|
|
4770
4809
|
}[];
|
|
4771
4810
|
query: {
|
|
4772
4811
|
value: string;
|
|
@@ -4779,10 +4818,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4779
4818
|
required?: boolean | undefined;
|
|
4780
4819
|
description?: string | undefined;
|
|
4781
4820
|
enum?: string[] | undefined;
|
|
4821
|
+
nullable?: boolean | undefined;
|
|
4822
|
+
format?: string | undefined;
|
|
4782
4823
|
file?: any;
|
|
4783
4824
|
refUid?: string | undefined;
|
|
4784
|
-
format?: string | undefined;
|
|
4785
|
-
nullable?: boolean | undefined;
|
|
4786
4825
|
}[];
|
|
4787
4826
|
headers: {
|
|
4788
4827
|
value: string;
|
|
@@ -4795,10 +4834,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4795
4834
|
required?: boolean | undefined;
|
|
4796
4835
|
description?: string | undefined;
|
|
4797
4836
|
enum?: string[] | undefined;
|
|
4837
|
+
nullable?: boolean | undefined;
|
|
4838
|
+
format?: string | undefined;
|
|
4798
4839
|
file?: any;
|
|
4799
4840
|
refUid?: string | undefined;
|
|
4800
|
-
format?: string | undefined;
|
|
4801
|
-
nullable?: boolean | undefined;
|
|
4802
4841
|
}[];
|
|
4803
4842
|
cookies: {
|
|
4804
4843
|
value: string;
|
|
@@ -4811,15 +4850,15 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4811
4850
|
required?: boolean | undefined;
|
|
4812
4851
|
description?: string | undefined;
|
|
4813
4852
|
enum?: string[] | undefined;
|
|
4853
|
+
nullable?: boolean | undefined;
|
|
4854
|
+
format?: string | undefined;
|
|
4814
4855
|
file?: any;
|
|
4815
4856
|
refUid?: string | undefined;
|
|
4816
|
-
format?: string | undefined;
|
|
4817
|
-
nullable?: boolean | undefined;
|
|
4818
4857
|
}[];
|
|
4819
4858
|
};
|
|
4820
4859
|
auth: Record<string, any>;
|
|
4821
4860
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4822
|
-
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.
|
|
4861
|
+
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" ? {
|
|
4823
4862
|
uid: string;
|
|
4824
4863
|
name: string;
|
|
4825
4864
|
url: string;
|
|
@@ -4827,7 +4866,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4827
4866
|
body: {
|
|
4828
4867
|
raw: {
|
|
4829
4868
|
value: string;
|
|
4830
|
-
encoding: "
|
|
4869
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4831
4870
|
};
|
|
4832
4871
|
formData: {
|
|
4833
4872
|
value: {
|
|
@@ -4841,10 +4880,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4841
4880
|
required?: boolean | undefined;
|
|
4842
4881
|
description?: string | undefined;
|
|
4843
4882
|
enum?: string[] | undefined;
|
|
4883
|
+
nullable?: boolean | undefined;
|
|
4884
|
+
format?: string | undefined;
|
|
4844
4885
|
file?: any;
|
|
4845
4886
|
refUid?: string | undefined;
|
|
4846
|
-
format?: string | undefined;
|
|
4847
|
-
nullable?: boolean | undefined;
|
|
4848
4887
|
}[];
|
|
4849
4888
|
encoding: "form-data" | "urlencoded";
|
|
4850
4889
|
};
|
|
@@ -4863,10 +4902,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4863
4902
|
required?: boolean | undefined;
|
|
4864
4903
|
description?: string | undefined;
|
|
4865
4904
|
enum?: string[] | undefined;
|
|
4905
|
+
nullable?: boolean | undefined;
|
|
4906
|
+
format?: string | undefined;
|
|
4866
4907
|
file?: any;
|
|
4867
4908
|
refUid?: string | undefined;
|
|
4868
|
-
format?: string | undefined;
|
|
4869
|
-
nullable?: boolean | undefined;
|
|
4870
4909
|
}[];
|
|
4871
4910
|
query: {
|
|
4872
4911
|
value: string;
|
|
@@ -4879,10 +4918,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4879
4918
|
required?: boolean | undefined;
|
|
4880
4919
|
description?: string | undefined;
|
|
4881
4920
|
enum?: string[] | undefined;
|
|
4921
|
+
nullable?: boolean | undefined;
|
|
4922
|
+
format?: string | undefined;
|
|
4882
4923
|
file?: any;
|
|
4883
4924
|
refUid?: string | undefined;
|
|
4884
|
-
format?: string | undefined;
|
|
4885
|
-
nullable?: boolean | undefined;
|
|
4886
4925
|
}[];
|
|
4887
4926
|
headers: {
|
|
4888
4927
|
value: string;
|
|
@@ -4895,10 +4934,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4895
4934
|
required?: boolean | undefined;
|
|
4896
4935
|
description?: string | undefined;
|
|
4897
4936
|
enum?: string[] | undefined;
|
|
4937
|
+
nullable?: boolean | undefined;
|
|
4938
|
+
format?: string | undefined;
|
|
4898
4939
|
file?: any;
|
|
4899
4940
|
refUid?: string | undefined;
|
|
4900
|
-
format?: string | undefined;
|
|
4901
|
-
nullable?: boolean | undefined;
|
|
4902
4941
|
}[];
|
|
4903
4942
|
cookies: {
|
|
4904
4943
|
value: string;
|
|
@@ -4911,10 +4950,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4911
4950
|
required?: boolean | undefined;
|
|
4912
4951
|
description?: string | undefined;
|
|
4913
4952
|
enum?: string[] | undefined;
|
|
4953
|
+
nullable?: boolean | undefined;
|
|
4954
|
+
format?: string | undefined;
|
|
4914
4955
|
file?: any;
|
|
4915
4956
|
refUid?: string | undefined;
|
|
4916
|
-
format?: string | undefined;
|
|
4917
|
-
nullable?: boolean | undefined;
|
|
4918
4957
|
}[];
|
|
4919
4958
|
};
|
|
4920
4959
|
auth: Record<string, any>;
|
|
@@ -4926,7 +4965,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4926
4965
|
body: {
|
|
4927
4966
|
raw: {
|
|
4928
4967
|
value: string;
|
|
4929
|
-
encoding: "
|
|
4968
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4930
4969
|
};
|
|
4931
4970
|
formData: {
|
|
4932
4971
|
value: {
|
|
@@ -4940,10 +4979,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4940
4979
|
required?: boolean | undefined;
|
|
4941
4980
|
description?: string | undefined;
|
|
4942
4981
|
enum?: string[] | undefined;
|
|
4982
|
+
nullable?: boolean | undefined;
|
|
4983
|
+
format?: string | undefined;
|
|
4943
4984
|
file?: any;
|
|
4944
4985
|
refUid?: string | undefined;
|
|
4945
|
-
format?: string | undefined;
|
|
4946
|
-
nullable?: boolean | undefined;
|
|
4947
4986
|
}[];
|
|
4948
4987
|
encoding: "form-data" | "urlencoded";
|
|
4949
4988
|
};
|
|
@@ -4962,10 +5001,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4962
5001
|
required?: boolean | undefined;
|
|
4963
5002
|
description?: string | undefined;
|
|
4964
5003
|
enum?: string[] | undefined;
|
|
5004
|
+
nullable?: boolean | undefined;
|
|
5005
|
+
format?: string | undefined;
|
|
4965
5006
|
file?: any;
|
|
4966
5007
|
refUid?: string | undefined;
|
|
4967
|
-
format?: string | undefined;
|
|
4968
|
-
nullable?: boolean | undefined;
|
|
4969
5008
|
}[];
|
|
4970
5009
|
query: {
|
|
4971
5010
|
value: string;
|
|
@@ -4978,10 +5017,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4978
5017
|
required?: boolean | undefined;
|
|
4979
5018
|
description?: string | undefined;
|
|
4980
5019
|
enum?: string[] | undefined;
|
|
5020
|
+
nullable?: boolean | undefined;
|
|
5021
|
+
format?: string | undefined;
|
|
4981
5022
|
file?: any;
|
|
4982
5023
|
refUid?: string | undefined;
|
|
4983
|
-
format?: string | undefined;
|
|
4984
|
-
nullable?: boolean | undefined;
|
|
4985
5024
|
}[];
|
|
4986
5025
|
headers: {
|
|
4987
5026
|
value: string;
|
|
@@ -4994,10 +5033,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
4994
5033
|
required?: boolean | undefined;
|
|
4995
5034
|
description?: string | undefined;
|
|
4996
5035
|
enum?: string[] | undefined;
|
|
5036
|
+
nullable?: boolean | undefined;
|
|
5037
|
+
format?: string | undefined;
|
|
4997
5038
|
file?: any;
|
|
4998
5039
|
refUid?: string | undefined;
|
|
4999
|
-
format?: string | undefined;
|
|
5000
|
-
nullable?: boolean | undefined;
|
|
5001
5040
|
}[];
|
|
5002
5041
|
cookies: {
|
|
5003
5042
|
value: string;
|
|
@@ -5010,10 +5049,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5010
5049
|
required?: boolean | undefined;
|
|
5011
5050
|
description?: string | undefined;
|
|
5012
5051
|
enum?: string[] | undefined;
|
|
5052
|
+
nullable?: boolean | undefined;
|
|
5053
|
+
format?: string | undefined;
|
|
5013
5054
|
file?: any;
|
|
5014
5055
|
refUid?: string | undefined;
|
|
5015
|
-
format?: string | undefined;
|
|
5016
|
-
nullable?: boolean | undefined;
|
|
5017
5056
|
}[];
|
|
5018
5057
|
};
|
|
5019
5058
|
auth: Record<string, any>;
|
|
@@ -5025,7 +5064,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5025
5064
|
body: {
|
|
5026
5065
|
raw: {
|
|
5027
5066
|
value: string;
|
|
5028
|
-
encoding: "
|
|
5067
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
5029
5068
|
};
|
|
5030
5069
|
formData: {
|
|
5031
5070
|
value: {
|
|
@@ -5039,10 +5078,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5039
5078
|
required?: boolean | undefined;
|
|
5040
5079
|
description?: string | undefined;
|
|
5041
5080
|
enum?: string[] | undefined;
|
|
5081
|
+
nullable?: boolean | undefined;
|
|
5082
|
+
format?: string | undefined;
|
|
5042
5083
|
file?: any;
|
|
5043
5084
|
refUid?: string | undefined;
|
|
5044
|
-
format?: string | undefined;
|
|
5045
|
-
nullable?: boolean | undefined;
|
|
5046
5085
|
}[];
|
|
5047
5086
|
encoding: "form-data" | "urlencoded";
|
|
5048
5087
|
};
|
|
@@ -5061,10 +5100,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5061
5100
|
required?: boolean | undefined;
|
|
5062
5101
|
description?: string | undefined;
|
|
5063
5102
|
enum?: string[] | undefined;
|
|
5103
|
+
nullable?: boolean | undefined;
|
|
5104
|
+
format?: string | undefined;
|
|
5064
5105
|
file?: any;
|
|
5065
5106
|
refUid?: string | undefined;
|
|
5066
|
-
format?: string | undefined;
|
|
5067
|
-
nullable?: boolean | undefined;
|
|
5068
5107
|
}[];
|
|
5069
5108
|
query: {
|
|
5070
5109
|
value: string;
|
|
@@ -5077,10 +5116,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5077
5116
|
required?: boolean | undefined;
|
|
5078
5117
|
description?: string | undefined;
|
|
5079
5118
|
enum?: string[] | undefined;
|
|
5119
|
+
nullable?: boolean | undefined;
|
|
5120
|
+
format?: string | undefined;
|
|
5080
5121
|
file?: any;
|
|
5081
5122
|
refUid?: string | undefined;
|
|
5082
|
-
format?: string | undefined;
|
|
5083
|
-
nullable?: boolean | undefined;
|
|
5084
5123
|
}[];
|
|
5085
5124
|
headers: {
|
|
5086
5125
|
value: string;
|
|
@@ -5093,10 +5132,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5093
5132
|
required?: boolean | undefined;
|
|
5094
5133
|
description?: string | undefined;
|
|
5095
5134
|
enum?: string[] | undefined;
|
|
5135
|
+
nullable?: boolean | undefined;
|
|
5136
|
+
format?: string | undefined;
|
|
5096
5137
|
file?: any;
|
|
5097
5138
|
refUid?: string | undefined;
|
|
5098
|
-
format?: string | undefined;
|
|
5099
|
-
nullable?: boolean | undefined;
|
|
5100
5139
|
}[];
|
|
5101
5140
|
cookies: {
|
|
5102
5141
|
value: string;
|
|
@@ -5109,10 +5148,10 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5109
5148
|
required?: boolean | undefined;
|
|
5110
5149
|
description?: string | undefined;
|
|
5111
5150
|
enum?: string[] | undefined;
|
|
5151
|
+
nullable?: boolean | undefined;
|
|
5152
|
+
format?: string | undefined;
|
|
5112
5153
|
file?: any;
|
|
5113
5154
|
refUid?: string | undefined;
|
|
5114
|
-
format?: string | undefined;
|
|
5115
|
-
nullable?: boolean | undefined;
|
|
5116
5155
|
}[];
|
|
5117
5156
|
};
|
|
5118
5157
|
auth: Record<string, any>;
|
|
@@ -5768,6 +5807,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5768
5807
|
isReadOnly: boolean;
|
|
5769
5808
|
collectionUids: string[];
|
|
5770
5809
|
environmentUids: string[];
|
|
5810
|
+
activeEnvironmentId: string;
|
|
5771
5811
|
cookieUids: string[];
|
|
5772
5812
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5773
5813
|
hotKeyConfig?: {
|
|
@@ -5786,6 +5826,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5786
5826
|
isReadOnly: boolean;
|
|
5787
5827
|
collectionUids: string[];
|
|
5788
5828
|
environmentUids: string[];
|
|
5829
|
+
activeEnvironmentId: string;
|
|
5789
5830
|
cookieUids: string[];
|
|
5790
5831
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5791
5832
|
hotKeyConfig?: {
|
|
@@ -5806,6 +5847,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5806
5847
|
isReadOnly: boolean;
|
|
5807
5848
|
collectionUids: string[];
|
|
5808
5849
|
environmentUids: string[];
|
|
5850
|
+
activeEnvironmentId: string;
|
|
5809
5851
|
cookieUids: string[];
|
|
5810
5852
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5811
5853
|
hotKeyConfig?: {
|
|
@@ -5817,13 +5859,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5817
5859
|
} | undefined;
|
|
5818
5860
|
proxyUrl?: string | undefined;
|
|
5819
5861
|
}) => void;
|
|
5820
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
5862
|
+
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" ? {
|
|
5821
5863
|
uid: string;
|
|
5822
5864
|
name: string;
|
|
5823
5865
|
description: string;
|
|
5824
5866
|
isReadOnly: boolean;
|
|
5825
5867
|
collectionUids: string[];
|
|
5826
5868
|
environmentUids: string[];
|
|
5869
|
+
activeEnvironmentId: string;
|
|
5827
5870
|
cookieUids: string[];
|
|
5828
5871
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5829
5872
|
hotKeyConfig?: {
|
|
@@ -5834,13 +5877,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5834
5877
|
}>> | undefined;
|
|
5835
5878
|
} | undefined;
|
|
5836
5879
|
proxyUrl?: string | undefined;
|
|
5837
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5880
|
+
}[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<{
|
|
5838
5881
|
uid: string;
|
|
5839
5882
|
name: string;
|
|
5840
5883
|
description: string;
|
|
5841
5884
|
isReadOnly: boolean;
|
|
5842
5885
|
collectionUids: string[];
|
|
5843
5886
|
environmentUids: string[];
|
|
5887
|
+
activeEnvironmentId: string;
|
|
5844
5888
|
cookieUids: string[];
|
|
5845
5889
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5846
5890
|
hotKeyConfig?: {
|
|
@@ -5858,6 +5902,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5858
5902
|
isReadOnly: boolean;
|
|
5859
5903
|
collectionUids: string[];
|
|
5860
5904
|
environmentUids: string[];
|
|
5905
|
+
activeEnvironmentId: string;
|
|
5861
5906
|
cookieUids: string[];
|
|
5862
5907
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5863
5908
|
hotKeyConfig?: {
|
|
@@ -5869,13 +5914,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5869
5914
|
} | undefined;
|
|
5870
5915
|
proxyUrl?: string | undefined;
|
|
5871
5916
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5872
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
5917
|
+
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" ? {
|
|
5873
5918
|
uid: string;
|
|
5874
5919
|
name: string;
|
|
5875
5920
|
description: string;
|
|
5876
5921
|
isReadOnly: boolean;
|
|
5877
5922
|
collectionUids: string[];
|
|
5878
5923
|
environmentUids: string[];
|
|
5924
|
+
activeEnvironmentId: string;
|
|
5879
5925
|
cookieUids: string[];
|
|
5880
5926
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5881
5927
|
hotKeyConfig?: {
|
|
@@ -5886,13 +5932,14 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5886
5932
|
}>> | undefined;
|
|
5887
5933
|
} | undefined;
|
|
5888
5934
|
proxyUrl?: string | undefined;
|
|
5889
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
5935
|
+
}[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<{
|
|
5890
5936
|
uid: string;
|
|
5891
5937
|
name: string;
|
|
5892
5938
|
description: string;
|
|
5893
5939
|
isReadOnly: boolean;
|
|
5894
5940
|
collectionUids: string[];
|
|
5895
5941
|
environmentUids: string[];
|
|
5942
|
+
activeEnvironmentId: string;
|
|
5896
5943
|
cookieUids: string[];
|
|
5897
5944
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5898
5945
|
hotKeyConfig?: {
|
|
@@ -5910,6 +5957,7 @@ export declare const createApiClientModalSync: (el: HTMLElement | null, configur
|
|
|
5910
5957
|
isReadOnly: boolean;
|
|
5911
5958
|
collectionUids: string[];
|
|
5912
5959
|
environmentUids: string[];
|
|
5960
|
+
activeEnvironmentId: string;
|
|
5913
5961
|
cookieUids: string[];
|
|
5914
5962
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5915
5963
|
hotKeyConfig?: {
|