@scalar/api-client-react 1.0.26 → 1.0.28
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 +13 -0
- package/dist/index.d.ts +299 -299
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -147,6 +147,34 @@ export declare const useApiClientModal: () => {
|
|
|
147
147
|
uid: string;
|
|
148
148
|
name: string;
|
|
149
149
|
url: string;
|
|
150
|
+
requestUid: string;
|
|
151
|
+
body: {
|
|
152
|
+
raw: {
|
|
153
|
+
value: string;
|
|
154
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
155
|
+
};
|
|
156
|
+
formData: {
|
|
157
|
+
value: {
|
|
158
|
+
value: string;
|
|
159
|
+
key: string;
|
|
160
|
+
enabled: boolean;
|
|
161
|
+
minimum?: number | undefined;
|
|
162
|
+
type?: string | undefined;
|
|
163
|
+
maximum?: number | undefined;
|
|
164
|
+
default?: any;
|
|
165
|
+
required?: boolean | undefined;
|
|
166
|
+
description?: string | undefined;
|
|
167
|
+
enum?: string[] | undefined;
|
|
168
|
+
file?: any;
|
|
169
|
+
refUid?: string | undefined;
|
|
170
|
+
format?: string | undefined;
|
|
171
|
+
nullable?: boolean | undefined;
|
|
172
|
+
}[];
|
|
173
|
+
encoding: "form-data" | "urlencoded";
|
|
174
|
+
};
|
|
175
|
+
activeBody: "raw" | "formData" | "binary";
|
|
176
|
+
binary?: File | undefined;
|
|
177
|
+
};
|
|
150
178
|
parameters: {
|
|
151
179
|
path: {
|
|
152
180
|
value: string;
|
|
@@ -159,10 +187,10 @@ export declare const useApiClientModal: () => {
|
|
|
159
187
|
required?: boolean | undefined;
|
|
160
188
|
description?: string | undefined;
|
|
161
189
|
enum?: string[] | undefined;
|
|
162
|
-
nullable?: boolean | undefined;
|
|
163
|
-
format?: string | undefined;
|
|
164
190
|
file?: any;
|
|
165
191
|
refUid?: string | undefined;
|
|
192
|
+
format?: string | undefined;
|
|
193
|
+
nullable?: boolean | undefined;
|
|
166
194
|
}[];
|
|
167
195
|
query: {
|
|
168
196
|
value: string;
|
|
@@ -175,10 +203,10 @@ export declare const useApiClientModal: () => {
|
|
|
175
203
|
required?: boolean | undefined;
|
|
176
204
|
description?: string | undefined;
|
|
177
205
|
enum?: string[] | undefined;
|
|
178
|
-
nullable?: boolean | undefined;
|
|
179
|
-
format?: string | undefined;
|
|
180
206
|
file?: any;
|
|
181
207
|
refUid?: string | undefined;
|
|
208
|
+
format?: string | undefined;
|
|
209
|
+
nullable?: boolean | undefined;
|
|
182
210
|
}[];
|
|
183
211
|
headers: {
|
|
184
212
|
value: string;
|
|
@@ -191,10 +219,10 @@ export declare const useApiClientModal: () => {
|
|
|
191
219
|
required?: boolean | undefined;
|
|
192
220
|
description?: string | undefined;
|
|
193
221
|
enum?: string[] | undefined;
|
|
194
|
-
nullable?: boolean | undefined;
|
|
195
|
-
format?: string | undefined;
|
|
196
222
|
file?: any;
|
|
197
223
|
refUid?: string | undefined;
|
|
224
|
+
format?: string | undefined;
|
|
225
|
+
nullable?: boolean | undefined;
|
|
198
226
|
}[];
|
|
199
227
|
cookies: {
|
|
200
228
|
value: string;
|
|
@@ -207,40 +235,12 @@ export declare const useApiClientModal: () => {
|
|
|
207
235
|
required?: boolean | undefined;
|
|
208
236
|
description?: string | undefined;
|
|
209
237
|
enum?: string[] | undefined;
|
|
210
|
-
nullable?: boolean | undefined;
|
|
211
|
-
format?: string | undefined;
|
|
212
238
|
file?: any;
|
|
213
239
|
refUid?: string | undefined;
|
|
240
|
+
format?: string | undefined;
|
|
241
|
+
nullable?: boolean | undefined;
|
|
214
242
|
}[];
|
|
215
243
|
};
|
|
216
|
-
requestUid: string;
|
|
217
|
-
body: {
|
|
218
|
-
raw: {
|
|
219
|
-
value: string;
|
|
220
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
221
|
-
};
|
|
222
|
-
formData: {
|
|
223
|
-
value: {
|
|
224
|
-
value: string;
|
|
225
|
-
key: string;
|
|
226
|
-
enabled: boolean;
|
|
227
|
-
minimum?: number | undefined;
|
|
228
|
-
type?: string | undefined;
|
|
229
|
-
maximum?: number | undefined;
|
|
230
|
-
default?: any;
|
|
231
|
-
required?: boolean | undefined;
|
|
232
|
-
description?: string | undefined;
|
|
233
|
-
enum?: string[] | undefined;
|
|
234
|
-
nullable?: boolean | undefined;
|
|
235
|
-
format?: string | undefined;
|
|
236
|
-
file?: any;
|
|
237
|
-
refUid?: string | undefined;
|
|
238
|
-
}[];
|
|
239
|
-
encoding: "form-data" | "urlencoded";
|
|
240
|
-
};
|
|
241
|
-
activeBody: "raw" | "formData" | "binary";
|
|
242
|
-
binary?: File | undefined;
|
|
243
|
-
};
|
|
244
244
|
auth: Record<string, any>;
|
|
245
245
|
}>;
|
|
246
246
|
requests: Record<string, Request_2>;
|
|
@@ -368,8 +368,14 @@ export declare const useApiClientModal: () => {
|
|
|
368
368
|
uid: string;
|
|
369
369
|
name: string;
|
|
370
370
|
url: string;
|
|
371
|
-
|
|
372
|
-
|
|
371
|
+
requestUid: string;
|
|
372
|
+
body: {
|
|
373
|
+
raw: {
|
|
374
|
+
value: string;
|
|
375
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
376
|
+
};
|
|
377
|
+
formData: {
|
|
378
|
+
value: {
|
|
373
379
|
value: string;
|
|
374
380
|
key: string;
|
|
375
381
|
enabled: boolean;
|
|
@@ -380,12 +386,18 @@ export declare const useApiClientModal: () => {
|
|
|
380
386
|
required?: boolean | undefined;
|
|
381
387
|
description?: string | undefined;
|
|
382
388
|
enum?: string[] | undefined;
|
|
383
|
-
nullable?: boolean | undefined;
|
|
384
|
-
format?: string | undefined;
|
|
385
389
|
file?: any;
|
|
386
390
|
refUid?: string | undefined;
|
|
391
|
+
format?: string | undefined;
|
|
392
|
+
nullable?: boolean | undefined;
|
|
387
393
|
}[];
|
|
388
|
-
|
|
394
|
+
encoding: "form-data" | "urlencoded";
|
|
395
|
+
};
|
|
396
|
+
activeBody: "raw" | "formData" | "binary";
|
|
397
|
+
binary?: File | undefined;
|
|
398
|
+
};
|
|
399
|
+
parameters: {
|
|
400
|
+
path: {
|
|
389
401
|
value: string;
|
|
390
402
|
key: string;
|
|
391
403
|
enabled: boolean;
|
|
@@ -396,12 +408,12 @@ export declare const useApiClientModal: () => {
|
|
|
396
408
|
required?: boolean | undefined;
|
|
397
409
|
description?: string | undefined;
|
|
398
410
|
enum?: string[] | undefined;
|
|
399
|
-
nullable?: boolean | undefined;
|
|
400
|
-
format?: string | undefined;
|
|
401
411
|
file?: any;
|
|
402
412
|
refUid?: string | undefined;
|
|
413
|
+
format?: string | undefined;
|
|
414
|
+
nullable?: boolean | undefined;
|
|
403
415
|
}[];
|
|
404
|
-
|
|
416
|
+
query: {
|
|
405
417
|
value: string;
|
|
406
418
|
key: string;
|
|
407
419
|
enabled: boolean;
|
|
@@ -412,12 +424,12 @@ export declare const useApiClientModal: () => {
|
|
|
412
424
|
required?: boolean | undefined;
|
|
413
425
|
description?: string | undefined;
|
|
414
426
|
enum?: string[] | undefined;
|
|
415
|
-
nullable?: boolean | undefined;
|
|
416
|
-
format?: string | undefined;
|
|
417
427
|
file?: any;
|
|
418
428
|
refUid?: string | undefined;
|
|
429
|
+
format?: string | undefined;
|
|
430
|
+
nullable?: boolean | undefined;
|
|
419
431
|
}[];
|
|
420
|
-
|
|
432
|
+
headers: {
|
|
421
433
|
value: string;
|
|
422
434
|
key: string;
|
|
423
435
|
enabled: boolean;
|
|
@@ -428,20 +440,12 @@ export declare const useApiClientModal: () => {
|
|
|
428
440
|
required?: boolean | undefined;
|
|
429
441
|
description?: string | undefined;
|
|
430
442
|
enum?: string[] | undefined;
|
|
431
|
-
nullable?: boolean | undefined;
|
|
432
|
-
format?: string | undefined;
|
|
433
443
|
file?: any;
|
|
434
444
|
refUid?: string | undefined;
|
|
445
|
+
format?: string | undefined;
|
|
446
|
+
nullable?: boolean | undefined;
|
|
435
447
|
}[];
|
|
436
|
-
|
|
437
|
-
requestUid: string;
|
|
438
|
-
body: {
|
|
439
|
-
raw: {
|
|
440
|
-
value: string;
|
|
441
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
442
|
-
};
|
|
443
|
-
formData: {
|
|
444
|
-
value: {
|
|
448
|
+
cookies: {
|
|
445
449
|
value: string;
|
|
446
450
|
key: string;
|
|
447
451
|
enabled: boolean;
|
|
@@ -452,15 +456,11 @@ export declare const useApiClientModal: () => {
|
|
|
452
456
|
required?: boolean | undefined;
|
|
453
457
|
description?: string | undefined;
|
|
454
458
|
enum?: string[] | undefined;
|
|
455
|
-
nullable?: boolean | undefined;
|
|
456
|
-
format?: string | undefined;
|
|
457
459
|
file?: any;
|
|
458
460
|
refUid?: string | undefined;
|
|
461
|
+
format?: string | undefined;
|
|
462
|
+
nullable?: boolean | undefined;
|
|
459
463
|
}[];
|
|
460
|
-
encoding: "form-data" | "urlencoded";
|
|
461
|
-
};
|
|
462
|
-
activeBody: "raw" | "formData" | "binary";
|
|
463
|
-
binary?: File | undefined;
|
|
464
464
|
};
|
|
465
465
|
auth: Record<string, any>;
|
|
466
466
|
}>;
|
|
@@ -1285,8 +1285,8 @@ export declare const useApiClientModal: () => {
|
|
|
1285
1285
|
};
|
|
1286
1286
|
delete: (request: Request_2, parentUid?: string) => void;
|
|
1287
1287
|
set: (item: Request_2) => void;
|
|
1288
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1289
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1288
|
+
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? Request_2[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? R extends Path<Request_2[K]> ? PathValue<Request_2[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1289
|
+
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `security.${number}` | `security.${number}.${string}` | `tags.${number}` | "externalDocs.url" | "externalDocs.description" | `history.${number}` | `history.${number}.${string}` | `childUids.${number}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `requestBody.${string}`>(uid: string, path: P, value: P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? Request_2[P] : P extends `${infer K}.${infer R}` ? K extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "method" | "history" | "childUids" | "parameters" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "operationId" | "requestBody" ? R extends Path<Request_2[K]> ? PathValue<Request_2[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1290
1290
|
undo: (uid: string) => void;
|
|
1291
1291
|
redo: (uid: string) => void;
|
|
1292
1292
|
loadLocalStorage: () => void;
|
|
@@ -1296,6 +1296,34 @@ export declare const useApiClientModal: () => {
|
|
|
1296
1296
|
uid: string;
|
|
1297
1297
|
name: string;
|
|
1298
1298
|
url: string;
|
|
1299
|
+
requestUid: string;
|
|
1300
|
+
body: {
|
|
1301
|
+
raw: {
|
|
1302
|
+
value: string;
|
|
1303
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1304
|
+
};
|
|
1305
|
+
formData: {
|
|
1306
|
+
value: {
|
|
1307
|
+
value: string;
|
|
1308
|
+
key: string;
|
|
1309
|
+
enabled: boolean;
|
|
1310
|
+
minimum?: number | undefined;
|
|
1311
|
+
type?: string | undefined;
|
|
1312
|
+
maximum?: number | undefined;
|
|
1313
|
+
default?: any;
|
|
1314
|
+
required?: boolean | undefined;
|
|
1315
|
+
description?: string | undefined;
|
|
1316
|
+
enum?: string[] | undefined;
|
|
1317
|
+
file?: any;
|
|
1318
|
+
refUid?: string | undefined;
|
|
1319
|
+
format?: string | undefined;
|
|
1320
|
+
nullable?: boolean | undefined;
|
|
1321
|
+
}[];
|
|
1322
|
+
encoding: "form-data" | "urlencoded";
|
|
1323
|
+
};
|
|
1324
|
+
activeBody: "raw" | "formData" | "binary";
|
|
1325
|
+
binary?: File | undefined;
|
|
1326
|
+
};
|
|
1299
1327
|
parameters: {
|
|
1300
1328
|
path: {
|
|
1301
1329
|
value: string;
|
|
@@ -1308,10 +1336,10 @@ export declare const useApiClientModal: () => {
|
|
|
1308
1336
|
required?: boolean | undefined;
|
|
1309
1337
|
description?: string | undefined;
|
|
1310
1338
|
enum?: string[] | undefined;
|
|
1311
|
-
nullable?: boolean | undefined;
|
|
1312
|
-
format?: string | undefined;
|
|
1313
1339
|
file?: any;
|
|
1314
1340
|
refUid?: string | undefined;
|
|
1341
|
+
format?: string | undefined;
|
|
1342
|
+
nullable?: boolean | undefined;
|
|
1315
1343
|
}[];
|
|
1316
1344
|
query: {
|
|
1317
1345
|
value: string;
|
|
@@ -1324,10 +1352,10 @@ export declare const useApiClientModal: () => {
|
|
|
1324
1352
|
required?: boolean | undefined;
|
|
1325
1353
|
description?: string | undefined;
|
|
1326
1354
|
enum?: string[] | undefined;
|
|
1327
|
-
nullable?: boolean | undefined;
|
|
1328
|
-
format?: string | undefined;
|
|
1329
1355
|
file?: any;
|
|
1330
1356
|
refUid?: string | undefined;
|
|
1357
|
+
format?: string | undefined;
|
|
1358
|
+
nullable?: boolean | undefined;
|
|
1331
1359
|
}[];
|
|
1332
1360
|
headers: {
|
|
1333
1361
|
value: string;
|
|
@@ -1340,10 +1368,10 @@ export declare const useApiClientModal: () => {
|
|
|
1340
1368
|
required?: boolean | undefined;
|
|
1341
1369
|
description?: string | undefined;
|
|
1342
1370
|
enum?: string[] | undefined;
|
|
1343
|
-
nullable?: boolean | undefined;
|
|
1344
|
-
format?: string | undefined;
|
|
1345
1371
|
file?: any;
|
|
1346
1372
|
refUid?: string | undefined;
|
|
1373
|
+
format?: string | undefined;
|
|
1374
|
+
nullable?: boolean | undefined;
|
|
1347
1375
|
}[];
|
|
1348
1376
|
cookies: {
|
|
1349
1377
|
value: string;
|
|
@@ -1356,17 +1384,23 @@ export declare const useApiClientModal: () => {
|
|
|
1356
1384
|
required?: boolean | undefined;
|
|
1357
1385
|
description?: string | undefined;
|
|
1358
1386
|
enum?: string[] | undefined;
|
|
1359
|
-
nullable?: boolean | undefined;
|
|
1360
|
-
format?: string | undefined;
|
|
1361
1387
|
file?: any;
|
|
1362
1388
|
refUid?: string | undefined;
|
|
1389
|
+
format?: string | undefined;
|
|
1390
|
+
nullable?: boolean | undefined;
|
|
1363
1391
|
}[];
|
|
1364
1392
|
};
|
|
1393
|
+
auth: Record<string, any>;
|
|
1394
|
+
}) => void;
|
|
1395
|
+
add: (request: Request_2, name?: string) => {
|
|
1396
|
+
uid: string;
|
|
1397
|
+
name: string;
|
|
1398
|
+
url: string;
|
|
1365
1399
|
requestUid: string;
|
|
1366
1400
|
body: {
|
|
1367
1401
|
raw: {
|
|
1368
1402
|
value: string;
|
|
1369
|
-
encoding: "
|
|
1403
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1370
1404
|
};
|
|
1371
1405
|
formData: {
|
|
1372
1406
|
value: {
|
|
@@ -1380,22 +1414,16 @@ export declare const useApiClientModal: () => {
|
|
|
1380
1414
|
required?: boolean | undefined;
|
|
1381
1415
|
description?: string | undefined;
|
|
1382
1416
|
enum?: string[] | undefined;
|
|
1383
|
-
nullable?: boolean | undefined;
|
|
1384
|
-
format?: string | undefined;
|
|
1385
1417
|
file?: any;
|
|
1386
1418
|
refUid?: string | undefined;
|
|
1419
|
+
format?: string | undefined;
|
|
1420
|
+
nullable?: boolean | undefined;
|
|
1387
1421
|
}[];
|
|
1388
1422
|
encoding: "form-data" | "urlencoded";
|
|
1389
1423
|
};
|
|
1390
1424
|
activeBody: "raw" | "formData" | "binary";
|
|
1391
1425
|
binary?: File | undefined;
|
|
1392
1426
|
};
|
|
1393
|
-
auth: Record<string, any>;
|
|
1394
|
-
}) => void;
|
|
1395
|
-
add: (request: Request_2, name?: string) => {
|
|
1396
|
-
uid: string;
|
|
1397
|
-
name: string;
|
|
1398
|
-
url: string;
|
|
1399
1427
|
parameters: {
|
|
1400
1428
|
path: {
|
|
1401
1429
|
value: string;
|
|
@@ -1408,10 +1436,10 @@ export declare const useApiClientModal: () => {
|
|
|
1408
1436
|
required?: boolean | undefined;
|
|
1409
1437
|
description?: string | undefined;
|
|
1410
1438
|
enum?: string[] | undefined;
|
|
1411
|
-
nullable?: boolean | undefined;
|
|
1412
|
-
format?: string | undefined;
|
|
1413
1439
|
file?: any;
|
|
1414
1440
|
refUid?: string | undefined;
|
|
1441
|
+
format?: string | undefined;
|
|
1442
|
+
nullable?: boolean | undefined;
|
|
1415
1443
|
}[];
|
|
1416
1444
|
query: {
|
|
1417
1445
|
value: string;
|
|
@@ -1424,10 +1452,10 @@ export declare const useApiClientModal: () => {
|
|
|
1424
1452
|
required?: boolean | undefined;
|
|
1425
1453
|
description?: string | undefined;
|
|
1426
1454
|
enum?: string[] | undefined;
|
|
1427
|
-
nullable?: boolean | undefined;
|
|
1428
|
-
format?: string | undefined;
|
|
1429
1455
|
file?: any;
|
|
1430
1456
|
refUid?: string | undefined;
|
|
1457
|
+
format?: string | undefined;
|
|
1458
|
+
nullable?: boolean | undefined;
|
|
1431
1459
|
}[];
|
|
1432
1460
|
headers: {
|
|
1433
1461
|
value: string;
|
|
@@ -1440,10 +1468,10 @@ export declare const useApiClientModal: () => {
|
|
|
1440
1468
|
required?: boolean | undefined;
|
|
1441
1469
|
description?: string | undefined;
|
|
1442
1470
|
enum?: string[] | undefined;
|
|
1443
|
-
nullable?: boolean | undefined;
|
|
1444
|
-
format?: string | undefined;
|
|
1445
1471
|
file?: any;
|
|
1446
1472
|
refUid?: string | undefined;
|
|
1473
|
+
format?: string | undefined;
|
|
1474
|
+
nullable?: boolean | undefined;
|
|
1447
1475
|
}[];
|
|
1448
1476
|
cookies: {
|
|
1449
1477
|
value: string;
|
|
@@ -1456,17 +1484,24 @@ export declare const useApiClientModal: () => {
|
|
|
1456
1484
|
required?: boolean | undefined;
|
|
1457
1485
|
description?: string | undefined;
|
|
1458
1486
|
enum?: string[] | undefined;
|
|
1459
|
-
nullable?: boolean | undefined;
|
|
1460
|
-
format?: string | undefined;
|
|
1461
1487
|
file?: any;
|
|
1462
1488
|
refUid?: string | undefined;
|
|
1489
|
+
format?: string | undefined;
|
|
1490
|
+
nullable?: boolean | undefined;
|
|
1463
1491
|
}[];
|
|
1464
1492
|
};
|
|
1493
|
+
auth: Record<string, any>;
|
|
1494
|
+
};
|
|
1495
|
+
delete: (requestExample: RequestExample) => void;
|
|
1496
|
+
set: (item: {
|
|
1497
|
+
uid: string;
|
|
1498
|
+
name: string;
|
|
1499
|
+
url: string;
|
|
1465
1500
|
requestUid: string;
|
|
1466
1501
|
body: {
|
|
1467
1502
|
raw: {
|
|
1468
1503
|
value: string;
|
|
1469
|
-
encoding: "
|
|
1504
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1470
1505
|
};
|
|
1471
1506
|
formData: {
|
|
1472
1507
|
value: {
|
|
@@ -1480,23 +1515,16 @@ export declare const useApiClientModal: () => {
|
|
|
1480
1515
|
required?: boolean | undefined;
|
|
1481
1516
|
description?: string | undefined;
|
|
1482
1517
|
enum?: string[] | undefined;
|
|
1483
|
-
nullable?: boolean | undefined;
|
|
1484
|
-
format?: string | undefined;
|
|
1485
1518
|
file?: any;
|
|
1486
1519
|
refUid?: string | undefined;
|
|
1520
|
+
format?: string | undefined;
|
|
1521
|
+
nullable?: boolean | undefined;
|
|
1487
1522
|
}[];
|
|
1488
1523
|
encoding: "form-data" | "urlencoded";
|
|
1489
1524
|
};
|
|
1490
1525
|
activeBody: "raw" | "formData" | "binary";
|
|
1491
1526
|
binary?: File | undefined;
|
|
1492
1527
|
};
|
|
1493
|
-
auth: Record<string, any>;
|
|
1494
|
-
};
|
|
1495
|
-
delete: (requestExample: RequestExample) => void;
|
|
1496
|
-
set: (item: {
|
|
1497
|
-
uid: string;
|
|
1498
|
-
name: string;
|
|
1499
|
-
url: string;
|
|
1500
1528
|
parameters: {
|
|
1501
1529
|
path: {
|
|
1502
1530
|
value: string;
|
|
@@ -1509,10 +1537,10 @@ export declare const useApiClientModal: () => {
|
|
|
1509
1537
|
required?: boolean | undefined;
|
|
1510
1538
|
description?: string | undefined;
|
|
1511
1539
|
enum?: string[] | undefined;
|
|
1512
|
-
nullable?: boolean | undefined;
|
|
1513
|
-
format?: string | undefined;
|
|
1514
1540
|
file?: any;
|
|
1515
1541
|
refUid?: string | undefined;
|
|
1542
|
+
format?: string | undefined;
|
|
1543
|
+
nullable?: boolean | undefined;
|
|
1516
1544
|
}[];
|
|
1517
1545
|
query: {
|
|
1518
1546
|
value: string;
|
|
@@ -1525,10 +1553,10 @@ export declare const useApiClientModal: () => {
|
|
|
1525
1553
|
required?: boolean | undefined;
|
|
1526
1554
|
description?: string | undefined;
|
|
1527
1555
|
enum?: string[] | undefined;
|
|
1528
|
-
nullable?: boolean | undefined;
|
|
1529
|
-
format?: string | undefined;
|
|
1530
1556
|
file?: any;
|
|
1531
1557
|
refUid?: string | undefined;
|
|
1558
|
+
format?: string | undefined;
|
|
1559
|
+
nullable?: boolean | undefined;
|
|
1532
1560
|
}[];
|
|
1533
1561
|
headers: {
|
|
1534
1562
|
value: string;
|
|
@@ -1541,10 +1569,10 @@ export declare const useApiClientModal: () => {
|
|
|
1541
1569
|
required?: boolean | undefined;
|
|
1542
1570
|
description?: string | undefined;
|
|
1543
1571
|
enum?: string[] | undefined;
|
|
1544
|
-
nullable?: boolean | undefined;
|
|
1545
|
-
format?: string | undefined;
|
|
1546
1572
|
file?: any;
|
|
1547
1573
|
refUid?: string | undefined;
|
|
1574
|
+
format?: string | undefined;
|
|
1575
|
+
nullable?: boolean | undefined;
|
|
1548
1576
|
}[];
|
|
1549
1577
|
cookies: {
|
|
1550
1578
|
value: string;
|
|
@@ -1557,17 +1585,23 @@ export declare const useApiClientModal: () => {
|
|
|
1557
1585
|
required?: boolean | undefined;
|
|
1558
1586
|
description?: string | undefined;
|
|
1559
1587
|
enum?: string[] | undefined;
|
|
1560
|
-
nullable?: boolean | undefined;
|
|
1561
|
-
format?: string | undefined;
|
|
1562
1588
|
file?: any;
|
|
1563
1589
|
refUid?: string | undefined;
|
|
1590
|
+
format?: string | undefined;
|
|
1591
|
+
nullable?: boolean | undefined;
|
|
1564
1592
|
}[];
|
|
1565
1593
|
};
|
|
1594
|
+
auth: Record<string, any>;
|
|
1595
|
+
}) => void;
|
|
1596
|
+
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1597
|
+
uid: string;
|
|
1598
|
+
name: string;
|
|
1599
|
+
url: string;
|
|
1566
1600
|
requestUid: string;
|
|
1567
1601
|
body: {
|
|
1568
1602
|
raw: {
|
|
1569
1603
|
value: string;
|
|
1570
|
-
encoding: "
|
|
1604
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1571
1605
|
};
|
|
1572
1606
|
formData: {
|
|
1573
1607
|
value: {
|
|
@@ -1581,22 +1615,16 @@ export declare const useApiClientModal: () => {
|
|
|
1581
1615
|
required?: boolean | undefined;
|
|
1582
1616
|
description?: string | undefined;
|
|
1583
1617
|
enum?: string[] | undefined;
|
|
1584
|
-
nullable?: boolean | undefined;
|
|
1585
|
-
format?: string | undefined;
|
|
1586
1618
|
file?: any;
|
|
1587
1619
|
refUid?: string | undefined;
|
|
1620
|
+
format?: string | undefined;
|
|
1621
|
+
nullable?: boolean | undefined;
|
|
1588
1622
|
}[];
|
|
1589
1623
|
encoding: "form-data" | "urlencoded";
|
|
1590
1624
|
};
|
|
1591
1625
|
activeBody: "raw" | "formData" | "binary";
|
|
1592
1626
|
binary?: File | undefined;
|
|
1593
1627
|
};
|
|
1594
|
-
auth: Record<string, any>;
|
|
1595
|
-
}) => void;
|
|
1596
|
-
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.format` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.format` | `parameters.path.${number}.maximum` | `parameters.path.${number}.minimum` | `parameters.path.${number}.enabled` | `parameters.path.${number}.refUid` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.format` | `parameters.query.${number}.maximum` | `parameters.query.${number}.minimum` | `parameters.query.${number}.enabled` | `parameters.query.${number}.refUid` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.format` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1597
|
-
uid: string;
|
|
1598
|
-
name: string;
|
|
1599
|
-
url: string;
|
|
1600
1628
|
parameters: {
|
|
1601
1629
|
path: {
|
|
1602
1630
|
value: string;
|
|
@@ -1609,10 +1637,10 @@ export declare const useApiClientModal: () => {
|
|
|
1609
1637
|
required?: boolean | undefined;
|
|
1610
1638
|
description?: string | undefined;
|
|
1611
1639
|
enum?: string[] | undefined;
|
|
1612
|
-
nullable?: boolean | undefined;
|
|
1613
|
-
format?: string | undefined;
|
|
1614
1640
|
file?: any;
|
|
1615
1641
|
refUid?: string | undefined;
|
|
1642
|
+
format?: string | undefined;
|
|
1643
|
+
nullable?: boolean | undefined;
|
|
1616
1644
|
}[];
|
|
1617
1645
|
query: {
|
|
1618
1646
|
value: string;
|
|
@@ -1625,10 +1653,10 @@ export declare const useApiClientModal: () => {
|
|
|
1625
1653
|
required?: boolean | undefined;
|
|
1626
1654
|
description?: string | undefined;
|
|
1627
1655
|
enum?: string[] | undefined;
|
|
1628
|
-
nullable?: boolean | undefined;
|
|
1629
|
-
format?: string | undefined;
|
|
1630
1656
|
file?: any;
|
|
1631
1657
|
refUid?: string | undefined;
|
|
1658
|
+
format?: string | undefined;
|
|
1659
|
+
nullable?: boolean | undefined;
|
|
1632
1660
|
}[];
|
|
1633
1661
|
headers: {
|
|
1634
1662
|
value: string;
|
|
@@ -1641,10 +1669,10 @@ export declare const useApiClientModal: () => {
|
|
|
1641
1669
|
required?: boolean | undefined;
|
|
1642
1670
|
description?: string | undefined;
|
|
1643
1671
|
enum?: string[] | undefined;
|
|
1644
|
-
nullable?: boolean | undefined;
|
|
1645
|
-
format?: string | undefined;
|
|
1646
1672
|
file?: any;
|
|
1647
1673
|
refUid?: string | undefined;
|
|
1674
|
+
format?: string | undefined;
|
|
1675
|
+
nullable?: boolean | undefined;
|
|
1648
1676
|
}[];
|
|
1649
1677
|
cookies: {
|
|
1650
1678
|
value: string;
|
|
@@ -1657,45 +1685,45 @@ export declare const useApiClientModal: () => {
|
|
|
1657
1685
|
required?: boolean | undefined;
|
|
1658
1686
|
description?: string | undefined;
|
|
1659
1687
|
enum?: string[] | undefined;
|
|
1660
|
-
nullable?: boolean | undefined;
|
|
1661
|
-
format?: string | undefined;
|
|
1662
1688
|
file?: any;
|
|
1663
1689
|
refUid?: string | undefined;
|
|
1690
|
+
format?: string | undefined;
|
|
1691
|
+
nullable?: boolean | undefined;
|
|
1664
1692
|
}[];
|
|
1665
1693
|
};
|
|
1666
|
-
requestUid: string;
|
|
1667
|
-
body: {
|
|
1668
|
-
raw: {
|
|
1669
|
-
value: string;
|
|
1670
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1671
|
-
};
|
|
1672
|
-
formData: {
|
|
1673
|
-
value: {
|
|
1674
|
-
value: string;
|
|
1675
|
-
key: string;
|
|
1676
|
-
enabled: boolean;
|
|
1677
|
-
minimum?: number | undefined;
|
|
1678
|
-
type?: string | undefined;
|
|
1679
|
-
maximum?: number | undefined;
|
|
1680
|
-
default?: any;
|
|
1681
|
-
required?: boolean | undefined;
|
|
1682
|
-
description?: string | undefined;
|
|
1683
|
-
enum?: string[] | undefined;
|
|
1684
|
-
nullable?: boolean | undefined;
|
|
1685
|
-
format?: string | undefined;
|
|
1686
|
-
file?: any;
|
|
1687
|
-
refUid?: string | undefined;
|
|
1688
|
-
}[];
|
|
1689
|
-
encoding: "form-data" | "urlencoded";
|
|
1690
|
-
};
|
|
1691
|
-
activeBody: "raw" | "formData" | "binary";
|
|
1692
|
-
binary?: File | undefined;
|
|
1693
|
-
};
|
|
1694
1694
|
auth: Record<string, any>;
|
|
1695
1695
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path< {
|
|
1696
1696
|
uid: string;
|
|
1697
1697
|
name: string;
|
|
1698
1698
|
url: string;
|
|
1699
|
+
requestUid: string;
|
|
1700
|
+
body: {
|
|
1701
|
+
raw: {
|
|
1702
|
+
value: string;
|
|
1703
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1704
|
+
};
|
|
1705
|
+
formData: {
|
|
1706
|
+
value: {
|
|
1707
|
+
value: string;
|
|
1708
|
+
key: string;
|
|
1709
|
+
enabled: boolean;
|
|
1710
|
+
minimum?: number | undefined;
|
|
1711
|
+
type?: string | undefined;
|
|
1712
|
+
maximum?: number | undefined;
|
|
1713
|
+
default?: any;
|
|
1714
|
+
required?: boolean | undefined;
|
|
1715
|
+
description?: string | undefined;
|
|
1716
|
+
enum?: string[] | undefined;
|
|
1717
|
+
file?: any;
|
|
1718
|
+
refUid?: string | undefined;
|
|
1719
|
+
format?: string | undefined;
|
|
1720
|
+
nullable?: boolean | undefined;
|
|
1721
|
+
}[];
|
|
1722
|
+
encoding: "form-data" | "urlencoded";
|
|
1723
|
+
};
|
|
1724
|
+
activeBody: "raw" | "formData" | "binary";
|
|
1725
|
+
binary?: File | undefined;
|
|
1726
|
+
};
|
|
1699
1727
|
parameters: {
|
|
1700
1728
|
path: {
|
|
1701
1729
|
value: string;
|
|
@@ -1708,10 +1736,10 @@ export declare const useApiClientModal: () => {
|
|
|
1708
1736
|
required?: boolean | undefined;
|
|
1709
1737
|
description?: string | undefined;
|
|
1710
1738
|
enum?: string[] | undefined;
|
|
1711
|
-
nullable?: boolean | undefined;
|
|
1712
|
-
format?: string | undefined;
|
|
1713
1739
|
file?: any;
|
|
1714
1740
|
refUid?: string | undefined;
|
|
1741
|
+
format?: string | undefined;
|
|
1742
|
+
nullable?: boolean | undefined;
|
|
1715
1743
|
}[];
|
|
1716
1744
|
query: {
|
|
1717
1745
|
value: string;
|
|
@@ -1724,10 +1752,10 @@ export declare const useApiClientModal: () => {
|
|
|
1724
1752
|
required?: boolean | undefined;
|
|
1725
1753
|
description?: string | undefined;
|
|
1726
1754
|
enum?: string[] | undefined;
|
|
1727
|
-
nullable?: boolean | undefined;
|
|
1728
|
-
format?: string | undefined;
|
|
1729
1755
|
file?: any;
|
|
1730
1756
|
refUid?: string | undefined;
|
|
1757
|
+
format?: string | undefined;
|
|
1758
|
+
nullable?: boolean | undefined;
|
|
1731
1759
|
}[];
|
|
1732
1760
|
headers: {
|
|
1733
1761
|
value: string;
|
|
@@ -1740,10 +1768,10 @@ export declare const useApiClientModal: () => {
|
|
|
1740
1768
|
required?: boolean | undefined;
|
|
1741
1769
|
description?: string | undefined;
|
|
1742
1770
|
enum?: string[] | undefined;
|
|
1743
|
-
nullable?: boolean | undefined;
|
|
1744
|
-
format?: string | undefined;
|
|
1745
1771
|
file?: any;
|
|
1746
1772
|
refUid?: string | undefined;
|
|
1773
|
+
format?: string | undefined;
|
|
1774
|
+
nullable?: boolean | undefined;
|
|
1747
1775
|
}[];
|
|
1748
1776
|
cookies: {
|
|
1749
1777
|
value: string;
|
|
@@ -1756,17 +1784,22 @@ export declare const useApiClientModal: () => {
|
|
|
1756
1784
|
required?: boolean | undefined;
|
|
1757
1785
|
description?: string | undefined;
|
|
1758
1786
|
enum?: string[] | undefined;
|
|
1759
|
-
nullable?: boolean | undefined;
|
|
1760
|
-
format?: string | undefined;
|
|
1761
1787
|
file?: any;
|
|
1762
1788
|
refUid?: string | undefined;
|
|
1789
|
+
format?: string | undefined;
|
|
1790
|
+
nullable?: boolean | undefined;
|
|
1763
1791
|
}[];
|
|
1764
1792
|
};
|
|
1793
|
+
auth: Record<string, any>;
|
|
1794
|
+
}[K]> ? PathValue< {
|
|
1795
|
+
uid: string;
|
|
1796
|
+
name: string;
|
|
1797
|
+
url: string;
|
|
1765
1798
|
requestUid: string;
|
|
1766
1799
|
body: {
|
|
1767
1800
|
raw: {
|
|
1768
1801
|
value: string;
|
|
1769
|
-
encoding: "
|
|
1802
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1770
1803
|
};
|
|
1771
1804
|
formData: {
|
|
1772
1805
|
value: {
|
|
@@ -1780,21 +1813,16 @@ export declare const useApiClientModal: () => {
|
|
|
1780
1813
|
required?: boolean | undefined;
|
|
1781
1814
|
description?: string | undefined;
|
|
1782
1815
|
enum?: string[] | undefined;
|
|
1783
|
-
nullable?: boolean | undefined;
|
|
1784
|
-
format?: string | undefined;
|
|
1785
1816
|
file?: any;
|
|
1786
1817
|
refUid?: string | undefined;
|
|
1818
|
+
format?: string | undefined;
|
|
1819
|
+
nullable?: boolean | undefined;
|
|
1787
1820
|
}[];
|
|
1788
1821
|
encoding: "form-data" | "urlencoded";
|
|
1789
1822
|
};
|
|
1790
1823
|
activeBody: "raw" | "formData" | "binary";
|
|
1791
1824
|
binary?: File | undefined;
|
|
1792
1825
|
};
|
|
1793
|
-
auth: Record<string, any>;
|
|
1794
|
-
}[K]> ? PathValue< {
|
|
1795
|
-
uid: string;
|
|
1796
|
-
name: string;
|
|
1797
|
-
url: string;
|
|
1798
1826
|
parameters: {
|
|
1799
1827
|
path: {
|
|
1800
1828
|
value: string;
|
|
@@ -1807,10 +1835,10 @@ export declare const useApiClientModal: () => {
|
|
|
1807
1835
|
required?: boolean | undefined;
|
|
1808
1836
|
description?: string | undefined;
|
|
1809
1837
|
enum?: string[] | undefined;
|
|
1810
|
-
nullable?: boolean | undefined;
|
|
1811
|
-
format?: string | undefined;
|
|
1812
1838
|
file?: any;
|
|
1813
1839
|
refUid?: string | undefined;
|
|
1840
|
+
format?: string | undefined;
|
|
1841
|
+
nullable?: boolean | undefined;
|
|
1814
1842
|
}[];
|
|
1815
1843
|
query: {
|
|
1816
1844
|
value: string;
|
|
@@ -1823,10 +1851,10 @@ export declare const useApiClientModal: () => {
|
|
|
1823
1851
|
required?: boolean | undefined;
|
|
1824
1852
|
description?: string | undefined;
|
|
1825
1853
|
enum?: string[] | undefined;
|
|
1826
|
-
nullable?: boolean | undefined;
|
|
1827
|
-
format?: string | undefined;
|
|
1828
1854
|
file?: any;
|
|
1829
1855
|
refUid?: string | undefined;
|
|
1856
|
+
format?: string | undefined;
|
|
1857
|
+
nullable?: boolean | undefined;
|
|
1830
1858
|
}[];
|
|
1831
1859
|
headers: {
|
|
1832
1860
|
value: string;
|
|
@@ -1839,10 +1867,10 @@ export declare const useApiClientModal: () => {
|
|
|
1839
1867
|
required?: boolean | undefined;
|
|
1840
1868
|
description?: string | undefined;
|
|
1841
1869
|
enum?: string[] | undefined;
|
|
1842
|
-
nullable?: boolean | undefined;
|
|
1843
|
-
format?: string | undefined;
|
|
1844
1870
|
file?: any;
|
|
1845
1871
|
refUid?: string | undefined;
|
|
1872
|
+
format?: string | undefined;
|
|
1873
|
+
nullable?: boolean | undefined;
|
|
1846
1874
|
}[];
|
|
1847
1875
|
cookies: {
|
|
1848
1876
|
value: string;
|
|
@@ -1855,46 +1883,46 @@ export declare const useApiClientModal: () => {
|
|
|
1855
1883
|
required?: boolean | undefined;
|
|
1856
1884
|
description?: string | undefined;
|
|
1857
1885
|
enum?: string[] | undefined;
|
|
1858
|
-
nullable?: boolean | undefined;
|
|
1859
|
-
format?: string | undefined;
|
|
1860
1886
|
file?: any;
|
|
1861
1887
|
refUid?: string | undefined;
|
|
1862
|
-
}[];
|
|
1863
|
-
};
|
|
1864
|
-
requestUid: string;
|
|
1865
|
-
body: {
|
|
1866
|
-
raw: {
|
|
1867
|
-
value: string;
|
|
1868
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1869
|
-
};
|
|
1870
|
-
formData: {
|
|
1871
|
-
value: {
|
|
1872
|
-
value: string;
|
|
1873
|
-
key: string;
|
|
1874
|
-
enabled: boolean;
|
|
1875
|
-
minimum?: number | undefined;
|
|
1876
|
-
type?: string | undefined;
|
|
1877
|
-
maximum?: number | undefined;
|
|
1878
|
-
default?: any;
|
|
1879
|
-
required?: boolean | undefined;
|
|
1880
|
-
description?: string | undefined;
|
|
1881
|
-
enum?: string[] | undefined;
|
|
1882
|
-
nullable?: boolean | undefined;
|
|
1883
1888
|
format?: string | undefined;
|
|
1884
|
-
|
|
1885
|
-
refUid?: string | undefined;
|
|
1889
|
+
nullable?: boolean | undefined;
|
|
1886
1890
|
}[];
|
|
1887
|
-
encoding: "form-data" | "urlencoded";
|
|
1888
|
-
};
|
|
1889
|
-
activeBody: "raw" | "formData" | "binary";
|
|
1890
|
-
binary?: File | undefined;
|
|
1891
1891
|
};
|
|
1892
1892
|
auth: Record<string, any>;
|
|
1893
1893
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1894
|
-
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}.
|
|
1894
|
+
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1895
1895
|
uid: string;
|
|
1896
1896
|
name: string;
|
|
1897
1897
|
url: string;
|
|
1898
|
+
requestUid: string;
|
|
1899
|
+
body: {
|
|
1900
|
+
raw: {
|
|
1901
|
+
value: string;
|
|
1902
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1903
|
+
};
|
|
1904
|
+
formData: {
|
|
1905
|
+
value: {
|
|
1906
|
+
value: string;
|
|
1907
|
+
key: string;
|
|
1908
|
+
enabled: boolean;
|
|
1909
|
+
minimum?: number | undefined;
|
|
1910
|
+
type?: string | undefined;
|
|
1911
|
+
maximum?: number | undefined;
|
|
1912
|
+
default?: any;
|
|
1913
|
+
required?: boolean | undefined;
|
|
1914
|
+
description?: string | undefined;
|
|
1915
|
+
enum?: string[] | undefined;
|
|
1916
|
+
file?: any;
|
|
1917
|
+
refUid?: string | undefined;
|
|
1918
|
+
format?: string | undefined;
|
|
1919
|
+
nullable?: boolean | undefined;
|
|
1920
|
+
}[];
|
|
1921
|
+
encoding: "form-data" | "urlencoded";
|
|
1922
|
+
};
|
|
1923
|
+
activeBody: "raw" | "formData" | "binary";
|
|
1924
|
+
binary?: File | undefined;
|
|
1925
|
+
};
|
|
1898
1926
|
parameters: {
|
|
1899
1927
|
path: {
|
|
1900
1928
|
value: string;
|
|
@@ -1907,10 +1935,10 @@ export declare const useApiClientModal: () => {
|
|
|
1907
1935
|
required?: boolean | undefined;
|
|
1908
1936
|
description?: string | undefined;
|
|
1909
1937
|
enum?: string[] | undefined;
|
|
1910
|
-
nullable?: boolean | undefined;
|
|
1911
|
-
format?: string | undefined;
|
|
1912
1938
|
file?: any;
|
|
1913
1939
|
refUid?: string | undefined;
|
|
1940
|
+
format?: string | undefined;
|
|
1941
|
+
nullable?: boolean | undefined;
|
|
1914
1942
|
}[];
|
|
1915
1943
|
query: {
|
|
1916
1944
|
value: string;
|
|
@@ -1923,10 +1951,10 @@ export declare const useApiClientModal: () => {
|
|
|
1923
1951
|
required?: boolean | undefined;
|
|
1924
1952
|
description?: string | undefined;
|
|
1925
1953
|
enum?: string[] | undefined;
|
|
1926
|
-
nullable?: boolean | undefined;
|
|
1927
|
-
format?: string | undefined;
|
|
1928
1954
|
file?: any;
|
|
1929
1955
|
refUid?: string | undefined;
|
|
1956
|
+
format?: string | undefined;
|
|
1957
|
+
nullable?: boolean | undefined;
|
|
1930
1958
|
}[];
|
|
1931
1959
|
headers: {
|
|
1932
1960
|
value: string;
|
|
@@ -1939,10 +1967,10 @@ export declare const useApiClientModal: () => {
|
|
|
1939
1967
|
required?: boolean | undefined;
|
|
1940
1968
|
description?: string | undefined;
|
|
1941
1969
|
enum?: string[] | undefined;
|
|
1942
|
-
nullable?: boolean | undefined;
|
|
1943
|
-
format?: string | undefined;
|
|
1944
1970
|
file?: any;
|
|
1945
1971
|
refUid?: string | undefined;
|
|
1972
|
+
format?: string | undefined;
|
|
1973
|
+
nullable?: boolean | undefined;
|
|
1946
1974
|
}[];
|
|
1947
1975
|
cookies: {
|
|
1948
1976
|
value: string;
|
|
@@ -1955,45 +1983,45 @@ export declare const useApiClientModal: () => {
|
|
|
1955
1983
|
required?: boolean | undefined;
|
|
1956
1984
|
description?: string | undefined;
|
|
1957
1985
|
enum?: string[] | undefined;
|
|
1958
|
-
nullable?: boolean | undefined;
|
|
1959
|
-
format?: string | undefined;
|
|
1960
1986
|
file?: any;
|
|
1961
1987
|
refUid?: string | undefined;
|
|
1988
|
+
format?: string | undefined;
|
|
1989
|
+
nullable?: boolean | undefined;
|
|
1962
1990
|
}[];
|
|
1963
1991
|
};
|
|
1964
|
-
requestUid: string;
|
|
1965
|
-
body: {
|
|
1966
|
-
raw: {
|
|
1967
|
-
value: string;
|
|
1968
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
1969
|
-
};
|
|
1970
|
-
formData: {
|
|
1971
|
-
value: {
|
|
1972
|
-
value: string;
|
|
1973
|
-
key: string;
|
|
1974
|
-
enabled: boolean;
|
|
1975
|
-
minimum?: number | undefined;
|
|
1976
|
-
type?: string | undefined;
|
|
1977
|
-
maximum?: number | undefined;
|
|
1978
|
-
default?: any;
|
|
1979
|
-
required?: boolean | undefined;
|
|
1980
|
-
description?: string | undefined;
|
|
1981
|
-
enum?: string[] | undefined;
|
|
1982
|
-
nullable?: boolean | undefined;
|
|
1983
|
-
format?: string | undefined;
|
|
1984
|
-
file?: any;
|
|
1985
|
-
refUid?: string | undefined;
|
|
1986
|
-
}[];
|
|
1987
|
-
encoding: "form-data" | "urlencoded";
|
|
1988
|
-
};
|
|
1989
|
-
activeBody: "raw" | "formData" | "binary";
|
|
1990
|
-
binary?: File | undefined;
|
|
1991
|
-
};
|
|
1992
1992
|
auth: Record<string, any>;
|
|
1993
1993
|
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends Path< {
|
|
1994
1994
|
uid: string;
|
|
1995
1995
|
name: string;
|
|
1996
1996
|
url: string;
|
|
1997
|
+
requestUid: string;
|
|
1998
|
+
body: {
|
|
1999
|
+
raw: {
|
|
2000
|
+
value: string;
|
|
2001
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
2002
|
+
};
|
|
2003
|
+
formData: {
|
|
2004
|
+
value: {
|
|
2005
|
+
value: string;
|
|
2006
|
+
key: string;
|
|
2007
|
+
enabled: boolean;
|
|
2008
|
+
minimum?: number | undefined;
|
|
2009
|
+
type?: string | undefined;
|
|
2010
|
+
maximum?: number | undefined;
|
|
2011
|
+
default?: any;
|
|
2012
|
+
required?: boolean | undefined;
|
|
2013
|
+
description?: string | undefined;
|
|
2014
|
+
enum?: string[] | undefined;
|
|
2015
|
+
file?: any;
|
|
2016
|
+
refUid?: string | undefined;
|
|
2017
|
+
format?: string | undefined;
|
|
2018
|
+
nullable?: boolean | undefined;
|
|
2019
|
+
}[];
|
|
2020
|
+
encoding: "form-data" | "urlencoded";
|
|
2021
|
+
};
|
|
2022
|
+
activeBody: "raw" | "formData" | "binary";
|
|
2023
|
+
binary?: File | undefined;
|
|
2024
|
+
};
|
|
1997
2025
|
parameters: {
|
|
1998
2026
|
path: {
|
|
1999
2027
|
value: string;
|
|
@@ -2006,10 +2034,10 @@ export declare const useApiClientModal: () => {
|
|
|
2006
2034
|
required?: boolean | undefined;
|
|
2007
2035
|
description?: string | undefined;
|
|
2008
2036
|
enum?: string[] | undefined;
|
|
2009
|
-
nullable?: boolean | undefined;
|
|
2010
|
-
format?: string | undefined;
|
|
2011
2037
|
file?: any;
|
|
2012
2038
|
refUid?: string | undefined;
|
|
2039
|
+
format?: string | undefined;
|
|
2040
|
+
nullable?: boolean | undefined;
|
|
2013
2041
|
}[];
|
|
2014
2042
|
query: {
|
|
2015
2043
|
value: string;
|
|
@@ -2022,10 +2050,10 @@ export declare const useApiClientModal: () => {
|
|
|
2022
2050
|
required?: boolean | undefined;
|
|
2023
2051
|
description?: string | undefined;
|
|
2024
2052
|
enum?: string[] | undefined;
|
|
2025
|
-
nullable?: boolean | undefined;
|
|
2026
|
-
format?: string | undefined;
|
|
2027
2053
|
file?: any;
|
|
2028
2054
|
refUid?: string | undefined;
|
|
2055
|
+
format?: string | undefined;
|
|
2056
|
+
nullable?: boolean | undefined;
|
|
2029
2057
|
}[];
|
|
2030
2058
|
headers: {
|
|
2031
2059
|
value: string;
|
|
@@ -2038,10 +2066,10 @@ export declare const useApiClientModal: () => {
|
|
|
2038
2066
|
required?: boolean | undefined;
|
|
2039
2067
|
description?: string | undefined;
|
|
2040
2068
|
enum?: string[] | undefined;
|
|
2041
|
-
nullable?: boolean | undefined;
|
|
2042
|
-
format?: string | undefined;
|
|
2043
2069
|
file?: any;
|
|
2044
2070
|
refUid?: string | undefined;
|
|
2071
|
+
format?: string | undefined;
|
|
2072
|
+
nullable?: boolean | undefined;
|
|
2045
2073
|
}[];
|
|
2046
2074
|
cookies: {
|
|
2047
2075
|
value: string;
|
|
@@ -2054,17 +2082,22 @@ export declare const useApiClientModal: () => {
|
|
|
2054
2082
|
required?: boolean | undefined;
|
|
2055
2083
|
description?: string | undefined;
|
|
2056
2084
|
enum?: string[] | undefined;
|
|
2057
|
-
nullable?: boolean | undefined;
|
|
2058
|
-
format?: string | undefined;
|
|
2059
2085
|
file?: any;
|
|
2060
2086
|
refUid?: string | undefined;
|
|
2087
|
+
format?: string | undefined;
|
|
2088
|
+
nullable?: boolean | undefined;
|
|
2061
2089
|
}[];
|
|
2062
2090
|
};
|
|
2091
|
+
auth: Record<string, any>;
|
|
2092
|
+
}[K]> ? PathValue< {
|
|
2093
|
+
uid: string;
|
|
2094
|
+
name: string;
|
|
2095
|
+
url: string;
|
|
2063
2096
|
requestUid: string;
|
|
2064
2097
|
body: {
|
|
2065
2098
|
raw: {
|
|
2066
2099
|
value: string;
|
|
2067
|
-
encoding: "
|
|
2100
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
2068
2101
|
};
|
|
2069
2102
|
formData: {
|
|
2070
2103
|
value: {
|
|
@@ -2078,21 +2111,16 @@ export declare const useApiClientModal: () => {
|
|
|
2078
2111
|
required?: boolean | undefined;
|
|
2079
2112
|
description?: string | undefined;
|
|
2080
2113
|
enum?: string[] | undefined;
|
|
2081
|
-
nullable?: boolean | undefined;
|
|
2082
|
-
format?: string | undefined;
|
|
2083
2114
|
file?: any;
|
|
2084
2115
|
refUid?: string | undefined;
|
|
2116
|
+
format?: string | undefined;
|
|
2117
|
+
nullable?: boolean | undefined;
|
|
2085
2118
|
}[];
|
|
2086
2119
|
encoding: "form-data" | "urlencoded";
|
|
2087
2120
|
};
|
|
2088
2121
|
activeBody: "raw" | "formData" | "binary";
|
|
2089
2122
|
binary?: File | undefined;
|
|
2090
2123
|
};
|
|
2091
|
-
auth: Record<string, any>;
|
|
2092
|
-
}[K]> ? PathValue< {
|
|
2093
|
-
uid: string;
|
|
2094
|
-
name: string;
|
|
2095
|
-
url: string;
|
|
2096
2124
|
parameters: {
|
|
2097
2125
|
path: {
|
|
2098
2126
|
value: string;
|
|
@@ -2105,10 +2133,10 @@ export declare const useApiClientModal: () => {
|
|
|
2105
2133
|
required?: boolean | undefined;
|
|
2106
2134
|
description?: string | undefined;
|
|
2107
2135
|
enum?: string[] | undefined;
|
|
2108
|
-
nullable?: boolean | undefined;
|
|
2109
|
-
format?: string | undefined;
|
|
2110
2136
|
file?: any;
|
|
2111
2137
|
refUid?: string | undefined;
|
|
2138
|
+
format?: string | undefined;
|
|
2139
|
+
nullable?: boolean | undefined;
|
|
2112
2140
|
}[];
|
|
2113
2141
|
query: {
|
|
2114
2142
|
value: string;
|
|
@@ -2121,10 +2149,10 @@ export declare const useApiClientModal: () => {
|
|
|
2121
2149
|
required?: boolean | undefined;
|
|
2122
2150
|
description?: string | undefined;
|
|
2123
2151
|
enum?: string[] | undefined;
|
|
2124
|
-
nullable?: boolean | undefined;
|
|
2125
|
-
format?: string | undefined;
|
|
2126
2152
|
file?: any;
|
|
2127
2153
|
refUid?: string | undefined;
|
|
2154
|
+
format?: string | undefined;
|
|
2155
|
+
nullable?: boolean | undefined;
|
|
2128
2156
|
}[];
|
|
2129
2157
|
headers: {
|
|
2130
2158
|
value: string;
|
|
@@ -2137,10 +2165,10 @@ export declare const useApiClientModal: () => {
|
|
|
2137
2165
|
required?: boolean | undefined;
|
|
2138
2166
|
description?: string | undefined;
|
|
2139
2167
|
enum?: string[] | undefined;
|
|
2140
|
-
nullable?: boolean | undefined;
|
|
2141
|
-
format?: string | undefined;
|
|
2142
2168
|
file?: any;
|
|
2143
2169
|
refUid?: string | undefined;
|
|
2170
|
+
format?: string | undefined;
|
|
2171
|
+
nullable?: boolean | undefined;
|
|
2144
2172
|
}[];
|
|
2145
2173
|
cookies: {
|
|
2146
2174
|
value: string;
|
|
@@ -2153,39 +2181,11 @@ export declare const useApiClientModal: () => {
|
|
|
2153
2181
|
required?: boolean | undefined;
|
|
2154
2182
|
description?: string | undefined;
|
|
2155
2183
|
enum?: string[] | undefined;
|
|
2156
|
-
nullable?: boolean | undefined;
|
|
2157
|
-
format?: string | undefined;
|
|
2158
2184
|
file?: any;
|
|
2159
2185
|
refUid?: string | undefined;
|
|
2160
|
-
}[];
|
|
2161
|
-
};
|
|
2162
|
-
requestUid: string;
|
|
2163
|
-
body: {
|
|
2164
|
-
raw: {
|
|
2165
|
-
value: string;
|
|
2166
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2167
|
-
};
|
|
2168
|
-
formData: {
|
|
2169
|
-
value: {
|
|
2170
|
-
value: string;
|
|
2171
|
-
key: string;
|
|
2172
|
-
enabled: boolean;
|
|
2173
|
-
minimum?: number | undefined;
|
|
2174
|
-
type?: string | undefined;
|
|
2175
|
-
maximum?: number | undefined;
|
|
2176
|
-
default?: any;
|
|
2177
|
-
required?: boolean | undefined;
|
|
2178
|
-
description?: string | undefined;
|
|
2179
|
-
enum?: string[] | undefined;
|
|
2180
|
-
nullable?: boolean | undefined;
|
|
2181
2186
|
format?: string | undefined;
|
|
2182
|
-
|
|
2183
|
-
refUid?: string | undefined;
|
|
2187
|
+
nullable?: boolean | undefined;
|
|
2184
2188
|
}[];
|
|
2185
|
-
encoding: "form-data" | "urlencoded";
|
|
2186
|
-
};
|
|
2187
|
-
activeBody: "raw" | "formData" | "binary";
|
|
2188
|
-
binary?: File | undefined;
|
|
2189
2189
|
};
|
|
2190
2190
|
auth: Record<string, any>;
|
|
2191
2191
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
@@ -2331,7 +2331,7 @@ export declare const useApiClientModal: () => {
|
|
|
2331
2331
|
openIdConnectUrl: string;
|
|
2332
2332
|
description?: string | undefined;
|
|
2333
2333
|
}) => void;
|
|
2334
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2334
|
+
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? {
|
|
2335
2335
|
type: "apiKey";
|
|
2336
2336
|
value: string;
|
|
2337
2337
|
uid: string;
|
|
@@ -2339,7 +2339,7 @@ export declare const useApiClientModal: () => {
|
|
|
2339
2339
|
nameKey: string;
|
|
2340
2340
|
in: "query" | "header" | "cookie";
|
|
2341
2341
|
description?: string | undefined;
|
|
2342
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2342
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends Path< {
|
|
2343
2343
|
type: "apiKey";
|
|
2344
2344
|
value: string;
|
|
2345
2345
|
uid: string;
|
|
@@ -2530,7 +2530,7 @@ export declare const useApiClientModal: () => {
|
|
|
2530
2530
|
openIdConnectUrl: string;
|
|
2531
2531
|
description?: string | undefined;
|
|
2532
2532
|
}[K], R_3> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2533
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2533
|
+
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "secondValue" | "flow" | "nameKey" | "in" | "scheme" | "bearerFormat" | "clientId" | "openIdConnectUrl" | "flow.selectedScopes" | "flow.type" | "flow.redirectUri" | "flow.token" | "flow.refreshUrl" | "flow.authorizationUrl" | "flow.scopes" | `flow.selectedScopes.${number}` | `flow.scopes.${string}` | "flow.value" | "flow.clientSecret" | "flow.secondValue" | "flow.tokenUrl">(uid: string, path: P, value: (P extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? {
|
|
2534
2534
|
type: "apiKey";
|
|
2535
2535
|
value: string;
|
|
2536
2536
|
uid: string;
|
|
@@ -2538,7 +2538,7 @@ export declare const useApiClientModal: () => {
|
|
|
2538
2538
|
nameKey: string;
|
|
2539
2539
|
in: "query" | "header" | "cookie";
|
|
2540
2540
|
description?: string | undefined;
|
|
2541
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2541
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends Path< {
|
|
2542
2542
|
type: "apiKey";
|
|
2543
2543
|
value: string;
|
|
2544
2544
|
uid: string;
|
|
@@ -2889,7 +2889,7 @@ export declare const useApiClientModal: () => {
|
|
|
2889
2889
|
} | undefined;
|
|
2890
2890
|
proxyUrl?: string | undefined;
|
|
2891
2891
|
}) => void;
|
|
2892
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2892
|
+
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.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.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.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.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" ? {
|
|
2893
2893
|
uid: string;
|
|
2894
2894
|
name: string;
|
|
2895
2895
|
description: string;
|
|
@@ -2941,7 +2941,7 @@ export declare const useApiClientModal: () => {
|
|
|
2941
2941
|
} | undefined;
|
|
2942
2942
|
proxyUrl?: string | undefined;
|
|
2943
2943
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2944
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.c" | "hotKeyConfig.hotKeys.r" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.e" | "hotKeyConfig.hotKeys.f" | "hotKeyConfig.hotKeys.h" | "hotKeyConfig.hotKeys.j" | "hotKeyConfig.hotKeys.k" | "hotKeyConfig.hotKeys.l" | "hotKeyConfig.hotKeys.m" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.o" | "hotKeyConfig.hotKeys.t" | "hotKeyConfig.hotKeys.v" | "hotKeyConfig.hotKeys.w" | "hotKeyConfig.hotKeys.x" | "hotKeyConfig.hotKeys.y" | "hotKeyConfig.hotKeys.z" | "hotKeyConfig.hotKeys.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.*" | "hotKeyConfig.hotKeys.+" | "hotKeyConfig.hotKeys.-" | "hotKeyConfig.hotKeys.." | "hotKeyConfig.hotKeys.;" | "hotKeyConfig.hotKeys.=" | "hotKeyConfig.hotKeys.," | "hotKeyConfig.hotKeys.`" | "hotKeyConfig.hotKeys.[" | "hotKeyConfig.hotKeys.\\" | "hotKeyConfig.hotKeys.]" | "hotKeyConfig.hotKeys..event" | "hotKeyConfig.hotKeys..modifiers" | `hotKeyConfig.hotKeys..modifiers.${number}` | "hotKeyConfig.hotKeys.a.event" | "hotKeyConfig.hotKeys.a.modifiers" | `hotKeyConfig.hotKeys.a.modifiers.${number}` | "hotKeyConfig.hotKeys.b.event" | "hotKeyConfig.hotKeys.b.modifiers" | `hotKeyConfig.hotKeys.b.modifiers.${number}` | "hotKeyConfig.hotKeys.i.event" | "hotKeyConfig.hotKeys.i.modifiers" | `hotKeyConfig.hotKeys.i.modifiers.${number}` | "hotKeyConfig.hotKeys.p.event" | "hotKeyConfig.hotKeys.p.modifiers" | `hotKeyConfig.hotKeys.p.modifiers.${number}` | "hotKeyConfig.hotKeys.q.event" | "hotKeyConfig.hotKeys.q.modifiers" | `hotKeyConfig.hotKeys.q.modifiers.${number}` | "hotKeyConfig.hotKeys.s.event" | "hotKeyConfig.hotKeys.s.modifiers" | `hotKeyConfig.hotKeys.s.modifiers.${number}` | "hotKeyConfig.hotKeys.u.event" | "hotKeyConfig.hotKeys.u.modifiers" | `hotKeyConfig.hotKeys.u.modifiers.${number}` | "hotKeyConfig.hotKeys.g.event" | "hotKeyConfig.hotKeys.g.modifiers" | `hotKeyConfig.hotKeys.g.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowLeft.event" | "hotKeyConfig.hotKeys.ArrowLeft.modifiers" | `hotKeyConfig.hotKeys.ArrowLeft.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowRight.event" | "hotKeyConfig.hotKeys.ArrowRight.modifiers" | `hotKeyConfig.hotKeys.ArrowRight.modifiers.${number}` | "hotKeyConfig.hotKeys.Delete.event" | "hotKeyConfig.hotKeys.Delete.modifiers" | `hotKeyConfig.hotKeys.Delete.modifiers.${number}` | "hotKeyConfig.hotKeys./.event" | "hotKeyConfig.hotKeys./.modifiers" | `hotKeyConfig.hotKeys./.modifiers.${number}` | "hotKeyConfig.hotKeys.0.event" | "hotKeyConfig.hotKeys.0.modifiers" | `hotKeyConfig.hotKeys.0.modifiers.${number}` | "hotKeyConfig.hotKeys.1.event" | "hotKeyConfig.hotKeys.1.modifiers" | `hotKeyConfig.hotKeys.1.modifiers.${number}` | "hotKeyConfig.hotKeys.Backspace.event" | "hotKeyConfig.hotKeys.Backspace.modifiers" | `hotKeyConfig.hotKeys.Backspace.modifiers.${number}` | "hotKeyConfig.hotKeys.2.event" | "hotKeyConfig.hotKeys.2.modifiers" | `hotKeyConfig.hotKeys.2.modifiers.${number}` | "hotKeyConfig.hotKeys.c.event" | "hotKeyConfig.hotKeys.c.modifiers" | `hotKeyConfig.hotKeys.c.modifiers.${number}` | "hotKeyConfig.hotKeys.r.event" | "hotKeyConfig.hotKeys.r.modifiers" | `hotKeyConfig.hotKeys.r.modifiers.${number}` | "hotKeyConfig.hotKeys.d.event" | "hotKeyConfig.hotKeys.d.modifiers" | `hotKeyConfig.hotKeys.d.modifiers.${number}` | "hotKeyConfig.hotKeys.e.event" | "hotKeyConfig.hotKeys.e.modifiers" | `hotKeyConfig.hotKeys.e.modifiers.${number}` | "hotKeyConfig.hotKeys.f.event" | "hotKeyConfig.hotKeys.f.modifiers" | `hotKeyConfig.hotKeys.f.modifiers.${number}` | "hotKeyConfig.hotKeys.h.event" | "hotKeyConfig.hotKeys.h.modifiers" | `hotKeyConfig.hotKeys.h.modifiers.${number}` | "hotKeyConfig.hotKeys.j.event" | "hotKeyConfig.hotKeys.j.modifiers" | `hotKeyConfig.hotKeys.j.modifiers.${number}` | "hotKeyConfig.hotKeys.k.event" | "hotKeyConfig.hotKeys.k.modifiers" | `hotKeyConfig.hotKeys.k.modifiers.${number}` | "hotKeyConfig.hotKeys.l.event" | "hotKeyConfig.hotKeys.l.modifiers" | `hotKeyConfig.hotKeys.l.modifiers.${number}` | "hotKeyConfig.hotKeys.m.event" | "hotKeyConfig.hotKeys.m.modifiers" | `hotKeyConfig.hotKeys.m.modifiers.${number}` | "hotKeyConfig.hotKeys.n.event" | "hotKeyConfig.hotKeys.n.modifiers" | `hotKeyConfig.hotKeys.n.modifiers.${number}` | "hotKeyConfig.hotKeys.o.event" | "hotKeyConfig.hotKeys.o.modifiers" | `hotKeyConfig.hotKeys.o.modifiers.${number}` | "hotKeyConfig.hotKeys.t.event" | "hotKeyConfig.hotKeys.t.modifiers" | `hotKeyConfig.hotKeys.t.modifiers.${number}` | "hotKeyConfig.hotKeys.v.event" | "hotKeyConfig.hotKeys.v.modifiers" | `hotKeyConfig.hotKeys.v.modifiers.${number}` | "hotKeyConfig.hotKeys.w.event" | "hotKeyConfig.hotKeys.w.modifiers" | `hotKeyConfig.hotKeys.w.modifiers.${number}` | "hotKeyConfig.hotKeys.x.event" | "hotKeyConfig.hotKeys.x.modifiers" | `hotKeyConfig.hotKeys.x.modifiers.${number}` | "hotKeyConfig.hotKeys.y.event" | "hotKeyConfig.hotKeys.y.modifiers" | `hotKeyConfig.hotKeys.y.modifiers.${number}` | "hotKeyConfig.hotKeys.z.event" | "hotKeyConfig.hotKeys.z.modifiers" | `hotKeyConfig.hotKeys.z.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowDown.event" | "hotKeyConfig.hotKeys.ArrowDown.modifiers" | `hotKeyConfig.hotKeys.ArrowDown.modifiers.${number}` | "hotKeyConfig.hotKeys.ArrowUp.event" | "hotKeyConfig.hotKeys.ArrowUp.modifiers" | `hotKeyConfig.hotKeys.ArrowUp.modifiers.${number}` | "hotKeyConfig.hotKeys.Escape.event" | "hotKeyConfig.hotKeys.Escape.modifiers" | `hotKeyConfig.hotKeys.Escape.modifiers.${number}` | "hotKeyConfig.hotKeys.Enter.event" | "hotKeyConfig.hotKeys.Enter.modifiers" | `hotKeyConfig.hotKeys.Enter.modifiers.${number}` | "hotKeyConfig.hotKeys.F1.event" | "hotKeyConfig.hotKeys.F1.modifiers" | `hotKeyConfig.hotKeys.F1.modifiers.${number}` | "hotKeyConfig.hotKeys.F2.event" | "hotKeyConfig.hotKeys.F2.modifiers" | `hotKeyConfig.hotKeys.F2.modifiers.${number}` | "hotKeyConfig.hotKeys.F3.event" | "hotKeyConfig.hotKeys.F3.modifiers" | `hotKeyConfig.hotKeys.F3.modifiers.${number}` | "hotKeyConfig.hotKeys.F4.event" | "hotKeyConfig.hotKeys.F4.modifiers" | `hotKeyConfig.hotKeys.F4.modifiers.${number}` | "hotKeyConfig.hotKeys.F5.event" | "hotKeyConfig.hotKeys.F5.modifiers" | `hotKeyConfig.hotKeys.F5.modifiers.${number}` | "hotKeyConfig.hotKeys.F6.event" | "hotKeyConfig.hotKeys.F6.modifiers" | `hotKeyConfig.hotKeys.F6.modifiers.${number}` | "hotKeyConfig.hotKeys.F7.event" | "hotKeyConfig.hotKeys.F7.modifiers" | `hotKeyConfig.hotKeys.F7.modifiers.${number}` | "hotKeyConfig.hotKeys.F8.event" | "hotKeyConfig.hotKeys.F8.modifiers" | `hotKeyConfig.hotKeys.F8.modifiers.${number}` | "hotKeyConfig.hotKeys.F9.event" | "hotKeyConfig.hotKeys.F9.modifiers" | `hotKeyConfig.hotKeys.F9.modifiers.${number}` | "hotKeyConfig.hotKeys.F10.event" | "hotKeyConfig.hotKeys.F10.modifiers" | `hotKeyConfig.hotKeys.F10.modifiers.${number}` | "hotKeyConfig.hotKeys.F11.event" | "hotKeyConfig.hotKeys.F11.modifiers" | `hotKeyConfig.hotKeys.F11.modifiers.${number}` | "hotKeyConfig.hotKeys.F12.event" | "hotKeyConfig.hotKeys.F12.modifiers" | `hotKeyConfig.hotKeys.F12.modifiers.${number}` | "hotKeyConfig.hotKeys.Space.event" | "hotKeyConfig.hotKeys.Space.modifiers" | `hotKeyConfig.hotKeys.Space.modifiers.${number}` | "hotKeyConfig.hotKeys.Tab.event" | "hotKeyConfig.hotKeys.Tab.modifiers" | `hotKeyConfig.hotKeys.Tab.modifiers.${number}` | "hotKeyConfig.hotKeys.End.event" | "hotKeyConfig.hotKeys.End.modifiers" | `hotKeyConfig.hotKeys.End.modifiers.${number}` | "hotKeyConfig.hotKeys.Home.event" | "hotKeyConfig.hotKeys.Home.modifiers" | `hotKeyConfig.hotKeys.Home.modifiers.${number}` | "hotKeyConfig.hotKeys.PageDown.event" | "hotKeyConfig.hotKeys.PageDown.modifiers" | `hotKeyConfig.hotKeys.PageDown.modifiers.${number}` | "hotKeyConfig.hotKeys.PageUp.event" | "hotKeyConfig.hotKeys.PageUp.modifiers" | `hotKeyConfig.hotKeys.PageUp.modifiers.${number}` | "hotKeyConfig.hotKeys.3.event" | "hotKeyConfig.hotKeys.3.modifiers" | `hotKeyConfig.hotKeys.3.modifiers.${number}` | "hotKeyConfig.hotKeys.4.event" | "hotKeyConfig.hotKeys.4.modifiers" | `hotKeyConfig.hotKeys.4.modifiers.${number}` | "hotKeyConfig.hotKeys.5.event" | "hotKeyConfig.hotKeys.5.modifiers" | `hotKeyConfig.hotKeys.5.modifiers.${number}` | "hotKeyConfig.hotKeys.6.event" | "hotKeyConfig.hotKeys.6.modifiers" | `hotKeyConfig.hotKeys.6.modifiers.${number}` | "hotKeyConfig.hotKeys.7.event" | "hotKeyConfig.hotKeys.7.modifiers" | `hotKeyConfig.hotKeys.7.modifiers.${number}` | "hotKeyConfig.hotKeys.8.event" | "hotKeyConfig.hotKeys.8.modifiers" | `hotKeyConfig.hotKeys.8.modifiers.${number}` | "hotKeyConfig.hotKeys.9.event" | "hotKeyConfig.hotKeys.9.modifiers" | `hotKeyConfig.hotKeys.9.modifiers.${number}` | "hotKeyConfig.hotKeys.*.event" | "hotKeyConfig.hotKeys.*.modifiers" | `hotKeyConfig.hotKeys.*.modifiers.${number}` | "hotKeyConfig.hotKeys.+.event" | "hotKeyConfig.hotKeys.+.modifiers" | `hotKeyConfig.hotKeys.+.modifiers.${number}` | "hotKeyConfig.hotKeys.-.event" | "hotKeyConfig.hotKeys.-.modifiers" | `hotKeyConfig.hotKeys.-.modifiers.${number}` | "hotKeyConfig.hotKeys...event" | "hotKeyConfig.hotKeys...modifiers" | `hotKeyConfig.hotKeys...modifiers.${number}` | "hotKeyConfig.hotKeys.;.event" | "hotKeyConfig.hotKeys.;.modifiers" | `hotKeyConfig.hotKeys.;.modifiers.${number}` | "hotKeyConfig.hotKeys.=.event" | "hotKeyConfig.hotKeys.=.modifiers" | `hotKeyConfig.hotKeys.=.modifiers.${number}` | "hotKeyConfig.hotKeys.,.event" | "hotKeyConfig.hotKeys.,.modifiers" | `hotKeyConfig.hotKeys.,.modifiers.${number}` | "hotKeyConfig.hotKeys.`.event" | "hotKeyConfig.hotKeys.`.modifiers" | `hotKeyConfig.hotKeys.\`.modifiers.${number}` | "hotKeyConfig.hotKeys.[.event" | "hotKeyConfig.hotKeys.[.modifiers" | `hotKeyConfig.hotKeys.[.modifiers.${number}` | "hotKeyConfig.hotKeys.\\.event" | "hotKeyConfig.hotKeys.\\.modifiers" | `hotKeyConfig.hotKeys.\\.modifiers.${number}` | "hotKeyConfig.hotKeys.].event" | "hotKeyConfig.hotKeys.].modifiers" | `hotKeyConfig.hotKeys.].modifiers.${number}`>(uid: string, path: P, value: P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" ? {
|
|
2944
|
+
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.ArrowDown" | "hotKeyConfig.hotKeys.ArrowUp" | "hotKeyConfig.hotKeys.n" | "hotKeyConfig.hotKeys.d" | "hotKeyConfig.hotKeys.Escape" | "hotKeyConfig.hotKeys.Enter" | "hotKeyConfig.hotKeys.F1" | "hotKeyConfig.hotKeys.F2" | "hotKeyConfig.hotKeys.F3" | "hotKeyConfig.hotKeys.F4" | "hotKeyConfig.hotKeys.F5" | "hotKeyConfig.hotKeys.F6" | "hotKeyConfig.hotKeys.F7" | "hotKeyConfig.hotKeys.F8" | "hotKeyConfig.hotKeys.F9" | "hotKeyConfig.hotKeys.F10" | "hotKeyConfig.hotKeys.F11" | "hotKeyConfig.hotKeys.F12" | "hotKeyConfig.hotKeys.Space" | "hotKeyConfig.hotKeys.Tab" | "hotKeyConfig.hotKeys.End" | "hotKeyConfig.hotKeys.Home" | "hotKeyConfig.hotKeys.PageDown" | "hotKeyConfig.hotKeys.PageUp" | "hotKeyConfig.hotKeys.3" | "hotKeyConfig.hotKeys.4" | "hotKeyConfig.hotKeys.5" | "hotKeyConfig.hotKeys.6" | "hotKeyConfig.hotKeys.7" | "hotKeyConfig.hotKeys.8" | "hotKeyConfig.hotKeys.9" | "hotKeyConfig.hotKeys.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.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.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.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" ? {
|
|
2945
2945
|
uid: string;
|
|
2946
2946
|
name: string;
|
|
2947
2947
|
description: string;
|