@scalar/api-client 2.0.53 → 2.0.55
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 +19 -0
- package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
- package/dist/components/ScalarHotkey.vue.js +2 -2
- package/dist/components/TopNav/TopNav.vue.d.ts.map +1 -1
- package/dist/components/TopNav/TopNav.vue.js +2 -2
- package/dist/components/TopNav/TopNav.vue2.js +61 -52
- package/dist/components/TopNav/TopNavItem.vue.d.ts +6 -0
- package/dist/components/TopNav/TopNavItem.vue.d.ts.map +1 -1
- package/dist/components/TopNav/TopNavItem.vue.js +2 -2
- package/dist/components/TopNav/TopNavItem.vue2.js +122 -41
- package/dist/layouts/App/create-api-client-app.d.ts +249 -249
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/create-api-client-modal.d.ts +498 -498
- package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +249 -249
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/event-busses/hot-keys-bus.d.ts +1 -1
- package/dist/libs/local-storage.js +1 -1
- package/dist/store/workspace.d.ts +498 -498
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +6 -6
|
@@ -109,6 +109,34 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
109
109
|
uid: string;
|
|
110
110
|
name: string;
|
|
111
111
|
url: string;
|
|
112
|
+
requestUid: string;
|
|
113
|
+
body: {
|
|
114
|
+
raw: {
|
|
115
|
+
value: string;
|
|
116
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
117
|
+
};
|
|
118
|
+
formData: {
|
|
119
|
+
value: {
|
|
120
|
+
value: string;
|
|
121
|
+
key: string;
|
|
122
|
+
enabled: boolean;
|
|
123
|
+
minimum?: number | undefined;
|
|
124
|
+
type?: string | undefined;
|
|
125
|
+
maximum?: number | undefined;
|
|
126
|
+
default?: any;
|
|
127
|
+
required?: boolean | undefined;
|
|
128
|
+
description?: string | undefined;
|
|
129
|
+
enum?: string[] | undefined;
|
|
130
|
+
file?: any;
|
|
131
|
+
refUid?: string | undefined;
|
|
132
|
+
format?: string | undefined;
|
|
133
|
+
nullable?: boolean | undefined;
|
|
134
|
+
}[];
|
|
135
|
+
encoding: "form-data" | "urlencoded";
|
|
136
|
+
};
|
|
137
|
+
activeBody: "raw" | "formData" | "binary";
|
|
138
|
+
binary?: File | undefined;
|
|
139
|
+
};
|
|
112
140
|
parameters: {
|
|
113
141
|
path: {
|
|
114
142
|
value: string;
|
|
@@ -121,10 +149,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
121
149
|
required?: boolean | undefined;
|
|
122
150
|
description?: string | undefined;
|
|
123
151
|
enum?: string[] | undefined;
|
|
124
|
-
nullable?: boolean | undefined;
|
|
125
|
-
format?: string | undefined;
|
|
126
152
|
file?: any;
|
|
127
153
|
refUid?: string | undefined;
|
|
154
|
+
format?: string | undefined;
|
|
155
|
+
nullable?: boolean | undefined;
|
|
128
156
|
}[];
|
|
129
157
|
query: {
|
|
130
158
|
value: string;
|
|
@@ -137,10 +165,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
137
165
|
required?: boolean | undefined;
|
|
138
166
|
description?: string | undefined;
|
|
139
167
|
enum?: string[] | undefined;
|
|
140
|
-
nullable?: boolean | undefined;
|
|
141
|
-
format?: string | undefined;
|
|
142
168
|
file?: any;
|
|
143
169
|
refUid?: string | undefined;
|
|
170
|
+
format?: string | undefined;
|
|
171
|
+
nullable?: boolean | undefined;
|
|
144
172
|
}[];
|
|
145
173
|
headers: {
|
|
146
174
|
value: string;
|
|
@@ -153,10 +181,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
153
181
|
required?: boolean | undefined;
|
|
154
182
|
description?: string | undefined;
|
|
155
183
|
enum?: string[] | undefined;
|
|
156
|
-
nullable?: boolean | undefined;
|
|
157
|
-
format?: string | undefined;
|
|
158
184
|
file?: any;
|
|
159
185
|
refUid?: string | undefined;
|
|
186
|
+
format?: string | undefined;
|
|
187
|
+
nullable?: boolean | undefined;
|
|
160
188
|
}[];
|
|
161
189
|
cookies: {
|
|
162
190
|
value: string;
|
|
@@ -169,40 +197,12 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
169
197
|
required?: boolean | undefined;
|
|
170
198
|
description?: string | undefined;
|
|
171
199
|
enum?: string[] | undefined;
|
|
172
|
-
nullable?: boolean | undefined;
|
|
173
|
-
format?: string | undefined;
|
|
174
200
|
file?: any;
|
|
175
201
|
refUid?: string | undefined;
|
|
202
|
+
format?: string | undefined;
|
|
203
|
+
nullable?: boolean | undefined;
|
|
176
204
|
}[];
|
|
177
205
|
};
|
|
178
|
-
requestUid: string;
|
|
179
|
-
body: {
|
|
180
|
-
raw: {
|
|
181
|
-
value: string;
|
|
182
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
183
|
-
};
|
|
184
|
-
formData: {
|
|
185
|
-
value: {
|
|
186
|
-
value: string;
|
|
187
|
-
key: string;
|
|
188
|
-
enabled: boolean;
|
|
189
|
-
minimum?: number | undefined;
|
|
190
|
-
type?: string | undefined;
|
|
191
|
-
maximum?: number | undefined;
|
|
192
|
-
default?: any;
|
|
193
|
-
required?: boolean | undefined;
|
|
194
|
-
description?: string | undefined;
|
|
195
|
-
enum?: string[] | undefined;
|
|
196
|
-
nullable?: boolean | undefined;
|
|
197
|
-
format?: string | undefined;
|
|
198
|
-
file?: any;
|
|
199
|
-
refUid?: string | undefined;
|
|
200
|
-
}[];
|
|
201
|
-
encoding: "form-data" | "urlencoded";
|
|
202
|
-
};
|
|
203
|
-
activeBody: "raw" | "formData" | "binary";
|
|
204
|
-
binary?: File | undefined;
|
|
205
|
-
};
|
|
206
206
|
auth: Record<string, any>;
|
|
207
207
|
}>;
|
|
208
208
|
requests: Record<string, import("@scalar/oas-utils/entities/workspace/spec").Request>;
|
|
@@ -330,6 +330,34 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
330
330
|
uid: string;
|
|
331
331
|
name: string;
|
|
332
332
|
url: string;
|
|
333
|
+
requestUid: string;
|
|
334
|
+
body: {
|
|
335
|
+
raw: {
|
|
336
|
+
value: string;
|
|
337
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
338
|
+
};
|
|
339
|
+
formData: {
|
|
340
|
+
value: {
|
|
341
|
+
value: string;
|
|
342
|
+
key: string;
|
|
343
|
+
enabled: boolean;
|
|
344
|
+
minimum?: number | undefined;
|
|
345
|
+
type?: string | undefined;
|
|
346
|
+
maximum?: number | undefined;
|
|
347
|
+
default?: any;
|
|
348
|
+
required?: boolean | undefined;
|
|
349
|
+
description?: string | undefined;
|
|
350
|
+
enum?: string[] | undefined;
|
|
351
|
+
file?: any;
|
|
352
|
+
refUid?: string | undefined;
|
|
353
|
+
format?: string | undefined;
|
|
354
|
+
nullable?: boolean | undefined;
|
|
355
|
+
}[];
|
|
356
|
+
encoding: "form-data" | "urlencoded";
|
|
357
|
+
};
|
|
358
|
+
activeBody: "raw" | "formData" | "binary";
|
|
359
|
+
binary?: File | undefined;
|
|
360
|
+
};
|
|
333
361
|
parameters: {
|
|
334
362
|
path: {
|
|
335
363
|
value: string;
|
|
@@ -342,10 +370,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
342
370
|
required?: boolean | undefined;
|
|
343
371
|
description?: string | undefined;
|
|
344
372
|
enum?: string[] | undefined;
|
|
345
|
-
nullable?: boolean | undefined;
|
|
346
|
-
format?: string | undefined;
|
|
347
373
|
file?: any;
|
|
348
374
|
refUid?: string | undefined;
|
|
375
|
+
format?: string | undefined;
|
|
376
|
+
nullable?: boolean | undefined;
|
|
349
377
|
}[];
|
|
350
378
|
query: {
|
|
351
379
|
value: string;
|
|
@@ -358,10 +386,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
358
386
|
required?: boolean | undefined;
|
|
359
387
|
description?: string | undefined;
|
|
360
388
|
enum?: string[] | undefined;
|
|
361
|
-
nullable?: boolean | undefined;
|
|
362
|
-
format?: string | undefined;
|
|
363
389
|
file?: any;
|
|
364
390
|
refUid?: string | undefined;
|
|
391
|
+
format?: string | undefined;
|
|
392
|
+
nullable?: boolean | undefined;
|
|
365
393
|
}[];
|
|
366
394
|
headers: {
|
|
367
395
|
value: string;
|
|
@@ -374,10 +402,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
374
402
|
required?: boolean | undefined;
|
|
375
403
|
description?: string | undefined;
|
|
376
404
|
enum?: string[] | undefined;
|
|
377
|
-
nullable?: boolean | undefined;
|
|
378
|
-
format?: string | undefined;
|
|
379
405
|
file?: any;
|
|
380
406
|
refUid?: string | undefined;
|
|
407
|
+
format?: string | undefined;
|
|
408
|
+
nullable?: boolean | undefined;
|
|
381
409
|
}[];
|
|
382
410
|
cookies: {
|
|
383
411
|
value: string;
|
|
@@ -390,40 +418,12 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
390
418
|
required?: boolean | undefined;
|
|
391
419
|
description?: string | undefined;
|
|
392
420
|
enum?: string[] | undefined;
|
|
393
|
-
nullable?: boolean | undefined;
|
|
394
|
-
format?: string | undefined;
|
|
395
421
|
file?: any;
|
|
396
422
|
refUid?: string | undefined;
|
|
423
|
+
format?: string | undefined;
|
|
424
|
+
nullable?: boolean | undefined;
|
|
397
425
|
}[];
|
|
398
426
|
};
|
|
399
|
-
requestUid: string;
|
|
400
|
-
body: {
|
|
401
|
-
raw: {
|
|
402
|
-
value: string;
|
|
403
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
404
|
-
};
|
|
405
|
-
formData: {
|
|
406
|
-
value: {
|
|
407
|
-
value: string;
|
|
408
|
-
key: string;
|
|
409
|
-
enabled: boolean;
|
|
410
|
-
minimum?: number | undefined;
|
|
411
|
-
type?: string | undefined;
|
|
412
|
-
maximum?: number | undefined;
|
|
413
|
-
default?: any;
|
|
414
|
-
required?: boolean | undefined;
|
|
415
|
-
description?: string | undefined;
|
|
416
|
-
enum?: string[] | undefined;
|
|
417
|
-
nullable?: boolean | undefined;
|
|
418
|
-
format?: string | undefined;
|
|
419
|
-
file?: any;
|
|
420
|
-
refUid?: string | undefined;
|
|
421
|
-
}[];
|
|
422
|
-
encoding: "form-data" | "urlencoded";
|
|
423
|
-
};
|
|
424
|
-
activeBody: "raw" | "formData" | "binary";
|
|
425
|
-
binary?: File | undefined;
|
|
426
|
-
};
|
|
427
427
|
auth: Record<string, any>;
|
|
428
428
|
}>;
|
|
429
429
|
activeRequest: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").Request>;
|
|
@@ -1247,8 +1247,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1247
1247
|
};
|
|
1248
1248
|
delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid?: string) => void;
|
|
1249
1249
|
set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
1250
|
-
edit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1251
|
-
untrackedEdit: <P extends "ref" | "summary" | "path" | "security" | "tags" | "externalDocs" | "description" | "uid" | "
|
|
1250
|
+
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" ? import("@scalar/oas-utils/entities/workspace/spec").Request[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 import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1251
|
+
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" ? import("@scalar/oas-utils/entities/workspace/spec").Request[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 import("@scalar/object-utils/nested").Path<import("@scalar/oas-utils/entities/workspace/spec").Request[K]> ? import("@scalar/object-utils/nested").PathValue<import("@scalar/oas-utils/entities/workspace/spec").Request[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1252
1252
|
undo: (uid: string) => void;
|
|
1253
1253
|
redo: (uid: string) => void;
|
|
1254
1254
|
loadLocalStorage: () => void;
|
|
@@ -1258,6 +1258,34 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1258
1258
|
uid: string;
|
|
1259
1259
|
name: string;
|
|
1260
1260
|
url: string;
|
|
1261
|
+
requestUid: string;
|
|
1262
|
+
body: {
|
|
1263
|
+
raw: {
|
|
1264
|
+
value: string;
|
|
1265
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1266
|
+
};
|
|
1267
|
+
formData: {
|
|
1268
|
+
value: {
|
|
1269
|
+
value: string;
|
|
1270
|
+
key: string;
|
|
1271
|
+
enabled: boolean;
|
|
1272
|
+
minimum?: number | undefined;
|
|
1273
|
+
type?: string | undefined;
|
|
1274
|
+
maximum?: number | undefined;
|
|
1275
|
+
default?: any;
|
|
1276
|
+
required?: boolean | undefined;
|
|
1277
|
+
description?: string | undefined;
|
|
1278
|
+
enum?: string[] | undefined;
|
|
1279
|
+
file?: any;
|
|
1280
|
+
refUid?: string | undefined;
|
|
1281
|
+
format?: string | undefined;
|
|
1282
|
+
nullable?: boolean | undefined;
|
|
1283
|
+
}[];
|
|
1284
|
+
encoding: "form-data" | "urlencoded";
|
|
1285
|
+
};
|
|
1286
|
+
activeBody: "raw" | "formData" | "binary";
|
|
1287
|
+
binary?: File | undefined;
|
|
1288
|
+
};
|
|
1261
1289
|
parameters: {
|
|
1262
1290
|
path: {
|
|
1263
1291
|
value: string;
|
|
@@ -1270,10 +1298,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1270
1298
|
required?: boolean | undefined;
|
|
1271
1299
|
description?: string | undefined;
|
|
1272
1300
|
enum?: string[] | undefined;
|
|
1273
|
-
nullable?: boolean | undefined;
|
|
1274
|
-
format?: string | undefined;
|
|
1275
1301
|
file?: any;
|
|
1276
1302
|
refUid?: string | undefined;
|
|
1303
|
+
format?: string | undefined;
|
|
1304
|
+
nullable?: boolean | undefined;
|
|
1277
1305
|
}[];
|
|
1278
1306
|
query: {
|
|
1279
1307
|
value: string;
|
|
@@ -1286,10 +1314,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1286
1314
|
required?: boolean | undefined;
|
|
1287
1315
|
description?: string | undefined;
|
|
1288
1316
|
enum?: string[] | undefined;
|
|
1289
|
-
nullable?: boolean | undefined;
|
|
1290
|
-
format?: string | undefined;
|
|
1291
1317
|
file?: any;
|
|
1292
1318
|
refUid?: string | undefined;
|
|
1319
|
+
format?: string | undefined;
|
|
1320
|
+
nullable?: boolean | undefined;
|
|
1293
1321
|
}[];
|
|
1294
1322
|
headers: {
|
|
1295
1323
|
value: string;
|
|
@@ -1302,10 +1330,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1302
1330
|
required?: boolean | undefined;
|
|
1303
1331
|
description?: string | undefined;
|
|
1304
1332
|
enum?: string[] | undefined;
|
|
1305
|
-
nullable?: boolean | undefined;
|
|
1306
|
-
format?: string | undefined;
|
|
1307
1333
|
file?: any;
|
|
1308
1334
|
refUid?: string | undefined;
|
|
1335
|
+
format?: string | undefined;
|
|
1336
|
+
nullable?: boolean | undefined;
|
|
1309
1337
|
}[];
|
|
1310
1338
|
cookies: {
|
|
1311
1339
|
value: string;
|
|
@@ -1318,17 +1346,23 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1318
1346
|
required?: boolean | undefined;
|
|
1319
1347
|
description?: string | undefined;
|
|
1320
1348
|
enum?: string[] | undefined;
|
|
1321
|
-
nullable?: boolean | undefined;
|
|
1322
|
-
format?: string | undefined;
|
|
1323
1349
|
file?: any;
|
|
1324
1350
|
refUid?: string | undefined;
|
|
1351
|
+
format?: string | undefined;
|
|
1352
|
+
nullable?: boolean | undefined;
|
|
1325
1353
|
}[];
|
|
1326
1354
|
};
|
|
1355
|
+
auth: Record<string, any>;
|
|
1356
|
+
}) => void;
|
|
1357
|
+
add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
|
|
1358
|
+
uid: string;
|
|
1359
|
+
name: string;
|
|
1360
|
+
url: string;
|
|
1327
1361
|
requestUid: string;
|
|
1328
1362
|
body: {
|
|
1329
1363
|
raw: {
|
|
1330
1364
|
value: string;
|
|
1331
|
-
encoding: "
|
|
1365
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1332
1366
|
};
|
|
1333
1367
|
formData: {
|
|
1334
1368
|
value: {
|
|
@@ -1342,22 +1376,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1342
1376
|
required?: boolean | undefined;
|
|
1343
1377
|
description?: string | undefined;
|
|
1344
1378
|
enum?: string[] | undefined;
|
|
1345
|
-
nullable?: boolean | undefined;
|
|
1346
|
-
format?: string | undefined;
|
|
1347
1379
|
file?: any;
|
|
1348
1380
|
refUid?: string | undefined;
|
|
1381
|
+
format?: string | undefined;
|
|
1382
|
+
nullable?: boolean | undefined;
|
|
1349
1383
|
}[];
|
|
1350
1384
|
encoding: "form-data" | "urlencoded";
|
|
1351
1385
|
};
|
|
1352
1386
|
activeBody: "raw" | "formData" | "binary";
|
|
1353
1387
|
binary?: File | undefined;
|
|
1354
1388
|
};
|
|
1355
|
-
auth: Record<string, any>;
|
|
1356
|
-
}) => void;
|
|
1357
|
-
add: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, name?: string) => {
|
|
1358
|
-
uid: string;
|
|
1359
|
-
name: string;
|
|
1360
|
-
url: string;
|
|
1361
1389
|
parameters: {
|
|
1362
1390
|
path: {
|
|
1363
1391
|
value: string;
|
|
@@ -1370,10 +1398,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1370
1398
|
required?: boolean | undefined;
|
|
1371
1399
|
description?: string | undefined;
|
|
1372
1400
|
enum?: string[] | undefined;
|
|
1373
|
-
nullable?: boolean | undefined;
|
|
1374
|
-
format?: string | undefined;
|
|
1375
1401
|
file?: any;
|
|
1376
1402
|
refUid?: string | undefined;
|
|
1403
|
+
format?: string | undefined;
|
|
1404
|
+
nullable?: boolean | undefined;
|
|
1377
1405
|
}[];
|
|
1378
1406
|
query: {
|
|
1379
1407
|
value: string;
|
|
@@ -1386,10 +1414,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1386
1414
|
required?: boolean | undefined;
|
|
1387
1415
|
description?: string | undefined;
|
|
1388
1416
|
enum?: string[] | undefined;
|
|
1389
|
-
nullable?: boolean | undefined;
|
|
1390
|
-
format?: string | undefined;
|
|
1391
1417
|
file?: any;
|
|
1392
1418
|
refUid?: string | undefined;
|
|
1419
|
+
format?: string | undefined;
|
|
1420
|
+
nullable?: boolean | undefined;
|
|
1393
1421
|
}[];
|
|
1394
1422
|
headers: {
|
|
1395
1423
|
value: string;
|
|
@@ -1402,10 +1430,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1402
1430
|
required?: boolean | undefined;
|
|
1403
1431
|
description?: string | undefined;
|
|
1404
1432
|
enum?: string[] | undefined;
|
|
1405
|
-
nullable?: boolean | undefined;
|
|
1406
|
-
format?: string | undefined;
|
|
1407
1433
|
file?: any;
|
|
1408
1434
|
refUid?: string | undefined;
|
|
1435
|
+
format?: string | undefined;
|
|
1436
|
+
nullable?: boolean | undefined;
|
|
1409
1437
|
}[];
|
|
1410
1438
|
cookies: {
|
|
1411
1439
|
value: string;
|
|
@@ -1418,17 +1446,24 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1418
1446
|
required?: boolean | undefined;
|
|
1419
1447
|
description?: string | undefined;
|
|
1420
1448
|
enum?: string[] | undefined;
|
|
1421
|
-
nullable?: boolean | undefined;
|
|
1422
|
-
format?: string | undefined;
|
|
1423
1449
|
file?: any;
|
|
1424
1450
|
refUid?: string | undefined;
|
|
1451
|
+
format?: string | undefined;
|
|
1452
|
+
nullable?: boolean | undefined;
|
|
1425
1453
|
}[];
|
|
1426
1454
|
};
|
|
1455
|
+
auth: Record<string, any>;
|
|
1456
|
+
};
|
|
1457
|
+
delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
|
|
1458
|
+
set: (item: {
|
|
1459
|
+
uid: string;
|
|
1460
|
+
name: string;
|
|
1461
|
+
url: string;
|
|
1427
1462
|
requestUid: string;
|
|
1428
1463
|
body: {
|
|
1429
1464
|
raw: {
|
|
1430
1465
|
value: string;
|
|
1431
|
-
encoding: "
|
|
1466
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1432
1467
|
};
|
|
1433
1468
|
formData: {
|
|
1434
1469
|
value: {
|
|
@@ -1442,23 +1477,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1442
1477
|
required?: boolean | undefined;
|
|
1443
1478
|
description?: string | undefined;
|
|
1444
1479
|
enum?: string[] | undefined;
|
|
1445
|
-
nullable?: boolean | undefined;
|
|
1446
|
-
format?: string | undefined;
|
|
1447
1480
|
file?: any;
|
|
1448
1481
|
refUid?: string | undefined;
|
|
1482
|
+
format?: string | undefined;
|
|
1483
|
+
nullable?: boolean | undefined;
|
|
1449
1484
|
}[];
|
|
1450
1485
|
encoding: "form-data" | "urlencoded";
|
|
1451
1486
|
};
|
|
1452
1487
|
activeBody: "raw" | "formData" | "binary";
|
|
1453
1488
|
binary?: File | undefined;
|
|
1454
1489
|
};
|
|
1455
|
-
auth: Record<string, any>;
|
|
1456
|
-
};
|
|
1457
|
-
delete: (requestExample: import("@scalar/oas-utils/entities/workspace/spec").RequestExample) => void;
|
|
1458
|
-
set: (item: {
|
|
1459
|
-
uid: string;
|
|
1460
|
-
name: string;
|
|
1461
|
-
url: string;
|
|
1462
1490
|
parameters: {
|
|
1463
1491
|
path: {
|
|
1464
1492
|
value: string;
|
|
@@ -1471,10 +1499,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1471
1499
|
required?: boolean | undefined;
|
|
1472
1500
|
description?: string | undefined;
|
|
1473
1501
|
enum?: string[] | undefined;
|
|
1474
|
-
nullable?: boolean | undefined;
|
|
1475
|
-
format?: string | undefined;
|
|
1476
1502
|
file?: any;
|
|
1477
1503
|
refUid?: string | undefined;
|
|
1504
|
+
format?: string | undefined;
|
|
1505
|
+
nullable?: boolean | undefined;
|
|
1478
1506
|
}[];
|
|
1479
1507
|
query: {
|
|
1480
1508
|
value: string;
|
|
@@ -1487,10 +1515,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1487
1515
|
required?: boolean | undefined;
|
|
1488
1516
|
description?: string | undefined;
|
|
1489
1517
|
enum?: string[] | undefined;
|
|
1490
|
-
nullable?: boolean | undefined;
|
|
1491
|
-
format?: string | undefined;
|
|
1492
1518
|
file?: any;
|
|
1493
1519
|
refUid?: string | undefined;
|
|
1520
|
+
format?: string | undefined;
|
|
1521
|
+
nullable?: boolean | undefined;
|
|
1494
1522
|
}[];
|
|
1495
1523
|
headers: {
|
|
1496
1524
|
value: string;
|
|
@@ -1503,10 +1531,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1503
1531
|
required?: boolean | undefined;
|
|
1504
1532
|
description?: string | undefined;
|
|
1505
1533
|
enum?: string[] | undefined;
|
|
1506
|
-
nullable?: boolean | undefined;
|
|
1507
|
-
format?: string | undefined;
|
|
1508
1534
|
file?: any;
|
|
1509
1535
|
refUid?: string | undefined;
|
|
1536
|
+
format?: string | undefined;
|
|
1537
|
+
nullable?: boolean | undefined;
|
|
1510
1538
|
}[];
|
|
1511
1539
|
cookies: {
|
|
1512
1540
|
value: string;
|
|
@@ -1519,17 +1547,23 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1519
1547
|
required?: boolean | undefined;
|
|
1520
1548
|
description?: string | undefined;
|
|
1521
1549
|
enum?: string[] | undefined;
|
|
1522
|
-
nullable?: boolean | undefined;
|
|
1523
|
-
format?: string | undefined;
|
|
1524
1550
|
file?: any;
|
|
1525
1551
|
refUid?: string | undefined;
|
|
1552
|
+
format?: string | undefined;
|
|
1553
|
+
nullable?: boolean | undefined;
|
|
1526
1554
|
}[];
|
|
1527
1555
|
};
|
|
1556
|
+
auth: Record<string, any>;
|
|
1557
|
+
}) => void;
|
|
1558
|
+
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1559
|
+
uid: string;
|
|
1560
|
+
name: string;
|
|
1561
|
+
url: string;
|
|
1528
1562
|
requestUid: string;
|
|
1529
1563
|
body: {
|
|
1530
1564
|
raw: {
|
|
1531
1565
|
value: string;
|
|
1532
|
-
encoding: "
|
|
1566
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1533
1567
|
};
|
|
1534
1568
|
formData: {
|
|
1535
1569
|
value: {
|
|
@@ -1543,22 +1577,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1543
1577
|
required?: boolean | undefined;
|
|
1544
1578
|
description?: string | undefined;
|
|
1545
1579
|
enum?: string[] | undefined;
|
|
1546
|
-
nullable?: boolean | undefined;
|
|
1547
|
-
format?: string | undefined;
|
|
1548
1580
|
file?: any;
|
|
1549
1581
|
refUid?: string | undefined;
|
|
1582
|
+
format?: string | undefined;
|
|
1583
|
+
nullable?: boolean | undefined;
|
|
1550
1584
|
}[];
|
|
1551
1585
|
encoding: "form-data" | "urlencoded";
|
|
1552
1586
|
};
|
|
1553
1587
|
activeBody: "raw" | "formData" | "binary";
|
|
1554
1588
|
binary?: File | undefined;
|
|
1555
1589
|
};
|
|
1556
|
-
auth: Record<string, any>;
|
|
1557
|
-
}) => void;
|
|
1558
|
-
edit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
|
|
1559
|
-
uid: string;
|
|
1560
|
-
name: string;
|
|
1561
|
-
url: string;
|
|
1562
1590
|
parameters: {
|
|
1563
1591
|
path: {
|
|
1564
1592
|
value: string;
|
|
@@ -1571,10 +1599,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1571
1599
|
required?: boolean | undefined;
|
|
1572
1600
|
description?: string | undefined;
|
|
1573
1601
|
enum?: string[] | undefined;
|
|
1574
|
-
nullable?: boolean | undefined;
|
|
1575
|
-
format?: string | undefined;
|
|
1576
1602
|
file?: any;
|
|
1577
1603
|
refUid?: string | undefined;
|
|
1604
|
+
format?: string | undefined;
|
|
1605
|
+
nullable?: boolean | undefined;
|
|
1578
1606
|
}[];
|
|
1579
1607
|
query: {
|
|
1580
1608
|
value: string;
|
|
@@ -1587,10 +1615,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1587
1615
|
required?: boolean | undefined;
|
|
1588
1616
|
description?: string | undefined;
|
|
1589
1617
|
enum?: string[] | undefined;
|
|
1590
|
-
nullable?: boolean | undefined;
|
|
1591
|
-
format?: string | undefined;
|
|
1592
1618
|
file?: any;
|
|
1593
1619
|
refUid?: string | undefined;
|
|
1620
|
+
format?: string | undefined;
|
|
1621
|
+
nullable?: boolean | undefined;
|
|
1594
1622
|
}[];
|
|
1595
1623
|
headers: {
|
|
1596
1624
|
value: string;
|
|
@@ -1603,10 +1631,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1603
1631
|
required?: boolean | undefined;
|
|
1604
1632
|
description?: string | undefined;
|
|
1605
1633
|
enum?: string[] | undefined;
|
|
1606
|
-
nullable?: boolean | undefined;
|
|
1607
|
-
format?: string | undefined;
|
|
1608
1634
|
file?: any;
|
|
1609
1635
|
refUid?: string | undefined;
|
|
1636
|
+
format?: string | undefined;
|
|
1637
|
+
nullable?: boolean | undefined;
|
|
1610
1638
|
}[];
|
|
1611
1639
|
cookies: {
|
|
1612
1640
|
value: string;
|
|
@@ -1619,17 +1647,22 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1619
1647
|
required?: boolean | undefined;
|
|
1620
1648
|
description?: string | undefined;
|
|
1621
1649
|
enum?: string[] | undefined;
|
|
1622
|
-
nullable?: boolean | undefined;
|
|
1623
|
-
format?: string | undefined;
|
|
1624
1650
|
file?: any;
|
|
1625
1651
|
refUid?: string | undefined;
|
|
1652
|
+
format?: string | undefined;
|
|
1653
|
+
nullable?: boolean | undefined;
|
|
1626
1654
|
}[];
|
|
1627
1655
|
};
|
|
1656
|
+
auth: Record<string, any>;
|
|
1657
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1658
|
+
uid: string;
|
|
1659
|
+
name: string;
|
|
1660
|
+
url: string;
|
|
1628
1661
|
requestUid: string;
|
|
1629
1662
|
body: {
|
|
1630
1663
|
raw: {
|
|
1631
1664
|
value: string;
|
|
1632
|
-
encoding: "
|
|
1665
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1633
1666
|
};
|
|
1634
1667
|
formData: {
|
|
1635
1668
|
value: {
|
|
@@ -1643,21 +1676,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1643
1676
|
required?: boolean | undefined;
|
|
1644
1677
|
description?: string | undefined;
|
|
1645
1678
|
enum?: string[] | undefined;
|
|
1646
|
-
nullable?: boolean | undefined;
|
|
1647
|
-
format?: string | undefined;
|
|
1648
1679
|
file?: any;
|
|
1649
1680
|
refUid?: string | undefined;
|
|
1681
|
+
format?: string | undefined;
|
|
1682
|
+
nullable?: boolean | undefined;
|
|
1650
1683
|
}[];
|
|
1651
1684
|
encoding: "form-data" | "urlencoded";
|
|
1652
1685
|
};
|
|
1653
1686
|
activeBody: "raw" | "formData" | "binary";
|
|
1654
1687
|
binary?: File | undefined;
|
|
1655
1688
|
};
|
|
1656
|
-
auth: Record<string, any>;
|
|
1657
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1658
|
-
uid: string;
|
|
1659
|
-
name: string;
|
|
1660
|
-
url: string;
|
|
1661
1689
|
parameters: {
|
|
1662
1690
|
path: {
|
|
1663
1691
|
value: string;
|
|
@@ -1670,10 +1698,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1670
1698
|
required?: boolean | undefined;
|
|
1671
1699
|
description?: string | undefined;
|
|
1672
1700
|
enum?: string[] | undefined;
|
|
1673
|
-
nullable?: boolean | undefined;
|
|
1674
|
-
format?: string | undefined;
|
|
1675
1701
|
file?: any;
|
|
1676
1702
|
refUid?: string | undefined;
|
|
1703
|
+
format?: string | undefined;
|
|
1704
|
+
nullable?: boolean | undefined;
|
|
1677
1705
|
}[];
|
|
1678
1706
|
query: {
|
|
1679
1707
|
value: string;
|
|
@@ -1686,10 +1714,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1686
1714
|
required?: boolean | undefined;
|
|
1687
1715
|
description?: string | undefined;
|
|
1688
1716
|
enum?: string[] | undefined;
|
|
1689
|
-
nullable?: boolean | undefined;
|
|
1690
|
-
format?: string | undefined;
|
|
1691
1717
|
file?: any;
|
|
1692
1718
|
refUid?: string | undefined;
|
|
1719
|
+
format?: string | undefined;
|
|
1720
|
+
nullable?: boolean | undefined;
|
|
1693
1721
|
}[];
|
|
1694
1722
|
headers: {
|
|
1695
1723
|
value: string;
|
|
@@ -1702,10 +1730,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1702
1730
|
required?: boolean | undefined;
|
|
1703
1731
|
description?: string | undefined;
|
|
1704
1732
|
enum?: string[] | undefined;
|
|
1705
|
-
nullable?: boolean | undefined;
|
|
1706
|
-
format?: string | undefined;
|
|
1707
1733
|
file?: any;
|
|
1708
1734
|
refUid?: string | undefined;
|
|
1735
|
+
format?: string | undefined;
|
|
1736
|
+
nullable?: boolean | undefined;
|
|
1709
1737
|
}[];
|
|
1710
1738
|
cookies: {
|
|
1711
1739
|
value: string;
|
|
@@ -1718,17 +1746,22 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1718
1746
|
required?: boolean | undefined;
|
|
1719
1747
|
description?: string | undefined;
|
|
1720
1748
|
enum?: string[] | undefined;
|
|
1721
|
-
nullable?: boolean | undefined;
|
|
1722
|
-
format?: string | undefined;
|
|
1723
1749
|
file?: any;
|
|
1724
1750
|
refUid?: string | undefined;
|
|
1751
|
+
format?: string | undefined;
|
|
1752
|
+
nullable?: boolean | undefined;
|
|
1725
1753
|
}[];
|
|
1726
1754
|
};
|
|
1755
|
+
auth: Record<string, any>;
|
|
1756
|
+
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1757
|
+
uid: string;
|
|
1758
|
+
name: string;
|
|
1759
|
+
url: string;
|
|
1727
1760
|
requestUid: string;
|
|
1728
1761
|
body: {
|
|
1729
1762
|
raw: {
|
|
1730
1763
|
value: string;
|
|
1731
|
-
encoding: "
|
|
1764
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1732
1765
|
};
|
|
1733
1766
|
formData: {
|
|
1734
1767
|
value: {
|
|
@@ -1742,21 +1775,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1742
1775
|
required?: boolean | undefined;
|
|
1743
1776
|
description?: string | undefined;
|
|
1744
1777
|
enum?: string[] | undefined;
|
|
1745
|
-
nullable?: boolean | undefined;
|
|
1746
|
-
format?: string | undefined;
|
|
1747
1778
|
file?: any;
|
|
1748
1779
|
refUid?: string | undefined;
|
|
1780
|
+
format?: string | undefined;
|
|
1781
|
+
nullable?: boolean | undefined;
|
|
1749
1782
|
}[];
|
|
1750
1783
|
encoding: "form-data" | "urlencoded";
|
|
1751
1784
|
};
|
|
1752
1785
|
activeBody: "raw" | "formData" | "binary";
|
|
1753
1786
|
binary?: File | undefined;
|
|
1754
1787
|
};
|
|
1755
|
-
auth: Record<string, any>;
|
|
1756
|
-
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
1757
|
-
uid: string;
|
|
1758
|
-
name: string;
|
|
1759
|
-
url: string;
|
|
1760
1788
|
parameters: {
|
|
1761
1789
|
path: {
|
|
1762
1790
|
value: string;
|
|
@@ -1769,10 +1797,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1769
1797
|
required?: boolean | undefined;
|
|
1770
1798
|
description?: string | undefined;
|
|
1771
1799
|
enum?: string[] | undefined;
|
|
1772
|
-
nullable?: boolean | undefined;
|
|
1773
|
-
format?: string | undefined;
|
|
1774
1800
|
file?: any;
|
|
1775
1801
|
refUid?: string | undefined;
|
|
1802
|
+
format?: string | undefined;
|
|
1803
|
+
nullable?: boolean | undefined;
|
|
1776
1804
|
}[];
|
|
1777
1805
|
query: {
|
|
1778
1806
|
value: string;
|
|
@@ -1785,10 +1813,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1785
1813
|
required?: boolean | undefined;
|
|
1786
1814
|
description?: string | undefined;
|
|
1787
1815
|
enum?: string[] | undefined;
|
|
1788
|
-
nullable?: boolean | undefined;
|
|
1789
|
-
format?: string | undefined;
|
|
1790
1816
|
file?: any;
|
|
1791
1817
|
refUid?: string | undefined;
|
|
1818
|
+
format?: string | undefined;
|
|
1819
|
+
nullable?: boolean | undefined;
|
|
1792
1820
|
}[];
|
|
1793
1821
|
headers: {
|
|
1794
1822
|
value: string;
|
|
@@ -1801,10 +1829,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1801
1829
|
required?: boolean | undefined;
|
|
1802
1830
|
description?: string | undefined;
|
|
1803
1831
|
enum?: string[] | undefined;
|
|
1804
|
-
nullable?: boolean | undefined;
|
|
1805
|
-
format?: string | undefined;
|
|
1806
1832
|
file?: any;
|
|
1807
1833
|
refUid?: string | undefined;
|
|
1834
|
+
format?: string | undefined;
|
|
1835
|
+
nullable?: boolean | undefined;
|
|
1808
1836
|
}[];
|
|
1809
1837
|
cookies: {
|
|
1810
1838
|
value: string;
|
|
@@ -1817,17 +1845,23 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1817
1845
|
required?: boolean | undefined;
|
|
1818
1846
|
description?: string | undefined;
|
|
1819
1847
|
enum?: string[] | undefined;
|
|
1820
|
-
nullable?: boolean | undefined;
|
|
1821
|
-
format?: string | undefined;
|
|
1822
1848
|
file?: any;
|
|
1823
1849
|
refUid?: string | undefined;
|
|
1850
|
+
format?: string | undefined;
|
|
1851
|
+
nullable?: boolean | undefined;
|
|
1824
1852
|
}[];
|
|
1825
1853
|
};
|
|
1854
|
+
auth: Record<string, any>;
|
|
1855
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1856
|
+
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.enabled` | `body.formData.value.${number}.minimum` | `body.formData.value.${number}.maximum` | `body.formData.value.${number}.refUid` | `body.formData.value.${number}.format` | `body.formData.value.${number}.default.${string}` | `body.formData.value.${number}.file.${string}` | `body.formData.value.${number}.enum.${number}` | `parameters.cookies.${number}` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.enabled` | `parameters.cookies.${number}.minimum` | `parameters.cookies.${number}.maximum` | `parameters.cookies.${number}.refUid` | `parameters.cookies.${number}.format` | `parameters.cookies.${number}.default.${string}` | `parameters.cookies.${number}.file.${string}` | `parameters.cookies.${number}.enum.${number}` | `parameters.path.${number}` | `parameters.path.${number}.default` | `parameters.path.${number}.value` | `parameters.path.${number}.key` | `parameters.path.${number}.type` | `parameters.path.${number}.required` | `parameters.path.${number}.file` | `parameters.path.${number}.description` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.enabled` | `parameters.path.${number}.minimum` | `parameters.path.${number}.maximum` | `parameters.path.${number}.refUid` | `parameters.path.${number}.format` | `parameters.path.${number}.default.${string}` | `parameters.path.${number}.file.${string}` | `parameters.path.${number}.enum.${number}` | `parameters.query.${number}` | `parameters.query.${number}.default` | `parameters.query.${number}.value` | `parameters.query.${number}.key` | `parameters.query.${number}.type` | `parameters.query.${number}.required` | `parameters.query.${number}.file` | `parameters.query.${number}.description` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.enabled` | `parameters.query.${number}.minimum` | `parameters.query.${number}.maximum` | `parameters.query.${number}.refUid` | `parameters.query.${number}.format` | `parameters.query.${number}.default.${string}` | `parameters.query.${number}.file.${string}` | `parameters.query.${number}.enum.${number}` | `parameters.headers.${number}` | `parameters.headers.${number}.default` | `parameters.headers.${number}.value` | `parameters.headers.${number}.key` | `parameters.headers.${number}.type` | `parameters.headers.${number}.required` | `parameters.headers.${number}.file` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.enabled` | `parameters.headers.${number}.minimum` | `parameters.headers.${number}.maximum` | `parameters.headers.${number}.refUid` | `parameters.headers.${number}.format` | `parameters.headers.${number}.default.${string}` | `parameters.headers.${number}.file.${string}` | `parameters.headers.${number}.enum.${number}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1857
|
+
uid: string;
|
|
1858
|
+
name: string;
|
|
1859
|
+
url: string;
|
|
1826
1860
|
requestUid: string;
|
|
1827
1861
|
body: {
|
|
1828
1862
|
raw: {
|
|
1829
1863
|
value: string;
|
|
1830
|
-
encoding: "
|
|
1864
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1831
1865
|
};
|
|
1832
1866
|
formData: {
|
|
1833
1867
|
value: {
|
|
@@ -1841,22 +1875,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1841
1875
|
required?: boolean | undefined;
|
|
1842
1876
|
description?: string | undefined;
|
|
1843
1877
|
enum?: string[] | undefined;
|
|
1844
|
-
nullable?: boolean | undefined;
|
|
1845
|
-
format?: string | undefined;
|
|
1846
1878
|
file?: any;
|
|
1847
1879
|
refUid?: string | undefined;
|
|
1880
|
+
format?: string | undefined;
|
|
1881
|
+
nullable?: boolean | undefined;
|
|
1848
1882
|
}[];
|
|
1849
1883
|
encoding: "form-data" | "urlencoded";
|
|
1850
1884
|
};
|
|
1851
1885
|
activeBody: "raw" | "formData" | "binary";
|
|
1852
1886
|
binary?: File | undefined;
|
|
1853
1887
|
};
|
|
1854
|
-
auth: Record<string, any>;
|
|
1855
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1856
|
-
untrackedEdit: <P extends "body" | "url" | "name" | "uid" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "requestUid" | "auth" | "body.raw" | "body.formData" | "body.activeBody" | "body.binary" | "body.raw.value" | "body.raw.encoding" | "body.formData.value" | "body.formData.encoding" | `body.formData.value.${number}` | `body.formData.value.${number}.default` | `body.formData.value.${number}.value` | `body.formData.value.${number}.key` | `body.formData.value.${number}.type` | `body.formData.value.${number}.required` | `body.formData.value.${number}.file` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.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" ? {
|
|
1857
|
-
uid: string;
|
|
1858
|
-
name: string;
|
|
1859
|
-
url: string;
|
|
1860
1888
|
parameters: {
|
|
1861
1889
|
path: {
|
|
1862
1890
|
value: string;
|
|
@@ -1869,10 +1897,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1869
1897
|
required?: boolean | undefined;
|
|
1870
1898
|
description?: string | undefined;
|
|
1871
1899
|
enum?: string[] | undefined;
|
|
1872
|
-
nullable?: boolean | undefined;
|
|
1873
|
-
format?: string | undefined;
|
|
1874
1900
|
file?: any;
|
|
1875
1901
|
refUid?: string | undefined;
|
|
1902
|
+
format?: string | undefined;
|
|
1903
|
+
nullable?: boolean | undefined;
|
|
1876
1904
|
}[];
|
|
1877
1905
|
query: {
|
|
1878
1906
|
value: string;
|
|
@@ -1885,10 +1913,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1885
1913
|
required?: boolean | undefined;
|
|
1886
1914
|
description?: string | undefined;
|
|
1887
1915
|
enum?: string[] | undefined;
|
|
1888
|
-
nullable?: boolean | undefined;
|
|
1889
|
-
format?: string | undefined;
|
|
1890
1916
|
file?: any;
|
|
1891
1917
|
refUid?: string | undefined;
|
|
1918
|
+
format?: string | undefined;
|
|
1919
|
+
nullable?: boolean | undefined;
|
|
1892
1920
|
}[];
|
|
1893
1921
|
headers: {
|
|
1894
1922
|
value: string;
|
|
@@ -1901,10 +1929,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1901
1929
|
required?: boolean | undefined;
|
|
1902
1930
|
description?: string | undefined;
|
|
1903
1931
|
enum?: string[] | undefined;
|
|
1904
|
-
nullable?: boolean | undefined;
|
|
1905
|
-
format?: string | undefined;
|
|
1906
1932
|
file?: any;
|
|
1907
1933
|
refUid?: string | undefined;
|
|
1934
|
+
format?: string | undefined;
|
|
1935
|
+
nullable?: boolean | undefined;
|
|
1908
1936
|
}[];
|
|
1909
1937
|
cookies: {
|
|
1910
1938
|
value: string;
|
|
@@ -1917,17 +1945,22 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1917
1945
|
required?: boolean | undefined;
|
|
1918
1946
|
description?: string | undefined;
|
|
1919
1947
|
enum?: string[] | undefined;
|
|
1920
|
-
nullable?: boolean | undefined;
|
|
1921
|
-
format?: string | undefined;
|
|
1922
1948
|
file?: any;
|
|
1923
1949
|
refUid?: string | undefined;
|
|
1950
|
+
format?: string | undefined;
|
|
1951
|
+
nullable?: boolean | undefined;
|
|
1924
1952
|
}[];
|
|
1925
1953
|
};
|
|
1954
|
+
auth: Record<string, any>;
|
|
1955
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1956
|
+
uid: string;
|
|
1957
|
+
name: string;
|
|
1958
|
+
url: string;
|
|
1926
1959
|
requestUid: string;
|
|
1927
1960
|
body: {
|
|
1928
1961
|
raw: {
|
|
1929
1962
|
value: string;
|
|
1930
|
-
encoding: "
|
|
1963
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
1931
1964
|
};
|
|
1932
1965
|
formData: {
|
|
1933
1966
|
value: {
|
|
@@ -1941,21 +1974,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1941
1974
|
required?: boolean | undefined;
|
|
1942
1975
|
description?: string | undefined;
|
|
1943
1976
|
enum?: string[] | undefined;
|
|
1944
|
-
nullable?: boolean | undefined;
|
|
1945
|
-
format?: string | undefined;
|
|
1946
1977
|
file?: any;
|
|
1947
1978
|
refUid?: string | undefined;
|
|
1979
|
+
format?: string | undefined;
|
|
1980
|
+
nullable?: boolean | undefined;
|
|
1948
1981
|
}[];
|
|
1949
1982
|
encoding: "form-data" | "urlencoded";
|
|
1950
1983
|
};
|
|
1951
1984
|
activeBody: "raw" | "formData" | "binary";
|
|
1952
1985
|
binary?: File | undefined;
|
|
1953
1986
|
};
|
|
1954
|
-
auth: Record<string, any>;
|
|
1955
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "body" | "url" | "name" | "uid" | "parameters" | "requestUid" | "auth" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1956
|
-
uid: string;
|
|
1957
|
-
name: string;
|
|
1958
|
-
url: string;
|
|
1959
1987
|
parameters: {
|
|
1960
1988
|
path: {
|
|
1961
1989
|
value: string;
|
|
@@ -1968,10 +1996,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1968
1996
|
required?: boolean | undefined;
|
|
1969
1997
|
description?: string | undefined;
|
|
1970
1998
|
enum?: string[] | undefined;
|
|
1971
|
-
nullable?: boolean | undefined;
|
|
1972
|
-
format?: string | undefined;
|
|
1973
1999
|
file?: any;
|
|
1974
2000
|
refUid?: string | undefined;
|
|
2001
|
+
format?: string | undefined;
|
|
2002
|
+
nullable?: boolean | undefined;
|
|
1975
2003
|
}[];
|
|
1976
2004
|
query: {
|
|
1977
2005
|
value: string;
|
|
@@ -1984,10 +2012,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1984
2012
|
required?: boolean | undefined;
|
|
1985
2013
|
description?: string | undefined;
|
|
1986
2014
|
enum?: string[] | undefined;
|
|
1987
|
-
nullable?: boolean | undefined;
|
|
1988
|
-
format?: string | undefined;
|
|
1989
2015
|
file?: any;
|
|
1990
2016
|
refUid?: string | undefined;
|
|
2017
|
+
format?: string | undefined;
|
|
2018
|
+
nullable?: boolean | undefined;
|
|
1991
2019
|
}[];
|
|
1992
2020
|
headers: {
|
|
1993
2021
|
value: string;
|
|
@@ -2000,10 +2028,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2000
2028
|
required?: boolean | undefined;
|
|
2001
2029
|
description?: string | undefined;
|
|
2002
2030
|
enum?: string[] | undefined;
|
|
2003
|
-
nullable?: boolean | undefined;
|
|
2004
|
-
format?: string | undefined;
|
|
2005
2031
|
file?: any;
|
|
2006
2032
|
refUid?: string | undefined;
|
|
2033
|
+
format?: string | undefined;
|
|
2034
|
+
nullable?: boolean | undefined;
|
|
2007
2035
|
}[];
|
|
2008
2036
|
cookies: {
|
|
2009
2037
|
value: string;
|
|
@@ -2016,17 +2044,22 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2016
2044
|
required?: boolean | undefined;
|
|
2017
2045
|
description?: string | undefined;
|
|
2018
2046
|
enum?: string[] | undefined;
|
|
2019
|
-
nullable?: boolean | undefined;
|
|
2020
|
-
format?: string | undefined;
|
|
2021
2047
|
file?: any;
|
|
2022
2048
|
refUid?: string | undefined;
|
|
2049
|
+
format?: string | undefined;
|
|
2050
|
+
nullable?: boolean | undefined;
|
|
2023
2051
|
}[];
|
|
2024
2052
|
};
|
|
2053
|
+
auth: Record<string, any>;
|
|
2054
|
+
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2055
|
+
uid: string;
|
|
2056
|
+
name: string;
|
|
2057
|
+
url: string;
|
|
2025
2058
|
requestUid: string;
|
|
2026
2059
|
body: {
|
|
2027
2060
|
raw: {
|
|
2028
2061
|
value: string;
|
|
2029
|
-
encoding: "
|
|
2062
|
+
encoding: "json" | "text" | "html" | "javascript" | "xml" | "yaml" | "edn";
|
|
2030
2063
|
};
|
|
2031
2064
|
formData: {
|
|
2032
2065
|
value: {
|
|
@@ -2040,21 +2073,16 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2040
2073
|
required?: boolean | undefined;
|
|
2041
2074
|
description?: string | undefined;
|
|
2042
2075
|
enum?: string[] | undefined;
|
|
2043
|
-
nullable?: boolean | undefined;
|
|
2044
|
-
format?: string | undefined;
|
|
2045
2076
|
file?: any;
|
|
2046
2077
|
refUid?: string | undefined;
|
|
2078
|
+
format?: string | undefined;
|
|
2079
|
+
nullable?: boolean | undefined;
|
|
2047
2080
|
}[];
|
|
2048
2081
|
encoding: "form-data" | "urlencoded";
|
|
2049
2082
|
};
|
|
2050
2083
|
activeBody: "raw" | "formData" | "binary";
|
|
2051
2084
|
binary?: File | undefined;
|
|
2052
2085
|
};
|
|
2053
|
-
auth: Record<string, any>;
|
|
2054
|
-
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2055
|
-
uid: string;
|
|
2056
|
-
name: string;
|
|
2057
|
-
url: string;
|
|
2058
2086
|
parameters: {
|
|
2059
2087
|
path: {
|
|
2060
2088
|
value: string;
|
|
@@ -2067,10 +2095,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2067
2095
|
required?: boolean | undefined;
|
|
2068
2096
|
description?: string | undefined;
|
|
2069
2097
|
enum?: string[] | undefined;
|
|
2070
|
-
nullable?: boolean | undefined;
|
|
2071
|
-
format?: string | undefined;
|
|
2072
2098
|
file?: any;
|
|
2073
2099
|
refUid?: string | undefined;
|
|
2100
|
+
format?: string | undefined;
|
|
2101
|
+
nullable?: boolean | undefined;
|
|
2074
2102
|
}[];
|
|
2075
2103
|
query: {
|
|
2076
2104
|
value: string;
|
|
@@ -2083,10 +2111,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2083
2111
|
required?: boolean | undefined;
|
|
2084
2112
|
description?: string | undefined;
|
|
2085
2113
|
enum?: string[] | undefined;
|
|
2086
|
-
nullable?: boolean | undefined;
|
|
2087
|
-
format?: string | undefined;
|
|
2088
2114
|
file?: any;
|
|
2089
2115
|
refUid?: string | undefined;
|
|
2116
|
+
format?: string | undefined;
|
|
2117
|
+
nullable?: boolean | undefined;
|
|
2090
2118
|
}[];
|
|
2091
2119
|
headers: {
|
|
2092
2120
|
value: string;
|
|
@@ -2099,10 +2127,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2099
2127
|
required?: boolean | undefined;
|
|
2100
2128
|
description?: string | undefined;
|
|
2101
2129
|
enum?: string[] | undefined;
|
|
2102
|
-
nullable?: boolean | undefined;
|
|
2103
|
-
format?: string | undefined;
|
|
2104
2130
|
file?: any;
|
|
2105
2131
|
refUid?: string | undefined;
|
|
2132
|
+
format?: string | undefined;
|
|
2133
|
+
nullable?: boolean | undefined;
|
|
2106
2134
|
}[];
|
|
2107
2135
|
cookies: {
|
|
2108
2136
|
value: string;
|
|
@@ -2115,40 +2143,12 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2115
2143
|
required?: boolean | undefined;
|
|
2116
2144
|
description?: string | undefined;
|
|
2117
2145
|
enum?: string[] | undefined;
|
|
2118
|
-
nullable?: boolean | undefined;
|
|
2119
|
-
format?: string | undefined;
|
|
2120
2146
|
file?: any;
|
|
2121
2147
|
refUid?: string | undefined;
|
|
2148
|
+
format?: string | undefined;
|
|
2149
|
+
nullable?: boolean | undefined;
|
|
2122
2150
|
}[];
|
|
2123
2151
|
};
|
|
2124
|
-
requestUid: string;
|
|
2125
|
-
body: {
|
|
2126
|
-
raw: {
|
|
2127
|
-
value: string;
|
|
2128
|
-
encoding: "xml" | "javascript" | "json" | "text" | "html" | "yaml" | "edn";
|
|
2129
|
-
};
|
|
2130
|
-
formData: {
|
|
2131
|
-
value: {
|
|
2132
|
-
value: string;
|
|
2133
|
-
key: string;
|
|
2134
|
-
enabled: boolean;
|
|
2135
|
-
minimum?: number | undefined;
|
|
2136
|
-
type?: string | undefined;
|
|
2137
|
-
maximum?: number | undefined;
|
|
2138
|
-
default?: any;
|
|
2139
|
-
required?: boolean | undefined;
|
|
2140
|
-
description?: string | undefined;
|
|
2141
|
-
enum?: string[] | undefined;
|
|
2142
|
-
nullable?: boolean | undefined;
|
|
2143
|
-
format?: string | undefined;
|
|
2144
|
-
file?: any;
|
|
2145
|
-
refUid?: string | undefined;
|
|
2146
|
-
}[];
|
|
2147
|
-
encoding: "form-data" | "urlencoded";
|
|
2148
|
-
};
|
|
2149
|
-
activeBody: "raw" | "formData" | "binary";
|
|
2150
|
-
binary?: File | undefined;
|
|
2151
|
-
};
|
|
2152
2152
|
auth: Record<string, any>;
|
|
2153
2153
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2154
2154
|
undo: (uid: string) => void;
|
|
@@ -2293,7 +2293,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2293
2293
|
openIdConnectUrl: string;
|
|
2294
2294
|
description?: string | undefined;
|
|
2295
2295
|
}) => void;
|
|
2296
|
-
edit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2296
|
+
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" ? {
|
|
2297
2297
|
type: "apiKey";
|
|
2298
2298
|
value: string;
|
|
2299
2299
|
uid: string;
|
|
@@ -2301,7 +2301,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2301
2301
|
nameKey: string;
|
|
2302
2302
|
in: "query" | "header" | "cookie";
|
|
2303
2303
|
description?: string | undefined;
|
|
2304
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2304
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2305
2305
|
type: "apiKey";
|
|
2306
2306
|
value: string;
|
|
2307
2307
|
uid: string;
|
|
@@ -2492,7 +2492,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2492
2492
|
openIdConnectUrl: string;
|
|
2493
2493
|
description?: string | undefined;
|
|
2494
2494
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2495
|
-
untrackedEdit: <P extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2495
|
+
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" ? {
|
|
2496
2496
|
type: "apiKey";
|
|
2497
2497
|
value: string;
|
|
2498
2498
|
uid: string;
|
|
@@ -2500,7 +2500,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2500
2500
|
nameKey: string;
|
|
2501
2501
|
in: "query" | "header" | "cookie";
|
|
2502
2502
|
description?: string | undefined;
|
|
2503
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "
|
|
2503
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "description" | "name" | "uid" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2504
2504
|
type: "apiKey";
|
|
2505
2505
|
value: string;
|
|
2506
2506
|
uid: string;
|
|
@@ -2851,7 +2851,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2851
2851
|
} | undefined;
|
|
2852
2852
|
proxyUrl?: string | undefined;
|
|
2853
2853
|
}) => void;
|
|
2854
|
-
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2854
|
+
edit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2855
2855
|
uid: string;
|
|
2856
2856
|
name: string;
|
|
2857
2857
|
description: string;
|
|
@@ -2903,7 +2903,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2903
2903
|
} | undefined;
|
|
2904
2904
|
proxyUrl?: string | undefined;
|
|
2905
2905
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2906
|
-
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2906
|
+
untrackedEdit: <P extends "description" | "name" | "isReadOnly" | "uid" | "collectionUids" | "environmentUids" | "cookieUids" | "themeId" | "hotKeyConfig" | "proxyUrl" | `collectionUids.${number}` | `environmentUids.${number}` | `cookieUids.${number}` | "hotKeyConfig.hotKeys" | "hotKeyConfig.modifiers" | `hotKeyConfig.modifiers.${number}` | "hotKeyConfig.hotKeys." | "hotKeyConfig.hotKeys.a" | "hotKeyConfig.hotKeys.b" | "hotKeyConfig.hotKeys.i" | "hotKeyConfig.hotKeys.p" | "hotKeyConfig.hotKeys.q" | "hotKeyConfig.hotKeys.s" | "hotKeyConfig.hotKeys.u" | "hotKeyConfig.hotKeys.g" | "hotKeyConfig.hotKeys.ArrowLeft" | "hotKeyConfig.hotKeys.ArrowRight" | "hotKeyConfig.hotKeys.Delete" | "hotKeyConfig.hotKeys./" | "hotKeyConfig.hotKeys.0" | "hotKeyConfig.hotKeys.1" | "hotKeyConfig.hotKeys.Backspace" | "hotKeyConfig.hotKeys.2" | "hotKeyConfig.hotKeys.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" ? {
|
|
2907
2907
|
uid: string;
|
|
2908
2908
|
name: string;
|
|
2909
2909
|
description: string;
|