@scalar/workspace-store 0.15.8 → 0.16.0

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 (55) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/schemas/extensions/operation/index.d.ts +2 -0
  3. package/dist/schemas/extensions/operation/index.d.ts.map +1 -0
  4. package/dist/schemas/extensions/operation/index.js +1 -0
  5. package/dist/schemas/extensions/operation/index.js.map +7 -0
  6. package/dist/schemas/extensions/operation/x-code-samples.d.ts +2 -0
  7. package/dist/schemas/extensions/operation/x-code-samples.d.ts.map +1 -1
  8. package/dist/schemas/extensions/operation/x-code-samples.js.map +2 -2
  9. package/dist/schemas/extensions/security/x-default-scopes.d.ts +17 -0
  10. package/dist/schemas/extensions/security/x-default-scopes.d.ts.map +1 -0
  11. package/dist/schemas/extensions/security/x-default-scopes.js +8 -0
  12. package/dist/schemas/extensions/security/x-default-scopes.js.map +7 -0
  13. package/dist/schemas/extensions/security/x-scalar-redirect-uri.d.ts +6 -1
  14. package/dist/schemas/extensions/security/x-scalar-redirect-uri.d.ts.map +1 -1
  15. package/dist/schemas/extensions/security/x-scalar-redirect-uri.js +1 -1
  16. package/dist/schemas/extensions/security/x-scalar-redirect-uri.js.map +2 -2
  17. package/dist/schemas/extensions/security/x-scalar-security-secrets.d.ts +27 -3
  18. package/dist/schemas/extensions/security/x-scalar-security-secrets.d.ts.map +1 -1
  19. package/dist/schemas/extensions/security/x-scalar-security-secrets.js +15 -3
  20. package/dist/schemas/extensions/security/x-scalar-security-secrets.js.map +2 -2
  21. package/dist/schemas/extensions/security/x-use-pkce.d.ts +1 -1
  22. package/dist/schemas/extensions/security/x-use-pkce.d.ts.map +1 -1
  23. package/dist/schemas/extensions/security/x-use-pkce.js +1 -3
  24. package/dist/schemas/extensions/security/x-use-pkce.js.map +2 -2
  25. package/dist/schemas/inmemory-workspace.d.ts +150 -32
  26. package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
  27. package/dist/schemas/reference-config/index.d.ts +75 -16
  28. package/dist/schemas/reference-config/index.d.ts.map +1 -1
  29. package/dist/schemas/reference-config/settings.d.ts +75 -16
  30. package/dist/schemas/reference-config/settings.d.ts.map +1 -1
  31. package/dist/schemas/v3.1/strict/oauth-flow.d.ts +135 -24
  32. package/dist/schemas/v3.1/strict/oauth-flow.d.ts.map +1 -1
  33. package/dist/schemas/v3.1/strict/oauth-flow.js +37 -15
  34. package/dist/schemas/v3.1/strict/oauth-flow.js.map +2 -2
  35. package/dist/schemas/v3.1/strict/oauthflows.d.ts +67 -12
  36. package/dist/schemas/v3.1/strict/oauthflows.d.ts.map +1 -1
  37. package/dist/schemas/v3.1/strict/openapi-document.d.ts +2550 -544
  38. package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
  39. package/dist/schemas/v3.1/strict/openapi-document.js +1 -0
  40. package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
  41. package/dist/schemas/v3.1/strict/operation.d.ts +1 -0
  42. package/dist/schemas/v3.1/strict/operation.d.ts.map +1 -1
  43. package/dist/schemas/v3.1/strict/operation.js +2 -1
  44. package/dist/schemas/v3.1/strict/operation.js.map +2 -2
  45. package/dist/schemas/v3.1/strict/security-scheme.d.ts +12 -8
  46. package/dist/schemas/v3.1/strict/security-scheme.d.ts.map +1 -1
  47. package/dist/schemas/v3.1/strict/security-scheme.js +3 -1
  48. package/dist/schemas/v3.1/strict/security-scheme.js.map +2 -2
  49. package/dist/schemas/workspace-specification/config.d.ts +75 -16
  50. package/dist/schemas/workspace-specification/config.d.ts.map +1 -1
  51. package/dist/schemas/workspace-specification/index.d.ts +75 -16
  52. package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
  53. package/dist/schemas/workspace.d.ts +525 -112
  54. package/dist/schemas/workspace.d.ts.map +1 -1
  55. package/package.json +8 -13
@@ -294,6 +294,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
294
294
  cookie: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
295
295
  }>>;
296
296
  }>>>;
297
+ 'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
297
298
  }>, import("@scalar/typebox").TObject<{
298
299
  'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
299
300
  name: import("@scalar/typebox").TString;
@@ -1095,7 +1096,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1095
1096
  SecuritySchemeObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1096
1097
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1097
1098
  }>, import("@scalar/typebox").TObject<{
1098
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1099
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1099
1100
  }>, import("@scalar/typebox").TObject<{
1100
1101
  type: import("@scalar/typebox").TLiteral<"apiKey">;
1101
1102
  name: import("@scalar/typebox").TString;
@@ -1103,10 +1104,10 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1103
1104
  }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1104
1105
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1105
1106
  }>, import("@scalar/typebox").TObject<{
1106
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1107
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1107
1108
  }>, import("@scalar/typebox").TObject<{
1108
- 'x-scalar-secret-username': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1109
- 'x-scalar-secret-password': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1109
+ 'x-scalar-secret-username': import("@scalar/typebox").TString;
1110
+ 'x-scalar-secret-password': import("@scalar/typebox").TString;
1110
1111
  }>, import("@scalar/typebox").TObject<{
1111
1112
  type: import("@scalar/typebox").TLiteral<"http">;
1112
1113
  scheme: import("@scalar/typebox").TString;
@@ -1116,6 +1117,8 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1116
1117
  }>, import("@scalar/typebox").TObject<{
1117
1118
  type: import("@scalar/typebox").TLiteral<"oauth2">;
1118
1119
  flows: import("@scalar/typebox").TRef<"OAuthFlowsObject">;
1120
+ }>, import("@scalar/typebox").TObject<{
1121
+ 'x-default-scopes': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
1119
1122
  }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1120
1123
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1121
1124
  }>, import("@scalar/typebox").TObject<{
@@ -1142,38 +1145,93 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1142
1145
  mapping: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1143
1146
  }>;
1144
1147
  OAuthFlowsObject: import("@scalar/typebox").TObject<{
1145
- implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1146
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1148
+ implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1149
+ refreshUrl: import("@scalar/typebox").TString;
1147
1150
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1148
1151
  }>, import("@scalar/typebox").TObject<{
1149
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1152
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1153
+ }>, import("@scalar/typebox").TObject<{
1154
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1155
+ }>, import("@scalar/typebox").TObject<{
1156
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1157
+ }>, import("@scalar/typebox").TObject<{
1158
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1150
1159
  }>, import("@scalar/typebox").TObject<{
1160
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1161
+ }>, import("@scalar/typebox").TObject<{
1162
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1163
+ }>]>, import("@scalar/typebox").TObject<{
1151
1164
  authorizationUrl: import("@scalar/typebox").TString;
1165
+ }>, import("@scalar/typebox").TObject<{
1166
+ 'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
1152
1167
  }>]>>;
1153
- password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1154
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1168
+ password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1169
+ refreshUrl: import("@scalar/typebox").TString;
1155
1170
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1156
1171
  }>, import("@scalar/typebox").TObject<{
1157
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1172
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1158
1173
  }>, import("@scalar/typebox").TObject<{
1174
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1175
+ }>, import("@scalar/typebox").TObject<{
1176
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1177
+ }>, import("@scalar/typebox").TObject<{
1178
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1179
+ }>, import("@scalar/typebox").TObject<{
1180
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1181
+ }>, import("@scalar/typebox").TObject<{
1182
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1183
+ }>]>, import("@scalar/typebox").TObject<{
1159
1184
  tokenUrl: import("@scalar/typebox").TString;
1185
+ }>, import("@scalar/typebox").TObject<{
1186
+ 'x-scalar-secret-username': import("@scalar/typebox").TString;
1187
+ 'x-scalar-secret-password': import("@scalar/typebox").TString;
1188
+ }>, import("@scalar/typebox").TObject<{
1189
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
1160
1190
  }>]>>;
1161
- clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1162
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1191
+ clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1192
+ refreshUrl: import("@scalar/typebox").TString;
1163
1193
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1164
1194
  }>, import("@scalar/typebox").TObject<{
1165
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1195
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1166
1196
  }>, import("@scalar/typebox").TObject<{
1197
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1198
+ }>, import("@scalar/typebox").TObject<{
1199
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1200
+ }>, import("@scalar/typebox").TObject<{
1201
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1202
+ }>, import("@scalar/typebox").TObject<{
1203
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1204
+ }>, import("@scalar/typebox").TObject<{
1205
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1206
+ }>]>, import("@scalar/typebox").TObject<{
1167
1207
  tokenUrl: import("@scalar/typebox").TString;
1208
+ }>, import("@scalar/typebox").TObject<{
1209
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
1168
1210
  }>]>>;
1169
- authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1170
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1211
+ authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1212
+ refreshUrl: import("@scalar/typebox").TString;
1171
1213
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1172
1214
  }>, import("@scalar/typebox").TObject<{
1173
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1215
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1216
+ }>, import("@scalar/typebox").TObject<{
1217
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1174
1218
  }>, import("@scalar/typebox").TObject<{
1219
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1220
+ }>, import("@scalar/typebox").TObject<{
1221
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1222
+ }>, import("@scalar/typebox").TObject<{
1223
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1224
+ }>, import("@scalar/typebox").TObject<{
1225
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1226
+ }>]>, import("@scalar/typebox").TObject<{
1175
1227
  authorizationUrl: import("@scalar/typebox").TString;
1176
1228
  tokenUrl: import("@scalar/typebox").TString;
1229
+ }>, import("@scalar/typebox").TObject<{
1230
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
1231
+ }>, import("@scalar/typebox").TObject<{
1232
+ 'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
1233
+ }>, import("@scalar/typebox").TObject<{
1234
+ 'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
1177
1235
  }>]>>;
1178
1236
  }>;
1179
1237
  ServerVariableObject: import("@scalar/typebox").TObject<{
@@ -1213,6 +1271,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1213
1271
  path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1214
1272
  }>>>;
1215
1273
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1274
+ 'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
1216
1275
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
1217
1276
  }>]>;
1218
1277
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1616,6 +1675,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
1616
1675
  cookie: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1617
1676
  }>>;
1618
1677
  }>>>;
1678
+ 'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
1619
1679
  }>, import("@scalar/typebox").TObject<{
1620
1680
  'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
1621
1681
  name: import("@scalar/typebox").TString;
@@ -2417,7 +2477,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
2417
2477
  SecuritySchemeObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2418
2478
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2419
2479
  }>, import("@scalar/typebox").TObject<{
2420
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2480
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
2421
2481
  }>, import("@scalar/typebox").TObject<{
2422
2482
  type: import("@scalar/typebox").TLiteral<"apiKey">;
2423
2483
  name: import("@scalar/typebox").TString;
@@ -2425,10 +2485,10 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
2425
2485
  }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2426
2486
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2427
2487
  }>, import("@scalar/typebox").TObject<{
2428
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2488
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
2429
2489
  }>, import("@scalar/typebox").TObject<{
2430
- 'x-scalar-secret-username': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2431
- 'x-scalar-secret-password': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2490
+ 'x-scalar-secret-username': import("@scalar/typebox").TString;
2491
+ 'x-scalar-secret-password': import("@scalar/typebox").TString;
2432
2492
  }>, import("@scalar/typebox").TObject<{
2433
2493
  type: import("@scalar/typebox").TLiteral<"http">;
2434
2494
  scheme: import("@scalar/typebox").TString;
@@ -2438,6 +2498,8 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
2438
2498
  }>, import("@scalar/typebox").TObject<{
2439
2499
  type: import("@scalar/typebox").TLiteral<"oauth2">;
2440
2500
  flows: import("@scalar/typebox").TRef<"OAuthFlowsObject">;
2501
+ }>, import("@scalar/typebox").TObject<{
2502
+ 'x-default-scopes': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
2441
2503
  }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2442
2504
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2443
2505
  }>, import("@scalar/typebox").TObject<{
@@ -2464,38 +2526,93 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
2464
2526
  mapping: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2465
2527
  }>;
2466
2528
  OAuthFlowsObject: import("@scalar/typebox").TObject<{
2467
- implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2468
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2529
+ implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2530
+ refreshUrl: import("@scalar/typebox").TString;
2469
2531
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
2470
2532
  }>, import("@scalar/typebox").TObject<{
2471
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2533
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
2534
+ }>, import("@scalar/typebox").TObject<{
2535
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
2536
+ }>, import("@scalar/typebox").TObject<{
2537
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2538
+ }>, import("@scalar/typebox").TObject<{
2539
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2472
2540
  }>, import("@scalar/typebox").TObject<{
2541
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2542
+ }>, import("@scalar/typebox").TObject<{
2543
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
2544
+ }>]>, import("@scalar/typebox").TObject<{
2473
2545
  authorizationUrl: import("@scalar/typebox").TString;
2546
+ }>, import("@scalar/typebox").TObject<{
2547
+ 'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
2474
2548
  }>]>>;
2475
- password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2476
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2549
+ password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2550
+ refreshUrl: import("@scalar/typebox").TString;
2477
2551
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
2478
2552
  }>, import("@scalar/typebox").TObject<{
2479
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2553
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
2480
2554
  }>, import("@scalar/typebox").TObject<{
2555
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
2556
+ }>, import("@scalar/typebox").TObject<{
2557
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2558
+ }>, import("@scalar/typebox").TObject<{
2559
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2560
+ }>, import("@scalar/typebox").TObject<{
2561
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2562
+ }>, import("@scalar/typebox").TObject<{
2563
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
2564
+ }>]>, import("@scalar/typebox").TObject<{
2481
2565
  tokenUrl: import("@scalar/typebox").TString;
2566
+ }>, import("@scalar/typebox").TObject<{
2567
+ 'x-scalar-secret-username': import("@scalar/typebox").TString;
2568
+ 'x-scalar-secret-password': import("@scalar/typebox").TString;
2569
+ }>, import("@scalar/typebox").TObject<{
2570
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
2482
2571
  }>]>>;
2483
- clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2484
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2572
+ clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2573
+ refreshUrl: import("@scalar/typebox").TString;
2485
2574
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
2486
2575
  }>, import("@scalar/typebox").TObject<{
2487
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2576
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
2488
2577
  }>, import("@scalar/typebox").TObject<{
2578
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
2579
+ }>, import("@scalar/typebox").TObject<{
2580
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2581
+ }>, import("@scalar/typebox").TObject<{
2582
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2583
+ }>, import("@scalar/typebox").TObject<{
2584
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2585
+ }>, import("@scalar/typebox").TObject<{
2586
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
2587
+ }>]>, import("@scalar/typebox").TObject<{
2489
2588
  tokenUrl: import("@scalar/typebox").TString;
2589
+ }>, import("@scalar/typebox").TObject<{
2590
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
2490
2591
  }>]>>;
2491
- authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2492
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2592
+ authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2593
+ refreshUrl: import("@scalar/typebox").TString;
2493
2594
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
2494
2595
  }>, import("@scalar/typebox").TObject<{
2495
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2596
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
2597
+ }>, import("@scalar/typebox").TObject<{
2598
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
2496
2599
  }>, import("@scalar/typebox").TObject<{
2600
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2601
+ }>, import("@scalar/typebox").TObject<{
2602
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
2603
+ }>, import("@scalar/typebox").TObject<{
2604
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2605
+ }>, import("@scalar/typebox").TObject<{
2606
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
2607
+ }>]>, import("@scalar/typebox").TObject<{
2497
2608
  authorizationUrl: import("@scalar/typebox").TString;
2498
2609
  tokenUrl: import("@scalar/typebox").TString;
2610
+ }>, import("@scalar/typebox").TObject<{
2611
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
2612
+ }>, import("@scalar/typebox").TObject<{
2613
+ 'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
2614
+ }>, import("@scalar/typebox").TObject<{
2615
+ 'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
2499
2616
  }>]>>;
2500
2617
  }>;
2501
2618
  ServerVariableObject: import("@scalar/typebox").TObject<{
@@ -2535,6 +2652,7 @@ export declare const InMemoryWorkspaceSchema: import("@scalar/typebox").TObject<
2535
2652
  path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2536
2653
  }>>>;
2537
2654
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2655
+ 'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
2538
2656
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
2539
2657
  }>]>;
2540
2658
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"inmemory-workspace.d.ts","sourceRoot":"","sources":["../../src/schemas/inmemory-workspace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AAOnD,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAelC,CAAA;AAEF,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
1
+ {"version":3,"file":"inmemory-workspace.d.ts","sourceRoot":"","sources":["../../src/schemas/inmemory-workspace.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AAOnD,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAelC,CAAA;AAEF,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,OAAO,uBAAuB,CAAC,CAAA"}
@@ -292,6 +292,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
292
292
  cookie: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
293
293
  }>>;
294
294
  }>>>;
295
+ 'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
295
296
  }>, import("@scalar/typebox").TObject<{
296
297
  'x-badges': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
297
298
  name: import("@scalar/typebox").TString;
@@ -1093,7 +1094,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
1093
1094
  SecuritySchemeObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1094
1095
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1095
1096
  }>, import("@scalar/typebox").TObject<{
1096
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1097
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1097
1098
  }>, import("@scalar/typebox").TObject<{
1098
1099
  type: import("@scalar/typebox").TLiteral<"apiKey">;
1099
1100
  name: import("@scalar/typebox").TString;
@@ -1101,10 +1102,10 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
1101
1102
  }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1102
1103
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1103
1104
  }>, import("@scalar/typebox").TObject<{
1104
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1105
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1105
1106
  }>, import("@scalar/typebox").TObject<{
1106
- 'x-scalar-secret-username': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1107
- 'x-scalar-secret-password': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1107
+ 'x-scalar-secret-username': import("@scalar/typebox").TString;
1108
+ 'x-scalar-secret-password': import("@scalar/typebox").TString;
1108
1109
  }>, import("@scalar/typebox").TObject<{
1109
1110
  type: import("@scalar/typebox").TLiteral<"http">;
1110
1111
  scheme: import("@scalar/typebox").TString;
@@ -1114,6 +1115,8 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
1114
1115
  }>, import("@scalar/typebox").TObject<{
1115
1116
  type: import("@scalar/typebox").TLiteral<"oauth2">;
1116
1117
  flows: import("@scalar/typebox").TRef<"OAuthFlowsObject">;
1118
+ }>, import("@scalar/typebox").TObject<{
1119
+ 'x-default-scopes': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TString>>;
1117
1120
  }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1118
1121
  description: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1119
1122
  }>, import("@scalar/typebox").TObject<{
@@ -1140,38 +1143,93 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
1140
1143
  mapping: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1141
1144
  }>;
1142
1145
  OAuthFlowsObject: import("@scalar/typebox").TObject<{
1143
- implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1144
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1146
+ implicit: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1147
+ refreshUrl: import("@scalar/typebox").TString;
1145
1148
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1146
1149
  }>, import("@scalar/typebox").TObject<{
1147
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1150
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1151
+ }>, import("@scalar/typebox").TObject<{
1152
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1153
+ }>, import("@scalar/typebox").TObject<{
1154
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1155
+ }>, import("@scalar/typebox").TObject<{
1156
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1148
1157
  }>, import("@scalar/typebox").TObject<{
1158
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1159
+ }>, import("@scalar/typebox").TObject<{
1160
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1161
+ }>]>, import("@scalar/typebox").TObject<{
1149
1162
  authorizationUrl: import("@scalar/typebox").TString;
1163
+ }>, import("@scalar/typebox").TObject<{
1164
+ 'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
1150
1165
  }>]>>;
1151
- password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1152
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1166
+ password: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1167
+ refreshUrl: import("@scalar/typebox").TString;
1153
1168
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1154
1169
  }>, import("@scalar/typebox").TObject<{
1155
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1170
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1156
1171
  }>, import("@scalar/typebox").TObject<{
1172
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1173
+ }>, import("@scalar/typebox").TObject<{
1174
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1175
+ }>, import("@scalar/typebox").TObject<{
1176
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1177
+ }>, import("@scalar/typebox").TObject<{
1178
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1179
+ }>, import("@scalar/typebox").TObject<{
1180
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1181
+ }>]>, import("@scalar/typebox").TObject<{
1157
1182
  tokenUrl: import("@scalar/typebox").TString;
1183
+ }>, import("@scalar/typebox").TObject<{
1184
+ 'x-scalar-secret-username': import("@scalar/typebox").TString;
1185
+ 'x-scalar-secret-password': import("@scalar/typebox").TString;
1186
+ }>, import("@scalar/typebox").TObject<{
1187
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
1158
1188
  }>]>>;
1159
- clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1160
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1189
+ clientCredentials: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1190
+ refreshUrl: import("@scalar/typebox").TString;
1161
1191
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1162
1192
  }>, import("@scalar/typebox").TObject<{
1163
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1193
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1164
1194
  }>, import("@scalar/typebox").TObject<{
1195
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1196
+ }>, import("@scalar/typebox").TObject<{
1197
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1198
+ }>, import("@scalar/typebox").TObject<{
1199
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1200
+ }>, import("@scalar/typebox").TObject<{
1201
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1202
+ }>, import("@scalar/typebox").TObject<{
1203
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1204
+ }>]>, import("@scalar/typebox").TObject<{
1165
1205
  tokenUrl: import("@scalar/typebox").TString;
1206
+ }>, import("@scalar/typebox").TObject<{
1207
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
1166
1208
  }>]>>;
1167
- authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1168
- refreshUrl: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1209
+ authorizationCode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1210
+ refreshUrl: import("@scalar/typebox").TString;
1169
1211
  scopes: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>;
1170
1212
  }>, import("@scalar/typebox").TObject<{
1171
- 'x-scalar-secret-token': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1213
+ 'x-scalar-secret-client-id': import("@scalar/typebox").TString;
1214
+ }>, import("@scalar/typebox").TObject<{
1215
+ 'x-scalar-secret-token': import("@scalar/typebox").TString;
1172
1216
  }>, import("@scalar/typebox").TObject<{
1217
+ 'x-scalar-security-query': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1218
+ }>, import("@scalar/typebox").TObject<{
1219
+ 'x-scalar-security-body': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TString>>;
1220
+ }>, import("@scalar/typebox").TObject<{
1221
+ 'x-tokenName': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1222
+ }>, import("@scalar/typebox").TObject<{
1223
+ 'x-scalar-credentials-location': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"header">, import("@scalar/typebox").TLiteral<"body">]>>;
1224
+ }>]>, import("@scalar/typebox").TObject<{
1173
1225
  authorizationUrl: import("@scalar/typebox").TString;
1174
1226
  tokenUrl: import("@scalar/typebox").TString;
1227
+ }>, import("@scalar/typebox").TObject<{
1228
+ 'x-scalar-secret-client-secret': import("@scalar/typebox").TString;
1229
+ }>, import("@scalar/typebox").TObject<{
1230
+ 'x-scalar-secret-redirect-uri': import("@scalar/typebox").TString;
1231
+ }>, import("@scalar/typebox").TObject<{
1232
+ 'x-usePkce': import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"SHA-256">, import("@scalar/typebox").TLiteral<"plain">, import("@scalar/typebox").TLiteral<"no">]>;
1175
1233
  }>]>>;
1176
1234
  }>;
1177
1235
  ServerVariableObject: import("@scalar/typebox").TObject<{
@@ -1211,6 +1269,7 @@ export declare const ReferenceConfigSchema: import("@scalar/typebox").TObject<{
1211
1269
  path: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1212
1270
  }>>>;
1213
1271
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1272
+ 'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
1214
1273
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
1215
1274
  }>]>;
1216
1275
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AAEnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAS7C;;;;GAIG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBjC,CAAA;AAED,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAElE,eAAO,MAAM,sBAAsB,EAAE,YAAY,CAAC,eAAe,CAgChE,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/schemas/reference-config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,MAAM,EAAQ,MAAM,iBAAiB,CAAA;AAEnD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,WAAW,CAAA;AAS7C;;;;GAIG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBjC,CAAA;AAED,MAAM,MAAM,eAAe,GAAG,MAAM,CAAC,OAAO,qBAAqB,CAAC,CAAA;AAElE,eAAO,MAAM,sBAAsB,EAAE,YAAY,CAAC,eAAe,CAgChE,CAAA"}