@scalar/api-client 2.0.34 → 2.0.35
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 +11 -0
- package/dist/components/DataTable/DataTableInput.vue.d.ts +7 -0
- package/dist/components/DataTable/DataTableInput.vue.d.ts.map +1 -1
- package/dist/components/DataTable/DataTableInput.vue.js +3 -3
- package/dist/components/DataTable/DataTableInput.vue2.js +33 -31
- package/dist/components/DataTable/DataTableInputSelect.vue.d.ts +19 -3
- package/dist/components/DataTable/DataTableInputSelect.vue.d.ts.map +1 -1
- package/dist/components/DataTable/DataTableInputSelect.vue.js +37 -35
- package/dist/components/DataTable/index.d.ts +1 -0
- package/dist/components/DataTable/index.d.ts.map +1 -1
- package/dist/components/DataTable/index.js +6 -4
- package/dist/components/SideNav/SideHelp.vue.d.ts +3 -0
- package/dist/components/SideNav/SideHelp.vue.d.ts.map +1 -0
- package/dist/components/SideNav/SideHelp.vue.js +125 -0
- package/dist/components/SideNav/SideHelp.vue2.js +4 -0
- package/dist/components/SideNav/SideNav.vue.d.ts.map +1 -1
- package/dist/components/SideNav/SideNav.vue.js +3 -3
- package/dist/components/SideNav/SideNav.vue2.js +28 -24
- package/dist/layouts/App/create-api-client-app.d.ts +512 -603
- package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
- package/dist/layouts/Modal/api-client-modal.d.ts +1036 -1218
- package/dist/layouts/Modal/api-client-modal.d.ts.map +1 -1
- package/dist/libs/create-client.d.ts +513 -603
- package/dist/libs/create-client.d.ts.map +1 -1
- package/dist/libs/create-client.js +58 -68
- package/dist/libs/local-storage.js +5 -5
- package/dist/libs/sendRequest.d.ts +2 -5
- package/dist/libs/sendRequest.d.ts.map +1 -1
- package/dist/libs/sendRequest.js +60 -63
- package/dist/store/workspace.d.ts +1037 -1219
- package/dist/store/workspace.d.ts.map +1 -1
- package/dist/store/workspace.js +350 -277
- package/dist/style.css +1 -1
- package/dist/views/Request/Request.vue.js +2 -2
- package/dist/views/Request/Request.vue2.js +22 -22
- package/dist/views/Request/RequestSection/RequestAuth.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestAuth.vue.js +270 -177
- package/dist/views/Request/RequestSection/RequestSection.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSection/RequestSection.vue.js +52 -42
- package/dist/views/Request/RequestSidebarItemMenu.vue.d.ts.map +1 -1
- package/dist/views/Request/RequestSidebarItemMenu.vue.js +141 -104
- package/dist/views/Request/components/OAuth2.vue.d.ts +3 -9
- package/dist/views/Request/components/OAuth2.vue.d.ts.map +1 -1
- package/dist/views/Request/components/OAuth2.vue.js +141 -112
- package/dist/views/Request/components/OAuthScopesInput.vue.d.ts +2 -6
- package/dist/views/Request/components/OAuthScopesInput.vue.d.ts.map +1 -1
- package/dist/views/Request/components/OAuthScopesInput.vue.js +35 -39
- package/dist/views/Request/consts/index.d.ts +2 -0
- package/dist/views/Request/consts/index.d.ts.map +1 -0
- package/dist/views/Request/consts/index.js +5 -0
- package/dist/views/Request/consts/new-auth-options.d.ts +92 -0
- package/dist/views/Request/consts/new-auth-options.d.ts.map +1 -0
- package/dist/views/Request/consts/new-auth-options.js +83 -0
- package/dist/views/Request/libs/oauth2.d.ts +3 -16
- package/dist/views/Request/libs/oauth2.d.ts.map +1 -1
- package/dist/views/Request/libs/oauth2.js +28 -31
- package/package.json +10 -6
|
@@ -64,10 +64,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
64
64
|
} | undefined;
|
|
65
65
|
} | undefined;
|
|
66
66
|
};
|
|
67
|
-
|
|
68
|
-
uid: string;
|
|
69
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
70
|
-
}[];
|
|
67
|
+
securitySchemeDict: Record<string, string>;
|
|
71
68
|
selectedServerUid: string;
|
|
72
69
|
childUids: string[];
|
|
73
70
|
}>;
|
|
@@ -113,8 +110,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
113
110
|
minimum?: number | undefined;
|
|
114
111
|
type?: string | undefined;
|
|
115
112
|
maximum?: number | undefined;
|
|
116
|
-
default?: any;
|
|
117
113
|
description?: string | undefined;
|
|
114
|
+
default?: any;
|
|
118
115
|
enum?: string[] | undefined;
|
|
119
116
|
required?: boolean | undefined;
|
|
120
117
|
file?: File | undefined;
|
|
@@ -129,8 +126,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
129
126
|
minimum?: number | undefined;
|
|
130
127
|
type?: string | undefined;
|
|
131
128
|
maximum?: number | undefined;
|
|
132
|
-
default?: any;
|
|
133
129
|
description?: string | undefined;
|
|
130
|
+
default?: any;
|
|
134
131
|
enum?: string[] | undefined;
|
|
135
132
|
required?: boolean | undefined;
|
|
136
133
|
file?: File | undefined;
|
|
@@ -145,8 +142,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
145
142
|
minimum?: number | undefined;
|
|
146
143
|
type?: string | undefined;
|
|
147
144
|
maximum?: number | undefined;
|
|
148
|
-
default?: any;
|
|
149
145
|
description?: string | undefined;
|
|
146
|
+
default?: any;
|
|
150
147
|
enum?: string[] | undefined;
|
|
151
148
|
required?: boolean | undefined;
|
|
152
149
|
file?: File | undefined;
|
|
@@ -161,8 +158,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
161
158
|
minimum?: number | undefined;
|
|
162
159
|
type?: string | undefined;
|
|
163
160
|
maximum?: number | undefined;
|
|
164
|
-
default?: any;
|
|
165
161
|
description?: string | undefined;
|
|
162
|
+
default?: any;
|
|
166
163
|
enum?: string[] | undefined;
|
|
167
164
|
required?: boolean | undefined;
|
|
168
165
|
file?: File | undefined;
|
|
@@ -185,8 +182,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
185
182
|
minimum?: number | undefined;
|
|
186
183
|
type?: string | undefined;
|
|
187
184
|
maximum?: number | undefined;
|
|
188
|
-
default?: any;
|
|
189
185
|
description?: string | undefined;
|
|
186
|
+
default?: any;
|
|
190
187
|
enum?: string[] | undefined;
|
|
191
188
|
required?: boolean | undefined;
|
|
192
189
|
file?: File | undefined;
|
|
@@ -207,8 +204,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
207
204
|
url: string;
|
|
208
205
|
description?: string | undefined;
|
|
209
206
|
variables?: Record<string, {
|
|
210
|
-
default: string;
|
|
211
207
|
uid: string;
|
|
208
|
+
default: string;
|
|
212
209
|
value?: string | undefined;
|
|
213
210
|
description?: string | undefined;
|
|
214
211
|
enum?: string[] | undefined;
|
|
@@ -218,6 +215,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
218
215
|
type: "apiKey";
|
|
219
216
|
value: string;
|
|
220
217
|
uid: string;
|
|
218
|
+
nameKey: string;
|
|
221
219
|
name: string;
|
|
222
220
|
in: "query" | "header" | "cookie";
|
|
223
221
|
description?: string | undefined;
|
|
@@ -225,6 +223,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
225
223
|
type: "http";
|
|
226
224
|
value: string;
|
|
227
225
|
uid: string;
|
|
226
|
+
nameKey: string;
|
|
228
227
|
scheme: "basic" | "bearer";
|
|
229
228
|
bearerFormat: string;
|
|
230
229
|
secondValue: string;
|
|
@@ -232,48 +231,50 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
232
231
|
} | {
|
|
233
232
|
type: "oauth2";
|
|
234
233
|
uid: string;
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
234
|
+
nameKey: string;
|
|
235
|
+
flow: {
|
|
236
|
+
type: "implicit";
|
|
237
|
+
refreshUrl: string;
|
|
238
|
+
selectedScopes: string[];
|
|
239
|
+
token: string;
|
|
240
|
+
authorizationUrl: string;
|
|
241
|
+
redirectUri: string;
|
|
242
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
243
|
+
} | {
|
|
244
|
+
type: "password";
|
|
245
|
+
value: string;
|
|
246
|
+
secondValue: string;
|
|
247
|
+
refreshUrl: string;
|
|
248
|
+
selectedScopes: string[];
|
|
249
|
+
token: string;
|
|
250
|
+
tokenUrl: string;
|
|
251
|
+
clientSecret: string;
|
|
252
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
253
|
+
} | {
|
|
254
|
+
type: "clientCredentials";
|
|
255
|
+
refreshUrl: string;
|
|
256
|
+
selectedScopes: string[];
|
|
257
|
+
token: string;
|
|
258
|
+
tokenUrl: string;
|
|
259
|
+
clientSecret: string;
|
|
260
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
261
|
+
} | {
|
|
262
|
+
type: "authorizationCode";
|
|
263
|
+
refreshUrl: string;
|
|
264
|
+
selectedScopes: string[];
|
|
265
|
+
token: string;
|
|
266
|
+
authorizationUrl: string;
|
|
267
|
+
redirectUri: string;
|
|
268
|
+
tokenUrl: string;
|
|
269
|
+
clientSecret: string;
|
|
270
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
270
271
|
};
|
|
271
272
|
clientId: string;
|
|
272
|
-
redirectUri: string;
|
|
273
273
|
description?: string | undefined;
|
|
274
274
|
} | {
|
|
275
275
|
type: "openIdConnect";
|
|
276
276
|
uid: string;
|
|
277
|
+
nameKey: string;
|
|
277
278
|
openIdConnectUrl: string;
|
|
278
279
|
description?: string | undefined;
|
|
279
280
|
}>;
|
|
@@ -313,10 +314,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
313
314
|
} | undefined;
|
|
314
315
|
} | undefined;
|
|
315
316
|
};
|
|
316
|
-
|
|
317
|
-
uid: string;
|
|
318
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
319
|
-
}[];
|
|
317
|
+
securitySchemeDict: Record<string, string>;
|
|
320
318
|
selectedServerUid: string;
|
|
321
319
|
childUids: string[];
|
|
322
320
|
} | null>;
|
|
@@ -333,8 +331,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
333
331
|
minimum?: number | undefined;
|
|
334
332
|
type?: string | undefined;
|
|
335
333
|
maximum?: number | undefined;
|
|
336
|
-
default?: any;
|
|
337
334
|
description?: string | undefined;
|
|
335
|
+
default?: any;
|
|
338
336
|
enum?: string[] | undefined;
|
|
339
337
|
required?: boolean | undefined;
|
|
340
338
|
file?: File | undefined;
|
|
@@ -349,8 +347,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
349
347
|
minimum?: number | undefined;
|
|
350
348
|
type?: string | undefined;
|
|
351
349
|
maximum?: number | undefined;
|
|
352
|
-
default?: any;
|
|
353
350
|
description?: string | undefined;
|
|
351
|
+
default?: any;
|
|
354
352
|
enum?: string[] | undefined;
|
|
355
353
|
required?: boolean | undefined;
|
|
356
354
|
file?: File | undefined;
|
|
@@ -365,8 +363,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
365
363
|
minimum?: number | undefined;
|
|
366
364
|
type?: string | undefined;
|
|
367
365
|
maximum?: number | undefined;
|
|
368
|
-
default?: any;
|
|
369
366
|
description?: string | undefined;
|
|
367
|
+
default?: any;
|
|
370
368
|
enum?: string[] | undefined;
|
|
371
369
|
required?: boolean | undefined;
|
|
372
370
|
file?: File | undefined;
|
|
@@ -381,8 +379,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
381
379
|
minimum?: number | undefined;
|
|
382
380
|
type?: string | undefined;
|
|
383
381
|
maximum?: number | undefined;
|
|
384
|
-
default?: any;
|
|
385
382
|
description?: string | undefined;
|
|
383
|
+
default?: any;
|
|
386
384
|
enum?: string[] | undefined;
|
|
387
385
|
required?: boolean | undefined;
|
|
388
386
|
file?: File | undefined;
|
|
@@ -405,8 +403,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
405
403
|
minimum?: number | undefined;
|
|
406
404
|
type?: string | undefined;
|
|
407
405
|
maximum?: number | undefined;
|
|
408
|
-
default?: any;
|
|
409
406
|
description?: string | undefined;
|
|
407
|
+
default?: any;
|
|
410
408
|
enum?: string[] | undefined;
|
|
411
409
|
required?: boolean | undefined;
|
|
412
410
|
file?: File | undefined;
|
|
@@ -433,174 +431,80 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
433
431
|
workspace: string;
|
|
434
432
|
}>;
|
|
435
433
|
activeSecurityRequirements: import("vue").ComputedRef<Record<string, string[]>[]>;
|
|
436
|
-
|
|
434
|
+
activeSecuritySchemes: import("vue").ComputedRef<({
|
|
435
|
+
type: "apiKey";
|
|
436
|
+
value: string;
|
|
437
|
+
uid: string;
|
|
438
|
+
nameKey: string;
|
|
439
|
+
name: string;
|
|
440
|
+
in: "query" | "header" | "cookie";
|
|
441
|
+
description?: string | undefined;
|
|
442
|
+
} | {
|
|
443
|
+
type: "http";
|
|
444
|
+
value: string;
|
|
445
|
+
uid: string;
|
|
446
|
+
nameKey: string;
|
|
447
|
+
scheme: "basic" | "bearer";
|
|
448
|
+
bearerFormat: string;
|
|
449
|
+
secondValue: string;
|
|
450
|
+
description?: string | undefined;
|
|
451
|
+
} | {
|
|
452
|
+
type: "oauth2";
|
|
453
|
+
uid: string;
|
|
454
|
+
nameKey: string;
|
|
437
455
|
flow: {
|
|
438
|
-
|
|
439
|
-
|
|
456
|
+
type: "implicit";
|
|
457
|
+
refreshUrl: string;
|
|
440
458
|
selectedScopes: string[];
|
|
441
459
|
token: string;
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
refreshUrl?: string | undefined;
|
|
460
|
+
authorizationUrl: string;
|
|
461
|
+
redirectUri: string;
|
|
445
462
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
446
463
|
} | {
|
|
447
|
-
|
|
464
|
+
type: "password";
|
|
465
|
+
value: string;
|
|
466
|
+
secondValue: string;
|
|
467
|
+
refreshUrl: string;
|
|
448
468
|
selectedScopes: string[];
|
|
449
469
|
token: string;
|
|
450
|
-
|
|
470
|
+
tokenUrl: string;
|
|
471
|
+
clientSecret: string;
|
|
451
472
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
452
473
|
} | {
|
|
474
|
+
type: "clientCredentials";
|
|
475
|
+
refreshUrl: string;
|
|
453
476
|
selectedScopes: string[];
|
|
454
477
|
token: string;
|
|
455
478
|
tokenUrl: string;
|
|
456
479
|
clientSecret: string;
|
|
457
|
-
refreshUrl?: string | undefined;
|
|
458
480
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
459
481
|
} | {
|
|
460
|
-
|
|
482
|
+
type: "authorizationCode";
|
|
483
|
+
refreshUrl: string;
|
|
461
484
|
selectedScopes: string[];
|
|
462
485
|
token: string;
|
|
486
|
+
authorizationUrl: string;
|
|
487
|
+
redirectUri: string;
|
|
463
488
|
tokenUrl: string;
|
|
464
489
|
clientSecret: string;
|
|
465
|
-
refreshUrl?: string | undefined;
|
|
466
490
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
467
|
-
} | undefined;
|
|
468
|
-
scheme: {
|
|
469
|
-
type: "apiKey";
|
|
470
|
-
value: string;
|
|
471
|
-
uid: string;
|
|
472
|
-
name: string;
|
|
473
|
-
in: "query" | "header" | "cookie";
|
|
474
|
-
description?: string | undefined;
|
|
475
|
-
} | {
|
|
476
|
-
type: "http";
|
|
477
|
-
value: string;
|
|
478
|
-
uid: string;
|
|
479
|
-
scheme: "basic" | "bearer";
|
|
480
|
-
bearerFormat: string;
|
|
481
|
-
secondValue: string;
|
|
482
|
-
description?: string | undefined;
|
|
483
|
-
} | {
|
|
484
|
-
type: "oauth2";
|
|
485
|
-
uid: string;
|
|
486
|
-
flows: {
|
|
487
|
-
implicit?: {
|
|
488
|
-
authorizationUrl: string;
|
|
489
|
-
selectedScopes: string[];
|
|
490
|
-
token: string;
|
|
491
|
-
refreshUrl?: string | undefined;
|
|
492
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
493
|
-
} | undefined;
|
|
494
|
-
password?: {
|
|
495
|
-
value: string;
|
|
496
|
-
secondValue: string;
|
|
497
|
-
selectedScopes: string[];
|
|
498
|
-
token: string;
|
|
499
|
-
tokenUrl: string;
|
|
500
|
-
clientSecret: string;
|
|
501
|
-
refreshUrl?: string | undefined;
|
|
502
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
503
|
-
} | undefined;
|
|
504
|
-
clientCredentials?: {
|
|
505
|
-
selectedScopes: string[];
|
|
506
|
-
token: string;
|
|
507
|
-
tokenUrl: string;
|
|
508
|
-
clientSecret: string;
|
|
509
|
-
refreshUrl?: string | undefined;
|
|
510
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
511
|
-
} | undefined;
|
|
512
|
-
authorizationCode?: {
|
|
513
|
-
authorizationUrl: string;
|
|
514
|
-
selectedScopes: string[];
|
|
515
|
-
token: string;
|
|
516
|
-
tokenUrl: string;
|
|
517
|
-
clientSecret: string;
|
|
518
|
-
refreshUrl?: string | undefined;
|
|
519
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
520
|
-
} | undefined;
|
|
521
|
-
};
|
|
522
|
-
clientId: string;
|
|
523
|
-
redirectUri: string;
|
|
524
|
-
description?: string | undefined;
|
|
525
|
-
} | {
|
|
526
|
-
type: "openIdConnect";
|
|
527
|
-
uid: string;
|
|
528
|
-
openIdConnectUrl: string;
|
|
529
|
-
description?: string | undefined;
|
|
530
491
|
};
|
|
492
|
+
clientId: string;
|
|
493
|
+
description?: string | undefined;
|
|
531
494
|
} | {
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
in: "query" | "header" | "cookie";
|
|
539
|
-
description?: string | undefined;
|
|
540
|
-
} | {
|
|
541
|
-
type: "http";
|
|
542
|
-
value: string;
|
|
543
|
-
uid: string;
|
|
544
|
-
scheme: "basic" | "bearer";
|
|
545
|
-
bearerFormat: string;
|
|
546
|
-
secondValue: string;
|
|
547
|
-
description?: string | undefined;
|
|
548
|
-
} | {
|
|
549
|
-
type: "oauth2";
|
|
550
|
-
uid: string;
|
|
551
|
-
flows: {
|
|
552
|
-
implicit?: {
|
|
553
|
-
authorizationUrl: string;
|
|
554
|
-
selectedScopes: string[];
|
|
555
|
-
token: string;
|
|
556
|
-
refreshUrl?: string | undefined;
|
|
557
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
558
|
-
} | undefined;
|
|
559
|
-
password?: {
|
|
560
|
-
value: string;
|
|
561
|
-
secondValue: string;
|
|
562
|
-
selectedScopes: string[];
|
|
563
|
-
token: string;
|
|
564
|
-
tokenUrl: string;
|
|
565
|
-
clientSecret: string;
|
|
566
|
-
refreshUrl?: string | undefined;
|
|
567
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
568
|
-
} | undefined;
|
|
569
|
-
clientCredentials?: {
|
|
570
|
-
selectedScopes: string[];
|
|
571
|
-
token: string;
|
|
572
|
-
tokenUrl: string;
|
|
573
|
-
clientSecret: string;
|
|
574
|
-
refreshUrl?: string | undefined;
|
|
575
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
576
|
-
} | undefined;
|
|
577
|
-
authorizationCode?: {
|
|
578
|
-
authorizationUrl: string;
|
|
579
|
-
selectedScopes: string[];
|
|
580
|
-
token: string;
|
|
581
|
-
tokenUrl: string;
|
|
582
|
-
clientSecret: string;
|
|
583
|
-
refreshUrl?: string | undefined;
|
|
584
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
585
|
-
} | undefined;
|
|
586
|
-
};
|
|
587
|
-
clientId: string;
|
|
588
|
-
redirectUri: string;
|
|
589
|
-
description?: string | undefined;
|
|
590
|
-
} | {
|
|
591
|
-
type: "openIdConnect";
|
|
592
|
-
uid: string;
|
|
593
|
-
openIdConnectUrl: string;
|
|
594
|
-
description?: string | undefined;
|
|
595
|
-
};
|
|
596
|
-
} | undefined>;
|
|
495
|
+
type: "openIdConnect";
|
|
496
|
+
uid: string;
|
|
497
|
+
nameKey: string;
|
|
498
|
+
openIdConnectUrl: string;
|
|
499
|
+
description?: string | undefined;
|
|
500
|
+
})[]>;
|
|
597
501
|
activeServer: import("vue").ComputedRef<{
|
|
598
502
|
uid: string;
|
|
599
503
|
url: string;
|
|
600
504
|
description?: string | undefined;
|
|
601
505
|
variables?: Record<string, {
|
|
602
|
-
default: string;
|
|
603
506
|
uid: string;
|
|
507
|
+
default: string;
|
|
604
508
|
value?: string | undefined;
|
|
605
509
|
description?: string | undefined;
|
|
606
510
|
enum?: string[] | undefined;
|
|
@@ -653,10 +557,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
653
557
|
} | undefined;
|
|
654
558
|
} | undefined;
|
|
655
559
|
};
|
|
656
|
-
|
|
657
|
-
uid: string;
|
|
658
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
659
|
-
}[];
|
|
560
|
+
securitySchemeDict: Record<string, string>;
|
|
660
561
|
selectedServerUid: string;
|
|
661
562
|
childUids: string[];
|
|
662
563
|
}[]>;
|
|
@@ -665,8 +566,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
665
566
|
url: string;
|
|
666
567
|
description?: string | undefined;
|
|
667
568
|
variables?: Record<string, {
|
|
668
|
-
default: string;
|
|
669
569
|
uid: string;
|
|
570
|
+
default: string;
|
|
670
571
|
value?: string | undefined;
|
|
671
572
|
description?: string | undefined;
|
|
672
573
|
enum?: string[] | undefined;
|
|
@@ -833,10 +734,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
833
734
|
} | undefined;
|
|
834
735
|
} | undefined;
|
|
835
736
|
};
|
|
836
|
-
|
|
837
|
-
uid: string;
|
|
838
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
839
|
-
}[];
|
|
737
|
+
securitySchemeDict: Record<string, string>;
|
|
840
738
|
selectedServerUid: string;
|
|
841
739
|
childUids: string[];
|
|
842
740
|
}) => void;
|
|
@@ -876,10 +774,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
876
774
|
} | undefined;
|
|
877
775
|
} | undefined;
|
|
878
776
|
};
|
|
879
|
-
|
|
880
|
-
uid: string;
|
|
881
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
882
|
-
}[];
|
|
777
|
+
securitySchemeDict: Record<string, string>;
|
|
883
778
|
selectedServerUid: string;
|
|
884
779
|
childUids: string[];
|
|
885
780
|
};
|
|
@@ -920,14 +815,11 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
920
815
|
} | undefined;
|
|
921
816
|
} | undefined;
|
|
922
817
|
};
|
|
923
|
-
|
|
924
|
-
uid: string;
|
|
925
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
926
|
-
}[];
|
|
818
|
+
securitySchemeDict: Record<string, string>;
|
|
927
819
|
selectedServerUid: string;
|
|
928
820
|
childUids: string[];
|
|
929
821
|
}) => void;
|
|
930
|
-
edit: <P extends "uid" | "spec" | "
|
|
822
|
+
edit: <P extends "uid" | "spec" | "childUids" | `childUids.${number}` | "securitySchemeDict" | "selectedServerUid" | "spec.info" | "spec.tags" | "spec.security" | "spec.externalDocs" | `spec.tags.${number}` | `spec.security.${number}` | `spec.security.${number}.${string}` | "spec.externalDocs.url" | "spec.externalDocs.description" | "spec.openapi" | "spec.serverUids" | "spec.info.summary" | "spec.info.title" | "spec.info.description" | "spec.info.version" | "spec.info.termsOfService" | "spec.info.contact" | "spec.info.license" | "spec.info.contact.name" | "spec.info.contact.email" | "spec.info.contact.url" | "spec.info.license.name" | "spec.info.license.url" | "spec.info.license.identifier" | `spec.tags.${number}.description` | `spec.tags.${number}.name` | `spec.tags.${number}.externalDocs` | `spec.tags.${number}.externalDocs.url` | `spec.tags.${number}.externalDocs.description` | `spec.serverUids.${number}` | `securitySchemeDict.${string}`>(uid: string, path: P, value: P extends "uid" | "spec" | "childUids" | "securitySchemeDict" | "selectedServerUid" ? {
|
|
931
823
|
uid: string;
|
|
932
824
|
spec: {
|
|
933
825
|
openapi: string;
|
|
@@ -963,13 +855,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
963
855
|
} | undefined;
|
|
964
856
|
} | undefined;
|
|
965
857
|
};
|
|
966
|
-
|
|
967
|
-
uid: string;
|
|
968
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
969
|
-
}[];
|
|
858
|
+
securitySchemeDict: Record<string, string>;
|
|
970
859
|
selectedServerUid: string;
|
|
971
860
|
childUids: string[];
|
|
972
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "
|
|
861
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "childUids" | "securitySchemeDict" | "selectedServerUid" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
973
862
|
uid: string;
|
|
974
863
|
spec: {
|
|
975
864
|
openapi: string;
|
|
@@ -1005,10 +894,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1005
894
|
} | undefined;
|
|
1006
895
|
} | undefined;
|
|
1007
896
|
};
|
|
1008
|
-
|
|
1009
|
-
uid: string;
|
|
1010
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1011
|
-
}[];
|
|
897
|
+
securitySchemeDict: Record<string, string>;
|
|
1012
898
|
selectedServerUid: string;
|
|
1013
899
|
childUids: string[];
|
|
1014
900
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
@@ -1047,14 +933,11 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1047
933
|
} | undefined;
|
|
1048
934
|
} | undefined;
|
|
1049
935
|
};
|
|
1050
|
-
|
|
1051
|
-
uid: string;
|
|
1052
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1053
|
-
}[];
|
|
936
|
+
securitySchemeDict: Record<string, string>;
|
|
1054
937
|
selectedServerUid: string;
|
|
1055
938
|
childUids: string[];
|
|
1056
939
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1057
|
-
untrackedEdit: <P extends "uid" | "spec" | "
|
|
940
|
+
untrackedEdit: <P extends "uid" | "spec" | "childUids" | `childUids.${number}` | "securitySchemeDict" | "selectedServerUid" | "spec.info" | "spec.tags" | "spec.security" | "spec.externalDocs" | `spec.tags.${number}` | `spec.security.${number}` | `spec.security.${number}.${string}` | "spec.externalDocs.url" | "spec.externalDocs.description" | "spec.openapi" | "spec.serverUids" | "spec.info.summary" | "spec.info.title" | "spec.info.description" | "spec.info.version" | "spec.info.termsOfService" | "spec.info.contact" | "spec.info.license" | "spec.info.contact.name" | "spec.info.contact.email" | "spec.info.contact.url" | "spec.info.license.name" | "spec.info.license.url" | "spec.info.license.identifier" | `spec.tags.${number}.description` | `spec.tags.${number}.name` | `spec.tags.${number}.externalDocs` | `spec.tags.${number}.externalDocs.url` | `spec.tags.${number}.externalDocs.description` | `spec.serverUids.${number}` | `securitySchemeDict.${string}`>(uid: string, path: P, value: P extends "uid" | "spec" | "childUids" | "securitySchemeDict" | "selectedServerUid" ? {
|
|
1058
941
|
uid: string;
|
|
1059
942
|
spec: {
|
|
1060
943
|
openapi: string;
|
|
@@ -1090,13 +973,10 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1090
973
|
} | undefined;
|
|
1091
974
|
} | undefined;
|
|
1092
975
|
};
|
|
1093
|
-
|
|
1094
|
-
uid: string;
|
|
1095
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1096
|
-
}[];
|
|
976
|
+
securitySchemeDict: Record<string, string>;
|
|
1097
977
|
selectedServerUid: string;
|
|
1098
978
|
childUids: string[];
|
|
1099
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "
|
|
979
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "childUids" | "securitySchemeDict" | "selectedServerUid" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1100
980
|
uid: string;
|
|
1101
981
|
spec: {
|
|
1102
982
|
openapi: string;
|
|
@@ -1132,10 +1012,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1132
1012
|
} | undefined;
|
|
1133
1013
|
} | undefined;
|
|
1134
1014
|
};
|
|
1135
|
-
|
|
1136
|
-
uid: string;
|
|
1137
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1138
|
-
}[];
|
|
1015
|
+
securitySchemeDict: Record<string, string>;
|
|
1139
1016
|
selectedServerUid: string;
|
|
1140
1017
|
childUids: string[];
|
|
1141
1018
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
@@ -1174,10 +1051,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1174
1051
|
} | undefined;
|
|
1175
1052
|
} | undefined;
|
|
1176
1053
|
};
|
|
1177
|
-
|
|
1178
|
-
uid: string;
|
|
1179
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1180
|
-
}[];
|
|
1054
|
+
securitySchemeDict: Record<string, string>;
|
|
1181
1055
|
selectedServerUid: string;
|
|
1182
1056
|
childUids: string[];
|
|
1183
1057
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
@@ -1342,6 +1216,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1342
1216
|
isExternal: boolean;
|
|
1343
1217
|
collectionRef?: string | undefined;
|
|
1344
1218
|
} | null;
|
|
1219
|
+
securitySchemeUids: string[];
|
|
1220
|
+
selectedSecuritySchemeUids: string[];
|
|
1345
1221
|
history: any[];
|
|
1346
1222
|
description?: string | undefined;
|
|
1347
1223
|
summary?: string | undefined;
|
|
@@ -1351,8 +1227,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1351
1227
|
};
|
|
1352
1228
|
delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid: string) => void;
|
|
1353
1229
|
set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
1354
|
-
edit: <P extends "summary" | "ref" | "path" | "uid" | "description" | "
|
|
1355
|
-
untrackedEdit: <P extends "summary" | "ref" | "path" | "uid" | "description" | "
|
|
1230
|
+
edit: <P extends "summary" | "ref" | "path" | "uid" | "description" | "method" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "tags" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "history" | "security" | "operationId" | "requestBody" | "externalDocs" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `tags.${number}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `history.${number}` | `history.${number}.${string}` | `security.${number}` | `security.${number}.${string}` | `requestBody.${string}` | "externalDocs.url" | "externalDocs.description">(uid: string, path: P, value: P extends "summary" | "ref" | "path" | "uid" | "description" | "method" | "parameters" | "tags" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "history" | "security" | "operationId" | "requestBody" | "externalDocs" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "summary" | "ref" | "path" | "uid" | "description" | "method" | "parameters" | "tags" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "history" | "security" | "operationId" | "requestBody" | "externalDocs" ? 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;
|
|
1231
|
+
untrackedEdit: <P extends "summary" | "ref" | "path" | "uid" | "description" | "method" | "parameters" | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | "tags" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "history" | "security" | "operationId" | "requestBody" | "externalDocs" | "ref.path" | "ref.isExternal" | "ref.collectionRef" | `parameters.cookies.${string}` | `parameters.path.${string}` | `parameters.query.${string}` | `parameters.headers.${string}` | `tags.${number}` | `childUids.${number}` | `securitySchemeUids.${number}` | `selectedSecuritySchemeUids.${number}` | `history.${number}` | `history.${number}.${string}` | `security.${number}` | `security.${number}.${string}` | `requestBody.${string}` | "externalDocs.url" | "externalDocs.description">(uid: string, path: P, value: P extends "summary" | "ref" | "path" | "uid" | "description" | "method" | "parameters" | "tags" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "history" | "security" | "operationId" | "requestBody" | "externalDocs" ? import("@scalar/oas-utils/entities/workspace/spec").Request[P] : P extends `${infer K}.${infer R}` ? K extends "summary" | "ref" | "path" | "uid" | "description" | "method" | "parameters" | "tags" | "childUids" | "securitySchemeUids" | "selectedSecuritySchemeUids" | "history" | "security" | "operationId" | "requestBody" | "externalDocs" ? 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;
|
|
1356
1232
|
undo: (uid: string) => void;
|
|
1357
1233
|
redo: (uid: string) => void;
|
|
1358
1234
|
};
|
|
@@ -1369,8 +1245,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1369
1245
|
minimum?: number | undefined;
|
|
1370
1246
|
type?: string | undefined;
|
|
1371
1247
|
maximum?: number | undefined;
|
|
1372
|
-
default?: any;
|
|
1373
1248
|
description?: string | undefined;
|
|
1249
|
+
default?: any;
|
|
1374
1250
|
enum?: string[] | undefined;
|
|
1375
1251
|
required?: boolean | undefined;
|
|
1376
1252
|
file?: File | undefined;
|
|
@@ -1385,8 +1261,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1385
1261
|
minimum?: number | undefined;
|
|
1386
1262
|
type?: string | undefined;
|
|
1387
1263
|
maximum?: number | undefined;
|
|
1388
|
-
default?: any;
|
|
1389
1264
|
description?: string | undefined;
|
|
1265
|
+
default?: any;
|
|
1390
1266
|
enum?: string[] | undefined;
|
|
1391
1267
|
required?: boolean | undefined;
|
|
1392
1268
|
file?: File | undefined;
|
|
@@ -1401,8 +1277,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1401
1277
|
minimum?: number | undefined;
|
|
1402
1278
|
type?: string | undefined;
|
|
1403
1279
|
maximum?: number | undefined;
|
|
1404
|
-
default?: any;
|
|
1405
1280
|
description?: string | undefined;
|
|
1281
|
+
default?: any;
|
|
1406
1282
|
enum?: string[] | undefined;
|
|
1407
1283
|
required?: boolean | undefined;
|
|
1408
1284
|
file?: File | undefined;
|
|
@@ -1417,8 +1293,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1417
1293
|
minimum?: number | undefined;
|
|
1418
1294
|
type?: string | undefined;
|
|
1419
1295
|
maximum?: number | undefined;
|
|
1420
|
-
default?: any;
|
|
1421
1296
|
description?: string | undefined;
|
|
1297
|
+
default?: any;
|
|
1422
1298
|
enum?: string[] | undefined;
|
|
1423
1299
|
required?: boolean | undefined;
|
|
1424
1300
|
file?: File | undefined;
|
|
@@ -1441,8 +1317,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1441
1317
|
minimum?: number | undefined;
|
|
1442
1318
|
type?: string | undefined;
|
|
1443
1319
|
maximum?: number | undefined;
|
|
1444
|
-
default?: any;
|
|
1445
1320
|
description?: string | undefined;
|
|
1321
|
+
default?: any;
|
|
1446
1322
|
enum?: string[] | undefined;
|
|
1447
1323
|
required?: boolean | undefined;
|
|
1448
1324
|
file?: File | undefined;
|
|
@@ -1469,8 +1345,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1469
1345
|
minimum?: number | undefined;
|
|
1470
1346
|
type?: string | undefined;
|
|
1471
1347
|
maximum?: number | undefined;
|
|
1472
|
-
default?: any;
|
|
1473
1348
|
description?: string | undefined;
|
|
1349
|
+
default?: any;
|
|
1474
1350
|
enum?: string[] | undefined;
|
|
1475
1351
|
required?: boolean | undefined;
|
|
1476
1352
|
file?: File | undefined;
|
|
@@ -1485,8 +1361,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1485
1361
|
minimum?: number | undefined;
|
|
1486
1362
|
type?: string | undefined;
|
|
1487
1363
|
maximum?: number | undefined;
|
|
1488
|
-
default?: any;
|
|
1489
1364
|
description?: string | undefined;
|
|
1365
|
+
default?: any;
|
|
1490
1366
|
enum?: string[] | undefined;
|
|
1491
1367
|
required?: boolean | undefined;
|
|
1492
1368
|
file?: File | undefined;
|
|
@@ -1501,8 +1377,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1501
1377
|
minimum?: number | undefined;
|
|
1502
1378
|
type?: string | undefined;
|
|
1503
1379
|
maximum?: number | undefined;
|
|
1504
|
-
default?: any;
|
|
1505
1380
|
description?: string | undefined;
|
|
1381
|
+
default?: any;
|
|
1506
1382
|
enum?: string[] | undefined;
|
|
1507
1383
|
required?: boolean | undefined;
|
|
1508
1384
|
file?: File | undefined;
|
|
@@ -1517,8 +1393,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1517
1393
|
minimum?: number | undefined;
|
|
1518
1394
|
type?: string | undefined;
|
|
1519
1395
|
maximum?: number | undefined;
|
|
1520
|
-
default?: any;
|
|
1521
1396
|
description?: string | undefined;
|
|
1397
|
+
default?: any;
|
|
1522
1398
|
enum?: string[] | undefined;
|
|
1523
1399
|
required?: boolean | undefined;
|
|
1524
1400
|
file?: File | undefined;
|
|
@@ -1541,8 +1417,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1541
1417
|
minimum?: number | undefined;
|
|
1542
1418
|
type?: string | undefined;
|
|
1543
1419
|
maximum?: number | undefined;
|
|
1544
|
-
default?: any;
|
|
1545
1420
|
description?: string | undefined;
|
|
1421
|
+
default?: any;
|
|
1546
1422
|
enum?: string[] | undefined;
|
|
1547
1423
|
required?: boolean | undefined;
|
|
1548
1424
|
file?: File | undefined;
|
|
@@ -1570,8 +1446,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1570
1446
|
minimum?: number | undefined;
|
|
1571
1447
|
type?: string | undefined;
|
|
1572
1448
|
maximum?: number | undefined;
|
|
1573
|
-
default?: any;
|
|
1574
1449
|
description?: string | undefined;
|
|
1450
|
+
default?: any;
|
|
1575
1451
|
enum?: string[] | undefined;
|
|
1576
1452
|
required?: boolean | undefined;
|
|
1577
1453
|
file?: File | undefined;
|
|
@@ -1586,8 +1462,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1586
1462
|
minimum?: number | undefined;
|
|
1587
1463
|
type?: string | undefined;
|
|
1588
1464
|
maximum?: number | undefined;
|
|
1589
|
-
default?: any;
|
|
1590
1465
|
description?: string | undefined;
|
|
1466
|
+
default?: any;
|
|
1591
1467
|
enum?: string[] | undefined;
|
|
1592
1468
|
required?: boolean | undefined;
|
|
1593
1469
|
file?: File | undefined;
|
|
@@ -1602,8 +1478,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1602
1478
|
minimum?: number | undefined;
|
|
1603
1479
|
type?: string | undefined;
|
|
1604
1480
|
maximum?: number | undefined;
|
|
1605
|
-
default?: any;
|
|
1606
1481
|
description?: string | undefined;
|
|
1482
|
+
default?: any;
|
|
1607
1483
|
enum?: string[] | undefined;
|
|
1608
1484
|
required?: boolean | undefined;
|
|
1609
1485
|
file?: File | undefined;
|
|
@@ -1618,8 +1494,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1618
1494
|
minimum?: number | undefined;
|
|
1619
1495
|
type?: string | undefined;
|
|
1620
1496
|
maximum?: number | undefined;
|
|
1621
|
-
default?: any;
|
|
1622
1497
|
description?: string | undefined;
|
|
1498
|
+
default?: any;
|
|
1623
1499
|
enum?: string[] | undefined;
|
|
1624
1500
|
required?: boolean | undefined;
|
|
1625
1501
|
file?: File | undefined;
|
|
@@ -1642,8 +1518,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1642
1518
|
minimum?: number | undefined;
|
|
1643
1519
|
type?: string | undefined;
|
|
1644
1520
|
maximum?: number | undefined;
|
|
1645
|
-
default?: any;
|
|
1646
1521
|
description?: string | undefined;
|
|
1522
|
+
default?: any;
|
|
1647
1523
|
enum?: string[] | undefined;
|
|
1648
1524
|
required?: boolean | undefined;
|
|
1649
1525
|
file?: File | undefined;
|
|
@@ -1658,7 +1534,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1658
1534
|
};
|
|
1659
1535
|
auth: Record<string, any>;
|
|
1660
1536
|
}) => void;
|
|
1661
|
-
edit: <P extends "body" | "name" | "url" | "uid" | "parameters" | "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}.
|
|
1537
|
+
edit: <P extends "body" | "name" | "url" | "uid" | "parameters" | "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}.file` | `body.formData.value.${number}.value` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.key` | `body.formData.value.${number}.required` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum.${number}` | `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}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${number}` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum.${number}` | `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.path.${number}` | `parameters.path.${number}.file` | `parameters.path.${number}.value` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.key` | `parameters.path.${number}.required` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.description` | `parameters.path.${number}.enum.${number}` | `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.query.${number}` | `parameters.query.${number}.file` | `parameters.query.${number}.value` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.key` | `parameters.query.${number}.required` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.description` | `parameters.query.${number}.enum.${number}` | `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.headers.${number}` | `parameters.headers.${number}.file` | `parameters.headers.${number}.value` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.key` | `parameters.headers.${number}.required` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum.${number}` | `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}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "name" | "url" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1662
1538
|
uid: string;
|
|
1663
1539
|
name: string;
|
|
1664
1540
|
url: string;
|
|
@@ -1670,8 +1546,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1670
1546
|
minimum?: number | undefined;
|
|
1671
1547
|
type?: string | undefined;
|
|
1672
1548
|
maximum?: number | undefined;
|
|
1673
|
-
default?: any;
|
|
1674
1549
|
description?: string | undefined;
|
|
1550
|
+
default?: any;
|
|
1675
1551
|
enum?: string[] | undefined;
|
|
1676
1552
|
required?: boolean | undefined;
|
|
1677
1553
|
file?: File | undefined;
|
|
@@ -1686,8 +1562,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1686
1562
|
minimum?: number | undefined;
|
|
1687
1563
|
type?: string | undefined;
|
|
1688
1564
|
maximum?: number | undefined;
|
|
1689
|
-
default?: any;
|
|
1690
1565
|
description?: string | undefined;
|
|
1566
|
+
default?: any;
|
|
1691
1567
|
enum?: string[] | undefined;
|
|
1692
1568
|
required?: boolean | undefined;
|
|
1693
1569
|
file?: File | undefined;
|
|
@@ -1702,8 +1578,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1702
1578
|
minimum?: number | undefined;
|
|
1703
1579
|
type?: string | undefined;
|
|
1704
1580
|
maximum?: number | undefined;
|
|
1705
|
-
default?: any;
|
|
1706
1581
|
description?: string | undefined;
|
|
1582
|
+
default?: any;
|
|
1707
1583
|
enum?: string[] | undefined;
|
|
1708
1584
|
required?: boolean | undefined;
|
|
1709
1585
|
file?: File | undefined;
|
|
@@ -1718,8 +1594,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1718
1594
|
minimum?: number | undefined;
|
|
1719
1595
|
type?: string | undefined;
|
|
1720
1596
|
maximum?: number | undefined;
|
|
1721
|
-
default?: any;
|
|
1722
1597
|
description?: string | undefined;
|
|
1598
|
+
default?: any;
|
|
1723
1599
|
enum?: string[] | undefined;
|
|
1724
1600
|
required?: boolean | undefined;
|
|
1725
1601
|
file?: File | undefined;
|
|
@@ -1742,8 +1618,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1742
1618
|
minimum?: number | undefined;
|
|
1743
1619
|
type?: string | undefined;
|
|
1744
1620
|
maximum?: number | undefined;
|
|
1745
|
-
default?: any;
|
|
1746
1621
|
description?: string | undefined;
|
|
1622
|
+
default?: any;
|
|
1747
1623
|
enum?: string[] | undefined;
|
|
1748
1624
|
required?: boolean | undefined;
|
|
1749
1625
|
file?: File | undefined;
|
|
@@ -1769,8 +1645,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1769
1645
|
minimum?: number | undefined;
|
|
1770
1646
|
type?: string | undefined;
|
|
1771
1647
|
maximum?: number | undefined;
|
|
1772
|
-
default?: any;
|
|
1773
1648
|
description?: string | undefined;
|
|
1649
|
+
default?: any;
|
|
1774
1650
|
enum?: string[] | undefined;
|
|
1775
1651
|
required?: boolean | undefined;
|
|
1776
1652
|
file?: File | undefined;
|
|
@@ -1785,8 +1661,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1785
1661
|
minimum?: number | undefined;
|
|
1786
1662
|
type?: string | undefined;
|
|
1787
1663
|
maximum?: number | undefined;
|
|
1788
|
-
default?: any;
|
|
1789
1664
|
description?: string | undefined;
|
|
1665
|
+
default?: any;
|
|
1790
1666
|
enum?: string[] | undefined;
|
|
1791
1667
|
required?: boolean | undefined;
|
|
1792
1668
|
file?: File | undefined;
|
|
@@ -1801,8 +1677,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1801
1677
|
minimum?: number | undefined;
|
|
1802
1678
|
type?: string | undefined;
|
|
1803
1679
|
maximum?: number | undefined;
|
|
1804
|
-
default?: any;
|
|
1805
1680
|
description?: string | undefined;
|
|
1681
|
+
default?: any;
|
|
1806
1682
|
enum?: string[] | undefined;
|
|
1807
1683
|
required?: boolean | undefined;
|
|
1808
1684
|
file?: File | undefined;
|
|
@@ -1817,8 +1693,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1817
1693
|
minimum?: number | undefined;
|
|
1818
1694
|
type?: string | undefined;
|
|
1819
1695
|
maximum?: number | undefined;
|
|
1820
|
-
default?: any;
|
|
1821
1696
|
description?: string | undefined;
|
|
1697
|
+
default?: any;
|
|
1822
1698
|
enum?: string[] | undefined;
|
|
1823
1699
|
required?: boolean | undefined;
|
|
1824
1700
|
file?: File | undefined;
|
|
@@ -1841,8 +1717,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1841
1717
|
minimum?: number | undefined;
|
|
1842
1718
|
type?: string | undefined;
|
|
1843
1719
|
maximum?: number | undefined;
|
|
1844
|
-
default?: any;
|
|
1845
1720
|
description?: string | undefined;
|
|
1721
|
+
default?: any;
|
|
1846
1722
|
enum?: string[] | undefined;
|
|
1847
1723
|
required?: boolean | undefined;
|
|
1848
1724
|
file?: File | undefined;
|
|
@@ -1868,8 +1744,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1868
1744
|
minimum?: number | undefined;
|
|
1869
1745
|
type?: string | undefined;
|
|
1870
1746
|
maximum?: number | undefined;
|
|
1871
|
-
default?: any;
|
|
1872
1747
|
description?: string | undefined;
|
|
1748
|
+
default?: any;
|
|
1873
1749
|
enum?: string[] | undefined;
|
|
1874
1750
|
required?: boolean | undefined;
|
|
1875
1751
|
file?: File | undefined;
|
|
@@ -1884,8 +1760,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1884
1760
|
minimum?: number | undefined;
|
|
1885
1761
|
type?: string | undefined;
|
|
1886
1762
|
maximum?: number | undefined;
|
|
1887
|
-
default?: any;
|
|
1888
1763
|
description?: string | undefined;
|
|
1764
|
+
default?: any;
|
|
1889
1765
|
enum?: string[] | undefined;
|
|
1890
1766
|
required?: boolean | undefined;
|
|
1891
1767
|
file?: File | undefined;
|
|
@@ -1900,8 +1776,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1900
1776
|
minimum?: number | undefined;
|
|
1901
1777
|
type?: string | undefined;
|
|
1902
1778
|
maximum?: number | undefined;
|
|
1903
|
-
default?: any;
|
|
1904
1779
|
description?: string | undefined;
|
|
1780
|
+
default?: any;
|
|
1905
1781
|
enum?: string[] | undefined;
|
|
1906
1782
|
required?: boolean | undefined;
|
|
1907
1783
|
file?: File | undefined;
|
|
@@ -1916,8 +1792,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1916
1792
|
minimum?: number | undefined;
|
|
1917
1793
|
type?: string | undefined;
|
|
1918
1794
|
maximum?: number | undefined;
|
|
1919
|
-
default?: any;
|
|
1920
1795
|
description?: string | undefined;
|
|
1796
|
+
default?: any;
|
|
1921
1797
|
enum?: string[] | undefined;
|
|
1922
1798
|
required?: boolean | undefined;
|
|
1923
1799
|
file?: File | undefined;
|
|
@@ -1940,8 +1816,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1940
1816
|
minimum?: number | undefined;
|
|
1941
1817
|
type?: string | undefined;
|
|
1942
1818
|
maximum?: number | undefined;
|
|
1943
|
-
default?: any;
|
|
1944
1819
|
description?: string | undefined;
|
|
1820
|
+
default?: any;
|
|
1945
1821
|
enum?: string[] | undefined;
|
|
1946
1822
|
required?: boolean | undefined;
|
|
1947
1823
|
file?: File | undefined;
|
|
@@ -1956,7 +1832,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1956
1832
|
};
|
|
1957
1833
|
auth: Record<string, any>;
|
|
1958
1834
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1959
|
-
untrackedEdit: <P extends "body" | "name" | "url" | "uid" | "parameters" | "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}.
|
|
1835
|
+
untrackedEdit: <P extends "body" | "name" | "url" | "uid" | "parameters" | "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}.file` | `body.formData.value.${number}.value` | `body.formData.value.${number}.type` | `body.formData.value.${number}.default` | `body.formData.value.${number}.key` | `body.formData.value.${number}.required` | `body.formData.value.${number}.enum` | `body.formData.value.${number}.nullable` | `body.formData.value.${number}.description` | `body.formData.value.${number}.enum.${number}` | `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}` | "parameters.cookies" | "parameters.path" | "parameters.query" | "parameters.headers" | `parameters.cookies.${number}` | `parameters.cookies.${number}.file` | `parameters.cookies.${number}.value` | `parameters.cookies.${number}.type` | `parameters.cookies.${number}.default` | `parameters.cookies.${number}.key` | `parameters.cookies.${number}.required` | `parameters.cookies.${number}.enum` | `parameters.cookies.${number}.nullable` | `parameters.cookies.${number}.description` | `parameters.cookies.${number}.enum.${number}` | `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.path.${number}` | `parameters.path.${number}.file` | `parameters.path.${number}.value` | `parameters.path.${number}.type` | `parameters.path.${number}.default` | `parameters.path.${number}.key` | `parameters.path.${number}.required` | `parameters.path.${number}.enum` | `parameters.path.${number}.nullable` | `parameters.path.${number}.description` | `parameters.path.${number}.enum.${number}` | `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.query.${number}` | `parameters.query.${number}.file` | `parameters.query.${number}.value` | `parameters.query.${number}.type` | `parameters.query.${number}.default` | `parameters.query.${number}.key` | `parameters.query.${number}.required` | `parameters.query.${number}.enum` | `parameters.query.${number}.nullable` | `parameters.query.${number}.description` | `parameters.query.${number}.enum.${number}` | `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.headers.${number}` | `parameters.headers.${number}.file` | `parameters.headers.${number}.value` | `parameters.headers.${number}.type` | `parameters.headers.${number}.default` | `parameters.headers.${number}.key` | `parameters.headers.${number}.required` | `parameters.headers.${number}.enum` | `parameters.headers.${number}.nullable` | `parameters.headers.${number}.description` | `parameters.headers.${number}.enum.${number}` | `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}` | `auth.${string}`>(uid: string, path: P, value: P extends "body" | "name" | "url" | "uid" | "parameters" | "requestUid" | "auth" ? {
|
|
1960
1836
|
uid: string;
|
|
1961
1837
|
name: string;
|
|
1962
1838
|
url: string;
|
|
@@ -1968,8 +1844,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1968
1844
|
minimum?: number | undefined;
|
|
1969
1845
|
type?: string | undefined;
|
|
1970
1846
|
maximum?: number | undefined;
|
|
1971
|
-
default?: any;
|
|
1972
1847
|
description?: string | undefined;
|
|
1848
|
+
default?: any;
|
|
1973
1849
|
enum?: string[] | undefined;
|
|
1974
1850
|
required?: boolean | undefined;
|
|
1975
1851
|
file?: File | undefined;
|
|
@@ -1984,8 +1860,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
1984
1860
|
minimum?: number | undefined;
|
|
1985
1861
|
type?: string | undefined;
|
|
1986
1862
|
maximum?: number | undefined;
|
|
1987
|
-
default?: any;
|
|
1988
1863
|
description?: string | undefined;
|
|
1864
|
+
default?: any;
|
|
1989
1865
|
enum?: string[] | undefined;
|
|
1990
1866
|
required?: boolean | undefined;
|
|
1991
1867
|
file?: File | undefined;
|
|
@@ -2000,8 +1876,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2000
1876
|
minimum?: number | undefined;
|
|
2001
1877
|
type?: string | undefined;
|
|
2002
1878
|
maximum?: number | undefined;
|
|
2003
|
-
default?: any;
|
|
2004
1879
|
description?: string | undefined;
|
|
1880
|
+
default?: any;
|
|
2005
1881
|
enum?: string[] | undefined;
|
|
2006
1882
|
required?: boolean | undefined;
|
|
2007
1883
|
file?: File | undefined;
|
|
@@ -2016,8 +1892,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2016
1892
|
minimum?: number | undefined;
|
|
2017
1893
|
type?: string | undefined;
|
|
2018
1894
|
maximum?: number | undefined;
|
|
2019
|
-
default?: any;
|
|
2020
1895
|
description?: string | undefined;
|
|
1896
|
+
default?: any;
|
|
2021
1897
|
enum?: string[] | undefined;
|
|
2022
1898
|
required?: boolean | undefined;
|
|
2023
1899
|
file?: File | undefined;
|
|
@@ -2040,8 +1916,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2040
1916
|
minimum?: number | undefined;
|
|
2041
1917
|
type?: string | undefined;
|
|
2042
1918
|
maximum?: number | undefined;
|
|
2043
|
-
default?: any;
|
|
2044
1919
|
description?: string | undefined;
|
|
1920
|
+
default?: any;
|
|
2045
1921
|
enum?: string[] | undefined;
|
|
2046
1922
|
required?: boolean | undefined;
|
|
2047
1923
|
file?: File | undefined;
|
|
@@ -2067,8 +1943,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2067
1943
|
minimum?: number | undefined;
|
|
2068
1944
|
type?: string | undefined;
|
|
2069
1945
|
maximum?: number | undefined;
|
|
2070
|
-
default?: any;
|
|
2071
1946
|
description?: string | undefined;
|
|
1947
|
+
default?: any;
|
|
2072
1948
|
enum?: string[] | undefined;
|
|
2073
1949
|
required?: boolean | undefined;
|
|
2074
1950
|
file?: File | undefined;
|
|
@@ -2083,8 +1959,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2083
1959
|
minimum?: number | undefined;
|
|
2084
1960
|
type?: string | undefined;
|
|
2085
1961
|
maximum?: number | undefined;
|
|
2086
|
-
default?: any;
|
|
2087
1962
|
description?: string | undefined;
|
|
1963
|
+
default?: any;
|
|
2088
1964
|
enum?: string[] | undefined;
|
|
2089
1965
|
required?: boolean | undefined;
|
|
2090
1966
|
file?: File | undefined;
|
|
@@ -2099,8 +1975,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2099
1975
|
minimum?: number | undefined;
|
|
2100
1976
|
type?: string | undefined;
|
|
2101
1977
|
maximum?: number | undefined;
|
|
2102
|
-
default?: any;
|
|
2103
1978
|
description?: string | undefined;
|
|
1979
|
+
default?: any;
|
|
2104
1980
|
enum?: string[] | undefined;
|
|
2105
1981
|
required?: boolean | undefined;
|
|
2106
1982
|
file?: File | undefined;
|
|
@@ -2115,8 +1991,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2115
1991
|
minimum?: number | undefined;
|
|
2116
1992
|
type?: string | undefined;
|
|
2117
1993
|
maximum?: number | undefined;
|
|
2118
|
-
default?: any;
|
|
2119
1994
|
description?: string | undefined;
|
|
1995
|
+
default?: any;
|
|
2120
1996
|
enum?: string[] | undefined;
|
|
2121
1997
|
required?: boolean | undefined;
|
|
2122
1998
|
file?: File | undefined;
|
|
@@ -2139,8 +2015,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2139
2015
|
minimum?: number | undefined;
|
|
2140
2016
|
type?: string | undefined;
|
|
2141
2017
|
maximum?: number | undefined;
|
|
2142
|
-
default?: any;
|
|
2143
2018
|
description?: string | undefined;
|
|
2019
|
+
default?: any;
|
|
2144
2020
|
enum?: string[] | undefined;
|
|
2145
2021
|
required?: boolean | undefined;
|
|
2146
2022
|
file?: File | undefined;
|
|
@@ -2166,8 +2042,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2166
2042
|
minimum?: number | undefined;
|
|
2167
2043
|
type?: string | undefined;
|
|
2168
2044
|
maximum?: number | undefined;
|
|
2169
|
-
default?: any;
|
|
2170
2045
|
description?: string | undefined;
|
|
2046
|
+
default?: any;
|
|
2171
2047
|
enum?: string[] | undefined;
|
|
2172
2048
|
required?: boolean | undefined;
|
|
2173
2049
|
file?: File | undefined;
|
|
@@ -2182,8 +2058,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2182
2058
|
minimum?: number | undefined;
|
|
2183
2059
|
type?: string | undefined;
|
|
2184
2060
|
maximum?: number | undefined;
|
|
2185
|
-
default?: any;
|
|
2186
2061
|
description?: string | undefined;
|
|
2062
|
+
default?: any;
|
|
2187
2063
|
enum?: string[] | undefined;
|
|
2188
2064
|
required?: boolean | undefined;
|
|
2189
2065
|
file?: File | undefined;
|
|
@@ -2198,8 +2074,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2198
2074
|
minimum?: number | undefined;
|
|
2199
2075
|
type?: string | undefined;
|
|
2200
2076
|
maximum?: number | undefined;
|
|
2201
|
-
default?: any;
|
|
2202
2077
|
description?: string | undefined;
|
|
2078
|
+
default?: any;
|
|
2203
2079
|
enum?: string[] | undefined;
|
|
2204
2080
|
required?: boolean | undefined;
|
|
2205
2081
|
file?: File | undefined;
|
|
@@ -2214,8 +2090,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2214
2090
|
minimum?: number | undefined;
|
|
2215
2091
|
type?: string | undefined;
|
|
2216
2092
|
maximum?: number | undefined;
|
|
2217
|
-
default?: any;
|
|
2218
2093
|
description?: string | undefined;
|
|
2094
|
+
default?: any;
|
|
2219
2095
|
enum?: string[] | undefined;
|
|
2220
2096
|
required?: boolean | undefined;
|
|
2221
2097
|
file?: File | undefined;
|
|
@@ -2238,8 +2114,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2238
2114
|
minimum?: number | undefined;
|
|
2239
2115
|
type?: string | undefined;
|
|
2240
2116
|
maximum?: number | undefined;
|
|
2241
|
-
default?: any;
|
|
2242
2117
|
description?: string | undefined;
|
|
2118
|
+
default?: any;
|
|
2243
2119
|
enum?: string[] | undefined;
|
|
2244
2120
|
required?: boolean | undefined;
|
|
2245
2121
|
file?: File | undefined;
|
|
@@ -2259,10 +2135,11 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2259
2135
|
};
|
|
2260
2136
|
requestsHistory: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").RequestEvent[]>;
|
|
2261
2137
|
securitySchemeMutators: {
|
|
2262
|
-
|
|
2138
|
+
rawAdd: (item: {
|
|
2263
2139
|
type: "apiKey";
|
|
2264
2140
|
value: string;
|
|
2265
2141
|
uid: string;
|
|
2142
|
+
nameKey: string;
|
|
2266
2143
|
name: string;
|
|
2267
2144
|
in: "query" | "header" | "cookie";
|
|
2268
2145
|
description?: string | undefined;
|
|
@@ -2270,6 +2147,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2270
2147
|
type: "http";
|
|
2271
2148
|
value: string;
|
|
2272
2149
|
uid: string;
|
|
2150
|
+
nameKey: string;
|
|
2273
2151
|
scheme: "basic" | "bearer";
|
|
2274
2152
|
bearerFormat: string;
|
|
2275
2153
|
secondValue: string;
|
|
@@ -2277,56 +2155,60 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2277
2155
|
} | {
|
|
2278
2156
|
type: "oauth2";
|
|
2279
2157
|
uid: string;
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2158
|
+
nameKey: string;
|
|
2159
|
+
flow: {
|
|
2160
|
+
type: "implicit";
|
|
2161
|
+
refreshUrl: string;
|
|
2162
|
+
selectedScopes: string[];
|
|
2163
|
+
token: string;
|
|
2164
|
+
authorizationUrl: string;
|
|
2165
|
+
redirectUri: string;
|
|
2166
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2167
|
+
} | {
|
|
2168
|
+
type: "password";
|
|
2169
|
+
value: string;
|
|
2170
|
+
secondValue: string;
|
|
2171
|
+
refreshUrl: string;
|
|
2172
|
+
selectedScopes: string[];
|
|
2173
|
+
token: string;
|
|
2174
|
+
tokenUrl: string;
|
|
2175
|
+
clientSecret: string;
|
|
2176
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2177
|
+
} | {
|
|
2178
|
+
type: "clientCredentials";
|
|
2179
|
+
refreshUrl: string;
|
|
2180
|
+
selectedScopes: string[];
|
|
2181
|
+
token: string;
|
|
2182
|
+
tokenUrl: string;
|
|
2183
|
+
clientSecret: string;
|
|
2184
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2185
|
+
} | {
|
|
2186
|
+
type: "authorizationCode";
|
|
2187
|
+
refreshUrl: string;
|
|
2188
|
+
selectedScopes: string[];
|
|
2189
|
+
token: string;
|
|
2190
|
+
authorizationUrl: string;
|
|
2191
|
+
redirectUri: string;
|
|
2192
|
+
tokenUrl: string;
|
|
2193
|
+
clientSecret: string;
|
|
2194
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2315
2195
|
};
|
|
2316
2196
|
clientId: string;
|
|
2317
|
-
redirectUri: string;
|
|
2318
2197
|
description?: string | undefined;
|
|
2319
2198
|
} | {
|
|
2320
2199
|
type: "openIdConnect";
|
|
2321
2200
|
uid: string;
|
|
2201
|
+
nameKey: string;
|
|
2322
2202
|
openIdConnectUrl: string;
|
|
2323
2203
|
description?: string | undefined;
|
|
2324
2204
|
}) => void;
|
|
2325
|
-
|
|
2205
|
+
add: (payload: import("@scalar/oas-utils/entities/workspace/security").SecuritySchemePayload, collectionUid: string, request?: import("@scalar/oas-utils/entities/workspace/spec").Request, select?: boolean) => void;
|
|
2206
|
+
delete: (scheme: import("@scalar/oas-utils/entities/workspace/security").SecurityScheme, request: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
2326
2207
|
set: (item: {
|
|
2327
2208
|
type: "apiKey";
|
|
2328
2209
|
value: string;
|
|
2329
2210
|
uid: string;
|
|
2211
|
+
nameKey: string;
|
|
2330
2212
|
name: string;
|
|
2331
2213
|
in: "query" | "header" | "cookie";
|
|
2332
2214
|
description?: string | undefined;
|
|
@@ -2334,6 +2216,7 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2334
2216
|
type: "http";
|
|
2335
2217
|
value: string;
|
|
2336
2218
|
uid: string;
|
|
2219
|
+
nameKey: string;
|
|
2337
2220
|
scheme: "basic" | "bearer";
|
|
2338
2221
|
bearerFormat: string;
|
|
2339
2222
|
secondValue: string;
|
|
@@ -2341,62 +2224,66 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2341
2224
|
} | {
|
|
2342
2225
|
type: "oauth2";
|
|
2343
2226
|
uid: string;
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2227
|
+
nameKey: string;
|
|
2228
|
+
flow: {
|
|
2229
|
+
type: "implicit";
|
|
2230
|
+
refreshUrl: string;
|
|
2231
|
+
selectedScopes: string[];
|
|
2232
|
+
token: string;
|
|
2233
|
+
authorizationUrl: string;
|
|
2234
|
+
redirectUri: string;
|
|
2235
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2236
|
+
} | {
|
|
2237
|
+
type: "password";
|
|
2238
|
+
value: string;
|
|
2239
|
+
secondValue: string;
|
|
2240
|
+
refreshUrl: string;
|
|
2241
|
+
selectedScopes: string[];
|
|
2242
|
+
token: string;
|
|
2243
|
+
tokenUrl: string;
|
|
2244
|
+
clientSecret: string;
|
|
2245
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2246
|
+
} | {
|
|
2247
|
+
type: "clientCredentials";
|
|
2248
|
+
refreshUrl: string;
|
|
2249
|
+
selectedScopes: string[];
|
|
2250
|
+
token: string;
|
|
2251
|
+
tokenUrl: string;
|
|
2252
|
+
clientSecret: string;
|
|
2253
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2254
|
+
} | {
|
|
2255
|
+
type: "authorizationCode";
|
|
2256
|
+
refreshUrl: string;
|
|
2257
|
+
selectedScopes: string[];
|
|
2258
|
+
token: string;
|
|
2259
|
+
authorizationUrl: string;
|
|
2260
|
+
redirectUri: string;
|
|
2261
|
+
tokenUrl: string;
|
|
2262
|
+
clientSecret: string;
|
|
2263
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2379
2264
|
};
|
|
2380
2265
|
clientId: string;
|
|
2381
|
-
redirectUri: string;
|
|
2382
2266
|
description?: string | undefined;
|
|
2383
2267
|
} | {
|
|
2384
2268
|
type: "openIdConnect";
|
|
2385
2269
|
uid: string;
|
|
2270
|
+
nameKey: string;
|
|
2386
2271
|
openIdConnectUrl: string;
|
|
2387
2272
|
description?: string | undefined;
|
|
2388
2273
|
}) => void;
|
|
2389
|
-
edit: <P extends "value" | "name" | "type" | "
|
|
2274
|
+
edit: <P extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" | "scheme" | "bearerFormat" | "secondValue" | "flow" | "clientId" | "flow.value" | "flow.type" | "flow.secondValue" | "flow.refreshUrl" | "flow.selectedScopes" | "flow.token" | "flow.authorizationUrl" | "flow.redirectUri" | "flow.scopes" | `flow.selectedScopes.${number}` | "flow.tokenUrl" | "flow.clientSecret" | "openIdConnectUrl" | `flow.scopes.${string}`>(uid: string, path: P, value: (P extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" ? {
|
|
2390
2275
|
type: "apiKey";
|
|
2391
2276
|
value: string;
|
|
2392
2277
|
uid: string;
|
|
2278
|
+
nameKey: string;
|
|
2393
2279
|
name: string;
|
|
2394
2280
|
in: "query" | "header" | "cookie";
|
|
2395
2281
|
description?: string | undefined;
|
|
2396
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2282
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2397
2283
|
type: "apiKey";
|
|
2398
2284
|
value: string;
|
|
2399
2285
|
uid: string;
|
|
2286
|
+
nameKey: string;
|
|
2400
2287
|
name: string;
|
|
2401
2288
|
in: "query" | "header" | "cookie";
|
|
2402
2289
|
description?: string | undefined;
|
|
@@ -2404,21 +2291,24 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2404
2291
|
type: "apiKey";
|
|
2405
2292
|
value: string;
|
|
2406
2293
|
uid: string;
|
|
2294
|
+
nameKey: string;
|
|
2407
2295
|
name: string;
|
|
2408
2296
|
in: "query" | "header" | "cookie";
|
|
2409
2297
|
description?: string | undefined;
|
|
2410
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2298
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "nameKey" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2411
2299
|
type: "http";
|
|
2412
2300
|
value: string;
|
|
2413
2301
|
uid: string;
|
|
2302
|
+
nameKey: string;
|
|
2414
2303
|
scheme: "basic" | "bearer";
|
|
2415
2304
|
bearerFormat: string;
|
|
2416
2305
|
secondValue: string;
|
|
2417
2306
|
description?: string | undefined;
|
|
2418
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2307
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "uid" | "description" | "nameKey" | "scheme" | "bearerFormat" | "secondValue" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2419
2308
|
type: "http";
|
|
2420
2309
|
value: string;
|
|
2421
2310
|
uid: string;
|
|
2311
|
+
nameKey: string;
|
|
2422
2312
|
scheme: "basic" | "bearer";
|
|
2423
2313
|
bearerFormat: string;
|
|
2424
2314
|
secondValue: string;
|
|
@@ -2427,163 +2317,172 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2427
2317
|
type: "http";
|
|
2428
2318
|
value: string;
|
|
2429
2319
|
uid: string;
|
|
2320
|
+
nameKey: string;
|
|
2430
2321
|
scheme: "basic" | "bearer";
|
|
2431
2322
|
bearerFormat: string;
|
|
2432
2323
|
secondValue: string;
|
|
2433
2324
|
description?: string | undefined;
|
|
2434
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "
|
|
2325
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? {
|
|
2435
2326
|
type: "oauth2";
|
|
2436
2327
|
uid: string;
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2328
|
+
nameKey: string;
|
|
2329
|
+
flow: {
|
|
2330
|
+
type: "implicit";
|
|
2331
|
+
refreshUrl: string;
|
|
2332
|
+
selectedScopes: string[];
|
|
2333
|
+
token: string;
|
|
2334
|
+
authorizationUrl: string;
|
|
2335
|
+
redirectUri: string;
|
|
2336
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2337
|
+
} | {
|
|
2338
|
+
type: "password";
|
|
2339
|
+
value: string;
|
|
2340
|
+
secondValue: string;
|
|
2341
|
+
refreshUrl: string;
|
|
2342
|
+
selectedScopes: string[];
|
|
2343
|
+
token: string;
|
|
2344
|
+
tokenUrl: string;
|
|
2345
|
+
clientSecret: string;
|
|
2346
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2347
|
+
} | {
|
|
2348
|
+
type: "clientCredentials";
|
|
2349
|
+
refreshUrl: string;
|
|
2350
|
+
selectedScopes: string[];
|
|
2351
|
+
token: string;
|
|
2352
|
+
tokenUrl: string;
|
|
2353
|
+
clientSecret: string;
|
|
2354
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2355
|
+
} | {
|
|
2356
|
+
type: "authorizationCode";
|
|
2357
|
+
refreshUrl: string;
|
|
2358
|
+
selectedScopes: string[];
|
|
2359
|
+
token: string;
|
|
2360
|
+
authorizationUrl: string;
|
|
2361
|
+
redirectUri: string;
|
|
2362
|
+
tokenUrl: string;
|
|
2363
|
+
clientSecret: string;
|
|
2364
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2472
2365
|
};
|
|
2473
2366
|
clientId: string;
|
|
2474
|
-
redirectUri: string;
|
|
2475
2367
|
description?: string | undefined;
|
|
2476
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "
|
|
2368
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2477
2369
|
type: "oauth2";
|
|
2478
2370
|
uid: string;
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2371
|
+
nameKey: string;
|
|
2372
|
+
flow: {
|
|
2373
|
+
type: "implicit";
|
|
2374
|
+
refreshUrl: string;
|
|
2375
|
+
selectedScopes: string[];
|
|
2376
|
+
token: string;
|
|
2377
|
+
authorizationUrl: string;
|
|
2378
|
+
redirectUri: string;
|
|
2379
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2380
|
+
} | {
|
|
2381
|
+
type: "password";
|
|
2382
|
+
value: string;
|
|
2383
|
+
secondValue: string;
|
|
2384
|
+
refreshUrl: string;
|
|
2385
|
+
selectedScopes: string[];
|
|
2386
|
+
token: string;
|
|
2387
|
+
tokenUrl: string;
|
|
2388
|
+
clientSecret: string;
|
|
2389
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2390
|
+
} | {
|
|
2391
|
+
type: "clientCredentials";
|
|
2392
|
+
refreshUrl: string;
|
|
2393
|
+
selectedScopes: string[];
|
|
2394
|
+
token: string;
|
|
2395
|
+
tokenUrl: string;
|
|
2396
|
+
clientSecret: string;
|
|
2397
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2398
|
+
} | {
|
|
2399
|
+
type: "authorizationCode";
|
|
2400
|
+
refreshUrl: string;
|
|
2401
|
+
selectedScopes: string[];
|
|
2402
|
+
token: string;
|
|
2403
|
+
authorizationUrl: string;
|
|
2404
|
+
redirectUri: string;
|
|
2405
|
+
tokenUrl: string;
|
|
2406
|
+
clientSecret: string;
|
|
2407
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2514
2408
|
};
|
|
2515
2409
|
clientId: string;
|
|
2516
|
-
redirectUri: string;
|
|
2517
2410
|
description?: string | undefined;
|
|
2518
2411
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2519
2412
|
type: "oauth2";
|
|
2520
2413
|
uid: string;
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2414
|
+
nameKey: string;
|
|
2415
|
+
flow: {
|
|
2416
|
+
type: "implicit";
|
|
2417
|
+
refreshUrl: string;
|
|
2418
|
+
selectedScopes: string[];
|
|
2419
|
+
token: string;
|
|
2420
|
+
authorizationUrl: string;
|
|
2421
|
+
redirectUri: string;
|
|
2422
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2423
|
+
} | {
|
|
2424
|
+
type: "password";
|
|
2425
|
+
value: string;
|
|
2426
|
+
secondValue: string;
|
|
2427
|
+
refreshUrl: string;
|
|
2428
|
+
selectedScopes: string[];
|
|
2429
|
+
token: string;
|
|
2430
|
+
tokenUrl: string;
|
|
2431
|
+
clientSecret: string;
|
|
2432
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2433
|
+
} | {
|
|
2434
|
+
type: "clientCredentials";
|
|
2435
|
+
refreshUrl: string;
|
|
2436
|
+
selectedScopes: string[];
|
|
2437
|
+
token: string;
|
|
2438
|
+
tokenUrl: string;
|
|
2439
|
+
clientSecret: string;
|
|
2440
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2441
|
+
} | {
|
|
2442
|
+
type: "authorizationCode";
|
|
2443
|
+
refreshUrl: string;
|
|
2444
|
+
selectedScopes: string[];
|
|
2445
|
+
token: string;
|
|
2446
|
+
authorizationUrl: string;
|
|
2447
|
+
redirectUri: string;
|
|
2448
|
+
tokenUrl: string;
|
|
2449
|
+
clientSecret: string;
|
|
2450
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2556
2451
|
};
|
|
2557
2452
|
clientId: string;
|
|
2558
|
-
redirectUri: string;
|
|
2559
2453
|
description?: string | undefined;
|
|
2560
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "openIdConnectUrl" ? {
|
|
2454
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? {
|
|
2561
2455
|
type: "openIdConnect";
|
|
2562
2456
|
uid: string;
|
|
2457
|
+
nameKey: string;
|
|
2563
2458
|
openIdConnectUrl: string;
|
|
2564
2459
|
description?: string | undefined;
|
|
2565
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2460
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2566
2461
|
type: "openIdConnect";
|
|
2567
2462
|
uid: string;
|
|
2463
|
+
nameKey: string;
|
|
2568
2464
|
openIdConnectUrl: string;
|
|
2569
2465
|
description?: string | undefined;
|
|
2570
2466
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2571
2467
|
type: "openIdConnect";
|
|
2572
2468
|
uid: string;
|
|
2469
|
+
nameKey: string;
|
|
2573
2470
|
openIdConnectUrl: string;
|
|
2574
2471
|
description?: string | undefined;
|
|
2575
2472
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2576
|
-
untrackedEdit: <P extends "value" | "name" | "type" | "
|
|
2473
|
+
untrackedEdit: <P extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" | "scheme" | "bearerFormat" | "secondValue" | "flow" | "clientId" | "flow.value" | "flow.type" | "flow.secondValue" | "flow.refreshUrl" | "flow.selectedScopes" | "flow.token" | "flow.authorizationUrl" | "flow.redirectUri" | "flow.scopes" | `flow.selectedScopes.${number}` | "flow.tokenUrl" | "flow.clientSecret" | "openIdConnectUrl" | `flow.scopes.${string}`>(uid: string, path: P, value: (P extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" ? {
|
|
2577
2474
|
type: "apiKey";
|
|
2578
2475
|
value: string;
|
|
2579
2476
|
uid: string;
|
|
2477
|
+
nameKey: string;
|
|
2580
2478
|
name: string;
|
|
2581
2479
|
in: "query" | "header" | "cookie";
|
|
2582
2480
|
description?: string | undefined;
|
|
2583
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2481
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2584
2482
|
type: "apiKey";
|
|
2585
2483
|
value: string;
|
|
2586
2484
|
uid: string;
|
|
2485
|
+
nameKey: string;
|
|
2587
2486
|
name: string;
|
|
2588
2487
|
in: "query" | "header" | "cookie";
|
|
2589
2488
|
description?: string | undefined;
|
|
@@ -2591,21 +2490,24 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2591
2490
|
type: "apiKey";
|
|
2592
2491
|
value: string;
|
|
2593
2492
|
uid: string;
|
|
2493
|
+
nameKey: string;
|
|
2594
2494
|
name: string;
|
|
2595
2495
|
in: "query" | "header" | "cookie";
|
|
2596
2496
|
description?: string | undefined;
|
|
2597
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2497
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "nameKey" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2598
2498
|
type: "http";
|
|
2599
2499
|
value: string;
|
|
2600
2500
|
uid: string;
|
|
2501
|
+
nameKey: string;
|
|
2601
2502
|
scheme: "basic" | "bearer";
|
|
2602
2503
|
bearerFormat: string;
|
|
2603
2504
|
secondValue: string;
|
|
2604
2505
|
description?: string | undefined;
|
|
2605
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2506
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "uid" | "description" | "nameKey" | "scheme" | "bearerFormat" | "secondValue" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2606
2507
|
type: "http";
|
|
2607
2508
|
value: string;
|
|
2608
2509
|
uid: string;
|
|
2510
|
+
nameKey: string;
|
|
2609
2511
|
scheme: "basic" | "bearer";
|
|
2610
2512
|
bearerFormat: string;
|
|
2611
2513
|
secondValue: string;
|
|
@@ -2614,149 +2516,156 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2614
2516
|
type: "http";
|
|
2615
2517
|
value: string;
|
|
2616
2518
|
uid: string;
|
|
2519
|
+
nameKey: string;
|
|
2617
2520
|
scheme: "basic" | "bearer";
|
|
2618
2521
|
bearerFormat: string;
|
|
2619
2522
|
secondValue: string;
|
|
2620
2523
|
description?: string | undefined;
|
|
2621
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "
|
|
2524
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? {
|
|
2622
2525
|
type: "oauth2";
|
|
2623
2526
|
uid: string;
|
|
2624
|
-
|
|
2625
|
-
|
|
2626
|
-
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2642
|
-
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2527
|
+
nameKey: string;
|
|
2528
|
+
flow: {
|
|
2529
|
+
type: "implicit";
|
|
2530
|
+
refreshUrl: string;
|
|
2531
|
+
selectedScopes: string[];
|
|
2532
|
+
token: string;
|
|
2533
|
+
authorizationUrl: string;
|
|
2534
|
+
redirectUri: string;
|
|
2535
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2536
|
+
} | {
|
|
2537
|
+
type: "password";
|
|
2538
|
+
value: string;
|
|
2539
|
+
secondValue: string;
|
|
2540
|
+
refreshUrl: string;
|
|
2541
|
+
selectedScopes: string[];
|
|
2542
|
+
token: string;
|
|
2543
|
+
tokenUrl: string;
|
|
2544
|
+
clientSecret: string;
|
|
2545
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2546
|
+
} | {
|
|
2547
|
+
type: "clientCredentials";
|
|
2548
|
+
refreshUrl: string;
|
|
2549
|
+
selectedScopes: string[];
|
|
2550
|
+
token: string;
|
|
2551
|
+
tokenUrl: string;
|
|
2552
|
+
clientSecret: string;
|
|
2553
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2554
|
+
} | {
|
|
2555
|
+
type: "authorizationCode";
|
|
2556
|
+
refreshUrl: string;
|
|
2557
|
+
selectedScopes: string[];
|
|
2558
|
+
token: string;
|
|
2559
|
+
authorizationUrl: string;
|
|
2560
|
+
redirectUri: string;
|
|
2561
|
+
tokenUrl: string;
|
|
2562
|
+
clientSecret: string;
|
|
2563
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2659
2564
|
};
|
|
2660
2565
|
clientId: string;
|
|
2661
|
-
redirectUri: string;
|
|
2662
2566
|
description?: string | undefined;
|
|
2663
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "
|
|
2567
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2664
2568
|
type: "oauth2";
|
|
2665
2569
|
uid: string;
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2570
|
+
nameKey: string;
|
|
2571
|
+
flow: {
|
|
2572
|
+
type: "implicit";
|
|
2573
|
+
refreshUrl: string;
|
|
2574
|
+
selectedScopes: string[];
|
|
2575
|
+
token: string;
|
|
2576
|
+
authorizationUrl: string;
|
|
2577
|
+
redirectUri: string;
|
|
2578
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2579
|
+
} | {
|
|
2580
|
+
type: "password";
|
|
2581
|
+
value: string;
|
|
2582
|
+
secondValue: string;
|
|
2583
|
+
refreshUrl: string;
|
|
2584
|
+
selectedScopes: string[];
|
|
2585
|
+
token: string;
|
|
2586
|
+
tokenUrl: string;
|
|
2587
|
+
clientSecret: string;
|
|
2588
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2589
|
+
} | {
|
|
2590
|
+
type: "clientCredentials";
|
|
2591
|
+
refreshUrl: string;
|
|
2592
|
+
selectedScopes: string[];
|
|
2593
|
+
token: string;
|
|
2594
|
+
tokenUrl: string;
|
|
2595
|
+
clientSecret: string;
|
|
2596
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2597
|
+
} | {
|
|
2598
|
+
type: "authorizationCode";
|
|
2599
|
+
refreshUrl: string;
|
|
2600
|
+
selectedScopes: string[];
|
|
2601
|
+
token: string;
|
|
2602
|
+
authorizationUrl: string;
|
|
2603
|
+
redirectUri: string;
|
|
2604
|
+
tokenUrl: string;
|
|
2605
|
+
clientSecret: string;
|
|
2606
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2701
2607
|
};
|
|
2702
2608
|
clientId: string;
|
|
2703
|
-
redirectUri: string;
|
|
2704
2609
|
description?: string | undefined;
|
|
2705
2610
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2706
2611
|
type: "oauth2";
|
|
2707
2612
|
uid: string;
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2613
|
+
nameKey: string;
|
|
2614
|
+
flow: {
|
|
2615
|
+
type: "implicit";
|
|
2616
|
+
refreshUrl: string;
|
|
2617
|
+
selectedScopes: string[];
|
|
2618
|
+
token: string;
|
|
2619
|
+
authorizationUrl: string;
|
|
2620
|
+
redirectUri: string;
|
|
2621
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2622
|
+
} | {
|
|
2623
|
+
type: "password";
|
|
2624
|
+
value: string;
|
|
2625
|
+
secondValue: string;
|
|
2626
|
+
refreshUrl: string;
|
|
2627
|
+
selectedScopes: string[];
|
|
2628
|
+
token: string;
|
|
2629
|
+
tokenUrl: string;
|
|
2630
|
+
clientSecret: string;
|
|
2631
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2632
|
+
} | {
|
|
2633
|
+
type: "clientCredentials";
|
|
2634
|
+
refreshUrl: string;
|
|
2635
|
+
selectedScopes: string[];
|
|
2636
|
+
token: string;
|
|
2637
|
+
tokenUrl: string;
|
|
2638
|
+
clientSecret: string;
|
|
2639
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2640
|
+
} | {
|
|
2641
|
+
type: "authorizationCode";
|
|
2642
|
+
refreshUrl: string;
|
|
2643
|
+
selectedScopes: string[];
|
|
2644
|
+
token: string;
|
|
2645
|
+
authorizationUrl: string;
|
|
2646
|
+
redirectUri: string;
|
|
2647
|
+
tokenUrl: string;
|
|
2648
|
+
clientSecret: string;
|
|
2649
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2743
2650
|
};
|
|
2744
2651
|
clientId: string;
|
|
2745
|
-
redirectUri: string;
|
|
2746
2652
|
description?: string | undefined;
|
|
2747
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "openIdConnectUrl" ? {
|
|
2653
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? {
|
|
2748
2654
|
type: "openIdConnect";
|
|
2749
2655
|
uid: string;
|
|
2656
|
+
nameKey: string;
|
|
2750
2657
|
openIdConnectUrl: string;
|
|
2751
2658
|
description?: string | undefined;
|
|
2752
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2659
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2753
2660
|
type: "openIdConnect";
|
|
2754
2661
|
uid: string;
|
|
2662
|
+
nameKey: string;
|
|
2755
2663
|
openIdConnectUrl: string;
|
|
2756
2664
|
description?: string | undefined;
|
|
2757
2665
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2758
2666
|
type: "openIdConnect";
|
|
2759
2667
|
uid: string;
|
|
2668
|
+
nameKey: string;
|
|
2760
2669
|
openIdConnectUrl: string;
|
|
2761
2670
|
description?: string | undefined;
|
|
2762
2671
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
@@ -2769,8 +2678,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2769
2678
|
url: string;
|
|
2770
2679
|
description?: string | undefined;
|
|
2771
2680
|
variables?: Record<string, {
|
|
2772
|
-
default: string;
|
|
2773
2681
|
uid: string;
|
|
2682
|
+
default: string;
|
|
2774
2683
|
value?: string | undefined;
|
|
2775
2684
|
description?: string | undefined;
|
|
2776
2685
|
enum?: string[] | undefined;
|
|
@@ -2783,8 +2692,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2783
2692
|
url: string;
|
|
2784
2693
|
description?: string | undefined;
|
|
2785
2694
|
variables?: Record<string, {
|
|
2786
|
-
default: string;
|
|
2787
2695
|
uid: string;
|
|
2696
|
+
default: string;
|
|
2788
2697
|
value?: string | undefined;
|
|
2789
2698
|
description?: string | undefined;
|
|
2790
2699
|
enum?: string[] | undefined;
|
|
@@ -2795,8 +2704,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2795
2704
|
url: string;
|
|
2796
2705
|
description?: string | undefined;
|
|
2797
2706
|
variables?: Record<string, {
|
|
2798
|
-
default: string;
|
|
2799
2707
|
uid: string;
|
|
2708
|
+
default: string;
|
|
2800
2709
|
value?: string | undefined;
|
|
2801
2710
|
description?: string | undefined;
|
|
2802
2711
|
enum?: string[] | undefined;
|
|
@@ -2806,8 +2715,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2806
2715
|
url: string;
|
|
2807
2716
|
description?: string | undefined;
|
|
2808
2717
|
variables?: Record<string, {
|
|
2809
|
-
default: string;
|
|
2810
2718
|
uid: string;
|
|
2719
|
+
default: string;
|
|
2811
2720
|
value?: string | undefined;
|
|
2812
2721
|
description?: string | undefined;
|
|
2813
2722
|
enum?: string[] | undefined;
|
|
@@ -2817,8 +2726,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2817
2726
|
url: string;
|
|
2818
2727
|
description?: string | undefined;
|
|
2819
2728
|
variables?: Record<string, {
|
|
2820
|
-
default: string;
|
|
2821
2729
|
uid: string;
|
|
2730
|
+
default: string;
|
|
2822
2731
|
value?: string | undefined;
|
|
2823
2732
|
description?: string | undefined;
|
|
2824
2733
|
enum?: string[] | undefined;
|
|
@@ -2829,8 +2738,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2829
2738
|
url: string;
|
|
2830
2739
|
description?: string | undefined;
|
|
2831
2740
|
variables?: Record<string, {
|
|
2832
|
-
default: string;
|
|
2833
2741
|
uid: string;
|
|
2742
|
+
default: string;
|
|
2834
2743
|
value?: string | undefined;
|
|
2835
2744
|
description?: string | undefined;
|
|
2836
2745
|
enum?: string[] | undefined;
|
|
@@ -2840,8 +2749,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2840
2749
|
url: string;
|
|
2841
2750
|
description?: string | undefined;
|
|
2842
2751
|
variables?: Record<string, {
|
|
2843
|
-
default: string;
|
|
2844
2752
|
uid: string;
|
|
2753
|
+
default: string;
|
|
2845
2754
|
value?: string | undefined;
|
|
2846
2755
|
description?: string | undefined;
|
|
2847
2756
|
enum?: string[] | undefined;
|
|
@@ -2851,8 +2760,8 @@ export declare const createApiClientApp: (el: HTMLElement | null, configuration?
|
|
|
2851
2760
|
url: string;
|
|
2852
2761
|
description?: string | undefined;
|
|
2853
2762
|
variables?: Record<string, {
|
|
2854
|
-
default: string;
|
|
2855
2763
|
uid: string;
|
|
2764
|
+
default: string;
|
|
2856
2765
|
value?: string | undefined;
|
|
2857
2766
|
description?: string | undefined;
|
|
2858
2767
|
enum?: string[] | undefined;
|