@shaclmate/compiler 4.0.38 → 4.0.40
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/dist/ShapesGraphToAstTransformer.js +12 -12
- package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstObjectTypeProperty.js +24 -24
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompoundType.js +4 -4
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstListType.js +1 -1
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstObjectType.js +16 -16
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstTermType.js +1 -1
- package/dist/ast/AbstractCollectionType.d.ts +1 -1
- package/dist/ast/AbstractCompoundType.d.ts +1 -1
- package/dist/ast/AbstractCompoundType.js +15 -15
- package/dist/ast/AbstractContainerType.d.ts +1 -1
- package/dist/ast/AbstractContainerType.js +15 -15
- package/dist/ast/AbstractLazyObjectType.d.ts +1 -1
- package/dist/ast/AbstractTermType.d.ts +1 -1
- package/dist/ast/BlankNodeType.d.ts +1 -1
- package/dist/ast/BlankNodeType.js +1 -1
- package/dist/ast/DefaultValueType.d.ts +1 -1
- package/dist/ast/DefaultValueType.js +2 -2
- package/dist/ast/IdentifierType.d.ts +1 -1
- package/dist/ast/IdentifierType.js +1 -1
- package/dist/ast/IntersectionType.d.ts +1 -1
- package/dist/ast/IntersectionType.js +3 -3
- package/dist/ast/IriType.d.ts +1 -1
- package/dist/ast/IriType.js +1 -1
- package/dist/ast/LazyObjectOptionType.d.ts +1 -1
- package/dist/ast/LazyObjectOptionType.js +1 -1
- package/dist/ast/LazyObjectSetType.d.ts +1 -1
- package/dist/ast/LazyObjectSetType.js +1 -1
- package/dist/ast/LazyObjectType.d.ts +1 -1
- package/dist/ast/LazyObjectType.js +1 -1
- package/dist/ast/ListType.d.ts +1 -1
- package/dist/ast/ListType.js +16 -16
- package/dist/ast/LiteralType.d.ts +1 -1
- package/dist/ast/LiteralType.js +1 -1
- package/dist/ast/ObjectCompoundType.js +3 -3
- package/dist/ast/ObjectType.d.ts +1 -1
- package/dist/ast/ObjectType.js +16 -16
- package/dist/ast/OptionType.d.ts +1 -1
- package/dist/ast/OptionType.js +1 -1
- package/dist/ast/SetType.d.ts +1 -1
- package/dist/ast/SetType.js +1 -1
- package/dist/ast/TermType.d.ts +1 -1
- package/dist/ast/TermType.js +1 -1
- package/dist/ast/Type.js +15 -15
- package/dist/ast/UnionType.d.ts +1 -1
- package/dist/ast/UnionType.js +3 -3
- package/dist/generators/transformAstToLabeledPropertyGraph.js +10 -10
- package/dist/generators/ts/AbstractCollectionType.d.ts +2 -6
- package/dist/generators/ts/AbstractCollectionType.js +16 -15
- package/dist/generators/ts/AbstractContainerType.d.ts +7 -11
- package/dist/generators/ts/AbstractContainerType.js +35 -36
- package/dist/generators/ts/AbstractDateType.d.ts +4 -4
- package/dist/generators/ts/AbstractDateType.js +2 -2
- package/dist/generators/ts/AbstractIdentifierType.d.ts +1 -1
- package/dist/generators/ts/AbstractLazyObjectType.d.ts +14 -17
- package/dist/generators/ts/AbstractLazyObjectType.js +26 -38
- package/dist/generators/ts/AbstractLiteralType.d.ts +1 -5
- package/dist/generators/ts/AbstractLiteralType.js +7 -6
- package/dist/generators/ts/AbstractNumericType.d.ts +2 -2
- package/dist/generators/ts/AbstractNumericType.js +3 -3
- package/dist/generators/ts/AbstractObjectSetType.d.ts +10 -9
- package/dist/generators/ts/AbstractObjectSetType.js +2 -2
- package/dist/generators/ts/AbstractPrimitiveType.d.ts +2 -6
- package/dist/generators/ts/AbstractPrimitiveType.js +9 -10
- package/dist/generators/ts/AbstractTermType.d.ts +1 -5
- package/dist/generators/ts/AbstractTermType.js +3 -17
- package/dist/generators/ts/AbstractType.d.ts +22 -15
- package/dist/generators/ts/AbstractType.js +18 -8
- package/dist/generators/ts/BigDecimalType.d.ts +2 -2
- package/dist/generators/ts/BigDecimalType.js +3 -3
- package/dist/generators/ts/BigIntType.d.ts +1 -1
- package/dist/generators/ts/BigIntType.js +3 -3
- package/dist/generators/ts/BlankNodeType.d.ts +4 -4
- package/dist/generators/ts/BlankNodeType.js +12 -12
- package/dist/generators/ts/BooleanType.d.ts +3 -3
- package/dist/generators/ts/BooleanType.js +11 -6
- package/dist/generators/ts/DateTimeType.d.ts +1 -1
- package/dist/generators/ts/DateTimeType.js +1 -1
- package/dist/generators/ts/DateType.d.ts +1 -1
- package/dist/generators/ts/DateType.js +1 -1
- package/dist/generators/ts/DefaultValueType.d.ts +3 -7
- package/dist/generators/ts/DefaultValueType.js +17 -21
- package/dist/generators/ts/FloatType.d.ts +1 -1
- package/dist/generators/ts/FloatType.js +1 -1
- package/dist/generators/ts/GraphqlSchema.d.ts +4 -4
- package/dist/generators/ts/GraphqlSchema.js +4 -4
- package/dist/generators/ts/IdentifierType.d.ts +4 -4
- package/dist/generators/ts/IdentifierType.js +14 -14
- package/dist/generators/ts/IntType.d.ts +1 -1
- package/dist/generators/ts/IntType.js +1 -1
- package/dist/generators/ts/IriType.d.ts +4 -2
- package/dist/generators/ts/IriType.js +27 -22
- package/dist/generators/ts/LazyObjectOptionType.d.ts +2 -1
- package/dist/generators/ts/LazyObjectOptionType.js +7 -7
- package/dist/generators/ts/LazyObjectSetType.d.ts +1 -1
- package/dist/generators/ts/LazyObjectSetType.js +6 -6
- package/dist/generators/ts/LazyObjectType.d.ts +1 -1
- package/dist/generators/ts/LazyObjectType.js +5 -5
- package/dist/generators/ts/ListType.d.ts +5 -6
- package/dist/generators/ts/ListType.js +24 -25
- package/dist/generators/ts/LiteralType.d.ts +3 -2
- package/dist/generators/ts/LiteralType.js +14 -7
- package/dist/generators/ts/{NamedObjectType.d.ts → ObjectType.d.ts} +24 -24
- package/dist/generators/ts/ObjectType.js +350 -0
- package/dist/generators/ts/ObjectUnionType.d.ts +20 -0
- package/dist/generators/ts/{NamedObjectUnionType.js → ObjectUnionType.js} +54 -64
- package/dist/generators/ts/OptionType.d.ts +2 -6
- package/dist/generators/ts/OptionType.js +12 -18
- package/dist/generators/ts/RdfjsDatasetObjectSetType.js +8 -8
- package/dist/generators/ts/SetType.d.ts +1 -1
- package/dist/generators/ts/SetType.js +1 -1
- package/dist/generators/ts/Snippets.d.ts +1 -0
- package/dist/generators/ts/Snippets.js +7 -0
- package/dist/generators/ts/SparqlObjectSetType.js +2 -2
- package/dist/generators/ts/StringType.d.ts +3 -3
- package/dist/generators/ts/StringType.js +11 -6
- package/dist/generators/ts/TermType.d.ts +3 -3
- package/dist/generators/ts/TermType.js +13 -13
- package/dist/generators/ts/TsGenerator.js +12 -9
- package/dist/generators/ts/Type.d.ts +4 -5
- package/dist/generators/ts/TypeFactory.d.ts +7 -8
- package/dist/generators/ts/TypeFactory.js +79 -80
- package/dist/generators/ts/{AbstractUnionType.d.ts → UnionType.d.ts} +40 -15
- package/dist/generators/ts/{AbstractUnionType.js → UnionType.js} +328 -135
- package/dist/generators/ts/ZodGenerator.js +7 -9
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/AbstractProperty.d.ts +13 -13
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/AbstractProperty.js +11 -14
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/DiscriminantProperty.d.ts +3 -2
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/DiscriminantProperty.js +24 -15
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/IdentifierProperty.d.ts +3 -6
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/IdentifierProperty.js +20 -12
- package/dist/generators/ts/_ObjectType/ObjectType_createFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_createFunctionDeclaration.js → _ObjectType/ObjectType_createFunctionDeclaration.js} +6 -6
- package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_equalsFunctionDeclaration.js → _ObjectType/ObjectType_equalsFunctionDeclaration.js} +5 -5
- package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_filterFunctionDeclaration.js → _ObjectType/ObjectType_filterFunctionDeclaration.js} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_filterTypeDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_filterTypeDeclaration.js → _ObjectType/ObjectType_filterTypeDeclaration.js} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_focusSparqlConstructTriplesFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_focusSparqlConstructTriplesFunctionDeclaration.js → _ObjectType/ObjectType_focusSparqlConstructTriplesFunctionDeclaration.js} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_focusSparqlWherePatternsFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_focusSparqlWherePatternsFunctionDeclaration.js → _ObjectType/ObjectType_focusSparqlWherePatternsFunctionDeclaration.js} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_fromJsonFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_fromJsonFunctionDeclaration.js → _ObjectType/ObjectType_fromJsonFunctionDeclaration.js} +4 -4
- package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_fromRdfResourceFunctionDeclaration.js → _ObjectType/ObjectType_fromRdfResourceFunctionDeclaration.js} +7 -31
- package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceValuesFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_fromRdfResourceValuesFunctionDeclaration.js +15 -0
- package/dist/generators/ts/_ObjectType/ObjectType_fromRdfTypeVariableStatement.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_fromRdfTypeVariableStatement.js → _ObjectType/ObjectType_fromRdfTypeVariableStatement.js} +2 -2
- package/dist/generators/ts/_ObjectType/ObjectType_graphqlTypeVariableStatement.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_graphqlTypeVariableStatement.js → _ObjectType/ObjectType_graphqlTypeVariableStatement.js} +4 -4
- package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_hashFunctionDeclarations.js → _ObjectType/ObjectType_hashFunctionDeclarations.js} +8 -8
- package/dist/generators/ts/_ObjectType/ObjectType_interfaceDeclaration.d.ts +4 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_interfaceDeclaration.js → _ObjectType/ObjectType_interfaceDeclaration.js} +5 -5
- package/dist/generators/ts/_ObjectType/ObjectType_isTypeFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_isTypeFunctionDeclaration.js → _ObjectType/ObjectType_isTypeFunctionDeclaration.js} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_jsonParseFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_jsonParseFunctionDeclaration.js → _ObjectType/ObjectType_jsonParseFunctionDeclaration.js} +2 -2
- package/dist/generators/ts/_ObjectType/ObjectType_jsonSchemaFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_jsonSchemaFunctionDeclaration.js → _ObjectType/ObjectType_jsonSchemaFunctionDeclaration.js} +2 -2
- package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeAliasDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_jsonTypeAliasDeclaration.js → _ObjectType/ObjectType_jsonTypeAliasDeclaration.js} +2 -2
- package/dist/generators/ts/_ObjectType/ObjectType_jsonUiSchemaFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_jsonUiSchemaFunctionDeclaration.js → _ObjectType/ObjectType_jsonUiSchemaFunctionDeclaration.js} +4 -4
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_objectSetMethodNames.d.ts → _ObjectType/ObjectType_objectSetMethodNames.d.ts} +3 -3
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_objectSetMethodNames.js → _ObjectType/ObjectType_objectSetMethodNames.js} +4 -4
- package/dist/generators/ts/_ObjectType/ObjectType_schemaVariableStatement.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_schemaVariableStatement.js +14 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_sparqlConstructQueryFunctionDeclaration.d.ts → _ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.d.ts} +3 -3
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_sparqlConstructQueryFunctionDeclaration.js → _ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.js} +5 -5
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_sparqlConstructQueryStringFunctionDeclaration.d.ts → _ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.d.ts} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.js +12 -0
- package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_toJsonFunctionDeclaration.js → _ObjectType/ObjectType_toJsonFunctionDeclaration.js} +4 -4
- package/dist/generators/ts/_ObjectType/ObjectType_toRdfResourceFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_toRdfResourceFunctionDeclaration.js → _ObjectType/ObjectType_toRdfResourceFunctionDeclaration.js} +4 -4
- package/dist/generators/ts/_ObjectType/ObjectType_toStringFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_toStringFunctionDeclarations.js → _ObjectType/ObjectType_toStringFunctionDeclarations.js} +6 -6
- package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlConstructTriplesFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_valueSparqlConstructTriplesFunctionDeclaration.js → _ObjectType/ObjectType_valueSparqlConstructTriplesFunctionDeclaration.js} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_valueSparqlWherePatternsFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/{_NamedObjectType/NamedObjectType_valueSparqlWherePatternsFunctionDeclaration.js → _ObjectType/ObjectType_valueSparqlWherePatternsFunctionDeclaration.js} +3 -3
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/ShaclProperty.d.ts +2 -6
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/ShaclProperty.js +24 -28
- package/dist/generators/ts/_ObjectType/identifierTypeDeclarations.d.ts +4 -0
- package/dist/generators/ts/{_NamedObjectType → _ObjectType}/identifierTypeDeclarations.js +4 -2
- package/dist/generators/ts/_snippets/snippets_BooleanSchema.js +2 -2
- package/dist/generators/ts/_snippets/snippets_CollectionSchema.js +1 -1
- package/dist/generators/ts/_snippets/snippets_DefaultValueSchema.js +1 -1
- package/dist/generators/ts/_snippets/snippets_IriSchema.js +2 -2
- package/dist/generators/ts/_snippets/snippets_MaybeSchema.js +2 -2
- package/dist/generators/ts/_snippets/snippets_ShaclPropertySchema.js +1 -1
- package/dist/generators/ts/_snippets/snippets_StringSchema.js +2 -2
- package/dist/generators/ts/_snippets/snippets_booleanSparqlWherePatterns.js +1 -1
- package/dist/generators/ts/_snippets/snippets_convertToIri.js +1 -1
- package/dist/generators/ts/_snippets/snippets_defaultValueSparqlWherePatterns.js +1 -1
- package/dist/generators/ts/_snippets/snippets_ensureRdfResourceType.d.ts +3 -0
- package/dist/generators/ts/_snippets/snippets_ensureRdfResourceType.js +16 -0
- package/dist/generators/ts/_snippets/snippets_iriSparqlWherePatterns.js +1 -1
- package/dist/generators/ts/_snippets/snippets_listSparqlConstructTriples.js +2 -2
- package/dist/generators/ts/_snippets/snippets_listSparqlWherePatterns.js +2 -2
- package/dist/generators/ts/_snippets/snippets_maybeSparqlConstructTriples.js +1 -1
- package/dist/generators/ts/_snippets/snippets_maybeSparqlWherePatterns.js +3 -3
- package/dist/generators/ts/_snippets/snippets_setSparqlConstructTriples.js +1 -1
- package/dist/generators/ts/_snippets/snippets_setSparqlWherePatterns.js +1 -1
- package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlConstructTriples.js +1 -1
- package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlWherePatterns.js +1 -1
- package/dist/generators/ts/_snippets/snippets_stringSparqlWherePatterns.js +1 -1
- package/dist/generators/ts/_snippets/snippets_validateArray.js +1 -1
- package/dist/generators/ts/_snippets/snippets_validateMaybe.js +1 -1
- package/dist/generators/ts/tsComment.js +1 -1
- package/dist/input/generated.d.ts +1399 -1468
- package/dist/input/generated.js +518 -655
- package/package.json +4 -4
- package/dist/generators/ts/AbstractNamedUnionType.d.ts +0 -30
- package/dist/generators/ts/AbstractNamedUnionType.js +0 -190
- package/dist/generators/ts/AnonymousUnionType.d.ts +0 -27
- package/dist/generators/ts/AnonymousUnionType.js +0 -59
- package/dist/generators/ts/NamedObjectType.js +0 -341
- package/dist/generators/ts/NamedObjectUnionType.d.ts +0 -37
- package/dist/generators/ts/NamedUnionType.d.ts +0 -11
- package/dist/generators/ts/NamedUnionType.js +0 -13
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_createFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_equalsFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_filterFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_filterTypeDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_focusSparqlConstructTriplesFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_focusSparqlWherePatternsFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromJsonFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromRdfResourceFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromRdfResourceValuesFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromRdfResourceValuesFunctionDeclaration.js +0 -15
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromRdfTypeVariableStatement.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_graphqlTypeVariableStatement.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_hashFunctionDeclarations.d.ts +0 -4
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_interfaceDeclaration.d.ts +0 -4
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_isTypeFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonParseFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonSchemaFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonTypeAliasDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonUiSchemaFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_schemaVariableStatement.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_schemaVariableStatement.js +0 -12
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_sparqlConstructQueryStringFunctionDeclaration.js +0 -12
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_toJsonFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_toRdfResourceFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_toStringFunctionDeclarations.d.ts +0 -4
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_valueSparqlConstructTriplesFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/NamedObjectType_valueSparqlWherePatternsFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_NamedObjectType/identifierTypeDeclarations.d.ts +0 -4
- package/dist/generators/ts/removeUndefined.d.ts +0 -2
- package/dist/generators/ts/removeUndefined.js +0 -17
- /package/dist/generators/ts/{_NamedObjectType → _ObjectType}/Property.d.ts +0 -0
- /package/dist/generators/ts/{_NamedObjectType → _ObjectType}/Property.js +0 -0
|
@@ -7,7 +7,6 @@ import { Maybe } from "purify-ts";
|
|
|
7
7
|
import reservedTsIdentifiers_ from "reserved-identifiers";
|
|
8
8
|
import { invariant } from "ts-invariant";
|
|
9
9
|
import * as ast from "../../ast/index.js";
|
|
10
|
-
import { AnonymousUnionType } from "./AnonymousUnionType.js";
|
|
11
10
|
import { BigDecimalType } from "./BigDecimalType.js";
|
|
12
11
|
import { BigIntType } from "./BigIntType.js";
|
|
13
12
|
import { BlankNodeType } from "./BlankNodeType.js";
|
|
@@ -24,19 +23,18 @@ import { LazyObjectSetType } from "./LazyObjectSetType.js";
|
|
|
24
23
|
import { LazyObjectType } from "./LazyObjectType.js";
|
|
25
24
|
import { ListType } from "./ListType.js";
|
|
26
25
|
import { LiteralType } from "./LiteralType.js";
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import { NamedUnionType } from "./NamedUnionType.js";
|
|
26
|
+
import { ObjectType } from "./ObjectType.js";
|
|
27
|
+
import { ObjectUnionType } from "./ObjectUnionType.js";
|
|
30
28
|
import { OptionType } from "./OptionType.js";
|
|
31
29
|
import { SetType } from "./SetType.js";
|
|
32
30
|
import { StringType } from "./StringType.js";
|
|
33
31
|
import { TermType } from "./TermType.js";
|
|
34
|
-
import {
|
|
32
|
+
import { UnionType } from "./UnionType.js";
|
|
35
33
|
export class TypeFactory {
|
|
36
34
|
configuration;
|
|
37
35
|
logger;
|
|
38
36
|
reusables;
|
|
39
|
-
|
|
37
|
+
cachedObjectUnionTypesByShapeIdentifier = new TermMap();
|
|
40
38
|
cachedObjectTypePropertiesByShapeIdentifier = new TermMap();
|
|
41
39
|
cachedObjectTypesByShapeIdentifier = new TermMap();
|
|
42
40
|
constructor({ configuration, logger, reusables, }) {
|
|
@@ -44,7 +42,7 @@ export class TypeFactory {
|
|
|
44
42
|
this.logger = logger;
|
|
45
43
|
this.reusables = reusables;
|
|
46
44
|
}
|
|
47
|
-
|
|
45
|
+
createObjectType(astType) {
|
|
48
46
|
{
|
|
49
47
|
const cachedObjectType = this.cachedObjectTypesByShapeIdentifier.get(astType.shapeIdentifier);
|
|
50
48
|
if (cachedObjectType) {
|
|
@@ -52,40 +50,38 @@ export class TypeFactory {
|
|
|
52
50
|
}
|
|
53
51
|
}
|
|
54
52
|
const identifierType = this.createIdentifierType(astType.identifierType);
|
|
55
|
-
const
|
|
56
|
-
synthetic: astType.synthetic,
|
|
57
|
-
});
|
|
58
|
-
const namedObjectType = new NamedObjectType({
|
|
53
|
+
const objectType = new ObjectType({
|
|
54
|
+
alias: astType.name.map((name) => this.tsName(name, { synthetic: astType.synthetic })),
|
|
59
55
|
comment: astType.comment,
|
|
60
56
|
configuration: this.configuration,
|
|
61
57
|
extern: astType.extern,
|
|
62
58
|
fromRdfType: astType.fromRdfType,
|
|
63
59
|
identifierType,
|
|
64
60
|
label: astType.label,
|
|
65
|
-
lazyAncestorObjectTypes: () => astType.ancestorObjectTypes.map((astType) => this.
|
|
66
|
-
lazyChildObjectTypes: () => astType.childObjectTypes.map((astType) => this.
|
|
67
|
-
lazyDescendantObjectTypes: () => astType.descendantObjectTypes.map((astType) => this.
|
|
68
|
-
lazyDiscriminantProperty: (
|
|
61
|
+
lazyAncestorObjectTypes: () => astType.ancestorObjectTypes.map((astType) => this.createObjectType(astType)),
|
|
62
|
+
lazyChildObjectTypes: () => astType.childObjectTypes.map((astType) => this.createObjectType(astType)),
|
|
63
|
+
lazyDescendantObjectTypes: () => astType.descendantObjectTypes.map((astType) => this.createObjectType(astType)),
|
|
64
|
+
lazyDiscriminantProperty: (objectType) => {
|
|
69
65
|
// Discriminant property
|
|
70
66
|
const discriminantDescendantValues = new Set();
|
|
71
|
-
for (const descendantObjectType of
|
|
67
|
+
for (const descendantObjectType of objectType.descendantObjectTypes) {
|
|
72
68
|
discriminantDescendantValues.add(descendantObjectType.discriminantValue);
|
|
73
69
|
}
|
|
74
|
-
return new
|
|
70
|
+
return new ObjectType.DiscriminantProperty({
|
|
75
71
|
configuration: this.configuration,
|
|
76
72
|
logger: this.logger,
|
|
77
73
|
name: `${this.configuration.syntheticNamePrefix}type`,
|
|
78
|
-
|
|
74
|
+
objectType,
|
|
79
75
|
reusables: this.reusables,
|
|
80
|
-
type: new
|
|
76
|
+
type: new ObjectType.DiscriminantProperty.Type({
|
|
81
77
|
descendantValues: [...discriminantDescendantValues].sort(),
|
|
82
78
|
mutable: false,
|
|
83
|
-
ownValues: [
|
|
79
|
+
ownValues: [objectType.discriminantValue],
|
|
84
80
|
}),
|
|
85
81
|
});
|
|
86
82
|
},
|
|
87
|
-
lazyParentObjectTypes: () => astType.parentObjectTypes.map((astType) => this.
|
|
88
|
-
lazyProperties: (
|
|
83
|
+
lazyParentObjectTypes: () => astType.parentObjectTypes.map((astType) => this.createObjectType(astType)),
|
|
84
|
+
lazyProperties: (objectType) => {
|
|
89
85
|
const properties = astType.properties
|
|
90
86
|
.toSorted((left, right) => {
|
|
91
87
|
if (left.order < right.order) {
|
|
@@ -98,95 +94,93 @@ export class TypeFactory {
|
|
|
98
94
|
})
|
|
99
95
|
.map((astProperty) => this.createObjectTypeProperty({
|
|
100
96
|
astObjectTypeProperty: astProperty,
|
|
101
|
-
|
|
97
|
+
objectType,
|
|
102
98
|
}));
|
|
103
|
-
properties.splice(0, 0,
|
|
104
|
-
properties.splice(0, 0, new
|
|
99
|
+
properties.splice(0, 0, objectType._discriminantProperty);
|
|
100
|
+
properties.splice(0, 0, new ObjectType.IdentifierProperty({
|
|
105
101
|
configuration: this.configuration,
|
|
106
102
|
logger: this.logger,
|
|
107
103
|
name: `${this.configuration.syntheticNamePrefix}identifier`,
|
|
108
|
-
|
|
104
|
+
objectType,
|
|
109
105
|
reusables: this.reusables,
|
|
110
106
|
type: identifierType,
|
|
111
|
-
typeAlias: code `${name}.Identifier`,
|
|
112
107
|
}));
|
|
113
108
|
return properties;
|
|
114
109
|
},
|
|
115
110
|
logger: this.logger,
|
|
116
|
-
name,
|
|
117
111
|
recursive: astType.recursive,
|
|
118
112
|
reusables: this.reusables,
|
|
119
113
|
synthetic: astType.synthetic,
|
|
120
114
|
toRdfTypes: astType.toRdfTypes,
|
|
121
115
|
});
|
|
122
|
-
this.cachedObjectTypesByShapeIdentifier.set(astType.shapeIdentifier,
|
|
123
|
-
return
|
|
116
|
+
this.cachedObjectTypesByShapeIdentifier.set(astType.shapeIdentifier, objectType);
|
|
117
|
+
return objectType;
|
|
124
118
|
}
|
|
125
|
-
|
|
119
|
+
createObjectUnionType(astType) {
|
|
126
120
|
{
|
|
127
|
-
const
|
|
128
|
-
if (
|
|
129
|
-
return
|
|
121
|
+
const cachedObjectUnionType = this.cachedObjectUnionTypesByShapeIdentifier.get(astType.shapeIdentifier);
|
|
122
|
+
if (cachedObjectUnionType) {
|
|
123
|
+
return cachedObjectUnionType;
|
|
130
124
|
}
|
|
131
125
|
}
|
|
132
|
-
const
|
|
126
|
+
const objectUnionType = new ObjectUnionType({
|
|
127
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
133
128
|
comment: astType.comment,
|
|
134
129
|
configuration: this.configuration,
|
|
135
|
-
identifierType: this.createIdentifierType(ast.ObjectCompoundType.identifierType(astType)),
|
|
130
|
+
identifierType: Maybe.of(this.createIdentifierType(ast.ObjectCompoundType.identifierType(astType))),
|
|
136
131
|
label: astType.label,
|
|
137
132
|
logger: this.logger,
|
|
138
133
|
members: ast.ObjectCompoundType.memberObjectTypes(astType).map((namedObjectType) => ({
|
|
139
134
|
discriminantValue: Maybe.empty(),
|
|
140
|
-
type: this.
|
|
135
|
+
type: this.createObjectType(namedObjectType),
|
|
141
136
|
})),
|
|
142
|
-
name: this.tsName(astType.name.unsafeCoerce()),
|
|
143
137
|
recursive: astType.recursive,
|
|
144
138
|
reusables: this.reusables,
|
|
145
139
|
synthetic: astType.synthetic,
|
|
146
140
|
});
|
|
147
|
-
this.
|
|
148
|
-
return
|
|
141
|
+
this.cachedObjectUnionTypesByShapeIdentifier.set(astType.shapeIdentifier, objectUnionType);
|
|
142
|
+
return objectUnionType;
|
|
149
143
|
}
|
|
150
144
|
createType(astType, parameters) {
|
|
151
145
|
switch (astType.kind) {
|
|
152
|
-
case "
|
|
146
|
+
case "BlankNode":
|
|
153
147
|
return this.createBlankNodeType(astType);
|
|
154
|
-
case "
|
|
148
|
+
case "DefaultValue":
|
|
155
149
|
return this.createDefaultValueType(astType);
|
|
156
|
-
case "
|
|
150
|
+
case "Identifier":
|
|
157
151
|
return this.createIdentifierType(astType);
|
|
158
|
-
case "
|
|
152
|
+
case "Intersection":
|
|
159
153
|
throw new Error("not implemented");
|
|
160
|
-
case "
|
|
154
|
+
case "Iri":
|
|
161
155
|
return this.createIriType(astType);
|
|
162
|
-
case "
|
|
156
|
+
case "LazyObjectOption":
|
|
163
157
|
return this.createLazyObjectOptionType(astType);
|
|
164
|
-
case "
|
|
158
|
+
case "LazyObjectSet":
|
|
165
159
|
return this.createLazyObjectSetType(astType);
|
|
166
|
-
case "
|
|
160
|
+
case "LazyObject":
|
|
167
161
|
return this.createLazyObjectType(astType);
|
|
168
|
-
case "
|
|
162
|
+
case "List":
|
|
169
163
|
return this.createListType(astType);
|
|
170
|
-
case "
|
|
164
|
+
case "Literal":
|
|
171
165
|
return this.createLiteralType(astType, parameters);
|
|
172
|
-
case "
|
|
173
|
-
return this.
|
|
174
|
-
case "
|
|
166
|
+
case "Object":
|
|
167
|
+
return this.createObjectType(astType);
|
|
168
|
+
case "Option":
|
|
175
169
|
return this.createOptionType(astType);
|
|
176
|
-
case "
|
|
170
|
+
case "Set":
|
|
177
171
|
return this.createSetType(astType);
|
|
178
|
-
case "
|
|
172
|
+
case "Term":
|
|
179
173
|
return this.createTermType(astType);
|
|
180
|
-
case "
|
|
174
|
+
case "Union":
|
|
181
175
|
return this.createUnionType(astType);
|
|
182
176
|
}
|
|
183
177
|
}
|
|
184
178
|
createUnionType(astType) {
|
|
185
179
|
if (astType.isObjectUnionType()) {
|
|
186
|
-
return this.
|
|
180
|
+
return this.createObjectUnionType(astType);
|
|
187
181
|
}
|
|
188
|
-
return
|
|
189
|
-
.map((name) =>
|
|
182
|
+
return new UnionType({
|
|
183
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
190
184
|
comment: astType.comment,
|
|
191
185
|
configuration: this.configuration,
|
|
192
186
|
identifierType: Maybe.empty(),
|
|
@@ -196,26 +190,14 @@ export class TypeFactory {
|
|
|
196
190
|
discriminantValue: member.discriminantValue,
|
|
197
191
|
type: this.createType(member.type),
|
|
198
192
|
})),
|
|
199
|
-
name,
|
|
200
193
|
recursive: astType.recursive,
|
|
201
194
|
reusables: this.reusables,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
comment: astType.comment,
|
|
205
|
-
configuration: this.configuration,
|
|
206
|
-
label: astType.label,
|
|
207
|
-
identifierType: Maybe.empty(),
|
|
208
|
-
logger: this.logger,
|
|
209
|
-
members: astType.members.map((member) => ({
|
|
210
|
-
discriminantValue: member.discriminantValue,
|
|
211
|
-
type: this.createType(member.type),
|
|
212
|
-
})),
|
|
213
|
-
recursive: astType.recursive,
|
|
214
|
-
reusables: this.reusables,
|
|
215
|
-
}));
|
|
195
|
+
synthetic: astType.synthetic,
|
|
196
|
+
});
|
|
216
197
|
}
|
|
217
198
|
createBlankNodeType(astType) {
|
|
218
199
|
return new BlankNodeType({
|
|
200
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
219
201
|
comment: astType.comment,
|
|
220
202
|
configuration: this.configuration,
|
|
221
203
|
label: astType.label,
|
|
@@ -229,6 +211,7 @@ export class TypeFactory {
|
|
|
229
211
|
});
|
|
230
212
|
invariant(DefaultValueType.isItemType(itemType));
|
|
231
213
|
return new DefaultValueType({
|
|
214
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
232
215
|
comment: astType.comment,
|
|
233
216
|
configuration: this.configuration,
|
|
234
217
|
defaultValue: astType.defaultValue,
|
|
@@ -240,22 +223,24 @@ export class TypeFactory {
|
|
|
240
223
|
}
|
|
241
224
|
createIdentifierType(astType) {
|
|
242
225
|
switch (astType.kind) {
|
|
243
|
-
case "
|
|
226
|
+
case "BlankNode":
|
|
244
227
|
return this.createBlankNodeType(astType);
|
|
245
|
-
case "
|
|
228
|
+
case "Identifier":
|
|
246
229
|
return new IdentifierType({
|
|
230
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
247
231
|
comment: astType.comment,
|
|
248
232
|
configuration: this.configuration,
|
|
249
233
|
label: astType.label,
|
|
250
234
|
logger: this.logger,
|
|
251
235
|
reusables: this.reusables,
|
|
252
236
|
});
|
|
253
|
-
case "
|
|
237
|
+
case "Iri":
|
|
254
238
|
return this.createIriType(astType);
|
|
255
239
|
}
|
|
256
240
|
}
|
|
257
241
|
createIriType(astType) {
|
|
258
242
|
return new IriType({
|
|
243
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
259
244
|
comment: astType.comment,
|
|
260
245
|
configuration: this.configuration,
|
|
261
246
|
hasValues: astType.hasValues,
|
|
@@ -267,6 +252,7 @@ export class TypeFactory {
|
|
|
267
252
|
}
|
|
268
253
|
createLazyObjectOptionType(astType) {
|
|
269
254
|
return new LazyObjectOptionType({
|
|
255
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
270
256
|
comment: astType.comment,
|
|
271
257
|
configuration: this.configuration,
|
|
272
258
|
label: astType.label,
|
|
@@ -278,6 +264,7 @@ export class TypeFactory {
|
|
|
278
264
|
}
|
|
279
265
|
createLazyObjectSetType(astType) {
|
|
280
266
|
return new LazyObjectSetType({
|
|
267
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
281
268
|
comment: astType.comment,
|
|
282
269
|
configuration: this.configuration,
|
|
283
270
|
label: astType.label,
|
|
@@ -289,6 +276,7 @@ export class TypeFactory {
|
|
|
289
276
|
}
|
|
290
277
|
createLazyObjectType(astType) {
|
|
291
278
|
return new LazyObjectType({
|
|
279
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
292
280
|
comment: astType.comment,
|
|
293
281
|
configuration: this.configuration,
|
|
294
282
|
label: astType.label,
|
|
@@ -302,6 +290,7 @@ export class TypeFactory {
|
|
|
302
290
|
const itemType = this.createType(astType.itemType);
|
|
303
291
|
invariant(ListType.isItemType(itemType));
|
|
304
292
|
return new ListType({
|
|
293
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
305
294
|
comment: astType.comment,
|
|
306
295
|
configuration: this.configuration,
|
|
307
296
|
identifierNodeKind: astType.identifierNodeKind,
|
|
@@ -339,6 +328,7 @@ export class TypeFactory {
|
|
|
339
328
|
switch (datatypeDefinition.kind) {
|
|
340
329
|
case "bigdecimal":
|
|
341
330
|
return new BigDecimalType({
|
|
331
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
342
332
|
comment: astType.comment,
|
|
343
333
|
configuration: this.configuration,
|
|
344
334
|
hasValues: astType.hasValues,
|
|
@@ -350,6 +340,7 @@ export class TypeFactory {
|
|
|
350
340
|
});
|
|
351
341
|
case "bigint":
|
|
352
342
|
return new BigIntType({
|
|
343
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
353
344
|
comment: astType.comment,
|
|
354
345
|
configuration: this.configuration,
|
|
355
346
|
datatype,
|
|
@@ -363,6 +354,7 @@ export class TypeFactory {
|
|
|
363
354
|
});
|
|
364
355
|
case "boolean":
|
|
365
356
|
return new BooleanType({
|
|
357
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
366
358
|
comment: astType.comment,
|
|
367
359
|
configuration: this.configuration,
|
|
368
360
|
datatype,
|
|
@@ -377,6 +369,7 @@ export class TypeFactory {
|
|
|
377
369
|
case "date":
|
|
378
370
|
case "datetime":
|
|
379
371
|
return new (datatypeDefinition.kind === "date" ? DateType : DateTimeType)({
|
|
372
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
380
373
|
comment: astType.comment,
|
|
381
374
|
configuration: this.configuration,
|
|
382
375
|
datatype,
|
|
@@ -393,6 +386,7 @@ export class TypeFactory {
|
|
|
393
386
|
case "float":
|
|
394
387
|
case "int":
|
|
395
388
|
return new (datatypeDefinition.kind === "float" ? FloatType : IntType)({
|
|
389
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
396
390
|
comment: astType.comment,
|
|
397
391
|
configuration: this.configuration,
|
|
398
392
|
datatype,
|
|
@@ -409,6 +403,7 @@ export class TypeFactory {
|
|
|
409
403
|
case "string":
|
|
410
404
|
if (!datatype.equals(rdf.langString)) {
|
|
411
405
|
return new StringType({
|
|
406
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
412
407
|
comment: astType.comment,
|
|
413
408
|
configuration: this.configuration,
|
|
414
409
|
datatype,
|
|
@@ -438,6 +433,7 @@ export class TypeFactory {
|
|
|
438
433
|
// // this.logger.debug("literal type has no datatypes");
|
|
439
434
|
// }
|
|
440
435
|
return new LiteralType({
|
|
436
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
441
437
|
comment: astType.comment,
|
|
442
438
|
configuration: this.configuration,
|
|
443
439
|
hasValues: astType.hasValues,
|
|
@@ -448,14 +444,14 @@ export class TypeFactory {
|
|
|
448
444
|
reusables: this.reusables,
|
|
449
445
|
});
|
|
450
446
|
}
|
|
451
|
-
createObjectTypeProperty({ astObjectTypeProperty,
|
|
447
|
+
createObjectTypeProperty({ astObjectTypeProperty, objectType, }) {
|
|
452
448
|
{
|
|
453
449
|
const cachedProperty = this.cachedObjectTypePropertiesByShapeIdentifier.get(astObjectTypeProperty.shapeIdentifier);
|
|
454
450
|
if (cachedProperty) {
|
|
455
451
|
return cachedProperty;
|
|
456
452
|
}
|
|
457
453
|
}
|
|
458
|
-
const property = new
|
|
454
|
+
const property = new ObjectType.ShaclProperty({
|
|
459
455
|
comment: astObjectTypeProperty.comment,
|
|
460
456
|
configuration: this.configuration,
|
|
461
457
|
description: astObjectTypeProperty.description,
|
|
@@ -463,7 +459,7 @@ export class TypeFactory {
|
|
|
463
459
|
label: astObjectTypeProperty.label,
|
|
464
460
|
logger: this.logger,
|
|
465
461
|
mutable: astObjectTypeProperty.mutable,
|
|
466
|
-
|
|
462
|
+
objectType,
|
|
467
463
|
name: this.tsName(astObjectTypeProperty.name),
|
|
468
464
|
path: astObjectTypeProperty.path,
|
|
469
465
|
recursive: !!astObjectTypeProperty.recursive,
|
|
@@ -477,6 +473,7 @@ export class TypeFactory {
|
|
|
477
473
|
const itemType = this.createType(astType.itemType);
|
|
478
474
|
invariant(OptionType.isItemType(itemType));
|
|
479
475
|
return new OptionType({
|
|
476
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
480
477
|
comment: astType.comment,
|
|
481
478
|
configuration: this.configuration,
|
|
482
479
|
itemType,
|
|
@@ -489,6 +486,7 @@ export class TypeFactory {
|
|
|
489
486
|
const itemType = this.createType(astType.itemType);
|
|
490
487
|
invariant(SetType.isItemType(itemType));
|
|
491
488
|
return new SetType({
|
|
489
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
492
490
|
comment: astType.comment,
|
|
493
491
|
configuration: this.configuration,
|
|
494
492
|
itemType,
|
|
@@ -501,6 +499,7 @@ export class TypeFactory {
|
|
|
501
499
|
}
|
|
502
500
|
createTermType(astType) {
|
|
503
501
|
return new TermType({
|
|
502
|
+
alias: astType.name.map((name) => this.tsName(name)),
|
|
504
503
|
comment: astType.comment,
|
|
505
504
|
configuration: this.configuration,
|
|
506
505
|
hasValues: astType.hasValues,
|
|
@@ -6,26 +6,41 @@ import type { IriType } from "./IriType.js";
|
|
|
6
6
|
import type { Type } from "./Type.js";
|
|
7
7
|
import type { Typeof } from "./Typeof.js";
|
|
8
8
|
import { type Code } from "./ts-poet-wrapper.js";
|
|
9
|
-
export declare
|
|
9
|
+
export declare class UnionType<MemberTypeT extends Type> extends AbstractType {
|
|
10
10
|
private readonly discriminant;
|
|
11
|
-
|
|
11
|
+
readonly graphqlArgs: AbstractType["graphqlArgs"];
|
|
12
|
+
readonly identifierType: Maybe<BlankNodeType | IdentifierType | IriType>;
|
|
13
|
+
readonly kind: "ObjectUnion" | "Union";
|
|
12
14
|
readonly recursive: boolean;
|
|
15
|
+
readonly synthetic: boolean;
|
|
13
16
|
readonly validationFunction: Maybe<Code>;
|
|
14
|
-
constructor({ identifierType, members, recursive, ...superParameters }: {
|
|
17
|
+
constructor({ identifierType, members, recursive, synthetic, ...superParameters }: {
|
|
15
18
|
identifierType: Maybe<BlankNodeType | IdentifierType | IriType>;
|
|
16
19
|
members: readonly (Pick<AbstractUnionType.Member<MemberTypeT>, "type"> & {
|
|
17
20
|
readonly discriminantValue: Maybe<number | string>;
|
|
18
21
|
})[];
|
|
19
22
|
recursive: boolean;
|
|
23
|
+
synthetic: boolean;
|
|
20
24
|
} & ConstructorParameters<typeof AbstractType>[0]);
|
|
21
25
|
get conversionFunction(): Maybe<AbstractType.ConversionFunction>;
|
|
26
|
+
get declaration(): Maybe<Code>;
|
|
22
27
|
get discriminantProperty(): Maybe<AbstractType.DiscriminantProperty>;
|
|
28
|
+
get equalsFunction(): Code;
|
|
29
|
+
get filterFunction(): Code;
|
|
30
|
+
get filterType(): Code;
|
|
31
|
+
get graphqlType(): AbstractType.GraphqlType;
|
|
32
|
+
get hashFunction(): Code;
|
|
33
|
+
get jsonSchemaFunctionDeclaration(): Code;
|
|
34
|
+
get jsonTypeAliasDeclaration(): Code;
|
|
23
35
|
get members(): readonly AbstractUnionType.Member<MemberTypeT>[];
|
|
24
36
|
get mutable(): boolean;
|
|
25
|
-
get
|
|
37
|
+
get expression(): Code;
|
|
38
|
+
get referencesObjectType(): boolean;
|
|
26
39
|
get schemaType(): Code;
|
|
27
40
|
get toRdfResourceValueTypes(): AbstractType["toRdfResourceValueTypes"];
|
|
28
41
|
get typeofs(): AbstractType["typeofs"];
|
|
42
|
+
get valueSparqlConstructTriplesFunction(): Code;
|
|
43
|
+
get valueSparqlWherePatternsFunction(): Code;
|
|
29
44
|
protected get inlineEqualsFunction(): Code;
|
|
30
45
|
protected get inlineFilterFunction(): Code;
|
|
31
46
|
protected get inlineFilterType(): Code;
|
|
@@ -34,38 +49,48 @@ export declare abstract class AbstractUnionType<MemberTypeT extends Type> extend
|
|
|
34
49
|
protected get inlineHashFunction(): Code;
|
|
35
50
|
protected get inlineJsonSchema(): Code;
|
|
36
51
|
protected get inlineJsonType(): AbstractType.JsonType;
|
|
37
|
-
protected get
|
|
52
|
+
protected get inlineExpression(): Code;
|
|
38
53
|
protected get inlineToJsonFunction(): Code;
|
|
39
54
|
protected get inlineToRdfResourceValuesFunction(): Code;
|
|
40
55
|
protected get inlineToStringFunction(): Code;
|
|
41
56
|
protected get inlineValueSparqlConstructTriplesFunction(): Code;
|
|
42
57
|
protected get inlineValueSparqlWherePatternsFunction(): Code;
|
|
43
|
-
protected get
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
};
|
|
58
|
+
protected get schemaInitializers(): readonly Code[];
|
|
59
|
+
protected get staticModuleDeclarations(): Record<string, Code>;
|
|
60
|
+
fromJsonExpression({ variables, }: Parameters<AbstractType["fromJsonExpression"]>[0]): Code;
|
|
61
|
+
fromRdfResourceValuesExpression({ variables, }: Parameters<AbstractType["fromRdfResourceValuesExpression"]>[0]): Code;
|
|
62
|
+
graphqlResolveExpression({ variables, }: {
|
|
63
|
+
variables: {
|
|
64
|
+
value: Code;
|
|
65
|
+
};
|
|
66
|
+
}): Code;
|
|
67
|
+
jsonSchema({ context, }: Parameters<AbstractType["jsonSchema"]>[0]): Code;
|
|
68
|
+
jsonType(): AbstractType.JsonType;
|
|
47
69
|
jsonUiSchemaElement(): Maybe<Code>;
|
|
70
|
+
toJsonExpression({ variables, }: Parameters<AbstractType["toJsonExpression"]>[0]): Code;
|
|
71
|
+
toRdfResourceValuesExpression({ variables, }: Parameters<AbstractType["toRdfResourceValuesExpression"]>[0]): Code;
|
|
72
|
+
toStringExpression({ variables, }: Parameters<AbstractType["toStringExpression"]>[0]): Code;
|
|
48
73
|
private readonly lazyMembers;
|
|
49
74
|
}
|
|
50
75
|
type Discriminant = ExtrinsicDiscriminant | HybridDiscriminant | IntrinsicDiscriminant | TypeofDiscriminant;
|
|
51
76
|
type ExtrinsicDiscriminant = {
|
|
52
77
|
readonly jsonName: string;
|
|
53
|
-
readonly kind: "
|
|
78
|
+
readonly kind: "Extrinsic";
|
|
54
79
|
readonly memberValues: readonly AbstractType.DiscriminantProperty.Value[];
|
|
55
80
|
readonly name: string;
|
|
56
81
|
};
|
|
57
82
|
type HybridDiscriminant = {
|
|
58
83
|
readonly jsonName: string;
|
|
59
|
-
readonly kind: "
|
|
84
|
+
readonly kind: "Hybrid";
|
|
60
85
|
readonly memberValues: readonly {
|
|
61
|
-
readonly kind: "
|
|
86
|
+
readonly kind: "Extrinsic" | "Intrinsic";
|
|
62
87
|
readonly ownValues: readonly AbstractType.DiscriminantProperty.Value[];
|
|
63
88
|
}[];
|
|
64
89
|
readonly name: string;
|
|
65
90
|
};
|
|
66
91
|
type IntrinsicDiscriminant = {
|
|
67
92
|
readonly jsonName: string;
|
|
68
|
-
readonly kind: "
|
|
93
|
+
readonly kind: "Intrinsic";
|
|
69
94
|
readonly memberValues: readonly {
|
|
70
95
|
readonly descendantValues: readonly AbstractType.DiscriminantProperty.Value[];
|
|
71
96
|
readonly ownValues: readonly AbstractType.DiscriminantProperty.Value[];
|
|
@@ -73,7 +98,7 @@ type IntrinsicDiscriminant = {
|
|
|
73
98
|
readonly name: string;
|
|
74
99
|
};
|
|
75
100
|
type TypeofDiscriminant = {
|
|
76
|
-
readonly kind: "
|
|
101
|
+
readonly kind: "Typeof";
|
|
77
102
|
readonly memberValues: readonly Typeof[];
|
|
78
103
|
};
|
|
79
104
|
export declare namespace Discriminant {
|
|
@@ -96,4 +121,4 @@ export declare namespace AbstractUnionType {
|
|
|
96
121
|
}
|
|
97
122
|
}
|
|
98
123
|
export {};
|
|
99
|
-
//# sourceMappingURL=
|
|
124
|
+
//# sourceMappingURL=UnionType.d.ts.map
|