@shaclmate/compiler 4.0.23 → 4.0.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/dist/Compiler.d.ts +1 -1
  2. package/dist/ShapesGraphToAstTransformer.d.ts +1 -1
  3. package/dist/ShapesGraphToAstTransformer.js +16 -16
  4. package/dist/_ShapesGraphToAstTransformer/nodeShapeTsFeatures.d.ts +1 -1
  5. package/dist/_ShapesGraphToAstTransformer/nodeShapeTsFeatures.js +5 -2
  6. package/dist/_ShapesGraphToAstTransformer/shapeAstTypeName.js +6 -5
  7. package/dist/_ShapesGraphToAstTransformer/shapeNodeKinds.js +1 -1
  8. package/dist/_ShapesGraphToAstTransformer/shapeOntology.js +4 -3
  9. package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstObjectTypeProperty.js +11 -17
  10. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstCompoundType.js +3 -3
  11. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstListType.js +6 -11
  12. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstObjectType.js +21 -40
  13. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstTermType.js +1 -1
  14. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstType.js +3 -3
  15. package/dist/ast/AbstractCompoundType.d.ts +1 -1
  16. package/dist/ast/AbstractLazyObjectType.d.ts +0 -2
  17. package/dist/ast/ListType.d.ts +1 -8
  18. package/dist/ast/ListType.js +1 -6
  19. package/dist/ast/ObjectType.d.ts +3 -30
  20. package/dist/ast/ObjectType.js +2 -26
  21. package/dist/generators/ts/AbstractContainerType.d.ts +0 -1
  22. package/dist/generators/ts/AbstractContainerType.js +0 -1
  23. package/dist/generators/ts/AbstractLazyObjectType.d.ts +0 -1
  24. package/dist/generators/ts/AbstractLazyObjectType.js +2 -2
  25. package/dist/generators/ts/AbstractNamedUnionType.d.ts +1 -2
  26. package/dist/generators/ts/AbstractNamedUnionType.js +16 -19
  27. package/dist/generators/ts/AbstractTermType.d.ts +0 -1
  28. package/dist/generators/ts/AbstractTermType.js +0 -1
  29. package/dist/generators/ts/AbstractType.d.ts +0 -4
  30. package/dist/generators/ts/AbstractUnionType.d.ts +1 -10
  31. package/dist/generators/ts/AbstractUnionType.js +27 -40
  32. package/dist/generators/ts/LazyObjectOptionType.js +3 -2
  33. package/dist/generators/ts/LazyObjectSetType.js +2 -1
  34. package/dist/generators/ts/LazyObjectType.js +2 -1
  35. package/dist/generators/ts/ListType.d.ts +1 -5
  36. package/dist/generators/ts/ListType.js +8 -27
  37. package/dist/generators/ts/NamedObjectType.d.ts +2 -21
  38. package/dist/generators/ts/NamedObjectType.js +33 -132
  39. package/dist/generators/ts/NamedObjectUnionType.js +14 -25
  40. package/dist/generators/ts/TypeFactory.js +11 -67
  41. package/dist/generators/ts/ZodGenerator.js +2 -2
  42. package/dist/generators/ts/_NamedObjectType/AbstractProperty.d.ts +11 -17
  43. package/dist/generators/ts/_NamedObjectType/AbstractProperty.js +7 -6
  44. package/dist/generators/ts/_NamedObjectType/DiscriminantProperty.d.ts +1 -4
  45. package/dist/generators/ts/_NamedObjectType/DiscriminantProperty.js +19 -34
  46. package/dist/generators/ts/_NamedObjectType/IdentifierProperty.d.ts +5 -15
  47. package/dist/generators/ts/_NamedObjectType/IdentifierProperty.js +31 -212
  48. package/dist/generators/ts/_NamedObjectType/NamedObjectType_createFunctionDeclaration.js +2 -2
  49. package/dist/generators/ts/_NamedObjectType/NamedObjectType_equalsFunctionDeclaration.d.ts +5 -0
  50. package/dist/generators/ts/_NamedObjectType/NamedObjectType_equalsFunctionDeclaration.js +25 -0
  51. package/dist/generators/ts/_NamedObjectType/NamedObjectType_filterFunctionDeclaration.js +4 -4
  52. package/dist/generators/ts/_NamedObjectType/NamedObjectType_filterTypeDeclaration.js +1 -1
  53. package/dist/generators/ts/_NamedObjectType/NamedObjectType_focusSparqlConstructTriplesFunctionDeclaration.js +2 -2
  54. package/dist/generators/ts/_NamedObjectType/NamedObjectType_focusSparqlWherePatternsFunctionDeclaration.js +2 -2
  55. package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromJsonFunctionDeclaration.js +1 -8
  56. package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromRdfResourceFunctionDeclaration.js +5 -13
  57. package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromRdfResourceValuesFunctionDeclaration.js +1 -4
  58. package/dist/generators/ts/_NamedObjectType/NamedObjectType_hashFunctionDeclarations.d.ts +4 -0
  59. package/dist/generators/ts/_NamedObjectType/NamedObjectType_hashFunctionDeclarations.js +49 -0
  60. package/dist/generators/ts/_NamedObjectType/NamedObjectType_interfaceDeclaration.js +1 -1
  61. package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonParseFunctionDeclaration.js +0 -3
  62. package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonSchemaFunctionDeclaration.js +1 -1
  63. package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonTypeAliasDeclaration.js +2 -2
  64. package/dist/generators/ts/_NamedObjectType/NamedObjectType_jsonUiSchemaFunctionDeclaration.js +2 -2
  65. package/dist/generators/ts/_NamedObjectType/NamedObjectType_propertiesFromJsonFunctionDeclaration.js +2 -2
  66. package/dist/generators/ts/_NamedObjectType/NamedObjectType_propertiesFromRdfResourceFunctionDeclaration.js +2 -2
  67. package/dist/generators/ts/_NamedObjectType/NamedObjectType_schemaVariableStatement.js +2 -2
  68. package/dist/generators/ts/_NamedObjectType/NamedObjectType_sparqlConstructQueryFunctionDeclaration.d.ts +1 -2
  69. package/dist/generators/ts/_NamedObjectType/NamedObjectType_sparqlConstructQueryFunctionDeclaration.js +2 -2
  70. package/dist/generators/ts/_NamedObjectType/NamedObjectType_sparqlConstructQueryStringFunctionDeclaration.d.ts +2 -2
  71. package/dist/generators/ts/_NamedObjectType/NamedObjectType_sparqlConstructQueryStringFunctionDeclaration.js +2 -2
  72. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toJsonFunctionDeclaration.d.ts +5 -0
  73. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toJsonFunctionDeclaration.js +41 -0
  74. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toRdfResourceFunctionDeclaration.d.ts +5 -0
  75. package/dist/generators/ts/_NamedObjectType/{NamedObjectType_toRdfResourceFunctionOrMethodDeclaration.js → NamedObjectType_toRdfResourceFunctionDeclaration.js} +8 -27
  76. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toStringFunctionDeclarations.d.ts +4 -0
  77. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toStringFunctionDeclarations.js +40 -0
  78. package/dist/generators/ts/_NamedObjectType/NamedObjectType_valueSparqlConstructTriplesFunctionDeclaration.js +1 -1
  79. package/dist/generators/ts/_NamedObjectType/NamedObjectType_valueSparqlWherePatternsFunctionDeclaration.js +1 -1
  80. package/dist/generators/ts/_NamedObjectType/Property.d.ts +1 -2
  81. package/dist/generators/ts/_NamedObjectType/ShaclProperty.d.ts +1 -3
  82. package/dist/generators/ts/_NamedObjectType/ShaclProperty.js +8 -39
  83. package/dist/generators/ts/_snippets/snippets_LazyObject.js +2 -2
  84. package/dist/generators/ts/_snippets/snippets_LazyObjectOption.js +2 -2
  85. package/dist/generators/ts/_snippets/snippets_LazyObjectSet.js +2 -2
  86. package/dist/generators/ts/imports.d.ts +0 -2
  87. package/dist/generators/ts/imports.js +0 -2
  88. package/dist/generators/ts/objectSetDeclarations.js +1 -3
  89. package/dist/generators/ts/rdfjsDatasetObjectSetClassDeclaration.js +4 -6
  90. package/dist/generators/ts/sparqlObjectSetClassDeclaration.js +2 -2
  91. package/dist/input/ShapesGraph.d.ts +1 -1
  92. package/dist/input/generated.d.ts +10 -181
  93. package/dist/input/generated.js +116 -392
  94. package/package.json +2 -4
  95. package/dist/_ShapesGraphToAstTransformer/nodeShapeIdentifierMintingStrategy.d.ts +0 -6
  96. package/dist/_ShapesGraphToAstTransformer/nodeShapeIdentifierMintingStrategy.js +0 -32
  97. package/dist/enums/IdentifierMintingStrategy.d.ts +0 -9
  98. package/dist/enums/IdentifierMintingStrategy.js +0 -18
  99. package/dist/enums/TsObjectDeclarationType.d.ts +0 -9
  100. package/dist/enums/TsObjectDeclarationType.js +0 -16
  101. package/dist/enums/Visibility.d.ts +0 -6
  102. package/dist/enums/Visibility.js +0 -18
  103. package/dist/generators/ts/_NamedObjectType/IdentifierPrefixProperty.d.ts +0 -33
  104. package/dist/generators/ts/_NamedObjectType/IdentifierPrefixProperty.js +0 -92
  105. package/dist/generators/ts/_NamedObjectType/NamedObjectType_classDeclaration.d.ts +0 -4
  106. package/dist/generators/ts/_NamedObjectType/NamedObjectType_classDeclaration.js +0 -62
  107. package/dist/generators/ts/_NamedObjectType/NamedObjectType_equalsFunctionOrMethodDeclaration.d.ts +0 -5
  108. package/dist/generators/ts/_NamedObjectType/NamedObjectType_equalsFunctionOrMethodDeclaration.js +0 -51
  109. package/dist/generators/ts/_NamedObjectType/NamedObjectType_hashFunctionOrMethodDeclarations.d.ts +0 -4
  110. package/dist/generators/ts/_NamedObjectType/NamedObjectType_hashFunctionOrMethodDeclarations.js +0 -73
  111. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toJsonFunctionOrMethodDeclaration.d.ts +0 -5
  112. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toJsonFunctionOrMethodDeclaration.js +0 -59
  113. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toRdfResourceFunctionOrMethodDeclaration.d.ts +0 -5
  114. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toStringFunctionOrMethodDeclaration.d.ts +0 -4
  115. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toStringFunctionOrMethodDeclaration.js +0 -62
  116. /package/dist/{enums → generators/ts}/TsFeature.d.ts +0 -0
  117. /package/dist/{enums → generators/ts}/TsFeature.js +0 -0
@@ -126,7 +126,7 @@ export type $ToRdfResourceValuesFunction<ValueT, ReturnT extends BlankNode | Lit
126
126
  resourceSet: ResourceSet;
127
127
  }) => ReturnT[];
128
128
  export interface PropertyShape {
129
- readonly $identifier: PropertyShape.$Identifier;
129
+ readonly $identifier: () => PropertyShape.$Identifier;
130
130
  readonly $type: "PropertyShape";
131
131
  readonly and: Maybe<readonly (BlankNode | NamedNode)[]>;
132
132
  readonly classes: readonly NamedNode[];
@@ -165,12 +165,11 @@ export interface PropertyShape {
165
165
  readonly resolve: Maybe<BlankNode | NamedNode>;
166
166
  readonly shaclmateName: Maybe<string>;
167
167
  readonly uniqueLang: Maybe<boolean>;
168
- readonly visibility: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private" | "http://purl.org/shaclmate/ontology#_Visibility_Protected" | "http://purl.org/shaclmate/ontology#_Visibility_Public">>;
169
168
  readonly xone: Maybe<readonly (BlankNode | NamedNode)[]>;
170
169
  }
171
170
  export declare namespace PropertyShape {
172
171
  function $create(parameters: {
173
- readonly $identifier?: (BlankNode | NamedNode) | string;
172
+ readonly $identifier?: (() => PropertyShape.$Identifier) | (BlankNode | NamedNode) | string;
174
173
  readonly and?: Maybe<readonly (BlankNode | NamedNode)[]> | readonly (BlankNode | NamedNode)[] | readonly string[];
175
174
  readonly classes?: readonly NamedNode[] | readonly string[];
176
175
  readonly comment?: Maybe<string> | string;
@@ -206,7 +205,6 @@ export declare namespace PropertyShape {
206
205
  readonly resolve?: Maybe<BlankNode | NamedNode> | (BlankNode | NamedNode) | string;
207
206
  readonly shaclmateName?: Maybe<string> | string;
208
207
  readonly uniqueLang?: Maybe<boolean> | boolean;
209
- readonly visibility?: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private" | "http://purl.org/shaclmate/ontology#_Visibility_Protected" | "http://purl.org/shaclmate/ontology#_Visibility_Public">> | NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private" | "http://purl.org/shaclmate/ontology#_Visibility_Protected" | "http://purl.org/shaclmate/ontology#_Visibility_Public"> | "http://purl.org/shaclmate/ontology#_Visibility_Private" | "http://purl.org/shaclmate/ontology#_Visibility_Protected" | "http://purl.org/shaclmate/ontology#_Visibility_Public";
210
208
  readonly xone?: Maybe<readonly (BlankNode | NamedNode)[]> | readonly (BlankNode | NamedNode)[] | readonly string[];
211
209
  }): PropertyShape;
212
210
  type $Identifier = BlankNode | NamedNode;
@@ -252,7 +250,6 @@ export declare namespace PropertyShape {
252
250
  readonly resolve?: $MaybeFilter<$IdentifierFilter>;
253
251
  readonly shaclmateName?: $MaybeFilter<$StringFilter>;
254
252
  readonly uniqueLang?: $MaybeFilter<$BooleanFilter>;
255
- readonly visibility?: $MaybeFilter<$IriFilter>;
256
253
  readonly xone?: $MaybeFilter<$CollectionFilter<$IdentifierFilter>>;
257
254
  };
258
255
  const $fromRdfResource: $FromRdfResourceFunction<PropertyShape>;
@@ -297,7 +294,6 @@ export declare namespace PropertyShape {
297
294
  resolve: Maybe<BlankNode | NamedNode>;
298
295
  shaclmateName: Maybe<string>;
299
296
  uniqueLang: Maybe<boolean>;
300
- visibility: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private" | "http://purl.org/shaclmate/ontology#_Visibility_Protected" | "http://purl.org/shaclmate/ontology#_Visibility_Public">>;
301
297
  xone: Maybe<readonly (BlankNode | NamedNode)[]>;
302
298
  }>;
303
299
  const $schema: {
@@ -674,17 +670,6 @@ export declare namespace PropertyShape {
674
670
  };
675
671
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
676
672
  };
677
- readonly visibility: {
678
- readonly kind: "Shacl";
679
- readonly type: () => {
680
- kind: "Maybe";
681
- item: () => {
682
- kind: "Iri";
683
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Protected"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Public">)[];
684
- };
685
- };
686
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
687
- };
688
673
  readonly xone: {
689
674
  readonly kind: "Shacl";
690
675
  readonly type: () => {
@@ -706,14 +691,14 @@ export declare namespace PropertyShape {
706
691
  function $toString(_propertyShape: PropertyShape): string;
707
692
  }
708
693
  export interface PropertyGroup {
709
- readonly $identifier: PropertyGroup.$Identifier;
694
+ readonly $identifier: () => PropertyGroup.$Identifier;
710
695
  readonly $type: "PropertyGroup";
711
696
  readonly comment: Maybe<string>;
712
697
  readonly label: Maybe<string>;
713
698
  }
714
699
  export declare namespace PropertyGroup {
715
700
  function $create(parameters?: {
716
- readonly $identifier?: (BlankNode | NamedNode) | string;
701
+ readonly $identifier?: (() => PropertyGroup.$Identifier) | (BlankNode | NamedNode) | string;
717
702
  readonly comment?: Maybe<string> | string;
718
703
  readonly label?: Maybe<string> | string;
719
704
  }): PropertyGroup;
@@ -781,24 +766,22 @@ export declare namespace PropertyGroup {
781
766
  function $toString(_propertyGroup: PropertyGroup): string;
782
767
  }
783
768
  export interface Ontology {
784
- readonly $identifier: Ontology.$Identifier;
769
+ readonly $identifier: () => Ontology.$Identifier;
785
770
  readonly $type: "Ontology";
786
771
  readonly comment: Maybe<string>;
787
772
  readonly label: Maybe<string>;
788
773
  readonly tsFeatureExcludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
789
774
  readonly tsFeatureIncludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
790
775
  readonly tsImports: readonly string[];
791
- readonly tsObjectDeclarationType: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">>;
792
776
  }
793
777
  export declare namespace Ontology {
794
778
  function $create(parameters?: {
795
- readonly $identifier?: (BlankNode | NamedNode) | string;
779
+ readonly $identifier?: (() => Ontology.$Identifier) | (BlankNode | NamedNode) | string;
796
780
  readonly comment?: Maybe<string> | string;
797
781
  readonly label?: Maybe<string> | string;
798
782
  readonly tsFeatureExcludes?: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[] | readonly ("http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql")[];
799
783
  readonly tsFeatureIncludes?: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[] | readonly ("http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql")[];
800
784
  readonly tsImports?: readonly string[];
801
- readonly tsObjectDeclarationType?: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">> | NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface"> | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface";
802
785
  }): Ontology;
803
786
  type $Identifier = BlankNode | NamedNode;
804
787
  namespace $Identifier {
@@ -813,7 +796,6 @@ export declare namespace Ontology {
813
796
  readonly tsFeatureExcludes?: $CollectionFilter<$IriFilter>;
814
797
  readonly tsFeatureIncludes?: $CollectionFilter<$IriFilter>;
815
798
  readonly tsImports?: $CollectionFilter<$StringFilter>;
816
- readonly tsObjectDeclarationType?: $MaybeFilter<$IriFilter>;
817
799
  };
818
800
  const $fromRdfResource: $FromRdfResourceFunction<Ontology>;
819
801
  const $fromRdfResourceValues: $FromRdfResourceValuesFunction<Ontology>;
@@ -827,7 +809,6 @@ export declare namespace Ontology {
827
809
  tsFeatureExcludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
828
810
  tsFeatureIncludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
829
811
  tsImports: readonly string[];
830
- tsObjectDeclarationType: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">>;
831
812
  }>;
832
813
  const $schema: {
833
814
  readonly properties: {
@@ -896,17 +877,6 @@ export declare namespace Ontology {
896
877
  };
897
878
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
898
879
  };
899
- readonly tsObjectDeclarationType: {
900
- readonly kind: "Shacl";
901
- readonly type: () => {
902
- kind: "Maybe";
903
- item: () => {
904
- kind: "Iri";
905
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
906
- };
907
- };
908
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
909
- };
910
880
  };
911
881
  };
912
882
  function $toRdfResource(_ontology: Ontology, options?: Parameters<$ToRdfResourceFunction<Ontology>>[1]): Resource;
@@ -915,9 +885,8 @@ export declare namespace Ontology {
915
885
  function $toString(_ontology: Ontology): string;
916
886
  }
917
887
  export interface NodeShape {
918
- readonly $identifier: NodeShape.$Identifier;
888
+ readonly $identifier: () => NodeShape.$Identifier;
919
889
  readonly $type: "NodeShape";
920
- readonly abstract: Maybe<boolean>;
921
890
  readonly and: Maybe<readonly (BlankNode | NamedNode)[]>;
922
891
  readonly classes: readonly NamedNode[];
923
892
  readonly closed: Maybe<boolean>;
@@ -929,7 +898,6 @@ export interface NodeShape {
929
898
  readonly flags: readonly string[];
930
899
  readonly fromRdfType: Maybe<NamedNode>;
931
900
  readonly hasValues: readonly (NamedNode | Literal)[];
932
- readonly identifierMintingStrategy: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">>;
933
901
  readonly ignoredProperties: Maybe<readonly NamedNode[]>;
934
902
  readonly in_: Maybe<readonly (NamedNode | Literal)[]>;
935
903
  readonly isDefinedBy: Maybe<BlankNode | NamedNode>;
@@ -957,14 +925,12 @@ export interface NodeShape {
957
925
  readonly tsFeatureExcludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
958
926
  readonly tsFeatureIncludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
959
927
  readonly tsImports: readonly string[];
960
- readonly tsObjectDeclarationType: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">>;
961
928
  readonly types: readonly NamedNode[];
962
929
  readonly xone: Maybe<readonly (BlankNode | NamedNode)[]>;
963
930
  }
964
931
  export declare namespace NodeShape {
965
932
  function $create(parameters?: {
966
- readonly $identifier?: (BlankNode | NamedNode) | string;
967
- readonly abstract?: Maybe<boolean> | boolean;
933
+ readonly $identifier?: (() => NodeShape.$Identifier) | (BlankNode | NamedNode) | string;
968
934
  readonly and?: Maybe<readonly (BlankNode | NamedNode)[]> | readonly (BlankNode | NamedNode)[] | readonly string[];
969
935
  readonly classes?: readonly NamedNode[] | readonly string[];
970
936
  readonly closed?: Maybe<boolean> | boolean;
@@ -976,7 +942,6 @@ export declare namespace NodeShape {
976
942
  readonly flags?: readonly string[];
977
943
  readonly fromRdfType?: Maybe<NamedNode> | NamedNode | string;
978
944
  readonly hasValues?: readonly (NamedNode | Literal)[] | readonly bigint[] | readonly boolean[] | readonly number[] | readonly string[];
979
- readonly identifierMintingStrategy?: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">> | NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4"> | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4";
980
945
  readonly ignoredProperties?: Maybe<readonly NamedNode[]> | readonly NamedNode[] | readonly string[];
981
946
  readonly in_?: Maybe<readonly (NamedNode | Literal)[]> | readonly (NamedNode | Literal)[] | readonly bigint[] | readonly boolean[] | readonly number[] | readonly string[];
982
947
  readonly isDefinedBy?: Maybe<BlankNode | NamedNode> | (BlankNode | NamedNode) | string;
@@ -1004,7 +969,6 @@ export declare namespace NodeShape {
1004
969
  readonly tsFeatureExcludes?: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[] | readonly ("http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql")[];
1005
970
  readonly tsFeatureIncludes?: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[] | readonly ("http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql")[];
1006
971
  readonly tsImports?: readonly string[];
1007
- readonly tsObjectDeclarationType?: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">> | NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface"> | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface";
1008
972
  readonly types?: readonly NamedNode[] | readonly string[];
1009
973
  readonly xone?: Maybe<readonly (BlankNode | NamedNode)[]> | readonly (BlankNode | NamedNode)[] | readonly string[];
1010
974
  }): NodeShape;
@@ -1016,7 +980,6 @@ export declare namespace NodeShape {
1016
980
  function $filter(filter: NodeShape.$Filter, value: NodeShape): boolean;
1017
981
  type $Filter = {
1018
982
  readonly $identifier?: $IdentifierFilter;
1019
- readonly abstract?: $MaybeFilter<$BooleanFilter>;
1020
983
  readonly and?: $MaybeFilter<$CollectionFilter<$IdentifierFilter>>;
1021
984
  readonly classes?: $CollectionFilter<$IriFilter>;
1022
985
  readonly closed?: $MaybeFilter<$BooleanFilter>;
@@ -1028,7 +991,6 @@ export declare namespace NodeShape {
1028
991
  readonly flags?: $CollectionFilter<$StringFilter>;
1029
992
  readonly fromRdfType?: $MaybeFilter<$IriFilter>;
1030
993
  readonly hasValues?: $CollectionFilter<$TermFilter>;
1031
- readonly identifierMintingStrategy?: $MaybeFilter<$IriFilter>;
1032
994
  readonly ignoredProperties?: $MaybeFilter<$CollectionFilter<$IriFilter>>;
1033
995
  readonly in_?: $MaybeFilter<$CollectionFilter<$TermFilter>>;
1034
996
  readonly isDefinedBy?: $MaybeFilter<$IdentifierFilter>;
@@ -1056,7 +1018,6 @@ export declare namespace NodeShape {
1056
1018
  readonly tsFeatureExcludes?: $CollectionFilter<$IriFilter>;
1057
1019
  readonly tsFeatureIncludes?: $CollectionFilter<$IriFilter>;
1058
1020
  readonly tsImports?: $CollectionFilter<$StringFilter>;
1059
- readonly tsObjectDeclarationType?: $MaybeFilter<$IriFilter>;
1060
1021
  readonly types?: $CollectionFilter<$IriFilter>;
1061
1022
  readonly xone?: $MaybeFilter<$CollectionFilter<$IdentifierFilter>>;
1062
1023
  };
@@ -1067,7 +1028,6 @@ export declare namespace NodeShape {
1067
1028
  const $propertiesFromRdfResource: $PropertiesFromRdfResourceFunction<{
1068
1029
  $identifier: BlankNode | NamedNode;
1069
1030
  $type: "NodeShape";
1070
- abstract: Maybe<boolean>;
1071
1031
  and: Maybe<readonly (BlankNode | NamedNode)[]>;
1072
1032
  classes: readonly NamedNode[];
1073
1033
  closed: Maybe<boolean>;
@@ -1079,7 +1039,6 @@ export declare namespace NodeShape {
1079
1039
  flags: readonly string[];
1080
1040
  fromRdfType: Maybe<NamedNode>;
1081
1041
  hasValues: readonly (NamedNode | Literal)[];
1082
- identifierMintingStrategy: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256" | "http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">>;
1083
1042
  ignoredProperties: Maybe<readonly NamedNode[]>;
1084
1043
  in_: Maybe<readonly (NamedNode | Literal)[]>;
1085
1044
  isDefinedBy: Maybe<BlankNode | NamedNode>;
@@ -1107,7 +1066,6 @@ export declare namespace NodeShape {
1107
1066
  tsFeatureExcludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
1108
1067
  tsFeatureIncludes: readonly NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All" | "http://purl.org/shaclmate/ontology#_TsFeature_Create" | "http://purl.org/shaclmate/ontology#_TsFeatures_Default" | "http://purl.org/shaclmate/ontology#_TsFeature_Equals" | "http://purl.org/shaclmate/ontology#_TsFeature_Graphql" | "http://purl.org/shaclmate/ontology#_TsFeature_Hash" | "http://purl.org/shaclmate/ontology#_TsFeature_Json" | "http://purl.org/shaclmate/ontology#_TsFeatures_None" | "http://purl.org/shaclmate/ontology#_TsFeature_Rdf" | "http://purl.org/shaclmate/ontology#_TsFeature_Sparql">[];
1109
1068
  tsImports: readonly string[];
1110
- tsObjectDeclarationType: Maybe<NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class" | "http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">>;
1111
1069
  types: readonly NamedNode[];
1112
1070
  xone: Maybe<readonly (BlankNode | NamedNode)[]>;
1113
1071
  }>;
@@ -1126,16 +1084,6 @@ export declare namespace NodeShape {
1126
1084
  ownValues: string[];
1127
1085
  };
1128
1086
  };
1129
- readonly abstract: {
1130
- readonly kind: "Shacl";
1131
- readonly type: () => {
1132
- kind: "Maybe";
1133
- item: () => {
1134
- kind: "Boolean";
1135
- };
1136
- };
1137
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
1138
- };
1139
1087
  readonly and: {
1140
1088
  readonly kind: "Shacl";
1141
1089
  readonly type: () => {
@@ -1249,17 +1197,6 @@ export declare namespace NodeShape {
1249
1197
  };
1250
1198
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1251
1199
  };
1252
- readonly identifierMintingStrategy: {
1253
- readonly kind: "Shacl";
1254
- readonly type: () => {
1255
- kind: "Maybe";
1256
- item: () => {
1257
- kind: "Iri";
1258
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">)[];
1259
- };
1260
- };
1261
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
1262
- };
1263
1200
  readonly ignoredProperties: {
1264
1201
  readonly kind: "Shacl";
1265
1202
  readonly type: () => {
@@ -1545,17 +1482,6 @@ export declare namespace NodeShape {
1545
1482
  };
1546
1483
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
1547
1484
  };
1548
- readonly tsObjectDeclarationType: {
1549
- readonly kind: "Shacl";
1550
- readonly type: () => {
1551
- kind: "Maybe";
1552
- item: () => {
1553
- kind: "Iri";
1554
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
1555
- };
1556
- };
1557
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
1558
- };
1559
1485
  readonly types: {
1560
1486
  readonly kind: "Shacl";
1561
1487
  readonly type: () => {
@@ -1623,16 +1549,6 @@ export declare namespace Shape {
1623
1549
  ownValues: string[];
1624
1550
  };
1625
1551
  };
1626
- readonly abstract: {
1627
- readonly kind: "Shacl";
1628
- readonly type: () => {
1629
- kind: "Maybe";
1630
- item: () => {
1631
- kind: "Boolean";
1632
- };
1633
- };
1634
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
1635
- };
1636
1552
  readonly and: {
1637
1553
  readonly kind: "Shacl";
1638
1554
  readonly type: () => {
@@ -1746,17 +1662,6 @@ export declare namespace Shape {
1746
1662
  };
1747
1663
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1748
1664
  };
1749
- readonly identifierMintingStrategy: {
1750
- readonly kind: "Shacl";
1751
- readonly type: () => {
1752
- kind: "Maybe";
1753
- item: () => {
1754
- kind: "Iri";
1755
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">)[];
1756
- };
1757
- };
1758
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
1759
- };
1760
1665
  readonly ignoredProperties: {
1761
1666
  readonly kind: "Shacl";
1762
1667
  readonly type: () => {
@@ -2042,17 +1947,6 @@ export declare namespace Shape {
2042
1947
  };
2043
1948
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
2044
1949
  };
2045
- readonly tsObjectDeclarationType: {
2046
- readonly kind: "Shacl";
2047
- readonly type: () => {
2048
- kind: "Maybe";
2049
- item: () => {
2050
- kind: "Iri";
2051
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
2052
- };
2053
- };
2054
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
2055
- };
2056
1950
  readonly types: {
2057
1951
  readonly kind: "Shacl";
2058
1952
  readonly type: () => {
@@ -2455,17 +2349,6 @@ export declare namespace Shape {
2455
2349
  };
2456
2350
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
2457
2351
  };
2458
- readonly visibility: {
2459
- readonly kind: "Shacl";
2460
- readonly type: () => {
2461
- kind: "Maybe";
2462
- item: () => {
2463
- kind: "Iri";
2464
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Protected"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Public">)[];
2465
- };
2466
- };
2467
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
2468
- };
2469
2352
  readonly xone: {
2470
2353
  readonly kind: "Shacl";
2471
2354
  readonly type: () => {
@@ -2822,16 +2705,6 @@ export declare namespace $Object {
2822
2705
  ownValues: string[];
2823
2706
  };
2824
2707
  };
2825
- readonly abstract: {
2826
- readonly kind: "Shacl";
2827
- readonly type: () => {
2828
- kind: "Maybe";
2829
- item: () => {
2830
- kind: "Boolean";
2831
- };
2832
- };
2833
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
2834
- };
2835
2708
  readonly and: {
2836
2709
  readonly kind: "Shacl";
2837
2710
  readonly type: () => {
@@ -2945,17 +2818,6 @@ export declare namespace $Object {
2945
2818
  };
2946
2819
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2947
2820
  };
2948
- readonly identifierMintingStrategy: {
2949
- readonly kind: "Shacl";
2950
- readonly type: () => {
2951
- kind: "Maybe";
2952
- item: () => {
2953
- kind: "Iri";
2954
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">)[];
2955
- };
2956
- };
2957
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
2958
- };
2959
2821
  readonly ignoredProperties: {
2960
2822
  readonly kind: "Shacl";
2961
2823
  readonly type: () => {
@@ -3241,17 +3103,6 @@ export declare namespace $Object {
3241
3103
  };
3242
3104
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
3243
3105
  };
3244
- readonly tsObjectDeclarationType: {
3245
- readonly kind: "Shacl";
3246
- readonly type: () => {
3247
- kind: "Maybe";
3248
- item: () => {
3249
- kind: "Iri";
3250
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
3251
- };
3252
- };
3253
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
3254
- };
3255
3106
  readonly types: {
3256
3107
  readonly kind: "Shacl";
3257
3108
  readonly type: () => {
@@ -3347,17 +3198,6 @@ export declare namespace $Object {
3347
3198
  };
3348
3199
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
3349
3200
  };
3350
- readonly tsObjectDeclarationType: {
3351
- readonly kind: "Shacl";
3352
- readonly type: () => {
3353
- kind: "Maybe";
3354
- item: () => {
3355
- kind: "Iri";
3356
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
3357
- };
3358
- };
3359
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
3360
- };
3361
3201
  };
3362
3202
  };
3363
3203
  };
@@ -3777,17 +3617,6 @@ export declare namespace $Object {
3777
3617
  };
3778
3618
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
3779
3619
  };
3780
- readonly visibility: {
3781
- readonly kind: "Shacl";
3782
- readonly type: () => {
3783
- kind: "Maybe";
3784
- item: () => {
3785
- kind: "Iri";
3786
- in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Protected"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Public">)[];
3787
- };
3788
- };
3789
- readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
3790
- };
3791
3620
  readonly xone: {
3792
3621
  readonly kind: "Shacl";
3793
3622
  readonly type: () => {
@@ -3967,14 +3796,14 @@ export declare class $RdfjsDatasetObjectSet implements $ObjectSet {
3967
3796
  objects(query?: $ObjectSet.Query<$Object.$Filter, $Object.$Identifier>): Promise<Either<Error, readonly $Object[]>>;
3968
3797
  objectsSync(query?: $ObjectSet.Query<$Object.$Filter, $Object.$Identifier>): Either<Error, readonly $Object[]>;
3969
3798
  protected $objectsSync<ObjectT extends {
3970
- readonly $identifier: ObjectIdentifierT;
3799
+ readonly $identifier: () => ObjectIdentifierT;
3971
3800
  }, ObjectFilterT, ObjectIdentifierT extends BlankNode | NamedNode>(namedObjectType: {
3972
3801
  $filter: (filter: ObjectFilterT, value: ObjectT) => boolean;
3973
3802
  $fromRdfResource: $FromRdfResourceFunction<ObjectT>;
3974
3803
  $fromRdfTypes: readonly NamedNode[];
3975
3804
  }, query?: $ObjectSet.Query<ObjectFilterT, ObjectIdentifierT>): Either<Error, readonly ObjectT[]>;
3976
3805
  protected $objectUnionsSync<ObjectT extends {
3977
- readonly $identifier: ObjectIdentifierT;
3806
+ readonly $identifier: () => ObjectIdentifierT;
3978
3807
  }, ObjectFilterT, ObjectIdentifierT extends BlankNode | NamedNode>(namedObjectTypes: readonly {
3979
3808
  $filter: (filter: ObjectFilterT, value: ObjectT) => boolean;
3980
3809
  $fromRdfResource: $FromRdfResourceFunction<ObjectT>;