@scalar/workspace-store 0.49.3 → 0.51.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 (135) hide show
  1. package/CHANGELOG.md +108 -0
  2. package/dist/client.d.ts +2 -3
  3. package/dist/client.d.ts.map +1 -1
  4. package/dist/client.js +38 -15
  5. package/dist/entities/auth/schema.d.ts +10 -5
  6. package/dist/entities/auth/schema.d.ts.map +1 -1
  7. package/dist/events/bus.d.ts +70 -0
  8. package/dist/events/bus.d.ts.map +1 -1
  9. package/dist/events/bus.js +48 -11
  10. package/dist/events/definitions/analytics.d.ts +0 -12
  11. package/dist/events/definitions/analytics.d.ts.map +1 -1
  12. package/dist/events/definitions/auth.d.ts +44 -6
  13. package/dist/events/definitions/auth.d.ts.map +1 -1
  14. package/dist/events/definitions/index.d.ts +3 -2
  15. package/dist/events/definitions/index.d.ts.map +1 -1
  16. package/dist/events/definitions/log.d.ts +18 -0
  17. package/dist/events/definitions/log.d.ts.map +1 -0
  18. package/dist/events/definitions/log.js +1 -0
  19. package/dist/events/definitions/operation.d.ts +1 -1
  20. package/dist/events/definitions/operation.d.ts.map +1 -1
  21. package/dist/events/definitions/ui.d.ts +18 -1
  22. package/dist/events/definitions/ui.d.ts.map +1 -1
  23. package/dist/events/index.d.ts +1 -1
  24. package/dist/events/index.d.ts.map +1 -1
  25. package/dist/helpers/get-resolved-ref.d.ts +6 -0
  26. package/dist/helpers/get-resolved-ref.d.ts.map +1 -1
  27. package/dist/helpers/get-resolved-ref.js +9 -0
  28. package/dist/helpers/is-hidden.d.ts +8 -0
  29. package/dist/helpers/is-hidden.d.ts.map +1 -0
  30. package/dist/helpers/is-hidden.js +5 -0
  31. package/dist/mutators/auth.d.ts +22 -3
  32. package/dist/mutators/auth.d.ts.map +1 -1
  33. package/dist/mutators/auth.js +213 -37
  34. package/dist/mutators/cookie.d.ts.map +1 -1
  35. package/dist/mutators/cookie.js +3 -2
  36. package/dist/mutators/document.d.ts.map +1 -1
  37. package/dist/mutators/document.js +5 -4
  38. package/dist/mutators/environment.d.ts.map +1 -1
  39. package/dist/mutators/environment.js +12 -5
  40. package/dist/mutators/index.d.ts +4 -0
  41. package/dist/mutators/index.d.ts.map +1 -1
  42. package/dist/mutators/operation/body.d.ts.map +1 -1
  43. package/dist/mutators/operation/body.js +6 -2
  44. package/dist/mutators/operation/extensions.d.ts.map +1 -1
  45. package/dist/mutators/operation/extensions.js +5 -1
  46. package/dist/mutators/operation/history.d.ts.map +1 -1
  47. package/dist/mutators/operation/history.js +7 -3
  48. package/dist/mutators/operation/operation.d.ts.map +1 -1
  49. package/dist/mutators/operation/operation.js +15 -10
  50. package/dist/mutators/operation/parameters.d.ts.map +1 -1
  51. package/dist/mutators/operation/parameters.js +12 -5
  52. package/dist/mutators/server.d.ts.map +1 -1
  53. package/dist/mutators/server.js +2 -1
  54. package/dist/mutators/tag.d.ts.map +1 -1
  55. package/dist/mutators/tag.js +9 -4
  56. package/dist/navigation/helpers/get-openapi-object.d.ts.map +1 -1
  57. package/dist/navigation/helpers/get-openapi-object.js +5 -0
  58. package/dist/navigation/helpers/traverse-paths.d.ts.map +1 -1
  59. package/dist/navigation/helpers/traverse-paths.js +4 -3
  60. package/dist/navigation/helpers/traverse-schemas.d.ts.map +1 -1
  61. package/dist/navigation/helpers/traverse-schemas.js +9 -4
  62. package/dist/navigation/helpers/traverse-tags.d.ts.map +1 -1
  63. package/dist/navigation/helpers/traverse-tags.js +2 -1
  64. package/dist/navigation/helpers/traverse-webhooks.d.ts.map +1 -1
  65. package/dist/navigation/helpers/traverse-webhooks.js +4 -3
  66. package/dist/navigation/helpers/update-order-ids.d.ts.map +1 -1
  67. package/dist/navigation/helpers/update-order-ids.js +4 -1
  68. package/dist/persistence/index.d.ts +123 -80
  69. package/dist/persistence/index.d.ts.map +1 -1
  70. package/dist/persistence/index.js +233 -167
  71. package/dist/persistence/migrations/v2-team-to-local.d.ts +22 -5
  72. package/dist/persistence/migrations/v2-team-to-local.d.ts.map +1 -1
  73. package/dist/persistence/migrations/v2-team-to-local.js +195 -137
  74. package/dist/request-example/builder/body/build-request-body.d.ts.map +1 -1
  75. package/dist/request-example/builder/body/build-request-body.js +1 -1
  76. package/dist/request-example/builder/build-request.d.ts +24 -3
  77. package/dist/request-example/builder/build-request.d.ts.map +1 -1
  78. package/dist/request-example/builder/build-request.js +89 -18
  79. package/dist/request-example/builder/index.d.ts +2 -1
  80. package/dist/request-example/builder/index.d.ts.map +1 -1
  81. package/dist/request-example/builder/index.js +2 -1
  82. package/dist/request-example/builder/request-factory.d.ts.map +1 -1
  83. package/dist/request-example/builder/request-factory.js +5 -8
  84. package/dist/request-example/builder/resolve-request-factory-url.d.ts +18 -1
  85. package/dist/request-example/builder/resolve-request-factory-url.d.ts.map +1 -1
  86. package/dist/request-example/builder/resolve-request-factory-url.js +29 -4
  87. package/dist/request-example/context/environment.d.ts.map +1 -1
  88. package/dist/request-example/context/environment.js +2 -1
  89. package/dist/request-example/context/get-request-example-context.d.ts.map +1 -1
  90. package/dist/request-example/context/get-request-example-context.js +7 -0
  91. package/dist/request-example/context/headers.d.ts +28 -13
  92. package/dist/request-example/context/headers.d.ts.map +1 -1
  93. package/dist/request-example/context/headers.js +84 -19
  94. package/dist/request-example/context/index.d.ts +1 -0
  95. package/dist/request-example/context/index.d.ts.map +1 -1
  96. package/dist/request-example/context/index.js +1 -0
  97. package/dist/request-example/context/security/get-selected-security.d.ts.map +1 -1
  98. package/dist/request-example/context/security/get-selected-security.js +3 -6
  99. package/dist/request-example/context/servers.d.ts.map +1 -1
  100. package/dist/request-example/context/servers.js +3 -3
  101. package/dist/request-example/index.d.ts +3 -3
  102. package/dist/request-example/index.d.ts.map +1 -1
  103. package/dist/request-example/index.js +2 -2
  104. package/dist/resolve.d.ts.map +1 -1
  105. package/dist/resolve.js +1 -8
  106. package/dist/schemas/asyncapi/asyncapi-document.d.ts +79 -0
  107. package/dist/schemas/asyncapi/asyncapi-document.d.ts.map +1 -0
  108. package/dist/schemas/asyncapi/asyncapi-document.js +58 -0
  109. package/dist/schemas/extensions/document/workspace-managed-extensions.d.ts +25 -0
  110. package/dist/schemas/extensions/document/workspace-managed-extensions.d.ts.map +1 -0
  111. package/dist/schemas/extensions/document/workspace-managed-extensions.js +26 -0
  112. package/dist/schemas/inmemory-workspace.d.ts +3 -4631
  113. package/dist/schemas/inmemory-workspace.d.ts.map +1 -1
  114. package/dist/schemas/inmemory-workspace.js +1 -15
  115. package/dist/schemas/reference-config/index.d.ts +3 -2
  116. package/dist/schemas/reference-config/index.d.ts.map +1 -1
  117. package/dist/schemas/reference-config/settings.d.ts +2 -1
  118. package/dist/schemas/reference-config/settings.d.ts.map +1 -1
  119. package/dist/schemas/type-guards.d.ts +24 -0
  120. package/dist/schemas/type-guards.d.ts.map +1 -0
  121. package/dist/schemas/type-guards.js +35 -0
  122. package/dist/schemas/v3.1/openapi/index.d.ts +2 -1
  123. package/dist/schemas/v3.1/openapi/index.d.ts.map +1 -1
  124. package/dist/schemas/v3.1/openapi/index.js +3 -3
  125. package/dist/schemas/v3.1/strict/openapi-document.d.ts +74 -39
  126. package/dist/schemas/v3.1/strict/openapi-document.d.ts.map +1 -1
  127. package/dist/schemas/v3.1/strict/openapi-document.js +6 -2
  128. package/dist/schemas/workspace-specification/index.d.ts +1 -1
  129. package/dist/schemas/workspace.d.ts +15 -4377
  130. package/dist/schemas/workspace.d.ts.map +1 -1
  131. package/dist/schemas/workspace.js +13 -8
  132. package/dist/schemas.d.ts +3 -1
  133. package/dist/schemas.d.ts.map +1 -1
  134. package/dist/schemas.js +3 -1
  135. package/package.json +7 -7
@@ -1,4 +1,5 @@
1
1
  import { extensions } from '../../../schemas/extensions.js';
2
+ import { type WorkspaceManagedExtensions } from '../../../schemas/extensions/document/workspace-managed-extensions.js';
2
3
  import { type XScalarEnvironments } from '../../../schemas/extensions/document/x-scalar-environments.js';
3
4
  import { type XScalarIcon } from '../../../schemas/extensions/document/x-scalar-icon.js';
4
5
  import { type XScalarIsDirty } from '../../../schemas/extensions/document/x-scalar-is-dirty.js';
@@ -22,8 +23,9 @@ import { type ServerObject } from './server.js';
22
23
  import { type TagObject } from './tag.js';
23
24
  export declare const OpenApiExtensionsSchema: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
24
25
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
25
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
26
26
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
27
+ }>, import("@scalar/typebox").TObject<{
28
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
27
29
  }>, import("@scalar/typebox").TObject<{
28
30
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
29
31
  name: import("@scalar/typebox").TString;
@@ -81,10 +83,8 @@ export declare const OpenApiExtensionsSchema: import("@scalar/typebox").TInterse
81
83
  }>]>;
82
84
  export type OpenAPIExtensions = Partial<{
83
85
  'x-original-oas-version': string;
84
- /** Original document source url / when loading a document from an external source */
85
- 'x-scalar-original-source-url': string;
86
86
  [extensions.document.navigation]: TraversedDocument;
87
- }> & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty & XScalarWatchMode & XScalarRegistryMeta & XPreRequest & XPostResponse;
87
+ }> & WorkspaceManagedExtensions & XScalarOriginalDocumentHash & XTagGroups & XScalarEnvironments & XScalarActiveEnvironment & XScalarSelectedServer & XScalarIcon & XScalarOrder & XScalarCookies & XScalarIsDirty & XScalarWatchMode & XScalarRegistryMeta & XPreRequest & XPostResponse;
88
88
  export type OpenApiDocument = {
89
89
  /** REQUIRED. This string MUST be the version number of the OpenAPI Specification that the OpenAPI Document uses. The openapi field SHOULD be used by tooling to interpret the OpenAPI Document. This is not related to the API info.version string. */
90
90
  openapi: string;
@@ -1371,8 +1371,9 @@ export declare const OpenAPIDocumentSchema: import("@scalar/typebox").TImport<{
1371
1371
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
1372
1372
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1373
1373
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1374
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1375
1374
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
1375
+ }>, import("@scalar/typebox").TObject<{
1376
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
1376
1377
  }>, import("@scalar/typebox").TObject<{
1377
1378
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
1378
1379
  name: import("@scalar/typebox").TString;
@@ -2815,8 +2816,9 @@ export declare const ComponentsObjectSchema: import("@scalar/typebox").TImport<{
2815
2816
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
2816
2817
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2817
2818
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2818
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2819
2819
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
2820
+ }>, import("@scalar/typebox").TObject<{
2821
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
2820
2822
  }>, import("@scalar/typebox").TObject<{
2821
2823
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
2822
2824
  name: import("@scalar/typebox").TString;
@@ -4259,8 +4261,9 @@ export declare const SecurityRequirementObjectSchema: import("@scalar/typebox").
4259
4261
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
4260
4262
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4261
4263
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4262
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4263
4264
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
4265
+ }>, import("@scalar/typebox").TObject<{
4266
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
4264
4267
  }>, import("@scalar/typebox").TObject<{
4265
4268
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
4266
4269
  name: import("@scalar/typebox").TString;
@@ -5703,8 +5706,9 @@ export declare const TagObjectSchema: import("@scalar/typebox").TImport<{
5703
5706
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
5704
5707
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5705
5708
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5706
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5707
5709
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
5710
+ }>, import("@scalar/typebox").TObject<{
5711
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
5708
5712
  }>, import("@scalar/typebox").TObject<{
5709
5713
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
5710
5714
  name: import("@scalar/typebox").TString;
@@ -7147,8 +7151,9 @@ export declare const CallbackObjectSchema: import("@scalar/typebox").TImport<{
7147
7151
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
7148
7152
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
7149
7153
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
7150
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
7151
7154
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
7155
+ }>, import("@scalar/typebox").TObject<{
7156
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
7152
7157
  }>, import("@scalar/typebox").TObject<{
7153
7158
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
7154
7159
  name: import("@scalar/typebox").TString;
@@ -8591,8 +8596,9 @@ export declare const PathItemObjectSchema: import("@scalar/typebox").TImport<{
8591
8596
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
8592
8597
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8593
8598
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8594
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8595
8599
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
8600
+ }>, import("@scalar/typebox").TObject<{
8601
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
8596
8602
  }>, import("@scalar/typebox").TObject<{
8597
8603
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
8598
8604
  name: import("@scalar/typebox").TString;
@@ -10035,8 +10041,9 @@ export declare const PathsObjectSchema: import("@scalar/typebox").TImport<{
10035
10041
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
10036
10042
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
10037
10043
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
10038
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
10039
10044
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
10045
+ }>, import("@scalar/typebox").TObject<{
10046
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
10040
10047
  }>, import("@scalar/typebox").TObject<{
10041
10048
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
10042
10049
  name: import("@scalar/typebox").TString;
@@ -11479,8 +11486,9 @@ export declare const OperationObjectSchema: import("@scalar/typebox").TImport<{
11479
11486
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
11480
11487
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
11481
11488
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
11482
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
11483
11489
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
11490
+ }>, import("@scalar/typebox").TObject<{
11491
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
11484
11492
  }>, import("@scalar/typebox").TObject<{
11485
11493
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
11486
11494
  name: import("@scalar/typebox").TString;
@@ -12923,8 +12931,9 @@ export declare const SchemaObjectSchema: import("@scalar/typebox").TImport<{
12923
12931
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
12924
12932
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
12925
12933
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
12926
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
12927
12934
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
12935
+ }>, import("@scalar/typebox").TObject<{
12936
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
12928
12937
  }>, import("@scalar/typebox").TObject<{
12929
12938
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
12930
12939
  name: import("@scalar/typebox").TString;
@@ -14367,8 +14376,9 @@ export declare const EncodingObjectSchema: import("@scalar/typebox").TImport<{
14367
14376
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
14368
14377
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
14369
14378
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
14370
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
14371
14379
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
14380
+ }>, import("@scalar/typebox").TObject<{
14381
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
14372
14382
  }>, import("@scalar/typebox").TObject<{
14373
14383
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
14374
14384
  name: import("@scalar/typebox").TString;
@@ -15811,8 +15821,9 @@ export declare const MediaTypeObjectSchema: import("@scalar/typebox").TImport<{
15811
15821
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
15812
15822
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
15813
15823
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
15814
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
15815
15824
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
15825
+ }>, import("@scalar/typebox").TObject<{
15826
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
15816
15827
  }>, import("@scalar/typebox").TObject<{
15817
15828
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
15818
15829
  name: import("@scalar/typebox").TString;
@@ -17255,8 +17266,9 @@ export declare const HeaderObjectSchema: import("@scalar/typebox").TImport<{
17255
17266
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
17256
17267
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
17257
17268
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
17258
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
17259
17269
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
17270
+ }>, import("@scalar/typebox").TObject<{
17271
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
17260
17272
  }>, import("@scalar/typebox").TObject<{
17261
17273
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
17262
17274
  name: import("@scalar/typebox").TString;
@@ -18699,8 +18711,9 @@ export declare const ServerObjectSchema: import("@scalar/typebox").TImport<{
18699
18711
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
18700
18712
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
18701
18713
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
18702
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
18703
18714
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
18715
+ }>, import("@scalar/typebox").TObject<{
18716
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
18704
18717
  }>, import("@scalar/typebox").TObject<{
18705
18718
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
18706
18719
  name: import("@scalar/typebox").TString;
@@ -20143,8 +20156,9 @@ export declare const ExternalDocumentationObjectSchema: import("@scalar/typebox"
20143
20156
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
20144
20157
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
20145
20158
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
20146
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
20147
20159
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
20160
+ }>, import("@scalar/typebox").TObject<{
20161
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
20148
20162
  }>, import("@scalar/typebox").TObject<{
20149
20163
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
20150
20164
  name: import("@scalar/typebox").TString;
@@ -21587,8 +21601,9 @@ export declare const InfoObjectSchema: import("@scalar/typebox").TImport<{
21587
21601
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
21588
21602
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
21589
21603
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
21590
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
21591
21604
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
21605
+ }>, import("@scalar/typebox").TObject<{
21606
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
21592
21607
  }>, import("@scalar/typebox").TObject<{
21593
21608
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
21594
21609
  name: import("@scalar/typebox").TString;
@@ -23031,8 +23046,9 @@ export declare const ContactObjectSchema: import("@scalar/typebox").TImport<{
23031
23046
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
23032
23047
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
23033
23048
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
23034
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
23035
23049
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
23050
+ }>, import("@scalar/typebox").TObject<{
23051
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
23036
23052
  }>, import("@scalar/typebox").TObject<{
23037
23053
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
23038
23054
  name: import("@scalar/typebox").TString;
@@ -24475,8 +24491,9 @@ export declare const LicenseObjectSchema: import("@scalar/typebox").TImport<{
24475
24491
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
24476
24492
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
24477
24493
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
24478
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
24479
24494
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
24495
+ }>, import("@scalar/typebox").TObject<{
24496
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
24480
24497
  }>, import("@scalar/typebox").TObject<{
24481
24498
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
24482
24499
  name: import("@scalar/typebox").TString;
@@ -25919,8 +25936,9 @@ export declare const ResponseObjectSchema: import("@scalar/typebox").TImport<{
25919
25936
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
25920
25937
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
25921
25938
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
25922
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
25923
25939
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
25940
+ }>, import("@scalar/typebox").TObject<{
25941
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
25924
25942
  }>, import("@scalar/typebox").TObject<{
25925
25943
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
25926
25944
  name: import("@scalar/typebox").TString;
@@ -27363,8 +27381,9 @@ export declare const ResponsesObjectSchema: import("@scalar/typebox").TImport<{
27363
27381
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
27364
27382
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
27365
27383
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
27366
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
27367
27384
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
27385
+ }>, import("@scalar/typebox").TObject<{
27386
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
27368
27387
  }>, import("@scalar/typebox").TObject<{
27369
27388
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
27370
27389
  name: import("@scalar/typebox").TString;
@@ -28807,8 +28826,9 @@ export declare const ParameterObjectSchema: import("@scalar/typebox").TImport<{
28807
28826
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
28808
28827
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
28809
28828
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
28810
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
28811
28829
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
28830
+ }>, import("@scalar/typebox").TObject<{
28831
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
28812
28832
  }>, import("@scalar/typebox").TObject<{
28813
28833
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
28814
28834
  name: import("@scalar/typebox").TString;
@@ -30251,8 +30271,9 @@ export declare const ExampleObjectSchema: import("@scalar/typebox").TImport<{
30251
30271
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
30252
30272
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
30253
30273
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
30254
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
30255
30274
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
30275
+ }>, import("@scalar/typebox").TObject<{
30276
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
30256
30277
  }>, import("@scalar/typebox").TObject<{
30257
30278
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
30258
30279
  name: import("@scalar/typebox").TString;
@@ -31695,8 +31716,9 @@ export declare const RequestBodyObjectSchema: import("@scalar/typebox").TImport<
31695
31716
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
31696
31717
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
31697
31718
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
31698
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
31699
31719
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
31720
+ }>, import("@scalar/typebox").TObject<{
31721
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
31700
31722
  }>, import("@scalar/typebox").TObject<{
31701
31723
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
31702
31724
  name: import("@scalar/typebox").TString;
@@ -33139,8 +33161,9 @@ export declare const SecuritySchemesSchema: import("@scalar/typebox").TImport<{
33139
33161
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
33140
33162
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
33141
33163
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
33142
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
33143
33164
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
33165
+ }>, import("@scalar/typebox").TObject<{
33166
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
33144
33167
  }>, import("@scalar/typebox").TObject<{
33145
33168
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
33146
33169
  name: import("@scalar/typebox").TString;
@@ -34583,8 +34606,9 @@ export declare const SecuritySchemeObjectSchema: import("@scalar/typebox").TImpo
34583
34606
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
34584
34607
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
34585
34608
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
34586
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
34587
34609
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
34610
+ }>, import("@scalar/typebox").TObject<{
34611
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
34588
34612
  }>, import("@scalar/typebox").TObject<{
34589
34613
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
34590
34614
  name: import("@scalar/typebox").TString;
@@ -36027,8 +36051,9 @@ export declare const LinkObjectSchema: import("@scalar/typebox").TImport<{
36027
36051
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
36028
36052
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
36029
36053
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
36030
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
36031
36054
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
36055
+ }>, import("@scalar/typebox").TObject<{
36056
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
36032
36057
  }>, import("@scalar/typebox").TObject<{
36033
36058
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
36034
36059
  name: import("@scalar/typebox").TString;
@@ -37471,8 +37496,9 @@ export declare const XMLObjectSchema: import("@scalar/typebox").TImport<{
37471
37496
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
37472
37497
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
37473
37498
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
37474
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
37475
37499
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
37500
+ }>, import("@scalar/typebox").TObject<{
37501
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
37476
37502
  }>, import("@scalar/typebox").TObject<{
37477
37503
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
37478
37504
  name: import("@scalar/typebox").TString;
@@ -38915,8 +38941,9 @@ export declare const DiscriminatorObjectSchema: import("@scalar/typebox").TImpor
38915
38941
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
38916
38942
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
38917
38943
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
38918
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
38919
38944
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
38945
+ }>, import("@scalar/typebox").TObject<{
38946
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
38920
38947
  }>, import("@scalar/typebox").TObject<{
38921
38948
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
38922
38949
  name: import("@scalar/typebox").TString;
@@ -40359,8 +40386,9 @@ export declare const OAuthFlowsObjectSchema: import("@scalar/typebox").TImport<{
40359
40386
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
40360
40387
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
40361
40388
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
40362
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
40363
40389
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
40390
+ }>, import("@scalar/typebox").TObject<{
40391
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
40364
40392
  }>, import("@scalar/typebox").TObject<{
40365
40393
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
40366
40394
  name: import("@scalar/typebox").TString;
@@ -41803,8 +41831,9 @@ export declare const ServerVariableObjectSchema: import("@scalar/typebox").TImpo
41803
41831
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
41804
41832
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
41805
41833
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
41806
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
41807
41834
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
41835
+ }>, import("@scalar/typebox").TObject<{
41836
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
41808
41837
  }>, import("@scalar/typebox").TObject<{
41809
41838
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
41810
41839
  name: import("@scalar/typebox").TString;
@@ -43247,8 +43276,9 @@ export declare const TraversedDescriptionSchema: import("@scalar/typebox").TImpo
43247
43276
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
43248
43277
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
43249
43278
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
43250
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
43251
43279
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
43280
+ }>, import("@scalar/typebox").TObject<{
43281
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
43252
43282
  }>, import("@scalar/typebox").TObject<{
43253
43283
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
43254
43284
  name: import("@scalar/typebox").TString;
@@ -44691,8 +44721,9 @@ export declare const TraversedEntrySchema: import("@scalar/typebox").TImport<{
44691
44721
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
44692
44722
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
44693
44723
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
44694
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
44695
44724
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
44725
+ }>, import("@scalar/typebox").TObject<{
44726
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
44696
44727
  }>, import("@scalar/typebox").TObject<{
44697
44728
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
44698
44729
  name: import("@scalar/typebox").TString;
@@ -46135,8 +46166,9 @@ export declare const TraversedTagSchema: import("@scalar/typebox").TImport<{
46135
46166
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
46136
46167
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
46137
46168
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
46138
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
46139
46169
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
46170
+ }>, import("@scalar/typebox").TObject<{
46171
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
46140
46172
  }>, import("@scalar/typebox").TObject<{
46141
46173
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
46142
46174
  name: import("@scalar/typebox").TString;
@@ -47579,8 +47611,9 @@ export declare const TraversedOperationSchema: import("@scalar/typebox").TImport
47579
47611
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
47580
47612
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
47581
47613
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
47582
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
47583
47614
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
47615
+ }>, import("@scalar/typebox").TObject<{
47616
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
47584
47617
  }>, import("@scalar/typebox").TObject<{
47585
47618
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
47586
47619
  name: import("@scalar/typebox").TString;
@@ -49023,8 +49056,9 @@ export declare const TraversedSchemaSchema: import("@scalar/typebox").TImport<{
49023
49056
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
49024
49057
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
49025
49058
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
49026
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
49027
49059
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
49060
+ }>, import("@scalar/typebox").TObject<{
49061
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
49028
49062
  }>, import("@scalar/typebox").TObject<{
49029
49063
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
49030
49064
  name: import("@scalar/typebox").TString;
@@ -50467,8 +50501,9 @@ export declare const TraversedWebhookSchema: import("@scalar/typebox").TImport<{
50467
50501
  externalDocs: import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"ExternalDocumentationObject">>;
50468
50502
  }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
50469
50503
  'x-original-oas-version': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
50470
- 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
50471
50504
  "x-scalar-navigation": import("@scalar/typebox").TOptional<import("@scalar/typebox").TRef<"TraversedDocumentObject">>;
50505
+ }>, import("@scalar/typebox").TObject<{
50506
+ 'x-scalar-original-source-url': import("@scalar/typebox").TOptional<import("@scalar/typebox").TString>;
50472
50507
  }>, import("@scalar/typebox").TObject<{
50473
50508
  'x-tagGroups': import("@scalar/typebox").TOptional<import("@scalar/typebox").TArray<import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{
50474
50509
  name: import("@scalar/typebox").TString;