@scalar/api-client 2.0.60 → 2.0.62
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -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/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 +9 -9
|
@@ -5,9 +5,9 @@ import { type SecurityScheme, type SecuritySchemePayload } from '@scalar/oas-uti
|
|
|
5
5
|
import { type Server, type ServerPayload } from '@scalar/oas-utils/entities/workspace/server';
|
|
6
6
|
import { type Request, type RequestEvent, type RequestExample, type RequestPayload } from '@scalar/oas-utils/entities/workspace/spec';
|
|
7
7
|
import type { Path, PathValue } from '@scalar/object-utils/nested';
|
|
8
|
-
import type { AnyObject } from '@scalar/openapi-parser';
|
|
9
8
|
import type { Spec } from '@scalar/types/legacy';
|
|
10
9
|
import type { Router } from 'vue-router';
|
|
10
|
+
type AnyObject = Record<string, any>;
|
|
11
11
|
export type UpdateScheme = <P extends Path<SecurityScheme>>(path: P, value: NonNullable<PathValue<SecurityScheme, P>>) => void;
|
|
12
12
|
/**
|
|
13
13
|
* Factory for creating the entire store for the api-client
|
|
@@ -21,6 +21,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
21
21
|
isReadOnly: boolean;
|
|
22
22
|
collectionUids: string[];
|
|
23
23
|
environmentUids: string[];
|
|
24
|
+
activeEnvironmentId: string;
|
|
24
25
|
cookieUids: string[];
|
|
25
26
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
26
27
|
hotKeyConfig?: {
|
|
@@ -110,7 +111,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
110
111
|
body: {
|
|
111
112
|
raw: {
|
|
112
113
|
value: string;
|
|
113
|
-
encoding: "
|
|
114
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
114
115
|
};
|
|
115
116
|
formData: {
|
|
116
117
|
value: {
|
|
@@ -124,10 +125,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
124
125
|
required?: boolean | undefined;
|
|
125
126
|
description?: string | undefined;
|
|
126
127
|
enum?: string[] | undefined;
|
|
128
|
+
nullable?: boolean | undefined;
|
|
129
|
+
format?: string | undefined;
|
|
127
130
|
file?: any;
|
|
128
131
|
refUid?: string | undefined;
|
|
129
|
-
format?: string | undefined;
|
|
130
|
-
nullable?: boolean | undefined;
|
|
131
132
|
}[];
|
|
132
133
|
encoding: "form-data" | "urlencoded";
|
|
133
134
|
};
|
|
@@ -146,10 +147,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
146
147
|
required?: boolean | undefined;
|
|
147
148
|
description?: string | undefined;
|
|
148
149
|
enum?: string[] | undefined;
|
|
150
|
+
nullable?: boolean | undefined;
|
|
151
|
+
format?: string | undefined;
|
|
149
152
|
file?: any;
|
|
150
153
|
refUid?: string | undefined;
|
|
151
|
-
format?: string | undefined;
|
|
152
|
-
nullable?: boolean | undefined;
|
|
153
154
|
}[];
|
|
154
155
|
query: {
|
|
155
156
|
value: string;
|
|
@@ -162,10 +163,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
162
163
|
required?: boolean | undefined;
|
|
163
164
|
description?: string | undefined;
|
|
164
165
|
enum?: string[] | undefined;
|
|
166
|
+
nullable?: boolean | undefined;
|
|
167
|
+
format?: string | undefined;
|
|
165
168
|
file?: any;
|
|
166
169
|
refUid?: string | undefined;
|
|
167
|
-
format?: string | undefined;
|
|
168
|
-
nullable?: boolean | undefined;
|
|
169
170
|
}[];
|
|
170
171
|
headers: {
|
|
171
172
|
value: string;
|
|
@@ -178,10 +179,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
178
179
|
required?: boolean | undefined;
|
|
179
180
|
description?: string | undefined;
|
|
180
181
|
enum?: string[] | undefined;
|
|
182
|
+
nullable?: boolean | undefined;
|
|
183
|
+
format?: string | undefined;
|
|
181
184
|
file?: any;
|
|
182
185
|
refUid?: string | undefined;
|
|
183
|
-
format?: string | undefined;
|
|
184
|
-
nullable?: boolean | undefined;
|
|
185
186
|
}[];
|
|
186
187
|
cookies: {
|
|
187
188
|
value: string;
|
|
@@ -194,10 +195,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
194
195
|
required?: boolean | undefined;
|
|
195
196
|
description?: string | undefined;
|
|
196
197
|
enum?: string[] | undefined;
|
|
198
|
+
nullable?: boolean | undefined;
|
|
199
|
+
format?: string | undefined;
|
|
197
200
|
file?: any;
|
|
198
201
|
refUid?: string | undefined;
|
|
199
|
-
format?: string | undefined;
|
|
200
|
-
nullable?: boolean | undefined;
|
|
201
202
|
}[];
|
|
202
203
|
};
|
|
203
204
|
auth: Record<string, any>;
|
|
@@ -331,7 +332,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
331
332
|
body: {
|
|
332
333
|
raw: {
|
|
333
334
|
value: string;
|
|
334
|
-
encoding: "
|
|
335
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
335
336
|
};
|
|
336
337
|
formData: {
|
|
337
338
|
value: {
|
|
@@ -345,10 +346,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
345
346
|
required?: boolean | undefined;
|
|
346
347
|
description?: string | undefined;
|
|
347
348
|
enum?: string[] | undefined;
|
|
349
|
+
nullable?: boolean | undefined;
|
|
350
|
+
format?: string | undefined;
|
|
348
351
|
file?: any;
|
|
349
352
|
refUid?: string | undefined;
|
|
350
|
-
format?: string | undefined;
|
|
351
|
-
nullable?: boolean | undefined;
|
|
352
353
|
}[];
|
|
353
354
|
encoding: "form-data" | "urlencoded";
|
|
354
355
|
};
|
|
@@ -367,10 +368,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
367
368
|
required?: boolean | undefined;
|
|
368
369
|
description?: string | undefined;
|
|
369
370
|
enum?: string[] | undefined;
|
|
371
|
+
nullable?: boolean | undefined;
|
|
372
|
+
format?: string | undefined;
|
|
370
373
|
file?: any;
|
|
371
374
|
refUid?: string | undefined;
|
|
372
|
-
format?: string | undefined;
|
|
373
|
-
nullable?: boolean | undefined;
|
|
374
375
|
}[];
|
|
375
376
|
query: {
|
|
376
377
|
value: string;
|
|
@@ -383,10 +384,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
383
384
|
required?: boolean | undefined;
|
|
384
385
|
description?: string | undefined;
|
|
385
386
|
enum?: string[] | undefined;
|
|
387
|
+
nullable?: boolean | undefined;
|
|
388
|
+
format?: string | undefined;
|
|
386
389
|
file?: any;
|
|
387
390
|
refUid?: string | undefined;
|
|
388
|
-
format?: string | undefined;
|
|
389
|
-
nullable?: boolean | undefined;
|
|
390
391
|
}[];
|
|
391
392
|
headers: {
|
|
392
393
|
value: string;
|
|
@@ -399,10 +400,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
399
400
|
required?: boolean | undefined;
|
|
400
401
|
description?: string | undefined;
|
|
401
402
|
enum?: string[] | undefined;
|
|
403
|
+
nullable?: boolean | undefined;
|
|
404
|
+
format?: string | undefined;
|
|
402
405
|
file?: any;
|
|
403
406
|
refUid?: string | undefined;
|
|
404
|
-
format?: string | undefined;
|
|
405
|
-
nullable?: boolean | undefined;
|
|
406
407
|
}[];
|
|
407
408
|
cookies: {
|
|
408
409
|
value: string;
|
|
@@ -415,10 +416,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
415
416
|
required?: boolean | undefined;
|
|
416
417
|
description?: string | undefined;
|
|
417
418
|
enum?: string[] | undefined;
|
|
419
|
+
nullable?: boolean | undefined;
|
|
420
|
+
format?: string | undefined;
|
|
418
421
|
file?: any;
|
|
419
422
|
refUid?: string | undefined;
|
|
420
|
-
format?: string | undefined;
|
|
421
|
-
nullable?: boolean | undefined;
|
|
422
423
|
}[];
|
|
423
424
|
};
|
|
424
425
|
auth: Record<string, any>;
|
|
@@ -521,6 +522,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
521
522
|
isReadOnly: boolean;
|
|
522
523
|
collectionUids: string[];
|
|
523
524
|
environmentUids: string[];
|
|
525
|
+
activeEnvironmentId: string;
|
|
524
526
|
cookieUids: string[];
|
|
525
527
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
526
528
|
hotKeyConfig?: {
|
|
@@ -588,11 +590,22 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
588
590
|
key: string;
|
|
589
591
|
value: string;
|
|
590
592
|
} | {
|
|
591
|
-
_scalarEnvId:
|
|
593
|
+
_scalarEnvId: string;
|
|
592
594
|
key: string;
|
|
593
595
|
value: unknown;
|
|
594
596
|
})[]>;
|
|
595
597
|
activeWorkspaceRequests: import("vue").ComputedRef<Request[]>;
|
|
598
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
599
|
+
uid: string;
|
|
600
|
+
name: string;
|
|
601
|
+
color: string;
|
|
602
|
+
raw: string;
|
|
603
|
+
parsed: {
|
|
604
|
+
value: string;
|
|
605
|
+
key: string;
|
|
606
|
+
}[];
|
|
607
|
+
isDefault?: boolean | undefined;
|
|
608
|
+
}>;
|
|
596
609
|
modalState: {
|
|
597
610
|
open: boolean;
|
|
598
611
|
show: () => void;
|
|
@@ -1259,7 +1272,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1259
1272
|
body: {
|
|
1260
1273
|
raw: {
|
|
1261
1274
|
value: string;
|
|
1262
|
-
encoding: "
|
|
1275
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1263
1276
|
};
|
|
1264
1277
|
formData: {
|
|
1265
1278
|
value: {
|
|
@@ -1273,10 +1286,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1273
1286
|
required?: boolean | undefined;
|
|
1274
1287
|
description?: string | undefined;
|
|
1275
1288
|
enum?: string[] | undefined;
|
|
1289
|
+
nullable?: boolean | undefined;
|
|
1290
|
+
format?: string | undefined;
|
|
1276
1291
|
file?: any;
|
|
1277
1292
|
refUid?: string | undefined;
|
|
1278
|
-
format?: string | undefined;
|
|
1279
|
-
nullable?: boolean | undefined;
|
|
1280
1293
|
}[];
|
|
1281
1294
|
encoding: "form-data" | "urlencoded";
|
|
1282
1295
|
};
|
|
@@ -1295,10 +1308,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1295
1308
|
required?: boolean | undefined;
|
|
1296
1309
|
description?: string | undefined;
|
|
1297
1310
|
enum?: string[] | undefined;
|
|
1311
|
+
nullable?: boolean | undefined;
|
|
1312
|
+
format?: string | undefined;
|
|
1298
1313
|
file?: any;
|
|
1299
1314
|
refUid?: string | undefined;
|
|
1300
|
-
format?: string | undefined;
|
|
1301
|
-
nullable?: boolean | undefined;
|
|
1302
1315
|
}[];
|
|
1303
1316
|
query: {
|
|
1304
1317
|
value: string;
|
|
@@ -1311,10 +1324,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1311
1324
|
required?: boolean | undefined;
|
|
1312
1325
|
description?: string | undefined;
|
|
1313
1326
|
enum?: string[] | undefined;
|
|
1327
|
+
nullable?: boolean | undefined;
|
|
1328
|
+
format?: string | undefined;
|
|
1314
1329
|
file?: any;
|
|
1315
1330
|
refUid?: string | undefined;
|
|
1316
|
-
format?: string | undefined;
|
|
1317
|
-
nullable?: boolean | undefined;
|
|
1318
1331
|
}[];
|
|
1319
1332
|
headers: {
|
|
1320
1333
|
value: string;
|
|
@@ -1327,10 +1340,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1327
1340
|
required?: boolean | undefined;
|
|
1328
1341
|
description?: string | undefined;
|
|
1329
1342
|
enum?: string[] | undefined;
|
|
1343
|
+
nullable?: boolean | undefined;
|
|
1344
|
+
format?: string | undefined;
|
|
1330
1345
|
file?: any;
|
|
1331
1346
|
refUid?: string | undefined;
|
|
1332
|
-
format?: string | undefined;
|
|
1333
|
-
nullable?: boolean | undefined;
|
|
1334
1347
|
}[];
|
|
1335
1348
|
cookies: {
|
|
1336
1349
|
value: string;
|
|
@@ -1343,10 +1356,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1343
1356
|
required?: boolean | undefined;
|
|
1344
1357
|
description?: string | undefined;
|
|
1345
1358
|
enum?: string[] | undefined;
|
|
1359
|
+
nullable?: boolean | undefined;
|
|
1360
|
+
format?: string | undefined;
|
|
1346
1361
|
file?: any;
|
|
1347
1362
|
refUid?: string | undefined;
|
|
1348
|
-
format?: string | undefined;
|
|
1349
|
-
nullable?: boolean | undefined;
|
|
1350
1363
|
}[];
|
|
1351
1364
|
};
|
|
1352
1365
|
auth: Record<string, any>;
|
|
@@ -1359,7 +1372,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1359
1372
|
body: {
|
|
1360
1373
|
raw: {
|
|
1361
1374
|
value: string;
|
|
1362
|
-
encoding: "
|
|
1375
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1363
1376
|
};
|
|
1364
1377
|
formData: {
|
|
1365
1378
|
value: {
|
|
@@ -1373,10 +1386,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1373
1386
|
required?: boolean | undefined;
|
|
1374
1387
|
description?: string | undefined;
|
|
1375
1388
|
enum?: string[] | undefined;
|
|
1389
|
+
nullable?: boolean | undefined;
|
|
1390
|
+
format?: string | undefined;
|
|
1376
1391
|
file?: any;
|
|
1377
1392
|
refUid?: string | undefined;
|
|
1378
|
-
format?: string | undefined;
|
|
1379
|
-
nullable?: boolean | undefined;
|
|
1380
1393
|
}[];
|
|
1381
1394
|
encoding: "form-data" | "urlencoded";
|
|
1382
1395
|
};
|
|
@@ -1395,10 +1408,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1395
1408
|
required?: boolean | undefined;
|
|
1396
1409
|
description?: string | undefined;
|
|
1397
1410
|
enum?: string[] | undefined;
|
|
1411
|
+
nullable?: boolean | undefined;
|
|
1412
|
+
format?: string | undefined;
|
|
1398
1413
|
file?: any;
|
|
1399
1414
|
refUid?: string | undefined;
|
|
1400
|
-
format?: string | undefined;
|
|
1401
|
-
nullable?: boolean | undefined;
|
|
1402
1415
|
}[];
|
|
1403
1416
|
query: {
|
|
1404
1417
|
value: string;
|
|
@@ -1411,10 +1424,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1411
1424
|
required?: boolean | undefined;
|
|
1412
1425
|
description?: string | undefined;
|
|
1413
1426
|
enum?: string[] | undefined;
|
|
1427
|
+
nullable?: boolean | undefined;
|
|
1428
|
+
format?: string | undefined;
|
|
1414
1429
|
file?: any;
|
|
1415
1430
|
refUid?: string | undefined;
|
|
1416
|
-
format?: string | undefined;
|
|
1417
|
-
nullable?: boolean | undefined;
|
|
1418
1431
|
}[];
|
|
1419
1432
|
headers: {
|
|
1420
1433
|
value: string;
|
|
@@ -1427,10 +1440,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1427
1440
|
required?: boolean | undefined;
|
|
1428
1441
|
description?: string | undefined;
|
|
1429
1442
|
enum?: string[] | undefined;
|
|
1443
|
+
nullable?: boolean | undefined;
|
|
1444
|
+
format?: string | undefined;
|
|
1430
1445
|
file?: any;
|
|
1431
1446
|
refUid?: string | undefined;
|
|
1432
|
-
format?: string | undefined;
|
|
1433
|
-
nullable?: boolean | undefined;
|
|
1434
1447
|
}[];
|
|
1435
1448
|
cookies: {
|
|
1436
1449
|
value: string;
|
|
@@ -1443,10 +1456,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1443
1456
|
required?: boolean | undefined;
|
|
1444
1457
|
description?: string | undefined;
|
|
1445
1458
|
enum?: string[] | undefined;
|
|
1459
|
+
nullable?: boolean | undefined;
|
|
1460
|
+
format?: string | undefined;
|
|
1446
1461
|
file?: any;
|
|
1447
1462
|
refUid?: string | undefined;
|
|
1448
|
-
format?: string | undefined;
|
|
1449
|
-
nullable?: boolean | undefined;
|
|
1450
1463
|
}[];
|
|
1451
1464
|
};
|
|
1452
1465
|
auth: Record<string, any>;
|
|
@@ -1460,7 +1473,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1460
1473
|
body: {
|
|
1461
1474
|
raw: {
|
|
1462
1475
|
value: string;
|
|
1463
|
-
encoding: "
|
|
1476
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1464
1477
|
};
|
|
1465
1478
|
formData: {
|
|
1466
1479
|
value: {
|
|
@@ -1474,10 +1487,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1474
1487
|
required?: boolean | undefined;
|
|
1475
1488
|
description?: string | undefined;
|
|
1476
1489
|
enum?: string[] | undefined;
|
|
1490
|
+
nullable?: boolean | undefined;
|
|
1491
|
+
format?: string | undefined;
|
|
1477
1492
|
file?: any;
|
|
1478
1493
|
refUid?: string | undefined;
|
|
1479
|
-
format?: string | undefined;
|
|
1480
|
-
nullable?: boolean | undefined;
|
|
1481
1494
|
}[];
|
|
1482
1495
|
encoding: "form-data" | "urlencoded";
|
|
1483
1496
|
};
|
|
@@ -1496,10 +1509,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1496
1509
|
required?: boolean | undefined;
|
|
1497
1510
|
description?: string | undefined;
|
|
1498
1511
|
enum?: string[] | undefined;
|
|
1512
|
+
nullable?: boolean | undefined;
|
|
1513
|
+
format?: string | undefined;
|
|
1499
1514
|
file?: any;
|
|
1500
1515
|
refUid?: string | undefined;
|
|
1501
|
-
format?: string | undefined;
|
|
1502
|
-
nullable?: boolean | undefined;
|
|
1503
1516
|
}[];
|
|
1504
1517
|
query: {
|
|
1505
1518
|
value: string;
|
|
@@ -1512,10 +1525,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1512
1525
|
required?: boolean | undefined;
|
|
1513
1526
|
description?: string | undefined;
|
|
1514
1527
|
enum?: string[] | undefined;
|
|
1528
|
+
nullable?: boolean | undefined;
|
|
1529
|
+
format?: string | undefined;
|
|
1515
1530
|
file?: any;
|
|
1516
1531
|
refUid?: string | undefined;
|
|
1517
|
-
format?: string | undefined;
|
|
1518
|
-
nullable?: boolean | undefined;
|
|
1519
1532
|
}[];
|
|
1520
1533
|
headers: {
|
|
1521
1534
|
value: string;
|
|
@@ -1528,10 +1541,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1528
1541
|
required?: boolean | undefined;
|
|
1529
1542
|
description?: string | undefined;
|
|
1530
1543
|
enum?: string[] | undefined;
|
|
1544
|
+
nullable?: boolean | undefined;
|
|
1545
|
+
format?: string | undefined;
|
|
1531
1546
|
file?: any;
|
|
1532
1547
|
refUid?: string | undefined;
|
|
1533
|
-
format?: string | undefined;
|
|
1534
|
-
nullable?: boolean | undefined;
|
|
1535
1548
|
}[];
|
|
1536
1549
|
cookies: {
|
|
1537
1550
|
value: string;
|
|
@@ -1544,15 +1557,15 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1544
1557
|
required?: boolean | undefined;
|
|
1545
1558
|
description?: string | undefined;
|
|
1546
1559
|
enum?: string[] | undefined;
|
|
1560
|
+
nullable?: boolean | undefined;
|
|
1561
|
+
format?: string | undefined;
|
|
1547
1562
|
file?: any;
|
|
1548
1563
|
refUid?: string | undefined;
|
|
1549
|
-
format?: string | undefined;
|
|
1550
|
-
nullable?: boolean | undefined;
|
|
1551
1564
|
}[];
|
|
1552
1565
|
};
|
|
1553
1566
|
auth: Record<string, any>;
|
|
1554
1567
|
}) => void;
|
|
1555
|
-
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}.
|
|
1568
|
+
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" ? {
|
|
1556
1569
|
uid: string;
|
|
1557
1570
|
name: string;
|
|
1558
1571
|
url: string;
|
|
@@ -1560,7 +1573,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1560
1573
|
body: {
|
|
1561
1574
|
raw: {
|
|
1562
1575
|
value: string;
|
|
1563
|
-
encoding: "
|
|
1576
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1564
1577
|
};
|
|
1565
1578
|
formData: {
|
|
1566
1579
|
value: {
|
|
@@ -1574,10 +1587,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1574
1587
|
required?: boolean | undefined;
|
|
1575
1588
|
description?: string | undefined;
|
|
1576
1589
|
enum?: string[] | undefined;
|
|
1590
|
+
nullable?: boolean | undefined;
|
|
1591
|
+
format?: string | undefined;
|
|
1577
1592
|
file?: any;
|
|
1578
1593
|
refUid?: string | undefined;
|
|
1579
|
-
format?: string | undefined;
|
|
1580
|
-
nullable?: boolean | undefined;
|
|
1581
1594
|
}[];
|
|
1582
1595
|
encoding: "form-data" | "urlencoded";
|
|
1583
1596
|
};
|
|
@@ -1596,10 +1609,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1596
1609
|
required?: boolean | undefined;
|
|
1597
1610
|
description?: string | undefined;
|
|
1598
1611
|
enum?: string[] | undefined;
|
|
1612
|
+
nullable?: boolean | undefined;
|
|
1613
|
+
format?: string | undefined;
|
|
1599
1614
|
file?: any;
|
|
1600
1615
|
refUid?: string | undefined;
|
|
1601
|
-
format?: string | undefined;
|
|
1602
|
-
nullable?: boolean | undefined;
|
|
1603
1616
|
}[];
|
|
1604
1617
|
query: {
|
|
1605
1618
|
value: string;
|
|
@@ -1612,10 +1625,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1612
1625
|
required?: boolean | undefined;
|
|
1613
1626
|
description?: string | undefined;
|
|
1614
1627
|
enum?: string[] | undefined;
|
|
1628
|
+
nullable?: boolean | undefined;
|
|
1629
|
+
format?: string | undefined;
|
|
1615
1630
|
file?: any;
|
|
1616
1631
|
refUid?: string | undefined;
|
|
1617
|
-
format?: string | undefined;
|
|
1618
|
-
nullable?: boolean | undefined;
|
|
1619
1632
|
}[];
|
|
1620
1633
|
headers: {
|
|
1621
1634
|
value: string;
|
|
@@ -1628,10 +1641,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1628
1641
|
required?: boolean | undefined;
|
|
1629
1642
|
description?: string | undefined;
|
|
1630
1643
|
enum?: string[] | undefined;
|
|
1644
|
+
nullable?: boolean | undefined;
|
|
1645
|
+
format?: string | undefined;
|
|
1631
1646
|
file?: any;
|
|
1632
1647
|
refUid?: string | undefined;
|
|
1633
|
-
format?: string | undefined;
|
|
1634
|
-
nullable?: boolean | undefined;
|
|
1635
1648
|
}[];
|
|
1636
1649
|
cookies: {
|
|
1637
1650
|
value: string;
|
|
@@ -1644,10 +1657,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1644
1657
|
required?: boolean | undefined;
|
|
1645
1658
|
description?: string | undefined;
|
|
1646
1659
|
enum?: string[] | undefined;
|
|
1660
|
+
nullable?: boolean | undefined;
|
|
1661
|
+
format?: string | undefined;
|
|
1647
1662
|
file?: any;
|
|
1648
1663
|
refUid?: string | undefined;
|
|
1649
|
-
format?: string | undefined;
|
|
1650
|
-
nullable?: boolean | undefined;
|
|
1651
1664
|
}[];
|
|
1652
1665
|
};
|
|
1653
1666
|
auth: Record<string, any>;
|
|
@@ -1659,7 +1672,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1659
1672
|
body: {
|
|
1660
1673
|
raw: {
|
|
1661
1674
|
value: string;
|
|
1662
|
-
encoding: "
|
|
1675
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1663
1676
|
};
|
|
1664
1677
|
formData: {
|
|
1665
1678
|
value: {
|
|
@@ -1673,10 +1686,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1673
1686
|
required?: boolean | undefined;
|
|
1674
1687
|
description?: string | undefined;
|
|
1675
1688
|
enum?: string[] | undefined;
|
|
1689
|
+
nullable?: boolean | undefined;
|
|
1690
|
+
format?: string | undefined;
|
|
1676
1691
|
file?: any;
|
|
1677
1692
|
refUid?: string | undefined;
|
|
1678
|
-
format?: string | undefined;
|
|
1679
|
-
nullable?: boolean | undefined;
|
|
1680
1693
|
}[];
|
|
1681
1694
|
encoding: "form-data" | "urlencoded";
|
|
1682
1695
|
};
|
|
@@ -1695,10 +1708,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1695
1708
|
required?: boolean | undefined;
|
|
1696
1709
|
description?: string | undefined;
|
|
1697
1710
|
enum?: string[] | undefined;
|
|
1711
|
+
nullable?: boolean | undefined;
|
|
1712
|
+
format?: string | undefined;
|
|
1698
1713
|
file?: any;
|
|
1699
1714
|
refUid?: string | undefined;
|
|
1700
|
-
format?: string | undefined;
|
|
1701
|
-
nullable?: boolean | undefined;
|
|
1702
1715
|
}[];
|
|
1703
1716
|
query: {
|
|
1704
1717
|
value: string;
|
|
@@ -1711,10 +1724,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1711
1724
|
required?: boolean | undefined;
|
|
1712
1725
|
description?: string | undefined;
|
|
1713
1726
|
enum?: string[] | undefined;
|
|
1727
|
+
nullable?: boolean | undefined;
|
|
1728
|
+
format?: string | undefined;
|
|
1714
1729
|
file?: any;
|
|
1715
1730
|
refUid?: string | undefined;
|
|
1716
|
-
format?: string | undefined;
|
|
1717
|
-
nullable?: boolean | undefined;
|
|
1718
1731
|
}[];
|
|
1719
1732
|
headers: {
|
|
1720
1733
|
value: string;
|
|
@@ -1727,10 +1740,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1727
1740
|
required?: boolean | undefined;
|
|
1728
1741
|
description?: string | undefined;
|
|
1729
1742
|
enum?: string[] | undefined;
|
|
1743
|
+
nullable?: boolean | undefined;
|
|
1744
|
+
format?: string | undefined;
|
|
1730
1745
|
file?: any;
|
|
1731
1746
|
refUid?: string | undefined;
|
|
1732
|
-
format?: string | undefined;
|
|
1733
|
-
nullable?: boolean | undefined;
|
|
1734
1747
|
}[];
|
|
1735
1748
|
cookies: {
|
|
1736
1749
|
value: string;
|
|
@@ -1743,10 +1756,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1743
1756
|
required?: boolean | undefined;
|
|
1744
1757
|
description?: string | undefined;
|
|
1745
1758
|
enum?: string[] | undefined;
|
|
1759
|
+
nullable?: boolean | undefined;
|
|
1760
|
+
format?: string | undefined;
|
|
1746
1761
|
file?: any;
|
|
1747
1762
|
refUid?: string | undefined;
|
|
1748
|
-
format?: string | undefined;
|
|
1749
|
-
nullable?: boolean | undefined;
|
|
1750
1763
|
}[];
|
|
1751
1764
|
};
|
|
1752
1765
|
auth: Record<string, any>;
|
|
@@ -1758,7 +1771,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1758
1771
|
body: {
|
|
1759
1772
|
raw: {
|
|
1760
1773
|
value: string;
|
|
1761
|
-
encoding: "
|
|
1774
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1762
1775
|
};
|
|
1763
1776
|
formData: {
|
|
1764
1777
|
value: {
|
|
@@ -1772,10 +1785,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1772
1785
|
required?: boolean | undefined;
|
|
1773
1786
|
description?: string | undefined;
|
|
1774
1787
|
enum?: string[] | undefined;
|
|
1788
|
+
nullable?: boolean | undefined;
|
|
1789
|
+
format?: string | undefined;
|
|
1775
1790
|
file?: any;
|
|
1776
1791
|
refUid?: string | undefined;
|
|
1777
|
-
format?: string | undefined;
|
|
1778
|
-
nullable?: boolean | undefined;
|
|
1779
1792
|
}[];
|
|
1780
1793
|
encoding: "form-data" | "urlencoded";
|
|
1781
1794
|
};
|
|
@@ -1794,10 +1807,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1794
1807
|
required?: boolean | undefined;
|
|
1795
1808
|
description?: string | undefined;
|
|
1796
1809
|
enum?: string[] | undefined;
|
|
1810
|
+
nullable?: boolean | undefined;
|
|
1811
|
+
format?: string | undefined;
|
|
1797
1812
|
file?: any;
|
|
1798
1813
|
refUid?: string | undefined;
|
|
1799
|
-
format?: string | undefined;
|
|
1800
|
-
nullable?: boolean | undefined;
|
|
1801
1814
|
}[];
|
|
1802
1815
|
query: {
|
|
1803
1816
|
value: string;
|
|
@@ -1810,10 +1823,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1810
1823
|
required?: boolean | undefined;
|
|
1811
1824
|
description?: string | undefined;
|
|
1812
1825
|
enum?: string[] | undefined;
|
|
1826
|
+
nullable?: boolean | undefined;
|
|
1827
|
+
format?: string | undefined;
|
|
1813
1828
|
file?: any;
|
|
1814
1829
|
refUid?: string | undefined;
|
|
1815
|
-
format?: string | undefined;
|
|
1816
|
-
nullable?: boolean | undefined;
|
|
1817
1830
|
}[];
|
|
1818
1831
|
headers: {
|
|
1819
1832
|
value: string;
|
|
@@ -1826,10 +1839,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1826
1839
|
required?: boolean | undefined;
|
|
1827
1840
|
description?: string | undefined;
|
|
1828
1841
|
enum?: string[] | undefined;
|
|
1842
|
+
nullable?: boolean | undefined;
|
|
1843
|
+
format?: string | undefined;
|
|
1829
1844
|
file?: any;
|
|
1830
1845
|
refUid?: string | undefined;
|
|
1831
|
-
format?: string | undefined;
|
|
1832
|
-
nullable?: boolean | undefined;
|
|
1833
1846
|
}[];
|
|
1834
1847
|
cookies: {
|
|
1835
1848
|
value: string;
|
|
@@ -1842,15 +1855,15 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1842
1855
|
required?: boolean | undefined;
|
|
1843
1856
|
description?: string | undefined;
|
|
1844
1857
|
enum?: string[] | undefined;
|
|
1858
|
+
nullable?: boolean | undefined;
|
|
1859
|
+
format?: string | undefined;
|
|
1845
1860
|
file?: any;
|
|
1846
1861
|
refUid?: string | undefined;
|
|
1847
|
-
format?: string | undefined;
|
|
1848
|
-
nullable?: boolean | undefined;
|
|
1849
1862
|
}[];
|
|
1850
1863
|
};
|
|
1851
1864
|
auth: Record<string, any>;
|
|
1852
1865
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1853
|
-
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}.
|
|
1866
|
+
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" ? {
|
|
1854
1867
|
uid: string;
|
|
1855
1868
|
name: string;
|
|
1856
1869
|
url: string;
|
|
@@ -1858,7 +1871,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1858
1871
|
body: {
|
|
1859
1872
|
raw: {
|
|
1860
1873
|
value: string;
|
|
1861
|
-
encoding: "
|
|
1874
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1862
1875
|
};
|
|
1863
1876
|
formData: {
|
|
1864
1877
|
value: {
|
|
@@ -1872,10 +1885,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1872
1885
|
required?: boolean | undefined;
|
|
1873
1886
|
description?: string | undefined;
|
|
1874
1887
|
enum?: string[] | undefined;
|
|
1888
|
+
nullable?: boolean | undefined;
|
|
1889
|
+
format?: string | undefined;
|
|
1875
1890
|
file?: any;
|
|
1876
1891
|
refUid?: string | undefined;
|
|
1877
|
-
format?: string | undefined;
|
|
1878
|
-
nullable?: boolean | undefined;
|
|
1879
1892
|
}[];
|
|
1880
1893
|
encoding: "form-data" | "urlencoded";
|
|
1881
1894
|
};
|
|
@@ -1894,10 +1907,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1894
1907
|
required?: boolean | undefined;
|
|
1895
1908
|
description?: string | undefined;
|
|
1896
1909
|
enum?: string[] | undefined;
|
|
1910
|
+
nullable?: boolean | undefined;
|
|
1911
|
+
format?: string | undefined;
|
|
1897
1912
|
file?: any;
|
|
1898
1913
|
refUid?: string | undefined;
|
|
1899
|
-
format?: string | undefined;
|
|
1900
|
-
nullable?: boolean | undefined;
|
|
1901
1914
|
}[];
|
|
1902
1915
|
query: {
|
|
1903
1916
|
value: string;
|
|
@@ -1910,10 +1923,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1910
1923
|
required?: boolean | undefined;
|
|
1911
1924
|
description?: string | undefined;
|
|
1912
1925
|
enum?: string[] | undefined;
|
|
1926
|
+
nullable?: boolean | undefined;
|
|
1927
|
+
format?: string | undefined;
|
|
1913
1928
|
file?: any;
|
|
1914
1929
|
refUid?: string | undefined;
|
|
1915
|
-
format?: string | undefined;
|
|
1916
|
-
nullable?: boolean | undefined;
|
|
1917
1930
|
}[];
|
|
1918
1931
|
headers: {
|
|
1919
1932
|
value: string;
|
|
@@ -1926,10 +1939,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1926
1939
|
required?: boolean | undefined;
|
|
1927
1940
|
description?: string | undefined;
|
|
1928
1941
|
enum?: string[] | undefined;
|
|
1942
|
+
nullable?: boolean | undefined;
|
|
1943
|
+
format?: string | undefined;
|
|
1929
1944
|
file?: any;
|
|
1930
1945
|
refUid?: string | undefined;
|
|
1931
|
-
format?: string | undefined;
|
|
1932
|
-
nullable?: boolean | undefined;
|
|
1933
1946
|
}[];
|
|
1934
1947
|
cookies: {
|
|
1935
1948
|
value: string;
|
|
@@ -1942,10 +1955,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1942
1955
|
required?: boolean | undefined;
|
|
1943
1956
|
description?: string | undefined;
|
|
1944
1957
|
enum?: string[] | undefined;
|
|
1958
|
+
nullable?: boolean | undefined;
|
|
1959
|
+
format?: string | undefined;
|
|
1945
1960
|
file?: any;
|
|
1946
1961
|
refUid?: string | undefined;
|
|
1947
|
-
format?: string | undefined;
|
|
1948
|
-
nullable?: boolean | undefined;
|
|
1949
1962
|
}[];
|
|
1950
1963
|
};
|
|
1951
1964
|
auth: Record<string, any>;
|
|
@@ -1957,7 +1970,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1957
1970
|
body: {
|
|
1958
1971
|
raw: {
|
|
1959
1972
|
value: string;
|
|
1960
|
-
encoding: "
|
|
1973
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
1961
1974
|
};
|
|
1962
1975
|
formData: {
|
|
1963
1976
|
value: {
|
|
@@ -1971,10 +1984,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1971
1984
|
required?: boolean | undefined;
|
|
1972
1985
|
description?: string | undefined;
|
|
1973
1986
|
enum?: string[] | undefined;
|
|
1987
|
+
nullable?: boolean | undefined;
|
|
1988
|
+
format?: string | undefined;
|
|
1974
1989
|
file?: any;
|
|
1975
1990
|
refUid?: string | undefined;
|
|
1976
|
-
format?: string | undefined;
|
|
1977
|
-
nullable?: boolean | undefined;
|
|
1978
1991
|
}[];
|
|
1979
1992
|
encoding: "form-data" | "urlencoded";
|
|
1980
1993
|
};
|
|
@@ -1993,10 +2006,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
1993
2006
|
required?: boolean | undefined;
|
|
1994
2007
|
description?: string | undefined;
|
|
1995
2008
|
enum?: string[] | undefined;
|
|
2009
|
+
nullable?: boolean | undefined;
|
|
2010
|
+
format?: string | undefined;
|
|
1996
2011
|
file?: any;
|
|
1997
2012
|
refUid?: string | undefined;
|
|
1998
|
-
format?: string | undefined;
|
|
1999
|
-
nullable?: boolean | undefined;
|
|
2000
2013
|
}[];
|
|
2001
2014
|
query: {
|
|
2002
2015
|
value: string;
|
|
@@ -2009,10 +2022,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2009
2022
|
required?: boolean | undefined;
|
|
2010
2023
|
description?: string | undefined;
|
|
2011
2024
|
enum?: string[] | undefined;
|
|
2025
|
+
nullable?: boolean | undefined;
|
|
2026
|
+
format?: string | undefined;
|
|
2012
2027
|
file?: any;
|
|
2013
2028
|
refUid?: string | undefined;
|
|
2014
|
-
format?: string | undefined;
|
|
2015
|
-
nullable?: boolean | undefined;
|
|
2016
2029
|
}[];
|
|
2017
2030
|
headers: {
|
|
2018
2031
|
value: string;
|
|
@@ -2025,10 +2038,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2025
2038
|
required?: boolean | undefined;
|
|
2026
2039
|
description?: string | undefined;
|
|
2027
2040
|
enum?: string[] | undefined;
|
|
2041
|
+
nullable?: boolean | undefined;
|
|
2042
|
+
format?: string | undefined;
|
|
2028
2043
|
file?: any;
|
|
2029
2044
|
refUid?: string | undefined;
|
|
2030
|
-
format?: string | undefined;
|
|
2031
|
-
nullable?: boolean | undefined;
|
|
2032
2045
|
}[];
|
|
2033
2046
|
cookies: {
|
|
2034
2047
|
value: string;
|
|
@@ -2041,10 +2054,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2041
2054
|
required?: boolean | undefined;
|
|
2042
2055
|
description?: string | undefined;
|
|
2043
2056
|
enum?: string[] | undefined;
|
|
2057
|
+
nullable?: boolean | undefined;
|
|
2058
|
+
format?: string | undefined;
|
|
2044
2059
|
file?: any;
|
|
2045
2060
|
refUid?: string | undefined;
|
|
2046
|
-
format?: string | undefined;
|
|
2047
|
-
nullable?: boolean | undefined;
|
|
2048
2061
|
}[];
|
|
2049
2062
|
};
|
|
2050
2063
|
auth: Record<string, any>;
|
|
@@ -2056,7 +2069,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2056
2069
|
body: {
|
|
2057
2070
|
raw: {
|
|
2058
2071
|
value: string;
|
|
2059
|
-
encoding: "
|
|
2072
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
2060
2073
|
};
|
|
2061
2074
|
formData: {
|
|
2062
2075
|
value: {
|
|
@@ -2070,10 +2083,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2070
2083
|
required?: boolean | undefined;
|
|
2071
2084
|
description?: string | undefined;
|
|
2072
2085
|
enum?: string[] | undefined;
|
|
2086
|
+
nullable?: boolean | undefined;
|
|
2087
|
+
format?: string | undefined;
|
|
2073
2088
|
file?: any;
|
|
2074
2089
|
refUid?: string | undefined;
|
|
2075
|
-
format?: string | undefined;
|
|
2076
|
-
nullable?: boolean | undefined;
|
|
2077
2090
|
}[];
|
|
2078
2091
|
encoding: "form-data" | "urlencoded";
|
|
2079
2092
|
};
|
|
@@ -2092,10 +2105,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2092
2105
|
required?: boolean | undefined;
|
|
2093
2106
|
description?: string | undefined;
|
|
2094
2107
|
enum?: string[] | undefined;
|
|
2108
|
+
nullable?: boolean | undefined;
|
|
2109
|
+
format?: string | undefined;
|
|
2095
2110
|
file?: any;
|
|
2096
2111
|
refUid?: string | undefined;
|
|
2097
|
-
format?: string | undefined;
|
|
2098
|
-
nullable?: boolean | undefined;
|
|
2099
2112
|
}[];
|
|
2100
2113
|
query: {
|
|
2101
2114
|
value: string;
|
|
@@ -2108,10 +2121,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2108
2121
|
required?: boolean | undefined;
|
|
2109
2122
|
description?: string | undefined;
|
|
2110
2123
|
enum?: string[] | undefined;
|
|
2124
|
+
nullable?: boolean | undefined;
|
|
2125
|
+
format?: string | undefined;
|
|
2111
2126
|
file?: any;
|
|
2112
2127
|
refUid?: string | undefined;
|
|
2113
|
-
format?: string | undefined;
|
|
2114
|
-
nullable?: boolean | undefined;
|
|
2115
2128
|
}[];
|
|
2116
2129
|
headers: {
|
|
2117
2130
|
value: string;
|
|
@@ -2124,10 +2137,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2124
2137
|
required?: boolean | undefined;
|
|
2125
2138
|
description?: string | undefined;
|
|
2126
2139
|
enum?: string[] | undefined;
|
|
2140
|
+
nullable?: boolean | undefined;
|
|
2141
|
+
format?: string | undefined;
|
|
2127
2142
|
file?: any;
|
|
2128
2143
|
refUid?: string | undefined;
|
|
2129
|
-
format?: string | undefined;
|
|
2130
|
-
nullable?: boolean | undefined;
|
|
2131
2144
|
}[];
|
|
2132
2145
|
cookies: {
|
|
2133
2146
|
value: string;
|
|
@@ -2140,10 +2153,10 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2140
2153
|
required?: boolean | undefined;
|
|
2141
2154
|
description?: string | undefined;
|
|
2142
2155
|
enum?: string[] | undefined;
|
|
2156
|
+
nullable?: boolean | undefined;
|
|
2157
|
+
format?: string | undefined;
|
|
2143
2158
|
file?: any;
|
|
2144
2159
|
refUid?: string | undefined;
|
|
2145
|
-
format?: string | undefined;
|
|
2146
|
-
nullable?: boolean | undefined;
|
|
2147
2160
|
}[];
|
|
2148
2161
|
};
|
|
2149
2162
|
auth: Record<string, any>;
|
|
@@ -2799,6 +2812,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2799
2812
|
isReadOnly: boolean;
|
|
2800
2813
|
collectionUids: string[];
|
|
2801
2814
|
environmentUids: string[];
|
|
2815
|
+
activeEnvironmentId: string;
|
|
2802
2816
|
cookieUids: string[];
|
|
2803
2817
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2804
2818
|
hotKeyConfig?: {
|
|
@@ -2817,6 +2831,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2817
2831
|
isReadOnly: boolean;
|
|
2818
2832
|
collectionUids: string[];
|
|
2819
2833
|
environmentUids: string[];
|
|
2834
|
+
activeEnvironmentId: string;
|
|
2820
2835
|
cookieUids: string[];
|
|
2821
2836
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2822
2837
|
hotKeyConfig?: {
|
|
@@ -2837,6 +2852,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2837
2852
|
isReadOnly: boolean;
|
|
2838
2853
|
collectionUids: string[];
|
|
2839
2854
|
environmentUids: string[];
|
|
2855
|
+
activeEnvironmentId: string;
|
|
2840
2856
|
cookieUids: string[];
|
|
2841
2857
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2842
2858
|
hotKeyConfig?: {
|
|
@@ -2848,13 +2864,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2848
2864
|
} | undefined;
|
|
2849
2865
|
proxyUrl?: string | undefined;
|
|
2850
2866
|
}) => void;
|
|
2851
|
-
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" ? {
|
|
2867
|
+
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" ? {
|
|
2852
2868
|
uid: string;
|
|
2853
2869
|
name: string;
|
|
2854
2870
|
description: string;
|
|
2855
2871
|
isReadOnly: boolean;
|
|
2856
2872
|
collectionUids: string[];
|
|
2857
2873
|
environmentUids: string[];
|
|
2874
|
+
activeEnvironmentId: string;
|
|
2858
2875
|
cookieUids: string[];
|
|
2859
2876
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2860
2877
|
hotKeyConfig?: {
|
|
@@ -2865,13 +2882,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2865
2882
|
}>> | undefined;
|
|
2866
2883
|
} | undefined;
|
|
2867
2884
|
proxyUrl?: string | undefined;
|
|
2868
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2885
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2869
2886
|
uid: string;
|
|
2870
2887
|
name: string;
|
|
2871
2888
|
description: string;
|
|
2872
2889
|
isReadOnly: boolean;
|
|
2873
2890
|
collectionUids: string[];
|
|
2874
2891
|
environmentUids: string[];
|
|
2892
|
+
activeEnvironmentId: string;
|
|
2875
2893
|
cookieUids: string[];
|
|
2876
2894
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2877
2895
|
hotKeyConfig?: {
|
|
@@ -2889,6 +2907,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2889
2907
|
isReadOnly: boolean;
|
|
2890
2908
|
collectionUids: string[];
|
|
2891
2909
|
environmentUids: string[];
|
|
2910
|
+
activeEnvironmentId: string;
|
|
2892
2911
|
cookieUids: string[];
|
|
2893
2912
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2894
2913
|
hotKeyConfig?: {
|
|
@@ -2900,13 +2919,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2900
2919
|
} | undefined;
|
|
2901
2920
|
proxyUrl?: string | undefined;
|
|
2902
2921
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2903
|
-
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" ? {
|
|
2922
|
+
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" ? {
|
|
2904
2923
|
uid: string;
|
|
2905
2924
|
name: string;
|
|
2906
2925
|
description: string;
|
|
2907
2926
|
isReadOnly: boolean;
|
|
2908
2927
|
collectionUids: string[];
|
|
2909
2928
|
environmentUids: string[];
|
|
2929
|
+
activeEnvironmentId: string;
|
|
2910
2930
|
cookieUids: string[];
|
|
2911
2931
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2912
2932
|
hotKeyConfig?: {
|
|
@@ -2917,13 +2937,14 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2917
2937
|
}>> | undefined;
|
|
2918
2938
|
} | undefined;
|
|
2919
2939
|
proxyUrl?: string | undefined;
|
|
2920
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2940
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
2921
2941
|
uid: string;
|
|
2922
2942
|
name: string;
|
|
2923
2943
|
description: string;
|
|
2924
2944
|
isReadOnly: boolean;
|
|
2925
2945
|
collectionUids: string[];
|
|
2926
2946
|
environmentUids: string[];
|
|
2947
|
+
activeEnvironmentId: string;
|
|
2927
2948
|
cookieUids: string[];
|
|
2928
2949
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2929
2950
|
hotKeyConfig?: {
|
|
@@ -2941,6 +2962,7 @@ export declare const createWorkspaceStore: (router: Router, persistData?: boolea
|
|
|
2941
2962
|
isReadOnly: boolean;
|
|
2942
2963
|
collectionUids: string[];
|
|
2943
2964
|
environmentUids: string[];
|
|
2965
|
+
activeEnvironmentId: string;
|
|
2944
2966
|
cookieUids: string[];
|
|
2945
2967
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2946
2968
|
hotKeyConfig?: {
|
|
@@ -2973,6 +2995,7 @@ export declare const useWorkspace: () => {
|
|
|
2973
2995
|
isReadOnly: boolean;
|
|
2974
2996
|
collectionUids: string[];
|
|
2975
2997
|
environmentUids: string[];
|
|
2998
|
+
activeEnvironmentId: string;
|
|
2976
2999
|
cookieUids: string[];
|
|
2977
3000
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
2978
3001
|
hotKeyConfig?: {
|
|
@@ -3062,7 +3085,7 @@ export declare const useWorkspace: () => {
|
|
|
3062
3085
|
body: {
|
|
3063
3086
|
raw: {
|
|
3064
3087
|
value: string;
|
|
3065
|
-
encoding: "
|
|
3088
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
3066
3089
|
};
|
|
3067
3090
|
formData: {
|
|
3068
3091
|
value: {
|
|
@@ -3076,10 +3099,10 @@ export declare const useWorkspace: () => {
|
|
|
3076
3099
|
required?: boolean | undefined;
|
|
3077
3100
|
description?: string | undefined;
|
|
3078
3101
|
enum?: string[] | undefined;
|
|
3102
|
+
nullable?: boolean | undefined;
|
|
3103
|
+
format?: string | undefined;
|
|
3079
3104
|
file?: any;
|
|
3080
3105
|
refUid?: string | undefined;
|
|
3081
|
-
format?: string | undefined;
|
|
3082
|
-
nullable?: boolean | undefined;
|
|
3083
3106
|
}[];
|
|
3084
3107
|
encoding: "form-data" | "urlencoded";
|
|
3085
3108
|
};
|
|
@@ -3098,10 +3121,10 @@ export declare const useWorkspace: () => {
|
|
|
3098
3121
|
required?: boolean | undefined;
|
|
3099
3122
|
description?: string | undefined;
|
|
3100
3123
|
enum?: string[] | undefined;
|
|
3124
|
+
nullable?: boolean | undefined;
|
|
3125
|
+
format?: string | undefined;
|
|
3101
3126
|
file?: any;
|
|
3102
3127
|
refUid?: string | undefined;
|
|
3103
|
-
format?: string | undefined;
|
|
3104
|
-
nullable?: boolean | undefined;
|
|
3105
3128
|
}[];
|
|
3106
3129
|
query: {
|
|
3107
3130
|
value: string;
|
|
@@ -3114,10 +3137,10 @@ export declare const useWorkspace: () => {
|
|
|
3114
3137
|
required?: boolean | undefined;
|
|
3115
3138
|
description?: string | undefined;
|
|
3116
3139
|
enum?: string[] | undefined;
|
|
3140
|
+
nullable?: boolean | undefined;
|
|
3141
|
+
format?: string | undefined;
|
|
3117
3142
|
file?: any;
|
|
3118
3143
|
refUid?: string | undefined;
|
|
3119
|
-
format?: string | undefined;
|
|
3120
|
-
nullable?: boolean | undefined;
|
|
3121
3144
|
}[];
|
|
3122
3145
|
headers: {
|
|
3123
3146
|
value: string;
|
|
@@ -3130,10 +3153,10 @@ export declare const useWorkspace: () => {
|
|
|
3130
3153
|
required?: boolean | undefined;
|
|
3131
3154
|
description?: string | undefined;
|
|
3132
3155
|
enum?: string[] | undefined;
|
|
3156
|
+
nullable?: boolean | undefined;
|
|
3157
|
+
format?: string | undefined;
|
|
3133
3158
|
file?: any;
|
|
3134
3159
|
refUid?: string | undefined;
|
|
3135
|
-
format?: string | undefined;
|
|
3136
|
-
nullable?: boolean | undefined;
|
|
3137
3160
|
}[];
|
|
3138
3161
|
cookies: {
|
|
3139
3162
|
value: string;
|
|
@@ -3146,10 +3169,10 @@ export declare const useWorkspace: () => {
|
|
|
3146
3169
|
required?: boolean | undefined;
|
|
3147
3170
|
description?: string | undefined;
|
|
3148
3171
|
enum?: string[] | undefined;
|
|
3172
|
+
nullable?: boolean | undefined;
|
|
3173
|
+
format?: string | undefined;
|
|
3149
3174
|
file?: any;
|
|
3150
3175
|
refUid?: string | undefined;
|
|
3151
|
-
format?: string | undefined;
|
|
3152
|
-
nullable?: boolean | undefined;
|
|
3153
3176
|
}[];
|
|
3154
3177
|
};
|
|
3155
3178
|
auth: Record<string, any>;
|
|
@@ -3283,7 +3306,7 @@ export declare const useWorkspace: () => {
|
|
|
3283
3306
|
body: {
|
|
3284
3307
|
raw: {
|
|
3285
3308
|
value: string;
|
|
3286
|
-
encoding: "
|
|
3309
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
3287
3310
|
};
|
|
3288
3311
|
formData: {
|
|
3289
3312
|
value: {
|
|
@@ -3297,10 +3320,10 @@ export declare const useWorkspace: () => {
|
|
|
3297
3320
|
required?: boolean | undefined;
|
|
3298
3321
|
description?: string | undefined;
|
|
3299
3322
|
enum?: string[] | undefined;
|
|
3323
|
+
nullable?: boolean | undefined;
|
|
3324
|
+
format?: string | undefined;
|
|
3300
3325
|
file?: any;
|
|
3301
3326
|
refUid?: string | undefined;
|
|
3302
|
-
format?: string | undefined;
|
|
3303
|
-
nullable?: boolean | undefined;
|
|
3304
3327
|
}[];
|
|
3305
3328
|
encoding: "form-data" | "urlencoded";
|
|
3306
3329
|
};
|
|
@@ -3319,10 +3342,10 @@ export declare const useWorkspace: () => {
|
|
|
3319
3342
|
required?: boolean | undefined;
|
|
3320
3343
|
description?: string | undefined;
|
|
3321
3344
|
enum?: string[] | undefined;
|
|
3345
|
+
nullable?: boolean | undefined;
|
|
3346
|
+
format?: string | undefined;
|
|
3322
3347
|
file?: any;
|
|
3323
3348
|
refUid?: string | undefined;
|
|
3324
|
-
format?: string | undefined;
|
|
3325
|
-
nullable?: boolean | undefined;
|
|
3326
3349
|
}[];
|
|
3327
3350
|
query: {
|
|
3328
3351
|
value: string;
|
|
@@ -3335,10 +3358,10 @@ export declare const useWorkspace: () => {
|
|
|
3335
3358
|
required?: boolean | undefined;
|
|
3336
3359
|
description?: string | undefined;
|
|
3337
3360
|
enum?: string[] | undefined;
|
|
3361
|
+
nullable?: boolean | undefined;
|
|
3362
|
+
format?: string | undefined;
|
|
3338
3363
|
file?: any;
|
|
3339
3364
|
refUid?: string | undefined;
|
|
3340
|
-
format?: string | undefined;
|
|
3341
|
-
nullable?: boolean | undefined;
|
|
3342
3365
|
}[];
|
|
3343
3366
|
headers: {
|
|
3344
3367
|
value: string;
|
|
@@ -3351,10 +3374,10 @@ export declare const useWorkspace: () => {
|
|
|
3351
3374
|
required?: boolean | undefined;
|
|
3352
3375
|
description?: string | undefined;
|
|
3353
3376
|
enum?: string[] | undefined;
|
|
3377
|
+
nullable?: boolean | undefined;
|
|
3378
|
+
format?: string | undefined;
|
|
3354
3379
|
file?: any;
|
|
3355
3380
|
refUid?: string | undefined;
|
|
3356
|
-
format?: string | undefined;
|
|
3357
|
-
nullable?: boolean | undefined;
|
|
3358
3381
|
}[];
|
|
3359
3382
|
cookies: {
|
|
3360
3383
|
value: string;
|
|
@@ -3367,10 +3390,10 @@ export declare const useWorkspace: () => {
|
|
|
3367
3390
|
required?: boolean | undefined;
|
|
3368
3391
|
description?: string | undefined;
|
|
3369
3392
|
enum?: string[] | undefined;
|
|
3393
|
+
nullable?: boolean | undefined;
|
|
3394
|
+
format?: string | undefined;
|
|
3370
3395
|
file?: any;
|
|
3371
3396
|
refUid?: string | undefined;
|
|
3372
|
-
format?: string | undefined;
|
|
3373
|
-
nullable?: boolean | undefined;
|
|
3374
3397
|
}[];
|
|
3375
3398
|
};
|
|
3376
3399
|
auth: Record<string, any>;
|
|
@@ -3473,6 +3496,7 @@ export declare const useWorkspace: () => {
|
|
|
3473
3496
|
isReadOnly: boolean;
|
|
3474
3497
|
collectionUids: string[];
|
|
3475
3498
|
environmentUids: string[];
|
|
3499
|
+
activeEnvironmentId: string;
|
|
3476
3500
|
cookieUids: string[];
|
|
3477
3501
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
3478
3502
|
hotKeyConfig?: {
|
|
@@ -3540,11 +3564,22 @@ export declare const useWorkspace: () => {
|
|
|
3540
3564
|
key: string;
|
|
3541
3565
|
value: string;
|
|
3542
3566
|
} | {
|
|
3543
|
-
_scalarEnvId:
|
|
3567
|
+
_scalarEnvId: string;
|
|
3544
3568
|
key: string;
|
|
3545
3569
|
value: unknown;
|
|
3546
3570
|
})[]>;
|
|
3547
3571
|
activeWorkspaceRequests: import("vue").ComputedRef<Request[]>;
|
|
3572
|
+
activeEnvironment: import("vue").ComputedRef<{
|
|
3573
|
+
uid: string;
|
|
3574
|
+
name: string;
|
|
3575
|
+
color: string;
|
|
3576
|
+
raw: string;
|
|
3577
|
+
parsed: {
|
|
3578
|
+
value: string;
|
|
3579
|
+
key: string;
|
|
3580
|
+
}[];
|
|
3581
|
+
isDefault?: boolean | undefined;
|
|
3582
|
+
}>;
|
|
3548
3583
|
modalState: {
|
|
3549
3584
|
open: boolean;
|
|
3550
3585
|
show: () => void;
|
|
@@ -4211,7 +4246,7 @@ export declare const useWorkspace: () => {
|
|
|
4211
4246
|
body: {
|
|
4212
4247
|
raw: {
|
|
4213
4248
|
value: string;
|
|
4214
|
-
encoding: "
|
|
4249
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4215
4250
|
};
|
|
4216
4251
|
formData: {
|
|
4217
4252
|
value: {
|
|
@@ -4225,10 +4260,10 @@ export declare const useWorkspace: () => {
|
|
|
4225
4260
|
required?: boolean | undefined;
|
|
4226
4261
|
description?: string | undefined;
|
|
4227
4262
|
enum?: string[] | undefined;
|
|
4263
|
+
nullable?: boolean | undefined;
|
|
4264
|
+
format?: string | undefined;
|
|
4228
4265
|
file?: any;
|
|
4229
4266
|
refUid?: string | undefined;
|
|
4230
|
-
format?: string | undefined;
|
|
4231
|
-
nullable?: boolean | undefined;
|
|
4232
4267
|
}[];
|
|
4233
4268
|
encoding: "form-data" | "urlencoded";
|
|
4234
4269
|
};
|
|
@@ -4247,10 +4282,10 @@ export declare const useWorkspace: () => {
|
|
|
4247
4282
|
required?: boolean | undefined;
|
|
4248
4283
|
description?: string | undefined;
|
|
4249
4284
|
enum?: string[] | undefined;
|
|
4285
|
+
nullable?: boolean | undefined;
|
|
4286
|
+
format?: string | undefined;
|
|
4250
4287
|
file?: any;
|
|
4251
4288
|
refUid?: string | undefined;
|
|
4252
|
-
format?: string | undefined;
|
|
4253
|
-
nullable?: boolean | undefined;
|
|
4254
4289
|
}[];
|
|
4255
4290
|
query: {
|
|
4256
4291
|
value: string;
|
|
@@ -4263,10 +4298,10 @@ export declare const useWorkspace: () => {
|
|
|
4263
4298
|
required?: boolean | undefined;
|
|
4264
4299
|
description?: string | undefined;
|
|
4265
4300
|
enum?: string[] | undefined;
|
|
4301
|
+
nullable?: boolean | undefined;
|
|
4302
|
+
format?: string | undefined;
|
|
4266
4303
|
file?: any;
|
|
4267
4304
|
refUid?: string | undefined;
|
|
4268
|
-
format?: string | undefined;
|
|
4269
|
-
nullable?: boolean | undefined;
|
|
4270
4305
|
}[];
|
|
4271
4306
|
headers: {
|
|
4272
4307
|
value: string;
|
|
@@ -4279,10 +4314,10 @@ export declare const useWorkspace: () => {
|
|
|
4279
4314
|
required?: boolean | undefined;
|
|
4280
4315
|
description?: string | undefined;
|
|
4281
4316
|
enum?: string[] | undefined;
|
|
4317
|
+
nullable?: boolean | undefined;
|
|
4318
|
+
format?: string | undefined;
|
|
4282
4319
|
file?: any;
|
|
4283
4320
|
refUid?: string | undefined;
|
|
4284
|
-
format?: string | undefined;
|
|
4285
|
-
nullable?: boolean | undefined;
|
|
4286
4321
|
}[];
|
|
4287
4322
|
cookies: {
|
|
4288
4323
|
value: string;
|
|
@@ -4295,10 +4330,10 @@ export declare const useWorkspace: () => {
|
|
|
4295
4330
|
required?: boolean | undefined;
|
|
4296
4331
|
description?: string | undefined;
|
|
4297
4332
|
enum?: string[] | undefined;
|
|
4333
|
+
nullable?: boolean | undefined;
|
|
4334
|
+
format?: string | undefined;
|
|
4298
4335
|
file?: any;
|
|
4299
4336
|
refUid?: string | undefined;
|
|
4300
|
-
format?: string | undefined;
|
|
4301
|
-
nullable?: boolean | undefined;
|
|
4302
4337
|
}[];
|
|
4303
4338
|
};
|
|
4304
4339
|
auth: Record<string, any>;
|
|
@@ -4311,7 +4346,7 @@ export declare const useWorkspace: () => {
|
|
|
4311
4346
|
body: {
|
|
4312
4347
|
raw: {
|
|
4313
4348
|
value: string;
|
|
4314
|
-
encoding: "
|
|
4349
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4315
4350
|
};
|
|
4316
4351
|
formData: {
|
|
4317
4352
|
value: {
|
|
@@ -4325,10 +4360,10 @@ export declare const useWorkspace: () => {
|
|
|
4325
4360
|
required?: boolean | undefined;
|
|
4326
4361
|
description?: string | undefined;
|
|
4327
4362
|
enum?: string[] | undefined;
|
|
4363
|
+
nullable?: boolean | undefined;
|
|
4364
|
+
format?: string | undefined;
|
|
4328
4365
|
file?: any;
|
|
4329
4366
|
refUid?: string | undefined;
|
|
4330
|
-
format?: string | undefined;
|
|
4331
|
-
nullable?: boolean | undefined;
|
|
4332
4367
|
}[];
|
|
4333
4368
|
encoding: "form-data" | "urlencoded";
|
|
4334
4369
|
};
|
|
@@ -4347,10 +4382,10 @@ export declare const useWorkspace: () => {
|
|
|
4347
4382
|
required?: boolean | undefined;
|
|
4348
4383
|
description?: string | undefined;
|
|
4349
4384
|
enum?: string[] | undefined;
|
|
4385
|
+
nullable?: boolean | undefined;
|
|
4386
|
+
format?: string | undefined;
|
|
4350
4387
|
file?: any;
|
|
4351
4388
|
refUid?: string | undefined;
|
|
4352
|
-
format?: string | undefined;
|
|
4353
|
-
nullable?: boolean | undefined;
|
|
4354
4389
|
}[];
|
|
4355
4390
|
query: {
|
|
4356
4391
|
value: string;
|
|
@@ -4363,10 +4398,10 @@ export declare const useWorkspace: () => {
|
|
|
4363
4398
|
required?: boolean | undefined;
|
|
4364
4399
|
description?: string | undefined;
|
|
4365
4400
|
enum?: string[] | undefined;
|
|
4401
|
+
nullable?: boolean | undefined;
|
|
4402
|
+
format?: string | undefined;
|
|
4366
4403
|
file?: any;
|
|
4367
4404
|
refUid?: string | undefined;
|
|
4368
|
-
format?: string | undefined;
|
|
4369
|
-
nullable?: boolean | undefined;
|
|
4370
4405
|
}[];
|
|
4371
4406
|
headers: {
|
|
4372
4407
|
value: string;
|
|
@@ -4379,10 +4414,10 @@ export declare const useWorkspace: () => {
|
|
|
4379
4414
|
required?: boolean | undefined;
|
|
4380
4415
|
description?: string | undefined;
|
|
4381
4416
|
enum?: string[] | undefined;
|
|
4417
|
+
nullable?: boolean | undefined;
|
|
4418
|
+
format?: string | undefined;
|
|
4382
4419
|
file?: any;
|
|
4383
4420
|
refUid?: string | undefined;
|
|
4384
|
-
format?: string | undefined;
|
|
4385
|
-
nullable?: boolean | undefined;
|
|
4386
4421
|
}[];
|
|
4387
4422
|
cookies: {
|
|
4388
4423
|
value: string;
|
|
@@ -4395,10 +4430,10 @@ export declare const useWorkspace: () => {
|
|
|
4395
4430
|
required?: boolean | undefined;
|
|
4396
4431
|
description?: string | undefined;
|
|
4397
4432
|
enum?: string[] | undefined;
|
|
4433
|
+
nullable?: boolean | undefined;
|
|
4434
|
+
format?: string | undefined;
|
|
4398
4435
|
file?: any;
|
|
4399
4436
|
refUid?: string | undefined;
|
|
4400
|
-
format?: string | undefined;
|
|
4401
|
-
nullable?: boolean | undefined;
|
|
4402
4437
|
}[];
|
|
4403
4438
|
};
|
|
4404
4439
|
auth: Record<string, any>;
|
|
@@ -4412,7 +4447,7 @@ export declare const useWorkspace: () => {
|
|
|
4412
4447
|
body: {
|
|
4413
4448
|
raw: {
|
|
4414
4449
|
value: string;
|
|
4415
|
-
encoding: "
|
|
4450
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4416
4451
|
};
|
|
4417
4452
|
formData: {
|
|
4418
4453
|
value: {
|
|
@@ -4426,10 +4461,10 @@ export declare const useWorkspace: () => {
|
|
|
4426
4461
|
required?: boolean | undefined;
|
|
4427
4462
|
description?: string | undefined;
|
|
4428
4463
|
enum?: string[] | undefined;
|
|
4464
|
+
nullable?: boolean | undefined;
|
|
4465
|
+
format?: string | undefined;
|
|
4429
4466
|
file?: any;
|
|
4430
4467
|
refUid?: string | undefined;
|
|
4431
|
-
format?: string | undefined;
|
|
4432
|
-
nullable?: boolean | undefined;
|
|
4433
4468
|
}[];
|
|
4434
4469
|
encoding: "form-data" | "urlencoded";
|
|
4435
4470
|
};
|
|
@@ -4448,10 +4483,10 @@ export declare const useWorkspace: () => {
|
|
|
4448
4483
|
required?: boolean | undefined;
|
|
4449
4484
|
description?: string | undefined;
|
|
4450
4485
|
enum?: string[] | undefined;
|
|
4486
|
+
nullable?: boolean | undefined;
|
|
4487
|
+
format?: string | undefined;
|
|
4451
4488
|
file?: any;
|
|
4452
4489
|
refUid?: string | undefined;
|
|
4453
|
-
format?: string | undefined;
|
|
4454
|
-
nullable?: boolean | undefined;
|
|
4455
4490
|
}[];
|
|
4456
4491
|
query: {
|
|
4457
4492
|
value: string;
|
|
@@ -4464,10 +4499,10 @@ export declare const useWorkspace: () => {
|
|
|
4464
4499
|
required?: boolean | undefined;
|
|
4465
4500
|
description?: string | undefined;
|
|
4466
4501
|
enum?: string[] | undefined;
|
|
4502
|
+
nullable?: boolean | undefined;
|
|
4503
|
+
format?: string | undefined;
|
|
4467
4504
|
file?: any;
|
|
4468
4505
|
refUid?: string | undefined;
|
|
4469
|
-
format?: string | undefined;
|
|
4470
|
-
nullable?: boolean | undefined;
|
|
4471
4506
|
}[];
|
|
4472
4507
|
headers: {
|
|
4473
4508
|
value: string;
|
|
@@ -4480,10 +4515,10 @@ export declare const useWorkspace: () => {
|
|
|
4480
4515
|
required?: boolean | undefined;
|
|
4481
4516
|
description?: string | undefined;
|
|
4482
4517
|
enum?: string[] | undefined;
|
|
4518
|
+
nullable?: boolean | undefined;
|
|
4519
|
+
format?: string | undefined;
|
|
4483
4520
|
file?: any;
|
|
4484
4521
|
refUid?: string | undefined;
|
|
4485
|
-
format?: string | undefined;
|
|
4486
|
-
nullable?: boolean | undefined;
|
|
4487
4522
|
}[];
|
|
4488
4523
|
cookies: {
|
|
4489
4524
|
value: string;
|
|
@@ -4496,15 +4531,15 @@ export declare const useWorkspace: () => {
|
|
|
4496
4531
|
required?: boolean | undefined;
|
|
4497
4532
|
description?: string | undefined;
|
|
4498
4533
|
enum?: string[] | undefined;
|
|
4534
|
+
nullable?: boolean | undefined;
|
|
4535
|
+
format?: string | undefined;
|
|
4499
4536
|
file?: any;
|
|
4500
4537
|
refUid?: string | undefined;
|
|
4501
|
-
format?: string | undefined;
|
|
4502
|
-
nullable?: boolean | undefined;
|
|
4503
4538
|
}[];
|
|
4504
4539
|
};
|
|
4505
4540
|
auth: Record<string, any>;
|
|
4506
4541
|
}) => void;
|
|
4507
|
-
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}.
|
|
4542
|
+
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" ? {
|
|
4508
4543
|
uid: string;
|
|
4509
4544
|
name: string;
|
|
4510
4545
|
url: string;
|
|
@@ -4512,7 +4547,7 @@ export declare const useWorkspace: () => {
|
|
|
4512
4547
|
body: {
|
|
4513
4548
|
raw: {
|
|
4514
4549
|
value: string;
|
|
4515
|
-
encoding: "
|
|
4550
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4516
4551
|
};
|
|
4517
4552
|
formData: {
|
|
4518
4553
|
value: {
|
|
@@ -4526,10 +4561,10 @@ export declare const useWorkspace: () => {
|
|
|
4526
4561
|
required?: boolean | undefined;
|
|
4527
4562
|
description?: string | undefined;
|
|
4528
4563
|
enum?: string[] | undefined;
|
|
4564
|
+
nullable?: boolean | undefined;
|
|
4565
|
+
format?: string | undefined;
|
|
4529
4566
|
file?: any;
|
|
4530
4567
|
refUid?: string | undefined;
|
|
4531
|
-
format?: string | undefined;
|
|
4532
|
-
nullable?: boolean | undefined;
|
|
4533
4568
|
}[];
|
|
4534
4569
|
encoding: "form-data" | "urlencoded";
|
|
4535
4570
|
};
|
|
@@ -4548,10 +4583,10 @@ export declare const useWorkspace: () => {
|
|
|
4548
4583
|
required?: boolean | undefined;
|
|
4549
4584
|
description?: string | undefined;
|
|
4550
4585
|
enum?: string[] | undefined;
|
|
4586
|
+
nullable?: boolean | undefined;
|
|
4587
|
+
format?: string | undefined;
|
|
4551
4588
|
file?: any;
|
|
4552
4589
|
refUid?: string | undefined;
|
|
4553
|
-
format?: string | undefined;
|
|
4554
|
-
nullable?: boolean | undefined;
|
|
4555
4590
|
}[];
|
|
4556
4591
|
query: {
|
|
4557
4592
|
value: string;
|
|
@@ -4564,10 +4599,10 @@ export declare const useWorkspace: () => {
|
|
|
4564
4599
|
required?: boolean | undefined;
|
|
4565
4600
|
description?: string | undefined;
|
|
4566
4601
|
enum?: string[] | undefined;
|
|
4602
|
+
nullable?: boolean | undefined;
|
|
4603
|
+
format?: string | undefined;
|
|
4567
4604
|
file?: any;
|
|
4568
4605
|
refUid?: string | undefined;
|
|
4569
|
-
format?: string | undefined;
|
|
4570
|
-
nullable?: boolean | undefined;
|
|
4571
4606
|
}[];
|
|
4572
4607
|
headers: {
|
|
4573
4608
|
value: string;
|
|
@@ -4580,10 +4615,10 @@ export declare const useWorkspace: () => {
|
|
|
4580
4615
|
required?: boolean | undefined;
|
|
4581
4616
|
description?: string | undefined;
|
|
4582
4617
|
enum?: string[] | undefined;
|
|
4618
|
+
nullable?: boolean | undefined;
|
|
4619
|
+
format?: string | undefined;
|
|
4583
4620
|
file?: any;
|
|
4584
4621
|
refUid?: string | undefined;
|
|
4585
|
-
format?: string | undefined;
|
|
4586
|
-
nullable?: boolean | undefined;
|
|
4587
4622
|
}[];
|
|
4588
4623
|
cookies: {
|
|
4589
4624
|
value: string;
|
|
@@ -4596,10 +4631,10 @@ export declare const useWorkspace: () => {
|
|
|
4596
4631
|
required?: boolean | undefined;
|
|
4597
4632
|
description?: string | undefined;
|
|
4598
4633
|
enum?: string[] | undefined;
|
|
4634
|
+
nullable?: boolean | undefined;
|
|
4635
|
+
format?: string | undefined;
|
|
4599
4636
|
file?: any;
|
|
4600
4637
|
refUid?: string | undefined;
|
|
4601
|
-
format?: string | undefined;
|
|
4602
|
-
nullable?: boolean | undefined;
|
|
4603
4638
|
}[];
|
|
4604
4639
|
};
|
|
4605
4640
|
auth: Record<string, any>;
|
|
@@ -4611,7 +4646,7 @@ export declare const useWorkspace: () => {
|
|
|
4611
4646
|
body: {
|
|
4612
4647
|
raw: {
|
|
4613
4648
|
value: string;
|
|
4614
|
-
encoding: "
|
|
4649
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4615
4650
|
};
|
|
4616
4651
|
formData: {
|
|
4617
4652
|
value: {
|
|
@@ -4625,10 +4660,10 @@ export declare const useWorkspace: () => {
|
|
|
4625
4660
|
required?: boolean | undefined;
|
|
4626
4661
|
description?: string | undefined;
|
|
4627
4662
|
enum?: string[] | undefined;
|
|
4663
|
+
nullable?: boolean | undefined;
|
|
4664
|
+
format?: string | undefined;
|
|
4628
4665
|
file?: any;
|
|
4629
4666
|
refUid?: string | undefined;
|
|
4630
|
-
format?: string | undefined;
|
|
4631
|
-
nullable?: boolean | undefined;
|
|
4632
4667
|
}[];
|
|
4633
4668
|
encoding: "form-data" | "urlencoded";
|
|
4634
4669
|
};
|
|
@@ -4647,10 +4682,10 @@ export declare const useWorkspace: () => {
|
|
|
4647
4682
|
required?: boolean | undefined;
|
|
4648
4683
|
description?: string | undefined;
|
|
4649
4684
|
enum?: string[] | undefined;
|
|
4685
|
+
nullable?: boolean | undefined;
|
|
4686
|
+
format?: string | undefined;
|
|
4650
4687
|
file?: any;
|
|
4651
4688
|
refUid?: string | undefined;
|
|
4652
|
-
format?: string | undefined;
|
|
4653
|
-
nullable?: boolean | undefined;
|
|
4654
4689
|
}[];
|
|
4655
4690
|
query: {
|
|
4656
4691
|
value: string;
|
|
@@ -4663,10 +4698,10 @@ export declare const useWorkspace: () => {
|
|
|
4663
4698
|
required?: boolean | undefined;
|
|
4664
4699
|
description?: string | undefined;
|
|
4665
4700
|
enum?: string[] | undefined;
|
|
4701
|
+
nullable?: boolean | undefined;
|
|
4702
|
+
format?: string | undefined;
|
|
4666
4703
|
file?: any;
|
|
4667
4704
|
refUid?: string | undefined;
|
|
4668
|
-
format?: string | undefined;
|
|
4669
|
-
nullable?: boolean | undefined;
|
|
4670
4705
|
}[];
|
|
4671
4706
|
headers: {
|
|
4672
4707
|
value: string;
|
|
@@ -4679,10 +4714,10 @@ export declare const useWorkspace: () => {
|
|
|
4679
4714
|
required?: boolean | undefined;
|
|
4680
4715
|
description?: string | undefined;
|
|
4681
4716
|
enum?: string[] | undefined;
|
|
4717
|
+
nullable?: boolean | undefined;
|
|
4718
|
+
format?: string | undefined;
|
|
4682
4719
|
file?: any;
|
|
4683
4720
|
refUid?: string | undefined;
|
|
4684
|
-
format?: string | undefined;
|
|
4685
|
-
nullable?: boolean | undefined;
|
|
4686
4721
|
}[];
|
|
4687
4722
|
cookies: {
|
|
4688
4723
|
value: string;
|
|
@@ -4695,10 +4730,10 @@ export declare const useWorkspace: () => {
|
|
|
4695
4730
|
required?: boolean | undefined;
|
|
4696
4731
|
description?: string | undefined;
|
|
4697
4732
|
enum?: string[] | undefined;
|
|
4733
|
+
nullable?: boolean | undefined;
|
|
4734
|
+
format?: string | undefined;
|
|
4698
4735
|
file?: any;
|
|
4699
4736
|
refUid?: string | undefined;
|
|
4700
|
-
format?: string | undefined;
|
|
4701
|
-
nullable?: boolean | undefined;
|
|
4702
4737
|
}[];
|
|
4703
4738
|
};
|
|
4704
4739
|
auth: Record<string, any>;
|
|
@@ -4710,7 +4745,7 @@ export declare const useWorkspace: () => {
|
|
|
4710
4745
|
body: {
|
|
4711
4746
|
raw: {
|
|
4712
4747
|
value: string;
|
|
4713
|
-
encoding: "
|
|
4748
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4714
4749
|
};
|
|
4715
4750
|
formData: {
|
|
4716
4751
|
value: {
|
|
@@ -4724,10 +4759,10 @@ export declare const useWorkspace: () => {
|
|
|
4724
4759
|
required?: boolean | undefined;
|
|
4725
4760
|
description?: string | undefined;
|
|
4726
4761
|
enum?: string[] | undefined;
|
|
4762
|
+
nullable?: boolean | undefined;
|
|
4763
|
+
format?: string | undefined;
|
|
4727
4764
|
file?: any;
|
|
4728
4765
|
refUid?: string | undefined;
|
|
4729
|
-
format?: string | undefined;
|
|
4730
|
-
nullable?: boolean | undefined;
|
|
4731
4766
|
}[];
|
|
4732
4767
|
encoding: "form-data" | "urlencoded";
|
|
4733
4768
|
};
|
|
@@ -4746,10 +4781,10 @@ export declare const useWorkspace: () => {
|
|
|
4746
4781
|
required?: boolean | undefined;
|
|
4747
4782
|
description?: string | undefined;
|
|
4748
4783
|
enum?: string[] | undefined;
|
|
4784
|
+
nullable?: boolean | undefined;
|
|
4785
|
+
format?: string | undefined;
|
|
4749
4786
|
file?: any;
|
|
4750
4787
|
refUid?: string | undefined;
|
|
4751
|
-
format?: string | undefined;
|
|
4752
|
-
nullable?: boolean | undefined;
|
|
4753
4788
|
}[];
|
|
4754
4789
|
query: {
|
|
4755
4790
|
value: string;
|
|
@@ -4762,10 +4797,10 @@ export declare const useWorkspace: () => {
|
|
|
4762
4797
|
required?: boolean | undefined;
|
|
4763
4798
|
description?: string | undefined;
|
|
4764
4799
|
enum?: string[] | undefined;
|
|
4800
|
+
nullable?: boolean | undefined;
|
|
4801
|
+
format?: string | undefined;
|
|
4765
4802
|
file?: any;
|
|
4766
4803
|
refUid?: string | undefined;
|
|
4767
|
-
format?: string | undefined;
|
|
4768
|
-
nullable?: boolean | undefined;
|
|
4769
4804
|
}[];
|
|
4770
4805
|
headers: {
|
|
4771
4806
|
value: string;
|
|
@@ -4778,10 +4813,10 @@ export declare const useWorkspace: () => {
|
|
|
4778
4813
|
required?: boolean | undefined;
|
|
4779
4814
|
description?: string | undefined;
|
|
4780
4815
|
enum?: string[] | undefined;
|
|
4816
|
+
nullable?: boolean | undefined;
|
|
4817
|
+
format?: string | undefined;
|
|
4781
4818
|
file?: any;
|
|
4782
4819
|
refUid?: string | undefined;
|
|
4783
|
-
format?: string | undefined;
|
|
4784
|
-
nullable?: boolean | undefined;
|
|
4785
4820
|
}[];
|
|
4786
4821
|
cookies: {
|
|
4787
4822
|
value: string;
|
|
@@ -4794,15 +4829,15 @@ export declare const useWorkspace: () => {
|
|
|
4794
4829
|
required?: boolean | undefined;
|
|
4795
4830
|
description?: string | undefined;
|
|
4796
4831
|
enum?: string[] | undefined;
|
|
4832
|
+
nullable?: boolean | undefined;
|
|
4833
|
+
format?: string | undefined;
|
|
4797
4834
|
file?: any;
|
|
4798
4835
|
refUid?: string | undefined;
|
|
4799
|
-
format?: string | undefined;
|
|
4800
|
-
nullable?: boolean | undefined;
|
|
4801
4836
|
}[];
|
|
4802
4837
|
};
|
|
4803
4838
|
auth: Record<string, any>;
|
|
4804
4839
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
4805
|
-
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}.
|
|
4840
|
+
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" ? {
|
|
4806
4841
|
uid: string;
|
|
4807
4842
|
name: string;
|
|
4808
4843
|
url: string;
|
|
@@ -4810,7 +4845,7 @@ export declare const useWorkspace: () => {
|
|
|
4810
4845
|
body: {
|
|
4811
4846
|
raw: {
|
|
4812
4847
|
value: string;
|
|
4813
|
-
encoding: "
|
|
4848
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4814
4849
|
};
|
|
4815
4850
|
formData: {
|
|
4816
4851
|
value: {
|
|
@@ -4824,10 +4859,10 @@ export declare const useWorkspace: () => {
|
|
|
4824
4859
|
required?: boolean | undefined;
|
|
4825
4860
|
description?: string | undefined;
|
|
4826
4861
|
enum?: string[] | undefined;
|
|
4862
|
+
nullable?: boolean | undefined;
|
|
4863
|
+
format?: string | undefined;
|
|
4827
4864
|
file?: any;
|
|
4828
4865
|
refUid?: string | undefined;
|
|
4829
|
-
format?: string | undefined;
|
|
4830
|
-
nullable?: boolean | undefined;
|
|
4831
4866
|
}[];
|
|
4832
4867
|
encoding: "form-data" | "urlencoded";
|
|
4833
4868
|
};
|
|
@@ -4846,10 +4881,10 @@ export declare const useWorkspace: () => {
|
|
|
4846
4881
|
required?: boolean | undefined;
|
|
4847
4882
|
description?: string | undefined;
|
|
4848
4883
|
enum?: string[] | undefined;
|
|
4884
|
+
nullable?: boolean | undefined;
|
|
4885
|
+
format?: string | undefined;
|
|
4849
4886
|
file?: any;
|
|
4850
4887
|
refUid?: string | undefined;
|
|
4851
|
-
format?: string | undefined;
|
|
4852
|
-
nullable?: boolean | undefined;
|
|
4853
4888
|
}[];
|
|
4854
4889
|
query: {
|
|
4855
4890
|
value: string;
|
|
@@ -4862,10 +4897,10 @@ export declare const useWorkspace: () => {
|
|
|
4862
4897
|
required?: boolean | undefined;
|
|
4863
4898
|
description?: string | undefined;
|
|
4864
4899
|
enum?: string[] | undefined;
|
|
4900
|
+
nullable?: boolean | undefined;
|
|
4901
|
+
format?: string | undefined;
|
|
4865
4902
|
file?: any;
|
|
4866
4903
|
refUid?: string | undefined;
|
|
4867
|
-
format?: string | undefined;
|
|
4868
|
-
nullable?: boolean | undefined;
|
|
4869
4904
|
}[];
|
|
4870
4905
|
headers: {
|
|
4871
4906
|
value: string;
|
|
@@ -4878,10 +4913,10 @@ export declare const useWorkspace: () => {
|
|
|
4878
4913
|
required?: boolean | undefined;
|
|
4879
4914
|
description?: string | undefined;
|
|
4880
4915
|
enum?: string[] | undefined;
|
|
4916
|
+
nullable?: boolean | undefined;
|
|
4917
|
+
format?: string | undefined;
|
|
4881
4918
|
file?: any;
|
|
4882
4919
|
refUid?: string | undefined;
|
|
4883
|
-
format?: string | undefined;
|
|
4884
|
-
nullable?: boolean | undefined;
|
|
4885
4920
|
}[];
|
|
4886
4921
|
cookies: {
|
|
4887
4922
|
value: string;
|
|
@@ -4894,10 +4929,10 @@ export declare const useWorkspace: () => {
|
|
|
4894
4929
|
required?: boolean | undefined;
|
|
4895
4930
|
description?: string | undefined;
|
|
4896
4931
|
enum?: string[] | undefined;
|
|
4932
|
+
nullable?: boolean | undefined;
|
|
4933
|
+
format?: string | undefined;
|
|
4897
4934
|
file?: any;
|
|
4898
4935
|
refUid?: string | undefined;
|
|
4899
|
-
format?: string | undefined;
|
|
4900
|
-
nullable?: boolean | undefined;
|
|
4901
4936
|
}[];
|
|
4902
4937
|
};
|
|
4903
4938
|
auth: Record<string, any>;
|
|
@@ -4909,7 +4944,7 @@ export declare const useWorkspace: () => {
|
|
|
4909
4944
|
body: {
|
|
4910
4945
|
raw: {
|
|
4911
4946
|
value: string;
|
|
4912
|
-
encoding: "
|
|
4947
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
4913
4948
|
};
|
|
4914
4949
|
formData: {
|
|
4915
4950
|
value: {
|
|
@@ -4923,10 +4958,10 @@ export declare const useWorkspace: () => {
|
|
|
4923
4958
|
required?: boolean | undefined;
|
|
4924
4959
|
description?: string | undefined;
|
|
4925
4960
|
enum?: string[] | undefined;
|
|
4961
|
+
nullable?: boolean | undefined;
|
|
4962
|
+
format?: string | undefined;
|
|
4926
4963
|
file?: any;
|
|
4927
4964
|
refUid?: string | undefined;
|
|
4928
|
-
format?: string | undefined;
|
|
4929
|
-
nullable?: boolean | undefined;
|
|
4930
4965
|
}[];
|
|
4931
4966
|
encoding: "form-data" | "urlencoded";
|
|
4932
4967
|
};
|
|
@@ -4945,10 +4980,10 @@ export declare const useWorkspace: () => {
|
|
|
4945
4980
|
required?: boolean | undefined;
|
|
4946
4981
|
description?: string | undefined;
|
|
4947
4982
|
enum?: string[] | undefined;
|
|
4983
|
+
nullable?: boolean | undefined;
|
|
4984
|
+
format?: string | undefined;
|
|
4948
4985
|
file?: any;
|
|
4949
4986
|
refUid?: string | undefined;
|
|
4950
|
-
format?: string | undefined;
|
|
4951
|
-
nullable?: boolean | undefined;
|
|
4952
4987
|
}[];
|
|
4953
4988
|
query: {
|
|
4954
4989
|
value: string;
|
|
@@ -4961,10 +4996,10 @@ export declare const useWorkspace: () => {
|
|
|
4961
4996
|
required?: boolean | undefined;
|
|
4962
4997
|
description?: string | undefined;
|
|
4963
4998
|
enum?: string[] | undefined;
|
|
4999
|
+
nullable?: boolean | undefined;
|
|
5000
|
+
format?: string | undefined;
|
|
4964
5001
|
file?: any;
|
|
4965
5002
|
refUid?: string | undefined;
|
|
4966
|
-
format?: string | undefined;
|
|
4967
|
-
nullable?: boolean | undefined;
|
|
4968
5003
|
}[];
|
|
4969
5004
|
headers: {
|
|
4970
5005
|
value: string;
|
|
@@ -4977,10 +5012,10 @@ export declare const useWorkspace: () => {
|
|
|
4977
5012
|
required?: boolean | undefined;
|
|
4978
5013
|
description?: string | undefined;
|
|
4979
5014
|
enum?: string[] | undefined;
|
|
5015
|
+
nullable?: boolean | undefined;
|
|
5016
|
+
format?: string | undefined;
|
|
4980
5017
|
file?: any;
|
|
4981
5018
|
refUid?: string | undefined;
|
|
4982
|
-
format?: string | undefined;
|
|
4983
|
-
nullable?: boolean | undefined;
|
|
4984
5019
|
}[];
|
|
4985
5020
|
cookies: {
|
|
4986
5021
|
value: string;
|
|
@@ -4993,10 +5028,10 @@ export declare const useWorkspace: () => {
|
|
|
4993
5028
|
required?: boolean | undefined;
|
|
4994
5029
|
description?: string | undefined;
|
|
4995
5030
|
enum?: string[] | undefined;
|
|
5031
|
+
nullable?: boolean | undefined;
|
|
5032
|
+
format?: string | undefined;
|
|
4996
5033
|
file?: any;
|
|
4997
5034
|
refUid?: string | undefined;
|
|
4998
|
-
format?: string | undefined;
|
|
4999
|
-
nullable?: boolean | undefined;
|
|
5000
5035
|
}[];
|
|
5001
5036
|
};
|
|
5002
5037
|
auth: Record<string, any>;
|
|
@@ -5008,7 +5043,7 @@ export declare const useWorkspace: () => {
|
|
|
5008
5043
|
body: {
|
|
5009
5044
|
raw: {
|
|
5010
5045
|
value: string;
|
|
5011
|
-
encoding: "
|
|
5046
|
+
encoding: "xml" | "json" | "text" | "html" | "javascript" | "yaml" | "edn";
|
|
5012
5047
|
};
|
|
5013
5048
|
formData: {
|
|
5014
5049
|
value: {
|
|
@@ -5022,10 +5057,10 @@ export declare const useWorkspace: () => {
|
|
|
5022
5057
|
required?: boolean | undefined;
|
|
5023
5058
|
description?: string | undefined;
|
|
5024
5059
|
enum?: string[] | undefined;
|
|
5060
|
+
nullable?: boolean | undefined;
|
|
5061
|
+
format?: string | undefined;
|
|
5025
5062
|
file?: any;
|
|
5026
5063
|
refUid?: string | undefined;
|
|
5027
|
-
format?: string | undefined;
|
|
5028
|
-
nullable?: boolean | undefined;
|
|
5029
5064
|
}[];
|
|
5030
5065
|
encoding: "form-data" | "urlencoded";
|
|
5031
5066
|
};
|
|
@@ -5044,10 +5079,10 @@ export declare const useWorkspace: () => {
|
|
|
5044
5079
|
required?: boolean | undefined;
|
|
5045
5080
|
description?: string | undefined;
|
|
5046
5081
|
enum?: string[] | undefined;
|
|
5082
|
+
nullable?: boolean | undefined;
|
|
5083
|
+
format?: string | undefined;
|
|
5047
5084
|
file?: any;
|
|
5048
5085
|
refUid?: string | undefined;
|
|
5049
|
-
format?: string | undefined;
|
|
5050
|
-
nullable?: boolean | undefined;
|
|
5051
5086
|
}[];
|
|
5052
5087
|
query: {
|
|
5053
5088
|
value: string;
|
|
@@ -5060,10 +5095,10 @@ export declare const useWorkspace: () => {
|
|
|
5060
5095
|
required?: boolean | undefined;
|
|
5061
5096
|
description?: string | undefined;
|
|
5062
5097
|
enum?: string[] | undefined;
|
|
5098
|
+
nullable?: boolean | undefined;
|
|
5099
|
+
format?: string | undefined;
|
|
5063
5100
|
file?: any;
|
|
5064
5101
|
refUid?: string | undefined;
|
|
5065
|
-
format?: string | undefined;
|
|
5066
|
-
nullable?: boolean | undefined;
|
|
5067
5102
|
}[];
|
|
5068
5103
|
headers: {
|
|
5069
5104
|
value: string;
|
|
@@ -5076,10 +5111,10 @@ export declare const useWorkspace: () => {
|
|
|
5076
5111
|
required?: boolean | undefined;
|
|
5077
5112
|
description?: string | undefined;
|
|
5078
5113
|
enum?: string[] | undefined;
|
|
5114
|
+
nullable?: boolean | undefined;
|
|
5115
|
+
format?: string | undefined;
|
|
5079
5116
|
file?: any;
|
|
5080
5117
|
refUid?: string | undefined;
|
|
5081
|
-
format?: string | undefined;
|
|
5082
|
-
nullable?: boolean | undefined;
|
|
5083
5118
|
}[];
|
|
5084
5119
|
cookies: {
|
|
5085
5120
|
value: string;
|
|
@@ -5092,10 +5127,10 @@ export declare const useWorkspace: () => {
|
|
|
5092
5127
|
required?: boolean | undefined;
|
|
5093
5128
|
description?: string | undefined;
|
|
5094
5129
|
enum?: string[] | undefined;
|
|
5130
|
+
nullable?: boolean | undefined;
|
|
5131
|
+
format?: string | undefined;
|
|
5095
5132
|
file?: any;
|
|
5096
5133
|
refUid?: string | undefined;
|
|
5097
|
-
format?: string | undefined;
|
|
5098
|
-
nullable?: boolean | undefined;
|
|
5099
5134
|
}[];
|
|
5100
5135
|
};
|
|
5101
5136
|
auth: Record<string, any>;
|
|
@@ -5751,6 +5786,7 @@ export declare const useWorkspace: () => {
|
|
|
5751
5786
|
isReadOnly: boolean;
|
|
5752
5787
|
collectionUids: string[];
|
|
5753
5788
|
environmentUids: string[];
|
|
5789
|
+
activeEnvironmentId: string;
|
|
5754
5790
|
cookieUids: string[];
|
|
5755
5791
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5756
5792
|
hotKeyConfig?: {
|
|
@@ -5769,6 +5805,7 @@ export declare const useWorkspace: () => {
|
|
|
5769
5805
|
isReadOnly: boolean;
|
|
5770
5806
|
collectionUids: string[];
|
|
5771
5807
|
environmentUids: string[];
|
|
5808
|
+
activeEnvironmentId: string;
|
|
5772
5809
|
cookieUids: string[];
|
|
5773
5810
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5774
5811
|
hotKeyConfig?: {
|
|
@@ -5789,6 +5826,7 @@ export declare const useWorkspace: () => {
|
|
|
5789
5826
|
isReadOnly: boolean;
|
|
5790
5827
|
collectionUids: string[];
|
|
5791
5828
|
environmentUids: string[];
|
|
5829
|
+
activeEnvironmentId: string;
|
|
5792
5830
|
cookieUids: string[];
|
|
5793
5831
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5794
5832
|
hotKeyConfig?: {
|
|
@@ -5800,13 +5838,14 @@ export declare const useWorkspace: () => {
|
|
|
5800
5838
|
} | undefined;
|
|
5801
5839
|
proxyUrl?: string | undefined;
|
|
5802
5840
|
}) => void;
|
|
5803
|
-
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" ? {
|
|
5841
|
+
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" ? {
|
|
5804
5842
|
uid: string;
|
|
5805
5843
|
name: string;
|
|
5806
5844
|
description: string;
|
|
5807
5845
|
isReadOnly: boolean;
|
|
5808
5846
|
collectionUids: string[];
|
|
5809
5847
|
environmentUids: string[];
|
|
5848
|
+
activeEnvironmentId: string;
|
|
5810
5849
|
cookieUids: string[];
|
|
5811
5850
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5812
5851
|
hotKeyConfig?: {
|
|
@@ -5817,13 +5856,14 @@ export declare const useWorkspace: () => {
|
|
|
5817
5856
|
}>> | undefined;
|
|
5818
5857
|
} | undefined;
|
|
5819
5858
|
proxyUrl?: string | undefined;
|
|
5820
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5859
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5821
5860
|
uid: string;
|
|
5822
5861
|
name: string;
|
|
5823
5862
|
description: string;
|
|
5824
5863
|
isReadOnly: boolean;
|
|
5825
5864
|
collectionUids: string[];
|
|
5826
5865
|
environmentUids: string[];
|
|
5866
|
+
activeEnvironmentId: string;
|
|
5827
5867
|
cookieUids: string[];
|
|
5828
5868
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5829
5869
|
hotKeyConfig?: {
|
|
@@ -5841,6 +5881,7 @@ export declare const useWorkspace: () => {
|
|
|
5841
5881
|
isReadOnly: boolean;
|
|
5842
5882
|
collectionUids: string[];
|
|
5843
5883
|
environmentUids: string[];
|
|
5884
|
+
activeEnvironmentId: string;
|
|
5844
5885
|
cookieUids: string[];
|
|
5845
5886
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5846
5887
|
hotKeyConfig?: {
|
|
@@ -5852,13 +5893,14 @@ export declare const useWorkspace: () => {
|
|
|
5852
5893
|
} | undefined;
|
|
5853
5894
|
proxyUrl?: string | undefined;
|
|
5854
5895
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
5855
|
-
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" ? {
|
|
5896
|
+
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" ? {
|
|
5856
5897
|
uid: string;
|
|
5857
5898
|
name: string;
|
|
5858
5899
|
description: string;
|
|
5859
5900
|
isReadOnly: boolean;
|
|
5860
5901
|
collectionUids: string[];
|
|
5861
5902
|
environmentUids: string[];
|
|
5903
|
+
activeEnvironmentId: string;
|
|
5862
5904
|
cookieUids: string[];
|
|
5863
5905
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5864
5906
|
hotKeyConfig?: {
|
|
@@ -5869,13 +5911,14 @@ export declare const useWorkspace: () => {
|
|
|
5869
5911
|
}>> | undefined;
|
|
5870
5912
|
} | undefined;
|
|
5871
5913
|
proxyUrl?: string | undefined;
|
|
5872
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5914
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "description" | "name" | "isReadOnly" | "uid" | "activeEnvironmentId" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? R extends Path<{
|
|
5873
5915
|
uid: string;
|
|
5874
5916
|
name: string;
|
|
5875
5917
|
description: string;
|
|
5876
5918
|
isReadOnly: boolean;
|
|
5877
5919
|
collectionUids: string[];
|
|
5878
5920
|
environmentUids: string[];
|
|
5921
|
+
activeEnvironmentId: string;
|
|
5879
5922
|
cookieUids: string[];
|
|
5880
5923
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5881
5924
|
hotKeyConfig?: {
|
|
@@ -5893,6 +5936,7 @@ export declare const useWorkspace: () => {
|
|
|
5893
5936
|
isReadOnly: boolean;
|
|
5894
5937
|
collectionUids: string[];
|
|
5895
5938
|
environmentUids: string[];
|
|
5939
|
+
activeEnvironmentId: string;
|
|
5896
5940
|
cookieUids: string[];
|
|
5897
5941
|
themeId: "default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "mars" | "none";
|
|
5898
5942
|
hotKeyConfig?: {
|
|
@@ -5909,4 +5953,5 @@ export declare const useWorkspace: () => {
|
|
|
5909
5953
|
loadLocalStorage: () => void;
|
|
5910
5954
|
};
|
|
5911
5955
|
};
|
|
5956
|
+
export {};
|
|
5912
5957
|
//# sourceMappingURL=workspace.d.ts.map
|