@speclynx/apidom-ns-openapi-2 4.0.1 → 4.0.3
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.
- package/CHANGELOG.md +10 -0
- package/package.json +8 -9
- package/src/elements/Contact.cjs +33 -0
- package/src/elements/Contact.mjs +30 -0
- package/src/elements/Contact.ts +42 -0
- package/src/elements/Definitions.cjs +15 -0
- package/src/elements/Definitions.mjs +12 -0
- package/src/elements/Definitions.ts +13 -0
- package/src/elements/Example.cjs +15 -0
- package/src/elements/Example.mjs +12 -0
- package/src/elements/Example.ts +13 -0
- package/src/elements/ExternalDocumentation.cjs +27 -0
- package/src/elements/ExternalDocumentation.mjs +24 -0
- package/src/elements/ExternalDocumentation.ts +34 -0
- package/src/elements/Header.cjs +185 -0
- package/src/elements/Header.mjs +182 -0
- package/src/elements/Header.ts +261 -0
- package/src/elements/Headers.cjs +15 -0
- package/src/elements/Headers.mjs +12 -0
- package/src/elements/Headers.ts +13 -0
- package/src/elements/Info.cjs +52 -0
- package/src/elements/Info.mjs +48 -0
- package/src/elements/Info.ts +70 -0
- package/src/elements/Items.cjs +190 -0
- package/src/elements/Items.mjs +187 -0
- package/src/elements/Items.ts +264 -0
- package/src/elements/License.cjs +27 -0
- package/src/elements/License.mjs +24 -0
- package/src/elements/License.ts +34 -0
- package/src/elements/Operation.cjs +78 -0
- package/src/elements/Operation.mjs +74 -0
- package/src/elements/Operation.ts +106 -0
- package/src/elements/Parameter.cjs +230 -0
- package/src/elements/Parameter.mjs +226 -0
- package/src/elements/Parameter.ts +326 -0
- package/src/elements/ParametersDefinitions.cjs +15 -0
- package/src/elements/ParametersDefinitions.mjs +12 -0
- package/src/elements/ParametersDefinitions.ts +13 -0
- package/src/elements/PathItem.cjs +69 -0
- package/src/elements/PathItem.mjs +65 -0
- package/src/elements/PathItem.ts +93 -0
- package/src/elements/Paths.cjs +15 -0
- package/src/elements/Paths.mjs +12 -0
- package/src/elements/Paths.ts +13 -0
- package/src/elements/Reference.cjs +22 -0
- package/src/elements/Reference.mjs +19 -0
- package/src/elements/Reference.ts +27 -0
- package/src/elements/Response.cjs +39 -0
- package/src/elements/Response.mjs +35 -0
- package/src/elements/Response.ts +54 -0
- package/src/elements/Responses.cjs +21 -0
- package/src/elements/Responses.mjs +17 -0
- package/src/elements/Responses.ts +24 -0
- package/src/elements/ResponsesDefinitions.cjs +15 -0
- package/src/elements/ResponsesDefinitions.mjs +12 -0
- package/src/elements/ResponsesDefinitions.ts +13 -0
- package/src/elements/Schema.cjs +151 -0
- package/src/elements/Schema.mjs +147 -0
- package/src/elements/Schema.ts +204 -0
- package/src/elements/Scopes.cjs +15 -0
- package/src/elements/Scopes.mjs +12 -0
- package/src/elements/Scopes.ts +13 -0
- package/src/elements/SecurityDefinitions.cjs +15 -0
- package/src/elements/SecurityDefinitions.mjs +12 -0
- package/src/elements/SecurityDefinitions.ts +13 -0
- package/src/elements/SecurityRequirement.cjs +15 -0
- package/src/elements/SecurityRequirement.mjs +12 -0
- package/src/elements/SecurityRequirement.ts +13 -0
- package/src/elements/SecurityScheme.cjs +63 -0
- package/src/elements/SecurityScheme.mjs +60 -0
- package/src/elements/SecurityScheme.ts +83 -0
- package/src/elements/Swagger.cjs +106 -0
- package/src/elements/Swagger.mjs +102 -0
- package/src/elements/Swagger.ts +149 -0
- package/src/elements/SwaggerVersion.cjs +17 -0
- package/src/elements/SwaggerVersion.mjs +14 -0
- package/src/elements/SwaggerVersion.ts +15 -0
- package/src/elements/Tag.cjs +33 -0
- package/src/elements/Tag.mjs +29 -0
- package/src/elements/Tag.ts +44 -0
- package/src/elements/Xml.cjs +45 -0
- package/src/elements/Xml.mjs +42 -0
- package/src/elements/Xml.ts +59 -0
- package/src/elements/nces/OperationConsumes.cjs +16 -0
- package/src/elements/nces/OperationConsumes.mjs +13 -0
- package/src/elements/nces/OperationConsumes.ts +15 -0
- package/src/elements/nces/OperationParameters.cjs +17 -0
- package/src/elements/nces/OperationParameters.mjs +14 -0
- package/src/elements/nces/OperationParameters.ts +16 -0
- package/src/elements/nces/OperationProduces.cjs +16 -0
- package/src/elements/nces/OperationProduces.mjs +13 -0
- package/src/elements/nces/OperationProduces.ts +15 -0
- package/src/elements/nces/OperationSchemes.cjs +16 -0
- package/src/elements/nces/OperationSchemes.mjs +13 -0
- package/src/elements/nces/OperationSchemes.ts +15 -0
- package/src/elements/nces/OperationSecurity.cjs +17 -0
- package/src/elements/nces/OperationSecurity.mjs +14 -0
- package/src/elements/nces/OperationSecurity.ts +16 -0
- package/src/elements/nces/OperationTags.cjs +17 -0
- package/src/elements/nces/OperationTags.mjs +14 -0
- package/src/elements/nces/OperationTags.ts +16 -0
- package/src/elements/nces/PathItemParameters.cjs +17 -0
- package/src/elements/nces/PathItemParameters.mjs +14 -0
- package/src/elements/nces/PathItemParameters.ts +16 -0
- package/src/elements/nces/SwaggerConsumes.cjs +16 -0
- package/src/elements/nces/SwaggerConsumes.mjs +13 -0
- package/src/elements/nces/SwaggerConsumes.ts +15 -0
- package/src/elements/nces/SwaggerProduces.cjs +16 -0
- package/src/elements/nces/SwaggerProduces.mjs +13 -0
- package/src/elements/nces/SwaggerProduces.ts +15 -0
- package/src/elements/nces/SwaggerSchemes.cjs +16 -0
- package/src/elements/nces/SwaggerSchemes.mjs +13 -0
- package/src/elements/nces/SwaggerSchemes.ts +15 -0
- package/src/elements/nces/SwaggerSecurity.cjs +17 -0
- package/src/elements/nces/SwaggerSecurity.mjs +14 -0
- package/src/elements/nces/SwaggerSecurity.ts +16 -0
- package/src/elements/nces/SwaggerTags.cjs +16 -0
- package/src/elements/nces/SwaggerTags.mjs +13 -0
- package/src/elements/nces/SwaggerTags.ts +15 -0
- package/src/index.cjs +156 -0
- package/src/index.mjs +32 -0
- package/src/index.ts +368 -0
- package/src/media-types.cjs +34 -0
- package/src/media-types.mjs +30 -0
- package/src/media-types.ts +42 -0
- package/src/namespace.cjs +71 -0
- package/src/namespace.mjs +66 -0
- package/src/namespace.ts +70 -0
- package/src/predicates.cjs +193 -0
- package/src/predicates.mjs +161 -0
- package/src/predicates.ts +194 -0
- package/src/refractor/index.cjs +316 -0
- package/src/refractor/index.mjs +283 -0
- package/src/refractor/index.ts +330 -0
- package/src/refractor/inspect.cjs +157 -0
- package/src/refractor/inspect.mjs +126 -0
- package/src/refractor/inspect.ts +181 -0
- package/src/refractor/plugins/replace-empty-element.cjs +366 -0
- package/src/refractor/plugins/replace-empty-element.mjs +358 -0
- package/src/refractor/plugins/replace-empty-element.ts +389 -0
- package/src/refractor/predicates.cjs +26 -0
- package/src/refractor/predicates.mjs +21 -0
- package/src/refractor/predicates.ts +29 -0
- package/src/refractor/specification.cjs +519 -0
- package/src/refractor/specification.mjs +513 -0
- package/src/refractor/specification.ts +444 -0
- package/src/refractor/toolbox.cjs +28 -0
- package/src/refractor/toolbox.mjs +21 -0
- package/src/refractor/toolbox.ts +24 -0
- package/src/refractor/visitors/FallbackVisitor.cjs +24 -0
- package/src/refractor/visitors/FallbackVisitor.mjs +18 -0
- package/src/refractor/visitors/FallbackVisitor.ts +25 -0
- package/src/refractor/visitors/SpecificationExtensionVisitor.cjs +18 -0
- package/src/refractor/visitors/SpecificationExtensionVisitor.mjs +13 -0
- package/src/refractor/visitors/SpecificationExtensionVisitor.ts +22 -0
- package/src/refractor/visitors/SpecificationVisitor.cjs +75 -0
- package/src/refractor/visitors/SpecificationVisitor.mjs +69 -0
- package/src/refractor/visitors/SpecificationVisitor.ts +83 -0
- package/src/refractor/visitors/Visitor.cjs +36 -0
- package/src/refractor/visitors/Visitor.mjs +33 -0
- package/src/refractor/visitors/Visitor.ts +47 -0
- package/src/refractor/visitors/generics/AlternatingVisitor.cjs +42 -0
- package/src/refractor/visitors/generics/AlternatingVisitor.mjs +35 -0
- package/src/refractor/visitors/generics/AlternatingVisitor.ts +45 -0
- package/src/refractor/visitors/generics/FixedFieldsVisitor.cjs +73 -0
- package/src/refractor/visitors/generics/FixedFieldsVisitor.mjs +66 -0
- package/src/refractor/visitors/generics/FixedFieldsVisitor.ts +109 -0
- package/src/refractor/visitors/generics/MapVisitor.cjs +21 -0
- package/src/refractor/visitors/generics/MapVisitor.mjs +15 -0
- package/src/refractor/visitors/generics/MapVisitor.ts +25 -0
- package/src/refractor/visitors/generics/MixedFieldsVisitor.cjs +67 -0
- package/src/refractor/visitors/generics/MixedFieldsVisitor.mjs +61 -0
- package/src/refractor/visitors/generics/MixedFieldsVisitor.ts +77 -0
- package/src/refractor/visitors/generics/PatternedFieldsVisitor.cjs +72 -0
- package/src/refractor/visitors/generics/PatternedFieldsVisitor.mjs +66 -0
- package/src/refractor/visitors/generics/PatternedFieldsVisitor.ts +99 -0
- package/src/refractor/visitors/open-api-2/BasePathVisitor.cjs +16 -0
- package/src/refractor/visitors/open-api-2/BasePathVisitor.mjs +11 -0
- package/src/refractor/visitors/open-api-2/BasePathVisitor.ts +20 -0
- package/src/refractor/visitors/open-api-2/ConsumesVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/ConsumesVisitor.mjs +18 -0
- package/src/refractor/visitors/open-api-2/ConsumesVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/HostVisitor.cjs +16 -0
- package/src/refractor/visitors/open-api-2/HostVisitor.mjs +11 -0
- package/src/refractor/visitors/open-api-2/HostVisitor.ts +20 -0
- package/src/refractor/visitors/open-api-2/ProducesVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/ProducesVisitor.mjs +18 -0
- package/src/refractor/visitors/open-api-2/ProducesVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/SchemesVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/SchemesVisitor.mjs +18 -0
- package/src/refractor/visitors/open-api-2/SchemesVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/SecurityVisitor.cjs +27 -0
- package/src/refractor/visitors/open-api-2/SecurityVisitor.mjs +22 -0
- package/src/refractor/visitors/open-api-2/SecurityVisitor.ts +34 -0
- package/src/refractor/visitors/open-api-2/SwaggerVisitor.cjs +21 -0
- package/src/refractor/visitors/open-api-2/SwaggerVisitor.mjs +16 -0
- package/src/refractor/visitors/open-api-2/SwaggerVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/TagsVisitor.cjs +27 -0
- package/src/refractor/visitors/open-api-2/TagsVisitor.mjs +22 -0
- package/src/refractor/visitors/open-api-2/TagsVisitor.ts +34 -0
- package/src/refractor/visitors/open-api-2/bases.cjs +72 -0
- package/src/refractor/visitors/open-api-2/bases.mjs +67 -0
- package/src/refractor/visitors/open-api-2/bases.ts +82 -0
- package/src/refractor/visitors/open-api-2/contact/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/contact/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/contact/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/definitions/index.cjs +31 -0
- package/src/refractor/visitors/open-api-2/definitions/index.mjs +26 -0
- package/src/refractor/visitors/open-api-2/definitions/index.ts +48 -0
- package/src/refractor/visitors/open-api-2/example/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/example/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/example/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/external-documentation/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/external-documentation/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/external-documentation/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/header/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/header/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/header/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/headers/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/headers/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/headers/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/index.cjs +21 -0
- package/src/refractor/visitors/open-api-2/index.mjs +16 -0
- package/src/refractor/visitors/open-api-2/index.ts +28 -0
- package/src/refractor/visitors/open-api-2/info/VersionVisitor.cjs +17 -0
- package/src/refractor/visitors/open-api-2/info/VersionVisitor.mjs +12 -0
- package/src/refractor/visitors/open-api-2/info/VersionVisitor.ts +21 -0
- package/src/refractor/visitors/open-api-2/info/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/info/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/info/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/items/index.cjs +22 -0
- package/src/refractor/visitors/open-api-2/items/index.mjs +17 -0
- package/src/refractor/visitors/open-api-2/items/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/license/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/license/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/license/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/operation/ConsumesVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/operation/ConsumesVisitor.mjs +18 -0
- package/src/refractor/visitors/open-api-2/operation/ConsumesVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/operation/ParametersVisitor.cjs +32 -0
- package/src/refractor/visitors/open-api-2/operation/ParametersVisitor.mjs +27 -0
- package/src/refractor/visitors/open-api-2/operation/ParametersVisitor.ts +44 -0
- package/src/refractor/visitors/open-api-2/operation/ProducesVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/operation/ProducesVisitor.mjs +18 -0
- package/src/refractor/visitors/open-api-2/operation/ProducesVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/operation/SchemesVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/operation/SchemesVisitor.mjs +18 -0
- package/src/refractor/visitors/open-api-2/operation/SchemesVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/operation/SecurityVisitor.cjs +27 -0
- package/src/refractor/visitors/open-api-2/operation/SecurityVisitor.mjs +22 -0
- package/src/refractor/visitors/open-api-2/operation/SecurityVisitor.ts +34 -0
- package/src/refractor/visitors/open-api-2/operation/TagsVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/operation/TagsVisitor.mjs +18 -0
- package/src/refractor/visitors/open-api-2/operation/TagsVisitor.ts +29 -0
- package/src/refractor/visitors/open-api-2/operation/index.cjs +19 -0
- package/src/refractor/visitors/open-api-2/operation/index.mjs +14 -0
- package/src/refractor/visitors/open-api-2/operation/index.ts +24 -0
- package/src/refractor/visitors/open-api-2/parameter/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/parameter/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/parameter/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/parameters-definitions/index.cjs +19 -0
- package/src/refractor/visitors/open-api-2/parameters-definitions/index.mjs +14 -0
- package/src/refractor/visitors/open-api-2/parameters-definitions/index.ts +24 -0
- package/src/refractor/visitors/open-api-2/path-item/$RefVisitor.cjs +16 -0
- package/src/refractor/visitors/open-api-2/path-item/$RefVisitor.mjs +11 -0
- package/src/refractor/visitors/open-api-2/path-item/$RefVisitor.ts +20 -0
- package/src/refractor/visitors/open-api-2/path-item/ParametersVisitor.cjs +32 -0
- package/src/refractor/visitors/open-api-2/path-item/ParametersVisitor.mjs +27 -0
- package/src/refractor/visitors/open-api-2/path-item/ParametersVisitor.ts +44 -0
- package/src/refractor/visitors/open-api-2/path-item/index.cjs +39 -0
- package/src/refractor/visitors/open-api-2/path-item/index.mjs +34 -0
- package/src/refractor/visitors/open-api-2/path-item/index.ts +48 -0
- package/src/refractor/visitors/open-api-2/paths/index.cjs +37 -0
- package/src/refractor/visitors/open-api-2/paths/index.mjs +32 -0
- package/src/refractor/visitors/open-api-2/paths/index.ts +48 -0
- package/src/refractor/visitors/open-api-2/reference/$RefVisitor.cjs +16 -0
- package/src/refractor/visitors/open-api-2/reference/$RefVisitor.mjs +11 -0
- package/src/refractor/visitors/open-api-2/reference/$RefVisitor.ts +20 -0
- package/src/refractor/visitors/open-api-2/reference/index.cjs +29 -0
- package/src/refractor/visitors/open-api-2/reference/index.mjs +24 -0
- package/src/refractor/visitors/open-api-2/reference/index.ts +38 -0
- package/src/refractor/visitors/open-api-2/response/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/response/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/response/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/responses/DefaultVisitor.cjs +36 -0
- package/src/refractor/visitors/open-api-2/responses/DefaultVisitor.mjs +31 -0
- package/src/refractor/visitors/open-api-2/responses/DefaultVisitor.ts +36 -0
- package/src/refractor/visitors/open-api-2/responses/index.cjs +45 -0
- package/src/refractor/visitors/open-api-2/responses/index.mjs +40 -0
- package/src/refractor/visitors/open-api-2/responses/index.ts +64 -0
- package/src/refractor/visitors/open-api-2/responses-definitions/index.cjs +19 -0
- package/src/refractor/visitors/open-api-2/responses-definitions/index.mjs +14 -0
- package/src/refractor/visitors/open-api-2/responses-definitions/index.ts +24 -0
- package/src/refractor/visitors/open-api-2/schema/AllOfVisitor.cjs +24 -0
- package/src/refractor/visitors/open-api-2/schema/AllOfVisitor.mjs +20 -0
- package/src/refractor/visitors/open-api-2/schema/AllOfVisitor.ts +35 -0
- package/src/refractor/visitors/open-api-2/schema/ItemsVisitor.cjs +26 -0
- package/src/refractor/visitors/open-api-2/schema/ItemsVisitor.mjs +23 -0
- package/src/refractor/visitors/open-api-2/schema/ItemsVisitor.ts +38 -0
- package/src/refractor/visitors/open-api-2/schema/PropertiesVisitor.cjs +24 -0
- package/src/refractor/visitors/open-api-2/schema/PropertiesVisitor.mjs +20 -0
- package/src/refractor/visitors/open-api-2/schema/PropertiesVisitor.ts +35 -0
- package/src/refractor/visitors/open-api-2/schema/SchemaOrJSONReferenceVisitor.cjs +23 -0
- package/src/refractor/visitors/open-api-2/schema/SchemaOrJSONReferenceVisitor.mjs +19 -0
- package/src/refractor/visitors/open-api-2/schema/SchemaOrJSONReferenceVisitor.ts +37 -0
- package/src/refractor/visitors/open-api-2/schema/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/schema/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/schema/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/scopes/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/scopes/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/scopes/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/security-definitions/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/security-definitions/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/security-definitions/index.ts +24 -0
- package/src/refractor/visitors/open-api-2/security-requirement/index.cjs +19 -0
- package/src/refractor/visitors/open-api-2/security-requirement/index.mjs +14 -0
- package/src/refractor/visitors/open-api-2/security-requirement/index.ts +24 -0
- package/src/refractor/visitors/open-api-2/security-scheme/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/security-scheme/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/security-scheme/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/tag/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/tag/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/tag/index.ts +27 -0
- package/src/refractor/visitors/open-api-2/xml/index.cjs +20 -0
- package/src/refractor/visitors/open-api-2/xml/index.mjs +15 -0
- package/src/refractor/visitors/open-api-2/xml/index.ts +27 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [4.0.3](https://github.com/speclynx/apidom/compare/v4.0.2...v4.0.3) (2026-03-11)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **release:** fix v4.0.2 failed release ([b4dc1c4](https://github.com/speclynx/apidom/commit/b4dc1c48e8d9b2986a70e49b5554eb0a166d7528))
|
|
11
|
+
|
|
12
|
+
## [4.0.2](https://github.com/speclynx/apidom/compare/v4.0.1...v4.0.2) (2026-03-11)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @speclynx/apidom-ns-openapi-2
|
|
15
|
+
|
|
6
16
|
## [4.0.1](https://github.com/speclynx/apidom/compare/v4.0.0...v4.0.1) (2026-03-11)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @speclynx/apidom-ns-openapi-2
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@speclynx/apidom-ns-openapi-2",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "OpenAPI 2.0 namespace for ApiDOM.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"apidom",
|
|
@@ -56,18 +56,17 @@
|
|
|
56
56
|
"license": "Apache-2.0",
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@babel/runtime-corejs3": "^7.28.4",
|
|
59
|
-
"@speclynx/apidom-core": "4.0.
|
|
60
|
-
"@speclynx/apidom-datamodel": "4.0.
|
|
61
|
-
"@speclynx/apidom-error": "4.0.
|
|
62
|
-
"@speclynx/apidom-ns-json-schema-draft-4": "4.0.
|
|
63
|
-
"@speclynx/apidom-traverse": "4.0.
|
|
59
|
+
"@speclynx/apidom-core": "4.0.3",
|
|
60
|
+
"@speclynx/apidom-datamodel": "4.0.3",
|
|
61
|
+
"@speclynx/apidom-error": "4.0.3",
|
|
62
|
+
"@speclynx/apidom-ns-json-schema-draft-4": "4.0.3",
|
|
63
|
+
"@speclynx/apidom-traverse": "4.0.3",
|
|
64
64
|
"ramda": "~0.32.0",
|
|
65
65
|
"ramda-adjunct": "^6.0.0",
|
|
66
66
|
"ts-mixer": "^6.0.4"
|
|
67
67
|
},
|
|
68
68
|
"files": [
|
|
69
|
-
"src
|
|
70
|
-
"src/**/*.cjs",
|
|
69
|
+
"src/",
|
|
71
70
|
"dist/",
|
|
72
71
|
"types/apidom-ns-openapi-2.d.ts",
|
|
73
72
|
"LICENSES",
|
|
@@ -75,5 +74,5 @@
|
|
|
75
74
|
"README.md",
|
|
76
75
|
"CHANGELOG.md"
|
|
77
76
|
],
|
|
78
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "6ccfa09c02232516215e7de3ead276641957e626"
|
|
79
78
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.default = void 0;
|
|
5
|
+
var _apidomDatamodel = require("@speclynx/apidom-datamodel");
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
class Contact extends _apidomDatamodel.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'contact';
|
|
13
|
+
}
|
|
14
|
+
get name() {
|
|
15
|
+
return this.get('name');
|
|
16
|
+
}
|
|
17
|
+
set name(name) {
|
|
18
|
+
this.set('name', name);
|
|
19
|
+
}
|
|
20
|
+
get url() {
|
|
21
|
+
return this.get('url');
|
|
22
|
+
}
|
|
23
|
+
set url(url) {
|
|
24
|
+
this.set('url', url);
|
|
25
|
+
}
|
|
26
|
+
get email() {
|
|
27
|
+
return this.get('email');
|
|
28
|
+
}
|
|
29
|
+
set email(email) {
|
|
30
|
+
this.set('email', email);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
var _default = exports.default = Contact;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ObjectElement } from '@speclynx/apidom-datamodel';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Contact extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'contact';
|
|
10
|
+
}
|
|
11
|
+
get name() {
|
|
12
|
+
return this.get('name');
|
|
13
|
+
}
|
|
14
|
+
set name(name) {
|
|
15
|
+
this.set('name', name);
|
|
16
|
+
}
|
|
17
|
+
get url() {
|
|
18
|
+
return this.get('url');
|
|
19
|
+
}
|
|
20
|
+
set url(url) {
|
|
21
|
+
this.set('url', url);
|
|
22
|
+
}
|
|
23
|
+
get email() {
|
|
24
|
+
return this.get('email');
|
|
25
|
+
}
|
|
26
|
+
set email(email) {
|
|
27
|
+
this.set('email', email);
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export default Contact;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StringElement,
|
|
3
|
+
ObjectElement,
|
|
4
|
+
type Attributes,
|
|
5
|
+
type Meta,
|
|
6
|
+
} from '@speclynx/apidom-datamodel';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
class Contact extends ObjectElement {
|
|
12
|
+
constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
|
|
13
|
+
super(content, meta, attributes);
|
|
14
|
+
this.element = 'contact';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
get name(): StringElement | undefined {
|
|
18
|
+
return this.get('name') as StringElement | undefined;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
set name(name: StringElement | undefined) {
|
|
22
|
+
this.set('name', name);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
get url(): StringElement | undefined {
|
|
26
|
+
return this.get('url') as StringElement | undefined;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
set url(url: StringElement | undefined) {
|
|
30
|
+
this.set('url', url);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
get email(): StringElement | undefined {
|
|
34
|
+
return this.get('email') as StringElement | undefined;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
set email(email: StringElement | undefined) {
|
|
38
|
+
this.set('email', email);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export default Contact;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.default = void 0;
|
|
5
|
+
var _apidomDatamodel = require("@speclynx/apidom-datamodel");
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
class Definitions extends _apidomDatamodel.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'definitions';
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
var _default = exports.default = Definitions;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ObjectElement } from '@speclynx/apidom-datamodel';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Definitions extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'definitions';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export default Definitions;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Definitions extends ObjectElement {
|
|
7
|
+
constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'definitions';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default Definitions;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.default = void 0;
|
|
5
|
+
var _apidomDatamodel = require("@speclynx/apidom-datamodel");
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
class Example extends _apidomDatamodel.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'example';
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
var _default = exports.default = Example;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ObjectElement } from '@speclynx/apidom-datamodel';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Example extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'example';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
export default Example;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ObjectElement, type Attributes, type Meta } from '@speclynx/apidom-datamodel';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class Example extends ObjectElement {
|
|
7
|
+
constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'example';
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export default Example;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.default = void 0;
|
|
5
|
+
var _apidomDatamodel = require("@speclynx/apidom-datamodel");
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
class ExternalDocumentation extends _apidomDatamodel.ObjectElement {
|
|
10
|
+
constructor(content, meta, attributes) {
|
|
11
|
+
super(content, meta, attributes);
|
|
12
|
+
this.element = 'externalDocumentation';
|
|
13
|
+
}
|
|
14
|
+
get description() {
|
|
15
|
+
return this.get('description');
|
|
16
|
+
}
|
|
17
|
+
set description(description) {
|
|
18
|
+
this.set('description', description);
|
|
19
|
+
}
|
|
20
|
+
get url() {
|
|
21
|
+
return this.get('url');
|
|
22
|
+
}
|
|
23
|
+
set url(url) {
|
|
24
|
+
this.set('url', url);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
var _default = exports.default = ExternalDocumentation;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ObjectElement } from '@speclynx/apidom-datamodel';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
class ExternalDocumentation extends ObjectElement {
|
|
7
|
+
constructor(content, meta, attributes) {
|
|
8
|
+
super(content, meta, attributes);
|
|
9
|
+
this.element = 'externalDocumentation';
|
|
10
|
+
}
|
|
11
|
+
get description() {
|
|
12
|
+
return this.get('description');
|
|
13
|
+
}
|
|
14
|
+
set description(description) {
|
|
15
|
+
this.set('description', description);
|
|
16
|
+
}
|
|
17
|
+
get url() {
|
|
18
|
+
return this.get('url');
|
|
19
|
+
}
|
|
20
|
+
set url(url) {
|
|
21
|
+
this.set('url', url);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
export default ExternalDocumentation;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StringElement,
|
|
3
|
+
ObjectElement,
|
|
4
|
+
type Attributes,
|
|
5
|
+
type Meta,
|
|
6
|
+
} from '@speclynx/apidom-datamodel';
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
class ExternalDocumentation extends ObjectElement {
|
|
12
|
+
constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) {
|
|
13
|
+
super(content, meta, attributes);
|
|
14
|
+
this.element = 'externalDocumentation';
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
get description(): StringElement | undefined {
|
|
18
|
+
return this.get('description') as StringElement | undefined;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
set description(description: StringElement | undefined) {
|
|
22
|
+
this.set('description', description);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
get url(): StringElement | undefined {
|
|
26
|
+
return this.get('url') as StringElement | undefined;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
set url(url: StringElement | undefined) {
|
|
30
|
+
this.set('url', url);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export default ExternalDocumentation;
|
|
@@ -0,0 +1,185 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.__esModule = true;
|
|
4
|
+
exports.default = void 0;
|
|
5
|
+
var _apidomError = require("@speclynx/apidom-error");
|
|
6
|
+
var _apidomNsJsonSchemaDraft = require("@speclynx/apidom-ns-json-schema-draft-4");
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
class Header extends _apidomNsJsonSchemaDraft.JSONSchemaElement {
|
|
11
|
+
constructor(content, meta, attributes) {
|
|
12
|
+
super(content, meta, attributes);
|
|
13
|
+
this.element = 'header';
|
|
14
|
+
this.classes.push('json-schema-draft-4');
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Core vocabulary
|
|
19
|
+
*
|
|
20
|
+
* URI: https://tools.ietf.org/html/draft-wright-json-schema-00
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
get idField() {
|
|
24
|
+
throw new _apidomError.UnsupportedOperationError('idField getter in Header class is not not supported.');
|
|
25
|
+
}
|
|
26
|
+
set idField(idField) {
|
|
27
|
+
throw new _apidomError.UnsupportedOperationError('idField setter in Header class is not not supported.');
|
|
28
|
+
}
|
|
29
|
+
get $schema() {
|
|
30
|
+
throw new _apidomError.UnsupportedOperationError('$schema getter in Header class is not not supported.');
|
|
31
|
+
}
|
|
32
|
+
set $schema($schema) {
|
|
33
|
+
throw new _apidomError.UnsupportedOperationError('$schema setter in Header class is not not supported.');
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Validation keywords for arrays
|
|
38
|
+
*/
|
|
39
|
+
|
|
40
|
+
get additionalItems() {
|
|
41
|
+
throw new _apidomError.UnsupportedOperationError('additionalItems getter in Header class is not not supported.');
|
|
42
|
+
}
|
|
43
|
+
set additionalItems(additionalItems) {
|
|
44
|
+
throw new _apidomError.UnsupportedOperationError('additionalItems setter in Header class is not not supported.');
|
|
45
|
+
}
|
|
46
|
+
get itemsField() {
|
|
47
|
+
return this.get('items');
|
|
48
|
+
}
|
|
49
|
+
set itemsField(items) {
|
|
50
|
+
this.set('items', items);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* Validation keywords for objects
|
|
55
|
+
*/
|
|
56
|
+
|
|
57
|
+
get maxProperties() {
|
|
58
|
+
throw new _apidomError.UnsupportedOperationError('maxProperties getter in Header class is not not supported.');
|
|
59
|
+
}
|
|
60
|
+
set maxProperties(maxProperties) {
|
|
61
|
+
throw new _apidomError.UnsupportedOperationError('maxProperties setter in Header class is not not supported.');
|
|
62
|
+
}
|
|
63
|
+
get minProperties() {
|
|
64
|
+
throw new _apidomError.UnsupportedOperationError('minProperties getter in Header class is not not supported.');
|
|
65
|
+
}
|
|
66
|
+
set minProperties(minProperties) {
|
|
67
|
+
throw new _apidomError.UnsupportedOperationError('minProperties setter in Header class is not not supported.');
|
|
68
|
+
}
|
|
69
|
+
get required() {
|
|
70
|
+
throw new _apidomError.UnsupportedOperationError('required getter in Header class is not not supported.');
|
|
71
|
+
}
|
|
72
|
+
set required(required) {
|
|
73
|
+
throw new _apidomError.UnsupportedOperationError('required setter in Header class is not not supported.');
|
|
74
|
+
}
|
|
75
|
+
get properties() {
|
|
76
|
+
throw new _apidomError.UnsupportedOperationError('properties getter in Header class is not not supported.');
|
|
77
|
+
}
|
|
78
|
+
set properties(properties) {
|
|
79
|
+
throw new _apidomError.UnsupportedOperationError('properties setter in Header class is not not supported.');
|
|
80
|
+
}
|
|
81
|
+
get additionalProperties() {
|
|
82
|
+
throw new _apidomError.UnsupportedOperationError('additionalProperties getter in Header class is not not supported.');
|
|
83
|
+
}
|
|
84
|
+
set additionalProperties(additionalProperties) {
|
|
85
|
+
throw new _apidomError.UnsupportedOperationError('additionalProperties setter in Header class is not not supported.');
|
|
86
|
+
}
|
|
87
|
+
get patternProperties() {
|
|
88
|
+
throw new _apidomError.UnsupportedOperationError('patternProperties getter in Header class is not not supported.');
|
|
89
|
+
}
|
|
90
|
+
set patternProperties(patternProperties) {
|
|
91
|
+
throw new _apidomError.UnsupportedOperationError('patternProperties setter in Header class is not not supported.');
|
|
92
|
+
}
|
|
93
|
+
get dependencies() {
|
|
94
|
+
throw new _apidomError.UnsupportedOperationError('dependencies getter in Header class is not not supported.');
|
|
95
|
+
}
|
|
96
|
+
set dependencies(dependencies) {
|
|
97
|
+
throw new _apidomError.UnsupportedOperationError('dependencies setter in Header class is not not supported.');
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* Validation keywords for any instance type
|
|
102
|
+
*/
|
|
103
|
+
|
|
104
|
+
get type() {
|
|
105
|
+
return this.get('type');
|
|
106
|
+
}
|
|
107
|
+
set type(type) {
|
|
108
|
+
this.set('type', type);
|
|
109
|
+
}
|
|
110
|
+
get allOf() {
|
|
111
|
+
throw new _apidomError.UnsupportedOperationError('allOf getter in Header class is not not supported.');
|
|
112
|
+
}
|
|
113
|
+
set allOf(allOf) {
|
|
114
|
+
throw new _apidomError.UnsupportedOperationError('allOf setter in Header class is not not supported.');
|
|
115
|
+
}
|
|
116
|
+
get anyOf() {
|
|
117
|
+
throw new _apidomError.UnsupportedOperationError('anyOf getter in Header class is not not supported.');
|
|
118
|
+
}
|
|
119
|
+
set anyOf(anyOf) {
|
|
120
|
+
throw new _apidomError.UnsupportedOperationError('anyOf setter in Header class is not not supported.');
|
|
121
|
+
}
|
|
122
|
+
get oneOf() {
|
|
123
|
+
throw new _apidomError.UnsupportedOperationError('oneOf getter in Header class is not not supported.');
|
|
124
|
+
}
|
|
125
|
+
set oneOf(oneOf) {
|
|
126
|
+
throw new _apidomError.UnsupportedOperationError('oneOf setter in Header class is not not supported.');
|
|
127
|
+
}
|
|
128
|
+
get not() {
|
|
129
|
+
throw new _apidomError.UnsupportedOperationError('not getter in Header class is not not supported.');
|
|
130
|
+
}
|
|
131
|
+
set not(not) {
|
|
132
|
+
throw new _apidomError.UnsupportedOperationError('not setter in Header class is not not supported.');
|
|
133
|
+
}
|
|
134
|
+
get definitions() {
|
|
135
|
+
throw new _apidomError.UnsupportedOperationError('definitions getter in Header class is not not supported.');
|
|
136
|
+
}
|
|
137
|
+
set definitions(definitions) {
|
|
138
|
+
throw new _apidomError.UnsupportedOperationError('definitions setter in Header class is not not supported.');
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Metadata keywords
|
|
143
|
+
*
|
|
144
|
+
* URI: https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-6
|
|
145
|
+
*/
|
|
146
|
+
|
|
147
|
+
get title() {
|
|
148
|
+
throw new _apidomError.UnsupportedOperationError('title getter in Header class is not not supported.');
|
|
149
|
+
}
|
|
150
|
+
set title(title) {
|
|
151
|
+
throw new _apidomError.UnsupportedOperationError('title setter in Header class is not not supported.');
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* JSON Hyper-Schema
|
|
156
|
+
*
|
|
157
|
+
* URI: https://datatracker.ietf.org/doc/html/draft-wright-json-schema-hyperschema-00
|
|
158
|
+
*/
|
|
159
|
+
|
|
160
|
+
get base() {
|
|
161
|
+
throw new _apidomError.UnsupportedOperationError('base getter in Header class is not not supported.');
|
|
162
|
+
}
|
|
163
|
+
set base(base) {
|
|
164
|
+
throw new _apidomError.UnsupportedOperationError('base setter in Header class is not not supported.');
|
|
165
|
+
}
|
|
166
|
+
get linksField() {
|
|
167
|
+
throw new _apidomError.UnsupportedOperationError('linksField getter in Header class is not not supported.');
|
|
168
|
+
}
|
|
169
|
+
set linksField(links) {
|
|
170
|
+
throw new _apidomError.UnsupportedOperationError('linksField setter in Header class is not not supported.');
|
|
171
|
+
}
|
|
172
|
+
get media() {
|
|
173
|
+
throw new _apidomError.UnsupportedOperationError('media getter in Header class is not not supported.');
|
|
174
|
+
}
|
|
175
|
+
set media(media) {
|
|
176
|
+
throw new _apidomError.UnsupportedOperationError('media setter in Header class is not not supported.');
|
|
177
|
+
}
|
|
178
|
+
get readOnly() {
|
|
179
|
+
throw new _apidomError.UnsupportedOperationError('readOnly getter in Header class is not not supported.');
|
|
180
|
+
}
|
|
181
|
+
set readOnly(readOnly) {
|
|
182
|
+
throw new _apidomError.UnsupportedOperationError('readOnly setter in Header class is not not supported.');
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
var _default = exports.default = Header;
|