@shaclmate/compiler 3.0.4 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Compiler.d.ts +2 -3
- package/dist/Compiler.js +5 -8
- package/dist/Eithers.d.ts +14 -0
- package/dist/Eithers.js +67 -0
- package/dist/ShapesGraphToAstTransformer.d.ts +3 -8
- package/dist/ShapesGraphToAstTransformer.js +22 -23
- package/dist/_ShapesGraphToAstTransformer/CurieFactory.d.ts +16 -0
- package/dist/_ShapesGraphToAstTransformer/CurieFactory.js +45 -0
- package/dist/_ShapesGraphToAstTransformer/ShapeStack.d.ts +1 -1
- package/dist/_ShapesGraphToAstTransformer/ShapeStack.js +1 -2
- package/dist/_ShapesGraphToAstTransformer/index.d.ts +1 -5
- package/dist/_ShapesGraphToAstTransformer/index.js +1 -5
- package/dist/_ShapesGraphToAstTransformer/nodeShapeIdentifierMintingStrategy.d.ts +5 -0
- package/dist/_ShapesGraphToAstTransformer/nodeShapeIdentifierMintingStrategy.js +28 -0
- package/dist/_ShapesGraphToAstTransformer/nodeShapeTsFeatures.d.ts +5 -0
- package/dist/_ShapesGraphToAstTransformer/nodeShapeTsFeatures.js +8 -0
- package/dist/_ShapesGraphToAstTransformer/shapeIdentifier.d.ts +5 -0
- package/dist/_ShapesGraphToAstTransformer/shapeIdentifier.js +9 -0
- package/dist/_ShapesGraphToAstTransformer/shapeNodeKinds.d.ts +8 -0
- package/dist/_ShapesGraphToAstTransformer/shapeNodeKinds.js +175 -0
- package/dist/_ShapesGraphToAstTransformer/transformNodeShapeToAstType.d.ts +3 -3
- package/dist/_ShapesGraphToAstTransformer/transformNodeShapeToAstType.js +302 -231
- package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstObjectTypeProperty.d.ts +6 -3
- package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstObjectTypeProperty.js +168 -170
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstAbstractTypeProperties.d.ts +12 -0
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstAbstractTypeProperties.js +31 -0
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompoundType.d.ts +10 -0
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompoundType.js +141 -0
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstTermType.d.ts +5 -5
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstTermType.js +92 -11
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstType.d.ts +3 -3
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstType.js +8 -4
- package/dist/ast/AbstractCollectionType.d.ts +20 -0
- package/dist/ast/AbstractCollectionType.js +27 -0
- package/dist/ast/AbstractCompoundType.d.ts +23 -0
- package/dist/ast/AbstractCompoundType.js +39 -0
- package/dist/ast/AbstractContainerType.d.ts +36 -0
- package/dist/ast/AbstractContainerType.js +58 -0
- package/dist/ast/AbstractLazyObjectType.d.ts +25 -0
- package/dist/ast/AbstractLazyObjectType.js +30 -0
- package/dist/ast/AbstractObjectCompoundType.d.ts +45 -0
- package/dist/ast/AbstractObjectCompoundType.js +180 -0
- package/dist/ast/AbstractTermType.d.ts +24 -0
- package/dist/ast/AbstractTermType.js +41 -0
- package/dist/ast/AbstractType.d.ts +21 -0
- package/dist/ast/AbstractType.js +29 -0
- package/dist/ast/BlankNodeType.d.ts +11 -0
- package/dist/ast/BlankNodeType.js +17 -0
- package/dist/ast/Curie.d.ts +10 -3
- package/dist/ast/Curie.js +14 -6
- package/dist/ast/DefaultValueType.d.ts +26 -0
- package/dist/ast/DefaultValueType.js +41 -0
- package/dist/ast/IdentifierType.d.ts +5 -4
- package/dist/ast/IdentifierType.js +19 -1
- package/dist/ast/IntersectionType.d.ts +3 -3
- package/dist/ast/IntersectionType.js +7 -1
- package/dist/ast/IriType.d.ts +10 -0
- package/dist/ast/IriType.js +10 -0
- package/dist/ast/LazyObjectOptionType.d.ts +6 -0
- package/dist/ast/LazyObjectOptionType.js +5 -0
- package/dist/ast/LazyObjectSetType.d.ts +6 -0
- package/dist/ast/LazyObjectSetType.js +5 -0
- package/dist/ast/LazyObjectType.d.ts +5 -0
- package/dist/ast/LazyObjectType.js +5 -0
- package/dist/ast/ListType.d.ts +28 -24
- package/dist/ast/ListType.js +68 -1
- package/dist/ast/LiteralType.d.ts +13 -4
- package/dist/ast/LiteralType.js +24 -1
- package/dist/ast/ObjectIntersectionType.d.ts +3 -3
- package/dist/ast/ObjectIntersectionType.js +7 -1
- package/dist/ast/ObjectType.d.ts +79 -72
- package/dist/ast/ObjectType.js +402 -9
- package/dist/ast/ObjectUnionType.d.ts +3 -3
- package/dist/ast/ObjectUnionType.js +7 -1
- package/dist/ast/OptionType.d.ts +9 -4
- package/dist/ast/OptionType.js +17 -1
- package/dist/ast/PlaceholderType.d.ts +10 -2
- package/dist/ast/PlaceholderType.js +18 -1
- package/dist/ast/SetType.d.ts +12 -9
- package/dist/ast/SetType.js +32 -1
- package/dist/ast/TermType.d.ts +8 -13
- package/dist/ast/TermType.js +15 -1
- package/dist/ast/Type.d.ts +10 -4
- package/dist/ast/Type.js +47 -1
- package/dist/ast/UnionType.d.ts +7 -3
- package/dist/ast/UnionType.js +12 -1
- package/dist/ast/equals.d.ts +12 -0
- package/dist/ast/equals.js +65 -0
- package/dist/ast/index.d.ts +10 -2
- package/dist/ast/index.js +10 -2
- package/dist/generators/json/AstJsonGenerator.js +53 -49
- package/dist/generators/ts/AbstractCollectionType.d.ts +47 -0
- package/dist/generators/ts/AbstractCollectionType.js +235 -0
- package/dist/generators/ts/AbstractContainerType.d.ts +51 -0
- package/dist/generators/ts/AbstractContainerType.js +72 -0
- package/dist/generators/ts/AbstractDateType.d.ts +31 -0
- package/dist/generators/ts/AbstractDateType.js +71 -0
- package/dist/generators/ts/AbstractDeclaredType.d.ts +23 -0
- package/dist/generators/ts/AbstractDeclaredType.js +17 -0
- package/dist/generators/ts/AbstractIdentifierType.d.ts +14 -0
- package/dist/generators/ts/AbstractIdentifierType.js +38 -0
- package/dist/generators/ts/AbstractLazyObjectType.d.ts +63 -0
- package/dist/generators/ts/AbstractLazyObjectType.js +140 -0
- package/dist/generators/ts/AbstractLiteralType.d.ts +24 -0
- package/dist/generators/ts/AbstractLiteralType.js +36 -0
- package/dist/generators/ts/AbstractNumericType.d.ts +32 -0
- package/dist/generators/ts/AbstractNumericType.js +85 -0
- package/dist/generators/ts/AbstractPrimitiveType.d.ts +30 -0
- package/dist/generators/ts/AbstractPrimitiveType.js +60 -0
- package/dist/generators/ts/AbstractTermType.d.ts +60 -0
- package/dist/generators/ts/AbstractTermType.js +171 -0
- package/dist/generators/ts/AbstractType.d.ts +267 -0
- package/dist/generators/ts/AbstractType.js +85 -0
- package/dist/generators/ts/BigDecimalType.d.ts +21 -0
- package/dist/generators/ts/BigDecimalType.js +91 -0
- package/dist/generators/ts/BigIntType.d.ts +15 -0
- package/dist/generators/ts/BigIntType.js +49 -0
- package/dist/generators/ts/BlankNodeType.d.ts +26 -0
- package/dist/generators/ts/BlankNodeType.js +61 -0
- package/dist/generators/ts/BooleanType.d.ts +18 -10
- package/dist/generators/ts/BooleanType.js +28 -51
- package/dist/generators/ts/DateTimeType.d.ts +8 -22
- package/dist/generators/ts/DateTimeType.js +10 -89
- package/dist/generators/ts/DateType.d.ts +7 -8
- package/dist/generators/ts/DateType.js +11 -18
- package/dist/generators/ts/DefaultValueType.d.ts +48 -0
- package/dist/generators/ts/DefaultValueType.js +178 -0
- package/dist/generators/ts/FloatType.d.ts +9 -4
- package/dist/generators/ts/FloatType.js +13 -15
- package/dist/generators/ts/IdentifierType.d.ts +18 -16
- package/dist/generators/ts/IdentifierType.js +45 -172
- package/dist/generators/ts/IntType.d.ts +9 -4
- package/dist/generators/ts/IntType.js +13 -15
- package/dist/generators/ts/IriType.d.ts +24 -0
- package/dist/generators/ts/IriType.js +106 -0
- package/dist/generators/ts/LazyObjectOptionType.d.ts +31 -0
- package/dist/generators/ts/LazyObjectOptionType.js +87 -0
- package/dist/generators/ts/LazyObjectSetType.d.ts +15 -0
- package/dist/generators/ts/LazyObjectSetType.js +78 -0
- package/dist/generators/ts/LazyObjectType.d.ts +14 -0
- package/dist/generators/ts/LazyObjectType.js +59 -0
- package/dist/generators/ts/ListType.d.ts +33 -31
- package/dist/generators/ts/ListType.js +76 -271
- package/dist/generators/ts/LiteralType.d.ts +16 -18
- package/dist/generators/ts/LiteralType.js +35 -114
- package/dist/generators/ts/ObjectType.d.ts +60 -66
- package/dist/generators/ts/ObjectType.js +151 -190
- package/dist/generators/ts/ObjectUnionType.d.ts +38 -74
- package/dist/generators/ts/ObjectUnionType.js +144 -559
- package/dist/generators/ts/OptionType.d.ts +33 -27
- package/dist/generators/ts/OptionType.js +93 -83
- package/dist/generators/ts/SetType.d.ts +13 -32
- package/dist/generators/ts/SetType.js +27 -160
- package/dist/generators/ts/StringType.d.ts +19 -11
- package/dist/generators/ts/StringType.js +33 -53
- package/dist/generators/ts/TermType.d.ts +22 -56
- package/dist/generators/ts/TermType.js +67 -219
- package/dist/generators/ts/TsGenerator.d.ts +0 -1
- package/dist/generators/ts/TsGenerator.js +30 -71
- package/dist/generators/ts/Type.d.ts +24 -245
- package/dist/generators/ts/Type.js +1 -121
- package/dist/generators/ts/TypeFactory.d.ts +24 -15
- package/dist/generators/ts/TypeFactory.js +330 -400
- package/dist/generators/ts/Typeof.d.ts +2 -0
- package/dist/generators/ts/Typeof.js +2 -0
- package/dist/generators/ts/UnionType.d.ts +32 -28
- package/dist/generators/ts/UnionType.js +299 -230
- package/dist/generators/ts/_ObjectType/AbstractProperty.d.ts +191 -0
- package/dist/generators/ts/_ObjectType/AbstractProperty.js +49 -0
- package/dist/generators/ts/_ObjectType/IdentifierPrefixProperty.d.ts +22 -25
- package/dist/generators/ts/_ObjectType/IdentifierPrefixProperty.js +34 -56
- package/dist/generators/ts/_ObjectType/IdentifierProperty.d.ts +38 -36
- package/dist/generators/ts/_ObjectType/IdentifierProperty.js +238 -191
- package/dist/generators/ts/_ObjectType/ObjectType_classDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_classDeclaration.js +69 -0
- package/dist/generators/ts/_ObjectType/ObjectType_createFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_createFunctionDeclaration.js +52 -0
- package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionOrMethodDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_equalsFunctionOrMethodDeclaration.js +51 -0
- package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_filterFunctionDeclaration.js +21 -0
- package/dist/generators/ts/_ObjectType/ObjectType_filterTypeDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_filterTypeDeclaration.js +22 -0
- package/dist/generators/ts/_ObjectType/ObjectType_fromRdfTypeVariableStatement.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_fromRdfTypeVariableStatement.js +13 -0
- package/dist/generators/ts/_ObjectType/ObjectType_graphqlTypeVariableStatement.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_graphqlTypeVariableStatement.js +35 -0
- package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionOrMethodDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_hashFunctionOrMethodDeclarations.js +73 -0
- package/dist/generators/ts/_ObjectType/ObjectType_interfaceDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_interfaceDeclaration.js +16 -0
- package/dist/generators/ts/_ObjectType/ObjectType_isTypeFunctionDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_isTypeFunctionDeclaration.js +14 -0
- package/dist/generators/ts/_ObjectType/ObjectType_jsonFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_jsonFunctionDeclarations.js +122 -0
- package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeAliasDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_jsonTypeAliasDeclaration.js +17 -0
- package/dist/generators/ts/_ObjectType/ObjectType_objectSetMethodNames.d.ts +9 -0
- package/dist/generators/ts/_ObjectType/{objectSetMethodNames.js → ObjectType_objectSetMethodNames.js} +3 -3
- package/dist/generators/ts/_ObjectType/ObjectType_rdfFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_rdfFunctionDeclarations.js +132 -0
- package/dist/generators/ts/_ObjectType/ObjectType_schemaVariableStatement.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_schemaVariableStatement.js +10 -0
- package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.d.ts +6 -0
- package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryFunctionDeclaration.js +12 -0
- package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.d.ts +6 -0
- package/dist/generators/ts/_ObjectType/ObjectType_sparqlConstructQueryStringFunctionDeclaration.js +10 -0
- package/dist/generators/ts/_ObjectType/ObjectType_sparqlFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectType/ObjectType_sparqlFunctionDeclarations.js +143 -0
- package/dist/generators/ts/_ObjectType/ObjectType_toJsonFunctionOrMethodDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/{toJsonFunctionOrMethodDeclaration.js → ObjectType_toJsonFunctionOrMethodDeclaration.js} +18 -18
- package/dist/generators/ts/_ObjectType/ObjectType_toRdfFunctionOrMethodDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectType/ObjectType_toRdfFunctionOrMethodDeclaration.js +65 -0
- package/dist/generators/ts/_ObjectType/Property.d.ts +5 -168
- package/dist/generators/ts/_ObjectType/Property.js +1 -32
- package/dist/generators/ts/_ObjectType/ShaclProperty.d.ts +41 -32
- package/dist/generators/ts/_ObjectType/ShaclProperty.js +178 -134
- package/dist/generators/ts/_ObjectType/TypeDiscriminantProperty.d.ts +48 -0
- package/dist/generators/ts/_ObjectType/TypeDiscriminantProperty.js +142 -0
- package/dist/generators/ts/_ObjectType/identifierTypeDeclarations.d.ts +2 -5
- package/dist/generators/ts/_ObjectType/identifierTypeDeclarations.js +9 -44
- package/dist/generators/ts/_ObjectUnionType/MemberType.d.ts +34 -0
- package/dist/generators/ts/_ObjectUnionType/MemberType.js +105 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_equalsFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_equalsFunctionDeclaration.js +29 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_filterFunctionDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_filterFunctionDeclaration.js +19 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_filterTypeDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_filterTypeDeclaration.js +10 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_graphqlTypeVariableStatement.d.ts +5 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_graphqlTypeVariableStatement.js +18 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_hashFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_hashFunctionDeclaration.js +28 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_identifierTypeDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_identifierTypeDeclarations.js +9 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_isTypeFunctionDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_isTypeFunctionDeclaration.js +13 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_jsonFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_jsonFunctionDeclarations.js +50 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_jsonTypeAliasDeclaration.d.ts +5 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_jsonTypeAliasDeclaration.js +10 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_rdfFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_rdfFunctionDeclarations.js +60 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_schemaVariableStatement.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_schemaVariableStatement.js +37 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_sparqlFunctionDeclarations.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_sparqlFunctionDeclarations.js +45 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_typeAliasDeclaration.d.ts +4 -0
- package/dist/generators/ts/_ObjectUnionType/ObjectUnionType_typeAliasDeclaration.js +10 -0
- package/dist/generators/ts/_snippets/snippets_BlankNodeFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_BlankNodeFilter.js +6 -0
- package/dist/generators/ts/_snippets/snippets_BlankNodeSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_BlankNodeSchema.js +7 -0
- package/dist/generators/ts/_snippets/snippets_BooleanFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_BooleanFilter.js +7 -0
- package/dist/generators/ts/_snippets/snippets_BooleanSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_BooleanSchema.js +8 -0
- package/dist/generators/ts/_snippets/snippets_CollectionFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_CollectionFilter.js +8 -0
- package/dist/generators/ts/_snippets/snippets_CollectionSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_CollectionSchema.js +9 -0
- package/dist/generators/ts/_snippets/snippets_DateFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_DateFilter.js +11 -0
- package/dist/generators/ts/_snippets/snippets_DateSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_DateSchema.js +8 -0
- package/dist/generators/ts/_snippets/snippets_DefaultValueSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_DefaultValueSchema.js +10 -0
- package/dist/generators/ts/_snippets/snippets_EqualsResult.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_EqualsResult.js +65 -0
- package/dist/generators/ts/_snippets/snippets_FromRdfOptions.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_FromRdfOptions.js +5 -0
- package/dist/generators/ts/_snippets/snippets_Hasher.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_Hasher.js +4 -0
- package/dist/generators/ts/_snippets/snippets_IdentifierFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_IdentifierFilter.js +9 -0
- package/dist/generators/ts/_snippets/snippets_IdentifierSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_IdentifierSchema.js +7 -0
- package/dist/generators/ts/_snippets/snippets_IdentifierSet.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_IdentifierSet.js +29 -0
- package/dist/generators/ts/_snippets/snippets_IriFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_IriFilter.js +8 -0
- package/dist/generators/ts/_snippets/snippets_IriSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_IriSchema.js +9 -0
- package/dist/generators/ts/_snippets/snippets_LazyObject.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_LazyObject.js +24 -0
- package/dist/generators/ts/_snippets/snippets_LazyObjectOption.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_LazyObjectOption.js +27 -0
- package/dist/generators/ts/_snippets/snippets_LazyObjectSet.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_LazyObjectSet.js +42 -0
- package/dist/generators/ts/_snippets/snippets_LiteralFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_LiteralFilter.js +9 -0
- package/dist/generators/ts/_snippets/snippets_LiteralSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_LiteralSchema.js +10 -0
- package/dist/generators/ts/_snippets/snippets_MaybeFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_MaybeFilter.js +5 -0
- package/dist/generators/ts/_snippets/snippets_MaybeSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_MaybeSchema.js +8 -0
- package/dist/generators/ts/_snippets/snippets_NumericFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_NumericFilter.js +11 -0
- package/dist/generators/ts/_snippets/snippets_NumericSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_NumericSchema.js +8 -0
- package/dist/generators/ts/_snippets/snippets_PropertiesFromRdfParameters.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_PropertiesFromRdfParameters.js +5 -0
- package/dist/generators/ts/_snippets/snippets_RdfVocabularies.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_RdfVocabularies.js +42 -0
- package/dist/generators/ts/_snippets/snippets_ShaclPropertySchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_ShaclPropertySchema.js +10 -0
- package/dist/generators/ts/_snippets/snippets_SparqlConstructTriplesFunction.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_SparqlConstructTriplesFunction.js +6 -0
- package/dist/generators/ts/_snippets/snippets_SparqlConstructTriplesFunctionParameters.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_SparqlConstructTriplesFunctionParameters.js +12 -0
- package/dist/generators/ts/_snippets/snippets_SparqlFilterPattern.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_SparqlFilterPattern.js +5 -0
- package/dist/generators/ts/_snippets/snippets_SparqlPattern.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_SparqlPattern.js +6 -0
- package/dist/generators/ts/_snippets/snippets_SparqlPattern_isSolutionGenerating.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_SparqlPattern_isSolutionGenerating.js +32 -0
- package/dist/generators/ts/_snippets/snippets_SparqlWherePatternsFunction.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_SparqlWherePatternsFunction.js +6 -0
- package/dist/generators/ts/_snippets/snippets_SparqlWherePatternsFunctionParameters.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_SparqlWherePatternsFunctionParameters.js +15 -0
- package/dist/generators/ts/_snippets/snippets_StringFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_StringFilter.js +9 -0
- package/dist/generators/ts/_snippets/snippets_StringSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_StringSchema.js +8 -0
- package/dist/generators/ts/_snippets/snippets_TermFilter.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_TermFilter.js +11 -0
- package/dist/generators/ts/_snippets/snippets_TermSchema.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_TermSchema.js +9 -0
- package/dist/generators/ts/_snippets/snippets_UnwrapR.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_UnwrapR.js +6 -0
- package/dist/generators/ts/_snippets/snippets_arrayEquals.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_arrayEquals.js +71 -0
- package/dist/generators/ts/_snippets/snippets_arrayIntersection.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_arrayIntersection.js +30 -0
- package/dist/generators/ts/_snippets/snippets_bigDecimalLiteral.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_bigDecimalLiteral.js +12 -0
- package/dist/generators/ts/_snippets/snippets_bigDecimalSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_bigDecimalSparqlWherePatterns.js +91 -0
- package/dist/generators/ts/_snippets/snippets_blankNodeFromString.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_blankNodeFromString.js +11 -0
- package/dist/generators/ts/_snippets/snippets_blankNodeSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_blankNodeSparqlWherePatterns.js +9 -0
- package/dist/generators/ts/_snippets/snippets_booleanEquals.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_booleanEquals.js +18 -0
- package/dist/generators/ts/_snippets/snippets_booleanSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_booleanSparqlWherePatterns.js +22 -0
- package/dist/generators/ts/_snippets/snippets_dateEquals.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_dateEquals.js +15 -0
- package/dist/generators/ts/_snippets/snippets_dateSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_dateSparqlWherePatterns.js +79 -0
- package/dist/generators/ts/_snippets/snippets_decodeBigDecimalLiteral.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_decodeBigDecimalLiteral.js +11 -0
- package/dist/generators/ts/_snippets/snippets_deduplicateSparqlPatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_deduplicateSparqlPatterns.js +21 -0
- package/dist/generators/ts/_snippets/snippets_defaultValueSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_defaultValueSparqlWherePatterns.js +13 -0
- package/dist/generators/ts/_snippets/snippets_filterArray.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterArray.js +24 -0
- package/dist/generators/ts/_snippets/snippets_filterBigDecimal.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterBigDecimal.js +29 -0
- package/dist/generators/ts/_snippets/snippets_filterBlankNode.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterBlankNode.js +9 -0
- package/dist/generators/ts/_snippets/snippets_filterBoolean.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterBoolean.js +12 -0
- package/dist/generators/ts/_snippets/snippets_filterDate.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterDate.js +28 -0
- package/dist/generators/ts/_snippets/snippets_filterIdentifier.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterIdentifier.js +17 -0
- package/dist/generators/ts/_snippets/snippets_filterIri.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterIri.js +13 -0
- package/dist/generators/ts/_snippets/snippets_filterLiteral.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterLiteral.js +10 -0
- package/dist/generators/ts/_snippets/snippets_filterMaybe.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterMaybe.js +25 -0
- package/dist/generators/ts/_snippets/snippets_filterNumeric.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterNumeric.js +28 -0
- package/dist/generators/ts/_snippets/snippets_filterString.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterString.js +20 -0
- package/dist/generators/ts/_snippets/snippets_filterTerm.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_filterTerm.js +26 -0
- package/dist/generators/ts/_snippets/snippets_fromRdfLanguageIn.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_fromRdfLanguageIn.js +17 -0
- package/dist/generators/ts/_snippets/snippets_fromRdfPreferredLanguages.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_fromRdfPreferredLanguages.js +25 -0
- package/dist/generators/ts/_snippets/snippets_identifierFromString.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_identifierFromString.js +8 -0
- package/dist/generators/ts/_snippets/snippets_identifierSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_identifierSparqlWherePatterns.js +36 -0
- package/dist/generators/ts/_snippets/snippets_iriSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_iriSparqlWherePatterns.js +20 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyBigIntArray.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyBigIntArray.js +7 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyBooleanArray.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyBooleanArray.js +7 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyNumberArray.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyNumberArray.js +7 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyObjectArray.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyObjectArray.js +7 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyStringArray.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_isReadonlyStringArray.js +7 -0
- package/dist/generators/ts/_snippets/snippets_liftSparqlPatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_liftSparqlPatterns.js +18 -0
- package/dist/generators/ts/_snippets/snippets_listSparqlConstructTriples.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_listSparqlConstructTriples.js +43 -0
- package/dist/generators/ts/_snippets/snippets_listSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_listSparqlWherePatterns.js +121 -0
- package/dist/generators/ts/_snippets/snippets_literalFactory.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_literalFactory.js +5 -0
- package/dist/generators/ts/_snippets/snippets_literalSchemaSparqlPatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_literalSchemaSparqlPatterns.js +45 -0
- package/dist/generators/ts/_snippets/snippets_literalSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_literalSparqlWherePatterns.js +10 -0
- package/dist/generators/ts/_snippets/snippets_maybeEquals.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_maybeEquals.js +34 -0
- package/dist/generators/ts/_snippets/snippets_maybeSparqlConstructTriples.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_maybeSparqlConstructTriples.js +10 -0
- package/dist/generators/ts/_snippets/snippets_maybeSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_maybeSparqlWherePatterns.js +26 -0
- package/dist/generators/ts/_snippets/snippets_normalizeSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_normalizeSparqlWherePatterns.js +97 -0
- package/dist/generators/ts/_snippets/snippets_numericSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_numericSparqlWherePatterns.js +71 -0
- package/dist/generators/ts/_snippets/snippets_setSparqlConstructTriples.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_setSparqlConstructTriples.js +10 -0
- package/dist/generators/ts/_snippets/snippets_setSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_setSparqlWherePatterns.js +22 -0
- package/dist/generators/ts/_snippets/snippets_shaclPropertyFromRdf.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_shaclPropertyFromRdf.js +14 -0
- package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlConstructTriples.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlConstructTriples.js +94 -0
- package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_shaclPropertySparqlWherePatterns.js +92 -0
- package/dist/generators/ts/_snippets/snippets_sortSparqlPatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_sortSparqlPatterns.js +26 -0
- package/dist/generators/ts/_snippets/snippets_sparqlInstancesOfPattern.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_sparqlInstancesOfPattern.js +32 -0
- package/dist/generators/ts/_snippets/snippets_sparqlPropertyPath.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_sparqlPropertyPath.js +61 -0
- package/dist/generators/ts/_snippets/snippets_sparqlValueInPattern.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_sparqlValueInPattern.js +27 -0
- package/dist/generators/ts/_snippets/snippets_strictEquals.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_strictEquals.js +14 -0
- package/dist/generators/ts/_snippets/snippets_stringSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_stringSparqlWherePatterns.js +47 -0
- package/dist/generators/ts/_snippets/snippets_termFilterSparqlPatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_termFilterSparqlPatterns.js +98 -0
- package/dist/generators/ts/_snippets/snippets_termSchemaSparqlPatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_termSchemaSparqlPatterns.js +29 -0
- package/dist/generators/ts/_snippets/snippets_termSparqlWherePatterns.d.ts +2 -0
- package/dist/generators/ts/_snippets/snippets_termSparqlWherePatterns.js +11 -0
- package/dist/generators/ts/codeEquals.d.ts +3 -0
- package/dist/generators/ts/codeEquals.js +7 -0
- package/dist/generators/ts/graphqlSchemaVariableStatement.d.ts +2 -2
- package/dist/generators/ts/graphqlSchemaVariableStatement.js +56 -60
- package/dist/generators/ts/imports.d.ts +40 -0
- package/dist/generators/ts/imports.js +41 -0
- package/dist/generators/ts/objectSetDeclarations.d.ts +2 -2
- package/dist/generators/ts/objectSetDeclarations.js +5 -7
- package/dist/generators/ts/objectSetInterfaceDeclaration.d.ts +2 -2
- package/dist/generators/ts/objectSetInterfaceDeclaration.js +19 -41
- package/dist/generators/ts/objectSetMethodSignatures.d.ts +9 -3
- package/dist/generators/ts/objectSetMethodSignatures.js +14 -34
- package/dist/generators/ts/rdfjsDatasetObjectSetClassDeclaration.d.ts +2 -2
- package/dist/generators/ts/rdfjsDatasetObjectSetClassDeclaration.js +279 -359
- package/dist/generators/ts/rdfjsTermExpression.d.ts +2 -1
- package/dist/generators/ts/rdfjsTermExpression.js +28 -10
- package/dist/generators/ts/removeUndefined.d.ts +2 -0
- package/dist/generators/ts/removeUndefined.js +17 -0
- package/dist/generators/ts/snippets.d.ts +104 -0
- package/dist/generators/ts/snippets.js +205 -0
- package/dist/generators/ts/sparqlObjectSetClassDeclaration.d.ts +2 -2
- package/dist/generators/ts/sparqlObjectSetClassDeclaration.js +209 -388
- package/dist/generators/ts/synthesizeUberObjectUnionType.d.ts +9 -0
- package/dist/generators/ts/synthesizeUberObjectUnionType.js +59 -0
- package/dist/generators/ts/ts-poet-wrapper.d.ts +5 -0
- package/dist/generators/ts/ts-poet-wrapper.js +13 -0
- package/dist/generators/ts/tsName.d.ts +11 -2
- package/dist/generators/ts/tsName.js +25 -28
- package/dist/generators/ts/unsupportedObjectSetMethodDeclarations.d.ts +4 -3
- package/dist/generators/ts/unsupportedObjectSetMethodDeclarations.js +18 -15
- package/dist/index.d.ts +6 -1
- package/dist/index.js +5 -1
- package/dist/input/NodeShape.d.ts +14 -11
- package/dist/input/NodeShape.js +87 -80
- package/dist/input/Ontology.d.ts +1 -1
- package/dist/input/Ontology.js +13 -0
- package/dist/input/PropertyShape.d.ts +8 -5
- package/dist/input/PropertyShape.js +46 -9
- package/dist/input/ShapesGraph.d.ts +23 -6
- package/dist/input/ShapesGraph.js +58 -39
- package/dist/input/ancestorClassIris.js +4 -1
- package/dist/input/descendantClassIris.js +8 -2
- package/dist/input/generated.d.ts +3032 -1044
- package/dist/input/generated.js +3595 -2734
- package/dist/input/index.d.ts +1 -1
- package/dist/input/index.js +1 -1
- package/dist/input/tsFeatures.d.ts +1 -1
- package/package.json +39 -45
- package/dist/_ShapesGraphToAstTransformer/InheritableShapeConstraints.d.ts +0 -2
- package/dist/_ShapesGraphToAstTransformer/InheritableShapeConstraints.js +0 -2
- package/dist/_ShapesGraphToAstTransformer/flattenAstObjectCompositeTypeMemberTypes.d.ts +0 -13
- package/dist/_ShapesGraphToAstTransformer/flattenAstObjectCompositeTypeMemberTypes.js +0 -51
- package/dist/_ShapesGraphToAstTransformer/pickLiteral.d.ts +0 -4
- package/dist/_ShapesGraphToAstTransformer/pickLiteral.js +0 -18
- package/dist/_ShapesGraphToAstTransformer/propertyShapeNodeKinds.d.ts +0 -4
- package/dist/_ShapesGraphToAstTransformer/propertyShapeNodeKinds.js +0 -26
- package/dist/_ShapesGraphToAstTransformer/shapeAstName.d.ts +0 -5
- package/dist/_ShapesGraphToAstTransformer/shapeAstName.js +0 -69
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompositeType.d.ts +0 -10
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompositeType.js +0 -185
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstIdentifierType.d.ts +0 -10
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstIdentifierType.js +0 -32
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstLiteralType.d.ts +0 -10
- package/dist/_ShapesGraphToAstTransformer/transformShapeToAstLiteralType.js +0 -46
- package/dist/ast/CompositeType.d.ts +0 -13
- package/dist/ast/CompositeType.js +0 -2
- package/dist/ast/Name.d.ts +0 -49
- package/dist/ast/Name.js +0 -2
- package/dist/ast/ObjectCompositeType.d.ts +0 -33
- package/dist/ast/ObjectCompositeType.js +0 -2
- package/dist/generators/ts/DeclaredType.d.ts +0 -17
- package/dist/generators/ts/DeclaredType.js +0 -13
- package/dist/generators/ts/Import.d.ts +0 -20
- package/dist/generators/ts/Import.js +0 -65
- package/dist/generators/ts/NumberType.d.ts +0 -13
- package/dist/generators/ts/NumberType.js +0 -71
- package/dist/generators/ts/PrimitiveType.d.ts +0 -21
- package/dist/generators/ts/PrimitiveType.js +0 -57
- package/dist/generators/ts/SnippetDeclarations.d.ts +0 -17
- package/dist/generators/ts/SnippetDeclarations.js +0 -367
- package/dist/generators/ts/_ObjectType/EagerShaclProperty.d.ts +0 -12
- package/dist/generators/ts/_ObjectType/EagerShaclProperty.js +0 -31
- package/dist/generators/ts/_ObjectType/LazyShaclProperty.d.ts +0 -100
- package/dist/generators/ts/_ObjectType/LazyShaclProperty.js +0 -315
- package/dist/generators/ts/_ObjectType/TypeDiscriminatorProperty.d.ts +0 -51
- package/dist/generators/ts/_ObjectType/TypeDiscriminatorProperty.js +0 -138
- package/dist/generators/ts/_ObjectType/classDeclaration.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/classDeclaration.js +0 -122
- package/dist/generators/ts/_ObjectType/createFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/createFunctionDeclaration.js +0 -73
- package/dist/generators/ts/_ObjectType/equalsFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/equalsFunctionDeclaration.js +0 -19
- package/dist/generators/ts/_ObjectType/equalsFunctionOrMethodDeclaration.d.ts +0 -11
- package/dist/generators/ts/_ObjectType/equalsFunctionOrMethodDeclaration.js +0 -73
- package/dist/generators/ts/_ObjectType/fromRdfTypeVariableStatement.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/fromRdfTypeVariableStatement.js +0 -28
- package/dist/generators/ts/_ObjectType/graphqlTypeVariableStatement.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/graphqlTypeVariableStatement.js +0 -49
- package/dist/generators/ts/_ObjectType/hashFunctionDeclarations.d.ts +0 -4
- package/dist/generators/ts/_ObjectType/hashFunctionDeclarations.js +0 -18
- package/dist/generators/ts/_ObjectType/hashFunctionOrMethodDeclarations.d.ts +0 -13
- package/dist/generators/ts/_ObjectType/hashFunctionOrMethodDeclarations.js +0 -96
- package/dist/generators/ts/_ObjectType/index.d.ts +0 -22
- package/dist/generators/ts/_ObjectType/index.js +0 -22
- package/dist/generators/ts/_ObjectType/interfaceDeclaration.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/interfaceDeclaration.js +0 -21
- package/dist/generators/ts/_ObjectType/jsonFunctionDeclarations.d.ts +0 -4
- package/dist/generators/ts/_ObjectType/jsonFunctionDeclarations.js +0 -189
- package/dist/generators/ts/_ObjectType/jsonTypeAliasDeclaration.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/jsonTypeAliasDeclaration.js +0 -28
- package/dist/generators/ts/_ObjectType/objectSetMethodNames.d.ts +0 -9
- package/dist/generators/ts/_ObjectType/propertiesVariableStatement.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/propertiesVariableStatement.js +0 -37
- package/dist/generators/ts/_ObjectType/rdfFunctionDeclarations.d.ts +0 -4
- package/dist/generators/ts/_ObjectType/rdfFunctionDeclarations.js +0 -169
- package/dist/generators/ts/_ObjectType/sparqlConstructQueryFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/sparqlConstructQueryFunctionDeclaration.js +0 -22
- package/dist/generators/ts/_ObjectType/sparqlConstructQueryStringFunctionDeclaration.d.ts +0 -5
- package/dist/generators/ts/_ObjectType/sparqlConstructQueryStringFunctionDeclaration.js +0 -21
- package/dist/generators/ts/_ObjectType/sparqlFunctionDeclarations.d.ts +0 -4
- package/dist/generators/ts/_ObjectType/sparqlFunctionDeclarations.js +0 -166
- package/dist/generators/ts/_ObjectType/toJsonFunctionOrMethodDeclaration.d.ts +0 -10
- package/dist/generators/ts/_ObjectType/toRdfFunctionOrMethodDeclaration.d.ts +0 -10
- package/dist/generators/ts/_ObjectType/toRdfFunctionOrMethodDeclaration.js +0 -76
- package/dist/generators/ts/forwardingObjectSetClassDeclaration.d.ts +0 -8
- package/dist/generators/ts/forwardingObjectSetClassDeclaration.js +0 -29
- package/dist/generators/ts/objectInitializer.d.ts +0 -2
- package/dist/generators/ts/objectInitializer.js +0 -14
- package/dist/input/PropertyPath.d.ts +0 -41
- package/dist/input/PropertyPath.js +0 -95
|
@@ -4,630 +4,191 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
4
4
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
5
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
6
|
};
|
|
7
|
-
import { camelCase
|
|
8
|
-
import { Maybe } from "purify-ts";
|
|
7
|
+
import { camelCase } from "change-case";
|
|
8
|
+
import { Maybe, NonEmptyList } from "purify-ts";
|
|
9
9
|
import { invariant } from "ts-invariant";
|
|
10
|
-
import { StructureKind, VariableDeclarationKind, } from "ts-morph";
|
|
11
10
|
import { Memoize } from "typescript-memoize";
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
11
|
+
import { ObjectType_objectSetMethodNames } from "./_ObjectType/ObjectType_objectSetMethodNames.js";
|
|
12
|
+
import { MemberType } from "./_ObjectUnionType/MemberType.js";
|
|
13
|
+
import { ObjectUnionType_equalsFunctionDeclaration } from "./_ObjectUnionType/ObjectUnionType_equalsFunctionDeclaration.js";
|
|
14
|
+
import { ObjectUnionType_filterFunctionDeclaration } from "./_ObjectUnionType/ObjectUnionType_filterFunctionDeclaration.js";
|
|
15
|
+
import { ObjectUnionType_filterTypeDeclaration } from "./_ObjectUnionType/ObjectUnionType_filterTypeDeclaration.js";
|
|
16
|
+
import { ObjectUnionType_graphqlTypeVariableStatement } from "./_ObjectUnionType/ObjectUnionType_graphqlTypeVariableStatement.js";
|
|
17
|
+
import { ObjectUnionType_hashFunctionDeclaration } from "./_ObjectUnionType/ObjectUnionType_hashFunctionDeclaration.js";
|
|
18
|
+
import { ObjectUnionType_identifierTypeDeclarations } from "./_ObjectUnionType/ObjectUnionType_identifierTypeDeclarations.js";
|
|
19
|
+
import { ObjectUnionType_isTypeFunctionDeclaration } from "./_ObjectUnionType/ObjectUnionType_isTypeFunctionDeclaration.js";
|
|
20
|
+
import { jsonFunctionDeclarations } from "./_ObjectUnionType/ObjectUnionType_jsonFunctionDeclarations.js";
|
|
21
|
+
import { ObjectUnionType_jsonTypeAliasDeclaration } from "./_ObjectUnionType/ObjectUnionType_jsonTypeAliasDeclaration.js";
|
|
22
|
+
import { rdfFunctionDeclarations } from "./_ObjectUnionType/ObjectUnionType_rdfFunctionDeclarations.js";
|
|
23
|
+
import { ObjectUnionType_schemaVariableStatement } from "./_ObjectUnionType/ObjectUnionType_schemaVariableStatement.js";
|
|
24
|
+
import { ObjectUnionType_sparqlFunctionDeclarations } from "./_ObjectUnionType/ObjectUnionType_sparqlFunctionDeclarations.js";
|
|
25
|
+
import { ObjectUnionType_typeAliasDeclaration } from "./_ObjectUnionType/ObjectUnionType_typeAliasDeclaration.js";
|
|
26
|
+
import { AbstractDeclaredType } from "./AbstractDeclaredType.js";
|
|
27
|
+
import { imports } from "./imports.js";
|
|
28
|
+
import { snippets } from "./snippets.js";
|
|
19
29
|
import { syntheticNamePrefix } from "./syntheticNamePrefix.js";
|
|
20
|
-
import {
|
|
21
|
-
class MemberType {
|
|
22
|
-
delegate;
|
|
23
|
-
universe;
|
|
24
|
-
constructor({ delegate, universe, }) {
|
|
25
|
-
this.delegate = delegate;
|
|
26
|
-
this.universe = universe;
|
|
27
|
-
}
|
|
28
|
-
get declarationType() {
|
|
29
|
-
return this.delegate.declarationType;
|
|
30
|
-
}
|
|
31
|
-
get descendantFromRdfTypeVariables() {
|
|
32
|
-
return this.delegate.descendantFromRdfTypeVariables;
|
|
33
|
-
}
|
|
34
|
-
get discriminatorPropertyValues() {
|
|
35
|
-
// A member type's combined discriminator property values are its "own" values plus any descendant values that are
|
|
36
|
-
// not the "own" values of some other member type.
|
|
37
|
-
// So if you have type A, type B, and B inherits A, then
|
|
38
|
-
// A has
|
|
39
|
-
// own discriminator property values: ["A"]
|
|
40
|
-
// descendant discriminator property values: ["B"]
|
|
41
|
-
// and B has
|
|
42
|
-
// own discriminator property values: ["B"]
|
|
43
|
-
// descendant discriminator property values ["B"]
|
|
44
|
-
// In this case A shouldn't have "B" as a combined discriminator property value since it's "claimed" by B.
|
|
45
|
-
const memberOwnDiscriminatorPropertyValues = new Set();
|
|
46
|
-
for (const memberType of this.universe) {
|
|
47
|
-
for (const ownDiscriminatorPropertyValue of memberType.discriminatorProperty.unsafeCoerce()
|
|
48
|
-
.ownValues) {
|
|
49
|
-
memberOwnDiscriminatorPropertyValues.add(ownDiscriminatorPropertyValue);
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
return this.delegate._discriminatorProperty.ownValues.concat(this.delegate._discriminatorProperty.descendantValues.filter((value) => !memberOwnDiscriminatorPropertyValues.has(value)));
|
|
53
|
-
}
|
|
54
|
-
get features() {
|
|
55
|
-
return this.delegate.features;
|
|
56
|
-
}
|
|
57
|
-
get fromRdfType() {
|
|
58
|
-
return this.delegate.fromRdfType;
|
|
59
|
-
}
|
|
60
|
-
get fromRdfTypeVariable() {
|
|
61
|
-
return this.delegate.fromRdfTypeVariable;
|
|
62
|
-
}
|
|
63
|
-
get graphqlName() {
|
|
64
|
-
return this.delegate.graphqlName;
|
|
65
|
-
}
|
|
66
|
-
get identifierTypeAlias() {
|
|
67
|
-
return this.delegate.identifierTypeAlias;
|
|
68
|
-
}
|
|
69
|
-
get jsonName() {
|
|
70
|
-
return this.delegate.jsonName;
|
|
71
|
-
}
|
|
72
|
-
get mutable() {
|
|
73
|
-
return this.delegate.mutable;
|
|
74
|
-
}
|
|
75
|
-
get name() {
|
|
76
|
-
return this.delegate.name;
|
|
77
|
-
}
|
|
78
|
-
get staticModuleName() {
|
|
79
|
-
return this.delegate.staticModuleName;
|
|
80
|
-
}
|
|
81
|
-
get toRdfjsResourceType() {
|
|
82
|
-
return this.delegate.toRdfjsResourceType;
|
|
83
|
-
}
|
|
84
|
-
jsonZodSchema(parameters) {
|
|
85
|
-
return this.delegate.jsonZodSchema(parameters);
|
|
86
|
-
}
|
|
87
|
-
newExpression(parameters) {
|
|
88
|
-
return this.delegate.newExpression(parameters);
|
|
89
|
-
}
|
|
90
|
-
snippetDeclarations(parameters) {
|
|
91
|
-
return this.delegate.snippetDeclarations(parameters);
|
|
92
|
-
}
|
|
93
|
-
useImports() {
|
|
94
|
-
return this.delegate.useImports();
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
__decorate([
|
|
98
|
-
Memoize()
|
|
99
|
-
], MemberType.prototype, "discriminatorPropertyValues", null);
|
|
30
|
+
import { code, def, joinCode } from "./ts-poet-wrapper.js";
|
|
100
31
|
/**
|
|
101
32
|
* A union of object types, generated as a type alias
|
|
102
33
|
*
|
|
103
34
|
* type SomeUnion = Member1 | Member2 | ...
|
|
104
35
|
*
|
|
105
|
-
* with associated functions that switch on the type
|
|
36
|
+
* with associated functions that switch on the type discriminant property and delegate to the appropriate
|
|
106
37
|
* member type code.
|
|
107
38
|
*
|
|
108
39
|
* It also generates SPARQL graph patterns that UNION the member object types.
|
|
109
40
|
*/
|
|
110
|
-
export class ObjectUnionType extends
|
|
111
|
-
|
|
112
|
-
comment;
|
|
113
|
-
label;
|
|
41
|
+
export class ObjectUnionType extends AbstractDeclaredType {
|
|
42
|
+
graphqlArgs = Maybe.empty();
|
|
114
43
|
identifierType;
|
|
115
44
|
kind = "ObjectUnionType";
|
|
116
45
|
memberTypes;
|
|
117
|
-
|
|
118
|
-
constructor({
|
|
46
|
+
typeofs = NonEmptyList(["object"]);
|
|
47
|
+
constructor({ identifierType, memberTypes, ...superParameters }) {
|
|
119
48
|
super(superParameters);
|
|
120
|
-
this.comment = comment;
|
|
121
49
|
this.identifierType = identifierType;
|
|
122
|
-
this.label = label;
|
|
123
50
|
invariant(memberTypes.length > 0);
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
invariant(memberType.declarationType === memberTypes[0].declarationType);
|
|
129
|
-
invariant(memberType._discriminatorProperty.name === discriminatorPropertyName);
|
|
130
|
-
discriminatorPropertyDescendantValues.push(...memberType._discriminatorProperty.descendantValues);
|
|
131
|
-
discriminatorPropertyOwnValues.push(...memberType._discriminatorProperty.ownValues);
|
|
132
|
-
}
|
|
133
|
-
this._discriminatorProperty = {
|
|
134
|
-
descendantValues: discriminatorPropertyDescendantValues,
|
|
135
|
-
name: discriminatorPropertyName,
|
|
136
|
-
ownValues: discriminatorPropertyOwnValues,
|
|
137
|
-
};
|
|
138
|
-
this.memberTypes = memberTypes.map((memberType) => new MemberType({ delegate: memberType, universe: memberTypes }));
|
|
51
|
+
this.memberTypes = memberTypes.map((memberType) => new MemberType({
|
|
52
|
+
delegate: memberType,
|
|
53
|
+
universe: memberTypes,
|
|
54
|
+
}));
|
|
139
55
|
}
|
|
140
56
|
get conversions() {
|
|
141
57
|
return [
|
|
142
58
|
{
|
|
143
59
|
conversionExpression: (value) => value,
|
|
144
|
-
sourceTypeCheckExpression: (value) => `typeof ${value} === "object"`,
|
|
60
|
+
sourceTypeCheckExpression: (value) => code `typeof ${value} === "object"`,
|
|
145
61
|
sourceTypeName: this.name,
|
|
62
|
+
sourceTypeof: "object",
|
|
146
63
|
},
|
|
147
64
|
];
|
|
148
65
|
}
|
|
149
|
-
get
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
get declarations() {
|
|
153
|
-
const declarations = [this.typeAliasDeclaration];
|
|
154
|
-
const staticModuleStatements = [
|
|
155
|
-
...this.equalsFunctionDeclaration.toList(),
|
|
156
|
-
...this.fromJsonFunctionDeclaration.toList(),
|
|
157
|
-
...this.fromRdfFunctionDeclaration.toList(),
|
|
158
|
-
...this.graphqlTypeVariableStatement.toList(),
|
|
159
|
-
...this.hashFunctionDeclaration.toList(),
|
|
160
|
-
...this.jsonTypeAliasDeclaration.toList(),
|
|
161
|
-
...this.jsonZodSchemaFunctionDeclaration.toList(),
|
|
162
|
-
...this.identifierTypeDeclarations,
|
|
163
|
-
...this.sparqlFunctionDeclarations,
|
|
164
|
-
...this.toJsonFunctionDeclaration.toList(),
|
|
165
|
-
...this.toRdfFunctionDeclaration.toList(),
|
|
66
|
+
get declaration() {
|
|
67
|
+
const declarations = [
|
|
68
|
+
ObjectUnionType_typeAliasDeclaration.bind(this)(),
|
|
166
69
|
];
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
70
|
+
const staticModuleDeclarations = [
|
|
71
|
+
...ObjectUnionType_equalsFunctionDeclaration.bind(this)().toList(),
|
|
72
|
+
ObjectUnionType_filterFunctionDeclaration.bind(this)(),
|
|
73
|
+
ObjectUnionType_filterTypeDeclaration.bind(this)(),
|
|
74
|
+
...ObjectUnionType_graphqlTypeVariableStatement.bind(this)().toList(),
|
|
75
|
+
...ObjectUnionType_hashFunctionDeclaration.bind(this)().toList(),
|
|
76
|
+
...ObjectUnionType_identifierTypeDeclarations.bind(this)(),
|
|
77
|
+
...jsonFunctionDeclarations.bind(this)(),
|
|
78
|
+
...ObjectUnionType_jsonTypeAliasDeclaration.bind(this)().toList(),
|
|
79
|
+
...ObjectUnionType_isTypeFunctionDeclaration.bind(this)().toList(),
|
|
80
|
+
ObjectUnionType_schemaVariableStatement.bind(this)(),
|
|
81
|
+
...rdfFunctionDeclarations.bind(this)(),
|
|
82
|
+
...ObjectUnionType_sparqlFunctionDeclarations.bind(this)(),
|
|
83
|
+
];
|
|
84
|
+
if (staticModuleDeclarations.length > 0) {
|
|
85
|
+
declarations.push(code `\
|
|
86
|
+
export namespace ${def(this.staticModuleName)} {
|
|
87
|
+
${joinCode(staticModuleDeclarations, { on: "\n\n" })}
|
|
88
|
+
}`);
|
|
174
89
|
}
|
|
175
|
-
return declarations;
|
|
90
|
+
return joinCode(declarations, { on: "\n\n" });
|
|
176
91
|
}
|
|
177
|
-
get
|
|
178
|
-
return Maybe.of(this.
|
|
92
|
+
get discriminantProperty() {
|
|
93
|
+
return Maybe.of(this._discriminantProperty);
|
|
179
94
|
}
|
|
180
95
|
get equalsFunction() {
|
|
181
|
-
return `${this.staticModuleName}.${syntheticNamePrefix}equals`;
|
|
96
|
+
return code `${this.staticModuleName}.${syntheticNamePrefix}equals`;
|
|
182
97
|
}
|
|
183
|
-
get
|
|
184
|
-
return
|
|
98
|
+
get filterFunction() {
|
|
99
|
+
return code `${this.staticModuleName}.${syntheticNamePrefix}filter`;
|
|
185
100
|
}
|
|
186
|
-
get
|
|
187
|
-
return `${this.staticModuleName}.${syntheticNamePrefix}
|
|
101
|
+
get filterType() {
|
|
102
|
+
return code `${this.staticModuleName}.${syntheticNamePrefix}Filter`;
|
|
188
103
|
}
|
|
189
|
-
get
|
|
190
|
-
return new
|
|
104
|
+
get graphqlType() {
|
|
105
|
+
return new AbstractDeclaredType.GraphqlType(code `${this.staticModuleName}.${syntheticNamePrefix}GraphQL`);
|
|
106
|
+
}
|
|
107
|
+
get identifierTypeAlias() {
|
|
108
|
+
return code `${this.staticModuleName}.${syntheticNamePrefix}Identifier`;
|
|
191
109
|
}
|
|
192
110
|
get mutable() {
|
|
193
111
|
return this.memberTypes.some((memberType) => memberType.mutable);
|
|
194
112
|
}
|
|
195
113
|
get objectSetMethodNames() {
|
|
196
|
-
return
|
|
197
|
-
}
|
|
198
|
-
get staticModuleName() {
|
|
199
|
-
return this.name;
|
|
200
|
-
}
|
|
201
|
-
get thisVariable() {
|
|
202
|
-
return `_${camelCase(this.name)}`;
|
|
203
|
-
}
|
|
204
|
-
get equalsFunctionDeclaration() {
|
|
205
|
-
if (!this.features.has("equals")) {
|
|
206
|
-
return Maybe.empty();
|
|
207
|
-
}
|
|
208
|
-
const caseBlocks = this.memberTypes.map((memberType) => {
|
|
209
|
-
let returnExpression;
|
|
210
|
-
switch (memberType.declarationType) {
|
|
211
|
-
case "class":
|
|
212
|
-
returnExpression = `left.${syntheticNamePrefix}equals(right as unknown as ${memberType.name})`;
|
|
213
|
-
break;
|
|
214
|
-
case "interface":
|
|
215
|
-
returnExpression = `${memberType.staticModuleName}.${syntheticNamePrefix}equals(left, right as unknown as ${memberType.name})`;
|
|
216
|
-
break;
|
|
217
|
-
}
|
|
218
|
-
return `${memberType.discriminatorPropertyValues.map((discriminatorPropertyValue) => `case "${discriminatorPropertyValue}":`).join("\n")} return ${returnExpression};`;
|
|
219
|
-
});
|
|
220
|
-
caseBlocks.push('default: left satisfies never; throw new Error("unrecognized type");');
|
|
221
|
-
return Maybe.of({
|
|
222
|
-
isExported: true,
|
|
223
|
-
kind: StructureKind.Function,
|
|
224
|
-
name: `${syntheticNamePrefix}equals`,
|
|
225
|
-
parameters: [
|
|
226
|
-
{
|
|
227
|
-
name: "left",
|
|
228
|
-
type: this.name,
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
name: "right",
|
|
232
|
-
type: this.name,
|
|
233
|
-
},
|
|
234
|
-
],
|
|
235
|
-
returnType: `${syntheticNamePrefix}EqualsResult`,
|
|
236
|
-
statements: `\
|
|
237
|
-
return ${syntheticNamePrefix}strictEquals(left.${syntheticNamePrefix}type, right.${syntheticNamePrefix}type).chain(() => {
|
|
238
|
-
switch (left.${this._discriminatorProperty.name}) {
|
|
239
|
-
${caseBlocks.join(" ")}
|
|
240
|
-
}
|
|
241
|
-
})`,
|
|
242
|
-
});
|
|
114
|
+
return ObjectType_objectSetMethodNames.bind(this)();
|
|
243
115
|
}
|
|
244
|
-
get
|
|
245
|
-
|
|
246
|
-
return Maybe.empty();
|
|
247
|
-
}
|
|
248
|
-
return Maybe.of({
|
|
249
|
-
isExported: true,
|
|
250
|
-
kind: StructureKind.Function,
|
|
251
|
-
name: `${syntheticNamePrefix}fromJson`,
|
|
252
|
-
parameters: [
|
|
253
|
-
{
|
|
254
|
-
name: "json",
|
|
255
|
-
type: "unknown",
|
|
256
|
-
},
|
|
257
|
-
],
|
|
258
|
-
returnType: `purify.Either<zod.ZodError, ${this.name}>`,
|
|
259
|
-
statements: [
|
|
260
|
-
`return ${this.memberTypes.reduce((expression, memberType) => {
|
|
261
|
-
const memberTypeExpression = `(${memberType.staticModuleName}.${syntheticNamePrefix}fromJson(json) as purify.Either<zod.ZodError, ${this.name}>)`;
|
|
262
|
-
return expression.length > 0
|
|
263
|
-
? `${expression}.altLazy(() => ${memberTypeExpression})`
|
|
264
|
-
: memberTypeExpression;
|
|
265
|
-
}, "")};`,
|
|
266
|
-
],
|
|
267
|
-
});
|
|
116
|
+
get schema() {
|
|
117
|
+
return code `${this.staticModuleName}.${syntheticNamePrefix}schema`;
|
|
268
118
|
}
|
|
269
|
-
get
|
|
270
|
-
|
|
271
|
-
return Maybe.empty();
|
|
272
|
-
}
|
|
273
|
-
return Maybe.of({
|
|
274
|
-
isExported: true,
|
|
275
|
-
kind: StructureKind.Function,
|
|
276
|
-
name: `${syntheticNamePrefix}fromRdf`,
|
|
277
|
-
parameters: [
|
|
278
|
-
{
|
|
279
|
-
name: "resource",
|
|
280
|
-
type: "rdfjsResource.Resource",
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
hasQuestionToken: true,
|
|
284
|
-
name: "options",
|
|
285
|
-
type: `{ [_index: string]: any; ignoreRdfType?: boolean; objectSet?: ${syntheticNamePrefix}ObjectSet; preferredLanguages?: readonly string[] }`,
|
|
286
|
-
},
|
|
287
|
-
],
|
|
288
|
-
returnType: `purify.Either<Error, ${this.name}>`,
|
|
289
|
-
statements: [
|
|
290
|
-
`return ${this.memberTypes.reduce((expression, memberType) => {
|
|
291
|
-
const memberTypeExpression = `(${memberType.staticModuleName}.${syntheticNamePrefix}fromRdf(resource, { ...options, ignoreRdfType: false }) as purify.Either<Error, ${this.name}>)`;
|
|
292
|
-
return expression.length > 0
|
|
293
|
-
? `${expression}.altLazy(() => ${memberTypeExpression})`
|
|
294
|
-
: memberTypeExpression;
|
|
295
|
-
}, "")};`,
|
|
296
|
-
],
|
|
297
|
-
});
|
|
119
|
+
get schemaType() {
|
|
120
|
+
return code `typeof ${this.schema}`;
|
|
298
121
|
}
|
|
299
|
-
get
|
|
300
|
-
|
|
301
|
-
return Maybe.empty();
|
|
302
|
-
}
|
|
303
|
-
return Maybe.of({
|
|
304
|
-
declarationKind: VariableDeclarationKind.Const,
|
|
305
|
-
kind: StructureKind.VariableStatement,
|
|
306
|
-
declarations: [
|
|
307
|
-
{
|
|
308
|
-
name: `${syntheticNamePrefix}GraphQL`,
|
|
309
|
-
initializer: `new graphql.GraphQLUnionType(${objectInitializer({
|
|
310
|
-
description: this.comment.map(JSON.stringify).extract(),
|
|
311
|
-
name: `"${this.name}"`,
|
|
312
|
-
resolveType: `(value: ${this.name}) => value.${syntheticNamePrefix}type`,
|
|
313
|
-
types: `[${this.memberTypes.map((memberType) => memberType.graphqlName.nullableName).join(", ")}]`,
|
|
314
|
-
})})`,
|
|
315
|
-
},
|
|
316
|
-
],
|
|
317
|
-
isExported: true,
|
|
318
|
-
});
|
|
319
|
-
}
|
|
320
|
-
get hashFunctionDeclaration() {
|
|
321
|
-
if (!this.features.has("hash")) {
|
|
322
|
-
return Maybe.empty();
|
|
323
|
-
}
|
|
324
|
-
const hasherVariable = "_hasher";
|
|
325
|
-
const caseBlocks = this.memberTypes.map((memberType) => {
|
|
326
|
-
let returnExpression;
|
|
327
|
-
switch (memberType.declarationType) {
|
|
328
|
-
case "class":
|
|
329
|
-
returnExpression = `${this.thisVariable}.${syntheticNamePrefix}hash(${hasherVariable})`;
|
|
330
|
-
break;
|
|
331
|
-
case "interface":
|
|
332
|
-
returnExpression = `${memberType.staticModuleName}.${syntheticNamePrefix}hash(${this.thisVariable}, ${hasherVariable})`;
|
|
333
|
-
break;
|
|
334
|
-
}
|
|
335
|
-
return `${memberType.discriminatorPropertyValues.map((discriminatorPropertyValue) => `case "${discriminatorPropertyValue}":`).join("\n")} return ${returnExpression};`;
|
|
336
|
-
});
|
|
337
|
-
caseBlocks.push(`default: ${this.thisVariable} satisfies never; throw new Error("unrecognized type");`);
|
|
338
|
-
return Maybe.of({
|
|
339
|
-
isExported: true,
|
|
340
|
-
kind: StructureKind.Function,
|
|
341
|
-
name: `${syntheticNamePrefix}hash`,
|
|
342
|
-
parameters: [
|
|
343
|
-
{
|
|
344
|
-
name: this.thisVariable,
|
|
345
|
-
type: this.name,
|
|
346
|
-
},
|
|
347
|
-
{
|
|
348
|
-
name: hasherVariable,
|
|
349
|
-
type: "HasherT",
|
|
350
|
-
},
|
|
351
|
-
],
|
|
352
|
-
returnType: "HasherT",
|
|
353
|
-
statements: `switch (${this.thisVariable}.${this._discriminatorProperty.name}) { ${caseBlocks.join(" ")} }`,
|
|
354
|
-
typeParameters: [
|
|
355
|
-
{
|
|
356
|
-
name: "HasherT",
|
|
357
|
-
constraint: hasherTypeConstraint,
|
|
358
|
-
},
|
|
359
|
-
],
|
|
360
|
-
});
|
|
122
|
+
get sparqlConstructTriplesFunction() {
|
|
123
|
+
return code `(({ ignoreRdfType, schema, ...otherParameters }: ${snippets.SparqlConstructTriplesFunctionParameters}<${this.filterType}, ${this.schemaType}>) => ${this.staticModuleName}.${syntheticNamePrefix}sparqlConstructTriples(otherParameters))`;
|
|
361
124
|
}
|
|
362
|
-
get
|
|
363
|
-
return [
|
|
364
|
-
{
|
|
365
|
-
isExported: true,
|
|
366
|
-
kind: StructureKind.TypeAlias,
|
|
367
|
-
name: `${syntheticNamePrefix}Identifier`,
|
|
368
|
-
type: this.identifierType.name,
|
|
369
|
-
},
|
|
370
|
-
{
|
|
371
|
-
isExported: true,
|
|
372
|
-
kind: StructureKind.Module,
|
|
373
|
-
name: `${syntheticNamePrefix}Identifier`,
|
|
374
|
-
statements: [
|
|
375
|
-
this.identifierType.fromStringFunctionDeclaration,
|
|
376
|
-
this.identifierType.toStringFunctionDeclaration,
|
|
377
|
-
],
|
|
378
|
-
},
|
|
379
|
-
];
|
|
125
|
+
get sparqlWherePatternsFunction() {
|
|
126
|
+
return code `(({ ignoreRdfType, propertyPatterns, schema, valueVariable, ...otherParameters }: ${snippets.SparqlWherePatternsFunctionParameters}<${this.filterType}, ${this.schemaType}>) => (propertyPatterns as readonly ${snippets.SparqlPattern}[]).concat(${this.staticModuleName}.${syntheticNamePrefix}sparqlWherePatterns({ focusIdentifier: valueVariable, ...otherParameters })))`;
|
|
380
127
|
}
|
|
381
|
-
get
|
|
382
|
-
|
|
383
|
-
return Maybe.empty();
|
|
384
|
-
}
|
|
385
|
-
return Maybe.of({
|
|
386
|
-
isExported: true,
|
|
387
|
-
kind: StructureKind.TypeAlias,
|
|
388
|
-
name: `${syntheticNamePrefix}Json`,
|
|
389
|
-
type: this.memberTypes
|
|
390
|
-
.map((memberType) => memberType.jsonName)
|
|
391
|
-
.join(" | "),
|
|
392
|
-
});
|
|
393
|
-
}
|
|
394
|
-
get jsonZodSchemaFunctionDeclaration() {
|
|
395
|
-
if (!this.features.has("json")) {
|
|
396
|
-
return Maybe.empty();
|
|
397
|
-
}
|
|
398
|
-
const variables = { zod: "zod" };
|
|
399
|
-
return Maybe.of({
|
|
400
|
-
isExported: true,
|
|
401
|
-
kind: StructureKind.Function,
|
|
402
|
-
name: `${syntheticNamePrefix}jsonZodSchema`,
|
|
403
|
-
statements: `return ${variables.zod}.discriminatedUnion("${this._discriminatorProperty.name}", [${this.memberTypes.map((memberType) => memberType.jsonZodSchema({ context: "type", variables })).join(", ")}]);`,
|
|
404
|
-
});
|
|
405
|
-
}
|
|
406
|
-
get sparqlFunctionDeclarations() {
|
|
407
|
-
if (!this.features.has("sparql")) {
|
|
408
|
-
return [];
|
|
409
|
-
}
|
|
410
|
-
return [
|
|
411
|
-
sparqlConstructQueryFunctionDeclaration.bind(this)(),
|
|
412
|
-
sparqlConstructQueryStringFunctionDeclaration.bind(this)(),
|
|
413
|
-
{
|
|
414
|
-
isExported: true,
|
|
415
|
-
kind: StructureKind.Function,
|
|
416
|
-
name: `${syntheticNamePrefix}sparqlConstructTemplateTriples`,
|
|
417
|
-
// Accept ignoreRdfType in order to reuse code but don't pass it through, since deserialization may depend on it
|
|
418
|
-
parameters: [
|
|
419
|
-
{
|
|
420
|
-
hasQuestionToken: true,
|
|
421
|
-
name: "parameters",
|
|
422
|
-
type: '{ ignoreRdfType?: boolean, subject?: sparqljs.Triple["subject"], variablePrefix?: string }',
|
|
423
|
-
},
|
|
424
|
-
],
|
|
425
|
-
returnType: "readonly sparqljs.Triple[]",
|
|
426
|
-
statements: [
|
|
427
|
-
`return [${this.memberTypes
|
|
428
|
-
.map((memberType) => `...${memberType.staticModuleName}.${syntheticNamePrefix}sparqlConstructTemplateTriples({ subject: parameters?.subject ?? dataFactory.variable!("${camelCase(this.name)}${pascalCase(memberType.name)}"), variablePrefix: parameters?.variablePrefix ? \`\${parameters.variablePrefix}${pascalCase(memberType.name)}\` : "${camelCase(this.name)}${pascalCase(memberType.name)}" }).concat()`)
|
|
429
|
-
.join(", ")}];`,
|
|
430
|
-
],
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
isExported: true,
|
|
434
|
-
kind: StructureKind.Function,
|
|
435
|
-
name: `${syntheticNamePrefix}sparqlWherePatterns`,
|
|
436
|
-
// Accept ignoreRdfType in order to reuse code but don't pass it through, since deserialization may depend on it
|
|
437
|
-
parameters: [
|
|
438
|
-
{
|
|
439
|
-
hasQuestionToken: true,
|
|
440
|
-
name: "parameters",
|
|
441
|
-
type: '{ ignoreRdfType?: boolean; preferredLanguages?: readonly string[]; subject?: sparqljs.Triple["subject"], variablePrefix?: string }',
|
|
442
|
-
},
|
|
443
|
-
],
|
|
444
|
-
returnType: "readonly sparqljs.Pattern[]",
|
|
445
|
-
statements: [
|
|
446
|
-
`return [{ patterns: [${this.memberTypes
|
|
447
|
-
.map((memberType) => objectInitializer({
|
|
448
|
-
patterns: `${memberType.staticModuleName}.${syntheticNamePrefix}sparqlWherePatterns({ subject: parameters?.subject ?? dataFactory.variable!("${camelCase(this.name)}${pascalCase(memberType.name)}"), variablePrefix: parameters?.variablePrefix ? \`\${parameters.variablePrefix}${pascalCase(memberType.name)}\` : "${camelCase(this.name)}${pascalCase(memberType.name)}" }).concat()`,
|
|
449
|
-
type: '"group"',
|
|
450
|
-
}))
|
|
451
|
-
.join(", ")}], type: "union" }];`,
|
|
452
|
-
],
|
|
453
|
-
},
|
|
454
|
-
];
|
|
455
|
-
}
|
|
456
|
-
get toJsonFunctionDeclaration() {
|
|
457
|
-
if (!this.features.has("json")) {
|
|
458
|
-
return Maybe.empty();
|
|
459
|
-
}
|
|
460
|
-
const caseBlocks = this.memberTypes.map((memberType) => {
|
|
461
|
-
let returnExpression;
|
|
462
|
-
switch (memberType.declarationType) {
|
|
463
|
-
case "class":
|
|
464
|
-
returnExpression = `${this.thisVariable}.${syntheticNamePrefix}toJson()`;
|
|
465
|
-
break;
|
|
466
|
-
case "interface":
|
|
467
|
-
returnExpression = `${memberType.staticModuleName}.${syntheticNamePrefix}toJson(${this.thisVariable})`;
|
|
468
|
-
break;
|
|
469
|
-
}
|
|
470
|
-
return `${memberType.discriminatorPropertyValues.map((discriminatorPropertyValue) => `case "${discriminatorPropertyValue}":`).join("\n")} return ${returnExpression};`;
|
|
471
|
-
});
|
|
472
|
-
caseBlocks.push(`default: ${this.thisVariable} satisfies never; throw new Error("unrecognized type");`);
|
|
473
|
-
return Maybe.of({
|
|
474
|
-
isExported: true,
|
|
475
|
-
kind: StructureKind.Function,
|
|
476
|
-
name: `${syntheticNamePrefix}toJson`,
|
|
477
|
-
parameters: [
|
|
478
|
-
{
|
|
479
|
-
name: this.thisVariable,
|
|
480
|
-
type: this.name,
|
|
481
|
-
},
|
|
482
|
-
],
|
|
483
|
-
returnType: this.jsonName.toString(),
|
|
484
|
-
statements: `switch (${this.thisVariable}.${this._discriminatorProperty.name}) { ${caseBlocks.join(" ")} }`,
|
|
485
|
-
});
|
|
128
|
+
get staticModuleName() {
|
|
129
|
+
return this.name;
|
|
486
130
|
}
|
|
487
|
-
get
|
|
488
|
-
|
|
489
|
-
|
|
131
|
+
get _discriminantProperty() {
|
|
132
|
+
const discriminantPropertyDescendantValues = [];
|
|
133
|
+
const discriminantPropertyName = this.memberTypes[0]._discriminantProperty.name;
|
|
134
|
+
const discriminantPropertyOwnValues = [];
|
|
135
|
+
for (const memberType of this.memberTypes) {
|
|
136
|
+
// invariant(
|
|
137
|
+
// memberType.declarationType === this.memberTypes[0].declarationType,
|
|
138
|
+
// );
|
|
139
|
+
invariant(memberType._discriminantProperty.name === discriminantPropertyName);
|
|
140
|
+
discriminantPropertyDescendantValues.push(...memberType._discriminantProperty.descendantValues);
|
|
141
|
+
discriminantPropertyOwnValues.push(...memberType._discriminantProperty.ownValues);
|
|
490
142
|
}
|
|
491
|
-
const parametersVariable = "_parameters";
|
|
492
|
-
const caseBlocks = this.memberTypes.map((memberType) => {
|
|
493
|
-
let returnExpression;
|
|
494
|
-
switch (memberType.declarationType) {
|
|
495
|
-
case "class":
|
|
496
|
-
returnExpression = `${this.thisVariable}.${syntheticNamePrefix}toRdf(${parametersVariable})`;
|
|
497
|
-
break;
|
|
498
|
-
case "interface":
|
|
499
|
-
returnExpression = `${memberType.staticModuleName}.${syntheticNamePrefix}toRdf(${this.thisVariable}, ${parametersVariable})`;
|
|
500
|
-
break;
|
|
501
|
-
}
|
|
502
|
-
return `${memberType.discriminatorPropertyValues.map((discriminatorPropertyValue) => `case "${discriminatorPropertyValue}":`).join("\n")} return ${returnExpression};`;
|
|
503
|
-
});
|
|
504
|
-
caseBlocks.push(`default: ${this.thisVariable} satisfies never; throw new Error("unrecognized type");`);
|
|
505
|
-
return Maybe.of({
|
|
506
|
-
isExported: true,
|
|
507
|
-
kind: StructureKind.Function,
|
|
508
|
-
name: `${syntheticNamePrefix}toRdf`,
|
|
509
|
-
parameters: [
|
|
510
|
-
{
|
|
511
|
-
name: this.thisVariable,
|
|
512
|
-
type: this.name,
|
|
513
|
-
},
|
|
514
|
-
{
|
|
515
|
-
hasQuestionToken: true,
|
|
516
|
-
name: parametersVariable,
|
|
517
|
-
type: "{ mutateGraph?: rdfjsResource.MutableResource.MutateGraph, resourceSet?: rdfjsResource.MutableResourceSet }",
|
|
518
|
-
},
|
|
519
|
-
],
|
|
520
|
-
returnType: (() => {
|
|
521
|
-
let returnType;
|
|
522
|
-
for (const memberType of this.memberTypes) {
|
|
523
|
-
const memberRdfjsResourceType = memberType.toRdfjsResourceType;
|
|
524
|
-
if (typeof returnType === "undefined") {
|
|
525
|
-
returnType = memberRdfjsResourceType;
|
|
526
|
-
}
|
|
527
|
-
else if (memberRdfjsResourceType !== returnType) {
|
|
528
|
-
return "rdfjsResource.Resource";
|
|
529
|
-
}
|
|
530
|
-
}
|
|
531
|
-
// The types agree
|
|
532
|
-
return returnType;
|
|
533
|
-
})(),
|
|
534
|
-
statements: `switch (${this.thisVariable}.${this._discriminatorProperty.name}) { ${caseBlocks.join(" ")} }`,
|
|
535
|
-
});
|
|
536
|
-
}
|
|
537
|
-
get typeAliasDeclaration() {
|
|
538
143
|
return {
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
name: this.name,
|
|
543
|
-
type: this.memberTypes.map((memberType) => memberType.name).join(" | "),
|
|
144
|
+
descendantValues: discriminantPropertyDescendantValues,
|
|
145
|
+
name: discriminantPropertyName,
|
|
146
|
+
ownValues: discriminantPropertyOwnValues,
|
|
544
147
|
};
|
|
545
148
|
}
|
|
149
|
+
get concreteMemberTypes() {
|
|
150
|
+
return this.memberTypes.filter((memberType) => !memberType.abstract);
|
|
151
|
+
}
|
|
152
|
+
get thisVariable() {
|
|
153
|
+
return code `_${camelCase(this.name)}`;
|
|
154
|
+
}
|
|
546
155
|
fromJsonExpression({ variables, }) {
|
|
547
156
|
// Assumes the JSON object has been recursively validated already.
|
|
548
|
-
return `${this.staticModuleName}.${syntheticNamePrefix}fromJson(${variables.value}).unsafeCoerce()`;
|
|
157
|
+
return code `${this.staticModuleName}.${syntheticNamePrefix}fromJson(${variables.value}).unsafeCoerce()`;
|
|
549
158
|
}
|
|
550
159
|
fromRdfExpression({ variables, }) {
|
|
551
160
|
// Don't ignoreRdfType, we may need it to distinguish the union members
|
|
552
|
-
return `${variables.resourceValues}.chain(values => values.chainMap(value => value.toResource().chain(resource => ${this.staticModuleName}.${syntheticNamePrefix}fromRdf(resource, {
|
|
161
|
+
return code `${variables.resourceValues}.chain(values => values.chainMap(value => value.toResource().chain(resource => ${this.staticModuleName}.${syntheticNamePrefix}fromRdf(resource, { context: ${variables.context}, ignoreRdfType: false, objectSet: ${variables.objectSet}, preferredLanguages: ${variables.preferredLanguages} }))))`;
|
|
553
162
|
}
|
|
554
163
|
graphqlResolveExpression({ variables, }) {
|
|
555
164
|
return variables.value;
|
|
556
165
|
}
|
|
557
166
|
hashStatements({ variables, }) {
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
return [
|
|
565
|
-
`${this.staticModuleName}.${syntheticNamePrefix}hash(${variables.value}, ${variables.hasher});`,
|
|
566
|
-
];
|
|
567
|
-
}
|
|
167
|
+
return [
|
|
168
|
+
code `${this.staticModuleName}.${syntheticNamePrefix}hash(${variables.value}, ${variables.hasher});`,
|
|
169
|
+
];
|
|
170
|
+
}
|
|
171
|
+
jsonType() {
|
|
172
|
+
return new AbstractDeclaredType.JsonType(joinCode(this.memberTypes.map((memberType) => code `${memberType.jsonType().name}`), { on: "|" }));
|
|
568
173
|
}
|
|
569
174
|
jsonUiSchemaElement() {
|
|
570
175
|
return Maybe.empty();
|
|
571
176
|
}
|
|
572
|
-
jsonZodSchema() {
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
}
|
|
580
|
-
recursionStack.push(this);
|
|
581
|
-
const result = this.memberTypes.flatMap((memberType) => memberType.snippetDeclarations(parameters));
|
|
582
|
-
invariant(Object.is(recursionStack.pop(), this));
|
|
583
|
-
return result;
|
|
584
|
-
}
|
|
585
|
-
sparqlConstructTemplateTriples(parameters) {
|
|
586
|
-
switch (parameters.context) {
|
|
587
|
-
case "object":
|
|
588
|
-
return super.sparqlConstructTemplateTriples(parameters);
|
|
589
|
-
case "subject":
|
|
590
|
-
return [
|
|
591
|
-
`...${this.staticModuleName}.${syntheticNamePrefix}sparqlConstructTemplateTriples(${objectInitializer({
|
|
592
|
-
subject: parameters.variables.subject,
|
|
593
|
-
variablePrefix: parameters.variables.variablePrefix,
|
|
594
|
-
})})`,
|
|
595
|
-
];
|
|
596
|
-
}
|
|
597
|
-
}
|
|
598
|
-
sparqlWherePatterns(parameters) {
|
|
599
|
-
switch (parameters.context) {
|
|
600
|
-
case "object":
|
|
601
|
-
return super.sparqlWherePatterns(parameters);
|
|
602
|
-
case "subject":
|
|
603
|
-
return [
|
|
604
|
-
`...${this.staticModuleName}.${syntheticNamePrefix}sparqlWherePatterns(${objectInitializer({
|
|
605
|
-
preferredLanguages: parameters.variables.preferredLanguages,
|
|
606
|
-
subject: parameters.variables.subject,
|
|
607
|
-
variablePrefix: parameters.variables.variablePrefix,
|
|
608
|
-
})})`,
|
|
609
|
-
];
|
|
177
|
+
jsonZodSchema({ context, }) {
|
|
178
|
+
const expression = code `${this.staticModuleName}.${syntheticNamePrefix}jsonZodSchema()`;
|
|
179
|
+
for (const memberType of this.memberTypes) {
|
|
180
|
+
if (context === "property" &&
|
|
181
|
+
memberType.properties.some((property) => property.recursive)) {
|
|
182
|
+
return code `${imports.z}.lazy((): ${imports.z}.ZodType<${this.staticModuleName}.${syntheticNamePrefix}Json> => ${expression})`;
|
|
183
|
+
}
|
|
610
184
|
}
|
|
185
|
+
return expression;
|
|
611
186
|
}
|
|
612
187
|
toJsonExpression({ variables, }) {
|
|
613
|
-
|
|
614
|
-
case "class":
|
|
615
|
-
return `${variables.value}.${syntheticNamePrefix}toJson()`;
|
|
616
|
-
case "interface":
|
|
617
|
-
return `${this.staticModuleName}.${syntheticNamePrefix}toJson(${variables.value})`;
|
|
618
|
-
}
|
|
188
|
+
return code `${this.staticModuleName}.${syntheticNamePrefix}toJson(${variables.value})`;
|
|
619
189
|
}
|
|
620
190
|
toRdfExpression({ variables, }) {
|
|
621
|
-
|
|
622
|
-
switch (this.memberTypes[0].declarationType) {
|
|
623
|
-
case "class":
|
|
624
|
-
return `[${variables.value}.${syntheticNamePrefix}toRdf(${options}).identifier]`;
|
|
625
|
-
case "interface":
|
|
626
|
-
return `[${this.staticModuleName}.${syntheticNamePrefix}toRdf(${variables.value}, ${options}).identifier]`;
|
|
627
|
-
}
|
|
628
|
-
}
|
|
629
|
-
useImports() {
|
|
630
|
-
return [];
|
|
191
|
+
return code `[${this.staticModuleName}.${syntheticNamePrefix}toRdf(${variables.value}, ${{ graph: variables.graph, resourceSet: variables.resourceSet }}).identifier]`;
|
|
631
192
|
}
|
|
632
193
|
}
|
|
633
194
|
__decorate([
|
|
@@ -635,26 +196,50 @@ __decorate([
|
|
|
635
196
|
], ObjectUnionType.prototype, "conversions", null);
|
|
636
197
|
__decorate([
|
|
637
198
|
Memoize()
|
|
638
|
-
], ObjectUnionType.prototype, "
|
|
199
|
+
], ObjectUnionType.prototype, "discriminantProperty", null);
|
|
639
200
|
__decorate([
|
|
640
201
|
Memoize()
|
|
641
202
|
], ObjectUnionType.prototype, "equalsFunction", null);
|
|
642
203
|
__decorate([
|
|
643
204
|
Memoize()
|
|
644
|
-
], ObjectUnionType.prototype, "
|
|
205
|
+
], ObjectUnionType.prototype, "filterFunction", null);
|
|
645
206
|
__decorate([
|
|
646
207
|
Memoize()
|
|
647
|
-
], ObjectUnionType.prototype, "
|
|
208
|
+
], ObjectUnionType.prototype, "filterType", null);
|
|
209
|
+
__decorate([
|
|
210
|
+
Memoize()
|
|
211
|
+
], ObjectUnionType.prototype, "graphqlType", null);
|
|
648
212
|
__decorate([
|
|
649
213
|
Memoize()
|
|
650
|
-
], ObjectUnionType.prototype, "
|
|
214
|
+
], ObjectUnionType.prototype, "identifierTypeAlias", null);
|
|
651
215
|
__decorate([
|
|
652
216
|
Memoize()
|
|
653
217
|
], ObjectUnionType.prototype, "mutable", null);
|
|
654
218
|
__decorate([
|
|
655
219
|
Memoize()
|
|
656
220
|
], ObjectUnionType.prototype, "objectSetMethodNames", null);
|
|
221
|
+
__decorate([
|
|
222
|
+
Memoize()
|
|
223
|
+
], ObjectUnionType.prototype, "schema", null);
|
|
224
|
+
__decorate([
|
|
225
|
+
Memoize()
|
|
226
|
+
], ObjectUnionType.prototype, "schemaType", null);
|
|
227
|
+
__decorate([
|
|
228
|
+
Memoize()
|
|
229
|
+
], ObjectUnionType.prototype, "sparqlConstructTriplesFunction", null);
|
|
230
|
+
__decorate([
|
|
231
|
+
Memoize()
|
|
232
|
+
], ObjectUnionType.prototype, "sparqlWherePatternsFunction", null);
|
|
233
|
+
__decorate([
|
|
234
|
+
Memoize()
|
|
235
|
+
], ObjectUnionType.prototype, "_discriminantProperty", null);
|
|
236
|
+
__decorate([
|
|
237
|
+
Memoize()
|
|
238
|
+
], ObjectUnionType.prototype, "concreteMemberTypes", null);
|
|
657
239
|
__decorate([
|
|
658
240
|
Memoize()
|
|
659
241
|
], ObjectUnionType.prototype, "thisVariable", null);
|
|
242
|
+
__decorate([
|
|
243
|
+
Memoize()
|
|
244
|
+
], ObjectUnionType.prototype, "jsonType", null);
|
|
660
245
|
//# sourceMappingURL=ObjectUnionType.js.map
|