@speclynx/apidom-ns-openapi-3-0 4.0.3 → 4.0.5

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 (176) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/dist/apidom-ns-openapi-3-0.browser.js +30 -6
  3. package/dist/apidom-ns-openapi-3-0.browser.min.js +1 -1
  4. package/package.json +9 -8
  5. package/src/elements/Callback.ts +0 -13
  6. package/src/elements/Components.ts +0 -85
  7. package/src/elements/Contact.ts +0 -42
  8. package/src/elements/Discriminator.ts +0 -34
  9. package/src/elements/Encoding.ts +0 -59
  10. package/src/elements/Example.ts +0 -51
  11. package/src/elements/ExternalDocumentation.ts +0 -34
  12. package/src/elements/Header.ts +0 -119
  13. package/src/elements/Info.ts +0 -70
  14. package/src/elements/License.ts +0 -34
  15. package/src/elements/Link.ts +0 -85
  16. package/src/elements/MediaType.ts +0 -48
  17. package/src/elements/OAuthFlow.ts +0 -50
  18. package/src/elements/OAuthFlows.ts +0 -47
  19. package/src/elements/OpenApi3-0.ts +0 -90
  20. package/src/elements/Openapi.ts +0 -15
  21. package/src/elements/Operation.ts +0 -124
  22. package/src/elements/Parameter.ts +0 -135
  23. package/src/elements/PathItem.ts +0 -125
  24. package/src/elements/Paths.ts +0 -13
  25. package/src/elements/Reference.ts +0 -27
  26. package/src/elements/RequestBody.ts +0 -46
  27. package/src/elements/Response.ts +0 -50
  28. package/src/elements/Responses.ts +0 -24
  29. package/src/elements/Schema.ts +0 -230
  30. package/src/elements/SecurityRequirement.ts +0 -13
  31. package/src/elements/SecurityScheme.ts +0 -84
  32. package/src/elements/Server.ts +0 -42
  33. package/src/elements/ServerVariable.ts +0 -43
  34. package/src/elements/Tag.ts +0 -44
  35. package/src/elements/Xml.ts +0 -59
  36. package/src/elements/nces/ComponentsCallbacks.ts +0 -15
  37. package/src/elements/nces/ComponentsExamples.ts +0 -16
  38. package/src/elements/nces/ComponentsHeaders.ts +0 -15
  39. package/src/elements/nces/ComponentsLinks.ts +0 -15
  40. package/src/elements/nces/ComponentsParameters.ts +0 -16
  41. package/src/elements/nces/ComponentsRequestBodies.ts +0 -15
  42. package/src/elements/nces/ComponentsResponses.ts +0 -15
  43. package/src/elements/nces/ComponentsSchemas.ts +0 -15
  44. package/src/elements/nces/ComponentsSecuritySchemes.ts +0 -15
  45. package/src/elements/nces/DiscriminatorMapping.ts +0 -15
  46. package/src/elements/nces/EncodingHeaders.ts +0 -15
  47. package/src/elements/nces/HeaderContent.ts +0 -16
  48. package/src/elements/nces/HeaderExamples.ts +0 -16
  49. package/src/elements/nces/LinkParameters.ts +0 -15
  50. package/src/elements/nces/MediaTypeEncoding.ts +0 -15
  51. package/src/elements/nces/MediaTypeExamples.ts +0 -16
  52. package/src/elements/nces/OAuthFlowScopes.ts +0 -15
  53. package/src/elements/nces/OperationCallbacks.ts +0 -15
  54. package/src/elements/nces/OperationParameters.ts +0 -16
  55. package/src/elements/nces/OperationSecurity.ts +0 -16
  56. package/src/elements/nces/OperationServers.ts +0 -16
  57. package/src/elements/nces/OperationTags.ts +0 -15
  58. package/src/elements/nces/ParameterContent.ts +0 -16
  59. package/src/elements/nces/ParameterExamples.ts +0 -16
  60. package/src/elements/nces/PathItemParameters.ts +0 -16
  61. package/src/elements/nces/PathItemServers.ts +0 -16
  62. package/src/elements/nces/RequestBodyContent.ts +0 -16
  63. package/src/elements/nces/ResponseContent.ts +0 -16
  64. package/src/elements/nces/ResponseHeaders.ts +0 -15
  65. package/src/elements/nces/ResponseLinks.ts +0 -15
  66. package/src/elements/nces/Security.ts +0 -15
  67. package/src/elements/nces/ServerVariables.ts +0 -15
  68. package/src/elements/nces/Servers.ts +0 -15
  69. package/src/elements/nces/Tags.ts +0 -15
  70. package/src/index.ts +0 -550
  71. package/src/media-types.ts +0 -52
  72. package/src/namespace.ts +0 -78
  73. package/src/predicates.ts +0 -185
  74. package/src/refractor/index.ts +0 -370
  75. package/src/refractor/inspect.ts +0 -239
  76. package/src/refractor/plugins/replace-empty-element.ts +0 -656
  77. package/src/refractor/predicates.ts +0 -39
  78. package/src/refractor/specification.ts +0 -557
  79. package/src/refractor/toolbox.ts +0 -24
  80. package/src/refractor/visitors/FallbackVisitor.ts +0 -24
  81. package/src/refractor/visitors/SpecificationExtensionVisitor.ts +0 -22
  82. package/src/refractor/visitors/SpecificationVisitor.ts +0 -112
  83. package/src/refractor/visitors/Visitor.ts +0 -47
  84. package/src/refractor/visitors/generics/AlternatingVisitor.ts +0 -45
  85. package/src/refractor/visitors/generics/FixedFieldsVisitor.ts +0 -110
  86. package/src/refractor/visitors/generics/MapVisitor.ts +0 -25
  87. package/src/refractor/visitors/generics/MixedFieldsVisitor.ts +0 -77
  88. package/src/refractor/visitors/generics/PatternedFieldsVisitor.ts +0 -99
  89. package/src/refractor/visitors/open-api-3-0/ContentVisitor.ts +0 -28
  90. package/src/refractor/visitors/open-api-3-0/ExamplesVisitor.ts +0 -48
  91. package/src/refractor/visitors/open-api-3-0/OpenapiVisitor.ts +0 -30
  92. package/src/refractor/visitors/open-api-3-0/ParametersVisitor.ts +0 -47
  93. package/src/refractor/visitors/open-api-3-0/SecurityVisitor.ts +0 -44
  94. package/src/refractor/visitors/open-api-3-0/ServersVisitor.ts +0 -40
  95. package/src/refractor/visitors/open-api-3-0/TagsVisitor.ts +0 -40
  96. package/src/refractor/visitors/open-api-3-0/bases.ts +0 -82
  97. package/src/refractor/visitors/open-api-3-0/callback/index.ts +0 -49
  98. package/src/refractor/visitors/open-api-3-0/components/CallbacksVisitor.ts +0 -45
  99. package/src/refractor/visitors/open-api-3-0/components/ExamplesVisitor.ts +0 -46
  100. package/src/refractor/visitors/open-api-3-0/components/HeadersVisitor.ts +0 -53
  101. package/src/refractor/visitors/open-api-3-0/components/LinksVisitor.ts +0 -45
  102. package/src/refractor/visitors/open-api-3-0/components/ParametersVisitor.ts +0 -46
  103. package/src/refractor/visitors/open-api-3-0/components/RequestBodiesVisitor.ts +0 -45
  104. package/src/refractor/visitors/open-api-3-0/components/ResponsesVisitor.ts +0 -53
  105. package/src/refractor/visitors/open-api-3-0/components/SchemasVisitor.ts +0 -46
  106. package/src/refractor/visitors/open-api-3-0/components/SecuritySchemesVisitor.ts +0 -45
  107. package/src/refractor/visitors/open-api-3-0/components/index.ts +0 -31
  108. package/src/refractor/visitors/open-api-3-0/contact/index.ts +0 -27
  109. package/src/refractor/visitors/open-api-3-0/distriminator/MappingVisitor.ts +0 -24
  110. package/src/refractor/visitors/open-api-3-0/distriminator/index.ts +0 -27
  111. package/src/refractor/visitors/open-api-3-0/encoding/HeadersVisitor.ts +0 -57
  112. package/src/refractor/visitors/open-api-3-0/encoding/index.ts +0 -49
  113. package/src/refractor/visitors/open-api-3-0/example/ExternalValueVisitor.ts +0 -20
  114. package/src/refractor/visitors/open-api-3-0/example/index.ts +0 -38
  115. package/src/refractor/visitors/open-api-3-0/external-documentation/index.ts +0 -27
  116. package/src/refractor/visitors/open-api-3-0/header/ContentVisitor.ts +0 -18
  117. package/src/refractor/visitors/open-api-3-0/header/ExamplesVisitor.ts +0 -18
  118. package/src/refractor/visitors/open-api-3-0/header/SchemaVisitor.ts +0 -33
  119. package/src/refractor/visitors/open-api-3-0/header/index.ts +0 -27
  120. package/src/refractor/visitors/open-api-3-0/index.ts +0 -39
  121. package/src/refractor/visitors/open-api-3-0/info/VersionVisitor.ts +0 -21
  122. package/src/refractor/visitors/open-api-3-0/info/index.ts +0 -27
  123. package/src/refractor/visitors/open-api-3-0/license/index.ts +0 -27
  124. package/src/refractor/visitors/open-api-3-0/link/OperationIdVisitor.ts +0 -20
  125. package/src/refractor/visitors/open-api-3-0/link/OperationRefVisitor.ts +0 -20
  126. package/src/refractor/visitors/open-api-3-0/link/ParametersVisitor.ts +0 -24
  127. package/src/refractor/visitors/open-api-3-0/link/index.ts +0 -38
  128. package/src/refractor/visitors/open-api-3-0/media-type/EncodingVisitor.ts +0 -24
  129. package/src/refractor/visitors/open-api-3-0/media-type/ExamplesVisitor.ts +0 -18
  130. package/src/refractor/visitors/open-api-3-0/media-type/SchemaVisitor.ts +0 -33
  131. package/src/refractor/visitors/open-api-3-0/media-type/index.ts +0 -27
  132. package/src/refractor/visitors/open-api-3-0/oauth-flow/ScopesVisitor.ts +0 -24
  133. package/src/refractor/visitors/open-api-3-0/oauth-flow/index.ts +0 -27
  134. package/src/refractor/visitors/open-api-3-0/oauth-flows/index.ts +0 -27
  135. package/src/refractor/visitors/open-api-3-0/operation/CallbacksVisitor.ts +0 -45
  136. package/src/refractor/visitors/open-api-3-0/operation/ParametersVisitor.ts +0 -18
  137. package/src/refractor/visitors/open-api-3-0/operation/RequestBodyVisitor.ts +0 -39
  138. package/src/refractor/visitors/open-api-3-0/operation/SecurityVisitor.ts +0 -41
  139. package/src/refractor/visitors/open-api-3-0/operation/ServersVisitor.ts +0 -18
  140. package/src/refractor/visitors/open-api-3-0/operation/TagsVisitor.ts +0 -32
  141. package/src/refractor/visitors/open-api-3-0/operation/index.ts +0 -27
  142. package/src/refractor/visitors/open-api-3-0/parameter/ContentVisitor.ts +0 -18
  143. package/src/refractor/visitors/open-api-3-0/parameter/ExamplesVisitor.ts +0 -18
  144. package/src/refractor/visitors/open-api-3-0/parameter/SchemaVisitor.ts +0 -36
  145. package/src/refractor/visitors/open-api-3-0/parameter/index.ts +0 -49
  146. package/src/refractor/visitors/open-api-3-0/path-item/$RefVisitor.ts +0 -20
  147. package/src/refractor/visitors/open-api-3-0/path-item/ParametersVisitor.ts +0 -18
  148. package/src/refractor/visitors/open-api-3-0/path-item/ServersVisitor.ts +0 -18
  149. package/src/refractor/visitors/open-api-3-0/path-item/index.ts +0 -53
  150. package/src/refractor/visitors/open-api-3-0/paths/index.ts +0 -51
  151. package/src/refractor/visitors/open-api-3-0/reference/$RefVisitor.ts +0 -20
  152. package/src/refractor/visitors/open-api-3-0/reference/index.ts +0 -41
  153. package/src/refractor/visitors/open-api-3-0/request-body/ContentVisitor.ts +0 -18
  154. package/src/refractor/visitors/open-api-3-0/request-body/index.ts +0 -46
  155. package/src/refractor/visitors/open-api-3-0/response/ContentVisitor.ts +0 -18
  156. package/src/refractor/visitors/open-api-3-0/response/HeadersVisitor.ts +0 -57
  157. package/src/refractor/visitors/open-api-3-0/response/LinksVisitor.ts +0 -45
  158. package/src/refractor/visitors/open-api-3-0/response/index.ts +0 -57
  159. package/src/refractor/visitors/open-api-3-0/responses/DefaultVisitor.ts +0 -39
  160. package/src/refractor/visitors/open-api-3-0/responses/index.ts +0 -64
  161. package/src/refractor/visitors/open-api-3-0/schema/AllOfVisitor.ts +0 -34
  162. package/src/refractor/visitors/open-api-3-0/schema/AnyOfVisitor.ts +0 -34
  163. package/src/refractor/visitors/open-api-3-0/schema/ItemsVisitor.ts +0 -31
  164. package/src/refractor/visitors/open-api-3-0/schema/OneOfVisitor.ts +0 -34
  165. package/src/refractor/visitors/open-api-3-0/schema/PropertiesVisitor.ts +0 -34
  166. package/src/refractor/visitors/open-api-3-0/schema/SchemaOrReferenceVisitor.ts +0 -36
  167. package/src/refractor/visitors/open-api-3-0/schema/TypeVisitor.ts +0 -26
  168. package/src/refractor/visitors/open-api-3-0/schema/index.ts +0 -30
  169. package/src/refractor/visitors/open-api-3-0/security-requirement/index.ts +0 -24
  170. package/src/refractor/visitors/open-api-3-0/security-scheme/index.ts +0 -27
  171. package/src/refractor/visitors/open-api-3-0/server/UrlVisitor.ts +0 -20
  172. package/src/refractor/visitors/open-api-3-0/server/VariablesVisitor.ts +0 -24
  173. package/src/refractor/visitors/open-api-3-0/server/index.ts +0 -27
  174. package/src/refractor/visitors/open-api-3-0/server-variable/index.ts +0 -27
  175. package/src/refractor/visitors/open-api-3-0/tag/index.ts +0 -27
  176. package/src/refractor/visitors/open-api-3-0/xml/index.ts +0 -27
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ComponentsLinks extends ObjectElement {
7
- static primaryClass = 'components-links';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ComponentsLinks.primaryClass);
12
- }
13
- }
14
-
15
- export default ComponentsLinks;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ComponentsParameters extends ObjectElement {
7
- static primaryClass = 'components-parameters';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ComponentsParameters.primaryClass);
12
- this.classes.push('parameters');
13
- }
14
- }
15
-
16
- export default ComponentsParameters;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ComponentsRequestBodies extends ObjectElement {
7
- static primaryClass = 'components-request-bodies';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ComponentsRequestBodies.primaryClass);
12
- }
13
- }
14
-
15
- export default ComponentsRequestBodies;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ComponentsResponses extends ObjectElement {
7
- static primaryClass = 'components-responses';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ComponentsResponses.primaryClass);
12
- }
13
- }
14
-
15
- export default ComponentsResponses;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ComponentsSchemas extends ObjectElement {
7
- static primaryClass = 'components-schemas';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ComponentsSchemas.primaryClass);
12
- }
13
- }
14
-
15
- export default ComponentsSchemas;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ComponentsSecuritySchemes extends ObjectElement {
7
- static primaryClass = 'components-security-schemes';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ComponentsSecuritySchemes.primaryClass);
12
- }
13
- }
14
-
15
- export default ComponentsSecuritySchemes;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class DiscriminatorMapping extends ObjectElement {
7
- static primaryClass = 'discriminator-mapping';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(DiscriminatorMapping.primaryClass);
12
- }
13
- }
14
-
15
- export default DiscriminatorMapping;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class EncodingHeaders extends ObjectElement {
7
- static primaryClass = 'encoding-headers';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(EncodingHeaders.primaryClass);
12
- }
13
- }
14
-
15
- export default EncodingHeaders;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class HeaderContent extends ObjectElement {
7
- static primaryClass = 'header-content';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(HeaderContent.primaryClass);
12
- this.classes.push('content');
13
- }
14
- }
15
-
16
- export default HeaderContent;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class HeaderExamples extends ObjectElement {
7
- static primaryClass = 'header-examples';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(HeaderExamples.primaryClass);
12
- this.classes.push('examples');
13
- }
14
- }
15
-
16
- export default HeaderExamples;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class LinkParameters extends ObjectElement {
7
- static primaryClass = 'link-parameters';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(LinkParameters.primaryClass);
12
- }
13
- }
14
-
15
- export default LinkParameters;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class MediaTypeEncoding extends ObjectElement {
7
- static primaryClass = 'media-type-encoding';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(MediaTypeEncoding.primaryClass);
12
- }
13
- }
14
-
15
- export default MediaTypeEncoding;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class MediaTypeExamples extends ObjectElement {
7
- static primaryClass = 'media-type-examples';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(MediaTypeExamples.primaryClass);
12
- this.classes.push('examples');
13
- }
14
- }
15
-
16
- export default MediaTypeExamples;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class OAuthFlowScopes extends ObjectElement {
7
- static primaryClass = 'oauth-flow-scopes';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(OAuthFlowScopes.primaryClass);
12
- }
13
- }
14
-
15
- export default OAuthFlowScopes;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class OperationCallbacks extends ObjectElement {
7
- static primaryClass = 'operation-callbacks';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(OperationCallbacks.primaryClass);
12
- }
13
- }
14
-
15
- export default OperationCallbacks;
@@ -1,16 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class OperationParameters extends ArrayElement {
7
- static primaryClass = 'operation-parameters';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(OperationParameters.primaryClass);
12
- this.classes.push('parameters');
13
- }
14
- }
15
-
16
- export default OperationParameters;
@@ -1,16 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class OperationSecurity extends ArrayElement {
7
- static primaryClass = 'operation-security';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(OperationSecurity.primaryClass);
12
- this.classes.push('security');
13
- }
14
- }
15
-
16
- export default OperationSecurity;
@@ -1,16 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class OperationServers extends ArrayElement {
7
- static primaryClass = 'operation-servers';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(OperationServers.primaryClass);
12
- this.classes.push('servers');
13
- }
14
- }
15
-
16
- export default OperationServers;
@@ -1,15 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class OperationTags extends ArrayElement {
7
- static primaryClass = 'operation-tags';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(OperationTags.primaryClass);
12
- }
13
- }
14
-
15
- export default OperationTags;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ParameterContent extends ObjectElement {
7
- static primaryClass = 'parameter-content';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ParameterContent.primaryClass);
12
- this.classes.push('content');
13
- }
14
- }
15
-
16
- export default ParameterContent;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ParameterExamples extends ObjectElement {
7
- static primaryClass = 'parameter-examples';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ParameterExamples.primaryClass);
12
- this.classes.push('examples');
13
- }
14
- }
15
-
16
- export default ParameterExamples;
@@ -1,16 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class PathItemParameters extends ArrayElement {
7
- static primaryClass = 'path-item-parameters';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(PathItemParameters.primaryClass);
12
- this.classes.push('parameters');
13
- }
14
- }
15
-
16
- export default PathItemParameters;
@@ -1,16 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class PathItemServers extends ArrayElement {
7
- static primaryClass = 'path-item-servers';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(PathItemServers.primaryClass);
12
- this.classes.push('servers');
13
- }
14
- }
15
-
16
- export default PathItemServers;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class RequestBodyContent extends ObjectElement {
7
- static primaryClass = 'request-body-content';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(RequestBodyContent.primaryClass);
12
- this.classes.push('content');
13
- }
14
- }
15
-
16
- export default RequestBodyContent;
@@ -1,16 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ResponseContent extends ObjectElement {
7
- static primaryClass = 'response-content';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ResponseContent.primaryClass);
12
- this.classes.push('content');
13
- }
14
- }
15
-
16
- export default ResponseContent;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ResponseHeaders extends ObjectElement {
7
- static primaryClass = 'response-headers';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ResponseHeaders.primaryClass);
12
- }
13
- }
14
-
15
- export default ResponseHeaders;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ResponseLinks extends ObjectElement {
7
- static primaryClass = 'response-links';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ResponseLinks.primaryClass);
12
- }
13
- }
14
-
15
- export default ResponseLinks;
@@ -1,15 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class Security extends ArrayElement {
7
- static primaryClass = 'security';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(Security.primaryClass);
12
- }
13
- }
14
-
15
- export default Security;
@@ -1,15 +0,0 @@
1
- import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class ServerVariables extends ObjectElement {
7
- static primaryClass = 'server-variables';
8
-
9
- constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(ServerVariables.primaryClass);
12
- }
13
- }
14
-
15
- export default ServerVariables;
@@ -1,15 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class Servers extends ArrayElement {
7
- static primaryClass = 'servers';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(Servers.primaryClass);
12
- }
13
- }
14
-
15
- export default Servers;
@@ -1,15 +0,0 @@
1
- import { ArrayElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
2
-
3
- /**
4
- * @public
5
- */
6
- class Tags extends ArrayElement {
7
- static primaryClass = 'tags';
8
-
9
- constructor(content?: Array<unknown>, meta?: Meta, attributes?: Attributes) {
10
- super(content, meta, attributes);
11
- this.classes.push(Tags.primaryClass);
12
- }
13
- }
14
-
15
- export default Tags;