@scalar/api-client 2.5.16 → 2.5.18

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 (60) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/dist/components/AddressBar/AddressBarHistory.vue2.js +9 -8
  3. package/dist/components/CommandPalette/CommandPaletteImport.vue.js +15 -13
  4. package/dist/components/CommandPalette/CommandPaletteServer.vue.js +10 -9
  5. package/dist/components/CommandPalette/TheCommandPalette.vue2.js +28 -26
  6. package/dist/components/DataTable/DataTableInput.vue.d.ts.map +1 -1
  7. package/dist/components/DataTable/DataTableInputSelect.vue.js +9 -8
  8. package/dist/components/EnvironmentSelector/EnvironmentSelector.vue.js +9 -7
  9. package/dist/components/ImportCollection/ImportNowButton.vue.js +6 -4
  10. package/dist/components/ImportCollection/WorkspaceSelector.vue.js +4 -2
  11. package/dist/components/Server/ServerSelector.vue.js +2 -1
  12. package/dist/components/SideNav/SideHelp.vue.js +16 -10
  13. package/dist/components/SideNav/SideNav.vue.js +2 -1
  14. package/dist/components/Sidebar/Actions/SidebarListElementForm.vue2.js +2 -1
  15. package/dist/components/TopNav/TopNav.vue.js +9 -7
  16. package/dist/components/TopNav/TopNavItem.vue2.js +8 -4
  17. package/dist/layouts/App/create-api-client-app.d.ts +42 -2
  18. package/dist/layouts/App/create-api-client-app.d.ts.map +1 -1
  19. package/dist/layouts/Modal/create-api-client-modal.d.ts +84 -4
  20. package/dist/layouts/Modal/create-api-client-modal.d.ts.map +1 -1
  21. package/dist/layouts/Web/create-api-client-web.d.ts +42 -2
  22. package/dist/layouts/Web/create-api-client-web.d.ts.map +1 -1
  23. package/dist/libs/create-client.d.ts +42 -2
  24. package/dist/libs/create-client.d.ts.map +1 -1
  25. package/dist/store/security-schemes.d.ts +42 -2
  26. package/dist/store/security-schemes.d.ts.map +1 -1
  27. package/dist/store/store.d.ts +42 -2
  28. package/dist/store/store.d.ts.map +1 -1
  29. package/dist/style.css +1 -1
  30. package/dist/views/Collection/CollectionEnvironment.vue2.js +8 -7
  31. package/dist/views/Collection/CollectionServers.vue2.js +2 -1
  32. package/dist/views/Collection/CollectionSettings.vue2.js +2 -1
  33. package/dist/views/Collection/components/EnvironmentForm.vue2.js +4 -2
  34. package/dist/views/Collection/components/MarkdownInput.vue2.js +4 -2
  35. package/dist/views/Environment/Environment.vue2.js +2 -1
  36. package/dist/views/Environment/EnvironmentModal.vue.js +10 -9
  37. package/dist/views/Environment/EnvironmentVariableDropdown.vue.js +2 -1
  38. package/dist/views/Request/RequestSection/RequestAuth/DeleteRequestAuthModal.vue.js +5 -4
  39. package/dist/views/Request/RequestSection/RequestAuth/OAuth2.vue.js +22 -11
  40. package/dist/views/Request/RequestSection/RequestAuth/OAuthScopesInput.vue.js +9 -8
  41. package/dist/views/Request/RequestSection/RequestAuth/RequestAuthTab.vue2.js +34 -29
  42. package/dist/views/Request/RequestSection/RequestBody.vue2.js +4 -2
  43. package/dist/views/Request/RequestSection/RequestParams.vue.js +2 -1
  44. package/dist/views/Request/RequestSection/RequestTable.vue2.js +12 -10
  45. package/dist/views/Request/RequestSidebar.vue2.js +2 -1
  46. package/dist/views/Request/RequestSidebarItem.vue.d.ts.map +1 -1
  47. package/dist/views/Request/RequestSidebarItem.vue2.js +2 -1
  48. package/dist/views/Request/RequestSidebarItemMenu.vue2.js +6 -3
  49. package/dist/views/Request/ResponseSection/RequestHeaders.vue.js +4 -2
  50. package/dist/views/Request/ResponseSection/ResponseBody.vue2.js +2 -1
  51. package/dist/views/Request/ResponseSection/ResponseBodyPreview.vue2.js +2 -1
  52. package/dist/views/Request/ResponseSection/ResponseEmpty.vue2.js +1 -1
  53. package/dist/views/Request/ResponseSection/ResponseHeaders.vue.js +4 -2
  54. package/dist/views/Request/ResponseSection/ResponseLoadingOverlay.vue2.js +5 -4
  55. package/dist/views/Request/components/WorkspaceDropdown.vue.js +13 -10
  56. package/dist/views/Request/libs/oauth2.d.ts.map +1 -1
  57. package/dist/views/Request/libs/oauth2.js +46 -44
  58. package/dist/views/Settings/SettingsGeneral.vue.js +19 -17
  59. package/dist/views/Settings/components/SettingsAppearance.vue.js +8 -5
  60. package/package.json +16 -16
@@ -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-scalar-security-body"?: Record<string, string> | undefined;
46
47
  "x-tokenName"?: string | undefined;
47
48
  } | undefined;
48
49
  implicit?: {
@@ -55,6 +56,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
55
56
  authorizationUrl: string;
56
57
  "x-scalar-redirect-uri": string;
57
58
  "x-scalar-security-query"?: Record<string, string> | undefined;
59
+ "x-scalar-security-body"?: Record<string, string> | undefined;
58
60
  "x-tokenName"?: string | undefined;
59
61
  } | undefined;
60
62
  clientCredentials?: {
@@ -67,6 +69,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
67
69
  tokenUrl: string;
68
70
  clientSecret: string;
69
71
  "x-scalar-security-query"?: Record<string, string> | undefined;
72
+ "x-scalar-security-body"?: Record<string, string> | undefined;
70
73
  "x-tokenName"?: string | undefined;
71
74
  } | undefined;
72
75
  authorizationCode?: {
@@ -82,6 +85,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
82
85
  clientSecret: string;
83
86
  "x-usePkce": "SHA-256" | "plain" | "no";
84
87
  "x-scalar-security-query"?: Record<string, string> | undefined;
88
+ "x-scalar-security-body"?: Record<string, string> | undefined;
85
89
  "x-tokenName"?: string | undefined;
86
90
  } | undefined;
87
91
  };
@@ -130,6 +134,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
130
134
  tokenUrl: string;
131
135
  clientSecret: string;
132
136
  "x-scalar-security-query"?: Record<string, string> | undefined;
137
+ "x-scalar-security-body"?: Record<string, string> | undefined;
133
138
  "x-tokenName"?: string | undefined;
134
139
  } | undefined;
135
140
  implicit?: {
@@ -142,6 +147,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
142
147
  authorizationUrl: string;
143
148
  "x-scalar-redirect-uri": string;
144
149
  "x-scalar-security-query"?: Record<string, string> | undefined;
150
+ "x-scalar-security-body"?: Record<string, string> | undefined;
145
151
  "x-tokenName"?: string | undefined;
146
152
  } | undefined;
147
153
  clientCredentials?: {
@@ -154,6 +160,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
154
160
  tokenUrl: string;
155
161
  clientSecret: string;
156
162
  "x-scalar-security-query"?: Record<string, string> | undefined;
163
+ "x-scalar-security-body"?: Record<string, string> | undefined;
157
164
  "x-tokenName"?: string | undefined;
158
165
  } | undefined;
159
166
  authorizationCode?: {
@@ -169,6 +176,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
169
176
  clientSecret: string;
170
177
  "x-usePkce": "SHA-256" | "plain" | "no";
171
178
  "x-scalar-security-query"?: Record<string, string> | undefined;
179
+ "x-scalar-security-body"?: Record<string, string> | undefined;
172
180
  "x-tokenName"?: string | undefined;
173
181
  } | undefined;
174
182
  };
@@ -217,6 +225,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
217
225
  tokenUrl: string;
218
226
  clientSecret: string;
219
227
  "x-scalar-security-query"?: Record<string, string> | undefined;
228
+ "x-scalar-security-body"?: Record<string, string> | undefined;
220
229
  "x-tokenName"?: string | undefined;
221
230
  } | undefined;
222
231
  implicit?: {
@@ -229,6 +238,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
229
238
  authorizationUrl: string;
230
239
  "x-scalar-redirect-uri": string;
231
240
  "x-scalar-security-query"?: Record<string, string> | undefined;
241
+ "x-scalar-security-body"?: Record<string, string> | undefined;
232
242
  "x-tokenName"?: string | undefined;
233
243
  } | undefined;
234
244
  clientCredentials?: {
@@ -241,6 +251,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
241
251
  tokenUrl: string;
242
252
  clientSecret: string;
243
253
  "x-scalar-security-query"?: Record<string, string> | undefined;
254
+ "x-scalar-security-body"?: Record<string, string> | undefined;
244
255
  "x-tokenName"?: string | undefined;
245
256
  } | undefined;
246
257
  authorizationCode?: {
@@ -256,13 +267,14 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
256
267
  clientSecret: string;
257
268
  "x-usePkce": "SHA-256" | "plain" | "no";
258
269
  "x-scalar-security-query"?: Record<string, string> | undefined;
270
+ "x-scalar-security-body"?: Record<string, string> | undefined;
259
271
  "x-tokenName"?: string | undefined;
260
272
  } | undefined;
261
273
  };
262
274
  description?: string | undefined;
263
275
  'x-default-scopes'?: string | string[] | undefined;
264
276
  }) => void;
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" ? {
277
+ 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-scalar-security-body" | "flows.password.x-tokenName" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | `flows.password.x-scalar-security-body.${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-scalar-security-body" | "flows.implicit.x-tokenName" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | `flows.implicit.x-scalar-security-body.${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-scalar-security-body" | "flows.clientCredentials.x-tokenName" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | `flows.clientCredentials.x-scalar-security-body.${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-scalar-security-body" | "flows.authorizationCode.x-tokenName" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | `flows.authorizationCode.x-scalar-security-body.${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" ? {
266
278
  type: "apiKey";
267
279
  value: string;
268
280
  name: string;
@@ -351,6 +363,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
351
363
  tokenUrl: string;
352
364
  clientSecret: string;
353
365
  "x-scalar-security-query"?: Record<string, string> | undefined;
366
+ "x-scalar-security-body"?: Record<string, string> | undefined;
354
367
  "x-tokenName"?: string | undefined;
355
368
  } | undefined;
356
369
  implicit?: {
@@ -363,6 +376,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
363
376
  authorizationUrl: string;
364
377
  "x-scalar-redirect-uri": string;
365
378
  "x-scalar-security-query"?: Record<string, string> | undefined;
379
+ "x-scalar-security-body"?: Record<string, string> | undefined;
366
380
  "x-tokenName"?: string | undefined;
367
381
  } | undefined;
368
382
  clientCredentials?: {
@@ -375,6 +389,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
375
389
  tokenUrl: string;
376
390
  clientSecret: string;
377
391
  "x-scalar-security-query"?: Record<string, string> | undefined;
392
+ "x-scalar-security-body"?: Record<string, string> | undefined;
378
393
  "x-tokenName"?: string | undefined;
379
394
  } | undefined;
380
395
  authorizationCode?: {
@@ -390,6 +405,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
390
405
  clientSecret: string;
391
406
  "x-usePkce": "SHA-256" | "plain" | "no";
392
407
  "x-scalar-security-query"?: Record<string, string> | undefined;
408
+ "x-scalar-security-body"?: Record<string, string> | undefined;
393
409
  "x-tokenName"?: string | undefined;
394
410
  } | undefined;
395
411
  };
@@ -412,6 +428,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
412
428
  tokenUrl: string;
413
429
  clientSecret: string;
414
430
  "x-scalar-security-query"?: Record<string, string> | undefined;
431
+ "x-scalar-security-body"?: Record<string, string> | undefined;
415
432
  "x-tokenName"?: string | undefined;
416
433
  } | undefined;
417
434
  implicit?: {
@@ -424,6 +441,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
424
441
  authorizationUrl: string;
425
442
  "x-scalar-redirect-uri": string;
426
443
  "x-scalar-security-query"?: Record<string, string> | undefined;
444
+ "x-scalar-security-body"?: Record<string, string> | undefined;
427
445
  "x-tokenName"?: string | undefined;
428
446
  } | undefined;
429
447
  clientCredentials?: {
@@ -436,6 +454,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
436
454
  tokenUrl: string;
437
455
  clientSecret: string;
438
456
  "x-scalar-security-query"?: Record<string, string> | undefined;
457
+ "x-scalar-security-body"?: Record<string, string> | undefined;
439
458
  "x-tokenName"?: string | undefined;
440
459
  } | undefined;
441
460
  authorizationCode?: {
@@ -451,6 +470,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
451
470
  clientSecret: string;
452
471
  "x-usePkce": "SHA-256" | "plain" | "no";
453
472
  "x-scalar-security-query"?: Record<string, string> | undefined;
473
+ "x-scalar-security-body"?: Record<string, string> | undefined;
454
474
  "x-tokenName"?: string | undefined;
455
475
  } | undefined;
456
476
  };
@@ -473,6 +493,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
473
493
  tokenUrl: string;
474
494
  clientSecret: string;
475
495
  "x-scalar-security-query"?: Record<string, string> | undefined;
496
+ "x-scalar-security-body"?: Record<string, string> | undefined;
476
497
  "x-tokenName"?: string | undefined;
477
498
  } | undefined;
478
499
  implicit?: {
@@ -485,6 +506,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
485
506
  authorizationUrl: string;
486
507
  "x-scalar-redirect-uri": string;
487
508
  "x-scalar-security-query"?: Record<string, string> | undefined;
509
+ "x-scalar-security-body"?: Record<string, string> | undefined;
488
510
  "x-tokenName"?: string | undefined;
489
511
  } | undefined;
490
512
  clientCredentials?: {
@@ -497,6 +519,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
497
519
  tokenUrl: string;
498
520
  clientSecret: string;
499
521
  "x-scalar-security-query"?: Record<string, string> | undefined;
522
+ "x-scalar-security-body"?: Record<string, string> | undefined;
500
523
  "x-tokenName"?: string | undefined;
501
524
  } | undefined;
502
525
  authorizationCode?: {
@@ -512,13 +535,14 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
512
535
  clientSecret: string;
513
536
  "x-usePkce": "SHA-256" | "plain" | "no";
514
537
  "x-scalar-security-query"?: Record<string, string> | undefined;
538
+ "x-scalar-security-body"?: Record<string, string> | undefined;
515
539
  "x-tokenName"?: string | undefined;
516
540
  } | undefined;
517
541
  };
518
542
  description?: string | undefined;
519
543
  'x-default-scopes'?: string | string[] | undefined;
520
544
  }[K], R> : never : K extends `${number}` ? never : never : P extends `${number}` ? never : never)) => void;
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" ? {
545
+ 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-scalar-security-body" | "flows.password.x-tokenName" | `flows.password.scopes.${string}` | `flows.password.selectedScopes.${number}` | `flows.password.x-scalar-security-query.${string}` | `flows.password.x-scalar-security-body.${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-scalar-security-body" | "flows.implicit.x-tokenName" | `flows.implicit.scopes.${string}` | `flows.implicit.selectedScopes.${number}` | `flows.implicit.x-scalar-security-query.${string}` | `flows.implicit.x-scalar-security-body.${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-scalar-security-body" | "flows.clientCredentials.x-tokenName" | `flows.clientCredentials.scopes.${string}` | `flows.clientCredentials.selectedScopes.${number}` | `flows.clientCredentials.x-scalar-security-query.${string}` | `flows.clientCredentials.x-scalar-security-body.${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-scalar-security-body" | "flows.authorizationCode.x-tokenName" | `flows.authorizationCode.scopes.${string}` | `flows.authorizationCode.selectedScopes.${number}` | `flows.authorizationCode.x-scalar-security-query.${string}` | `flows.authorizationCode.x-scalar-security-body.${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" ? {
522
546
  type: "apiKey";
523
547
  value: string;
524
548
  name: string;
@@ -607,6 +631,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
607
631
  tokenUrl: string;
608
632
  clientSecret: string;
609
633
  "x-scalar-security-query"?: Record<string, string> | undefined;
634
+ "x-scalar-security-body"?: Record<string, string> | undefined;
610
635
  "x-tokenName"?: string | undefined;
611
636
  } | undefined;
612
637
  implicit?: {
@@ -619,6 +644,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
619
644
  authorizationUrl: string;
620
645
  "x-scalar-redirect-uri": string;
621
646
  "x-scalar-security-query"?: Record<string, string> | undefined;
647
+ "x-scalar-security-body"?: Record<string, string> | undefined;
622
648
  "x-tokenName"?: string | undefined;
623
649
  } | undefined;
624
650
  clientCredentials?: {
@@ -631,6 +657,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
631
657
  tokenUrl: string;
632
658
  clientSecret: string;
633
659
  "x-scalar-security-query"?: Record<string, string> | undefined;
660
+ "x-scalar-security-body"?: Record<string, string> | undefined;
634
661
  "x-tokenName"?: string | undefined;
635
662
  } | undefined;
636
663
  authorizationCode?: {
@@ -646,6 +673,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
646
673
  clientSecret: string;
647
674
  "x-usePkce": "SHA-256" | "plain" | "no";
648
675
  "x-scalar-security-query"?: Record<string, string> | undefined;
676
+ "x-scalar-security-body"?: Record<string, string> | undefined;
649
677
  "x-tokenName"?: string | undefined;
650
678
  } | undefined;
651
679
  };
@@ -668,6 +696,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
668
696
  tokenUrl: string;
669
697
  clientSecret: string;
670
698
  "x-scalar-security-query"?: Record<string, string> | undefined;
699
+ "x-scalar-security-body"?: Record<string, string> | undefined;
671
700
  "x-tokenName"?: string | undefined;
672
701
  } | undefined;
673
702
  implicit?: {
@@ -680,6 +709,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
680
709
  authorizationUrl: string;
681
710
  "x-scalar-redirect-uri": string;
682
711
  "x-scalar-security-query"?: Record<string, string> | undefined;
712
+ "x-scalar-security-body"?: Record<string, string> | undefined;
683
713
  "x-tokenName"?: string | undefined;
684
714
  } | undefined;
685
715
  clientCredentials?: {
@@ -692,6 +722,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
692
722
  tokenUrl: string;
693
723
  clientSecret: string;
694
724
  "x-scalar-security-query"?: Record<string, string> | undefined;
725
+ "x-scalar-security-body"?: Record<string, string> | undefined;
695
726
  "x-tokenName"?: string | undefined;
696
727
  } | undefined;
697
728
  authorizationCode?: {
@@ -707,6 +738,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
707
738
  clientSecret: string;
708
739
  "x-usePkce": "SHA-256" | "plain" | "no";
709
740
  "x-scalar-security-query"?: Record<string, string> | undefined;
741
+ "x-scalar-security-body"?: Record<string, string> | undefined;
710
742
  "x-tokenName"?: string | undefined;
711
743
  } | undefined;
712
744
  };
@@ -729,6 +761,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
729
761
  tokenUrl: string;
730
762
  clientSecret: string;
731
763
  "x-scalar-security-query"?: Record<string, string> | undefined;
764
+ "x-scalar-security-body"?: Record<string, string> | undefined;
732
765
  "x-tokenName"?: string | undefined;
733
766
  } | undefined;
734
767
  implicit?: {
@@ -741,6 +774,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
741
774
  authorizationUrl: string;
742
775
  "x-scalar-redirect-uri": string;
743
776
  "x-scalar-security-query"?: Record<string, string> | undefined;
777
+ "x-scalar-security-body"?: Record<string, string> | undefined;
744
778
  "x-tokenName"?: string | undefined;
745
779
  } | undefined;
746
780
  clientCredentials?: {
@@ -753,6 +787,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
753
787
  tokenUrl: string;
754
788
  clientSecret: string;
755
789
  "x-scalar-security-query"?: Record<string, string> | undefined;
790
+ "x-scalar-security-body"?: Record<string, string> | undefined;
756
791
  "x-tokenName"?: string | undefined;
757
792
  } | undefined;
758
793
  authorizationCode?: {
@@ -768,6 +803,7 @@ export declare function createStoreSecuritySchemes(useLocalStorage: boolean): {
768
803
  clientSecret: string;
769
804
  "x-usePkce": "SHA-256" | "plain" | "no";
770
805
  "x-scalar-security-query"?: Record<string, string> | undefined;
806
+ "x-scalar-security-body"?: Record<string, string> | undefined;
771
807
  "x-tokenName"?: string | undefined;
772
808
  } | undefined;
773
809
  };
@@ -822,6 +858,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
822
858
  tokenUrl: string;
823
859
  clientSecret: string;
824
860
  "x-scalar-security-query"?: Record<string, string> | undefined;
861
+ "x-scalar-security-body"?: Record<string, string> | undefined;
825
862
  "x-tokenName"?: string | undefined;
826
863
  } | undefined;
827
864
  implicit?: {
@@ -834,6 +871,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
834
871
  authorizationUrl: string;
835
872
  "x-scalar-redirect-uri": string;
836
873
  "x-scalar-security-query"?: Record<string, string> | undefined;
874
+ "x-scalar-security-body"?: Record<string, string> | undefined;
837
875
  "x-tokenName"?: string | undefined;
838
876
  } | undefined;
839
877
  clientCredentials?: {
@@ -846,6 +884,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
846
884
  tokenUrl: string;
847
885
  clientSecret: string;
848
886
  "x-scalar-security-query"?: Record<string, string> | undefined;
887
+ "x-scalar-security-body"?: Record<string, string> | undefined;
849
888
  "x-tokenName"?: string | undefined;
850
889
  } | undefined;
851
890
  authorizationCode?: {
@@ -861,6 +900,7 @@ export declare function extendedSecurityDataFactory({ securitySchemeMutators, co
861
900
  clientSecret: string;
862
901
  "x-usePkce": "SHA-256" | "plain" | "no";
863
902
  "x-scalar-security-query"?: Record<string, string> | undefined;
903
+ "x-scalar-security-body"?: Record<string, string> | undefined;
864
904
  "x-tokenName"?: string | undefined;
865
905
  } | undefined;
866
906
  };
@@ -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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"}