@scalar/workspace-store 0.17.0 → 0.18.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 (182) hide show
  1. package/CHANGELOG.md +64 -0
  2. package/dist/client.d.ts +38 -26
  3. package/dist/client.d.ts.map +1 -1
  4. package/dist/client.js +286 -84
  5. package/dist/client.js.map +3 -3
  6. package/dist/events/bus.d.ts +86 -0
  7. package/dist/events/bus.d.ts.map +1 -0
  8. package/dist/events/bus.js +58 -0
  9. package/dist/events/bus.js.map +7 -0
  10. package/dist/events/definitions/analytics.d.ts +27 -0
  11. package/dist/events/definitions/analytics.d.ts.map +1 -0
  12. package/dist/events/definitions/analytics.js +1 -0
  13. package/dist/events/definitions/analytics.js.map +7 -0
  14. package/dist/events/definitions/auth.d.ts +30 -0
  15. package/dist/events/definitions/auth.d.ts.map +1 -0
  16. package/dist/events/definitions/auth.js +1 -0
  17. package/dist/events/definitions/auth.js.map +7 -0
  18. package/dist/events/definitions/document.d.ts +14 -0
  19. package/dist/events/definitions/document.d.ts.map +1 -0
  20. package/dist/events/definitions/document.js +1 -0
  21. package/dist/events/definitions/document.js.map +7 -0
  22. package/dist/events/definitions/index.d.ts +10 -0
  23. package/dist/events/definitions/index.d.ts.map +1 -0
  24. package/dist/events/definitions/index.js +1 -0
  25. package/dist/events/definitions/index.js.map +7 -0
  26. package/dist/events/definitions/meta.d.ts +11 -0
  27. package/dist/events/definitions/meta.d.ts.map +1 -0
  28. package/dist/events/definitions/meta.js +1 -0
  29. package/dist/events/definitions/meta.js.map +7 -0
  30. package/dist/events/definitions/operation.d.ts +11 -0
  31. package/dist/events/definitions/operation.d.ts.map +1 -0
  32. package/dist/events/definitions/operation.js +1 -0
  33. package/dist/events/definitions/operation.js.map +7 -0
  34. package/dist/events/definitions/server.d.ts +50 -0
  35. package/dist/events/definitions/server.d.ts.map +1 -0
  36. package/dist/events/definitions/server.js +1 -0
  37. package/dist/events/definitions/server.js.map +7 -0
  38. package/dist/events/definitions/ui.d.ts +52 -0
  39. package/dist/events/definitions/ui.d.ts.map +1 -0
  40. package/dist/events/definitions/ui.js +1 -0
  41. package/dist/events/definitions/ui.js.map +7 -0
  42. package/dist/events/index.d.ts +2 -1
  43. package/dist/events/index.d.ts.map +1 -1
  44. package/dist/events/index.js +3 -1
  45. package/dist/events/index.js.map +2 -2
  46. package/dist/events/listeners.d.ts +2 -1
  47. package/dist/events/listeners.d.ts.map +1 -1
  48. package/dist/events/listeners.js.map +2 -2
  49. package/dist/events/{definitions.d.ts → old-definitions.d.ts} +35 -11
  50. package/dist/events/old-definitions.d.ts.map +1 -0
  51. package/dist/events/{definitions.js → old-definitions.js} +1 -1
  52. package/dist/events/old-definitions.js.map +7 -0
  53. package/dist/helpers/debounce.d.ts +28 -0
  54. package/dist/helpers/debounce.d.ts.map +1 -0
  55. package/dist/helpers/debounce.js +31 -0
  56. package/dist/helpers/debounce.js.map +7 -0
  57. package/dist/helpers/detect-changes-proxy.d.ts +47 -0
  58. package/dist/helpers/detect-changes-proxy.d.ts.map +1 -0
  59. package/dist/helpers/detect-changes-proxy.js +59 -0
  60. package/dist/helpers/detect-changes-proxy.js.map +7 -0
  61. package/dist/helpers/overrides-proxy.d.ts +17 -6
  62. package/dist/helpers/overrides-proxy.d.ts.map +1 -1
  63. package/dist/helpers/overrides-proxy.js +33 -18
  64. package/dist/helpers/overrides-proxy.js.map +3 -3
  65. package/dist/helpers/unpack-proxy.d.ts +6 -0
  66. package/dist/helpers/unpack-proxy.d.ts.map +1 -0
  67. package/dist/helpers/unpack-proxy.js +9 -0
  68. package/dist/helpers/unpack-proxy.js.map +7 -0
  69. package/dist/mutators/request.d.ts +1 -1
  70. package/dist/mutators/request.d.ts.map +1 -1
  71. package/dist/mutators/request.js.map +1 -1
  72. package/dist/navigation/get-navigation-options.d.ts +1 -1
  73. package/dist/navigation/get-navigation-options.d.ts.map +1 -1
  74. package/dist/navigation/get-navigation-options.js +66 -54
  75. package/dist/navigation/get-navigation-options.js.map +2 -2
  76. package/dist/navigation/helpers/get-tag.d.ts +7 -2
  77. package/dist/navigation/helpers/get-tag.d.ts.map +1 -1
  78. package/dist/navigation/helpers/get-tag.js +16 -2
  79. package/dist/navigation/helpers/get-tag.js.map +2 -2
  80. package/dist/navigation/helpers/traverse-description.d.ts +7 -2
  81. package/dist/navigation/helpers/traverse-description.d.ts.map +1 -1
  82. package/dist/navigation/helpers/traverse-description.js +24 -6
  83. package/dist/navigation/helpers/traverse-description.js.map +2 -2
  84. package/dist/navigation/helpers/traverse-document.d.ts +5 -2
  85. package/dist/navigation/helpers/traverse-document.d.ts.map +1 -1
  86. package/dist/navigation/helpers/traverse-document.js +53 -15
  87. package/dist/navigation/helpers/traverse-document.js.map +2 -2
  88. package/dist/navigation/helpers/traverse-paths.d.ts +9 -3
  89. package/dist/navigation/helpers/traverse-paths.d.ts.map +1 -1
  90. package/dist/navigation/helpers/traverse-paths.js +63 -9
  91. package/dist/navigation/helpers/traverse-paths.js.map +2 -2
  92. package/dist/navigation/helpers/traverse-schemas.d.ts +7 -8
  93. package/dist/navigation/helpers/traverse-schemas.d.ts.map +1 -1
  94. package/dist/navigation/helpers/traverse-schemas.js +35 -7
  95. package/dist/navigation/helpers/traverse-schemas.js.map +2 -2
  96. package/dist/navigation/helpers/traverse-tags.d.ts +8 -4
  97. package/dist/navigation/helpers/traverse-tags.d.ts.map +1 -1
  98. package/dist/navigation/helpers/traverse-tags.js +65 -17
  99. package/dist/navigation/helpers/traverse-tags.js.map +2 -2
  100. package/dist/navigation/helpers/traverse-webhooks.d.ts +9 -3
  101. package/dist/navigation/helpers/traverse-webhooks.d.ts.map +1 -1
  102. package/dist/navigation/helpers/traverse-webhooks.js +43 -17
  103. package/dist/navigation/helpers/traverse-webhooks.js.map +2 -2
  104. package/dist/navigation/types.d.ts +5 -24
  105. package/dist/navigation/types.d.ts.map +1 -1
  106. package/dist/persistence/index.d.ts +86 -0
  107. package/dist/persistence/index.d.ts.map +1 -0
  108. package/dist/persistence/index.js +196 -0
  109. package/dist/persistence/index.js.map +7 -0
  110. package/dist/persistence/indexdb.d.ts +87 -0
  111. package/dist/persistence/indexdb.d.ts.map +1 -0
  112. package/dist/persistence/indexdb.js +125 -0
  113. package/dist/persistence/indexdb.js.map +7 -0
  114. package/dist/{plugins.d.ts → plugins/bundler/index.d.ts} +1 -1
  115. package/dist/plugins/bundler/index.d.ts.map +1 -0
  116. package/dist/{plugins.js → plugins/bundler/index.js} +2 -2
  117. package/dist/{plugins.js.map → plugins/bundler/index.js.map} +1 -1
  118. package/dist/plugins/client/index.d.ts +3 -0
  119. package/dist/plugins/client/index.d.ts.map +1 -0
  120. package/dist/plugins/client/index.js +5 -0
  121. package/dist/plugins/client/index.js.map +7 -0
  122. package/dist/plugins/client/persistence.d.ts +13 -0
  123. package/dist/plugins/client/persistence.d.ts.map +1 -0
  124. package/dist/plugins/client/persistence.js +57 -0
  125. package/dist/plugins/client/persistence.js.map +7 -0
  126. package/dist/schemas/extensions.d.ts +1 -0
  127. package/dist/schemas/extensions.d.ts.map +1 -1
  128. package/dist/schemas/extensions.js +1 -0
  129. package/dist/schemas/extensions.js.map +2 -2
  130. package/dist/schemas/inmemory-workspace.d.ts +73 -14
  131. package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
  132. package/dist/schemas/inmemory-workspace.js +1 -9
  133. package/dist/schemas/inmemory-workspace.js.map +2 -2
  134. package/dist/schemas/navigation.d.ts +128 -1
  135. package/dist/schemas/navigation.d.ts.map +1 -1
  136. package/dist/schemas/navigation.js +20 -1
  137. package/dist/schemas/navigation.js.map +2 -2
  138. package/dist/schemas/reference-config/index.d.ts +233 -200
  139. package/dist/schemas/reference-config/index.d.ts.map +1 -1
  140. package/dist/schemas/reference-config/index.js.map +2 -2
  141. package/dist/schemas/reference-config/settings.d.ts +35 -3
  142. package/dist/schemas/reference-config/settings.d.ts.map +1 -1
  143. package/dist/schemas/reference-config/settings.js +1 -1
  144. package/dist/schemas/reference-config/settings.js.map +1 -1
  145. package/dist/schemas/v3.1/strict/openapi-document.d.ts +1165 -71
  146. package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
  147. package/dist/schemas/v3.1/strict/openapi-document.js +16 -9
  148. package/dist/schemas/v3.1/strict/openapi-document.js.map +2 -2
  149. package/dist/schemas/v3.1/strict/parameter.d.ts +23 -1
  150. package/dist/schemas/v3.1/strict/parameter.d.ts.map +1 -1
  151. package/dist/schemas/v3.1/strict/parameter.js +5 -1
  152. package/dist/schemas/v3.1/strict/parameter.js.map +2 -2
  153. package/dist/schemas/v3.1/strict/ref-definitions.d.ts +2 -0
  154. package/dist/schemas/v3.1/strict/ref-definitions.d.ts.map +1 -1
  155. package/dist/schemas/v3.1/strict/ref-definitions.js +4 -1
  156. package/dist/schemas/v3.1/strict/ref-definitions.js.map +2 -2
  157. package/dist/schemas/v3.1/strict/schema.d.ts +2 -2
  158. package/dist/schemas/v3.1/strict/schema.d.ts.map +1 -1
  159. package/dist/schemas/v3.1/strict/schema.js +1 -1
  160. package/dist/schemas/v3.1/strict/schema.js.map +2 -2
  161. package/dist/schemas/workspace-specification/config.d.ts +35 -8
  162. package/dist/schemas/workspace-specification/config.d.ts.map +1 -1
  163. package/dist/schemas/workspace-specification/config.js.map +1 -1
  164. package/dist/schemas/workspace-specification/index.d.ts +38 -5
  165. package/dist/schemas/workspace-specification/index.d.ts.map +1 -1
  166. package/dist/schemas/workspace-specification/index.js.map +1 -1
  167. package/dist/schemas/workspace.d.ts +245 -17
  168. package/dist/schemas/workspace.d.ts.map +1 -1
  169. package/dist/schemas/workspace.js +3 -1
  170. package/dist/schemas/workspace.js.map +2 -2
  171. package/dist/server.d.ts +4 -3
  172. package/dist/server.d.ts.map +1 -1
  173. package/dist/server.js +7 -6
  174. package/dist/server.js.map +2 -2
  175. package/dist/workspace-plugin.d.ts +49 -0
  176. package/dist/workspace-plugin.d.ts.map +1 -0
  177. package/dist/workspace-plugin.js +1 -0
  178. package/dist/workspace-plugin.js.map +7 -0
  179. package/package.json +22 -10
  180. package/dist/events/definitions.d.ts.map +0 -1
  181. package/dist/events/definitions.js.map +0 -7
  182. package/dist/plugins.d.ts.map +0 -1
@@ -1,3 +1,4 @@
1
+ import { type ThemeId } from '@scalar/themes';
1
2
  import { type AvailableClients } from '@scalar/types/snippetz';
2
3
  import { extensions } from '../schemas/extensions.js';
3
4
  import { type XScalarClientConfigCookies } from '../schemas/v3.1/strict/client-config-extensions/x-scalar-client-config-cookies.js';
@@ -311,7 +312,7 @@ export declare const WorkspaceDocumentSchema: import("@scalar/typebox").TInterse
311
312
  'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"deprecated">, import("@scalar/typebox").TLiteral<"experimental">, import("@scalar/typebox").TLiteral<"stable">]>>;
312
313
  }>]>;
313
314
  SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
314
- _: import("@scalar/typebox").TString;
315
+ __scalar_: import("@scalar/typebox").TString;
315
316
  }>, import("@scalar/typebox").TObject<{
316
317
  name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
317
318
  title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -1036,6 +1037,10 @@ export declare const WorkspaceDocumentSchema: import("@scalar/typebox").TInterse
1036
1037
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1037
1038
  }>, import("@scalar/typebox").TObject<{
1038
1039
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1040
+ }>, import("@scalar/typebox").TObject<{
1041
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1042
+ }>, import("@scalar/typebox").TObject<{
1043
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1039
1044
  }>]>, import("@scalar/typebox").TObject<{
1040
1045
  style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1041
1046
  explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -1069,6 +1074,10 @@ export declare const WorkspaceDocumentSchema: import("@scalar/typebox").TInterse
1069
1074
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1070
1075
  }>, import("@scalar/typebox").TObject<{
1071
1076
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1077
+ }>, import("@scalar/typebox").TObject<{
1078
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1079
+ }>, import("@scalar/typebox").TObject<{
1080
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1072
1081
  }>]>, import("@scalar/typebox").TObject<{
1073
1082
  content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
1074
1083
  }>]>]>;
@@ -1261,12 +1270,16 @@ export declare const WorkspaceDocumentSchema: import("@scalar/typebox").TInterse
1261
1270
  }>>>;
1262
1271
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1263
1272
  'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
1264
- "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
1273
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1274
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1275
+ "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
1265
1276
  }>, import("@scalar/typebox").TObject<{
1266
1277
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
1267
1278
  name: import("@scalar/typebox").TString;
1268
1279
  tags: import("@scalar/typebox").TArray<import("@scalar/typebox").TString>;
1269
1280
  }>>>;
1281
+ }>, import("@scalar/typebox").TObject<{
1282
+ 'x-scalar-original-document-hash': import("@scalar/typebox").TString;
1270
1283
  }>]>]>;
1271
1284
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1272
1285
  id: import("@scalar/typebox").TString;
@@ -1365,20 +1378,42 @@ export declare const WorkspaceDocumentSchema: import("@scalar/typebox").TInterse
1365
1378
  }>, import("@scalar/typebox").TObject<{
1366
1379
  type: import("@scalar/typebox").TLiteral<"example">;
1367
1380
  name: import("@scalar/typebox").TString;
1381
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1382
+ id: import("@scalar/typebox").TString;
1383
+ title: import("@scalar/typebox").TString;
1384
+ }>, import("@scalar/typebox").TObject<{
1385
+ type: import("@scalar/typebox").TLiteral<"document">;
1386
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
1387
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1388
+ id: import("@scalar/typebox").TString;
1389
+ title: import("@scalar/typebox").TString;
1390
+ }>, import("@scalar/typebox").TObject<{
1391
+ type: import("@scalar/typebox").TLiteral<"models">;
1392
+ name: import("@scalar/typebox").TString;
1393
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
1368
1394
  }>]>]>;
1395
+ TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1396
+ id: import("@scalar/typebox").TString;
1397
+ title: import("@scalar/typebox").TString;
1398
+ }>, import("@scalar/typebox").TObject<{
1399
+ type: import("@scalar/typebox").TLiteral<"document">;
1400
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
1401
+ }>]>;
1369
1402
  }, "OpenApiDocument">]>;
1370
1403
  export type WorkspaceDocument = WorkspaceDocumentMeta & OpenApiDocument;
1371
1404
  export declare const WorkspaceMetaSchema: import("@scalar/typebox").TObject<{
1372
1405
  "x-scalar-dark-mode": import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
1373
1406
  "x-scalar-default-client": import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<import("@scalar/typebox").TLiteral<"c/libcurl" | "clojure/clj_http" | "csharp/httpclient" | "csharp/restsharp" | "dart/http" | "fsharp/httpclient" | "go/native" | "http/http1.1" | "java/asynchttp" | "java/nethttp" | "java/okhttp" | "java/unirest" | "js/axios" | "js/fetch" | "js/jquery" | "js/ofetch" | "js/xhr" | "kotlin/okhttp" | "node/axios" | "node/fetch" | "node/ofetch" | "node/undici" | "objc/nsurlsession" | "ocaml/cohttp" | "php/curl" | "php/guzzle" | "powershell/restmethod" | "powershell/webrequest" | "python/python3" | "python/requests" | "python/httpx_sync" | "python/httpx_async" | "r/httr" | "ruby/native" | "rust/reqwest" | "shell/curl" | "shell/httpie" | "shell/wget" | "swift/nsurlsession">[]>>;
1374
1407
  "x-scalar-active-document": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1375
- "x-scalar-theme": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1408
+ "x-scalar-theme": import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<import("@scalar/typebox").TLiteral<"default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "laserwave" | "none">[]>>;
1409
+ "x-scalar-sidebar-width": import("@scalar/typebox").TOptional<import("@scalar/typebox").TNumber>;
1376
1410
  }>;
1377
1411
  export type WorkspaceMeta = {
1378
1412
  [extensions.workspace.darkMode]?: boolean;
1379
1413
  [extensions.workspace.defaultClient]?: AvailableClients[number];
1380
1414
  [extensions.workspace.activeDocument]?: string;
1381
- [extensions.workspace.theme]?: string;
1415
+ [extensions.workspace.theme]?: ThemeId;
1416
+ [extensions.workspace.sidebarWidth]?: number;
1382
1417
  };
1383
1418
  export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObject<{
1384
1419
  'x-scalar-client-config-environments': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TObject<{
@@ -1690,7 +1725,7 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
1690
1725
  'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"deprecated">, import("@scalar/typebox").TLiteral<"experimental">, import("@scalar/typebox").TLiteral<"stable">]>>;
1691
1726
  }>]>;
1692
1727
  SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1693
- _: import("@scalar/typebox").TString;
1728
+ __scalar_: import("@scalar/typebox").TString;
1694
1729
  }>, import("@scalar/typebox").TObject<{
1695
1730
  name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1696
1731
  title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -2415,6 +2450,10 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
2415
2450
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2416
2451
  }>, import("@scalar/typebox").TObject<{
2417
2452
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2453
+ }>, import("@scalar/typebox").TObject<{
2454
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2455
+ }>, import("@scalar/typebox").TObject<{
2456
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2418
2457
  }>]>, import("@scalar/typebox").TObject<{
2419
2458
  style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2420
2459
  explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -2448,6 +2487,10 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
2448
2487
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2449
2488
  }>, import("@scalar/typebox").TObject<{
2450
2489
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2490
+ }>, import("@scalar/typebox").TObject<{
2491
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2492
+ }>, import("@scalar/typebox").TObject<{
2493
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2451
2494
  }>]>, import("@scalar/typebox").TObject<{
2452
2495
  content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
2453
2496
  }>]>]>;
@@ -2640,12 +2683,16 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
2640
2683
  }>>>;
2641
2684
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2642
2685
  'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
2643
- "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
2686
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2687
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
2688
+ "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
2644
2689
  }>, import("@scalar/typebox").TObject<{
2645
2690
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
2646
2691
  name: import("@scalar/typebox").TString;
2647
2692
  tags: import("@scalar/typebox").TArray<import("@scalar/typebox").TString>;
2648
2693
  }>>>;
2694
+ }>, import("@scalar/typebox").TObject<{
2695
+ 'x-scalar-original-document-hash': import("@scalar/typebox").TString;
2649
2696
  }>]>]>;
2650
2697
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2651
2698
  id: import("@scalar/typebox").TString;
@@ -2744,7 +2791,27 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
2744
2791
  }>, import("@scalar/typebox").TObject<{
2745
2792
  type: import("@scalar/typebox").TLiteral<"example">;
2746
2793
  name: import("@scalar/typebox").TString;
2794
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2795
+ id: import("@scalar/typebox").TString;
2796
+ title: import("@scalar/typebox").TString;
2797
+ }>, import("@scalar/typebox").TObject<{
2798
+ type: import("@scalar/typebox").TLiteral<"document">;
2799
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
2800
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2801
+ id: import("@scalar/typebox").TString;
2802
+ title: import("@scalar/typebox").TString;
2803
+ }>, import("@scalar/typebox").TObject<{
2804
+ type: import("@scalar/typebox").TLiteral<"models">;
2805
+ name: import("@scalar/typebox").TString;
2806
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
2747
2807
  }>]>]>;
2808
+ TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2809
+ id: import("@scalar/typebox").TString;
2810
+ title: import("@scalar/typebox").TString;
2811
+ }>, import("@scalar/typebox").TObject<{
2812
+ type: import("@scalar/typebox").TLiteral<"document">;
2813
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
2814
+ }>]>;
2748
2815
  }, "ServerObject">>>;
2749
2816
  'x-scalar-client-config-security-schemes': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TImport<{
2750
2817
  ComponentsObject: import("@scalar/typebox").TObject<{
@@ -3041,7 +3108,7 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
3041
3108
  'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"deprecated">, import("@scalar/typebox").TLiteral<"experimental">, import("@scalar/typebox").TLiteral<"stable">]>>;
3042
3109
  }>]>;
3043
3110
  SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
3044
- _: import("@scalar/typebox").TString;
3111
+ __scalar_: import("@scalar/typebox").TString;
3045
3112
  }>, import("@scalar/typebox").TObject<{
3046
3113
  name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
3047
3114
  title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -3766,6 +3833,10 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
3766
3833
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3767
3834
  }>, import("@scalar/typebox").TObject<{
3768
3835
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3836
+ }>, import("@scalar/typebox").TObject<{
3837
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3838
+ }>, import("@scalar/typebox").TObject<{
3839
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3769
3840
  }>]>, import("@scalar/typebox").TObject<{
3770
3841
  style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
3771
3842
  explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -3799,6 +3870,10 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
3799
3870
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3800
3871
  }>, import("@scalar/typebox").TObject<{
3801
3872
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3873
+ }>, import("@scalar/typebox").TObject<{
3874
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3875
+ }>, import("@scalar/typebox").TObject<{
3876
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
3802
3877
  }>]>, import("@scalar/typebox").TObject<{
3803
3878
  content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
3804
3879
  }>]>]>;
@@ -3991,12 +4066,16 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
3991
4066
  }>>>;
3992
4067
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
3993
4068
  'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
3994
- "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
4069
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4070
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
4071
+ "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
3995
4072
  }>, import("@scalar/typebox").TObject<{
3996
4073
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
3997
4074
  name: import("@scalar/typebox").TString;
3998
4075
  tags: import("@scalar/typebox").TArray<import("@scalar/typebox").TString>;
3999
4076
  }>>>;
4077
+ }>, import("@scalar/typebox").TObject<{
4078
+ 'x-scalar-original-document-hash': import("@scalar/typebox").TString;
4000
4079
  }>]>]>;
4001
4080
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4002
4081
  id: import("@scalar/typebox").TString;
@@ -4095,7 +4174,27 @@ export declare const WorkspaceExtensionsSchema: import("@scalar/typebox").TObjec
4095
4174
  }>, import("@scalar/typebox").TObject<{
4096
4175
  type: import("@scalar/typebox").TLiteral<"example">;
4097
4176
  name: import("@scalar/typebox").TString;
4177
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4178
+ id: import("@scalar/typebox").TString;
4179
+ title: import("@scalar/typebox").TString;
4180
+ }>, import("@scalar/typebox").TObject<{
4181
+ type: import("@scalar/typebox").TLiteral<"document">;
4182
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
4183
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4184
+ id: import("@scalar/typebox").TString;
4185
+ title: import("@scalar/typebox").TString;
4186
+ }>, import("@scalar/typebox").TObject<{
4187
+ type: import("@scalar/typebox").TLiteral<"models">;
4188
+ name: import("@scalar/typebox").TString;
4189
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
4098
4190
  }>]>]>;
4191
+ TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4192
+ id: import("@scalar/typebox").TString;
4193
+ title: import("@scalar/typebox").TString;
4194
+ }>, import("@scalar/typebox").TObject<{
4195
+ type: import("@scalar/typebox").TLiteral<"document">;
4196
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
4197
+ }>]>;
4099
4198
  }, "SecuritySchemeObject">>>;
4100
4199
  }>;
4101
4200
  export type WorkspaceExtensions = {
@@ -4108,7 +4207,8 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
4108
4207
  "x-scalar-dark-mode": import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
4109
4208
  "x-scalar-default-client": import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<import("@scalar/typebox").TLiteral<"c/libcurl" | "clojure/clj_http" | "csharp/httpclient" | "csharp/restsharp" | "dart/http" | "fsharp/httpclient" | "go/native" | "http/http1.1" | "java/asynchttp" | "java/nethttp" | "java/okhttp" | "java/unirest" | "js/axios" | "js/fetch" | "js/jquery" | "js/ofetch" | "js/xhr" | "kotlin/okhttp" | "node/axios" | "node/fetch" | "node/ofetch" | "node/undici" | "objc/nsurlsession" | "ocaml/cohttp" | "php/curl" | "php/guzzle" | "powershell/restmethod" | "powershell/webrequest" | "python/python3" | "python/requests" | "python/httpx_sync" | "python/httpx_async" | "r/httr" | "ruby/native" | "rust/reqwest" | "shell/curl" | "shell/httpie" | "shell/wget" | "swift/nsurlsession">[]>>;
4110
4209
  "x-scalar-active-document": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4111
- "x-scalar-theme": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4210
+ "x-scalar-theme": import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<import("@scalar/typebox").TLiteral<"default" | "alternate" | "moon" | "purple" | "solarized" | "bluePlanet" | "deepSpace" | "saturn" | "kepler" | "elysiajs" | "fastify" | "mars" | "laserwave" | "none">[]>>;
4211
+ "x-scalar-sidebar-width": import("@scalar/typebox").TOptional<import("@scalar/typebox").TNumber>;
4112
4212
  }>, import("@scalar/typebox").TObject<{
4113
4213
  documents: import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4114
4214
  "x-scalar-active-auth": import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -4408,7 +4508,7 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
4408
4508
  'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"deprecated">, import("@scalar/typebox").TLiteral<"experimental">, import("@scalar/typebox").TLiteral<"stable">]>>;
4409
4509
  }>]>;
4410
4510
  SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4411
- _: import("@scalar/typebox").TString;
4511
+ __scalar_: import("@scalar/typebox").TString;
4412
4512
  }>, import("@scalar/typebox").TObject<{
4413
4513
  name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4414
4514
  title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -5133,6 +5233,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
5133
5233
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5134
5234
  }>, import("@scalar/typebox").TObject<{
5135
5235
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5236
+ }>, import("@scalar/typebox").TObject<{
5237
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5238
+ }>, import("@scalar/typebox").TObject<{
5239
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5136
5240
  }>]>, import("@scalar/typebox").TObject<{
5137
5241
  style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5138
5242
  explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -5166,6 +5270,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
5166
5270
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5167
5271
  }>, import("@scalar/typebox").TObject<{
5168
5272
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5273
+ }>, import("@scalar/typebox").TObject<{
5274
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5275
+ }>, import("@scalar/typebox").TObject<{
5276
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5169
5277
  }>]>, import("@scalar/typebox").TObject<{
5170
5278
  content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
5171
5279
  }>]>]>;
@@ -5358,12 +5466,16 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
5358
5466
  }>>>;
5359
5467
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5360
5468
  'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
5361
- "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
5469
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5470
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
5471
+ "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
5362
5472
  }>, import("@scalar/typebox").TObject<{
5363
5473
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
5364
5474
  name: import("@scalar/typebox").TString;
5365
5475
  tags: import("@scalar/typebox").TArray<import("@scalar/typebox").TString>;
5366
5476
  }>>>;
5477
+ }>, import("@scalar/typebox").TObject<{
5478
+ 'x-scalar-original-document-hash': import("@scalar/typebox").TString;
5367
5479
  }>]>]>;
5368
5480
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5369
5481
  id: import("@scalar/typebox").TString;
@@ -5462,7 +5574,27 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
5462
5574
  }>, import("@scalar/typebox").TObject<{
5463
5575
  type: import("@scalar/typebox").TLiteral<"example">;
5464
5576
  name: import("@scalar/typebox").TString;
5577
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5578
+ id: import("@scalar/typebox").TString;
5579
+ title: import("@scalar/typebox").TString;
5580
+ }>, import("@scalar/typebox").TObject<{
5581
+ type: import("@scalar/typebox").TLiteral<"document">;
5582
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
5583
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5584
+ id: import("@scalar/typebox").TString;
5585
+ title: import("@scalar/typebox").TString;
5586
+ }>, import("@scalar/typebox").TObject<{
5587
+ type: import("@scalar/typebox").TLiteral<"models">;
5588
+ name: import("@scalar/typebox").TString;
5589
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
5465
5590
  }>]>]>;
5591
+ TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5592
+ id: import("@scalar/typebox").TString;
5593
+ title: import("@scalar/typebox").TString;
5594
+ }>, import("@scalar/typebox").TObject<{
5595
+ type: import("@scalar/typebox").TLiteral<"document">;
5596
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
5597
+ }>]>;
5466
5598
  }, "OpenApiDocument">]>>;
5467
5599
  /** Active document is possibly undefined if we attempt to lookup with an invalid key */
5468
5600
  activeDocument: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TUndefined, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
@@ -5763,7 +5895,7 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
5763
5895
  'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"deprecated">, import("@scalar/typebox").TLiteral<"experimental">, import("@scalar/typebox").TLiteral<"stable">]>>;
5764
5896
  }>]>;
5765
5897
  SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5766
- _: import("@scalar/typebox").TString;
5898
+ __scalar_: import("@scalar/typebox").TString;
5767
5899
  }>, import("@scalar/typebox").TObject<{
5768
5900
  name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5769
5901
  title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -6488,6 +6620,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
6488
6620
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6489
6621
  }>, import("@scalar/typebox").TObject<{
6490
6622
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6623
+ }>, import("@scalar/typebox").TObject<{
6624
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6625
+ }>, import("@scalar/typebox").TObject<{
6626
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6491
6627
  }>]>, import("@scalar/typebox").TObject<{
6492
6628
  style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
6493
6629
  explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -6521,6 +6657,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
6521
6657
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6522
6658
  }>, import("@scalar/typebox").TObject<{
6523
6659
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6660
+ }>, import("@scalar/typebox").TObject<{
6661
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6662
+ }>, import("@scalar/typebox").TObject<{
6663
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6524
6664
  }>]>, import("@scalar/typebox").TObject<{
6525
6665
  content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
6526
6666
  }>]>]>;
@@ -6713,12 +6853,16 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
6713
6853
  }>>>;
6714
6854
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
6715
6855
  'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
6716
- "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
6856
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
6857
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
6858
+ "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
6717
6859
  }>, import("@scalar/typebox").TObject<{
6718
6860
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
6719
6861
  name: import("@scalar/typebox").TString;
6720
6862
  tags: import("@scalar/typebox").TArray<import("@scalar/typebox").TString>;
6721
6863
  }>>>;
6864
+ }>, import("@scalar/typebox").TObject<{
6865
+ 'x-scalar-original-document-hash': import("@scalar/typebox").TString;
6722
6866
  }>]>]>;
6723
6867
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
6724
6868
  id: import("@scalar/typebox").TString;
@@ -6817,7 +6961,27 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
6817
6961
  }>, import("@scalar/typebox").TObject<{
6818
6962
  type: import("@scalar/typebox").TLiteral<"example">;
6819
6963
  name: import("@scalar/typebox").TString;
6964
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
6965
+ id: import("@scalar/typebox").TString;
6966
+ title: import("@scalar/typebox").TString;
6967
+ }>, import("@scalar/typebox").TObject<{
6968
+ type: import("@scalar/typebox").TLiteral<"document">;
6969
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
6970
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
6971
+ id: import("@scalar/typebox").TString;
6972
+ title: import("@scalar/typebox").TString;
6973
+ }>, import("@scalar/typebox").TObject<{
6974
+ type: import("@scalar/typebox").TLiteral<"models">;
6975
+ name: import("@scalar/typebox").TString;
6976
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
6820
6977
  }>]>]>;
6978
+ TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
6979
+ id: import("@scalar/typebox").TString;
6980
+ title: import("@scalar/typebox").TString;
6981
+ }>, import("@scalar/typebox").TObject<{
6982
+ type: import("@scalar/typebox").TLiteral<"document">;
6983
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
6984
+ }>]>;
6821
6985
  }, "OpenApiDocument">]>]>;
6822
6986
  }>, import("@scalar/typebox").TObject<{
6823
6987
  'x-scalar-client-config-environments': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TObject<{
@@ -7129,7 +7293,7 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
7129
7293
  'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"deprecated">, import("@scalar/typebox").TLiteral<"experimental">, import("@scalar/typebox").TLiteral<"stable">]>>;
7130
7294
  }>]>;
7131
7295
  SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
7132
- _: import("@scalar/typebox").TString;
7296
+ __scalar_: import("@scalar/typebox").TString;
7133
7297
  }>, import("@scalar/typebox").TObject<{
7134
7298
  name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
7135
7299
  title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -7854,6 +8018,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
7854
8018
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
7855
8019
  }>, import("@scalar/typebox").TObject<{
7856
8020
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8021
+ }>, import("@scalar/typebox").TObject<{
8022
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8023
+ }>, import("@scalar/typebox").TObject<{
8024
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
7857
8025
  }>]>, import("@scalar/typebox").TObject<{
7858
8026
  style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
7859
8027
  explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -7887,6 +8055,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
7887
8055
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
7888
8056
  }>, import("@scalar/typebox").TObject<{
7889
8057
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8058
+ }>, import("@scalar/typebox").TObject<{
8059
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8060
+ }>, import("@scalar/typebox").TObject<{
8061
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
7890
8062
  }>]>, import("@scalar/typebox").TObject<{
7891
8063
  content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
7892
8064
  }>]>]>;
@@ -8079,12 +8251,16 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
8079
8251
  }>>>;
8080
8252
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8081
8253
  'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
8082
- "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
8254
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8255
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
8256
+ "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
8083
8257
  }>, import("@scalar/typebox").TObject<{
8084
8258
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
8085
8259
  name: import("@scalar/typebox").TString;
8086
8260
  tags: import("@scalar/typebox").TArray<import("@scalar/typebox").TString>;
8087
8261
  }>>>;
8262
+ }>, import("@scalar/typebox").TObject<{
8263
+ 'x-scalar-original-document-hash': import("@scalar/typebox").TString;
8088
8264
  }>]>]>;
8089
8265
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8090
8266
  id: import("@scalar/typebox").TString;
@@ -8183,7 +8359,27 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
8183
8359
  }>, import("@scalar/typebox").TObject<{
8184
8360
  type: import("@scalar/typebox").TLiteral<"example">;
8185
8361
  name: import("@scalar/typebox").TString;
8362
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8363
+ id: import("@scalar/typebox").TString;
8364
+ title: import("@scalar/typebox").TString;
8365
+ }>, import("@scalar/typebox").TObject<{
8366
+ type: import("@scalar/typebox").TLiteral<"document">;
8367
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
8368
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8369
+ id: import("@scalar/typebox").TString;
8370
+ title: import("@scalar/typebox").TString;
8371
+ }>, import("@scalar/typebox").TObject<{
8372
+ type: import("@scalar/typebox").TLiteral<"models">;
8373
+ name: import("@scalar/typebox").TString;
8374
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
8186
8375
  }>]>]>;
8376
+ TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8377
+ id: import("@scalar/typebox").TString;
8378
+ title: import("@scalar/typebox").TString;
8379
+ }>, import("@scalar/typebox").TObject<{
8380
+ type: import("@scalar/typebox").TLiteral<"document">;
8381
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
8382
+ }>]>;
8187
8383
  }, "ServerObject">>>;
8188
8384
  'x-scalar-client-config-security-schemes': import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TImport<{
8189
8385
  ComponentsObject: import("@scalar/typebox").TObject<{
@@ -8480,7 +8676,7 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
8480
8676
  'x-scalar-stability': import("@scalar/typebox").TOptional<import("@scalar/typebox").TUnion<[import("@scalar/typebox").TLiteral<"deprecated">, import("@scalar/typebox").TLiteral<"experimental">, import("@scalar/typebox").TLiteral<"stable">]>>;
8481
8677
  }>]>;
8482
8678
  SchemaObject: import("@scalar/typebox").TUnion<[import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8483
- _: import("@scalar/typebox").TString;
8679
+ __scalar_: import("@scalar/typebox").TString;
8484
8680
  }>, import("@scalar/typebox").TObject<{
8485
8681
  name: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8486
8682
  title: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
@@ -9205,6 +9401,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
9205
9401
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9206
9402
  }>, import("@scalar/typebox").TObject<{
9207
9403
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9404
+ }>, import("@scalar/typebox").TObject<{
9405
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9406
+ }>, import("@scalar/typebox").TObject<{
9407
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9208
9408
  }>]>, import("@scalar/typebox").TObject<{
9209
9409
  style: import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
9210
9410
  explode: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
@@ -9238,6 +9438,10 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
9238
9438
  allowEmptyValue: import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9239
9439
  }>, import("@scalar/typebox").TObject<{
9240
9440
  'x-global': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9441
+ }>, import("@scalar/typebox").TObject<{
9442
+ 'x-internal': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9443
+ }>, import("@scalar/typebox").TObject<{
9444
+ 'x-scalar-ignore': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9241
9445
  }>]>, import("@scalar/typebox").TObject<{
9242
9446
  content: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRecord<import("@scalar/typebox").TString, import("@scalar/typebox").TRef<"MediaTypeObject">>>;
9243
9447
  }>]>]>;
@@ -9430,12 +9634,16 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
9430
9634
  }>>>;
9431
9635
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
9432
9636
  'x-scalar-selected-security': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"SecurityRequirementObject">>>;
9433
- "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
9637
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
9638
+ 'x-scalar-watch-mode': import("@scalar/typebox").TOptional<import("@scalar/typebox").TBoolean>;
9639
+ "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
9434
9640
  }>, import("@scalar/typebox").TObject<{
9435
9641
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TObject<{
9436
9642
  name: import("@scalar/typebox").TString;
9437
9643
  tags: import("@scalar/typebox").TArray<import("@scalar/typebox").TString>;
9438
9644
  }>>>;
9645
+ }>, import("@scalar/typebox").TObject<{
9646
+ 'x-scalar-original-document-hash': import("@scalar/typebox").TString;
9439
9647
  }>]>]>;
9440
9648
  TraversedDescriptionObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
9441
9649
  id: import("@scalar/typebox").TString;
@@ -9534,7 +9742,27 @@ export declare const WorkspaceSchema: import("@scalar/typebox").TIntersect<[impo
9534
9742
  }>, import("@scalar/typebox").TObject<{
9535
9743
  type: import("@scalar/typebox").TLiteral<"example">;
9536
9744
  name: import("@scalar/typebox").TString;
9745
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
9746
+ id: import("@scalar/typebox").TString;
9747
+ title: import("@scalar/typebox").TString;
9748
+ }>, import("@scalar/typebox").TObject<{
9749
+ type: import("@scalar/typebox").TLiteral<"document">;
9750
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
9751
+ }>]>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
9752
+ id: import("@scalar/typebox").TString;
9753
+ title: import("@scalar/typebox").TString;
9754
+ }>, import("@scalar/typebox").TObject<{
9755
+ type: import("@scalar/typebox").TLiteral<"models">;
9756
+ name: import("@scalar/typebox").TString;
9757
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
9537
9758
  }>]>]>;
9759
+ TraversedDocumentObject: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
9760
+ id: import("@scalar/typebox").TString;
9761
+ title: import("@scalar/typebox").TString;
9762
+ }>, import("@scalar/typebox").TObject<{
9763
+ type: import("@scalar/typebox").TLiteral<"document">;
9764
+ children: import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TRef<"TraversedEntryObject">>>;
9765
+ }>]>;
9538
9766
  }, "SecuritySchemeObject">>>;
9539
9767
  }>]>;
9540
9768
  export type Workspace = WorkspaceMeta & {