@scalar/api-client 2.5.15 → 2.5.17

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/dist/components/CodeInput/CodeInput.vue.js +2 -2
  3. package/dist/components/CodeInput/CodeInput.vue2.js +1 -1
  4. package/dist/components/Form/Form.vue.js +1 -1
  5. package/dist/components/HttpMethod/HttpMethod.vue.d.ts +2 -2
  6. package/dist/components/Server/ServerVariablesSelect.vue.d.ts.map +1 -1
  7. package/dist/components/Server/ServerVariablesSelect.vue.js +3 -3
  8. package/dist/layouts/App/create-api-client-app.d.ts +42 -2
  9. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  10. package/dist/layouts/Modal/create-api-client-modal.d.ts +84 -4
  11. package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
  12. package/dist/layouts/Web/create-api-client-web.d.ts +42 -2
  13. package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
  14. package/dist/libs/create-client.d.ts +42 -2
  15. package/dist/libs/create-client.d.ts.map +1 -1
  16. package/dist/libs/get-request-uid-by-path-method.d.ts.map +1 -1
  17. package/dist/libs/get-request-uid-by-path-method.js +15 -7
  18. package/dist/store/security-schemes.d.ts +42 -2
  19. package/dist/store/security-schemes.d.ts.map +1 -1
  20. package/dist/store/store.d.ts +42 -2
  21. package/dist/store/store.d.ts.map +1 -1
  22. package/dist/style.css +1 -1
  23. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.d.ts.map +1 -1
  24. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue.js +2 -2
  25. package/dist/views/Request/RequestSection/RequestAuth/RequestAuth.vue2.js +1 -1
  26. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  27. package/dist/views/Request/libs/oauth2.d.ts.map +1 -1
  28. package/dist/views/Request/libs/oauth2.js +39 -39
  29. package/package.json +12 -12
@@ -43,6 +43,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
43
43
  tokenUrl: string;
44
44
  clientSecret: string;
45
45
  "x-scalar-security-query"?: Record<string, string> | undefined;
46
+ "x-tokenName"?: string | undefined;
46
47
  } | undefined;
47
48
  implicit?: {
48
49
  type: "implicit";
@@ -54,6 +55,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
54
55
  authorizationUrl: string;
55
56
  "x-scalar-redirect-uri": string;
56
57
  "x-scalar-security-query"?: Record<string, string> | undefined;
58
+ "x-tokenName"?: string | undefined;
57
59
  } | undefined;
58
60
  clientCredentials?: {
59
61
  type: "clientCredentials";
@@ -65,6 +67,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
65
67
  tokenUrl: string;
66
68
  clientSecret: string;
67
69
  "x-scalar-security-query"?: Record<string, string> | undefined;
70
+ "x-tokenName"?: string | undefined;
68
71
  } | undefined;
69
72
  authorizationCode?: {
70
73
  type: "authorizationCode";
@@ -79,6 +82,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
79
82
  clientSecret: string;
80
83
  "x-usePkce": "SHA-256" | "plain" | "no";
81
84
  "x-scalar-security-query"?: Record<string, string> | undefined;
85
+ "x-tokenName"?: string | undefined;
82
86
  } | undefined;
83
87
  };
84
88
  description?: string | undefined;
@@ -126,6 +130,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
126
130
  tokenUrl: string;
127
131
  clientSecret: string;
128
132
  "x-scalar-security-query"?: Record<string, string> | undefined;
133
+ "x-tokenName"?: string | undefined;
129
134
  } | undefined;
130
135
  implicit?: {
131
136
  type: "implicit";
@@ -137,6 +142,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
137
142
  authorizationUrl: string;
138
143
  "x-scalar-redirect-uri": string;
139
144
  "x-scalar-security-query"?: Record<string, string> | undefined;
145
+ "x-tokenName"?: string | undefined;
140
146
  } | undefined;
141
147
  clientCredentials?: {
142
148
  type: "clientCredentials";
@@ -148,6 +154,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
148
154
  tokenUrl: string;
149
155
  clientSecret: string;
150
156
  "x-scalar-security-query"?: Record<string, string> | undefined;
157
+ "x-tokenName"?: string | undefined;
151
158
  } | undefined;
152
159
  authorizationCode?: {
153
160
  type: "authorizationCode";
@@ -162,6 +169,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
162
169
  clientSecret: string;
163
170
  "x-usePkce": "SHA-256" | "plain" | "no";
164
171
  "x-scalar-security-query"?: Record<string, string> | undefined;
172
+ "x-tokenName"?: string | undefined;
165
173
  } | undefined;
166
174
  };
167
175
  description?: string | undefined;
@@ -209,6 +217,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
209
217
  tokenUrl: string;
210
218
  clientSecret: string;
211
219
  "x-scalar-security-query"?: Record<string, string> | undefined;
220
+ "x-tokenName"?: string | undefined;
212
221
  } | undefined;
213
222
  implicit?: {
214
223
  type: "implicit";
@@ -220,6 +229,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
220
229
  authorizationUrl: string;
221
230
  "x-scalar-redirect-uri": string;
222
231
  "x-scalar-security-query"?: Record<string, string> | undefined;
232
+ "x-tokenName"?: string | undefined;
223
233
  } | undefined;
224
234
  clientCredentials?: {
225
235
  type: "clientCredentials";
@@ -231,6 +241,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
231
241
  tokenUrl: string;
232
242
  clientSecret: string;
233
243
  "x-scalar-security-query"?: Record<string, string> | undefined;
244
+ "x-tokenName"?: string | undefined;
234
245
  } | undefined;
235
246
  authorizationCode?: {
236
247
  type: "authorizationCode";
@@ -245,12 +256,13 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
245
256
  clientSecret: string;
246
257
  "x-usePkce": "SHA-256" | "plain" | "no";
247
258
  "x-scalar-security-query"?: Record<string, string> | undefined;
259
+ "x-tokenName"?: string | undefined;
248
260
  } | undefined;
249
261
  };
250
262
  description?: string | undefined;
251
263
  'x-default-scopes'?: string | string[] | undefined;
252
264
  }) => void;
253
- edit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | "flows.password.x-scalar-security-query" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | "flows.implicit.x-scalar-security-query" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | "flows.clientCredentials.x-scalar-security-query" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | "flows.authorizationCode.x-scalar-security-query" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: (string & import("zod").BRAND<"securityScheme">) | null | undefined, path: P, value: (P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" ? {
265
+ edit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | "flows.password.x-scalar-security-query" | "flows.password.x-tokenName" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | "flows.implicit.x-scalar-security-query" | "flows.implicit.x-tokenName" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | "flows.clientCredentials.x-scalar-security-query" | "flows.clientCredentials.x-tokenName" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | "flows.authorizationCode.x-scalar-security-query" | "flows.authorizationCode.x-tokenName" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: (string & import("zod").BRAND<"securityScheme">) | null | undefined, path: P, value: (P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" ? {
254
266
  type: "apiKey";
255
267
  value: string;
256
268
  name: string;
@@ -339,6 +351,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
339
351
  tokenUrl: string;
340
352
  clientSecret: string;
341
353
  "x-scalar-security-query"?: Record<string, string> | undefined;
354
+ "x-tokenName"?: string | undefined;
342
355
  } | undefined;
343
356
  implicit?: {
344
357
  type: "implicit";
@@ -350,6 +363,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
350
363
  authorizationUrl: string;
351
364
  "x-scalar-redirect-uri": string;
352
365
  "x-scalar-security-query"?: Record<string, string> | undefined;
366
+ "x-tokenName"?: string | undefined;
353
367
  } | undefined;
354
368
  clientCredentials?: {
355
369
  type: "clientCredentials";
@@ -361,6 +375,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
361
375
  tokenUrl: string;
362
376
  clientSecret: string;
363
377
  "x-scalar-security-query"?: Record<string, string> | undefined;
378
+ "x-tokenName"?: string | undefined;
364
379
  } | undefined;
365
380
  authorizationCode?: {
366
381
  type: "authorizationCode";
@@ -375,6 +390,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
375
390
  clientSecret: string;
376
391
  "x-usePkce": "SHA-256" | "plain" | "no";
377
392
  "x-scalar-security-query"?: Record<string, string> | undefined;
393
+ "x-tokenName"?: string | undefined;
378
394
  } | undefined;
379
395
  };
380
396
  description?: string | undefined;
@@ -396,6 +412,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
396
412
  tokenUrl: string;
397
413
  clientSecret: string;
398
414
  "x-scalar-security-query"?: Record<string, string> | undefined;
415
+ "x-tokenName"?: string | undefined;
399
416
  } | undefined;
400
417
  implicit?: {
401
418
  type: "implicit";
@@ -407,6 +424,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
407
424
  authorizationUrl: string;
408
425
  "x-scalar-redirect-uri": string;
409
426
  "x-scalar-security-query"?: Record<string, string> | undefined;
427
+ "x-tokenName"?: string | undefined;
410
428
  } | undefined;
411
429
  clientCredentials?: {
412
430
  type: "clientCredentials";
@@ -418,6 +436,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
418
436
  tokenUrl: string;
419
437
  clientSecret: string;
420
438
  "x-scalar-security-query"?: Record<string, string> | undefined;
439
+ "x-tokenName"?: string | undefined;
421
440
  } | undefined;
422
441
  authorizationCode?: {
423
442
  type: "authorizationCode";
@@ -432,6 +451,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
432
451
  clientSecret: string;
433
452
  "x-usePkce": "SHA-256" | "plain" | "no";
434
453
  "x-scalar-security-query"?: Record<string, string> | undefined;
454
+ "x-tokenName"?: string | undefined;
435
455
  } | undefined;
436
456
  };
437
457
  description?: string | undefined;
@@ -453,6 +473,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
453
473
  tokenUrl: string;
454
474
  clientSecret: string;
455
475
  "x-scalar-security-query"?: Record<string, string> | undefined;
476
+ "x-tokenName"?: string | undefined;
456
477
  } | undefined;
457
478
  implicit?: {
458
479
  type: "implicit";
@@ -464,6 +485,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
464
485
  authorizationUrl: string;
465
486
  "x-scalar-redirect-uri": string;
466
487
  "x-scalar-security-query"?: Record<string, string> | undefined;
488
+ "x-tokenName"?: string | undefined;
467
489
  } | undefined;
468
490
  clientCredentials?: {
469
491
  type: "clientCredentials";
@@ -475,6 +497,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
475
497
  tokenUrl: string;
476
498
  clientSecret: string;
477
499
  "x-scalar-security-query"?: Record<string, string> | undefined;
500
+ "x-tokenName"?: string | undefined;
478
501
  } | undefined;
479
502
  authorizationCode?: {
480
503
  type: "authorizationCode";
@@ -489,12 +512,13 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
489
512
  clientSecret: string;
490
513
  "x-usePkce": "SHA-256" | "plain" | "no";
491
514
  "x-scalar-security-query"?: Record<string, string> | undefined;
515
+ "x-tokenName"?: string | undefined;
492
516
  } | undefined;
493
517
  };
494
518
  description?: string | undefined;
495
519
  'x-default-scopes'?: string | string[] | undefined;
496
520
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
497
- untrackedEdit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | "flows.password.x-scalar-security-query" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | "flows.implicit.x-scalar-security-query" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | "flows.clientCredentials.x-scalar-security-query" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | "flows.authorizationCode.x-scalar-security-query" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: string & import("zod").BRAND<"securityScheme">, path: P, value: (P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" ? {
521
+ untrackedEdit: <P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" | "scheme" | "bearerFormat" | "openIdConnectUrl" | "x-default-scopes" | "flows" | "password" | "username" | "token" | `x-default-scopes.${number}` | "flows.password" | "flows.implicit" | "flows.clientCredentials" | "flows.authorizationCode" | "flows.password.type" | "flows.password.password" | "flows.password.username" | "flows.password.token" | "flows.password.refreshUrl" | "flows.password.scopes" | "flows.password.selectedScopes" | "flows.password.x-scalar-client-id" | "flows.password.tokenUrl" | "flows.password.clientSecret" | "flows.password.x-scalar-security-query" | "flows.password.x-tokenName" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | "flows.implicit.type" | "flows.implicit.token" | "flows.implicit.refreshUrl" | "flows.implicit.scopes" | "flows.implicit.selectedScopes" | "flows.implicit.x-scalar-client-id" | "flows.implicit.x-scalar-security-query" | "flows.implicit.x-tokenName" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | "flows.implicit.authorizationUrl" | "flows.implicit.x-scalar-redirect-uri" | "flows.clientCredentials.type" | "flows.clientCredentials.token" | "flows.clientCredentials.refreshUrl" | "flows.clientCredentials.scopes" | "flows.clientCredentials.selectedScopes" | "flows.clientCredentials.x-scalar-client-id" | "flows.clientCredentials.tokenUrl" | "flows.clientCredentials.clientSecret" | "flows.clientCredentials.x-scalar-security-query" | "flows.clientCredentials.x-tokenName" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | "flows.authorizationCode.type" | "flows.authorizationCode.token" | "flows.authorizationCode.refreshUrl" | "flows.authorizationCode.scopes" | "flows.authorizationCode.selectedScopes" | "flows.authorizationCode.x-scalar-client-id" | "flows.authorizationCode.tokenUrl" | "flows.authorizationCode.clientSecret" | "flows.authorizationCode.x-scalar-security-query" | "flows.authorizationCode.x-tokenName" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | "flows.authorizationCode.authorizationUrl" | "flows.authorizationCode.x-scalar-redirect-uri" | "flows.authorizationCode.x-usePkce">(uid: string & import("zod").BRAND<"securityScheme">, path: P, value: (P extends "value" | "description" | "type" | "uid" | "name" | "in" | "nameKey" ? {
498
522
  type: "apiKey";
499
523
  value: string;
500
524
  name: string;
@@ -583,6 +607,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
583
607
  tokenUrl: string;
584
608
  clientSecret: string;
585
609
  "x-scalar-security-query"?: Record<string, string> | undefined;
610
+ "x-tokenName"?: string | undefined;
586
611
  } | undefined;
587
612
  implicit?: {
588
613
  type: "implicit";
@@ -594,6 +619,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
594
619
  authorizationUrl: string;
595
620
  "x-scalar-redirect-uri": string;
596
621
  "x-scalar-security-query"?: Record<string, string> | undefined;
622
+ "x-tokenName"?: string | undefined;
597
623
  } | undefined;
598
624
  clientCredentials?: {
599
625
  type: "clientCredentials";
@@ -605,6 +631,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
605
631
  tokenUrl: string;
606
632
  clientSecret: string;
607
633
  "x-scalar-security-query"?: Record<string, string> | undefined;
634
+ "x-tokenName"?: string | undefined;
608
635
  } | undefined;
609
636
  authorizationCode?: {
610
637
  type: "authorizationCode";
@@ -619,6 +646,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
619
646
  clientSecret: string;
620
647
  "x-usePkce": "SHA-256" | "plain" | "no";
621
648
  "x-scalar-security-query"?: Record<string, string> | undefined;
649
+ "x-tokenName"?: string | undefined;
622
650
  } | undefined;
623
651
  };
624
652
  description?: string | undefined;
@@ -640,6 +668,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
640
668
  tokenUrl: string;
641
669
  clientSecret: string;
642
670
  "x-scalar-security-query"?: Record<string, string> | undefined;
671
+ "x-tokenName"?: string | undefined;
643
672
  } | undefined;
644
673
  implicit?: {
645
674
  type: "implicit";
@@ -651,6 +680,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
651
680
  authorizationUrl: string;
652
681
  "x-scalar-redirect-uri": string;
653
682
  "x-scalar-security-query"?: Record<string, string> | undefined;
683
+ "x-tokenName"?: string | undefined;
654
684
  } | undefined;
655
685
  clientCredentials?: {
656
686
  type: "clientCredentials";
@@ -662,6 +692,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
662
692
  tokenUrl: string;
663
693
  clientSecret: string;
664
694
  "x-scalar-security-query"?: Record<string, string> | undefined;
695
+ "x-tokenName"?: string | undefined;
665
696
  } | undefined;
666
697
  authorizationCode?: {
667
698
  type: "authorizationCode";
@@ -676,6 +707,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
676
707
  clientSecret: string;
677
708
  "x-usePkce": "SHA-256" | "plain" | "no";
678
709
  "x-scalar-security-query"?: Record<string, string> | undefined;
710
+ "x-tokenName"?: string | undefined;
679
711
  } | undefined;
680
712
  };
681
713
  description?: string | undefined;
@@ -697,6 +729,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
697
729
  tokenUrl: string;
698
730
  clientSecret: string;
699
731
  "x-scalar-security-query"?: Record<string, string> | undefined;
732
+ "x-tokenName"?: string | undefined;
700
733
  } | undefined;
701
734
  implicit?: {
702
735
  type: "implicit";
@@ -708,6 +741,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
708
741
  authorizationUrl: string;
709
742
  "x-scalar-redirect-uri": string;
710
743
  "x-scalar-security-query"?: Record<string, string> | undefined;
744
+ "x-tokenName"?: string | undefined;
711
745
  } | undefined;
712
746
  clientCredentials?: {
713
747
  type: "clientCredentials";
@@ -719,6 +753,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
719
753
  tokenUrl: string;
720
754
  clientSecret: string;
721
755
  "x-scalar-security-query"?: Record<string, string> | undefined;
756
+ "x-tokenName"?: string | undefined;
722
757
  } | undefined;
723
758
  authorizationCode?: {
724
759
  type: "authorizationCode";
@@ -733,6 +768,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
733
768
  clientSecret: string;
734
769
  "x-usePkce": "SHA-256" | "plain" | "no";
735
770
  "x-scalar-security-query"?: Record<string, string> | undefined;
771
+ "x-tokenName"?: string | undefined;
736
772
  } | undefined;
737
773
  };
738
774
  description?: string | undefined;
@@ -786,6 +822,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
786
822
  tokenUrl: string;
787
823
  clientSecret: string;
788
824
  "x-scalar-security-query"?: Record<string, string> | undefined;
825
+ "x-tokenName"?: string | undefined;
789
826
  } | undefined;
790
827
  implicit?: {
791
828
  type: "implicit";
@@ -797,6 +834,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
797
834
  authorizationUrl: string;
798
835
  "x-scalar-redirect-uri": string;
799
836
  "x-scalar-security-query"?: Record<string, string> | undefined;
837
+ "x-tokenName"?: string | undefined;
800
838
  } | undefined;
801
839
  clientCredentials?: {
802
840
  type: "clientCredentials";
@@ -808,6 +846,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
808
846
  tokenUrl: string;
809
847
  clientSecret: string;
810
848
  "x-scalar-security-query"?: Record<string, string> | undefined;
849
+ "x-tokenName"?: string | undefined;
811
850
  } | undefined;
812
851
  authorizationCode?: {
813
852
  type: "authorizationCode";
@@ -822,6 +861,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
822
861
  clientSecret: string;
823
862
  "x-usePkce": "SHA-256" | "plain" | "no";
824
863
  "x-scalar-security-query"?: Record<string, string> | undefined;
864
+ "x-tokenName"?: string | undefined;
825
865
  } | undefined;
826
866
  };
827
867
  description?: string | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"security-schemes.d.ts","sourceRoot":"","sources":["../../src/store/security-schemes.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"security-schemes.d.ts","sourceRoot":"","sources":["../../src/store/security-schemes.ts"],"names":[],"mappings":"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"}