@swagger-api/apidom-ns-openapi-3-1 1.0.0-beta.1 → 1.0.0-beta.10

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 (204) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/LICENSES/AFL-3.0.txt +182 -0
  3. package/LICENSES/BSD-3-Clause.txt +26 -0
  4. package/NOTICE +26 -0
  5. package/dist/apidom-ns-openapi-3-1.browser.js +747 -323
  6. package/dist/apidom-ns-openapi-3-1.browser.min.js +1 -1
  7. package/package.json +10 -10
  8. package/src/elements/Callback.cjs +3 -0
  9. package/src/elements/Callback.mjs +4 -0
  10. package/src/elements/Components.cjs +3 -0
  11. package/src/elements/Components.mjs +4 -0
  12. package/src/elements/Contact.cjs +3 -0
  13. package/src/elements/Contact.mjs +4 -0
  14. package/src/elements/Discriminator.cjs +3 -0
  15. package/src/elements/Discriminator.mjs +4 -0
  16. package/src/elements/Encoding.cjs +3 -0
  17. package/src/elements/Encoding.mjs +4 -0
  18. package/src/elements/Example.cjs +3 -0
  19. package/src/elements/Example.mjs +4 -0
  20. package/src/elements/ExternalDocumentation.cjs +3 -0
  21. package/src/elements/ExternalDocumentation.mjs +4 -0
  22. package/src/elements/Header.cjs +3 -0
  23. package/src/elements/Header.mjs +3 -0
  24. package/src/elements/Info.cjs +3 -0
  25. package/src/elements/Info.mjs +3 -0
  26. package/src/elements/JsonSchemaDialect.cjs +3 -0
  27. package/src/elements/JsonSchemaDialect.mjs +4 -0
  28. package/src/elements/License.cjs +3 -0
  29. package/src/elements/License.mjs +4 -0
  30. package/src/elements/Link.cjs +3 -0
  31. package/src/elements/Link.mjs +4 -0
  32. package/src/elements/MediaType.cjs +3 -0
  33. package/src/elements/MediaType.mjs +3 -0
  34. package/src/elements/OAuthFlow.cjs +3 -0
  35. package/src/elements/OAuthFlow.mjs +4 -0
  36. package/src/elements/OAuthFlows.cjs +3 -0
  37. package/src/elements/OAuthFlows.mjs +4 -0
  38. package/src/elements/OpenApi3-1.cjs +3 -0
  39. package/src/elements/OpenApi3-1.mjs +3 -0
  40. package/src/elements/Openapi.cjs +3 -0
  41. package/src/elements/Openapi.mjs +4 -0
  42. package/src/elements/Operation.cjs +3 -0
  43. package/src/elements/Operation.mjs +3 -0
  44. package/src/elements/Parameter.cjs +3 -0
  45. package/src/elements/Parameter.mjs +3 -0
  46. package/src/elements/PathItem.cjs +3 -0
  47. package/src/elements/PathItem.mjs +3 -0
  48. package/src/elements/Paths.cjs +3 -0
  49. package/src/elements/Paths.mjs +4 -0
  50. package/src/elements/Reference.cjs +3 -0
  51. package/src/elements/Reference.mjs +4 -0
  52. package/src/elements/RequestBody.cjs +3 -0
  53. package/src/elements/RequestBody.mjs +4 -0
  54. package/src/elements/Response.cjs +3 -0
  55. package/src/elements/Response.mjs +4 -0
  56. package/src/elements/Responses.cjs +3 -0
  57. package/src/elements/Responses.mjs +4 -0
  58. package/src/elements/Schema.cjs +3 -4
  59. package/src/elements/Schema.mjs +3 -4
  60. package/src/elements/SecurityRequirement.cjs +3 -0
  61. package/src/elements/SecurityRequirement.mjs +4 -0
  62. package/src/elements/SecurityScheme.cjs +3 -0
  63. package/src/elements/SecurityScheme.mjs +4 -0
  64. package/src/elements/Server.cjs +3 -0
  65. package/src/elements/Server.mjs +4 -0
  66. package/src/elements/ServerVariable.cjs +3 -0
  67. package/src/elements/ServerVariable.mjs +4 -0
  68. package/src/elements/Tag.cjs +3 -0
  69. package/src/elements/Tag.mjs +4 -0
  70. package/src/elements/Xml.cjs +3 -0
  71. package/src/elements/Xml.mjs +4 -0
  72. package/src/elements/nces/ComponentsPathItems.cjs +3 -0
  73. package/src/elements/nces/ComponentsPathItems.mjs +4 -0
  74. package/src/elements/nces/Webhooks.cjs +3 -0
  75. package/src/elements/nces/Webhooks.mjs +4 -0
  76. package/src/index.mjs +2 -1
  77. package/src/media-types.cjs +11 -0
  78. package/src/media-types.mjs +12 -0
  79. package/src/namespace.cjs +3 -0
  80. package/src/namespace.mjs +5 -1
  81. package/src/predicates.cjs +108 -0
  82. package/src/predicates.mjs +108 -0
  83. package/src/refractor/plugins/normalize-header-examples/index.cjs +4 -0
  84. package/src/refractor/plugins/normalize-header-examples/index.mjs +4 -0
  85. package/src/refractor/plugins/normalize-operation-ids.cjs +4 -0
  86. package/src/refractor/plugins/normalize-operation-ids.mjs +4 -0
  87. package/src/refractor/plugins/normalize-parameter-examples.cjs +4 -0
  88. package/src/refractor/plugins/normalize-parameter-examples.mjs +4 -0
  89. package/src/refractor/plugins/normalize-parameters.cjs +4 -0
  90. package/src/refractor/plugins/normalize-parameters.mjs +4 -0
  91. package/src/refractor/plugins/normalize-security-requirements.cjs +4 -0
  92. package/src/refractor/plugins/normalize-security-requirements.mjs +4 -0
  93. package/src/refractor/plugins/normalize-servers.cjs +6 -2
  94. package/src/refractor/plugins/normalize-servers.mjs +6 -2
  95. package/src/refractor/plugins/replace-empty-element.cjs +4 -0
  96. package/src/refractor/plugins/replace-empty-element.mjs +4 -0
  97. package/src/refractor/specification.cjs +1 -0
  98. package/src/refractor/specification.mjs +1 -0
  99. package/src/refractor/toolbox.cjs +19 -1
  100. package/src/refractor/toolbox.mjs +15 -1
  101. package/src/refractor/visitors/open-api-3-1/JsonSchemaDialectVisitor.cjs +7 -0
  102. package/src/refractor/visitors/open-api-3-1/JsonSchemaDialectVisitor.mjs +6 -0
  103. package/src/refractor/visitors/open-api-3-1/WebhooksVisitor.cjs +7 -0
  104. package/src/refractor/visitors/open-api-3-1/WebhooksVisitor.mjs +6 -0
  105. package/src/refractor/visitors/open-api-3-1/callback/index.cjs +8 -12
  106. package/src/refractor/visitors/open-api-3-1/callback/index.mjs +7 -11
  107. package/src/refractor/visitors/open-api-3-1/components/PathItemsVisitor.cjs +7 -0
  108. package/src/refractor/visitors/open-api-3-1/components/PathItemsVisitor.mjs +6 -0
  109. package/src/refractor/visitors/open-api-3-1/components/SchemasVisitor.cjs +7 -0
  110. package/src/refractor/visitors/open-api-3-1/components/SchemasVisitor.mjs +8 -0
  111. package/src/refractor/visitors/open-api-3-1/components/index.cjs +8 -12
  112. package/src/refractor/visitors/open-api-3-1/components/index.mjs +7 -11
  113. package/src/refractor/visitors/open-api-3-1/contact/index.cjs +8 -12
  114. package/src/refractor/visitors/open-api-3-1/contact/index.mjs +7 -11
  115. package/src/refractor/visitors/open-api-3-1/distriminator/index.cjs +8 -12
  116. package/src/refractor/visitors/open-api-3-1/distriminator/index.mjs +7 -11
  117. package/src/refractor/visitors/open-api-3-1/encoding/index.cjs +8 -12
  118. package/src/refractor/visitors/open-api-3-1/encoding/index.mjs +7 -11
  119. package/src/refractor/visitors/open-api-3-1/example/index.cjs +8 -12
  120. package/src/refractor/visitors/open-api-3-1/example/index.mjs +7 -11
  121. package/src/refractor/visitors/open-api-3-1/external-documentation/index.cjs +8 -12
  122. package/src/refractor/visitors/open-api-3-1/external-documentation/index.mjs +7 -11
  123. package/src/refractor/visitors/open-api-3-1/header/index.cjs +8 -12
  124. package/src/refractor/visitors/open-api-3-1/header/index.mjs +7 -11
  125. package/src/refractor/visitors/open-api-3-1/index.cjs +6 -0
  126. package/src/refractor/visitors/open-api-3-1/index.mjs +8 -1
  127. package/src/refractor/visitors/open-api-3-1/info/index.cjs +8 -12
  128. package/src/refractor/visitors/open-api-3-1/info/index.mjs +7 -11
  129. package/src/refractor/visitors/open-api-3-1/license/index.cjs +8 -12
  130. package/src/refractor/visitors/open-api-3-1/license/index.mjs +7 -11
  131. package/src/refractor/visitors/open-api-3-1/link/index.cjs +8 -12
  132. package/src/refractor/visitors/open-api-3-1/link/index.mjs +7 -11
  133. package/src/refractor/visitors/open-api-3-1/media-type/index.cjs +8 -12
  134. package/src/refractor/visitors/open-api-3-1/media-type/index.mjs +7 -11
  135. package/src/refractor/visitors/open-api-3-1/oauth-flow/index.cjs +8 -12
  136. package/src/refractor/visitors/open-api-3-1/oauth-flow/index.mjs +7 -11
  137. package/src/refractor/visitors/open-api-3-1/oauth-flows/index.cjs +8 -12
  138. package/src/refractor/visitors/open-api-3-1/oauth-flows/index.mjs +7 -11
  139. package/src/refractor/visitors/open-api-3-1/operation/index.cjs +8 -12
  140. package/src/refractor/visitors/open-api-3-1/operation/index.mjs +7 -11
  141. package/src/refractor/visitors/open-api-3-1/parameter/index.cjs +8 -12
  142. package/src/refractor/visitors/open-api-3-1/parameter/index.mjs +7 -11
  143. package/src/refractor/visitors/open-api-3-1/path-item/index.cjs +8 -12
  144. package/src/refractor/visitors/open-api-3-1/path-item/index.mjs +7 -11
  145. package/src/refractor/visitors/open-api-3-1/paths/index.cjs +8 -12
  146. package/src/refractor/visitors/open-api-3-1/paths/index.mjs +7 -11
  147. package/src/refractor/visitors/open-api-3-1/reference/index.cjs +8 -12
  148. package/src/refractor/visitors/open-api-3-1/reference/index.mjs +7 -11
  149. package/src/refractor/visitors/open-api-3-1/request-body/index.cjs +8 -12
  150. package/src/refractor/visitors/open-api-3-1/request-body/index.mjs +7 -11
  151. package/src/refractor/visitors/open-api-3-1/response/index.cjs +8 -12
  152. package/src/refractor/visitors/open-api-3-1/response/index.mjs +7 -11
  153. package/src/refractor/visitors/open-api-3-1/responses/index.cjs +8 -12
  154. package/src/refractor/visitors/open-api-3-1/responses/index.mjs +7 -11
  155. package/src/refractor/visitors/open-api-3-1/schema/$defsVisitor.cjs +7 -0
  156. package/src/refractor/visitors/open-api-3-1/schema/$defsVisitor.mjs +6 -0
  157. package/src/refractor/visitors/open-api-3-1/schema/$refVisitor.cjs +3 -0
  158. package/src/refractor/visitors/open-api-3-1/schema/$refVisitor.mjs +3 -0
  159. package/src/refractor/visitors/open-api-3-1/schema/$vocabularyVisitor.cjs +3 -0
  160. package/src/refractor/visitors/open-api-3-1/schema/$vocabularyVisitor.mjs +3 -0
  161. package/src/refractor/visitors/open-api-3-1/schema/AllOfVisitor.cjs +7 -0
  162. package/src/refractor/visitors/open-api-3-1/schema/AllOfVisitor.mjs +6 -0
  163. package/src/refractor/visitors/open-api-3-1/schema/AnyOfVisitor.cjs +7 -0
  164. package/src/refractor/visitors/open-api-3-1/schema/AnyOfVisitor.mjs +6 -0
  165. package/src/refractor/visitors/open-api-3-1/schema/DependentRequiredVisitor.cjs +3 -0
  166. package/src/refractor/visitors/open-api-3-1/schema/DependentRequiredVisitor.mjs +3 -0
  167. package/src/refractor/visitors/open-api-3-1/schema/DependentSchemasVisitor.cjs +7 -0
  168. package/src/refractor/visitors/open-api-3-1/schema/DependentSchemasVisitor.mjs +6 -0
  169. package/src/refractor/visitors/open-api-3-1/schema/EnumVisitor.cjs +3 -0
  170. package/src/refractor/visitors/open-api-3-1/schema/EnumVisitor.mjs +3 -0
  171. package/src/refractor/visitors/open-api-3-1/schema/ExamplesVisitor.cjs +3 -0
  172. package/src/refractor/visitors/open-api-3-1/schema/ExamplesVisitor.mjs +3 -0
  173. package/src/refractor/visitors/open-api-3-1/schema/OneOfVisitor.cjs +7 -0
  174. package/src/refractor/visitors/open-api-3-1/schema/OneOfVisitor.mjs +6 -0
  175. package/src/refractor/visitors/open-api-3-1/schema/ParentSchemaAwareVisitor.cjs +4 -0
  176. package/src/refractor/visitors/open-api-3-1/schema/ParentSchemaAwareVisitor.mjs +4 -0
  177. package/src/refractor/visitors/open-api-3-1/schema/PatternPropertiesVisitor.cjs +7 -0
  178. package/src/refractor/visitors/open-api-3-1/schema/PatternPropertiesVisitor.mjs +6 -0
  179. package/src/refractor/visitors/open-api-3-1/schema/PrefixItemsVisitor.cjs +7 -0
  180. package/src/refractor/visitors/open-api-3-1/schema/PrefixItemsVisitor.mjs +6 -0
  181. package/src/refractor/visitors/open-api-3-1/schema/PropertiesVisitor.cjs +7 -0
  182. package/src/refractor/visitors/open-api-3-1/schema/PropertiesVisitor.mjs +6 -0
  183. package/src/refractor/visitors/open-api-3-1/schema/RequiredVisitor.cjs +3 -0
  184. package/src/refractor/visitors/open-api-3-1/schema/RequiredVisitor.mjs +3 -0
  185. package/src/refractor/visitors/open-api-3-1/schema/TypeVisitor.cjs +3 -0
  186. package/src/refractor/visitors/open-api-3-1/schema/TypeVisitor.mjs +3 -0
  187. package/src/refractor/visitors/open-api-3-1/schema/index.cjs +8 -1
  188. package/src/refractor/visitors/open-api-3-1/schema/index.mjs +7 -1
  189. package/src/refractor/visitors/open-api-3-1/security-requirement/index.cjs +8 -12
  190. package/src/refractor/visitors/open-api-3-1/security-requirement/index.mjs +7 -11
  191. package/src/refractor/visitors/open-api-3-1/security-scheme/index.cjs +8 -12
  192. package/src/refractor/visitors/open-api-3-1/security-scheme/index.mjs +7 -11
  193. package/src/refractor/visitors/open-api-3-1/server/index.cjs +8 -12
  194. package/src/refractor/visitors/open-api-3-1/server/index.mjs +7 -11
  195. package/src/refractor/visitors/open-api-3-1/server-variable/index.cjs +8 -12
  196. package/src/refractor/visitors/open-api-3-1/server-variable/index.mjs +7 -11
  197. package/src/refractor/visitors/open-api-3-1/tag/index.cjs +8 -12
  198. package/src/refractor/visitors/open-api-3-1/tag/index.mjs +7 -11
  199. package/src/refractor/visitors/open-api-3-1/xml/index.cjs +8 -12
  200. package/src/refractor/visitors/open-api-3-1/xml/index.mjs +7 -11
  201. package/src/traversal/visitor.cjs +4 -1
  202. package/src/traversal/visitor.mjs +4 -1
  203. package/types/apidom-ns-openapi-3-1.d.ts +3014 -0
  204. package/types/dist.d.ts +0 -1778
@@ -0,0 +1,3014 @@
1
+ import { AlternatingVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
2
+ import { AlternatingVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
3
+ import { ArrayElement } from '@swagger-api/apidom-core';
4
+ import { Attributes } from '@swagger-api/apidom-core';
5
+ import { BooleanElement } from '@swagger-api/apidom-core';
6
+ import { CallbackElement as CallbackElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
7
+ import { CallbackVisitor as CallbackVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
8
+ import { CallbackVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
9
+ import { Class } from 'ts-mixer/dist/types/types.js';
10
+ import { ComponentsCallbacksElement } from '@swagger-api/apidom-ns-openapi-3-0';
11
+ import { ComponentsCallbacksVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
12
+ import { ComponentsCallbacksVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
13
+ import { ComponentsElement as ComponentsElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
14
+ import { ComponentsExamplesElement } from '@swagger-api/apidom-ns-openapi-3-0';
15
+ import { ComponentsExamplesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
16
+ import { ComponentsExamplesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
17
+ import { ComponentsHeadersElement } from '@swagger-api/apidom-ns-openapi-3-0';
18
+ import { ComponentsHeadersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
19
+ import { ComponentsHeadersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
20
+ import { ComponentsLinksElement } from '@swagger-api/apidom-ns-openapi-3-0';
21
+ import { ComponentsLinksVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
22
+ import { ComponentsLinksVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
23
+ import { ComponentsParametersElement } from '@swagger-api/apidom-ns-openapi-3-0';
24
+ import { ComponentsParametersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
25
+ import { ComponentsParametersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
26
+ import { ComponentsRequestBodiesElement } from '@swagger-api/apidom-ns-openapi-3-0';
27
+ import { ComponentsRequestBodiesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
28
+ import { ComponentsRequestBodiesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
29
+ import { ComponentsResponsesElement } from '@swagger-api/apidom-ns-openapi-3-0';
30
+ import { ComponentsResponsesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
31
+ import { ComponentsResponsesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
32
+ import { ComponentsSchemasElement } from '@swagger-api/apidom-ns-openapi-3-0';
33
+ import { ComponentsSecuritySchemesElement } from '@swagger-api/apidom-ns-openapi-3-0';
34
+ import { ComponentsSecuritySchemesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
35
+ import { ComponentsSecuritySchemesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
36
+ import { ComponentsVisitor as ComponentsVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
37
+ import { ComponentsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
38
+ import { ContactElement as ContactElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
39
+ import { ContactVisitor as ContactVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
40
+ import { ContactVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
41
+ import { ContentVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
42
+ import { ContentVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
43
+ import { DiscriminatorElement as DiscriminatorElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
44
+ import { DiscriminatorMappingElement } from '@swagger-api/apidom-ns-openapi-3-0';
45
+ import { DiscriminatorMappingVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
46
+ import { DiscriminatorMappingVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
47
+ import { DiscriminatorVisitor as DiscriminatorVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
48
+ import { DiscriminatorVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
49
+ import { Element as Element_2 } from '@swagger-api/apidom-core';
50
+ import type { ElementPredicate } from '@swagger-api/apidom-core';
51
+ import { EncodingElement as EncodingElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
52
+ import { EncodingHeadersElement } from '@swagger-api/apidom-ns-openapi-3-0';
53
+ import { EncodingHeadersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
54
+ import { EncodingHeadersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
55
+ import { EncodingVisitor as EncodingVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
56
+ import { EncodingVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
57
+ import { ExampleElement as ExampleElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
58
+ import { ExampleExternalValueVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
59
+ import { ExampleExternalValueVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
60
+ import { ExamplesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
61
+ import { ExamplesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
62
+ import { ExampleVisitor as ExampleVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
63
+ import { ExampleVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
64
+ import { ExternalDocumentationElement as ExternalDocumentationElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
65
+ import { ExternalDocumentationVisitor as ExternalDocumentationVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
66
+ import { ExternalDocumentationVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
67
+ import { FallbackVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
68
+ import { FallbackVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
69
+ import { FixedFieldsVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
70
+ import { FixedFieldsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
71
+ import { hasElementSourceMap } from '@swagger-api/apidom-core';
72
+ import { HeaderContentElement } from '@swagger-api/apidom-ns-openapi-3-0';
73
+ import { HeaderContentVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
74
+ import { HeaderContentVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
75
+ import { HeaderElement as HeaderElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
76
+ import { HeaderExamplesElement } from '@swagger-api/apidom-ns-openapi-3-0';
77
+ import { HeaderExamplesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
78
+ import { HeaderExamplesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
79
+ import { HeaderSchemaVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
80
+ import { HeaderSchemaVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
81
+ import { HeaderVisitor as HeaderVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
82
+ import { HeaderVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
83
+ import { includesClasses } from '@swagger-api/apidom-core';
84
+ import { InfoElement as InfoElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
85
+ import { InfoVersionVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
86
+ import { InfoVersionVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
87
+ import { InfoVisitor as InfoVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
88
+ import { InfoVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
89
+ import { isArrayElement } from '@swagger-api/apidom-core';
90
+ import { isBooleanElement } from '@swagger-api/apidom-core';
91
+ import { isElement } from '@swagger-api/apidom-core';
92
+ import { isLinkElement as isLinkPrimitiveElement } from '@swagger-api/apidom-core';
93
+ import { isMemberElement } from '@swagger-api/apidom-core';
94
+ import { isNullElement } from '@swagger-api/apidom-core';
95
+ import { isNumberElement } from '@swagger-api/apidom-core';
96
+ import { isObjectElement } from '@swagger-api/apidom-core';
97
+ import { isOpenApiExtension } from '@swagger-api/apidom-ns-openapi-3-0';
98
+ import { isRefElement } from '@swagger-api/apidom-core';
99
+ import { isReferenceLikeElement } from '@swagger-api/apidom-ns-openapi-3-0';
100
+ import { isServerLikeElement } from '@swagger-api/apidom-ns-openapi-3-0';
101
+ import { isServersElement } from '@swagger-api/apidom-ns-openapi-3-0';
102
+ import { isStringElement } from '@swagger-api/apidom-core';
103
+ import { LicenseElement as LicenseElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
104
+ import { LicenseVisitor as LicenseVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
105
+ import { LicenseVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
106
+ import { LinkElement as LinkElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
107
+ import { LinkOperationIdVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
108
+ import { LinkOperationIdVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
109
+ import { LinkOperationRefVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
110
+ import { LinkOperationRefVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
111
+ import { LinkParametersElement } from '@swagger-api/apidom-ns-openapi-3-0';
112
+ import { LinkParametersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
113
+ import { LinkParametersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
114
+ import { LinkVisitor as LinkVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
115
+ import { LinkVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
116
+ import { MapVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
117
+ import { MapVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
118
+ import { MediaTypeElement as MediaTypeElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
119
+ import { MediaTypeEncodingElement } from '@swagger-api/apidom-ns-openapi-3-0';
120
+ import { MediaTypeEncodingVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
121
+ import { MediaTypeEncodingVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
122
+ import { MediaTypeExamplesElement } from '@swagger-api/apidom-ns-openapi-3-0';
123
+ import { MediaTypeExamplesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
124
+ import { MediaTypeExamplesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
125
+ import { MediaTypes } from '@swagger-api/apidom-core';
126
+ import { MediaTypeSchemaVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
127
+ import { MediaTypeSchemaVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
128
+ import { MediaTypeVisitor as MediaTypeVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
129
+ import { MediaTypeVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
130
+ import { Meta } from '@swagger-api/apidom-core';
131
+ import { MixedFieldsVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
132
+ import { MixedFieldsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
133
+ import { Namespace } from 'minim';
134
+ import { Namespace as Namespace_2 } from '@swagger-api/apidom-core';
135
+ import { NamespacePluginOptions } from '@swagger-api/apidom-core';
136
+ import { NumberElement } from '@swagger-api/apidom-core';
137
+ import { OAuthFlowElement as OAuthFlowElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
138
+ import { OAuthFlowScopesElement } from '@swagger-api/apidom-ns-openapi-3-0';
139
+ import { OAuthFlowScopesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
140
+ import { OAuthFlowScopesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
141
+ import { OAuthFlowsElement as OAuthFlowsElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
142
+ import { OAuthFlowsVisitor as OAuthFlowsVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
143
+ import { OAuthFlowsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
144
+ import { OAuthFlowVisitor as OAuthFlowVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
145
+ import { OAuthFlowVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
146
+ import { ObjectElement } from '@swagger-api/apidom-core';
147
+ import { OpenapiElement as OpenapiElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
148
+ import { OpenapiVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
149
+ import { OpenapiVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
150
+ import { OperationCallbacksElement } from '@swagger-api/apidom-ns-openapi-3-0';
151
+ import { OperationCallbacksVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
152
+ import { OperationCallbacksVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
153
+ import { OperationElement as OperationElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
154
+ import { OperationParametersElement } from '@swagger-api/apidom-ns-openapi-3-0';
155
+ import { OperationParametersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
156
+ import { OperationParametersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
157
+ import { OperationRequestBodyVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
158
+ import { OperationRequestBodyVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
159
+ import { OperationSecurityElement } from '@swagger-api/apidom-ns-openapi-3-0';
160
+ import { OperationSecurityVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
161
+ import { OperationSecurityVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
162
+ import { OperationServersElement } from '@swagger-api/apidom-ns-openapi-3-0';
163
+ import { OperationServersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
164
+ import { OperationServersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
165
+ import { OperationTagsElement } from '@swagger-api/apidom-ns-openapi-3-0';
166
+ import { OperationTagsVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
167
+ import { OperationTagsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
168
+ import { OperationVisitor as OperationVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
169
+ import { OperationVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
170
+ import { ParameterContentElement } from '@swagger-api/apidom-ns-openapi-3-0';
171
+ import { ParameterContentVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
172
+ import { ParameterContentVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
173
+ import { ParameterElement as ParameterElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
174
+ import { ParameterExamplesElement } from '@swagger-api/apidom-ns-openapi-3-0';
175
+ import { ParameterExamplesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
176
+ import { ParameterExampleVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
177
+ import { ParameterSchemaVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
178
+ import { ParameterSchemaVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
179
+ import { ParametersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
180
+ import { ParametersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
181
+ import { ParameterVisitor as ParameterVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
182
+ import { ParameterVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
183
+ import { PathItem$RefVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
184
+ import { PathItem$RefVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
185
+ import { PathItemElement as PathItemElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
186
+ import { PathItemParametersElement } from '@swagger-api/apidom-ns-openapi-3-0';
187
+ import { PathItemParametersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
188
+ import { PathItemParametersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
189
+ import { PathItemServersElement } from '@swagger-api/apidom-ns-openapi-3-0';
190
+ import { PathItemServersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
191
+ import { PathItemServersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
192
+ import { PathItemVisitor as PathItemVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
193
+ import { PathItemVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
194
+ import { PathsElement as PathsElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
195
+ import { PathsVisitor as PathsVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
196
+ import { PathsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
197
+ import { PatternedFieldsVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
198
+ import { PatternedFieldsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
199
+ import { Reference$RefVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
200
+ import { Reference$RefVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
201
+ import { ReferenceElement as ReferenceElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
202
+ import { ReferenceVisitor as ReferenceVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
203
+ import { ReferenceVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
204
+ import { RequestBodyContentElement } from '@swagger-api/apidom-ns-openapi-3-0';
205
+ import { RequestBodyContentVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
206
+ import { RequestBodyContentVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
207
+ import { RequestBodyElement as RequestBodyElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
208
+ import { RequestBodyVisitor as RequestBodyVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
209
+ import { RequestBodyVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
210
+ import { ResponseContentElement } from '@swagger-api/apidom-ns-openapi-3-0';
211
+ import { ResponseContentVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
212
+ import { ResponseContentVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
213
+ import { ResponseElement as ResponseElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
214
+ import { ResponseHeadersElement } from '@swagger-api/apidom-ns-openapi-3-0';
215
+ import { ResponseHeadersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
216
+ import { ResponseHeadersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
217
+ import { ResponseLinksElement } from '@swagger-api/apidom-ns-openapi-3-0';
218
+ import { ResponseLinksVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
219
+ import { ResponseLinksVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
220
+ import { ResponsesDefaultVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
221
+ import { ResponsesDefaultVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
222
+ import { ResponsesElement as ResponsesElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
223
+ import { ResponsesVisitor as ResponsesVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
224
+ import { ResponsesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
225
+ import { ResponseVisitor as ResponseVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
226
+ import { ResponseVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
227
+ import { SecurityElement } from '@swagger-api/apidom-ns-openapi-3-0';
228
+ import { SecurityRequirementElement as SecurityRequirementElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
229
+ import { SecurityRequirementVisitor as SecurityRequirementVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
230
+ import { SecurityRequirementVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
231
+ import { SecuritySchemeElement as SecuritySchemeElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
232
+ import { SecuritySchemeVisitor as SecuritySchemeVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
233
+ import { SecuritySchemeVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
234
+ import { SecurityVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
235
+ import { SecurityVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
236
+ import { ServerElement as ServerElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
237
+ import { ServersElement } from '@swagger-api/apidom-ns-openapi-3-0';
238
+ import { ServersVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
239
+ import { ServersVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
240
+ import { ServerVariableElement as ServerVariableElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
241
+ import { ServerVariablesElement } from '@swagger-api/apidom-ns-openapi-3-0';
242
+ import { ServerVariableUrlVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
243
+ import { ServerVariableUrlVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
244
+ import { ServerVariableVariablesVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
245
+ import { ServerVariableVariablesVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
246
+ import { ServerVariableVisitor as ServerVariableVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
247
+ import { ServerVariableVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
248
+ import { ServerVisitor as ServerVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
249
+ import { ServerVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
250
+ import { SpecificationExtensionVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
251
+ import { SpecificationExtensionVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
252
+ import { SpecificationVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
253
+ import { SpecificationVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
254
+ import { SpecPath } from '@swagger-api/apidom-ns-openapi-3-0';
255
+ import { StringElement } from '@swagger-api/apidom-core';
256
+ import { TagElement as TagElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
257
+ import { TagsElement } from '@swagger-api/apidom-ns-openapi-3-0';
258
+ import { TagsVisitor } from '@swagger-api/apidom-ns-openapi-3-0';
259
+ import { TagsVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
260
+ import { TagVisitor as TagVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
261
+ import { TagVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
262
+ import { Visitor } from '@swagger-api/apidom-ns-openapi-3-0';
263
+ import { VisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
264
+ import { XmlElement as XmlElement_2 } from '@swagger-api/apidom-ns-openapi-3-0';
265
+ import { XmlVisitor as XmlVisitor_2 } from '@swagger-api/apidom-ns-openapi-3-0';
266
+ import { XmlVisitorOptions } from '@swagger-api/apidom-ns-openapi-3-0';
267
+
268
+ declare const $defsVisitor_base: Class<any[], MapVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof MapVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
269
+
270
+ declare const AllOfVisitor_base: Class<any[], SpecificationVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof SpecificationVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
271
+
272
+ export { AlternatingVisitor }
273
+
274
+ export { AlternatingVisitorOptions }
275
+
276
+ /**
277
+ * Translates visitor ancestor lineage to a JSON Pointer tokens.
278
+ * Ancestor lineage is constructed of following visitor method arguments:
279
+ *
280
+ * - ancestors
281
+ * - parent
282
+ * - element
283
+ * @public
284
+ */
285
+ export declare const ancestorLineageToJSONPointer: <T extends (Element_2 | Element_2[])[]>(elementPath: T) => string;
286
+
287
+ declare const AnyOfVisitor_base: Class<any[], SpecificationVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof SpecificationVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
288
+
289
+ /**
290
+ * @public
291
+ */
292
+ export declare const BaseCallbackVisitor: typeof CallbackVisitor_2;
293
+
294
+ /**
295
+ * @public
296
+ */
297
+ export declare const BaseComponentsVisitor: typeof ComponentsVisitor_2;
298
+
299
+ /**
300
+ * @public
301
+ */
302
+ export declare const BaseContactVisitor: typeof ContactVisitor_2;
303
+
304
+ /**
305
+ * @public
306
+ */
307
+ export declare const BaseDiscriminatorVisitor: typeof DiscriminatorVisitor_2;
308
+
309
+ /**
310
+ * @public
311
+ */
312
+ export declare const BaseEncodingVisitor: typeof EncodingVisitor_2;
313
+
314
+ /**
315
+ * @public
316
+ */
317
+ export declare const BaseExampleVisitor: typeof ExampleVisitor_2;
318
+
319
+ /**
320
+ * @public
321
+ */
322
+ export declare const BaseExternalDocumentationVisitor: typeof ExternalDocumentationVisitor_2;
323
+
324
+ /**
325
+ * @public
326
+ */
327
+ export declare const BaseHeaderVisitor: typeof HeaderVisitor_2;
328
+
329
+ /**
330
+ * @public
331
+ */
332
+ export declare const BaseInfoVisitor: typeof InfoVisitor_2;
333
+
334
+ /**
335
+ * @public
336
+ */
337
+ export declare const BaseLicenseVisitor: typeof LicenseVisitor_2;
338
+
339
+ /**
340
+ * @public
341
+ */
342
+ export declare const BaseLinkVisitor: typeof LinkVisitor_2;
343
+
344
+ /**
345
+ * @public
346
+ */
347
+ export declare const BaseMediaTypeVisitor: typeof MediaTypeVisitor_2;
348
+
349
+ /**
350
+ * @public
351
+ */
352
+ export declare const BaseOAuthFlowsVisitor: typeof OAuthFlowsVisitor_2;
353
+
354
+ /**
355
+ * @public
356
+ */
357
+ export declare const BaseOAuthFlowVisitor: typeof OAuthFlowVisitor_2;
358
+
359
+ /**
360
+ * @public
361
+ */
362
+ export declare const BaseOperationVisitor: typeof OperationVisitor_2;
363
+
364
+ /**
365
+ * @public
366
+ */
367
+ export declare const BaseParameterVisitor: typeof ParameterVisitor_2;
368
+
369
+ /**
370
+ * @public
371
+ */
372
+ export declare const BasePathItemVisitor: typeof PathItemVisitor_2;
373
+
374
+ /**
375
+ * @public
376
+ */
377
+ export declare const BasePathsVisitor: typeof PathsVisitor_2;
378
+
379
+ /**
380
+ * @public
381
+ */
382
+ export declare const BaseReferenceVisitor: typeof ReferenceVisitor_2;
383
+
384
+ /**
385
+ * @public
386
+ */
387
+ export declare const BaseRequestBodyVisitor: typeof RequestBodyVisitor_2;
388
+
389
+ /**
390
+ * @public
391
+ */
392
+ export declare const BaseResponsesVisitor: typeof ResponsesVisitor_2;
393
+
394
+ /**
395
+ * @public
396
+ */
397
+ export declare const BaseResponseVisitor: typeof ResponseVisitor_2;
398
+
399
+ /**
400
+ * @public
401
+ */
402
+ export declare const BaseSecurityRequirementVisitor: typeof SecurityRequirementVisitor_2;
403
+
404
+ /**
405
+ * @public
406
+ */
407
+ export declare const BaseSecuritySchemeVisitor: typeof SecuritySchemeVisitor_2;
408
+
409
+ /**
410
+ * @public
411
+ */
412
+ export declare const BaseServerVariableVisitor: typeof ServerVariableVisitor_2;
413
+
414
+ /**
415
+ * @public
416
+ */
417
+ export declare const BaseServerVisitor: typeof ServerVisitor_2;
418
+
419
+ /**
420
+ * @public
421
+ */
422
+ export declare const BaseTagVisitor: typeof TagVisitor_2;
423
+
424
+ /**
425
+ * @public
426
+ */
427
+ export declare const BaseXMLVisitor: typeof XmlVisitor_2;
428
+
429
+ /**
430
+ * @public
431
+ */
432
+ export declare class CallbackElement extends CallbackElement_2 {
433
+ }
434
+
435
+ /**
436
+ * @public
437
+ */
438
+ export declare class CallbackVisitor extends BaseCallbackVisitor {
439
+ readonly element: CallbackElement;
440
+ protected readonly specPath: SpecPath<[
441
+ 'document',
442
+ 'objects',
443
+ 'Reference'
444
+ ] | ['document', 'objects', 'PathItem']>;
445
+ constructor(options: CallbackVisitorOptions);
446
+ ObjectElement(objectElement: ObjectElement): {};
447
+ }
448
+
449
+ export { CallbackVisitorOptions }
450
+
451
+ export { ComponentsCallbacksElement }
452
+
453
+ export { ComponentsCallbacksVisitor }
454
+
455
+ export { ComponentsCallbacksVisitorOptions }
456
+
457
+ /**
458
+ * @public
459
+ */
460
+ export declare class ComponentsElement extends ComponentsElement_2 {
461
+ get pathItems(): ObjectElement | undefined;
462
+ set pathItems(pathItems: ObjectElement | undefined);
463
+ }
464
+
465
+ export { ComponentsExamplesElement }
466
+
467
+ export { ComponentsExamplesVisitor }
468
+
469
+ export { ComponentsExamplesVisitorOptions }
470
+
471
+ export { ComponentsHeadersElement }
472
+
473
+ export { ComponentsHeadersVisitor }
474
+
475
+ export { ComponentsHeadersVisitorOptions }
476
+
477
+ export { ComponentsLinksElement }
478
+
479
+ export { ComponentsLinksVisitor }
480
+
481
+ export { ComponentsLinksVisitorOptions }
482
+
483
+ export { ComponentsParametersElement }
484
+
485
+ export { ComponentsParametersVisitor }
486
+
487
+ export { ComponentsParametersVisitorOptions }
488
+
489
+ /**
490
+ * @public
491
+ */
492
+ export declare class ComponentsPathItemsElement extends ObjectElement {
493
+ static primaryClass: string;
494
+ constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes);
495
+ }
496
+
497
+ /**
498
+ * @public
499
+ */
500
+ export declare class ComponentsPathItemsVisitor extends PathItemsVisitor_base {
501
+ readonly element: ComponentsPathItemsElement;
502
+ protected readonly specPath: SpecPath<[
503
+ 'document',
504
+ 'objects',
505
+ 'Reference'
506
+ ] | ['document', 'objects', 'PathItem']>;
507
+ constructor(options: ComponentsPathItemsVisitorOptions);
508
+ ObjectElement(objectElement: ObjectElement): {};
509
+ }
510
+
511
+ /**
512
+ * @public
513
+ */
514
+ export declare interface ComponentsPathItemsVisitorOptions extends MapVisitorOptions, FallbackVisitorOptions {
515
+ }
516
+
517
+ export { ComponentsRequestBodiesElement }
518
+
519
+ export { ComponentsRequestBodiesVisitor }
520
+
521
+ export { ComponentsRequestBodiesVisitorOptions }
522
+
523
+ export { ComponentsResponsesElement }
524
+
525
+ export { ComponentsResponsesVisitor }
526
+
527
+ export { ComponentsResponsesVisitorOptions }
528
+
529
+ export { ComponentsSchemasElement }
530
+
531
+ /**
532
+ * @public
533
+ */
534
+ export declare class ComponentsSchemasVisitor extends SchemasVisitor_base {
535
+ readonly element: ComponentsSchemasElement;
536
+ protected readonly specPath: SpecPath<['document', 'objects', 'Schema']>;
537
+ constructor(options: ComponentsSchemasVisitorOptions);
538
+ }
539
+
540
+ /**
541
+ * @public
542
+ */
543
+ export declare interface ComponentsSchemasVisitorOptions extends MapVisitorOptions, FallbackVisitorOptions {
544
+ }
545
+
546
+ export { ComponentsSecuritySchemesElement }
547
+
548
+ export { ComponentsSecuritySchemesVisitor }
549
+
550
+ export { ComponentsSecuritySchemesVisitorOptions }
551
+
552
+ /**
553
+ * @public
554
+ */
555
+ export declare class ComponentsVisitor extends BaseComponentsVisitor {
556
+ readonly element: ComponentsElement;
557
+ constructor(options: ComponentsVisitorOptions);
558
+ }
559
+
560
+ export { ComponentsVisitorOptions }
561
+
562
+ /**
563
+ * @public
564
+ */
565
+ export declare class ContactElement extends ContactElement_2 {
566
+ }
567
+
568
+ /**
569
+ * @public
570
+ */
571
+ export declare class ContactVisitor extends BaseContactVisitor {
572
+ readonly element: ContactElement;
573
+ constructor(options: ContactVisitorOptions);
574
+ }
575
+
576
+ export { ContactVisitorOptions }
577
+
578
+ export { ContentVisitor }
579
+
580
+ export { ContentVisitorOptions }
581
+
582
+ /**
583
+ * @public
584
+ */
585
+ export declare const createToolbox: () => Toolbox;
586
+
587
+ declare const DependentSchemasVisitor_base: Class<any[], MapVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof MapVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
588
+
589
+ /**
590
+ * @public
591
+ */
592
+ export declare class DiscriminatorElement extends DiscriminatorElement_2 {
593
+ }
594
+
595
+ export { DiscriminatorMappingElement }
596
+
597
+ export { DiscriminatorMappingVisitor }
598
+
599
+ export { DiscriminatorMappingVisitorOptions }
600
+
601
+ /**
602
+ * @public
603
+ */
604
+ export declare class DiscriminatorVisitor extends BaseDiscriminatorVisitor {
605
+ readonly element: DiscriminatorElement;
606
+ protected readonly canSupportSpecificationExtensions: true;
607
+ constructor(options: DiscriminatorVisitorOptions);
608
+ }
609
+
610
+ export { DiscriminatorVisitorOptions }
611
+
612
+ /**
613
+ * @public
614
+ */
615
+ export declare class EncodingElement extends EncodingElement_2 {
616
+ }
617
+
618
+ export { EncodingHeadersElement }
619
+
620
+ export { EncodingHeadersVisitor }
621
+
622
+ export { EncodingHeadersVisitorOptions }
623
+
624
+ /**
625
+ * @public
626
+ */
627
+ export declare class EncodingVisitor extends BaseEncodingVisitor {
628
+ readonly element: EncodingElement;
629
+ constructor(options: EncodingVisitorOptions);
630
+ }
631
+
632
+ export { EncodingVisitorOptions }
633
+
634
+ /**
635
+ * @public
636
+ */
637
+ export declare class ExampleElement extends ExampleElement_2 {
638
+ }
639
+
640
+ export { ExampleExternalValueVisitor }
641
+
642
+ export { ExampleExternalValueVisitorOptions }
643
+
644
+ export { ExamplesVisitor }
645
+
646
+ export { ExamplesVisitorOptions }
647
+
648
+ /**
649
+ * @public
650
+ */
651
+ export declare class ExampleVisitor extends BaseExampleVisitor {
652
+ readonly element: ExampleElement;
653
+ constructor(options: ExampleVisitorOptions);
654
+ }
655
+
656
+ export { ExampleVisitorOptions }
657
+
658
+ /**
659
+ * @public
660
+ */
661
+ export declare class ExternalDocumentationElement extends ExternalDocumentationElement_2 {
662
+ }
663
+
664
+ /**
665
+ * @public
666
+ */
667
+ export declare class ExternalDocumentationVisitor extends BaseExternalDocumentationVisitor {
668
+ readonly element: ExternalDocumentationElement;
669
+ constructor(options: ExternalDocumentationVisitorOptions);
670
+ }
671
+
672
+ export { ExternalDocumentationVisitorOptions }
673
+
674
+ export { FallbackVisitor }
675
+
676
+ export { FallbackVisitorOptions }
677
+ export { FallbackVisitorOptions as Schema$refVisitorOptions }
678
+ export { FallbackVisitorOptions as Schema$vocabularyVisitorOptions }
679
+ export { FallbackVisitorOptions as SchemaDependentRequiredVisitorOptions }
680
+ export { FallbackVisitorOptions as SchemaEnumVisitorOptions }
681
+ export { FallbackVisitorOptions as SchemaExamplesVisitorOptions }
682
+ export { FallbackVisitorOptions as SchemaRequiredVisitorOptions }
683
+ export { FallbackVisitorOptions as SchemaTypeVisitorOptions }
684
+
685
+ export { FixedFieldsVisitor }
686
+
687
+ export { FixedFieldsVisitorOptions }
688
+
689
+ /**
690
+ * @public
691
+ */
692
+ export declare type Format = 'generic' | 'json' | 'yaml';
693
+
694
+ /**
695
+ * @public
696
+ */
697
+ export declare const getNodeType: <T extends Element_2>(element: T) => string | undefined;
698
+
699
+ export { HeaderContentElement }
700
+
701
+ export { HeaderContentVisitor }
702
+
703
+ export { HeaderContentVisitorOptions }
704
+
705
+ /**
706
+ * @public
707
+ */
708
+ export declare class HeaderElement extends HeaderElement_2 {
709
+ get schema(): SchemaElement | undefined;
710
+ set schema(schema: SchemaElement | undefined);
711
+ }
712
+
713
+ export { HeaderExamplesElement }
714
+
715
+ export { HeaderExamplesVisitor }
716
+
717
+ export { HeaderExamplesVisitorOptions }
718
+
719
+ export { HeaderSchemaVisitor }
720
+
721
+ export { HeaderSchemaVisitorOptions }
722
+
723
+ /**
724
+ * @public
725
+ */
726
+ export declare class HeaderVisitor extends BaseHeaderVisitor {
727
+ readonly element: HeaderElement;
728
+ constructor(options: HeaderVisitorOptions);
729
+ }
730
+
731
+ export { HeaderVisitorOptions }
732
+
733
+ /**
734
+ * @public
735
+ */
736
+ export declare class InfoElement extends InfoElement_2 {
737
+ get license(): LicenseElement | undefined;
738
+ set license(licenseElement: LicenseElement | undefined);
739
+ get summary(): StringElement | undefined;
740
+ set summary(summary: StringElement | undefined);
741
+ }
742
+
743
+ export { InfoVersionVisitor }
744
+
745
+ export { InfoVersionVisitorOptions }
746
+
747
+ /**
748
+ * @public
749
+ */
750
+ export declare class InfoVisitor extends BaseInfoVisitor {
751
+ readonly element: InfoElement;
752
+ constructor(options: InfoVisitorOptions);
753
+ }
754
+
755
+ export { InfoVisitorOptions }
756
+
757
+ export { isArrayElement }
758
+
759
+ export { isBooleanElement }
760
+
761
+ /**
762
+ * @public
763
+ */
764
+ export declare const isBooleanJsonSchemaElement: ElementPredicate<BooleanElement>;
765
+
766
+ /**
767
+ * @public
768
+ */
769
+ export declare const isCallbackElement: ElementPredicate<CallbackElement>;
770
+
771
+ /**
772
+ * @public
773
+ */
774
+ export declare const isComponentsElement: ElementPredicate<ComponentsElement>;
775
+
776
+ /**
777
+ * @public
778
+ */
779
+ export declare const isContactElement: ElementPredicate<ContactElement>;
780
+
781
+ export { isElement }
782
+
783
+ /**
784
+ * @public
785
+ */
786
+ export declare const isExampleElement: ElementPredicate<ExampleElement>;
787
+
788
+ /**
789
+ * @public
790
+ */
791
+ export declare const isExternalDocumentationElement: ElementPredicate<ExternalDocumentationElement>;
792
+
793
+ /**
794
+ * @public
795
+ */
796
+ declare const isHeaderElement: ElementPredicate<HeaderElement>;
797
+
798
+ /**
799
+ * @public
800
+ */
801
+ export declare const isInfoElement: ElementPredicate<InfoElement>;
802
+
803
+ /**
804
+ * @public
805
+ */
806
+ export declare const isJsonSchemaDialectElement: ElementPredicate<JsonSchemaDialectElement>;
807
+
808
+ /**
809
+ * @public
810
+ */
811
+ export declare const isLicenseElement: ElementPredicate<LicenseElement>;
812
+
813
+ /**
814
+ * @public
815
+ */
816
+ export declare const isLinkElement: ElementPredicate<LinkElement>;
817
+
818
+ export { isLinkPrimitiveElement }
819
+
820
+ /**
821
+ * @public
822
+ */
823
+ export declare const isMediaTypeElement: ElementPredicate<MediaTypeElement>;
824
+
825
+ export { isMemberElement }
826
+
827
+ export { isNullElement }
828
+
829
+ export { isNumberElement }
830
+
831
+ export { isObjectElement }
832
+
833
+ /**
834
+ * @public
835
+ */
836
+ export declare const isOpenApi3_1Element: ElementPredicate<OpenApi3_1Element>;
837
+
838
+ /**
839
+ * @public
840
+ */
841
+ export declare const isOpenapiElement: ElementPredicate<OpenapiElement>;
842
+
843
+ export { isOpenApiExtension }
844
+
845
+ /**
846
+ * @public
847
+ */
848
+ export declare const isOperationElement: ElementPredicate<OperationElement>;
849
+
850
+ /**
851
+ * @public
852
+ */
853
+ export declare const isParameterElement: ElementPredicate<ParameterElement>;
854
+
855
+ /**
856
+ * @public
857
+ */
858
+ export declare const isPathItemElement: ElementPredicate<PathItemElement>;
859
+
860
+ /**
861
+ * @deprecated
862
+ * Determining whether a PathItemElement is external or internal is not possible by just looking
863
+ * at value of the $ref fixed field. The value of the $ref field needs to be resolved in runtime
864
+ * using the referring document as the Base URI.
865
+ * @public
866
+ */
867
+ export declare const isPathItemElementExternal: ElementPredicate<PathItemElement>;
868
+
869
+ /**
870
+ * @public
871
+ */
872
+ export declare const isPathsElement: ElementPredicate<PathsElement>;
873
+
874
+ export { isRefElement }
875
+
876
+ /**
877
+ * @public
878
+ */
879
+ export declare const isReferenceElement: ElementPredicate<ReferenceElement>;
880
+
881
+ /**
882
+ * @deprecated
883
+ * Determining whether a ReferenceElement is external or internal is not possible by just looking
884
+ * at value of the $ref fixed field. The value of the $ref field needs to be resolved in runtime
885
+ * using the referring document as the Base URI.
886
+ * @public
887
+ */
888
+ export declare const isReferenceElementExternal: ElementPredicate<ReferenceElement>;
889
+
890
+ export { isReferenceLikeElement }
891
+
892
+ /**
893
+ * @public
894
+ */
895
+ export declare const isRequestBodyElement: ElementPredicate<RequestBodyElement>;
896
+
897
+ /**
898
+ * @public
899
+ */
900
+ export declare const isResponseElement: ElementPredicate<ResponseElement>;
901
+
902
+ /**
903
+ * @public
904
+ */
905
+ export declare const isResponsesElement: ElementPredicate<ResponsesElement>;
906
+
907
+ /**
908
+ * @public
909
+ */
910
+ export declare const isSchemaElement: ElementPredicate<SchemaElement>;
911
+
912
+ /**
913
+ * @public
914
+ */
915
+ export declare const isSecurityRequirementElement: ElementPredicate<SecurityRequirementElement>;
916
+
917
+ /**
918
+ * @public
919
+ */
920
+ export declare const isSecuritySchemeElement: ElementPredicate<SecuritySchemeElement>;
921
+
922
+ /**
923
+ * @public
924
+ */
925
+ export declare const isServerElement: ElementPredicate<ServerElement>;
926
+
927
+ export { isServerLikeElement }
928
+
929
+ export { isServersElement }
930
+
931
+ /**
932
+ * @public
933
+ */
934
+ export declare const isServerVariableElement: ElementPredicate<ServerVariableElement>;
935
+
936
+ export { isStringElement }
937
+
938
+ /**
939
+ * @public
940
+ */
941
+ export declare class JsonSchemaDialectElement extends StringElement {
942
+ static default: JsonSchemaDialectElement;
943
+ constructor(content?: string, meta?: Meta, attributes?: Attributes);
944
+ }
945
+
946
+ /**
947
+ * @public
948
+ */
949
+ export declare class JsonSchemaDialectVisitor extends JsonSchemaDialectVisitor_base {
950
+ element: JsonSchemaDialectElement;
951
+ StringElement(stringElement: StringElement): {};
952
+ }
953
+
954
+ declare const JsonSchemaDialectVisitor_base: Class<any[], SpecificationVisitor & FallbackVisitor, typeof SpecificationVisitor & typeof FallbackVisitor>;
955
+
956
+ /**
957
+ * @public
958
+ */
959
+ export declare interface JsonSchemaDialectVisitorOptions extends SpecificationVisitorOptions, FallbackVisitorOptions {
960
+ }
961
+
962
+ /**
963
+ * There are unfortunately two `LinkElement` types. One is from base namespace
964
+ * and the other one if from this namespace. `LinkElement` from base namespace
965
+ * is used extremely rarely so it's almost always safe during traversing
966
+ * to assume that `LinkElement` is element from this namespace.
967
+ *
968
+ * To be 100% sure that currently visiting `LinkElement` is from this namespace
969
+ * use `isLinkElement` predicate from this namespace to assert for it.
970
+ * @public
971
+ */
972
+ export declare const keyMap: {
973
+ ObjectElement: string[];
974
+ ArrayElement: string[];
975
+ MemberElement: string[];
976
+ StringElement: never[];
977
+ BooleanElement: never[];
978
+ NumberElement: never[];
979
+ NullElement: never[];
980
+ RefElement: never[];
981
+ LinkElement: never[];
982
+ Annotation: never[];
983
+ Comment: never[];
984
+ ParseResultElement: string[];
985
+ SourceMap: string[];
986
+ CallbackElement: string[];
987
+ ComponentsElement: string[];
988
+ ContactElement: string[];
989
+ DiscriminatorElement: string[];
990
+ Encoding: string[];
991
+ Example: string[];
992
+ ExternalDocumentationElement: string[];
993
+ HeaderElement: string[];
994
+ InfoElement: string[];
995
+ LicenseElement: string[];
996
+ MediaTypeElement: string[];
997
+ OAuthFlowElement: string[];
998
+ OAuthFlowsElement: string[];
999
+ OpenApi3_1Element: string[];
1000
+ OperationElement: string[];
1001
+ ParameterElement: string[];
1002
+ PathItemElement: string[];
1003
+ PathsElement: string[];
1004
+ ReferenceElement: string[];
1005
+ RequestBodyElement: string[];
1006
+ ResponseElement: string[];
1007
+ ResponsesElement: string[];
1008
+ SchemaElement: string[];
1009
+ SecurityRequirementElement: string[];
1010
+ SecuritySchemeElement: string[];
1011
+ ServerElement: string[];
1012
+ ServerVariableElement: string[];
1013
+ TagElement: string[];
1014
+ };
1015
+
1016
+ /**
1017
+ * @public
1018
+ */
1019
+ export declare class LicenseElement extends LicenseElement_2 {
1020
+ get identifier(): StringElement | undefined;
1021
+ set identifier(name: StringElement | undefined);
1022
+ }
1023
+
1024
+ /**
1025
+ * @public
1026
+ */
1027
+ export declare class LicenseVisitor extends BaseLicenseVisitor {
1028
+ readonly element: LicenseElement;
1029
+ constructor(options: LicenseVisitorOptions);
1030
+ }
1031
+
1032
+ export { LicenseVisitorOptions }
1033
+
1034
+ /**
1035
+ * @public
1036
+ */
1037
+ export declare class LinkElement extends LinkElement_2 {
1038
+ }
1039
+
1040
+ export { LinkOperationIdVisitor }
1041
+
1042
+ export { LinkOperationIdVisitorOptions }
1043
+
1044
+ export { LinkOperationRefVisitor }
1045
+
1046
+ export { LinkOperationRefVisitorOptions }
1047
+
1048
+ export { LinkParametersElement }
1049
+
1050
+ export { LinkParametersVisitor }
1051
+
1052
+ export { LinkParametersVisitorOptions }
1053
+
1054
+ /**
1055
+ * @public
1056
+ */
1057
+ export declare class LinkVisitor extends BaseLinkVisitor {
1058
+ readonly element: LinkElement;
1059
+ constructor(options: LinkVisitorOptions);
1060
+ }
1061
+
1062
+ export { LinkVisitorOptions }
1063
+
1064
+ export { MapVisitor }
1065
+
1066
+ export { MapVisitorOptions }
1067
+
1068
+ /**
1069
+ * @public
1070
+ */
1071
+ export declare class MediaTypeElement extends MediaTypeElement_2 {
1072
+ get schema(): SchemaElement | undefined;
1073
+ set schema(schema: SchemaElement | undefined);
1074
+ }
1075
+
1076
+ export { MediaTypeEncodingElement }
1077
+
1078
+ export { MediaTypeEncodingVisitor }
1079
+
1080
+ export { MediaTypeEncodingVisitorOptions }
1081
+
1082
+ export { MediaTypeExamplesElement }
1083
+
1084
+ export { MediaTypeExamplesVisitor }
1085
+
1086
+ export { MediaTypeExamplesVisitorOptions }
1087
+
1088
+ /**
1089
+ * @public
1090
+ */
1091
+ export declare const mediaTypes: OpenAPIMediaTypes;
1092
+
1093
+ export { MediaTypeSchemaVisitor }
1094
+
1095
+ export { MediaTypeSchemaVisitorOptions }
1096
+
1097
+ /**
1098
+ * @public
1099
+ */
1100
+ export declare class MediaTypeVisitor extends BaseMediaTypeVisitor {
1101
+ readonly element: MediaTypeElement;
1102
+ constructor(options: MediaTypeVisitorOptions);
1103
+ }
1104
+
1105
+ export { MediaTypeVisitorOptions }
1106
+
1107
+ export { MixedFieldsVisitor }
1108
+
1109
+ export { MixedFieldsVisitorOptions }
1110
+
1111
+ /**
1112
+ * @public
1113
+ */
1114
+ export declare class OAuthFlowElement extends OAuthFlowElement_2 {
1115
+ }
1116
+
1117
+ export { OAuthFlowScopesElement }
1118
+
1119
+ export { OAuthFlowScopesVisitor }
1120
+
1121
+ export { OAuthFlowScopesVisitorOptions }
1122
+
1123
+ /**
1124
+ * @public
1125
+ */
1126
+ export declare class OAuthFlowsElement extends OAuthFlowsElement_2 {
1127
+ }
1128
+
1129
+ /**
1130
+ * @public
1131
+ */
1132
+ export declare class OAuthFlowsVisitor extends BaseOAuthFlowsVisitor {
1133
+ readonly element: OAuthFlowsElement;
1134
+ constructor(options: OAuthFlowsVisitorOptions);
1135
+ }
1136
+
1137
+ export { OAuthFlowsVisitorOptions }
1138
+
1139
+ /**
1140
+ * @public
1141
+ */
1142
+ export declare class OAuthFlowVisitor extends BaseOAuthFlowVisitor {
1143
+ readonly element: OAuthFlowElement;
1144
+ constructor(options: OAuthFlowVisitorOptions);
1145
+ }
1146
+
1147
+ export { OAuthFlowVisitorOptions }
1148
+
1149
+ declare const OneOfVisitor_base: Class<any[], SpecificationVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof SpecificationVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
1150
+
1151
+ /**
1152
+ * @public
1153
+ */
1154
+ declare const openApi3_1: {
1155
+ namespace: (options: NamespacePluginOptions) => Namespace;
1156
+ };
1157
+ export default openApi3_1;
1158
+
1159
+ /**
1160
+ * @public
1161
+ */
1162
+ export declare class OpenApi3_1Element extends ObjectElement {
1163
+ constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes);
1164
+ get openapi(): OpenapiElement | undefined;
1165
+ set openapi(openapi: OpenapiElement | undefined);
1166
+ get info(): InfoElement | undefined;
1167
+ set info(info: InfoElement | undefined);
1168
+ get jsonSchemaDialect(): StringElement | undefined;
1169
+ set jsonSchemaDialect(jsonSchemaDialect: StringElement | undefined);
1170
+ get servers(): ArrayElement | undefined;
1171
+ set servers(servers: ArrayElement | undefined);
1172
+ get paths(): PathsElement | undefined;
1173
+ set paths(paths: PathsElement | undefined);
1174
+ get components(): ComponentsElement | undefined;
1175
+ set components(components: ComponentsElement | undefined);
1176
+ get security(): ArrayElement | undefined;
1177
+ set security(security: ArrayElement | undefined);
1178
+ get tags(): ArrayElement | undefined;
1179
+ set tags(tags: ArrayElement | undefined);
1180
+ get externalDocs(): ExternalDocumentationElement | undefined;
1181
+ set externalDocs(externalDocs: ExternalDocumentationElement | undefined);
1182
+ get webhooks(): ObjectElement | undefined;
1183
+ set webhooks(webhooks: ObjectElement | undefined);
1184
+ }
1185
+
1186
+ declare namespace openApi3_1Predicates {
1187
+ export {
1188
+ isCallbackElement,
1189
+ isComponentsElement,
1190
+ isContactElement,
1191
+ isExampleElement,
1192
+ isExternalDocumentationElement,
1193
+ isHeaderElement,
1194
+ isInfoElement,
1195
+ isJsonSchemaDialectElement,
1196
+ isLicenseElement,
1197
+ isLinkElement,
1198
+ isOpenapiElement,
1199
+ isOpenApi3_1Element,
1200
+ isOperationElement,
1201
+ isParameterElement,
1202
+ isPathItemElement,
1203
+ isPathItemElementExternal,
1204
+ isPathsElement,
1205
+ isReferenceElement,
1206
+ isReferenceElementExternal,
1207
+ isRequestBodyElement,
1208
+ isResponseElement,
1209
+ isResponsesElement,
1210
+ isSchemaElement,
1211
+ isBooleanJsonSchemaElement,
1212
+ isSecurityRequirementElement,
1213
+ isSecuritySchemeElement,
1214
+ isServerElement,
1215
+ isServerVariableElement,
1216
+ isMediaTypeElement
1217
+ }
1218
+ }
1219
+ export { openApi3_1Predicates }
1220
+
1221
+ /**
1222
+ * @public
1223
+ */
1224
+ export declare class OpenApi3_1Visitor extends OpenApi3_1Visitor_base {
1225
+ readonly element: OpenApi3_1Element;
1226
+ protected readonly specPath: SpecPath<['document', 'objects', 'OpenApi']>;
1227
+ protected readonly canSupportSpecificationExtensions: true;
1228
+ protected readonly openApiSemanticElement: OpenApi3_1Element;
1229
+ constructor(options: OpenApi3_1VisitorOptions);
1230
+ ObjectElement(objectElement: ObjectElement): {};
1231
+ }
1232
+
1233
+ declare const OpenApi3_1Visitor_base: Class<any[], FixedFieldsVisitor & FallbackVisitor, typeof FixedFieldsVisitor & typeof FallbackVisitor>;
1234
+
1235
+ /**
1236
+ * @public
1237
+ */
1238
+ export declare interface OpenApi3_1VisitorOptions extends FixedFieldsVisitorOptions, FallbackVisitorOptions {
1239
+ }
1240
+
1241
+ /**
1242
+ * @public
1243
+ */
1244
+ export declare class OpenapiElement extends OpenapiElement_2 {
1245
+ }
1246
+
1247
+ /**
1248
+ * @public
1249
+ */
1250
+ export declare class OpenAPIMediaTypes extends MediaTypes<string> {
1251
+ filterByFormat(format?: Format): string[];
1252
+ findBy(version?: string, format?: Format): string;
1253
+ latest(format?: Format): string;
1254
+ }
1255
+
1256
+ export { OpenapiVisitor }
1257
+
1258
+ export { OpenapiVisitorOptions }
1259
+
1260
+ export { OperationCallbacksElement }
1261
+
1262
+ export { OperationCallbacksVisitor }
1263
+
1264
+ export { OperationCallbacksVisitorOptions }
1265
+
1266
+ /**
1267
+ * @public
1268
+ */
1269
+ export declare class OperationElement extends OperationElement_2 {
1270
+ get requestBody(): RequestBodyElement | ReferenceElement | undefined;
1271
+ set requestBody(requestBody: RequestBodyElement | ReferenceElement | undefined);
1272
+ }
1273
+
1274
+ export { OperationParametersElement }
1275
+
1276
+ export { OperationParametersVisitor }
1277
+
1278
+ export { OperationParametersVisitorOptions }
1279
+
1280
+ export { OperationRequestBodyVisitor }
1281
+
1282
+ export { OperationRequestBodyVisitorOptions }
1283
+
1284
+ export { OperationSecurityElement }
1285
+
1286
+ export { OperationSecurityVisitor }
1287
+
1288
+ export { OperationSecurityVisitorOptions }
1289
+
1290
+ export { OperationServersElement }
1291
+
1292
+ export { OperationServersVisitor }
1293
+
1294
+ export { OperationServersVisitorOptions }
1295
+
1296
+ export { OperationTagsElement }
1297
+
1298
+ export { OperationTagsVisitor }
1299
+
1300
+ export { OperationTagsVisitorOptions }
1301
+
1302
+ /**
1303
+ * @public
1304
+ */
1305
+ export declare class OperationVisitor extends BaseOperationVisitor {
1306
+ readonly element: OperationElement;
1307
+ constructor(options: OperationVisitorOptions);
1308
+ }
1309
+
1310
+ export { OperationVisitorOptions }
1311
+
1312
+ export { ParameterContentElement }
1313
+
1314
+ export { ParameterContentVisitor }
1315
+
1316
+ export { ParameterContentVisitorOptions }
1317
+
1318
+ /**
1319
+ * @public
1320
+ */
1321
+ export declare class ParameterElement extends ParameterElement_2 {
1322
+ get schema(): SchemaElement | undefined;
1323
+ set schema(schema: SchemaElement | undefined);
1324
+ }
1325
+
1326
+ export { ParameterExamplesElement }
1327
+
1328
+ export { ParameterExamplesVisitorOptions }
1329
+
1330
+ export { ParameterExampleVisitor }
1331
+
1332
+ export { ParameterSchemaVisitor }
1333
+
1334
+ export { ParameterSchemaVisitorOptions }
1335
+
1336
+ export { ParametersVisitor }
1337
+
1338
+ export { ParametersVisitorOptions }
1339
+
1340
+ /**
1341
+ * @public
1342
+ */
1343
+ export declare class ParameterVisitor extends BaseParameterVisitor {
1344
+ readonly element: ParameterElement;
1345
+ constructor(options: ParameterVisitorOptions);
1346
+ }
1347
+
1348
+ export { ParameterVisitorOptions }
1349
+
1350
+ declare class ParentSchemaAwareVisitor {
1351
+ parent: Element_2;
1352
+ constructor({ parent }: ParentSchemaAwareVisitorOptions);
1353
+ }
1354
+
1355
+ /**
1356
+ * @public
1357
+ */
1358
+ export declare interface ParentSchemaAwareVisitorOptions {
1359
+ readonly parent: Element_2;
1360
+ }
1361
+
1362
+ export { PathItem$RefVisitor }
1363
+
1364
+ export { PathItem$RefVisitorOptions }
1365
+
1366
+ /**
1367
+ * @public
1368
+ */
1369
+ export declare class PathItemElement extends PathItemElement_2 {
1370
+ get GET(): OperationElement;
1371
+ set GET(operation: OperationElement | undefined);
1372
+ get PUT(): OperationElement;
1373
+ set PUT(operation: OperationElement | undefined);
1374
+ get POST(): OperationElement;
1375
+ set POST(operation: OperationElement | undefined);
1376
+ get DELETE(): OperationElement;
1377
+ set DELETE(operation: OperationElement | undefined);
1378
+ get OPTIONS(): OperationElement;
1379
+ set OPTIONS(operation: OperationElement | undefined);
1380
+ get HEAD(): OperationElement;
1381
+ set HEAD(operation: OperationElement | undefined);
1382
+ get PATCH(): OperationElement;
1383
+ set PATCH(operation: OperationElement | undefined);
1384
+ get TRACE(): OperationElement;
1385
+ set TRACE(operation: OperationElement | undefined);
1386
+ }
1387
+
1388
+ export { PathItemParametersElement }
1389
+
1390
+ export { PathItemParametersVisitor }
1391
+
1392
+ export { PathItemParametersVisitorOptions }
1393
+
1394
+ export { PathItemServersElement }
1395
+
1396
+ export { PathItemServersVisitor }
1397
+
1398
+ export { PathItemServersVisitorOptions }
1399
+
1400
+ declare const PathItemsVisitor_base: Class<any[], MapVisitor & FallbackVisitor, typeof MapVisitor & typeof FallbackVisitor>;
1401
+
1402
+ /**
1403
+ * @public
1404
+ */
1405
+ export declare class PathItemVisitor extends BasePathItemVisitor {
1406
+ readonly element: PathItemElement;
1407
+ constructor(options: PathItemVisitorOptions);
1408
+ }
1409
+
1410
+ export { PathItemVisitorOptions }
1411
+
1412
+ /**
1413
+ * @public
1414
+ */
1415
+ export declare class PathsElement extends PathsElement_2 {
1416
+ }
1417
+
1418
+ /**
1419
+ * @public
1420
+ */
1421
+ export declare class PathsVisitor extends BasePathsVisitor {
1422
+ readonly element: PathsElement;
1423
+ constructor(options: PathsVisitorOptions);
1424
+ }
1425
+
1426
+ export { PathsVisitorOptions }
1427
+
1428
+ export { PatternedFieldsVisitor }
1429
+
1430
+ export { PatternedFieldsVisitorOptions }
1431
+
1432
+ declare const PatternPropertiesVisitor_base: Class<any[], MapVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof MapVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
1433
+
1434
+ declare const PrefixItemsVisitor_base: Class<any[], SpecificationVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof SpecificationVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
1435
+
1436
+ declare const PropertiesVisitor_base: Class<any[], MapVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof MapVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
1437
+
1438
+ export { Reference$RefVisitor }
1439
+
1440
+ export { Reference$RefVisitorOptions }
1441
+
1442
+ /**
1443
+ * @public
1444
+ */
1445
+ export declare class ReferenceElement extends ReferenceElement_2 {
1446
+ }
1447
+
1448
+ /**
1449
+ * @public
1450
+ */
1451
+ export declare class ReferenceVisitor extends BaseReferenceVisitor {
1452
+ readonly element: ReferenceElement;
1453
+ constructor(options: ReferenceVisitorOptions);
1454
+ }
1455
+
1456
+ export { ReferenceVisitorOptions }
1457
+
1458
+ /**
1459
+ * @public
1460
+ */
1461
+ export declare const refractorPluginNormalizeHeaderExamples: ({ storageField }?: RefractorPluginNormalizeHeaderExamplesOptions) => (toolbox: Toolbox) => {
1462
+ visitor: {
1463
+ OpenApi3_1Element: {
1464
+ enter(element: OpenApi3_1Element): void;
1465
+ leave(): void;
1466
+ };
1467
+ HeaderElement: {
1468
+ leave(headerElement: HeaderElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1469
+ };
1470
+ };
1471
+ };
1472
+
1473
+ /**
1474
+ * Override of Schema.example and Schema.examples field inside the Header Objects.
1475
+ *
1476
+ * Header Object has two fixed fields:
1477
+ * - `example` of type `Any`
1478
+ * - `examples` of type `Map[string, Example Object | Reference Object]`
1479
+ *
1480
+ * OpenAPI 3.1 specification excerpt that defines the override behavior:
1481
+ *
1482
+ * The example value SHALL override the example provided by the schema.
1483
+ * Furthermore, if referencing a schema that contains an example, the examples value SHALL override the example provided by the schema.
1484
+ *
1485
+ * NOTE: this plugin is idempotent
1486
+ * @public
1487
+ */
1488
+ export declare interface RefractorPluginNormalizeHeaderExamplesOptions {
1489
+ storageField?: string;
1490
+ }
1491
+
1492
+ /**
1493
+ * @public
1494
+ */
1495
+ export declare const refractorPluginNormalizeOperationIds: ({ storageField, operationIdNormalizer, }?: RefractorPluginNormalizeOperationIdsOptions) => (toolbox: Toolbox) => {
1496
+ visitor: {
1497
+ OpenApi3_1Element: {
1498
+ enter(element: OpenApi3_1Element): void;
1499
+ leave(): void;
1500
+ };
1501
+ PathItemElement: {
1502
+ enter(pathItemElement: PathItemElement): void;
1503
+ leave(): void;
1504
+ };
1505
+ OperationElement: {
1506
+ enter(operationElement: OperationElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1507
+ };
1508
+ LinkElement: {
1509
+ leave(linkElement: LinkElement): void;
1510
+ };
1511
+ };
1512
+ };
1513
+
1514
+ /**
1515
+ * Normalization of Operation.operationId field.
1516
+ *
1517
+ * This normalization is not guided by OpenAPI 3.1 specification.
1518
+ *
1519
+ * Existing Operation.operationId fields are normalized into snake case form.
1520
+ *
1521
+ * Operation Objects, that do not define operationId field, are left untouched.
1522
+ *
1523
+ * Original operationId is stored in meta and as new `__originalOperationId` field.
1524
+ *
1525
+ * This plugin also guarantees the uniqueness of all defined Operation.operationId fields,
1526
+ * and make sure Link.operationId fields are pointing to correct and normalized Operation.operationId fields.
1527
+ *
1528
+ * NOTE: this plugin is idempotent
1529
+ * @public
1530
+ */
1531
+ export declare interface RefractorPluginNormalizeOperationIdsOptions {
1532
+ storageField?: string;
1533
+ operationIdNormalizer?: (operationId: string, path: string, method: string) => string;
1534
+ }
1535
+
1536
+ /**
1537
+ * @public
1538
+ */
1539
+ export declare const refractorPluginNormalizeParameterExamples: ({ storageField }?: RefractorPluginNormalizeParameterExamplesOptions) => (toolbox: Toolbox) => {
1540
+ visitor: {
1541
+ OpenApi3_1Element: {
1542
+ enter(element: OpenApi3_1Element): void;
1543
+ leave(): void;
1544
+ };
1545
+ ParameterElement: {
1546
+ leave(parameterElement: ParameterElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1547
+ };
1548
+ };
1549
+ };
1550
+
1551
+ /**
1552
+ * Override of Schema.example and Schema.examples field inside the Parameter Objects.
1553
+ *
1554
+ * Parameter Object has two fixed fields:
1555
+ * - `example` of type `Any`
1556
+ * - `examples` of type `Map[string, Example Object | Reference Object]`
1557
+ *
1558
+ * OpenAPI 3.1 specification excerpt that defines the override behavior:
1559
+ *
1560
+ * The example value SHALL override the example provided by the schema.
1561
+ * Furthermore, if referencing a schema that contains an example, the examples value SHALL override the example provided by the schema.
1562
+ *
1563
+ * NOTE: this plugin is idempotent
1564
+ * @public
1565
+ */
1566
+ export declare interface RefractorPluginNormalizeParameterExamplesOptions {
1567
+ storageField?: string;
1568
+ }
1569
+
1570
+ /**
1571
+ * @public
1572
+ */
1573
+ export declare const refractorPluginNormalizeParameters: ({ storageField }?: RefractorPluginNormalizeParametersOptions) => (toolbox: Toolbox) => {
1574
+ visitor: {
1575
+ OpenApi3_1Element: {
1576
+ enter(element: OpenApi3_1Element): void;
1577
+ leave(): void;
1578
+ };
1579
+ PathItemElement: {
1580
+ enter(pathItemElement: PathItemElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1581
+ leave(): void;
1582
+ };
1583
+ OperationElement: {
1584
+ leave(operationElement: OperationElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1585
+ };
1586
+ };
1587
+ };
1588
+
1589
+ /**
1590
+ * Inheritance of Parameter Objects.
1591
+ *
1592
+ * OpenAPI 3.1 specification excerpt that defines the inheritance behavior:
1593
+ *
1594
+ * A list of parameters that are applicable for this operation. If a parameter is already defined at the Path Item,
1595
+ * the new definition will override it but can never remove it. The list MUST NOT include duplicated parameters.
1596
+ * A unique parameter is defined by a combination of a name and location.
1597
+ *
1598
+ * NOTE: this plugin is idempotent
1599
+ * @public
1600
+ */
1601
+ export declare interface RefractorPluginNormalizeParametersOptions {
1602
+ storageField?: string;
1603
+ }
1604
+
1605
+ /**
1606
+ * @public
1607
+ */
1608
+ export declare const refractorPluginNormalizeSecurityRequirements: ({ storageField }?: RefractorPluginNormalizeSecurityRequirementsOptions) => (toolbox: Toolbox) => {
1609
+ visitor: {
1610
+ OpenApi3_1Element: {
1611
+ enter(openapiElement: OpenApi3_1Element): void;
1612
+ leave(): void;
1613
+ };
1614
+ OperationElement: {
1615
+ leave(operationElement: OperationElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1616
+ };
1617
+ };
1618
+ };
1619
+
1620
+ /**
1621
+ * Override of Security Requirement Objects.
1622
+ *
1623
+ * OpenAPI 3.1 specification excerpt that defines the override behavior:
1624
+ *
1625
+ * Operation.security definition overrides any declared top-level security.
1626
+ * To remove a top-level security declaration, an empty array can be used.
1627
+ * When a list of Security Requirement Objects is defined on the OpenAPI Object or Operation Object,
1628
+ * only one of the Security Requirement Objects in the list needs to be satisfied to authorize the request.
1629
+ *
1630
+ * NOTE: this plugin is idempotent
1631
+ * @public
1632
+ */
1633
+ export declare interface RefractorPluginNormalizeSecurityRequirementsOptions {
1634
+ storageField?: string;
1635
+ }
1636
+
1637
+ /**
1638
+ * @public
1639
+ */
1640
+ export declare const refractorPluginNormalizeServers: ({ storageField }?: RefractorPluginNormalizeServersOptions) => (toolbox: Toolbox) => {
1641
+ visitor: {
1642
+ OpenApi3_1Element: {
1643
+ enter(openapiElement: OpenApi3_1Element): void;
1644
+ leave(): void;
1645
+ };
1646
+ PathItemElement(pathItemElement: PathItemElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1647
+ OperationElement(operationElement: OperationElement, key: string | number, parent: Element_2 | undefined, path: (string | number)[], ancestors: [Element_2 | Element_2[]]): void;
1648
+ };
1649
+ };
1650
+
1651
+ /**
1652
+ * Override of Server Objects.
1653
+ *
1654
+ * List of Server Objects can be defined in OpenAPI 3.1 on multiple levels:
1655
+ *
1656
+ * - OpenAPI.servers
1657
+ * - PathItem.servers
1658
+ * - Operation.servers
1659
+ *
1660
+ * If a servers array is specified at the OpenAPI Object level, it will be overridden by `PathItem`.servers.
1661
+ * If a servers array is specified at the Path Item Object or OpenAPI Object level, it will be overridden by Operation.servers.
1662
+ * @public
1663
+ */
1664
+ export declare interface RefractorPluginNormalizeServersOptions {
1665
+ storageField?: string;
1666
+ }
1667
+
1668
+ /**
1669
+ * @public
1670
+ */
1671
+ export declare const refractorPluginReplaceEmptyElement: () => ({ predicates }: {
1672
+ predicates: ToolboxPredicates;
1673
+ }) => {
1674
+ visitor: {
1675
+ StringElement(element: StringElement, key: any, parent: any, path: any, ancestors: any[]): any;
1676
+ };
1677
+ };
1678
+
1679
+ export { RequestBodyContentElement }
1680
+
1681
+ export { RequestBodyContentVisitor }
1682
+
1683
+ export { RequestBodyContentVisitorOptions }
1684
+
1685
+ /**
1686
+ * @public
1687
+ */
1688
+ export declare class RequestBodyElement extends RequestBodyElement_2 {
1689
+ }
1690
+
1691
+ /**
1692
+ * @public
1693
+ */
1694
+ export declare class RequestBodyVisitor extends BaseRequestBodyVisitor {
1695
+ readonly element: RequestBodyElement;
1696
+ constructor(options: RequestBodyVisitorOptions);
1697
+ }
1698
+
1699
+ export { RequestBodyVisitorOptions }
1700
+
1701
+ export { ResponseContentElement }
1702
+
1703
+ export { ResponseContentVisitor }
1704
+
1705
+ export { ResponseContentVisitorOptions }
1706
+
1707
+ /**
1708
+ * @public
1709
+ */
1710
+ export declare class ResponseElement extends ResponseElement_2 {
1711
+ }
1712
+
1713
+ export { ResponseHeadersElement }
1714
+
1715
+ export { ResponseHeadersVisitor }
1716
+
1717
+ export { ResponseHeadersVisitorOptions }
1718
+
1719
+ export { ResponseLinksElement }
1720
+
1721
+ export { ResponseLinksVisitor }
1722
+
1723
+ export { ResponseLinksVisitorOptions }
1724
+
1725
+ export { ResponsesDefaultVisitor }
1726
+
1727
+ export { ResponsesDefaultVisitorOptions }
1728
+
1729
+ /**
1730
+ * @public
1731
+ */
1732
+ export declare class ResponsesElement extends ResponsesElement_2 {
1733
+ }
1734
+
1735
+ /**
1736
+ * @public
1737
+ */
1738
+ export declare class ResponsesVisitor extends BaseResponsesVisitor {
1739
+ readonly element: ResponsesElement;
1740
+ constructor(options: ResponsesVisitorOptions);
1741
+ }
1742
+
1743
+ export { ResponsesVisitorOptions }
1744
+
1745
+ /**
1746
+ * @public
1747
+ */
1748
+ export declare class ResponseVisitor extends BaseResponseVisitor {
1749
+ readonly element: ResponseElement;
1750
+ constructor(options: ResponseVisitorOptions);
1751
+ }
1752
+
1753
+ export { ResponseVisitorOptions }
1754
+
1755
+ /**
1756
+ * @public
1757
+ */
1758
+ export declare class Schema$defsVisitor extends $defsVisitor_base {
1759
+ readonly element: ObjectElement;
1760
+ protected readonly specPath: SpecPath<['document', 'objects', 'Schema']>;
1761
+ constructor(options: Schema$defsVisitorOptions);
1762
+ }
1763
+
1764
+ /**
1765
+ * @public
1766
+ */
1767
+ export declare interface Schema$defsVisitorOptions extends MapVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
1768
+ }
1769
+
1770
+ /**
1771
+ * @public
1772
+ */
1773
+ export declare class Schema$refVisitor extends FallbackVisitor {
1774
+ readonly element: StringElement;
1775
+ StringElement(stringElement: StringElement): {};
1776
+ }
1777
+
1778
+ /**
1779
+ * @public
1780
+ */
1781
+ export declare class Schema$vocabularyVisitor extends FallbackVisitor {
1782
+ readonly element: ObjectElement;
1783
+ ObjectElement(objectElement: ObjectElement): {};
1784
+ }
1785
+
1786
+ /**
1787
+ * @public
1788
+ */
1789
+ export declare class SchemaAllOfVisitor extends AllOfVisitor_base {
1790
+ readonly element: ArrayElement;
1791
+ constructor(options: SchemaAllOfVisitorOptions);
1792
+ ArrayElement(arrayElement: ArrayElement): {};
1793
+ }
1794
+
1795
+ /**
1796
+ * @public
1797
+ */
1798
+ export declare interface SchemaAllOfVisitorOptions extends SpecificationVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
1799
+ }
1800
+
1801
+ /**
1802
+ * @public
1803
+ */
1804
+ export declare class SchemaAnyOfVisitor extends AnyOfVisitor_base {
1805
+ readonly element: ArrayElement;
1806
+ constructor(options: SchemaAnyOfVisitorOptions);
1807
+ ArrayElement(arrayElement: ArrayElement): {};
1808
+ }
1809
+
1810
+ /**
1811
+ * @public
1812
+ */
1813
+ export declare interface SchemaAnyOfVisitorOptions extends SpecificationVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
1814
+ }
1815
+
1816
+ /**
1817
+ * @public
1818
+ */
1819
+ export declare class SchemaDependentRequiredVisitor extends FallbackVisitor {
1820
+ readonly element: ObjectElement;
1821
+ ObjectElement(objectElement: ObjectElement): {};
1822
+ }
1823
+
1824
+ /**
1825
+ * @public
1826
+ */
1827
+ export declare class SchemaDependentSchemasVisitor extends DependentSchemasVisitor_base {
1828
+ readonly element: ObjectElement;
1829
+ protected readonly specPath: SpecPath<['document', 'objects', 'Schema']>;
1830
+ constructor(options: SchemaDependentSchemasVisitorOptions);
1831
+ }
1832
+
1833
+ /**
1834
+ * @public
1835
+ */
1836
+ export declare interface SchemaDependentSchemasVisitorOptions extends MapVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
1837
+ }
1838
+
1839
+ /**
1840
+ * @public
1841
+ */
1842
+ export declare class SchemaElement extends ObjectElement {
1843
+ constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes);
1844
+ /**
1845
+ * Core vocabulary
1846
+ *
1847
+ * URI: https://json-schema.org/draft/2020-12/vocab/core
1848
+ */
1849
+ get $schema(): StringElement | undefined;
1850
+ set $schema($schema: StringElement | undefined);
1851
+ get $vocabulary(): ObjectElement | undefined;
1852
+ set $vocabulary($vocabulary: ObjectElement | undefined);
1853
+ get $id(): StringElement | undefined;
1854
+ set $id($id: StringElement | undefined);
1855
+ get $anchor(): StringElement | undefined;
1856
+ set $anchor($anchor: StringElement | undefined);
1857
+ get $dynamicAnchor(): StringElement | undefined;
1858
+ set $dynamicAnchor($dynamicAnchor: StringElement | undefined);
1859
+ get $dynamicRef(): StringElement | undefined;
1860
+ set $dynamicRef($dynamicRef: StringElement | undefined);
1861
+ get $ref(): StringElement | undefined;
1862
+ set $ref($ref: StringElement | undefined);
1863
+ get $defs(): ObjectElement | undefined;
1864
+ set $defs($defs: ObjectElement | undefined);
1865
+ get $comment(): StringElement | undefined;
1866
+ set $comment($comment: StringElement | undefined);
1867
+ /**
1868
+ * Applicator vocabulary
1869
+ *
1870
+ * URI: https://json-schema.org/draft/2020-12/vocab/applicator
1871
+ */
1872
+ get allOf(): ArrayElement | undefined;
1873
+ set allOf(allOf: ArrayElement | undefined);
1874
+ get anyOf(): ArrayElement | undefined;
1875
+ set anyOf(anyOf: ArrayElement | undefined);
1876
+ get oneOf(): ArrayElement | undefined;
1877
+ set oneOf(oneOf: ArrayElement | undefined);
1878
+ get not(): SchemaElement | undefined;
1879
+ set not(not: SchemaElement | undefined);
1880
+ get if(): SchemaElement | undefined;
1881
+ set if(ifSchema: SchemaElement | undefined);
1882
+ get then(): SchemaElement | undefined;
1883
+ set then(thenSchema: SchemaElement | undefined);
1884
+ get else(): SchemaElement | undefined;
1885
+ set else(elseSchema: SchemaElement | undefined);
1886
+ get dependentSchemas(): ObjectElement | undefined;
1887
+ set dependentSchemas(dependentSchemas: ObjectElement | undefined);
1888
+ get prefixItems(): ArrayElement | undefined;
1889
+ set prefixItems(prefixItems: ArrayElement | undefined);
1890
+ get items(): SchemaElement | undefined;
1891
+ set items(items: SchemaElement | undefined);
1892
+ get containsProp(): SchemaElement | undefined;
1893
+ set containsProp(containsProp: SchemaElement | undefined);
1894
+ get properties(): ObjectElement | undefined;
1895
+ set properties(properties: ObjectElement | undefined);
1896
+ get patternProperties(): ObjectElement | undefined;
1897
+ set patternProperties(patternProperties: ObjectElement | undefined);
1898
+ get additionalProperties(): SchemaElement | undefined;
1899
+ set additionalProperties(additionalProperties: SchemaElement | undefined);
1900
+ get propertyNames(): SchemaElement | undefined;
1901
+ set propertyNames(propertyNames: SchemaElement | undefined);
1902
+ /**
1903
+ * Unevaluated Locations vocabulary
1904
+ *
1905
+ * URI: https://json-schema.org/draft/2020-12/vocab/unevaluated
1906
+ */
1907
+ get unevaluatedItems(): SchemaElement | undefined;
1908
+ set unevaluatedItems(unevaluatedItems: SchemaElement | undefined);
1909
+ get unevaluatedProperties(): SchemaElement | undefined;
1910
+ set unevaluatedProperties(unevaluatedProperties: SchemaElement | undefined);
1911
+ /**
1912
+ * Validation vocabulary
1913
+ *
1914
+ * URI: https://json-schema.org/draft/2020-12/vocab/validation
1915
+ */
1916
+ /**
1917
+ * Validation Keywords for Any Instance Type
1918
+ *
1919
+ * URI: https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.1
1920
+ */
1921
+ get type(): ArrayElement | StringElement | undefined;
1922
+ set type(type: ArrayElement | StringElement | undefined);
1923
+ get enum(): ArrayElement | undefined;
1924
+ set enum(enumVal: ArrayElement | undefined);
1925
+ get const(): Element_2 | undefined;
1926
+ set const(constVal: Element_2 | undefined);
1927
+ /**
1928
+ * Validation Keywords for Numeric Instances (number and integer)
1929
+ *
1930
+ * URI: https://json-schema.org/draft/2020-12/json-schema-validation.html#numeric
1931
+ */
1932
+ get multipleOf(): NumberElement | undefined;
1933
+ set multipleOf(multipleOf: NumberElement | undefined);
1934
+ get maximum(): NumberElement | undefined;
1935
+ set maximum(maximum: NumberElement | undefined);
1936
+ get exclusiveMaximum(): NumberElement | undefined;
1937
+ set exclusiveMaximum(exclusiveMaximum: NumberElement | undefined);
1938
+ get minimum(): NumberElement | undefined;
1939
+ set minimum(minimum: NumberElement | undefined);
1940
+ get exclusiveMinimum(): NumberElement | undefined;
1941
+ set exclusiveMinimum(exclusiveMinimum: NumberElement | undefined);
1942
+ /**
1943
+ * Validation Keywords for Strings
1944
+ *
1945
+ * URI: https://json-schema.org/draft/2020-12/json-schema-validation.html#string
1946
+ */
1947
+ get maxLength(): NumberElement | undefined;
1948
+ set maxLength(maxLength: NumberElement | undefined);
1949
+ get minLength(): NumberElement | undefined;
1950
+ set minLength(minLength: NumberElement | undefined);
1951
+ get pattern(): StringElement | undefined;
1952
+ set pattern(pattern: StringElement | undefined);
1953
+ /**
1954
+ * Validation Keywords for Arrays
1955
+ *
1956
+ * URI: https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.4
1957
+ */
1958
+ get maxItems(): NumberElement | undefined;
1959
+ set maxItems(maxItems: NumberElement | undefined);
1960
+ get minItems(): NumberElement | undefined;
1961
+ set minItems(minItems: NumberElement | undefined);
1962
+ get uniqueItems(): BooleanElement | undefined;
1963
+ set uniqueItems(uniqueItems: BooleanElement | undefined);
1964
+ get maxContains(): NumberElement | undefined;
1965
+ set maxContains(maxContains: NumberElement | undefined);
1966
+ get minContains(): NumberElement | undefined;
1967
+ set minContains(minContains: NumberElement | undefined);
1968
+ /**
1969
+ * Validation Keywords for Objects
1970
+ *
1971
+ * URI: https://json-schema.org/draft/2020-12/json-schema-validation.html#rfc.section.6.5
1972
+ */
1973
+ get maxProperties(): NumberElement | undefined;
1974
+ set maxProperties(maxProperties: NumberElement | undefined);
1975
+ get minProperties(): NumberElement | undefined;
1976
+ set minProperties(minProperties: NumberElement | undefined);
1977
+ get required(): ArrayElement | undefined;
1978
+ set required(required: ArrayElement | undefined);
1979
+ get dependentRequired(): ObjectElement | undefined;
1980
+ set dependentRequired(dependentRequired: ObjectElement | undefined);
1981
+ /**
1982
+ * Vocabulary for Basic Meta-Data Annotations
1983
+ *
1984
+ * URI: https://json-schema.org/draft/2020-12/vocab/meta-data
1985
+ */
1986
+ get title(): StringElement | undefined;
1987
+ set title(title: StringElement | undefined);
1988
+ get description(): StringElement | undefined;
1989
+ set description(description: StringElement | undefined);
1990
+ get default(): Element_2 | undefined;
1991
+ set default(defaultVal: Element_2 | undefined);
1992
+ get deprecated(): BooleanElement | undefined;
1993
+ set deprecated(deprecated: BooleanElement | undefined);
1994
+ get readOnly(): BooleanElement | undefined;
1995
+ set readOnly(readOnly: BooleanElement | undefined);
1996
+ get writeOnly(): BooleanElement | undefined;
1997
+ set writeOnly(writeOnly: BooleanElement | undefined);
1998
+ get examples(): ArrayElement | undefined;
1999
+ set examples(examples: ArrayElement | undefined);
2000
+ /**
2001
+ * Vocabularies for Semantic Content With "format"
2002
+ *
2003
+ * URI: https://json-schema.org/draft/2020-12/vocab/format-annotation
2004
+ */
2005
+ get format(): StringElement | undefined;
2006
+ set format(format: StringElement | undefined);
2007
+ /**
2008
+ * Vocabulary for the Contents of String-Encoded Data
2009
+ *
2010
+ * URI: https://json-schema.org/draft/2020-12/vocab/content
2011
+ */
2012
+ get contentEncoding(): StringElement | undefined;
2013
+ set contentEncoding(contentEncoding: StringElement | undefined);
2014
+ get contentMediaType(): StringElement | undefined;
2015
+ set contentMediaType(contentMediaType: StringElement | undefined);
2016
+ get contentSchema(): SchemaElement | undefined;
2017
+ set contentSchema(contentSchema: SchemaElement | undefined);
2018
+ /**
2019
+ * OAS base vocabulary
2020
+ *
2021
+ * URI: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#baseVocabulary
2022
+ */
2023
+ get discriminator(): DiscriminatorElement | undefined;
2024
+ set discriminator(discriminator: DiscriminatorElement | undefined);
2025
+ get xml(): XmlElement | undefined;
2026
+ set xml(xml: XmlElement | undefined);
2027
+ get externalDocs(): ExternalDocumentationElement | undefined;
2028
+ set externalDocs(externalDocs: ExternalDocumentationElement | undefined);
2029
+ /**
2030
+ * @deprecated The example property has been deprecated in favor of the JSON Schema examples keyword. Use of example is discouraged, and later versions of this specification may remove it.
2031
+ */
2032
+ get example(): Element_2 | undefined;
2033
+ set example(example: Element_2 | undefined);
2034
+ }
2035
+
2036
+ /**
2037
+ * @public
2038
+ */
2039
+ export declare class SchemaEnumVisitor extends FallbackVisitor {
2040
+ readonly element: ArrayElement;
2041
+ ArrayElement(arrayElement: ArrayElement): {};
2042
+ }
2043
+
2044
+ /**
2045
+ * @public
2046
+ */
2047
+ export declare class SchemaExamplesVisitor extends FallbackVisitor {
2048
+ readonly element: ArrayElement;
2049
+ ArrayElement(arrayElement: ArrayElement): {};
2050
+ }
2051
+
2052
+ /**
2053
+ * @public
2054
+ */
2055
+ export declare class SchemaOneOfVisitor extends OneOfVisitor_base {
2056
+ readonly element: ArrayElement;
2057
+ constructor(options: SchemaOneOfVisitorOptions);
2058
+ ArrayElement(arrayElement: ArrayElement): {};
2059
+ }
2060
+
2061
+ /**
2062
+ * @public
2063
+ */
2064
+ export declare interface SchemaOneOfVisitorOptions extends SpecificationVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
2065
+ }
2066
+
2067
+ /**
2068
+ * @public
2069
+ */
2070
+ export declare class SchemaPatternPropertiesVisitor extends PatternPropertiesVisitor_base {
2071
+ readonly element: ObjectElement;
2072
+ protected readonly specPath: SpecPath<['document', 'objects', 'Schema']>;
2073
+ constructor(options: SchemaPatternPropertiesVisitorOptions);
2074
+ }
2075
+
2076
+ /**
2077
+ * @public
2078
+ */
2079
+ export declare interface SchemaPatternPropertiesVisitorOptions extends MapVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
2080
+ }
2081
+
2082
+ /**
2083
+ * @public
2084
+ */
2085
+ export declare class SchemaPrefixItemsVisitor extends PrefixItemsVisitor_base {
2086
+ readonly element: ArrayElement;
2087
+ constructor(options: SchemaPrefixItemsVisitorOptions);
2088
+ ArrayElement(arrayElement: ArrayElement): {};
2089
+ }
2090
+
2091
+ /**
2092
+ * @public
2093
+ */
2094
+ export declare interface SchemaPrefixItemsVisitorOptions extends SpecificationVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
2095
+ }
2096
+
2097
+ /**
2098
+ * @public
2099
+ */
2100
+ export declare class SchemaPropertiesVisitor extends PropertiesVisitor_base {
2101
+ readonly element: ObjectElement;
2102
+ protected readonly specPath: SpecPath<['document', 'objects', 'Schema']>;
2103
+ constructor(options: SchemaPropertiesVisitorOptions);
2104
+ }
2105
+
2106
+ /**
2107
+ * @public
2108
+ */
2109
+ export declare interface SchemaPropertiesVisitorOptions extends MapVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
2110
+ }
2111
+
2112
+ /**
2113
+ * @public
2114
+ */
2115
+ export declare class SchemaRequiredVisitor extends FallbackVisitor {
2116
+ readonly element: ArrayElement;
2117
+ ArrayElement(arrayElement: ArrayElement): {};
2118
+ }
2119
+
2120
+ declare const SchemasVisitor_base: Class<any[], MapVisitor & FallbackVisitor, typeof MapVisitor & typeof FallbackVisitor>;
2121
+
2122
+ /**
2123
+ * @public
2124
+ */
2125
+ export declare class SchemaTypeVisitor extends FallbackVisitor {
2126
+ readonly element: StringElement | ArrayElement;
2127
+ StringElement(stringElement: StringElement): {};
2128
+ ArrayElement(arrayElement: ArrayElement): {};
2129
+ }
2130
+
2131
+ /**
2132
+ * @public
2133
+ */
2134
+ export declare class SchemaVisitor extends SchemaVisitor_base {
2135
+ readonly element: SchemaElement;
2136
+ protected readonly jsonSchemaDefaultDialect: JsonSchemaDialectElement;
2137
+ constructor(options: SchemaVisitorOptions);
2138
+ ObjectElement(objectElement: ObjectElement): {};
2139
+ BooleanElement(booleanElement: BooleanElement): {};
2140
+ /**
2141
+ * This function depends on some external context, so we need to make sure this function
2142
+ * works even when no context is provided like when directly refracting generic Object Element
2143
+ * into Schema Element: `SchemaElement.refract(new ObjectElement({ type: 'object' });`
2144
+ */
2145
+ getJsonSchemaDialect(): JsonSchemaDialectElement;
2146
+ handle$schema(objectElement: ObjectElement): void;
2147
+ handle$id(objectElement: ObjectElement): void;
2148
+ }
2149
+
2150
+ declare const SchemaVisitor_base: Class<any[], FixedFieldsVisitor & ParentSchemaAwareVisitor & FallbackVisitor, typeof FixedFieldsVisitor & typeof ParentSchemaAwareVisitor & typeof FallbackVisitor>;
2151
+
2152
+ /**
2153
+ * @public
2154
+ */
2155
+ export declare interface SchemaVisitorOptions extends FixedFieldsVisitorOptions, ParentSchemaAwareVisitorOptions, FallbackVisitorOptions {
2156
+ }
2157
+
2158
+ export { SecurityElement }
2159
+
2160
+ /**
2161
+ * @public
2162
+ */
2163
+ export declare class SecurityRequirementElement extends SecurityRequirementElement_2 {
2164
+ }
2165
+
2166
+ /**
2167
+ * @public
2168
+ */
2169
+ export declare class SecurityRequirementVisitor extends BaseSecurityRequirementVisitor {
2170
+ readonly element: SecurityRequirementElement;
2171
+ constructor(options: SecurityRequirementVisitorOptions);
2172
+ }
2173
+
2174
+ export { SecurityRequirementVisitorOptions }
2175
+
2176
+ /**
2177
+ * @public
2178
+ */
2179
+ export declare class SecuritySchemeElement extends SecuritySchemeElement_2 {
2180
+ }
2181
+
2182
+ /**
2183
+ * @public
2184
+ */
2185
+ export declare class SecuritySchemeVisitor extends BaseSecuritySchemeVisitor {
2186
+ readonly element: SecuritySchemeElement;
2187
+ constructor(options: SecuritySchemeVisitorOptions);
2188
+ }
2189
+
2190
+ export { SecuritySchemeVisitorOptions }
2191
+
2192
+ export { SecurityVisitor }
2193
+
2194
+ export { SecurityVisitorOptions }
2195
+
2196
+ /**
2197
+ * @public
2198
+ */
2199
+ export declare class ServerElement extends ServerElement_2 {
2200
+ }
2201
+
2202
+ export { ServersElement }
2203
+
2204
+ export { ServersVisitor }
2205
+
2206
+ export { ServersVisitorOptions }
2207
+
2208
+ /**
2209
+ * @public
2210
+ */
2211
+ export declare class ServerVariableElement extends ServerVariableElement_2 {
2212
+ }
2213
+
2214
+ export { ServerVariablesElement }
2215
+
2216
+ export { ServerVariableUrlVisitor }
2217
+
2218
+ export { ServerVariableUrlVisitorOptions }
2219
+
2220
+ export { ServerVariableVariablesVisitor }
2221
+
2222
+ export { ServerVariableVariablesVisitorOptions }
2223
+
2224
+ /**
2225
+ * @public
2226
+ */
2227
+ export declare class ServerVariableVisitor extends BaseServerVariableVisitor {
2228
+ readonly element: ServerVariableElement;
2229
+ constructor(options: ServerVariableVisitorOptions);
2230
+ }
2231
+
2232
+ export { ServerVariableVisitorOptions }
2233
+
2234
+ /**
2235
+ * @public
2236
+ */
2237
+ export declare class ServerVisitor extends BaseServerVisitor {
2238
+ readonly element: ServerElement;
2239
+ constructor(options: ServerVisitorOptions);
2240
+ }
2241
+
2242
+ export { ServerVisitorOptions }
2243
+
2244
+ export { SpecificationExtensionVisitor }
2245
+
2246
+ export { SpecificationExtensionVisitorOptions }
2247
+
2248
+ /**
2249
+ * Specification object allows us to have complete control over visitors
2250
+ * when traversing the ApiDOM.
2251
+ * Specification also allows us to create amended refractors from
2252
+ * existing ones by manipulating it.
2253
+ *
2254
+ * Note: Specification object allows to use absolute internal JSON pointers.
2255
+ * @public
2256
+ */
2257
+ export declare const specificationObj: {
2258
+ readonly visitors: {
2259
+ readonly value: FallbackVisitor;
2260
+ readonly document: {
2261
+ readonly objects: {
2262
+ readonly OpenApi: {
2263
+ readonly $visitor: typeof OpenApi3_1Visitor;
2264
+ readonly fixedFields: {
2265
+ readonly openapi: OpenapiVisitor;
2266
+ readonly info: {
2267
+ readonly $ref: "#/visitors/document/objects/Info";
2268
+ };
2269
+ readonly jsonSchemaDialect: typeof JsonSchemaDialectVisitor;
2270
+ readonly servers: ServersVisitor;
2271
+ readonly paths: {
2272
+ readonly $ref: "#/visitors/document/objects/Paths";
2273
+ };
2274
+ readonly webhooks: typeof WebhooksVisitor;
2275
+ readonly components: {
2276
+ readonly $ref: "#/visitors/document/objects/Components";
2277
+ };
2278
+ readonly security: SecurityVisitor;
2279
+ readonly tags: TagsVisitor;
2280
+ readonly externalDocs: {
2281
+ readonly $ref: "#/visitors/document/objects/ExternalDocumentation";
2282
+ };
2283
+ };
2284
+ };
2285
+ readonly Info: {
2286
+ readonly $visitor: typeof InfoVisitor;
2287
+ readonly fixedFields: {
2288
+ readonly title: {
2289
+ readonly $ref: "#/visitors/value";
2290
+ };
2291
+ readonly description: {
2292
+ readonly $ref: "#/visitors/value";
2293
+ };
2294
+ readonly summary: {
2295
+ readonly $ref: "#/visitors/value";
2296
+ };
2297
+ readonly termsOfService: {
2298
+ readonly $ref: "#/visitors/value";
2299
+ };
2300
+ readonly contact: {
2301
+ readonly $ref: "#/visitors/document/objects/Contact";
2302
+ };
2303
+ readonly license: {
2304
+ readonly $ref: "#/visitors/document/objects/License";
2305
+ };
2306
+ readonly version: InfoVersionVisitor;
2307
+ };
2308
+ };
2309
+ readonly Contact: {
2310
+ readonly $visitor: typeof ContactVisitor;
2311
+ readonly fixedFields: {
2312
+ readonly name: {
2313
+ readonly $ref: "#/visitors/value";
2314
+ };
2315
+ readonly url: {
2316
+ readonly $ref: "#/visitors/value";
2317
+ };
2318
+ readonly email: {
2319
+ readonly $ref: "#/visitors/value";
2320
+ };
2321
+ };
2322
+ };
2323
+ readonly License: {
2324
+ readonly $visitor: typeof LicenseVisitor;
2325
+ readonly fixedFields: {
2326
+ readonly name: {
2327
+ readonly $ref: "#/visitors/value";
2328
+ };
2329
+ readonly identifier: {
2330
+ readonly $ref: "#/visitors/value";
2331
+ };
2332
+ readonly url: {
2333
+ readonly $ref: "#/visitors/value";
2334
+ };
2335
+ };
2336
+ };
2337
+ readonly Server: {
2338
+ readonly $visitor: typeof ServerVisitor;
2339
+ readonly fixedFields: {
2340
+ readonly url: ServerVariableUrlVisitor;
2341
+ readonly description: {
2342
+ readonly $ref: "#/visitors/value";
2343
+ };
2344
+ readonly variables: ServerVariableVariablesVisitor;
2345
+ };
2346
+ };
2347
+ readonly ServerVariable: {
2348
+ readonly $visitor: typeof ServerVariableVisitor;
2349
+ readonly fixedFields: {
2350
+ readonly enum: {
2351
+ readonly $ref: "#/visitors/value";
2352
+ };
2353
+ readonly default: {
2354
+ readonly $ref: "#/visitors/value";
2355
+ };
2356
+ readonly description: {
2357
+ readonly $ref: "#/visitors/value";
2358
+ };
2359
+ };
2360
+ };
2361
+ readonly Components: {
2362
+ readonly $visitor: typeof ComponentsVisitor;
2363
+ readonly fixedFields: {
2364
+ readonly schemas: typeof ComponentsSchemasVisitor;
2365
+ readonly responses: ComponentsResponsesVisitor;
2366
+ readonly parameters: ComponentsParametersVisitor;
2367
+ readonly examples: ComponentsExamplesVisitor;
2368
+ readonly requestBodies: ComponentsRequestBodiesVisitor;
2369
+ readonly headers: ComponentsHeadersVisitor;
2370
+ readonly securitySchemes: ComponentsSecuritySchemesVisitor;
2371
+ readonly links: ComponentsLinksVisitor;
2372
+ readonly callbacks: ComponentsCallbacksVisitor;
2373
+ readonly pathItems: typeof ComponentsPathItemsVisitor;
2374
+ };
2375
+ };
2376
+ readonly Paths: {
2377
+ readonly $visitor: typeof PathsVisitor;
2378
+ };
2379
+ readonly PathItem: {
2380
+ readonly $visitor: typeof PathItemVisitor;
2381
+ readonly fixedFields: {
2382
+ readonly $ref: PathItem$RefVisitor;
2383
+ readonly summary: {
2384
+ readonly $ref: "#/visitors/value";
2385
+ };
2386
+ readonly description: {
2387
+ readonly $ref: "#/visitors/value";
2388
+ };
2389
+ readonly get: {
2390
+ readonly $ref: "#/visitors/document/objects/Operation";
2391
+ };
2392
+ readonly put: {
2393
+ readonly $ref: "#/visitors/document/objects/Operation";
2394
+ };
2395
+ readonly post: {
2396
+ readonly $ref: "#/visitors/document/objects/Operation";
2397
+ };
2398
+ readonly delete: {
2399
+ readonly $ref: "#/visitors/document/objects/Operation";
2400
+ };
2401
+ readonly options: {
2402
+ readonly $ref: "#/visitors/document/objects/Operation";
2403
+ };
2404
+ readonly head: {
2405
+ readonly $ref: "#/visitors/document/objects/Operation";
2406
+ };
2407
+ readonly patch: {
2408
+ readonly $ref: "#/visitors/document/objects/Operation";
2409
+ };
2410
+ readonly trace: {
2411
+ readonly $ref: "#/visitors/document/objects/Operation";
2412
+ };
2413
+ readonly servers: PathItemServersVisitor;
2414
+ readonly parameters: PathItemParametersVisitor;
2415
+ };
2416
+ };
2417
+ readonly Operation: {
2418
+ readonly $visitor: typeof OperationVisitor;
2419
+ readonly fixedFields: {
2420
+ readonly tags: OperationTagsVisitor;
2421
+ readonly summary: {
2422
+ readonly $ref: "#/visitors/value";
2423
+ };
2424
+ readonly description: {
2425
+ readonly $ref: "#/visitors/value";
2426
+ };
2427
+ readonly externalDocs: {
2428
+ readonly $ref: "#/visitors/document/objects/ExternalDocumentation";
2429
+ };
2430
+ readonly operationId: {
2431
+ readonly $ref: "#/visitors/value";
2432
+ };
2433
+ readonly parameters: OperationParametersVisitor;
2434
+ readonly requestBody: OperationRequestBodyVisitor;
2435
+ readonly responses: {
2436
+ readonly $ref: "#/visitors/document/objects/Responses";
2437
+ };
2438
+ readonly callbacks: OperationCallbacksVisitor;
2439
+ readonly deprecated: {
2440
+ readonly $ref: "#/visitors/value";
2441
+ };
2442
+ readonly security: OperationSecurityVisitor;
2443
+ readonly servers: OperationServersVisitor;
2444
+ };
2445
+ };
2446
+ readonly ExternalDocumentation: {
2447
+ readonly $visitor: typeof ExternalDocumentationVisitor;
2448
+ readonly fixedFields: {
2449
+ readonly description: {
2450
+ readonly $ref: "#/visitors/value";
2451
+ };
2452
+ readonly url: {
2453
+ readonly $ref: "#/visitors/value";
2454
+ };
2455
+ };
2456
+ };
2457
+ readonly Parameter: {
2458
+ readonly $visitor: typeof ParameterVisitor;
2459
+ readonly fixedFields: {
2460
+ readonly name: {
2461
+ readonly $ref: "#/visitors/value";
2462
+ };
2463
+ readonly in: {
2464
+ readonly $ref: "#/visitors/value";
2465
+ };
2466
+ readonly description: {
2467
+ readonly $ref: "#/visitors/value";
2468
+ };
2469
+ readonly required: {
2470
+ readonly $ref: "#/visitors/value";
2471
+ };
2472
+ readonly deprecated: {
2473
+ readonly $ref: "#/visitors/value";
2474
+ };
2475
+ readonly allowEmptyValue: {
2476
+ readonly $ref: "#/visitors/value";
2477
+ };
2478
+ readonly style: {
2479
+ readonly $ref: "#/visitors/value";
2480
+ };
2481
+ readonly explode: {
2482
+ readonly $ref: "#/visitors/value";
2483
+ };
2484
+ readonly allowReserved: {
2485
+ readonly $ref: "#/visitors/value";
2486
+ };
2487
+ readonly schema: {
2488
+ readonly $ref: "#/visitors/document/objects/Schema";
2489
+ };
2490
+ readonly example: {
2491
+ readonly $ref: "#/visitors/value";
2492
+ };
2493
+ readonly examples: ParameterExampleVisitor;
2494
+ readonly content: ParameterContentVisitor;
2495
+ };
2496
+ };
2497
+ readonly RequestBody: {
2498
+ readonly $visitor: typeof RequestBodyVisitor;
2499
+ readonly fixedFields: {
2500
+ readonly description: {
2501
+ readonly $ref: "#/visitors/value";
2502
+ };
2503
+ readonly content: RequestBodyContentVisitor;
2504
+ readonly required: {
2505
+ readonly $ref: "#/visitors/value";
2506
+ };
2507
+ };
2508
+ };
2509
+ readonly MediaType: {
2510
+ readonly $visitor: typeof MediaTypeVisitor;
2511
+ readonly fixedFields: {
2512
+ readonly schema: {
2513
+ readonly $ref: "#/visitors/document/objects/Schema";
2514
+ };
2515
+ readonly example: {
2516
+ readonly $ref: "#/visitors/value";
2517
+ };
2518
+ readonly examples: MediaTypeExamplesVisitor;
2519
+ readonly encoding: MediaTypeEncodingVisitor;
2520
+ };
2521
+ };
2522
+ readonly Encoding: {
2523
+ readonly $visitor: typeof EncodingVisitor;
2524
+ readonly fixedFields: {
2525
+ readonly contentType: {
2526
+ readonly $ref: "#/visitors/value";
2527
+ };
2528
+ readonly headers: EncodingHeadersVisitor;
2529
+ readonly style: {
2530
+ readonly $ref: "#/visitors/value";
2531
+ };
2532
+ readonly explode: {
2533
+ readonly $ref: "#/visitors/value";
2534
+ };
2535
+ readonly allowReserved: {
2536
+ readonly $ref: "#/visitors/value";
2537
+ };
2538
+ };
2539
+ };
2540
+ readonly Responses: {
2541
+ readonly $visitor: typeof ResponsesVisitor;
2542
+ readonly fixedFields: {
2543
+ readonly default: ResponsesDefaultVisitor;
2544
+ };
2545
+ };
2546
+ readonly Response: {
2547
+ readonly $visitor: typeof ResponseVisitor;
2548
+ readonly fixedFields: {
2549
+ readonly description: {
2550
+ readonly $ref: "#/visitors/value";
2551
+ };
2552
+ readonly headers: ResponseHeadersVisitor;
2553
+ readonly content: ResponseContentVisitor;
2554
+ readonly links: ResponseLinksVisitor;
2555
+ };
2556
+ };
2557
+ readonly Callback: {
2558
+ readonly $visitor: typeof CallbackVisitor;
2559
+ };
2560
+ readonly Example: {
2561
+ readonly $visitor: typeof ExampleVisitor;
2562
+ readonly fixedFields: {
2563
+ readonly summary: {
2564
+ readonly $ref: "#/visitors/value";
2565
+ };
2566
+ readonly description: {
2567
+ readonly $ref: "#/visitors/value";
2568
+ };
2569
+ readonly value: {
2570
+ readonly $ref: "#/visitors/value";
2571
+ };
2572
+ readonly externalValue: ExampleExternalValueVisitor;
2573
+ };
2574
+ };
2575
+ readonly Link: {
2576
+ readonly $visitor: typeof LinkVisitor;
2577
+ readonly fixedFields: {
2578
+ readonly operationRef: LinkOperationRefVisitor;
2579
+ readonly operationId: LinkOperationIdVisitor;
2580
+ readonly parameters: LinkParametersVisitor;
2581
+ readonly requestBody: {
2582
+ readonly $ref: "#/visitors/value";
2583
+ };
2584
+ readonly description: {
2585
+ readonly $ref: "#/visitors/value";
2586
+ };
2587
+ readonly server: {
2588
+ readonly $ref: "#/visitors/document/objects/Server";
2589
+ };
2590
+ };
2591
+ };
2592
+ readonly Header: {
2593
+ readonly $visitor: typeof HeaderVisitor;
2594
+ readonly fixedFields: {
2595
+ readonly description: {
2596
+ readonly $ref: "#/visitors/value";
2597
+ };
2598
+ readonly required: {
2599
+ readonly $ref: "#/visitors/value";
2600
+ };
2601
+ readonly deprecated: {
2602
+ readonly $ref: "#/visitors/value";
2603
+ };
2604
+ readonly allowEmptyValue: {
2605
+ readonly $ref: "#/visitors/value";
2606
+ };
2607
+ readonly style: {
2608
+ readonly $ref: "#/visitors/value";
2609
+ };
2610
+ readonly explode: {
2611
+ readonly $ref: "#/visitors/value";
2612
+ };
2613
+ readonly allowReserved: {
2614
+ readonly $ref: "#/visitors/value";
2615
+ };
2616
+ readonly schema: {
2617
+ readonly $ref: "#/visitors/document/objects/Schema";
2618
+ };
2619
+ readonly example: {
2620
+ readonly $ref: "#/visitors/value";
2621
+ };
2622
+ readonly examples: HeaderExamplesVisitor;
2623
+ readonly content: HeaderContentVisitor;
2624
+ };
2625
+ };
2626
+ readonly Tag: {
2627
+ readonly $visitor: typeof TagVisitor;
2628
+ readonly fixedFields: {
2629
+ readonly name: {
2630
+ readonly $ref: "#/visitors/value";
2631
+ };
2632
+ readonly description: {
2633
+ readonly $ref: "#/visitors/value";
2634
+ };
2635
+ readonly externalDocs: {
2636
+ readonly $ref: "#/visitors/document/objects/ExternalDocumentation";
2637
+ };
2638
+ };
2639
+ };
2640
+ readonly Reference: {
2641
+ readonly $visitor: typeof ReferenceVisitor;
2642
+ readonly fixedFields: {
2643
+ readonly $ref: Reference$RefVisitor;
2644
+ readonly summary: {
2645
+ readonly $ref: "#/visitors/value";
2646
+ };
2647
+ readonly description: {
2648
+ readonly $ref: "#/visitors/value";
2649
+ };
2650
+ };
2651
+ };
2652
+ readonly Schema: {
2653
+ readonly $visitor: typeof SchemaVisitor;
2654
+ readonly fixedFields: {
2655
+ readonly $schema: {
2656
+ readonly $ref: "#/visitors/value";
2657
+ };
2658
+ readonly $vocabulary: typeof Schema$vocabularyVisitor;
2659
+ readonly $id: {
2660
+ readonly $ref: "#/visitors/value";
2661
+ };
2662
+ readonly $anchor: {
2663
+ readonly $ref: "#/visitors/value";
2664
+ };
2665
+ readonly $dynamicAnchor: {
2666
+ readonly $ref: "#/visitors/value";
2667
+ };
2668
+ readonly $dynamicRef: {
2669
+ readonly $ref: "#/visitors/value";
2670
+ };
2671
+ readonly $ref: typeof Schema$refVisitor;
2672
+ readonly $defs: typeof Schema$defsVisitor;
2673
+ readonly $comment: {
2674
+ readonly $ref: "#/visitors/value";
2675
+ };
2676
+ readonly allOf: typeof SchemaAllOfVisitor;
2677
+ readonly anyOf: typeof SchemaAnyOfVisitor;
2678
+ readonly oneOf: typeof SchemaOneOfVisitor;
2679
+ readonly not: {
2680
+ readonly $ref: "#/visitors/document/objects/Schema";
2681
+ };
2682
+ readonly if: {
2683
+ readonly $ref: "#/visitors/document/objects/Schema";
2684
+ };
2685
+ readonly then: {
2686
+ readonly $ref: "#/visitors/document/objects/Schema";
2687
+ };
2688
+ readonly else: {
2689
+ readonly $ref: "#/visitors/document/objects/Schema";
2690
+ };
2691
+ readonly dependentSchemas: typeof SchemaDependentSchemasVisitor;
2692
+ readonly prefixItems: typeof SchemaPrefixItemsVisitor;
2693
+ readonly items: {
2694
+ readonly $ref: "#/visitors/document/objects/Schema";
2695
+ };
2696
+ readonly contains: {
2697
+ readonly $ref: "#/visitors/document/objects/Schema";
2698
+ };
2699
+ readonly properties: typeof SchemaPropertiesVisitor;
2700
+ readonly patternProperties: typeof SchemaPatternPropertiesVisitor;
2701
+ readonly additionalProperties: {
2702
+ readonly $ref: "#/visitors/document/objects/Schema";
2703
+ };
2704
+ readonly propertyNames: {
2705
+ readonly $ref: "#/visitors/document/objects/Schema";
2706
+ };
2707
+ readonly unevaluatedItems: {
2708
+ readonly $ref: "#/visitors/document/objects/Schema";
2709
+ };
2710
+ readonly unevaluatedProperties: {
2711
+ readonly $ref: "#/visitors/document/objects/Schema";
2712
+ };
2713
+ readonly type: typeof SchemaTypeVisitor;
2714
+ readonly enum: typeof SchemaEnumVisitor;
2715
+ readonly const: {
2716
+ readonly $ref: "#/visitors/value";
2717
+ };
2718
+ readonly multipleOf: {
2719
+ readonly $ref: "#/visitors/value";
2720
+ };
2721
+ readonly maximum: {
2722
+ readonly $ref: "#/visitors/value";
2723
+ };
2724
+ readonly exclusiveMaximum: {
2725
+ readonly $ref: "#/visitors/value";
2726
+ };
2727
+ readonly minimum: {
2728
+ readonly $ref: "#/visitors/value";
2729
+ };
2730
+ readonly exclusiveMinimum: {
2731
+ readonly $ref: "#/visitors/value";
2732
+ };
2733
+ readonly maxLength: {
2734
+ readonly $ref: "#/visitors/value";
2735
+ };
2736
+ readonly minLength: {
2737
+ readonly $ref: "#/visitors/value";
2738
+ };
2739
+ readonly pattern: {
2740
+ readonly $ref: "#/visitors/value";
2741
+ };
2742
+ readonly maxItems: {
2743
+ readonly $ref: "#/visitors/value";
2744
+ };
2745
+ readonly minItems: {
2746
+ readonly $ref: "#/visitors/value";
2747
+ };
2748
+ readonly uniqueItems: {
2749
+ readonly $ref: "#/visitors/value";
2750
+ };
2751
+ readonly maxContains: {
2752
+ readonly $ref: "#/visitors/value";
2753
+ };
2754
+ readonly minContains: {
2755
+ readonly $ref: "#/visitors/value";
2756
+ };
2757
+ readonly maxProperties: {
2758
+ readonly $ref: "#/visitors/value";
2759
+ };
2760
+ readonly minProperties: {
2761
+ readonly $ref: "#/visitors/value";
2762
+ };
2763
+ readonly required: {
2764
+ readonly $ref: "#/visitors/value";
2765
+ };
2766
+ readonly dependentRequired: typeof SchemaDependentRequiredVisitor;
2767
+ readonly title: {
2768
+ readonly $ref: "#/visitors/value";
2769
+ };
2770
+ readonly description: {
2771
+ readonly $ref: "#/visitors/value";
2772
+ };
2773
+ readonly default: {
2774
+ readonly $ref: "#/visitors/value";
2775
+ };
2776
+ readonly deprecated: {
2777
+ readonly $ref: "#/visitors/value";
2778
+ };
2779
+ readonly readOnly: {
2780
+ readonly $ref: "#/visitors/value";
2781
+ };
2782
+ readonly writeOnly: {
2783
+ readonly $ref: "#/visitors/value";
2784
+ };
2785
+ readonly examples: typeof SchemaExamplesVisitor;
2786
+ readonly format: {
2787
+ readonly $ref: "#/visitors/value";
2788
+ };
2789
+ readonly contentEncoding: {
2790
+ readonly $ref: "#/visitors/value";
2791
+ };
2792
+ readonly contentMediaType: {
2793
+ readonly $ref: "#/visitors/value";
2794
+ };
2795
+ readonly contentSchema: {
2796
+ readonly $ref: "#/visitors/document/objects/Schema";
2797
+ };
2798
+ readonly discriminator: {
2799
+ readonly $ref: "#/visitors/document/objects/Discriminator";
2800
+ };
2801
+ readonly xml: {
2802
+ readonly $ref: "#/visitors/document/objects/XML";
2803
+ };
2804
+ readonly externalDocs: {
2805
+ readonly $ref: "#/visitors/document/objects/ExternalDocumentation";
2806
+ };
2807
+ readonly example: {
2808
+ readonly $ref: "#/visitors/value";
2809
+ };
2810
+ };
2811
+ };
2812
+ readonly Discriminator: {
2813
+ readonly $visitor: typeof DiscriminatorVisitor;
2814
+ readonly fixedFields: {
2815
+ readonly propertyName: {
2816
+ readonly $ref: "#/visitors/value";
2817
+ };
2818
+ readonly mapping: DiscriminatorMappingVisitor;
2819
+ };
2820
+ };
2821
+ readonly XML: {
2822
+ readonly $visitor: typeof XmlVisitor;
2823
+ readonly fixedFields: {
2824
+ readonly name: {
2825
+ readonly $ref: "#/visitors/value";
2826
+ };
2827
+ readonly namespace: {
2828
+ readonly $ref: "#/visitors/value";
2829
+ };
2830
+ readonly prefix: {
2831
+ readonly $ref: "#/visitors/value";
2832
+ };
2833
+ readonly attribute: {
2834
+ readonly $ref: "#/visitors/value";
2835
+ };
2836
+ readonly wrapped: {
2837
+ readonly $ref: "#/visitors/value";
2838
+ };
2839
+ };
2840
+ };
2841
+ readonly SecurityScheme: {
2842
+ readonly $visitor: typeof SecuritySchemeVisitor;
2843
+ readonly fixedFields: {
2844
+ readonly type: {
2845
+ readonly $ref: "#/visitors/value";
2846
+ };
2847
+ readonly description: {
2848
+ readonly $ref: "#/visitors/value";
2849
+ };
2850
+ readonly name: {
2851
+ readonly $ref: "#/visitors/value";
2852
+ };
2853
+ readonly in: {
2854
+ readonly $ref: "#/visitors/value";
2855
+ };
2856
+ readonly scheme: {
2857
+ readonly $ref: "#/visitors/value";
2858
+ };
2859
+ readonly bearerFormat: {
2860
+ readonly $ref: "#/visitors/value";
2861
+ };
2862
+ readonly flows: {
2863
+ readonly $ref: "#/visitors/document/objects/OAuthFlows";
2864
+ };
2865
+ readonly openIdConnectUrl: {
2866
+ readonly $ref: "#/visitors/value";
2867
+ };
2868
+ };
2869
+ };
2870
+ readonly OAuthFlows: {
2871
+ readonly $visitor: typeof OAuthFlowsVisitor;
2872
+ readonly fixedFields: {
2873
+ readonly implicit: {
2874
+ readonly $ref: "#/visitors/document/objects/OAuthFlow";
2875
+ };
2876
+ readonly password: {
2877
+ readonly $ref: "#/visitors/document/objects/OAuthFlow";
2878
+ };
2879
+ readonly clientCredentials: {
2880
+ readonly $ref: "#/visitors/document/objects/OAuthFlow";
2881
+ };
2882
+ readonly authorizationCode: {
2883
+ readonly $ref: "#/visitors/document/objects/OAuthFlow";
2884
+ };
2885
+ };
2886
+ };
2887
+ readonly OAuthFlow: {
2888
+ readonly $visitor: typeof OAuthFlowVisitor;
2889
+ readonly fixedFields: {
2890
+ readonly authorizationUrl: {
2891
+ readonly $ref: "#/visitors/value";
2892
+ };
2893
+ readonly tokenUrl: {
2894
+ readonly $ref: "#/visitors/value";
2895
+ };
2896
+ readonly refreshUrl: {
2897
+ readonly $ref: "#/visitors/value";
2898
+ };
2899
+ readonly scopes: OAuthFlowScopesVisitor;
2900
+ };
2901
+ };
2902
+ readonly SecurityRequirement: {
2903
+ readonly $visitor: typeof SecurityRequirementVisitor;
2904
+ };
2905
+ };
2906
+ readonly extension: {
2907
+ readonly $visitor: SpecificationExtensionVisitor;
2908
+ };
2909
+ };
2910
+ };
2911
+ };
2912
+
2913
+ export { SpecificationVisitor }
2914
+
2915
+ export { SpecificationVisitorOptions }
2916
+
2917
+ export { SpecPath }
2918
+
2919
+ /**
2920
+ * @public
2921
+ */
2922
+ export declare class TagElement extends TagElement_2 {
2923
+ }
2924
+
2925
+ export { TagsElement }
2926
+
2927
+ export { TagsVisitor }
2928
+
2929
+ export { TagsVisitorOptions }
2930
+
2931
+ /**
2932
+ * @public
2933
+ */
2934
+ export declare class TagVisitor extends BaseTagVisitor {
2935
+ readonly element: TagElement;
2936
+ constructor(options: TagVisitorOptions);
2937
+ }
2938
+
2939
+ export { TagVisitorOptions }
2940
+
2941
+ /**
2942
+ * @public
2943
+ */
2944
+ export declare interface Toolbox {
2945
+ predicates: ToolboxPredicates;
2946
+ ancestorLineageToJSONPointer: typeof ancestorLineageToJSONPointer;
2947
+ namespace: Namespace_2;
2948
+ }
2949
+
2950
+ /**
2951
+ * @public
2952
+ */
2953
+ export declare type ToolboxPredicates = typeof openApi3_1Predicates & {
2954
+ isElement: typeof isElement;
2955
+ isStringElement: typeof isStringElement;
2956
+ isArrayElement: typeof isArrayElement;
2957
+ isObjectElement: typeof isObjectElement;
2958
+ isMemberElement: typeof isMemberElement;
2959
+ isServersElement: typeof isServersElement;
2960
+ includesClasses: typeof includesClasses;
2961
+ hasElementSourceMap: typeof hasElementSourceMap;
2962
+ };
2963
+
2964
+ export { Visitor }
2965
+
2966
+ export { VisitorOptions }
2967
+
2968
+ /**
2969
+ * @public
2970
+ */
2971
+ export declare class WebhooksElement extends ObjectElement {
2972
+ static primaryClass: string;
2973
+ constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes);
2974
+ }
2975
+
2976
+ /**
2977
+ * @public
2978
+ */
2979
+ export declare class WebhooksVisitor extends WebhooksVisitor_base {
2980
+ readonly element: WebhooksElement;
2981
+ protected readonly specPath: SpecPath<[
2982
+ 'document',
2983
+ 'objects',
2984
+ 'Reference'
2985
+ ] | ['document', 'objects', 'PathItem']>;
2986
+ constructor(options: WebhooksVisitorOptions);
2987
+ ObjectElement(objectElement: ObjectElement): {};
2988
+ }
2989
+
2990
+ declare const WebhooksVisitor_base: Class<any[], MapVisitor & FallbackVisitor, typeof MapVisitor & typeof FallbackVisitor>;
2991
+
2992
+ /**
2993
+ * @public
2994
+ */
2995
+ export declare interface WebhooksVisitorOptions extends MapVisitorOptions, FallbackVisitorOptions {
2996
+ }
2997
+
2998
+ /**
2999
+ * @public
3000
+ */
3001
+ export declare class XmlElement extends XmlElement_2 {
3002
+ }
3003
+
3004
+ /**
3005
+ * @public
3006
+ */
3007
+ export declare class XmlVisitor extends BaseXMLVisitor {
3008
+ readonly element: XmlElement;
3009
+ constructor(options: XmlVisitorOptions);
3010
+ }
3011
+
3012
+ export { XmlVisitorOptions }
3013
+
3014
+ export { }