@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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { AuthenticationState, SpecConfiguration } from '@scalar/oas-utils';
|
|
2
|
+
import type { SecurityScheme } from '@scalar/oas-utils/entities/workspace/security';
|
|
2
3
|
import { type RequestMethod } from '@scalar/oas-utils/helpers';
|
|
3
4
|
import type { ThemeId } from '@scalar/themes';
|
|
4
5
|
import type { LiteralUnion } from 'type-fest';
|
|
@@ -123,10 +124,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
123
124
|
} | undefined;
|
|
124
125
|
} | undefined;
|
|
125
126
|
};
|
|
126
|
-
|
|
127
|
-
uid: string;
|
|
128
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
129
|
-
}[];
|
|
127
|
+
securitySchemeDict: Record<string, string>;
|
|
130
128
|
selectedServerUid: string;
|
|
131
129
|
childUids: string[];
|
|
132
130
|
}>;
|
|
@@ -172,8 +170,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
172
170
|
minimum?: number | undefined;
|
|
173
171
|
type?: string | undefined;
|
|
174
172
|
maximum?: number | undefined;
|
|
175
|
-
default?: any;
|
|
176
173
|
description?: string | undefined;
|
|
174
|
+
default?: any;
|
|
177
175
|
enum?: string[] | undefined;
|
|
178
176
|
required?: boolean | undefined;
|
|
179
177
|
file?: File | undefined;
|
|
@@ -188,8 +186,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
188
186
|
minimum?: number | undefined;
|
|
189
187
|
type?: string | undefined;
|
|
190
188
|
maximum?: number | undefined;
|
|
191
|
-
default?: any;
|
|
192
189
|
description?: string | undefined;
|
|
190
|
+
default?: any;
|
|
193
191
|
enum?: string[] | undefined;
|
|
194
192
|
required?: boolean | undefined;
|
|
195
193
|
file?: File | undefined;
|
|
@@ -204,8 +202,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
204
202
|
minimum?: number | undefined;
|
|
205
203
|
type?: string | undefined;
|
|
206
204
|
maximum?: number | undefined;
|
|
207
|
-
default?: any;
|
|
208
205
|
description?: string | undefined;
|
|
206
|
+
default?: any;
|
|
209
207
|
enum?: string[] | undefined;
|
|
210
208
|
required?: boolean | undefined;
|
|
211
209
|
file?: File | undefined;
|
|
@@ -220,8 +218,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
220
218
|
minimum?: number | undefined;
|
|
221
219
|
type?: string | undefined;
|
|
222
220
|
maximum?: number | undefined;
|
|
223
|
-
default?: any;
|
|
224
221
|
description?: string | undefined;
|
|
222
|
+
default?: any;
|
|
225
223
|
enum?: string[] | undefined;
|
|
226
224
|
required?: boolean | undefined;
|
|
227
225
|
file?: File | undefined;
|
|
@@ -244,8 +242,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
244
242
|
minimum?: number | undefined;
|
|
245
243
|
type?: string | undefined;
|
|
246
244
|
maximum?: number | undefined;
|
|
247
|
-
default?: any;
|
|
248
245
|
description?: string | undefined;
|
|
246
|
+
default?: any;
|
|
249
247
|
enum?: string[] | undefined;
|
|
250
248
|
required?: boolean | undefined;
|
|
251
249
|
file?: File | undefined;
|
|
@@ -266,8 +264,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
266
264
|
url: string;
|
|
267
265
|
description?: string | undefined;
|
|
268
266
|
variables?: Record<string, {
|
|
269
|
-
default: string;
|
|
270
267
|
uid: string;
|
|
268
|
+
default: string;
|
|
271
269
|
value?: string | undefined;
|
|
272
270
|
description?: string | undefined;
|
|
273
271
|
enum?: string[] | undefined;
|
|
@@ -277,6 +275,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
277
275
|
type: "apiKey";
|
|
278
276
|
value: string;
|
|
279
277
|
uid: string;
|
|
278
|
+
nameKey: string;
|
|
280
279
|
name: string;
|
|
281
280
|
in: "query" | "header" | "cookie";
|
|
282
281
|
description?: string | undefined;
|
|
@@ -284,6 +283,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
284
283
|
type: "http";
|
|
285
284
|
value: string;
|
|
286
285
|
uid: string;
|
|
286
|
+
nameKey: string;
|
|
287
287
|
scheme: "basic" | "bearer";
|
|
288
288
|
bearerFormat: string;
|
|
289
289
|
secondValue: string;
|
|
@@ -291,48 +291,50 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
291
291
|
} | {
|
|
292
292
|
type: "oauth2";
|
|
293
293
|
uid: string;
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
294
|
+
nameKey: string;
|
|
295
|
+
flow: {
|
|
296
|
+
type: "implicit";
|
|
297
|
+
refreshUrl: string;
|
|
298
|
+
selectedScopes: string[];
|
|
299
|
+
token: string;
|
|
300
|
+
authorizationUrl: string;
|
|
301
|
+
redirectUri: string;
|
|
302
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
303
|
+
} | {
|
|
304
|
+
type: "password";
|
|
305
|
+
value: string;
|
|
306
|
+
secondValue: string;
|
|
307
|
+
refreshUrl: string;
|
|
308
|
+
selectedScopes: string[];
|
|
309
|
+
token: string;
|
|
310
|
+
tokenUrl: string;
|
|
311
|
+
clientSecret: string;
|
|
312
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
313
|
+
} | {
|
|
314
|
+
type: "clientCredentials";
|
|
315
|
+
refreshUrl: string;
|
|
316
|
+
selectedScopes: string[];
|
|
317
|
+
token: string;
|
|
318
|
+
tokenUrl: string;
|
|
319
|
+
clientSecret: string;
|
|
320
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
321
|
+
} | {
|
|
322
|
+
type: "authorizationCode";
|
|
323
|
+
refreshUrl: string;
|
|
324
|
+
selectedScopes: string[];
|
|
325
|
+
token: string;
|
|
326
|
+
authorizationUrl: string;
|
|
327
|
+
redirectUri: string;
|
|
328
|
+
tokenUrl: string;
|
|
329
|
+
clientSecret: string;
|
|
330
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
329
331
|
};
|
|
330
332
|
clientId: string;
|
|
331
|
-
redirectUri: string;
|
|
332
333
|
description?: string | undefined;
|
|
333
334
|
} | {
|
|
334
335
|
type: "openIdConnect";
|
|
335
336
|
uid: string;
|
|
337
|
+
nameKey: string;
|
|
336
338
|
openIdConnectUrl: string;
|
|
337
339
|
description?: string | undefined;
|
|
338
340
|
}>;
|
|
@@ -372,10 +374,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
372
374
|
} | undefined;
|
|
373
375
|
} | undefined;
|
|
374
376
|
};
|
|
375
|
-
|
|
376
|
-
uid: string;
|
|
377
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
378
|
-
}[];
|
|
377
|
+
securitySchemeDict: Record<string, string>;
|
|
379
378
|
selectedServerUid: string;
|
|
380
379
|
childUids: string[];
|
|
381
380
|
} | null>;
|
|
@@ -392,8 +391,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
392
391
|
minimum?: number | undefined;
|
|
393
392
|
type?: string | undefined;
|
|
394
393
|
maximum?: number | undefined;
|
|
395
|
-
default?: any;
|
|
396
394
|
description?: string | undefined;
|
|
395
|
+
default?: any;
|
|
397
396
|
enum?: string[] | undefined;
|
|
398
397
|
required?: boolean | undefined;
|
|
399
398
|
file?: File | undefined;
|
|
@@ -408,8 +407,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
408
407
|
minimum?: number | undefined;
|
|
409
408
|
type?: string | undefined;
|
|
410
409
|
maximum?: number | undefined;
|
|
411
|
-
default?: any;
|
|
412
410
|
description?: string | undefined;
|
|
411
|
+
default?: any;
|
|
413
412
|
enum?: string[] | undefined;
|
|
414
413
|
required?: boolean | undefined;
|
|
415
414
|
file?: File | undefined;
|
|
@@ -424,8 +423,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
424
423
|
minimum?: number | undefined;
|
|
425
424
|
type?: string | undefined;
|
|
426
425
|
maximum?: number | undefined;
|
|
427
|
-
default?: any;
|
|
428
426
|
description?: string | undefined;
|
|
427
|
+
default?: any;
|
|
429
428
|
enum?: string[] | undefined;
|
|
430
429
|
required?: boolean | undefined;
|
|
431
430
|
file?: File | undefined;
|
|
@@ -440,8 +439,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
440
439
|
minimum?: number | undefined;
|
|
441
440
|
type?: string | undefined;
|
|
442
441
|
maximum?: number | undefined;
|
|
443
|
-
default?: any;
|
|
444
442
|
description?: string | undefined;
|
|
443
|
+
default?: any;
|
|
445
444
|
enum?: string[] | undefined;
|
|
446
445
|
required?: boolean | undefined;
|
|
447
446
|
file?: File | undefined;
|
|
@@ -464,8 +463,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
464
463
|
minimum?: number | undefined;
|
|
465
464
|
type?: string | undefined;
|
|
466
465
|
maximum?: number | undefined;
|
|
467
|
-
default?: any;
|
|
468
466
|
description?: string | undefined;
|
|
467
|
+
default?: any;
|
|
469
468
|
enum?: string[] | undefined;
|
|
470
469
|
required?: boolean | undefined;
|
|
471
470
|
file?: File | undefined;
|
|
@@ -492,174 +491,80 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
492
491
|
workspace: string;
|
|
493
492
|
}>;
|
|
494
493
|
activeSecurityRequirements: import("vue").ComputedRef<Record<string, string[]>[]>;
|
|
495
|
-
|
|
494
|
+
activeSecuritySchemes: import("vue").ComputedRef<({
|
|
495
|
+
type: "apiKey";
|
|
496
|
+
value: string;
|
|
497
|
+
uid: string;
|
|
498
|
+
nameKey: string;
|
|
499
|
+
name: string;
|
|
500
|
+
in: "query" | "header" | "cookie";
|
|
501
|
+
description?: string | undefined;
|
|
502
|
+
} | {
|
|
503
|
+
type: "http";
|
|
504
|
+
value: string;
|
|
505
|
+
uid: string;
|
|
506
|
+
nameKey: string;
|
|
507
|
+
scheme: "basic" | "bearer";
|
|
508
|
+
bearerFormat: string;
|
|
509
|
+
secondValue: string;
|
|
510
|
+
description?: string | undefined;
|
|
511
|
+
} | {
|
|
512
|
+
type: "oauth2";
|
|
513
|
+
uid: string;
|
|
514
|
+
nameKey: string;
|
|
496
515
|
flow: {
|
|
497
|
-
|
|
498
|
-
|
|
516
|
+
type: "implicit";
|
|
517
|
+
refreshUrl: string;
|
|
499
518
|
selectedScopes: string[];
|
|
500
519
|
token: string;
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
refreshUrl?: string | undefined;
|
|
520
|
+
authorizationUrl: string;
|
|
521
|
+
redirectUri: string;
|
|
504
522
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
505
523
|
} | {
|
|
506
|
-
|
|
524
|
+
type: "password";
|
|
525
|
+
value: string;
|
|
526
|
+
secondValue: string;
|
|
527
|
+
refreshUrl: string;
|
|
507
528
|
selectedScopes: string[];
|
|
508
529
|
token: string;
|
|
509
|
-
|
|
530
|
+
tokenUrl: string;
|
|
531
|
+
clientSecret: string;
|
|
510
532
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
511
533
|
} | {
|
|
534
|
+
type: "clientCredentials";
|
|
535
|
+
refreshUrl: string;
|
|
512
536
|
selectedScopes: string[];
|
|
513
537
|
token: string;
|
|
514
538
|
tokenUrl: string;
|
|
515
539
|
clientSecret: string;
|
|
516
|
-
refreshUrl?: string | undefined;
|
|
517
540
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
518
541
|
} | {
|
|
519
|
-
|
|
542
|
+
type: "authorizationCode";
|
|
543
|
+
refreshUrl: string;
|
|
520
544
|
selectedScopes: string[];
|
|
521
545
|
token: string;
|
|
546
|
+
authorizationUrl: string;
|
|
547
|
+
redirectUri: string;
|
|
522
548
|
tokenUrl: string;
|
|
523
549
|
clientSecret: string;
|
|
524
|
-
refreshUrl?: string | undefined;
|
|
525
550
|
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
526
|
-
} | undefined;
|
|
527
|
-
scheme: {
|
|
528
|
-
type: "apiKey";
|
|
529
|
-
value: string;
|
|
530
|
-
uid: string;
|
|
531
|
-
name: string;
|
|
532
|
-
in: "query" | "header" | "cookie";
|
|
533
|
-
description?: string | undefined;
|
|
534
|
-
} | {
|
|
535
|
-
type: "http";
|
|
536
|
-
value: string;
|
|
537
|
-
uid: string;
|
|
538
|
-
scheme: "basic" | "bearer";
|
|
539
|
-
bearerFormat: string;
|
|
540
|
-
secondValue: string;
|
|
541
|
-
description?: string | undefined;
|
|
542
|
-
} | {
|
|
543
|
-
type: "oauth2";
|
|
544
|
-
uid: string;
|
|
545
|
-
flows: {
|
|
546
|
-
implicit?: {
|
|
547
|
-
authorizationUrl: string;
|
|
548
|
-
selectedScopes: string[];
|
|
549
|
-
token: string;
|
|
550
|
-
refreshUrl?: string | undefined;
|
|
551
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
552
|
-
} | undefined;
|
|
553
|
-
password?: {
|
|
554
|
-
value: string;
|
|
555
|
-
secondValue: string;
|
|
556
|
-
selectedScopes: string[];
|
|
557
|
-
token: string;
|
|
558
|
-
tokenUrl: string;
|
|
559
|
-
clientSecret: string;
|
|
560
|
-
refreshUrl?: string | undefined;
|
|
561
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
562
|
-
} | undefined;
|
|
563
|
-
clientCredentials?: {
|
|
564
|
-
selectedScopes: string[];
|
|
565
|
-
token: string;
|
|
566
|
-
tokenUrl: string;
|
|
567
|
-
clientSecret: string;
|
|
568
|
-
refreshUrl?: string | undefined;
|
|
569
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
570
|
-
} | undefined;
|
|
571
|
-
authorizationCode?: {
|
|
572
|
-
authorizationUrl: string;
|
|
573
|
-
selectedScopes: string[];
|
|
574
|
-
token: string;
|
|
575
|
-
tokenUrl: string;
|
|
576
|
-
clientSecret: string;
|
|
577
|
-
refreshUrl?: string | undefined;
|
|
578
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
579
|
-
} | undefined;
|
|
580
|
-
};
|
|
581
|
-
clientId: string;
|
|
582
|
-
redirectUri: string;
|
|
583
|
-
description?: string | undefined;
|
|
584
|
-
} | {
|
|
585
|
-
type: "openIdConnect";
|
|
586
|
-
uid: string;
|
|
587
|
-
openIdConnectUrl: string;
|
|
588
|
-
description?: string | undefined;
|
|
589
551
|
};
|
|
552
|
+
clientId: string;
|
|
553
|
+
description?: string | undefined;
|
|
590
554
|
} | {
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
in: "query" | "header" | "cookie";
|
|
598
|
-
description?: string | undefined;
|
|
599
|
-
} | {
|
|
600
|
-
type: "http";
|
|
601
|
-
value: string;
|
|
602
|
-
uid: string;
|
|
603
|
-
scheme: "basic" | "bearer";
|
|
604
|
-
bearerFormat: string;
|
|
605
|
-
secondValue: string;
|
|
606
|
-
description?: string | undefined;
|
|
607
|
-
} | {
|
|
608
|
-
type: "oauth2";
|
|
609
|
-
uid: string;
|
|
610
|
-
flows: {
|
|
611
|
-
implicit?: {
|
|
612
|
-
authorizationUrl: string;
|
|
613
|
-
selectedScopes: string[];
|
|
614
|
-
token: string;
|
|
615
|
-
refreshUrl?: string | undefined;
|
|
616
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
617
|
-
} | undefined;
|
|
618
|
-
password?: {
|
|
619
|
-
value: string;
|
|
620
|
-
secondValue: string;
|
|
621
|
-
selectedScopes: string[];
|
|
622
|
-
token: string;
|
|
623
|
-
tokenUrl: string;
|
|
624
|
-
clientSecret: string;
|
|
625
|
-
refreshUrl?: string | undefined;
|
|
626
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
627
|
-
} | undefined;
|
|
628
|
-
clientCredentials?: {
|
|
629
|
-
selectedScopes: string[];
|
|
630
|
-
token: string;
|
|
631
|
-
tokenUrl: string;
|
|
632
|
-
clientSecret: string;
|
|
633
|
-
refreshUrl?: string | undefined;
|
|
634
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
635
|
-
} | undefined;
|
|
636
|
-
authorizationCode?: {
|
|
637
|
-
authorizationUrl: string;
|
|
638
|
-
selectedScopes: string[];
|
|
639
|
-
token: string;
|
|
640
|
-
tokenUrl: string;
|
|
641
|
-
clientSecret: string;
|
|
642
|
-
refreshUrl?: string | undefined;
|
|
643
|
-
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
644
|
-
} | undefined;
|
|
645
|
-
};
|
|
646
|
-
clientId: string;
|
|
647
|
-
redirectUri: string;
|
|
648
|
-
description?: string | undefined;
|
|
649
|
-
} | {
|
|
650
|
-
type: "openIdConnect";
|
|
651
|
-
uid: string;
|
|
652
|
-
openIdConnectUrl: string;
|
|
653
|
-
description?: string | undefined;
|
|
654
|
-
};
|
|
655
|
-
} | undefined>;
|
|
555
|
+
type: "openIdConnect";
|
|
556
|
+
uid: string;
|
|
557
|
+
nameKey: string;
|
|
558
|
+
openIdConnectUrl: string;
|
|
559
|
+
description?: string | undefined;
|
|
560
|
+
})[]>;
|
|
656
561
|
activeServer: import("vue").ComputedRef<{
|
|
657
562
|
uid: string;
|
|
658
563
|
url: string;
|
|
659
564
|
description?: string | undefined;
|
|
660
565
|
variables?: Record<string, {
|
|
661
|
-
default: string;
|
|
662
566
|
uid: string;
|
|
567
|
+
default: string;
|
|
663
568
|
value?: string | undefined;
|
|
664
569
|
description?: string | undefined;
|
|
665
570
|
enum?: string[] | undefined;
|
|
@@ -712,10 +617,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
712
617
|
} | undefined;
|
|
713
618
|
} | undefined;
|
|
714
619
|
};
|
|
715
|
-
|
|
716
|
-
uid: string;
|
|
717
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
718
|
-
}[];
|
|
620
|
+
securitySchemeDict: Record<string, string>;
|
|
719
621
|
selectedServerUid: string;
|
|
720
622
|
childUids: string[];
|
|
721
623
|
}[]>;
|
|
@@ -724,8 +626,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
724
626
|
url: string;
|
|
725
627
|
description?: string | undefined;
|
|
726
628
|
variables?: Record<string, {
|
|
727
|
-
default: string;
|
|
728
629
|
uid: string;
|
|
630
|
+
default: string;
|
|
729
631
|
value?: string | undefined;
|
|
730
632
|
description?: string | undefined;
|
|
731
633
|
enum?: string[] | undefined;
|
|
@@ -892,10 +794,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
892
794
|
} | undefined;
|
|
893
795
|
} | undefined;
|
|
894
796
|
};
|
|
895
|
-
|
|
896
|
-
uid: string;
|
|
897
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
898
|
-
}[];
|
|
797
|
+
securitySchemeDict: Record<string, string>;
|
|
899
798
|
selectedServerUid: string;
|
|
900
799
|
childUids: string[];
|
|
901
800
|
}) => void;
|
|
@@ -935,10 +834,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
935
834
|
} | undefined;
|
|
936
835
|
} | undefined;
|
|
937
836
|
};
|
|
938
|
-
|
|
939
|
-
uid: string;
|
|
940
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
941
|
-
}[];
|
|
837
|
+
securitySchemeDict: Record<string, string>;
|
|
942
838
|
selectedServerUid: string;
|
|
943
839
|
childUids: string[];
|
|
944
840
|
};
|
|
@@ -979,14 +875,11 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
979
875
|
} | undefined;
|
|
980
876
|
} | undefined;
|
|
981
877
|
};
|
|
982
|
-
|
|
983
|
-
uid: string;
|
|
984
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
985
|
-
}[];
|
|
878
|
+
securitySchemeDict: Record<string, string>;
|
|
986
879
|
selectedServerUid: string;
|
|
987
880
|
childUids: string[];
|
|
988
881
|
}) => void;
|
|
989
|
-
edit: <P extends "uid" | "spec" | "
|
|
882
|
+
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" ? {
|
|
990
883
|
uid: string;
|
|
991
884
|
spec: {
|
|
992
885
|
openapi: string;
|
|
@@ -1022,13 +915,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1022
915
|
} | undefined;
|
|
1023
916
|
} | undefined;
|
|
1024
917
|
};
|
|
1025
|
-
|
|
1026
|
-
uid: string;
|
|
1027
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1028
|
-
}[];
|
|
918
|
+
securitySchemeDict: Record<string, string>;
|
|
1029
919
|
selectedServerUid: string;
|
|
1030
920
|
childUids: string[];
|
|
1031
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "
|
|
921
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "childUids" | "securitySchemeDict" | "selectedServerUid" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1032
922
|
uid: string;
|
|
1033
923
|
spec: {
|
|
1034
924
|
openapi: string;
|
|
@@ -1064,10 +954,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1064
954
|
} | undefined;
|
|
1065
955
|
} | undefined;
|
|
1066
956
|
};
|
|
1067
|
-
|
|
1068
|
-
uid: string;
|
|
1069
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1070
|
-
}[];
|
|
957
|
+
securitySchemeDict: Record<string, string>;
|
|
1071
958
|
selectedServerUid: string;
|
|
1072
959
|
childUids: string[];
|
|
1073
960
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
@@ -1106,14 +993,11 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1106
993
|
} | undefined;
|
|
1107
994
|
} | undefined;
|
|
1108
995
|
};
|
|
1109
|
-
|
|
1110
|
-
uid: string;
|
|
1111
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1112
|
-
}[];
|
|
996
|
+
securitySchemeDict: Record<string, string>;
|
|
1113
997
|
selectedServerUid: string;
|
|
1114
998
|
childUids: string[];
|
|
1115
999
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
1116
|
-
untrackedEdit: <P extends "uid" | "spec" | "
|
|
1000
|
+
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" ? {
|
|
1117
1001
|
uid: string;
|
|
1118
1002
|
spec: {
|
|
1119
1003
|
openapi: string;
|
|
@@ -1149,13 +1033,10 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1149
1033
|
} | undefined;
|
|
1150
1034
|
} | undefined;
|
|
1151
1035
|
};
|
|
1152
|
-
|
|
1153
|
-
uid: string;
|
|
1154
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1155
|
-
}[];
|
|
1036
|
+
securitySchemeDict: Record<string, string>;
|
|
1156
1037
|
selectedServerUid: string;
|
|
1157
1038
|
childUids: string[];
|
|
1158
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "
|
|
1039
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "uid" | "spec" | "childUids" | "securitySchemeDict" | "selectedServerUid" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
1159
1040
|
uid: string;
|
|
1160
1041
|
spec: {
|
|
1161
1042
|
openapi: string;
|
|
@@ -1191,10 +1072,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1191
1072
|
} | undefined;
|
|
1192
1073
|
} | undefined;
|
|
1193
1074
|
};
|
|
1194
|
-
|
|
1195
|
-
uid: string;
|
|
1196
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1197
|
-
}[];
|
|
1075
|
+
securitySchemeDict: Record<string, string>;
|
|
1198
1076
|
selectedServerUid: string;
|
|
1199
1077
|
childUids: string[];
|
|
1200
1078
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
@@ -1233,10 +1111,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1233
1111
|
} | undefined;
|
|
1234
1112
|
} | undefined;
|
|
1235
1113
|
};
|
|
1236
|
-
|
|
1237
|
-
uid: string;
|
|
1238
|
-
flowKey?: "implicit" | "password" | "clientCredentials" | "authorizationCode" | undefined;
|
|
1239
|
-
}[];
|
|
1114
|
+
securitySchemeDict: Record<string, string>;
|
|
1240
1115
|
selectedServerUid: string;
|
|
1241
1116
|
childUids: string[];
|
|
1242
1117
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
@@ -1401,6 +1276,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1401
1276
|
isExternal: boolean;
|
|
1402
1277
|
collectionRef?: string | undefined;
|
|
1403
1278
|
} | null;
|
|
1279
|
+
securitySchemeUids: string[];
|
|
1280
|
+
selectedSecuritySchemeUids: string[];
|
|
1404
1281
|
history: any[];
|
|
1405
1282
|
description?: string | undefined;
|
|
1406
1283
|
summary?: string | undefined;
|
|
@@ -1410,8 +1287,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1410
1287
|
};
|
|
1411
1288
|
delete: (request: import("@scalar/oas-utils/entities/workspace/spec").Request, parentUid: string) => void;
|
|
1412
1289
|
set: (item: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
1413
|
-
edit: <P extends "summary" | "ref" | "path" | "uid" | "description" | "
|
|
1414
|
-
untrackedEdit: <P extends "summary" | "ref" | "path" | "uid" | "description" | "
|
|
1290
|
+
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;
|
|
1291
|
+
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;
|
|
1415
1292
|
undo: (uid: string) => void;
|
|
1416
1293
|
redo: (uid: string) => void;
|
|
1417
1294
|
};
|
|
@@ -1428,8 +1305,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1428
1305
|
minimum?: number | undefined;
|
|
1429
1306
|
type?: string | undefined;
|
|
1430
1307
|
maximum?: number | undefined;
|
|
1431
|
-
default?: any;
|
|
1432
1308
|
description?: string | undefined;
|
|
1309
|
+
default?: any;
|
|
1433
1310
|
enum?: string[] | undefined;
|
|
1434
1311
|
required?: boolean | undefined;
|
|
1435
1312
|
file?: File | undefined;
|
|
@@ -1444,8 +1321,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1444
1321
|
minimum?: number | undefined;
|
|
1445
1322
|
type?: string | undefined;
|
|
1446
1323
|
maximum?: number | undefined;
|
|
1447
|
-
default?: any;
|
|
1448
1324
|
description?: string | undefined;
|
|
1325
|
+
default?: any;
|
|
1449
1326
|
enum?: string[] | undefined;
|
|
1450
1327
|
required?: boolean | undefined;
|
|
1451
1328
|
file?: File | undefined;
|
|
@@ -1460,8 +1337,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1460
1337
|
minimum?: number | undefined;
|
|
1461
1338
|
type?: string | undefined;
|
|
1462
1339
|
maximum?: number | undefined;
|
|
1463
|
-
default?: any;
|
|
1464
1340
|
description?: string | undefined;
|
|
1341
|
+
default?: any;
|
|
1465
1342
|
enum?: string[] | undefined;
|
|
1466
1343
|
required?: boolean | undefined;
|
|
1467
1344
|
file?: File | undefined;
|
|
@@ -1476,8 +1353,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1476
1353
|
minimum?: number | undefined;
|
|
1477
1354
|
type?: string | undefined;
|
|
1478
1355
|
maximum?: number | undefined;
|
|
1479
|
-
default?: any;
|
|
1480
1356
|
description?: string | undefined;
|
|
1357
|
+
default?: any;
|
|
1481
1358
|
enum?: string[] | undefined;
|
|
1482
1359
|
required?: boolean | undefined;
|
|
1483
1360
|
file?: File | undefined;
|
|
@@ -1500,8 +1377,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1500
1377
|
minimum?: number | undefined;
|
|
1501
1378
|
type?: string | undefined;
|
|
1502
1379
|
maximum?: number | undefined;
|
|
1503
|
-
default?: any;
|
|
1504
1380
|
description?: string | undefined;
|
|
1381
|
+
default?: any;
|
|
1505
1382
|
enum?: string[] | undefined;
|
|
1506
1383
|
required?: boolean | undefined;
|
|
1507
1384
|
file?: File | undefined;
|
|
@@ -1528,8 +1405,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1528
1405
|
minimum?: number | undefined;
|
|
1529
1406
|
type?: string | undefined;
|
|
1530
1407
|
maximum?: number | undefined;
|
|
1531
|
-
default?: any;
|
|
1532
1408
|
description?: string | undefined;
|
|
1409
|
+
default?: any;
|
|
1533
1410
|
enum?: string[] | undefined;
|
|
1534
1411
|
required?: boolean | undefined;
|
|
1535
1412
|
file?: File | undefined;
|
|
@@ -1544,8 +1421,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1544
1421
|
minimum?: number | undefined;
|
|
1545
1422
|
type?: string | undefined;
|
|
1546
1423
|
maximum?: number | undefined;
|
|
1547
|
-
default?: any;
|
|
1548
1424
|
description?: string | undefined;
|
|
1425
|
+
default?: any;
|
|
1549
1426
|
enum?: string[] | undefined;
|
|
1550
1427
|
required?: boolean | undefined;
|
|
1551
1428
|
file?: File | undefined;
|
|
@@ -1560,8 +1437,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1560
1437
|
minimum?: number | undefined;
|
|
1561
1438
|
type?: string | undefined;
|
|
1562
1439
|
maximum?: number | undefined;
|
|
1563
|
-
default?: any;
|
|
1564
1440
|
description?: string | undefined;
|
|
1441
|
+
default?: any;
|
|
1565
1442
|
enum?: string[] | undefined;
|
|
1566
1443
|
required?: boolean | undefined;
|
|
1567
1444
|
file?: File | undefined;
|
|
@@ -1576,8 +1453,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1576
1453
|
minimum?: number | undefined;
|
|
1577
1454
|
type?: string | undefined;
|
|
1578
1455
|
maximum?: number | undefined;
|
|
1579
|
-
default?: any;
|
|
1580
1456
|
description?: string | undefined;
|
|
1457
|
+
default?: any;
|
|
1581
1458
|
enum?: string[] | undefined;
|
|
1582
1459
|
required?: boolean | undefined;
|
|
1583
1460
|
file?: File | undefined;
|
|
@@ -1600,8 +1477,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1600
1477
|
minimum?: number | undefined;
|
|
1601
1478
|
type?: string | undefined;
|
|
1602
1479
|
maximum?: number | undefined;
|
|
1603
|
-
default?: any;
|
|
1604
1480
|
description?: string | undefined;
|
|
1481
|
+
default?: any;
|
|
1605
1482
|
enum?: string[] | undefined;
|
|
1606
1483
|
required?: boolean | undefined;
|
|
1607
1484
|
file?: File | undefined;
|
|
@@ -1629,8 +1506,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1629
1506
|
minimum?: number | undefined;
|
|
1630
1507
|
type?: string | undefined;
|
|
1631
1508
|
maximum?: number | undefined;
|
|
1632
|
-
default?: any;
|
|
1633
1509
|
description?: string | undefined;
|
|
1510
|
+
default?: any;
|
|
1634
1511
|
enum?: string[] | undefined;
|
|
1635
1512
|
required?: boolean | undefined;
|
|
1636
1513
|
file?: File | undefined;
|
|
@@ -1645,8 +1522,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1645
1522
|
minimum?: number | undefined;
|
|
1646
1523
|
type?: string | undefined;
|
|
1647
1524
|
maximum?: number | undefined;
|
|
1648
|
-
default?: any;
|
|
1649
1525
|
description?: string | undefined;
|
|
1526
|
+
default?: any;
|
|
1650
1527
|
enum?: string[] | undefined;
|
|
1651
1528
|
required?: boolean | undefined;
|
|
1652
1529
|
file?: File | undefined;
|
|
@@ -1661,8 +1538,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1661
1538
|
minimum?: number | undefined;
|
|
1662
1539
|
type?: string | undefined;
|
|
1663
1540
|
maximum?: number | undefined;
|
|
1664
|
-
default?: any;
|
|
1665
1541
|
description?: string | undefined;
|
|
1542
|
+
default?: any;
|
|
1666
1543
|
enum?: string[] | undefined;
|
|
1667
1544
|
required?: boolean | undefined;
|
|
1668
1545
|
file?: File | undefined;
|
|
@@ -1677,8 +1554,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1677
1554
|
minimum?: number | undefined;
|
|
1678
1555
|
type?: string | undefined;
|
|
1679
1556
|
maximum?: number | undefined;
|
|
1680
|
-
default?: any;
|
|
1681
1557
|
description?: string | undefined;
|
|
1558
|
+
default?: any;
|
|
1682
1559
|
enum?: string[] | undefined;
|
|
1683
1560
|
required?: boolean | undefined;
|
|
1684
1561
|
file?: File | undefined;
|
|
@@ -1701,8 +1578,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1701
1578
|
minimum?: number | undefined;
|
|
1702
1579
|
type?: string | undefined;
|
|
1703
1580
|
maximum?: number | undefined;
|
|
1704
|
-
default?: any;
|
|
1705
1581
|
description?: string | undefined;
|
|
1582
|
+
default?: any;
|
|
1706
1583
|
enum?: string[] | undefined;
|
|
1707
1584
|
required?: boolean | undefined;
|
|
1708
1585
|
file?: File | undefined;
|
|
@@ -1717,7 +1594,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1717
1594
|
};
|
|
1718
1595
|
auth: Record<string, any>;
|
|
1719
1596
|
}) => void;
|
|
1720
|
-
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}.
|
|
1597
|
+
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" ? {
|
|
1721
1598
|
uid: string;
|
|
1722
1599
|
name: string;
|
|
1723
1600
|
url: string;
|
|
@@ -1729,8 +1606,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1729
1606
|
minimum?: number | undefined;
|
|
1730
1607
|
type?: string | undefined;
|
|
1731
1608
|
maximum?: number | undefined;
|
|
1732
|
-
default?: any;
|
|
1733
1609
|
description?: string | undefined;
|
|
1610
|
+
default?: any;
|
|
1734
1611
|
enum?: string[] | undefined;
|
|
1735
1612
|
required?: boolean | undefined;
|
|
1736
1613
|
file?: File | undefined;
|
|
@@ -1745,8 +1622,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1745
1622
|
minimum?: number | undefined;
|
|
1746
1623
|
type?: string | undefined;
|
|
1747
1624
|
maximum?: number | undefined;
|
|
1748
|
-
default?: any;
|
|
1749
1625
|
description?: string | undefined;
|
|
1626
|
+
default?: any;
|
|
1750
1627
|
enum?: string[] | undefined;
|
|
1751
1628
|
required?: boolean | undefined;
|
|
1752
1629
|
file?: File | undefined;
|
|
@@ -1761,8 +1638,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1761
1638
|
minimum?: number | undefined;
|
|
1762
1639
|
type?: string | undefined;
|
|
1763
1640
|
maximum?: number | undefined;
|
|
1764
|
-
default?: any;
|
|
1765
1641
|
description?: string | undefined;
|
|
1642
|
+
default?: any;
|
|
1766
1643
|
enum?: string[] | undefined;
|
|
1767
1644
|
required?: boolean | undefined;
|
|
1768
1645
|
file?: File | undefined;
|
|
@@ -1777,8 +1654,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1777
1654
|
minimum?: number | undefined;
|
|
1778
1655
|
type?: string | undefined;
|
|
1779
1656
|
maximum?: number | undefined;
|
|
1780
|
-
default?: any;
|
|
1781
1657
|
description?: string | undefined;
|
|
1658
|
+
default?: any;
|
|
1782
1659
|
enum?: string[] | undefined;
|
|
1783
1660
|
required?: boolean | undefined;
|
|
1784
1661
|
file?: File | undefined;
|
|
@@ -1801,8 +1678,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1801
1678
|
minimum?: number | undefined;
|
|
1802
1679
|
type?: string | undefined;
|
|
1803
1680
|
maximum?: number | undefined;
|
|
1804
|
-
default?: any;
|
|
1805
1681
|
description?: string | undefined;
|
|
1682
|
+
default?: any;
|
|
1806
1683
|
enum?: string[] | undefined;
|
|
1807
1684
|
required?: boolean | undefined;
|
|
1808
1685
|
file?: File | undefined;
|
|
@@ -1828,8 +1705,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1828
1705
|
minimum?: number | undefined;
|
|
1829
1706
|
type?: string | undefined;
|
|
1830
1707
|
maximum?: number | undefined;
|
|
1831
|
-
default?: any;
|
|
1832
1708
|
description?: string | undefined;
|
|
1709
|
+
default?: any;
|
|
1833
1710
|
enum?: string[] | undefined;
|
|
1834
1711
|
required?: boolean | undefined;
|
|
1835
1712
|
file?: File | undefined;
|
|
@@ -1844,8 +1721,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1844
1721
|
minimum?: number | undefined;
|
|
1845
1722
|
type?: string | undefined;
|
|
1846
1723
|
maximum?: number | undefined;
|
|
1847
|
-
default?: any;
|
|
1848
1724
|
description?: string | undefined;
|
|
1725
|
+
default?: any;
|
|
1849
1726
|
enum?: string[] | undefined;
|
|
1850
1727
|
required?: boolean | undefined;
|
|
1851
1728
|
file?: File | undefined;
|
|
@@ -1860,8 +1737,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1860
1737
|
minimum?: number | undefined;
|
|
1861
1738
|
type?: string | undefined;
|
|
1862
1739
|
maximum?: number | undefined;
|
|
1863
|
-
default?: any;
|
|
1864
1740
|
description?: string | undefined;
|
|
1741
|
+
default?: any;
|
|
1865
1742
|
enum?: string[] | undefined;
|
|
1866
1743
|
required?: boolean | undefined;
|
|
1867
1744
|
file?: File | undefined;
|
|
@@ -1876,8 +1753,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1876
1753
|
minimum?: number | undefined;
|
|
1877
1754
|
type?: string | undefined;
|
|
1878
1755
|
maximum?: number | undefined;
|
|
1879
|
-
default?: any;
|
|
1880
1756
|
description?: string | undefined;
|
|
1757
|
+
default?: any;
|
|
1881
1758
|
enum?: string[] | undefined;
|
|
1882
1759
|
required?: boolean | undefined;
|
|
1883
1760
|
file?: File | undefined;
|
|
@@ -1900,8 +1777,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1900
1777
|
minimum?: number | undefined;
|
|
1901
1778
|
type?: string | undefined;
|
|
1902
1779
|
maximum?: number | undefined;
|
|
1903
|
-
default?: any;
|
|
1904
1780
|
description?: string | undefined;
|
|
1781
|
+
default?: any;
|
|
1905
1782
|
enum?: string[] | undefined;
|
|
1906
1783
|
required?: boolean | undefined;
|
|
1907
1784
|
file?: File | undefined;
|
|
@@ -1927,8 +1804,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1927
1804
|
minimum?: number | undefined;
|
|
1928
1805
|
type?: string | undefined;
|
|
1929
1806
|
maximum?: number | undefined;
|
|
1930
|
-
default?: any;
|
|
1931
1807
|
description?: string | undefined;
|
|
1808
|
+
default?: any;
|
|
1932
1809
|
enum?: string[] | undefined;
|
|
1933
1810
|
required?: boolean | undefined;
|
|
1934
1811
|
file?: File | undefined;
|
|
@@ -1943,8 +1820,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1943
1820
|
minimum?: number | undefined;
|
|
1944
1821
|
type?: string | undefined;
|
|
1945
1822
|
maximum?: number | undefined;
|
|
1946
|
-
default?: any;
|
|
1947
1823
|
description?: string | undefined;
|
|
1824
|
+
default?: any;
|
|
1948
1825
|
enum?: string[] | undefined;
|
|
1949
1826
|
required?: boolean | undefined;
|
|
1950
1827
|
file?: File | undefined;
|
|
@@ -1959,8 +1836,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1959
1836
|
minimum?: number | undefined;
|
|
1960
1837
|
type?: string | undefined;
|
|
1961
1838
|
maximum?: number | undefined;
|
|
1962
|
-
default?: any;
|
|
1963
1839
|
description?: string | undefined;
|
|
1840
|
+
default?: any;
|
|
1964
1841
|
enum?: string[] | undefined;
|
|
1965
1842
|
required?: boolean | undefined;
|
|
1966
1843
|
file?: File | undefined;
|
|
@@ -1975,8 +1852,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1975
1852
|
minimum?: number | undefined;
|
|
1976
1853
|
type?: string | undefined;
|
|
1977
1854
|
maximum?: number | undefined;
|
|
1978
|
-
default?: any;
|
|
1979
1855
|
description?: string | undefined;
|
|
1856
|
+
default?: any;
|
|
1980
1857
|
enum?: string[] | undefined;
|
|
1981
1858
|
required?: boolean | undefined;
|
|
1982
1859
|
file?: File | undefined;
|
|
@@ -1999,8 +1876,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
1999
1876
|
minimum?: number | undefined;
|
|
2000
1877
|
type?: string | undefined;
|
|
2001
1878
|
maximum?: number | undefined;
|
|
2002
|
-
default?: any;
|
|
2003
1879
|
description?: string | undefined;
|
|
1880
|
+
default?: any;
|
|
2004
1881
|
enum?: string[] | undefined;
|
|
2005
1882
|
required?: boolean | undefined;
|
|
2006
1883
|
file?: File | undefined;
|
|
@@ -2015,7 +1892,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2015
1892
|
};
|
|
2016
1893
|
auth: Record<string, any>;
|
|
2017
1894
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) => void;
|
|
2018
|
-
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}.
|
|
1895
|
+
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" ? {
|
|
2019
1896
|
uid: string;
|
|
2020
1897
|
name: string;
|
|
2021
1898
|
url: string;
|
|
@@ -2027,8 +1904,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2027
1904
|
minimum?: number | undefined;
|
|
2028
1905
|
type?: string | undefined;
|
|
2029
1906
|
maximum?: number | undefined;
|
|
2030
|
-
default?: any;
|
|
2031
1907
|
description?: string | undefined;
|
|
1908
|
+
default?: any;
|
|
2032
1909
|
enum?: string[] | undefined;
|
|
2033
1910
|
required?: boolean | undefined;
|
|
2034
1911
|
file?: File | undefined;
|
|
@@ -2043,8 +1920,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2043
1920
|
minimum?: number | undefined;
|
|
2044
1921
|
type?: string | undefined;
|
|
2045
1922
|
maximum?: number | undefined;
|
|
2046
|
-
default?: any;
|
|
2047
1923
|
description?: string | undefined;
|
|
1924
|
+
default?: any;
|
|
2048
1925
|
enum?: string[] | undefined;
|
|
2049
1926
|
required?: boolean | undefined;
|
|
2050
1927
|
file?: File | undefined;
|
|
@@ -2059,8 +1936,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2059
1936
|
minimum?: number | undefined;
|
|
2060
1937
|
type?: string | undefined;
|
|
2061
1938
|
maximum?: number | undefined;
|
|
2062
|
-
default?: any;
|
|
2063
1939
|
description?: string | undefined;
|
|
1940
|
+
default?: any;
|
|
2064
1941
|
enum?: string[] | undefined;
|
|
2065
1942
|
required?: boolean | undefined;
|
|
2066
1943
|
file?: File | undefined;
|
|
@@ -2075,8 +1952,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2075
1952
|
minimum?: number | undefined;
|
|
2076
1953
|
type?: string | undefined;
|
|
2077
1954
|
maximum?: number | undefined;
|
|
2078
|
-
default?: any;
|
|
2079
1955
|
description?: string | undefined;
|
|
1956
|
+
default?: any;
|
|
2080
1957
|
enum?: string[] | undefined;
|
|
2081
1958
|
required?: boolean | undefined;
|
|
2082
1959
|
file?: File | undefined;
|
|
@@ -2099,8 +1976,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2099
1976
|
minimum?: number | undefined;
|
|
2100
1977
|
type?: string | undefined;
|
|
2101
1978
|
maximum?: number | undefined;
|
|
2102
|
-
default?: any;
|
|
2103
1979
|
description?: string | undefined;
|
|
1980
|
+
default?: any;
|
|
2104
1981
|
enum?: string[] | undefined;
|
|
2105
1982
|
required?: boolean | undefined;
|
|
2106
1983
|
file?: File | undefined;
|
|
@@ -2126,8 +2003,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2126
2003
|
minimum?: number | undefined;
|
|
2127
2004
|
type?: string | undefined;
|
|
2128
2005
|
maximum?: number | undefined;
|
|
2129
|
-
default?: any;
|
|
2130
2006
|
description?: string | undefined;
|
|
2007
|
+
default?: any;
|
|
2131
2008
|
enum?: string[] | undefined;
|
|
2132
2009
|
required?: boolean | undefined;
|
|
2133
2010
|
file?: File | undefined;
|
|
@@ -2142,8 +2019,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2142
2019
|
minimum?: number | undefined;
|
|
2143
2020
|
type?: string | undefined;
|
|
2144
2021
|
maximum?: number | undefined;
|
|
2145
|
-
default?: any;
|
|
2146
2022
|
description?: string | undefined;
|
|
2023
|
+
default?: any;
|
|
2147
2024
|
enum?: string[] | undefined;
|
|
2148
2025
|
required?: boolean | undefined;
|
|
2149
2026
|
file?: File | undefined;
|
|
@@ -2158,8 +2035,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2158
2035
|
minimum?: number | undefined;
|
|
2159
2036
|
type?: string | undefined;
|
|
2160
2037
|
maximum?: number | undefined;
|
|
2161
|
-
default?: any;
|
|
2162
2038
|
description?: string | undefined;
|
|
2039
|
+
default?: any;
|
|
2163
2040
|
enum?: string[] | undefined;
|
|
2164
2041
|
required?: boolean | undefined;
|
|
2165
2042
|
file?: File | undefined;
|
|
@@ -2174,8 +2051,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2174
2051
|
minimum?: number | undefined;
|
|
2175
2052
|
type?: string | undefined;
|
|
2176
2053
|
maximum?: number | undefined;
|
|
2177
|
-
default?: any;
|
|
2178
2054
|
description?: string | undefined;
|
|
2055
|
+
default?: any;
|
|
2179
2056
|
enum?: string[] | undefined;
|
|
2180
2057
|
required?: boolean | undefined;
|
|
2181
2058
|
file?: File | undefined;
|
|
@@ -2198,8 +2075,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2198
2075
|
minimum?: number | undefined;
|
|
2199
2076
|
type?: string | undefined;
|
|
2200
2077
|
maximum?: number | undefined;
|
|
2201
|
-
default?: any;
|
|
2202
2078
|
description?: string | undefined;
|
|
2079
|
+
default?: any;
|
|
2203
2080
|
enum?: string[] | undefined;
|
|
2204
2081
|
required?: boolean | undefined;
|
|
2205
2082
|
file?: File | undefined;
|
|
@@ -2225,8 +2102,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2225
2102
|
minimum?: number | undefined;
|
|
2226
2103
|
type?: string | undefined;
|
|
2227
2104
|
maximum?: number | undefined;
|
|
2228
|
-
default?: any;
|
|
2229
2105
|
description?: string | undefined;
|
|
2106
|
+
default?: any;
|
|
2230
2107
|
enum?: string[] | undefined;
|
|
2231
2108
|
required?: boolean | undefined;
|
|
2232
2109
|
file?: File | undefined;
|
|
@@ -2241,8 +2118,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2241
2118
|
minimum?: number | undefined;
|
|
2242
2119
|
type?: string | undefined;
|
|
2243
2120
|
maximum?: number | undefined;
|
|
2244
|
-
default?: any;
|
|
2245
2121
|
description?: string | undefined;
|
|
2122
|
+
default?: any;
|
|
2246
2123
|
enum?: string[] | undefined;
|
|
2247
2124
|
required?: boolean | undefined;
|
|
2248
2125
|
file?: File | undefined;
|
|
@@ -2257,8 +2134,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2257
2134
|
minimum?: number | undefined;
|
|
2258
2135
|
type?: string | undefined;
|
|
2259
2136
|
maximum?: number | undefined;
|
|
2260
|
-
default?: any;
|
|
2261
2137
|
description?: string | undefined;
|
|
2138
|
+
default?: any;
|
|
2262
2139
|
enum?: string[] | undefined;
|
|
2263
2140
|
required?: boolean | undefined;
|
|
2264
2141
|
file?: File | undefined;
|
|
@@ -2273,8 +2150,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2273
2150
|
minimum?: number | undefined;
|
|
2274
2151
|
type?: string | undefined;
|
|
2275
2152
|
maximum?: number | undefined;
|
|
2276
|
-
default?: any;
|
|
2277
2153
|
description?: string | undefined;
|
|
2154
|
+
default?: any;
|
|
2278
2155
|
enum?: string[] | undefined;
|
|
2279
2156
|
required?: boolean | undefined;
|
|
2280
2157
|
file?: File | undefined;
|
|
@@ -2297,8 +2174,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2297
2174
|
minimum?: number | undefined;
|
|
2298
2175
|
type?: string | undefined;
|
|
2299
2176
|
maximum?: number | undefined;
|
|
2300
|
-
default?: any;
|
|
2301
2177
|
description?: string | undefined;
|
|
2178
|
+
default?: any;
|
|
2302
2179
|
enum?: string[] | undefined;
|
|
2303
2180
|
required?: boolean | undefined;
|
|
2304
2181
|
file?: File | undefined;
|
|
@@ -2318,10 +2195,11 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2318
2195
|
};
|
|
2319
2196
|
requestsHistory: import("vue").ComputedRef<import("@scalar/oas-utils/entities/workspace/spec").RequestEvent[]>;
|
|
2320
2197
|
securitySchemeMutators: {
|
|
2321
|
-
|
|
2198
|
+
rawAdd: (item: {
|
|
2322
2199
|
type: "apiKey";
|
|
2323
2200
|
value: string;
|
|
2324
2201
|
uid: string;
|
|
2202
|
+
nameKey: string;
|
|
2325
2203
|
name: string;
|
|
2326
2204
|
in: "query" | "header" | "cookie";
|
|
2327
2205
|
description?: string | undefined;
|
|
@@ -2329,6 +2207,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2329
2207
|
type: "http";
|
|
2330
2208
|
value: string;
|
|
2331
2209
|
uid: string;
|
|
2210
|
+
nameKey: string;
|
|
2332
2211
|
scheme: "basic" | "bearer";
|
|
2333
2212
|
bearerFormat: string;
|
|
2334
2213
|
secondValue: string;
|
|
@@ -2336,56 +2215,60 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2336
2215
|
} | {
|
|
2337
2216
|
type: "oauth2";
|
|
2338
2217
|
uid: string;
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
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
|
-
|
|
2218
|
+
nameKey: string;
|
|
2219
|
+
flow: {
|
|
2220
|
+
type: "implicit";
|
|
2221
|
+
refreshUrl: string;
|
|
2222
|
+
selectedScopes: string[];
|
|
2223
|
+
token: string;
|
|
2224
|
+
authorizationUrl: string;
|
|
2225
|
+
redirectUri: string;
|
|
2226
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2227
|
+
} | {
|
|
2228
|
+
type: "password";
|
|
2229
|
+
value: string;
|
|
2230
|
+
secondValue: string;
|
|
2231
|
+
refreshUrl: string;
|
|
2232
|
+
selectedScopes: string[];
|
|
2233
|
+
token: string;
|
|
2234
|
+
tokenUrl: string;
|
|
2235
|
+
clientSecret: string;
|
|
2236
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2237
|
+
} | {
|
|
2238
|
+
type: "clientCredentials";
|
|
2239
|
+
refreshUrl: string;
|
|
2240
|
+
selectedScopes: string[];
|
|
2241
|
+
token: string;
|
|
2242
|
+
tokenUrl: string;
|
|
2243
|
+
clientSecret: string;
|
|
2244
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2245
|
+
} | {
|
|
2246
|
+
type: "authorizationCode";
|
|
2247
|
+
refreshUrl: string;
|
|
2248
|
+
selectedScopes: string[];
|
|
2249
|
+
token: string;
|
|
2250
|
+
authorizationUrl: string;
|
|
2251
|
+
redirectUri: string;
|
|
2252
|
+
tokenUrl: string;
|
|
2253
|
+
clientSecret: string;
|
|
2254
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2374
2255
|
};
|
|
2375
2256
|
clientId: string;
|
|
2376
|
-
redirectUri: string;
|
|
2377
2257
|
description?: string | undefined;
|
|
2378
2258
|
} | {
|
|
2379
2259
|
type: "openIdConnect";
|
|
2380
2260
|
uid: string;
|
|
2261
|
+
nameKey: string;
|
|
2381
2262
|
openIdConnectUrl: string;
|
|
2382
2263
|
description?: string | undefined;
|
|
2383
2264
|
}) => void;
|
|
2384
|
-
|
|
2265
|
+
add: (payload: import("@scalar/oas-utils/entities/workspace/security").SecuritySchemePayload, collectionUid: string, request?: import("@scalar/oas-utils/entities/workspace/spec").Request, select?: boolean) => void;
|
|
2266
|
+
delete: (scheme: SecurityScheme, request: import("@scalar/oas-utils/entities/workspace/spec").Request) => void;
|
|
2385
2267
|
set: (item: {
|
|
2386
2268
|
type: "apiKey";
|
|
2387
2269
|
value: string;
|
|
2388
2270
|
uid: string;
|
|
2271
|
+
nameKey: string;
|
|
2389
2272
|
name: string;
|
|
2390
2273
|
in: "query" | "header" | "cookie";
|
|
2391
2274
|
description?: string | undefined;
|
|
@@ -2393,6 +2276,7 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2393
2276
|
type: "http";
|
|
2394
2277
|
value: string;
|
|
2395
2278
|
uid: string;
|
|
2279
|
+
nameKey: string;
|
|
2396
2280
|
scheme: "basic" | "bearer";
|
|
2397
2281
|
bearerFormat: string;
|
|
2398
2282
|
secondValue: string;
|
|
@@ -2400,62 +2284,66 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2400
2284
|
} | {
|
|
2401
2285
|
type: "oauth2";
|
|
2402
2286
|
uid: string;
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2287
|
+
nameKey: string;
|
|
2288
|
+
flow: {
|
|
2289
|
+
type: "implicit";
|
|
2290
|
+
refreshUrl: string;
|
|
2291
|
+
selectedScopes: string[];
|
|
2292
|
+
token: string;
|
|
2293
|
+
authorizationUrl: string;
|
|
2294
|
+
redirectUri: string;
|
|
2295
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2296
|
+
} | {
|
|
2297
|
+
type: "password";
|
|
2298
|
+
value: string;
|
|
2299
|
+
secondValue: string;
|
|
2300
|
+
refreshUrl: string;
|
|
2301
|
+
selectedScopes: string[];
|
|
2302
|
+
token: string;
|
|
2303
|
+
tokenUrl: string;
|
|
2304
|
+
clientSecret: string;
|
|
2305
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2306
|
+
} | {
|
|
2307
|
+
type: "clientCredentials";
|
|
2308
|
+
refreshUrl: string;
|
|
2309
|
+
selectedScopes: string[];
|
|
2310
|
+
token: string;
|
|
2311
|
+
tokenUrl: string;
|
|
2312
|
+
clientSecret: string;
|
|
2313
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2314
|
+
} | {
|
|
2315
|
+
type: "authorizationCode";
|
|
2316
|
+
refreshUrl: string;
|
|
2317
|
+
selectedScopes: string[];
|
|
2318
|
+
token: string;
|
|
2319
|
+
authorizationUrl: string;
|
|
2320
|
+
redirectUri: string;
|
|
2321
|
+
tokenUrl: string;
|
|
2322
|
+
clientSecret: string;
|
|
2323
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2438
2324
|
};
|
|
2439
2325
|
clientId: string;
|
|
2440
|
-
redirectUri: string;
|
|
2441
2326
|
description?: string | undefined;
|
|
2442
2327
|
} | {
|
|
2443
2328
|
type: "openIdConnect";
|
|
2444
2329
|
uid: string;
|
|
2330
|
+
nameKey: string;
|
|
2445
2331
|
openIdConnectUrl: string;
|
|
2446
2332
|
description?: string | undefined;
|
|
2447
2333
|
}) => void;
|
|
2448
|
-
edit: <P extends "value" | "name" | "type" | "
|
|
2334
|
+
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" ? {
|
|
2449
2335
|
type: "apiKey";
|
|
2450
2336
|
value: string;
|
|
2451
2337
|
uid: string;
|
|
2338
|
+
nameKey: string;
|
|
2452
2339
|
name: string;
|
|
2453
2340
|
in: "query" | "header" | "cookie";
|
|
2454
2341
|
description?: string | undefined;
|
|
2455
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2342
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2456
2343
|
type: "apiKey";
|
|
2457
2344
|
value: string;
|
|
2458
2345
|
uid: string;
|
|
2346
|
+
nameKey: string;
|
|
2459
2347
|
name: string;
|
|
2460
2348
|
in: "query" | "header" | "cookie";
|
|
2461
2349
|
description?: string | undefined;
|
|
@@ -2463,21 +2351,24 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2463
2351
|
type: "apiKey";
|
|
2464
2352
|
value: string;
|
|
2465
2353
|
uid: string;
|
|
2354
|
+
nameKey: string;
|
|
2466
2355
|
name: string;
|
|
2467
2356
|
in: "query" | "header" | "cookie";
|
|
2468
2357
|
description?: string | undefined;
|
|
2469
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2358
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "nameKey" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2470
2359
|
type: "http";
|
|
2471
2360
|
value: string;
|
|
2472
2361
|
uid: string;
|
|
2362
|
+
nameKey: string;
|
|
2473
2363
|
scheme: "basic" | "bearer";
|
|
2474
2364
|
bearerFormat: string;
|
|
2475
2365
|
secondValue: string;
|
|
2476
2366
|
description?: string | undefined;
|
|
2477
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2367
|
+
}[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<{
|
|
2478
2368
|
type: "http";
|
|
2479
2369
|
value: string;
|
|
2480
2370
|
uid: string;
|
|
2371
|
+
nameKey: string;
|
|
2481
2372
|
scheme: "basic" | "bearer";
|
|
2482
2373
|
bearerFormat: string;
|
|
2483
2374
|
secondValue: string;
|
|
@@ -2486,163 +2377,172 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2486
2377
|
type: "http";
|
|
2487
2378
|
value: string;
|
|
2488
2379
|
uid: string;
|
|
2380
|
+
nameKey: string;
|
|
2489
2381
|
scheme: "basic" | "bearer";
|
|
2490
2382
|
bearerFormat: string;
|
|
2491
2383
|
secondValue: string;
|
|
2492
2384
|
description?: string | undefined;
|
|
2493
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "
|
|
2385
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? {
|
|
2494
2386
|
type: "oauth2";
|
|
2495
2387
|
uid: string;
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2388
|
+
nameKey: string;
|
|
2389
|
+
flow: {
|
|
2390
|
+
type: "implicit";
|
|
2391
|
+
refreshUrl: string;
|
|
2392
|
+
selectedScopes: string[];
|
|
2393
|
+
token: string;
|
|
2394
|
+
authorizationUrl: string;
|
|
2395
|
+
redirectUri: string;
|
|
2396
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2397
|
+
} | {
|
|
2398
|
+
type: "password";
|
|
2399
|
+
value: string;
|
|
2400
|
+
secondValue: string;
|
|
2401
|
+
refreshUrl: string;
|
|
2402
|
+
selectedScopes: string[];
|
|
2403
|
+
token: string;
|
|
2404
|
+
tokenUrl: string;
|
|
2405
|
+
clientSecret: string;
|
|
2406
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2407
|
+
} | {
|
|
2408
|
+
type: "clientCredentials";
|
|
2409
|
+
refreshUrl: string;
|
|
2410
|
+
selectedScopes: string[];
|
|
2411
|
+
token: string;
|
|
2412
|
+
tokenUrl: string;
|
|
2413
|
+
clientSecret: string;
|
|
2414
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2415
|
+
} | {
|
|
2416
|
+
type: "authorizationCode";
|
|
2417
|
+
refreshUrl: string;
|
|
2418
|
+
selectedScopes: string[];
|
|
2419
|
+
token: string;
|
|
2420
|
+
authorizationUrl: string;
|
|
2421
|
+
redirectUri: string;
|
|
2422
|
+
tokenUrl: string;
|
|
2423
|
+
clientSecret: string;
|
|
2424
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2531
2425
|
};
|
|
2532
2426
|
clientId: string;
|
|
2533
|
-
redirectUri: string;
|
|
2534
2427
|
description?: string | undefined;
|
|
2535
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "
|
|
2428
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2536
2429
|
type: "oauth2";
|
|
2537
2430
|
uid: string;
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
|
|
2547
|
-
|
|
2548
|
-
|
|
2549
|
-
|
|
2550
|
-
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2431
|
+
nameKey: string;
|
|
2432
|
+
flow: {
|
|
2433
|
+
type: "implicit";
|
|
2434
|
+
refreshUrl: string;
|
|
2435
|
+
selectedScopes: string[];
|
|
2436
|
+
token: string;
|
|
2437
|
+
authorizationUrl: string;
|
|
2438
|
+
redirectUri: string;
|
|
2439
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2440
|
+
} | {
|
|
2441
|
+
type: "password";
|
|
2442
|
+
value: string;
|
|
2443
|
+
secondValue: string;
|
|
2444
|
+
refreshUrl: string;
|
|
2445
|
+
selectedScopes: string[];
|
|
2446
|
+
token: string;
|
|
2447
|
+
tokenUrl: string;
|
|
2448
|
+
clientSecret: string;
|
|
2449
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2450
|
+
} | {
|
|
2451
|
+
type: "clientCredentials";
|
|
2452
|
+
refreshUrl: string;
|
|
2453
|
+
selectedScopes: string[];
|
|
2454
|
+
token: string;
|
|
2455
|
+
tokenUrl: string;
|
|
2456
|
+
clientSecret: string;
|
|
2457
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2458
|
+
} | {
|
|
2459
|
+
type: "authorizationCode";
|
|
2460
|
+
refreshUrl: string;
|
|
2461
|
+
selectedScopes: string[];
|
|
2462
|
+
token: string;
|
|
2463
|
+
authorizationUrl: string;
|
|
2464
|
+
redirectUri: string;
|
|
2465
|
+
tokenUrl: string;
|
|
2466
|
+
clientSecret: string;
|
|
2467
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2573
2468
|
};
|
|
2574
2469
|
clientId: string;
|
|
2575
|
-
redirectUri: string;
|
|
2576
2470
|
description?: string | undefined;
|
|
2577
2471
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2578
2472
|
type: "oauth2";
|
|
2579
2473
|
uid: string;
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
|
|
2613
|
-
|
|
2614
|
-
|
|
2474
|
+
nameKey: string;
|
|
2475
|
+
flow: {
|
|
2476
|
+
type: "implicit";
|
|
2477
|
+
refreshUrl: string;
|
|
2478
|
+
selectedScopes: string[];
|
|
2479
|
+
token: string;
|
|
2480
|
+
authorizationUrl: string;
|
|
2481
|
+
redirectUri: string;
|
|
2482
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2483
|
+
} | {
|
|
2484
|
+
type: "password";
|
|
2485
|
+
value: string;
|
|
2486
|
+
secondValue: string;
|
|
2487
|
+
refreshUrl: string;
|
|
2488
|
+
selectedScopes: string[];
|
|
2489
|
+
token: string;
|
|
2490
|
+
tokenUrl: string;
|
|
2491
|
+
clientSecret: string;
|
|
2492
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2493
|
+
} | {
|
|
2494
|
+
type: "clientCredentials";
|
|
2495
|
+
refreshUrl: string;
|
|
2496
|
+
selectedScopes: string[];
|
|
2497
|
+
token: string;
|
|
2498
|
+
tokenUrl: string;
|
|
2499
|
+
clientSecret: string;
|
|
2500
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2501
|
+
} | {
|
|
2502
|
+
type: "authorizationCode";
|
|
2503
|
+
refreshUrl: string;
|
|
2504
|
+
selectedScopes: string[];
|
|
2505
|
+
token: string;
|
|
2506
|
+
authorizationUrl: string;
|
|
2507
|
+
redirectUri: string;
|
|
2508
|
+
tokenUrl: string;
|
|
2509
|
+
clientSecret: string;
|
|
2510
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2615
2511
|
};
|
|
2616
2512
|
clientId: string;
|
|
2617
|
-
redirectUri: string;
|
|
2618
2513
|
description?: string | undefined;
|
|
2619
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "openIdConnectUrl" ? {
|
|
2514
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? {
|
|
2620
2515
|
type: "openIdConnect";
|
|
2621
2516
|
uid: string;
|
|
2517
|
+
nameKey: string;
|
|
2622
2518
|
openIdConnectUrl: string;
|
|
2623
2519
|
description?: string | undefined;
|
|
2624
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2520
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2625
2521
|
type: "openIdConnect";
|
|
2626
2522
|
uid: string;
|
|
2523
|
+
nameKey: string;
|
|
2627
2524
|
openIdConnectUrl: string;
|
|
2628
2525
|
description?: string | undefined;
|
|
2629
2526
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2630
2527
|
type: "openIdConnect";
|
|
2631
2528
|
uid: string;
|
|
2529
|
+
nameKey: string;
|
|
2632
2530
|
openIdConnectUrl: string;
|
|
2633
2531
|
description?: string | undefined;
|
|
2634
2532
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
2635
|
-
untrackedEdit: <P extends "value" | "name" | "type" | "
|
|
2533
|
+
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" ? {
|
|
2636
2534
|
type: "apiKey";
|
|
2637
2535
|
value: string;
|
|
2638
2536
|
uid: string;
|
|
2537
|
+
nameKey: string;
|
|
2639
2538
|
name: string;
|
|
2640
2539
|
in: "query" | "header" | "cookie";
|
|
2641
2540
|
description?: string | undefined;
|
|
2642
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2541
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "name" | "type" | "uid" | "description" | "nameKey" | "in" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2643
2542
|
type: "apiKey";
|
|
2644
2543
|
value: string;
|
|
2645
2544
|
uid: string;
|
|
2545
|
+
nameKey: string;
|
|
2646
2546
|
name: string;
|
|
2647
2547
|
in: "query" | "header" | "cookie";
|
|
2648
2548
|
description?: string | undefined;
|
|
@@ -2650,21 +2550,24 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2650
2550
|
type: "apiKey";
|
|
2651
2551
|
value: string;
|
|
2652
2552
|
uid: string;
|
|
2553
|
+
nameKey: string;
|
|
2653
2554
|
name: string;
|
|
2654
2555
|
in: "query" | "header" | "cookie";
|
|
2655
2556
|
description?: string | undefined;
|
|
2656
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2557
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "value" | "type" | "uid" | "description" | "nameKey" | "scheme" | "bearerFormat" | "secondValue" ? {
|
|
2657
2558
|
type: "http";
|
|
2658
2559
|
value: string;
|
|
2659
2560
|
uid: string;
|
|
2561
|
+
nameKey: string;
|
|
2660
2562
|
scheme: "basic" | "bearer";
|
|
2661
2563
|
bearerFormat: string;
|
|
2662
2564
|
secondValue: string;
|
|
2663
2565
|
description?: string | undefined;
|
|
2664
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "value" | "type" | "uid" | "description" | "scheme" | "bearerFormat" | "secondValue" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2566
|
+
}[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<{
|
|
2665
2567
|
type: "http";
|
|
2666
2568
|
value: string;
|
|
2667
2569
|
uid: string;
|
|
2570
|
+
nameKey: string;
|
|
2668
2571
|
scheme: "basic" | "bearer";
|
|
2669
2572
|
bearerFormat: string;
|
|
2670
2573
|
secondValue: string;
|
|
@@ -2673,149 +2576,156 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2673
2576
|
type: "http";
|
|
2674
2577
|
value: string;
|
|
2675
2578
|
uid: string;
|
|
2579
|
+
nameKey: string;
|
|
2676
2580
|
scheme: "basic" | "bearer";
|
|
2677
2581
|
bearerFormat: string;
|
|
2678
2582
|
secondValue: string;
|
|
2679
2583
|
description?: string | undefined;
|
|
2680
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "
|
|
2584
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? {
|
|
2681
2585
|
type: "oauth2";
|
|
2682
2586
|
uid: string;
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
2703
|
-
|
|
2704
|
-
|
|
2705
|
-
|
|
2706
|
-
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2587
|
+
nameKey: string;
|
|
2588
|
+
flow: {
|
|
2589
|
+
type: "implicit";
|
|
2590
|
+
refreshUrl: string;
|
|
2591
|
+
selectedScopes: string[];
|
|
2592
|
+
token: string;
|
|
2593
|
+
authorizationUrl: string;
|
|
2594
|
+
redirectUri: string;
|
|
2595
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2596
|
+
} | {
|
|
2597
|
+
type: "password";
|
|
2598
|
+
value: string;
|
|
2599
|
+
secondValue: string;
|
|
2600
|
+
refreshUrl: string;
|
|
2601
|
+
selectedScopes: string[];
|
|
2602
|
+
token: string;
|
|
2603
|
+
tokenUrl: string;
|
|
2604
|
+
clientSecret: string;
|
|
2605
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2606
|
+
} | {
|
|
2607
|
+
type: "clientCredentials";
|
|
2608
|
+
refreshUrl: string;
|
|
2609
|
+
selectedScopes: string[];
|
|
2610
|
+
token: string;
|
|
2611
|
+
tokenUrl: string;
|
|
2612
|
+
clientSecret: string;
|
|
2613
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2614
|
+
} | {
|
|
2615
|
+
type: "authorizationCode";
|
|
2616
|
+
refreshUrl: string;
|
|
2617
|
+
selectedScopes: string[];
|
|
2618
|
+
token: string;
|
|
2619
|
+
authorizationUrl: string;
|
|
2620
|
+
redirectUri: string;
|
|
2621
|
+
tokenUrl: string;
|
|
2622
|
+
clientSecret: string;
|
|
2623
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2718
2624
|
};
|
|
2719
2625
|
clientId: string;
|
|
2720
|
-
redirectUri: string;
|
|
2721
2626
|
description?: string | undefined;
|
|
2722
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "
|
|
2627
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "flow" | "clientId" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2723
2628
|
type: "oauth2";
|
|
2724
2629
|
uid: string;
|
|
2725
|
-
|
|
2726
|
-
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
|
|
2734
|
-
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
|
|
2747
|
-
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
|
|
2758
|
-
|
|
2759
|
-
|
|
2630
|
+
nameKey: string;
|
|
2631
|
+
flow: {
|
|
2632
|
+
type: "implicit";
|
|
2633
|
+
refreshUrl: string;
|
|
2634
|
+
selectedScopes: string[];
|
|
2635
|
+
token: string;
|
|
2636
|
+
authorizationUrl: string;
|
|
2637
|
+
redirectUri: string;
|
|
2638
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2639
|
+
} | {
|
|
2640
|
+
type: "password";
|
|
2641
|
+
value: string;
|
|
2642
|
+
secondValue: string;
|
|
2643
|
+
refreshUrl: string;
|
|
2644
|
+
selectedScopes: string[];
|
|
2645
|
+
token: string;
|
|
2646
|
+
tokenUrl: string;
|
|
2647
|
+
clientSecret: string;
|
|
2648
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2649
|
+
} | {
|
|
2650
|
+
type: "clientCredentials";
|
|
2651
|
+
refreshUrl: string;
|
|
2652
|
+
selectedScopes: string[];
|
|
2653
|
+
token: string;
|
|
2654
|
+
tokenUrl: string;
|
|
2655
|
+
clientSecret: string;
|
|
2656
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2657
|
+
} | {
|
|
2658
|
+
type: "authorizationCode";
|
|
2659
|
+
refreshUrl: string;
|
|
2660
|
+
selectedScopes: string[];
|
|
2661
|
+
token: string;
|
|
2662
|
+
authorizationUrl: string;
|
|
2663
|
+
redirectUri: string;
|
|
2664
|
+
tokenUrl: string;
|
|
2665
|
+
clientSecret: string;
|
|
2666
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2760
2667
|
};
|
|
2761
2668
|
clientId: string;
|
|
2762
|
-
redirectUri: string;
|
|
2763
2669
|
description?: string | undefined;
|
|
2764
2670
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2765
2671
|
type: "oauth2";
|
|
2766
2672
|
uid: string;
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2783
|
-
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
|
|
2795
|
-
|
|
2796
|
-
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
|
|
2800
|
-
|
|
2801
|
-
|
|
2673
|
+
nameKey: string;
|
|
2674
|
+
flow: {
|
|
2675
|
+
type: "implicit";
|
|
2676
|
+
refreshUrl: string;
|
|
2677
|
+
selectedScopes: string[];
|
|
2678
|
+
token: string;
|
|
2679
|
+
authorizationUrl: string;
|
|
2680
|
+
redirectUri: string;
|
|
2681
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2682
|
+
} | {
|
|
2683
|
+
type: "password";
|
|
2684
|
+
value: string;
|
|
2685
|
+
secondValue: string;
|
|
2686
|
+
refreshUrl: string;
|
|
2687
|
+
selectedScopes: string[];
|
|
2688
|
+
token: string;
|
|
2689
|
+
tokenUrl: string;
|
|
2690
|
+
clientSecret: string;
|
|
2691
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2692
|
+
} | {
|
|
2693
|
+
type: "clientCredentials";
|
|
2694
|
+
refreshUrl: string;
|
|
2695
|
+
selectedScopes: string[];
|
|
2696
|
+
token: string;
|
|
2697
|
+
tokenUrl: string;
|
|
2698
|
+
clientSecret: string;
|
|
2699
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2700
|
+
} | {
|
|
2701
|
+
type: "authorizationCode";
|
|
2702
|
+
refreshUrl: string;
|
|
2703
|
+
selectedScopes: string[];
|
|
2704
|
+
token: string;
|
|
2705
|
+
authorizationUrl: string;
|
|
2706
|
+
redirectUri: string;
|
|
2707
|
+
tokenUrl: string;
|
|
2708
|
+
clientSecret: string;
|
|
2709
|
+
scopes?: Map<string, string | undefined> | Record<string, string | undefined> | {} | undefined;
|
|
2802
2710
|
};
|
|
2803
2711
|
clientId: string;
|
|
2804
|
-
redirectUri: string;
|
|
2805
2712
|
description?: string | undefined;
|
|
2806
|
-
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "openIdConnectUrl" ? {
|
|
2713
|
+
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never) | (P extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? {
|
|
2807
2714
|
type: "openIdConnect";
|
|
2808
2715
|
uid: string;
|
|
2716
|
+
nameKey: string;
|
|
2809
2717
|
openIdConnectUrl: string;
|
|
2810
2718
|
description?: string | undefined;
|
|
2811
|
-
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2719
|
+
}[P] : P extends `${infer K}.${infer R}` ? K extends "type" | "uid" | "description" | "nameKey" | "openIdConnectUrl" ? R extends import("@scalar/object-utils/nested").Path<{
|
|
2812
2720
|
type: "openIdConnect";
|
|
2813
2721
|
uid: string;
|
|
2722
|
+
nameKey: string;
|
|
2814
2723
|
openIdConnectUrl: string;
|
|
2815
2724
|
description?: string | undefined;
|
|
2816
2725
|
}[K]> ? import("@scalar/object-utils/nested").PathValue<{
|
|
2817
2726
|
type: "openIdConnect";
|
|
2818
2727
|
uid: string;
|
|
2728
|
+
nameKey: string;
|
|
2819
2729
|
openIdConnectUrl: string;
|
|
2820
2730
|
description?: string | undefined;
|
|
2821
2731
|
}[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
|
|
@@ -2828,8 +2738,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2828
2738
|
url: string;
|
|
2829
2739
|
description?: string | undefined;
|
|
2830
2740
|
variables?: Record<string, {
|
|
2831
|
-
default: string;
|
|
2832
2741
|
uid: string;
|
|
2742
|
+
default: string;
|
|
2833
2743
|
value?: string | undefined;
|
|
2834
2744
|
description?: string | undefined;
|
|
2835
2745
|
enum?: string[] | undefined;
|
|
@@ -2842,8 +2752,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2842
2752
|
url: string;
|
|
2843
2753
|
description?: string | undefined;
|
|
2844
2754
|
variables?: Record<string, {
|
|
2845
|
-
default: string;
|
|
2846
2755
|
uid: string;
|
|
2756
|
+
default: string;
|
|
2847
2757
|
value?: string | undefined;
|
|
2848
2758
|
description?: string | undefined;
|
|
2849
2759
|
enum?: string[] | undefined;
|
|
@@ -2854,8 +2764,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2854
2764
|
url: string;
|
|
2855
2765
|
description?: string | undefined;
|
|
2856
2766
|
variables?: Record<string, {
|
|
2857
|
-
default: string;
|
|
2858
2767
|
uid: string;
|
|
2768
|
+
default: string;
|
|
2859
2769
|
value?: string | undefined;
|
|
2860
2770
|
description?: string | undefined;
|
|
2861
2771
|
enum?: string[] | undefined;
|
|
@@ -2865,8 +2775,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2865
2775
|
url: string;
|
|
2866
2776
|
description?: string | undefined;
|
|
2867
2777
|
variables?: Record<string, {
|
|
2868
|
-
default: string;
|
|
2869
2778
|
uid: string;
|
|
2779
|
+
default: string;
|
|
2870
2780
|
value?: string | undefined;
|
|
2871
2781
|
description?: string | undefined;
|
|
2872
2782
|
enum?: string[] | undefined;
|
|
@@ -2876,8 +2786,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2876
2786
|
url: string;
|
|
2877
2787
|
description?: string | undefined;
|
|
2878
2788
|
variables?: Record<string, {
|
|
2879
|
-
default: string;
|
|
2880
2789
|
uid: string;
|
|
2790
|
+
default: string;
|
|
2881
2791
|
value?: string | undefined;
|
|
2882
2792
|
description?: string | undefined;
|
|
2883
2793
|
enum?: string[] | undefined;
|
|
@@ -2888,8 +2798,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2888
2798
|
url: string;
|
|
2889
2799
|
description?: string | undefined;
|
|
2890
2800
|
variables?: Record<string, {
|
|
2891
|
-
default: string;
|
|
2892
2801
|
uid: string;
|
|
2802
|
+
default: string;
|
|
2893
2803
|
value?: string | undefined;
|
|
2894
2804
|
description?: string | undefined;
|
|
2895
2805
|
enum?: string[] | undefined;
|
|
@@ -2899,8 +2809,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2899
2809
|
url: string;
|
|
2900
2810
|
description?: string | undefined;
|
|
2901
2811
|
variables?: Record<string, {
|
|
2902
|
-
default: string;
|
|
2903
2812
|
uid: string;
|
|
2813
|
+
default: string;
|
|
2904
2814
|
value?: string | undefined;
|
|
2905
2815
|
description?: string | undefined;
|
|
2906
2816
|
enum?: string[] | undefined;
|
|
@@ -2910,8 +2820,8 @@ export declare const createApiClient: ({ el, appComponent, configuration, isRead
|
|
|
2910
2820
|
url: string;
|
|
2911
2821
|
description?: string | undefined;
|
|
2912
2822
|
variables?: Record<string, {
|
|
2913
|
-
default: string;
|
|
2914
2823
|
uid: string;
|
|
2824
|
+
default: string;
|
|
2915
2825
|
value?: string | undefined;
|
|
2916
2826
|
description?: string | undefined;
|
|
2917
2827
|
enum?: string[] | undefined;
|