@shaclmate/compiler 4.0.18 → 4.0.20

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 +4 -1
  2. package/dist/Compiler.js +4 -1
  3. package/dist/ShapesGraphToAstTransformer.d.ts +4 -1
  4. package/dist/ShapesGraphToAstTransformer.js +9 -6
  5. package/dist/_ShapesGraphToAstTransformer/transformPropertyShapeToAstObjectTypeProperty.js +1 -1
  6. package/dist/_ShapesGraphToAstTransformer/transformShapeToAstListType.js +1 -1
  7. package/dist/ast/AbstractCollectionType.d.ts +10 -0
  8. package/dist/ast/AbstractCollectionType.js +6 -0
  9. package/dist/ast/AbstractCompoundType.d.ts +0 -1
  10. package/dist/ast/AbstractCompoundType.js +0 -3
  11. package/dist/ast/AbstractContainerType.d.ts +9 -1
  12. package/dist/ast/AbstractContainerType.js +5 -2
  13. package/dist/ast/AbstractLazyObjectType.d.ts +94 -1
  14. package/dist/ast/AbstractLazyObjectType.js +6 -2
  15. package/dist/ast/AbstractTermType.d.ts +11 -1
  16. package/dist/ast/AbstractTermType.js +7 -2
  17. package/dist/ast/AbstractType.d.ts +13 -1
  18. package/dist/ast/AbstractType.js +13 -0
  19. package/dist/ast/BlankNodeType.d.ts +1 -1
  20. package/dist/ast/DefaultValueType.d.ts +10 -0
  21. package/dist/ast/DefaultValueType.js +6 -0
  22. package/dist/ast/IdentifierType.d.ts +1 -1
  23. package/dist/ast/LiteralType.d.ts +17 -1
  24. package/dist/ast/LiteralType.js +10 -2
  25. package/dist/ast/ObjectCompoundType.js +1 -2
  26. package/dist/ast/ObjectType.d.ts +44 -1
  27. package/dist/ast/ObjectType.js +33 -10
  28. package/dist/ast/SetType.d.ts +11 -0
  29. package/dist/ast/SetType.js +6 -0
  30. package/dist/ast/UnionType.d.ts +12 -0
  31. package/dist/ast/UnionType.js +11 -0
  32. package/dist/generators/AstJsonGenerator.d.ts +6 -0
  33. package/dist/generators/AstJsonGenerator.js +11 -0
  34. package/dist/generators/Cx2Generator.d.ts +10 -0
  35. package/dist/generators/Cx2Generator.js +140 -0
  36. package/dist/generators/LabeledPropertyGraph.d.ts +42 -0
  37. package/dist/generators/LabeledPropertyGraph.js +2 -0
  38. package/dist/generators/index.d.ts +4 -2
  39. package/dist/generators/index.js +4 -2
  40. package/dist/generators/transformAstToLabeledPropertyGraph.d.ts +4 -0
  41. package/dist/generators/transformAstToLabeledPropertyGraph.js +75 -0
  42. package/dist/generators/ts/AbstractDateType.js +1 -1
  43. package/dist/generators/ts/AbstractIdentifierType.d.ts +2 -2
  44. package/dist/generators/ts/AbstractIdentifierType.js +2 -5
  45. package/dist/generators/ts/AbstractNamedUnionType.js +1 -1
  46. package/dist/generators/ts/AbstractNumericType.js +1 -1
  47. package/dist/generators/ts/AbstractTermType.js +2 -2
  48. package/dist/generators/ts/AbstractType.d.ts +17 -14
  49. package/dist/generators/ts/AbstractType.js +3 -1
  50. package/dist/generators/ts/BlankNodeType.d.ts +2 -2
  51. package/dist/generators/ts/BlankNodeType.js +1 -1
  52. package/dist/generators/ts/BooleanType.js +1 -1
  53. package/dist/generators/ts/DefaultValueType.js +1 -1
  54. package/dist/generators/ts/IdentifierType.d.ts +2 -2
  55. package/dist/generators/ts/IdentifierType.js +1 -1
  56. package/dist/generators/ts/IriType.d.ts +1 -1
  57. package/dist/generators/ts/IriType.js +8 -13
  58. package/dist/generators/ts/LazyObjectOptionType.d.ts +1 -0
  59. package/dist/generators/ts/LazyObjectOptionType.js +1 -1
  60. package/dist/generators/ts/LazyObjectType.js +1 -1
  61. package/dist/generators/ts/ListType.js +5 -5
  62. package/dist/generators/ts/NamedObjectUnionType.js +4 -1
  63. package/dist/generators/ts/SetType.js +1 -1
  64. package/dist/generators/ts/StringType.js +1 -1
  65. package/dist/generators/ts/TermType.js +3 -1
  66. package/dist/generators/ts/TsGenerator.d.ts +5 -0
  67. package/dist/generators/ts/TsGenerator.js +7 -1
  68. package/dist/generators/ts/TypeFactory.d.ts +5 -0
  69. package/dist/generators/ts/TypeFactory.js +35 -5
  70. package/dist/generators/ts/ZodGenerator.d.ts +4 -0
  71. package/dist/generators/ts/ZodGenerator.js +4 -1
  72. package/dist/generators/ts/_NamedObjectType/AbstractProperty.d.ts +4 -1
  73. package/dist/generators/ts/_NamedObjectType/AbstractProperty.js +3 -1
  74. package/dist/generators/ts/_NamedObjectType/IdentifierProperty.js +6 -5
  75. package/dist/generators/ts/_NamedObjectType/NamedObjectType_focusSparqlConstructTriplesFunctionDeclaration.js +2 -2
  76. package/dist/generators/ts/_NamedObjectType/NamedObjectType_focusSparqlWherePatternsFunctionDeclaration.js +2 -2
  77. package/dist/generators/ts/_NamedObjectType/NamedObjectType_fromRdfTypeVariableStatement.js +1 -1
  78. package/dist/generators/ts/_NamedObjectType/NamedObjectType_propertiesFromRdfResourceFunctionDeclaration.js +2 -2
  79. package/dist/generators/ts/_NamedObjectType/NamedObjectType_toRdfResourceFunctionOrMethodDeclaration.js +1 -1
  80. package/dist/generators/ts/_NamedObjectType/ShaclProperty.d.ts +1 -0
  81. package/dist/generators/ts/_NamedObjectType/ShaclProperty.js +16 -16
  82. package/dist/generators/ts/_NamedObjectType/identifierTypeDeclarations.js +6 -2
  83. package/dist/generators/ts/_snippets/parseIri.d.ts +2 -0
  84. package/dist/generators/ts/_snippets/parseIri.js +12 -0
  85. package/dist/generators/ts/_snippets/snippets_listSparqlWherePatterns.js +7 -5
  86. package/dist/generators/ts/_snippets/snippets_parseBlankNode.d.ts +2 -0
  87. package/dist/generators/ts/_snippets/snippets_parseBlankNode.js +12 -0
  88. package/dist/generators/ts/_snippets/snippets_parseIdentifier.d.ts +2 -0
  89. package/dist/generators/ts/_snippets/snippets_parseIdentifier.js +6 -0
  90. package/dist/generators/ts/graphqlSchemaVariableStatement.js +3 -3
  91. package/dist/generators/ts/imports.d.ts +2 -0
  92. package/dist/generators/ts/imports.js +3 -1
  93. package/dist/generators/ts/rdfjsTermExpression.d.ts +4 -1
  94. package/dist/generators/ts/rdfjsTermExpression.js +2 -3
  95. package/dist/generators/ts/snippets.d.ts +3 -2
  96. package/dist/generators/ts/snippets.js +6 -4
  97. package/dist/generators/ts/synthesizeUberObjectUnionType.d.ts +2 -0
  98. package/dist/generators/ts/synthesizeUberObjectUnionType.js +4 -0
  99. package/dist/index.d.ts +1 -4
  100. package/dist/index.js +1 -3
  101. package/dist/input/ShapesGraph.d.ts +4 -1
  102. package/dist/input/ShapesGraph.js +3 -2
  103. package/dist/input/generated.d.ts +323 -323
  104. package/dist/input/generated.js +19 -20
  105. package/package.json +6 -9
  106. package/dist/generators/json/AstJsonGenerator.d.ts +0 -6
  107. package/dist/generators/json/AstJsonGenerator.js +0 -144
  108. package/dist/generators/json/index.d.ts +0 -2
  109. package/dist/generators/json/index.js +0 -2
  110. package/dist/generators/ts/_snippets/snippets_blankNodeFromString.d.ts +0 -2
  111. package/dist/generators/ts/_snippets/snippets_blankNodeFromString.js +0 -11
  112. package/dist/generators/ts/_snippets/snippets_identifierFromString.d.ts +0 -2
  113. package/dist/generators/ts/_snippets/snippets_identifierFromString.js +0 -8
  114. package/dist/generators/ts/index.d.ts +0 -2
  115. package/dist/generators/ts/index.js +0 -2
  116. package/dist/logger.d.ts +0 -2
  117. package/dist/logger.js +0 -8
@@ -1,5 +1,6 @@
1
1
  import type { BlankNode, DatasetCore, Literal, NamedNode, Quad_Graph, Variable } from "@rdfjs/types";
2
2
  import { PropertyPath as RdfjsResourcePropertyPath, Resource, ResourceSet } from "@rdfx/resource";
3
+ import { NTriplesTerm } from "@rdfx/string";
3
4
  import { Either, Maybe } from "purify-ts";
4
5
  interface $BooleanFilter {
5
6
  readonly value?: boolean;
@@ -28,7 +29,6 @@ interface $IdentifierFilter {
28
29
  readonly in?: readonly (BlankNode | NamedNode)[];
29
30
  readonly type?: "BlankNode" | "NamedNode";
30
31
  }
31
- declare function $identifierFromString(identifier: string): Either<Error, BlankNode | NamedNode>;
32
32
  interface $IriFilter {
33
33
  readonly in?: readonly NamedNode[];
34
34
  }
@@ -169,8 +169,8 @@ export declare namespace PropertyShape {
169
169
  }): PropertyShape;
170
170
  type $Identifier = BlankNode | NamedNode;
171
171
  namespace $Identifier {
172
- const fromString: typeof $identifierFromString;
173
- const toString: typeof import("@rdfx/resource/dist/Identifier.js").Identifier.toString;
172
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
173
+ const stringify: typeof NTriplesTerm.stringify;
174
174
  }
175
175
  function $filter(filter: PropertyShape.$Filter, value: PropertyShape): boolean;
176
176
  type $Filter = {
@@ -282,7 +282,7 @@ export declare namespace PropertyShape {
282
282
  };
283
283
  };
284
284
  };
285
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#and">;
285
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
286
286
  };
287
287
  readonly classes: {
288
288
  readonly kind: "Shacl";
@@ -292,7 +292,7 @@ export declare namespace PropertyShape {
292
292
  kind: "Iri";
293
293
  };
294
294
  };
295
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#class">;
295
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
296
296
  };
297
297
  readonly comment: {
298
298
  readonly kind: "Shacl";
@@ -302,7 +302,7 @@ export declare namespace PropertyShape {
302
302
  kind: "String";
303
303
  };
304
304
  };
305
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
305
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
306
306
  };
307
307
  readonly datatype: {
308
308
  readonly kind: "Shacl";
@@ -312,7 +312,7 @@ export declare namespace PropertyShape {
312
312
  kind: "Iri";
313
313
  };
314
314
  };
315
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#datatype">;
315
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
316
316
  };
317
317
  readonly deactivated: {
318
318
  readonly kind: "Shacl";
@@ -322,7 +322,7 @@ export declare namespace PropertyShape {
322
322
  kind: "Boolean";
323
323
  };
324
324
  };
325
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
325
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
326
326
  };
327
327
  readonly defaultValue: {
328
328
  readonly kind: "Shacl";
@@ -332,7 +332,7 @@ export declare namespace PropertyShape {
332
332
  kind: "Term";
333
333
  };
334
334
  };
335
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
335
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
336
336
  };
337
337
  readonly description: {
338
338
  readonly kind: "Shacl";
@@ -342,7 +342,7 @@ export declare namespace PropertyShape {
342
342
  kind: "String";
343
343
  };
344
344
  };
345
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#description">;
345
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
346
346
  };
347
347
  readonly flags: {
348
348
  readonly kind: "Shacl";
@@ -352,7 +352,7 @@ export declare namespace PropertyShape {
352
352
  kind: "String";
353
353
  };
354
354
  };
355
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#flags">;
355
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
356
356
  };
357
357
  readonly groups: {
358
358
  readonly kind: "Shacl";
@@ -362,7 +362,7 @@ export declare namespace PropertyShape {
362
362
  kind: "Identifier";
363
363
  };
364
364
  };
365
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#group">;
365
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
366
366
  };
367
367
  readonly hasValues: {
368
368
  readonly kind: "Shacl";
@@ -372,7 +372,7 @@ export declare namespace PropertyShape {
372
372
  kind: "Term";
373
373
  };
374
374
  };
375
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
375
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
376
376
  };
377
377
  readonly in_: {
378
378
  readonly kind: "Shacl";
@@ -385,7 +385,7 @@ export declare namespace PropertyShape {
385
385
  };
386
386
  };
387
387
  };
388
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#in">;
388
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
389
389
  };
390
390
  readonly isDefinedBy: {
391
391
  readonly kind: "Shacl";
@@ -395,7 +395,7 @@ export declare namespace PropertyShape {
395
395
  kind: "Identifier";
396
396
  };
397
397
  };
398
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
398
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
399
399
  };
400
400
  readonly label: {
401
401
  readonly kind: "Shacl";
@@ -405,7 +405,7 @@ export declare namespace PropertyShape {
405
405
  kind: "String";
406
406
  };
407
407
  };
408
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
408
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
409
409
  };
410
410
  readonly languageIn: {
411
411
  readonly kind: "Shacl";
@@ -418,7 +418,7 @@ export declare namespace PropertyShape {
418
418
  };
419
419
  };
420
420
  };
421
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
421
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
422
422
  };
423
423
  readonly maxCount: {
424
424
  readonly kind: "Shacl";
@@ -428,7 +428,7 @@ export declare namespace PropertyShape {
428
428
  kind: "Int";
429
429
  };
430
430
  };
431
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
431
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
432
432
  };
433
433
  readonly maxExclusive: {
434
434
  readonly kind: "Shacl";
@@ -438,7 +438,7 @@ export declare namespace PropertyShape {
438
438
  kind: "Literal";
439
439
  };
440
440
  };
441
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
441
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
442
442
  };
443
443
  readonly maxInclusive: {
444
444
  readonly kind: "Shacl";
@@ -448,7 +448,7 @@ export declare namespace PropertyShape {
448
448
  kind: "Literal";
449
449
  };
450
450
  };
451
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
451
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
452
452
  };
453
453
  readonly maxLength: {
454
454
  readonly kind: "Shacl";
@@ -458,7 +458,7 @@ export declare namespace PropertyShape {
458
458
  kind: "Int";
459
459
  };
460
460
  };
461
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
461
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
462
462
  };
463
463
  readonly minCount: {
464
464
  readonly kind: "Shacl";
@@ -468,7 +468,7 @@ export declare namespace PropertyShape {
468
468
  kind: "Int";
469
469
  };
470
470
  };
471
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minCount">;
471
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
472
472
  };
473
473
  readonly minExclusive: {
474
474
  readonly kind: "Shacl";
@@ -478,7 +478,7 @@ export declare namespace PropertyShape {
478
478
  kind: "Literal";
479
479
  };
480
480
  };
481
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
481
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
482
482
  };
483
483
  readonly minInclusive: {
484
484
  readonly kind: "Shacl";
@@ -488,7 +488,7 @@ export declare namespace PropertyShape {
488
488
  kind: "Literal";
489
489
  };
490
490
  };
491
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
491
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
492
492
  };
493
493
  readonly minLength: {
494
494
  readonly kind: "Shacl";
@@ -498,7 +498,7 @@ export declare namespace PropertyShape {
498
498
  kind: "Int";
499
499
  };
500
500
  };
501
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minLength">;
501
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
502
502
  };
503
503
  readonly mutable: {
504
504
  readonly kind: "Shacl";
@@ -508,7 +508,7 @@ export declare namespace PropertyShape {
508
508
  kind: "Boolean";
509
509
  };
510
510
  };
511
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
511
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
512
512
  };
513
513
  readonly name: {
514
514
  readonly kind: "Shacl";
@@ -518,7 +518,7 @@ export declare namespace PropertyShape {
518
518
  kind: "String";
519
519
  };
520
520
  };
521
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#name">;
521
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
522
522
  };
523
523
  readonly nodeKind: {
524
524
  readonly kind: "Shacl";
@@ -526,10 +526,10 @@ export declare namespace PropertyShape {
526
526
  kind: "Maybe";
527
527
  item: () => {
528
528
  kind: "Iri";
529
- in: (NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#IRI"> | NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
529
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
530
530
  };
531
531
  };
532
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
532
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
533
533
  };
534
534
  readonly nodes: {
535
535
  readonly kind: "Shacl";
@@ -539,7 +539,7 @@ export declare namespace PropertyShape {
539
539
  kind: "Identifier";
540
540
  };
541
541
  };
542
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#node">;
542
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
543
543
  };
544
544
  readonly not: {
545
545
  readonly kind: "Shacl";
@@ -549,7 +549,7 @@ export declare namespace PropertyShape {
549
549
  kind: "Identifier";
550
550
  };
551
551
  };
552
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#not">;
552
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
553
553
  };
554
554
  readonly or: {
555
555
  readonly kind: "Shacl";
@@ -562,7 +562,7 @@ export declare namespace PropertyShape {
562
562
  };
563
563
  };
564
564
  };
565
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#or">;
565
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
566
566
  };
567
567
  readonly order: {
568
568
  readonly kind: "Shacl";
@@ -572,12 +572,12 @@ export declare namespace PropertyShape {
572
572
  kind: "Float";
573
573
  };
574
574
  };
575
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#order">;
575
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
576
576
  };
577
577
  readonly path: {
578
578
  readonly kind: "Shacl";
579
579
  readonly type: () => object;
580
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#path">;
580
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
581
581
  };
582
582
  readonly patterns: {
583
583
  readonly kind: "Shacl";
@@ -587,7 +587,7 @@ export declare namespace PropertyShape {
587
587
  kind: "String";
588
588
  };
589
589
  };
590
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#pattern">;
590
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
591
591
  };
592
592
  readonly resolve: {
593
593
  readonly kind: "Shacl";
@@ -597,7 +597,7 @@ export declare namespace PropertyShape {
597
597
  kind: "Identifier";
598
598
  };
599
599
  };
600
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
600
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
601
601
  };
602
602
  readonly shaclmateName: {
603
603
  readonly kind: "Shacl";
@@ -607,7 +607,7 @@ export declare namespace PropertyShape {
607
607
  kind: "String";
608
608
  };
609
609
  };
610
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#name">;
610
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
611
611
  };
612
612
  readonly uniqueLang: {
613
613
  readonly kind: "Shacl";
@@ -617,7 +617,7 @@ export declare namespace PropertyShape {
617
617
  kind: "Boolean";
618
618
  };
619
619
  };
620
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
620
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
621
621
  };
622
622
  readonly visibility: {
623
623
  readonly kind: "Shacl";
@@ -625,10 +625,10 @@ export declare namespace PropertyShape {
625
625
  kind: "Maybe";
626
626
  item: () => {
627
627
  kind: "Iri";
628
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private"> | NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Protected"> | NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Public">)[];
628
+ 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">)[];
629
629
  };
630
630
  };
631
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
631
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
632
632
  };
633
633
  readonly xone: {
634
634
  readonly kind: "Shacl";
@@ -641,7 +641,7 @@ export declare namespace PropertyShape {
641
641
  };
642
642
  };
643
643
  };
644
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#xone">;
644
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
645
645
  };
646
646
  };
647
647
  };
@@ -661,8 +661,8 @@ export declare namespace PropertyGroup {
661
661
  }): PropertyGroup;
662
662
  type $Identifier = BlankNode | NamedNode;
663
663
  namespace $Identifier {
664
- const fromString: typeof $identifierFromString;
665
- const toString: typeof import("@rdfx/resource/dist/Identifier.js").Identifier.toString;
664
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
665
+ const stringify: typeof NTriplesTerm.stringify;
666
666
  }
667
667
  function $filter(filter: PropertyGroup.$Filter, value: PropertyGroup): boolean;
668
668
  type $Filter = {
@@ -703,7 +703,7 @@ export declare namespace PropertyGroup {
703
703
  kind: "String";
704
704
  };
705
705
  };
706
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
706
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
707
707
  };
708
708
  readonly label: {
709
709
  readonly kind: "Shacl";
@@ -713,7 +713,7 @@ export declare namespace PropertyGroup {
713
713
  kind: "String";
714
714
  };
715
715
  };
716
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
716
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
717
717
  };
718
718
  };
719
719
  };
@@ -741,8 +741,8 @@ export declare namespace Ontology {
741
741
  }): Ontology;
742
742
  type $Identifier = BlankNode | NamedNode;
743
743
  namespace $Identifier {
744
- const fromString: typeof $identifierFromString;
745
- const toString: typeof import("@rdfx/resource/dist/Identifier.js").Identifier.toString;
744
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
745
+ const stringify: typeof NTriplesTerm.stringify;
746
746
  }
747
747
  function $filter(filter: Ontology.$Filter, value: Ontology): boolean;
748
748
  type $Filter = {
@@ -791,7 +791,7 @@ export declare namespace Ontology {
791
791
  kind: "String";
792
792
  };
793
793
  };
794
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
794
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
795
795
  };
796
796
  readonly label: {
797
797
  readonly kind: "Shacl";
@@ -801,7 +801,7 @@ export declare namespace Ontology {
801
801
  kind: "String";
802
802
  };
803
803
  };
804
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
804
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
805
805
  };
806
806
  readonly tsFeatureExcludes: {
807
807
  readonly kind: "Shacl";
@@ -809,10 +809,10 @@ export declare namespace Ontology {
809
809
  kind: "Set";
810
810
  item: () => {
811
811
  kind: "Iri";
812
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
812
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
813
813
  };
814
814
  };
815
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
815
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
816
816
  };
817
817
  readonly tsFeatureIncludes: {
818
818
  readonly kind: "Shacl";
@@ -820,10 +820,10 @@ export declare namespace Ontology {
820
820
  kind: "Set";
821
821
  item: () => {
822
822
  kind: "Iri";
823
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
823
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
824
824
  };
825
825
  };
826
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
826
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
827
827
  };
828
828
  readonly tsImports: {
829
829
  readonly kind: "Shacl";
@@ -833,7 +833,7 @@ export declare namespace Ontology {
833
833
  kind: "String";
834
834
  };
835
835
  };
836
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
836
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
837
837
  };
838
838
  readonly tsObjectDeclarationType: {
839
839
  readonly kind: "Shacl";
@@ -841,10 +841,10 @@ export declare namespace Ontology {
841
841
  kind: "Maybe";
842
842
  item: () => {
843
843
  kind: "Iri";
844
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
844
+ 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">)[];
845
845
  };
846
846
  };
847
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
847
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
848
848
  };
849
849
  };
850
850
  };
@@ -946,8 +946,8 @@ export declare namespace NodeShape {
946
946
  }): NodeShape;
947
947
  type $Identifier = BlankNode | NamedNode;
948
948
  namespace $Identifier {
949
- const fromString: typeof $identifierFromString;
950
- const toString: typeof import("@rdfx/resource/dist/Identifier.js").Identifier.toString;
949
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
950
+ const stringify: typeof NTriplesTerm.stringify;
951
951
  }
952
952
  function $filter(filter: NodeShape.$Filter, value: NodeShape): boolean;
953
953
  type $Filter = {
@@ -1070,7 +1070,7 @@ export declare namespace NodeShape {
1070
1070
  kind: "Boolean";
1071
1071
  };
1072
1072
  };
1073
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
1073
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
1074
1074
  };
1075
1075
  readonly and: {
1076
1076
  readonly kind: "Shacl";
@@ -1083,7 +1083,7 @@ export declare namespace NodeShape {
1083
1083
  };
1084
1084
  };
1085
1085
  };
1086
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#and">;
1086
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
1087
1087
  };
1088
1088
  readonly classes: {
1089
1089
  readonly kind: "Shacl";
@@ -1093,7 +1093,7 @@ export declare namespace NodeShape {
1093
1093
  kind: "Iri";
1094
1094
  };
1095
1095
  };
1096
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#class">;
1096
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
1097
1097
  };
1098
1098
  readonly closed: {
1099
1099
  readonly kind: "Shacl";
@@ -1103,7 +1103,7 @@ export declare namespace NodeShape {
1103
1103
  kind: "Boolean";
1104
1104
  };
1105
1105
  };
1106
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#closed">;
1106
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
1107
1107
  };
1108
1108
  readonly comment: {
1109
1109
  readonly kind: "Shacl";
@@ -1113,7 +1113,7 @@ export declare namespace NodeShape {
1113
1113
  kind: "String";
1114
1114
  };
1115
1115
  };
1116
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
1116
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
1117
1117
  };
1118
1118
  readonly datatype: {
1119
1119
  readonly kind: "Shacl";
@@ -1123,7 +1123,7 @@ export declare namespace NodeShape {
1123
1123
  kind: "Iri";
1124
1124
  };
1125
1125
  };
1126
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#datatype">;
1126
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
1127
1127
  };
1128
1128
  readonly deactivated: {
1129
1129
  readonly kind: "Shacl";
@@ -1133,7 +1133,7 @@ export declare namespace NodeShape {
1133
1133
  kind: "Boolean";
1134
1134
  };
1135
1135
  };
1136
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
1136
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
1137
1137
  };
1138
1138
  readonly discriminantValue: {
1139
1139
  readonly kind: "Shacl";
@@ -1143,7 +1143,7 @@ export declare namespace NodeShape {
1143
1143
  kind: "String";
1144
1144
  };
1145
1145
  };
1146
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
1146
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
1147
1147
  };
1148
1148
  readonly extern: {
1149
1149
  readonly kind: "Shacl";
@@ -1153,7 +1153,7 @@ export declare namespace NodeShape {
1153
1153
  kind: "Boolean";
1154
1154
  };
1155
1155
  };
1156
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#extern">;
1156
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
1157
1157
  };
1158
1158
  readonly flags: {
1159
1159
  readonly kind: "Shacl";
@@ -1163,7 +1163,7 @@ export declare namespace NodeShape {
1163
1163
  kind: "String";
1164
1164
  };
1165
1165
  };
1166
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#flags">;
1166
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
1167
1167
  };
1168
1168
  readonly fromRdfType: {
1169
1169
  readonly kind: "Shacl";
@@ -1173,7 +1173,7 @@ export declare namespace NodeShape {
1173
1173
  kind: "Iri";
1174
1174
  };
1175
1175
  };
1176
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
1176
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
1177
1177
  };
1178
1178
  readonly hasValues: {
1179
1179
  readonly kind: "Shacl";
@@ -1183,7 +1183,7 @@ export declare namespace NodeShape {
1183
1183
  kind: "Term";
1184
1184
  };
1185
1185
  };
1186
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1186
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1187
1187
  };
1188
1188
  readonly identifierMintingStrategy: {
1189
1189
  readonly kind: "Shacl";
@@ -1191,10 +1191,10 @@ export declare namespace NodeShape {
1191
1191
  kind: "Maybe";
1192
1192
  item: () => {
1193
1193
  kind: "Iri";
1194
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode"> | NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256"> | NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">)[];
1194
+ 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">)[];
1195
1195
  };
1196
1196
  };
1197
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
1197
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
1198
1198
  };
1199
1199
  readonly ignoredProperties: {
1200
1200
  readonly kind: "Shacl";
@@ -1207,7 +1207,7 @@ export declare namespace NodeShape {
1207
1207
  };
1208
1208
  };
1209
1209
  };
1210
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
1210
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
1211
1211
  };
1212
1212
  readonly in_: {
1213
1213
  readonly kind: "Shacl";
@@ -1220,7 +1220,7 @@ export declare namespace NodeShape {
1220
1220
  };
1221
1221
  };
1222
1222
  };
1223
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#in">;
1223
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
1224
1224
  };
1225
1225
  readonly isDefinedBy: {
1226
1226
  readonly kind: "Shacl";
@@ -1230,7 +1230,7 @@ export declare namespace NodeShape {
1230
1230
  kind: "Identifier";
1231
1231
  };
1232
1232
  };
1233
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
1233
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
1234
1234
  };
1235
1235
  readonly label: {
1236
1236
  readonly kind: "Shacl";
@@ -1240,7 +1240,7 @@ export declare namespace NodeShape {
1240
1240
  kind: "String";
1241
1241
  };
1242
1242
  };
1243
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
1243
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
1244
1244
  };
1245
1245
  readonly languageIn: {
1246
1246
  readonly kind: "Shacl";
@@ -1253,7 +1253,7 @@ export declare namespace NodeShape {
1253
1253
  };
1254
1254
  };
1255
1255
  };
1256
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
1256
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
1257
1257
  };
1258
1258
  readonly maxCount: {
1259
1259
  readonly kind: "Shacl";
@@ -1263,7 +1263,7 @@ export declare namespace NodeShape {
1263
1263
  kind: "Int";
1264
1264
  };
1265
1265
  };
1266
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
1266
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
1267
1267
  };
1268
1268
  readonly maxExclusive: {
1269
1269
  readonly kind: "Shacl";
@@ -1273,7 +1273,7 @@ export declare namespace NodeShape {
1273
1273
  kind: "Literal";
1274
1274
  };
1275
1275
  };
1276
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
1276
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
1277
1277
  };
1278
1278
  readonly maxInclusive: {
1279
1279
  readonly kind: "Shacl";
@@ -1283,7 +1283,7 @@ export declare namespace NodeShape {
1283
1283
  kind: "Literal";
1284
1284
  };
1285
1285
  };
1286
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
1286
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
1287
1287
  };
1288
1288
  readonly maxLength: {
1289
1289
  readonly kind: "Shacl";
@@ -1293,7 +1293,7 @@ export declare namespace NodeShape {
1293
1293
  kind: "Int";
1294
1294
  };
1295
1295
  };
1296
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
1296
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
1297
1297
  };
1298
1298
  readonly minCount: {
1299
1299
  readonly kind: "Shacl";
@@ -1303,7 +1303,7 @@ export declare namespace NodeShape {
1303
1303
  kind: "Int";
1304
1304
  };
1305
1305
  };
1306
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minCount">;
1306
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
1307
1307
  };
1308
1308
  readonly minExclusive: {
1309
1309
  readonly kind: "Shacl";
@@ -1313,7 +1313,7 @@ export declare namespace NodeShape {
1313
1313
  kind: "Literal";
1314
1314
  };
1315
1315
  };
1316
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
1316
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
1317
1317
  };
1318
1318
  readonly minInclusive: {
1319
1319
  readonly kind: "Shacl";
@@ -1323,7 +1323,7 @@ export declare namespace NodeShape {
1323
1323
  kind: "Literal";
1324
1324
  };
1325
1325
  };
1326
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
1326
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
1327
1327
  };
1328
1328
  readonly minLength: {
1329
1329
  readonly kind: "Shacl";
@@ -1333,7 +1333,7 @@ export declare namespace NodeShape {
1333
1333
  kind: "Int";
1334
1334
  };
1335
1335
  };
1336
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minLength">;
1336
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
1337
1337
  };
1338
1338
  readonly mutable: {
1339
1339
  readonly kind: "Shacl";
@@ -1343,7 +1343,7 @@ export declare namespace NodeShape {
1343
1343
  kind: "Boolean";
1344
1344
  };
1345
1345
  };
1346
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
1346
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
1347
1347
  };
1348
1348
  readonly nodeKind: {
1349
1349
  readonly kind: "Shacl";
@@ -1351,10 +1351,10 @@ export declare namespace NodeShape {
1351
1351
  kind: "Maybe";
1352
1352
  item: () => {
1353
1353
  kind: "Iri";
1354
- in: (NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#IRI"> | NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
1354
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
1355
1355
  };
1356
1356
  };
1357
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
1357
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
1358
1358
  };
1359
1359
  readonly nodes: {
1360
1360
  readonly kind: "Shacl";
@@ -1364,7 +1364,7 @@ export declare namespace NodeShape {
1364
1364
  kind: "Identifier";
1365
1365
  };
1366
1366
  };
1367
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#node">;
1367
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
1368
1368
  };
1369
1369
  readonly not: {
1370
1370
  readonly kind: "Shacl";
@@ -1374,7 +1374,7 @@ export declare namespace NodeShape {
1374
1374
  kind: "Identifier";
1375
1375
  };
1376
1376
  };
1377
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#not">;
1377
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
1378
1378
  };
1379
1379
  readonly or: {
1380
1380
  readonly kind: "Shacl";
@@ -1387,7 +1387,7 @@ export declare namespace NodeShape {
1387
1387
  };
1388
1388
  };
1389
1389
  };
1390
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#or">;
1390
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
1391
1391
  };
1392
1392
  readonly patterns: {
1393
1393
  readonly kind: "Shacl";
@@ -1397,7 +1397,7 @@ export declare namespace NodeShape {
1397
1397
  kind: "String";
1398
1398
  };
1399
1399
  };
1400
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1400
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1401
1401
  };
1402
1402
  readonly properties: {
1403
1403
  readonly kind: "Shacl";
@@ -1407,7 +1407,7 @@ export declare namespace NodeShape {
1407
1407
  kind: "Identifier";
1408
1408
  };
1409
1409
  };
1410
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#property">;
1410
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
1411
1411
  };
1412
1412
  readonly rdfType: {
1413
1413
  readonly kind: "Shacl";
@@ -1417,7 +1417,7 @@ export declare namespace NodeShape {
1417
1417
  kind: "Iri";
1418
1418
  };
1419
1419
  };
1420
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
1420
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
1421
1421
  };
1422
1422
  readonly shaclmateName: {
1423
1423
  readonly kind: "Shacl";
@@ -1427,7 +1427,7 @@ export declare namespace NodeShape {
1427
1427
  kind: "String";
1428
1428
  };
1429
1429
  };
1430
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#name">;
1430
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
1431
1431
  };
1432
1432
  readonly subClassOf: {
1433
1433
  readonly kind: "Shacl";
@@ -1437,7 +1437,7 @@ export declare namespace NodeShape {
1437
1437
  kind: "Iri";
1438
1438
  };
1439
1439
  };
1440
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
1440
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
1441
1441
  };
1442
1442
  readonly toRdfTypes: {
1443
1443
  readonly kind: "Shacl";
@@ -1447,7 +1447,7 @@ export declare namespace NodeShape {
1447
1447
  kind: "Iri";
1448
1448
  };
1449
1449
  };
1450
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
1450
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
1451
1451
  };
1452
1452
  readonly tsFeatureExcludes: {
1453
1453
  readonly kind: "Shacl";
@@ -1455,10 +1455,10 @@ export declare namespace NodeShape {
1455
1455
  kind: "Set";
1456
1456
  item: () => {
1457
1457
  kind: "Iri";
1458
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1458
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1459
1459
  };
1460
1460
  };
1461
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
1461
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
1462
1462
  };
1463
1463
  readonly tsFeatureIncludes: {
1464
1464
  readonly kind: "Shacl";
@@ -1466,10 +1466,10 @@ export declare namespace NodeShape {
1466
1466
  kind: "Set";
1467
1467
  item: () => {
1468
1468
  kind: "Iri";
1469
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1469
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1470
1470
  };
1471
1471
  };
1472
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
1472
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
1473
1473
  };
1474
1474
  readonly tsImports: {
1475
1475
  readonly kind: "Shacl";
@@ -1479,7 +1479,7 @@ export declare namespace NodeShape {
1479
1479
  kind: "String";
1480
1480
  };
1481
1481
  };
1482
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
1482
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
1483
1483
  };
1484
1484
  readonly tsObjectDeclarationType: {
1485
1485
  readonly kind: "Shacl";
@@ -1487,10 +1487,10 @@ export declare namespace NodeShape {
1487
1487
  kind: "Maybe";
1488
1488
  item: () => {
1489
1489
  kind: "Iri";
1490
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
1490
+ 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">)[];
1491
1491
  };
1492
1492
  };
1493
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
1493
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
1494
1494
  };
1495
1495
  readonly types: {
1496
1496
  readonly kind: "Shacl";
@@ -1500,7 +1500,7 @@ export declare namespace NodeShape {
1500
1500
  kind: "Iri";
1501
1501
  };
1502
1502
  };
1503
- readonly path: NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
1503
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
1504
1504
  };
1505
1505
  readonly xone: {
1506
1506
  readonly kind: "Shacl";
@@ -1513,7 +1513,7 @@ export declare namespace NodeShape {
1513
1513
  };
1514
1514
  };
1515
1515
  };
1516
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#xone">;
1516
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
1517
1517
  };
1518
1518
  };
1519
1519
  };
@@ -1533,8 +1533,8 @@ export declare namespace Shape {
1533
1533
  const $fromRdfResourceValues: $FromRdfResourceValuesFunction<Shape>;
1534
1534
  type $Identifier = BlankNode | NamedNode;
1535
1535
  namespace $Identifier {
1536
- const fromString: typeof $identifierFromString;
1537
- const toString: typeof import("@rdfx/resource/dist/Identifier.js").Identifier.toString;
1536
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
1537
+ const stringify: typeof NTriplesTerm.stringify;
1538
1538
  }
1539
1539
  const $schema: {
1540
1540
  readonly kind: "NamedObjectUnion";
@@ -1564,7 +1564,7 @@ export declare namespace Shape {
1564
1564
  kind: "Boolean";
1565
1565
  };
1566
1566
  };
1567
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
1567
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
1568
1568
  };
1569
1569
  readonly and: {
1570
1570
  readonly kind: "Shacl";
@@ -1577,7 +1577,7 @@ export declare namespace Shape {
1577
1577
  };
1578
1578
  };
1579
1579
  };
1580
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#and">;
1580
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
1581
1581
  };
1582
1582
  readonly classes: {
1583
1583
  readonly kind: "Shacl";
@@ -1587,7 +1587,7 @@ export declare namespace Shape {
1587
1587
  kind: "Iri";
1588
1588
  };
1589
1589
  };
1590
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#class">;
1590
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
1591
1591
  };
1592
1592
  readonly closed: {
1593
1593
  readonly kind: "Shacl";
@@ -1597,7 +1597,7 @@ export declare namespace Shape {
1597
1597
  kind: "Boolean";
1598
1598
  };
1599
1599
  };
1600
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#closed">;
1600
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
1601
1601
  };
1602
1602
  readonly comment: {
1603
1603
  readonly kind: "Shacl";
@@ -1607,7 +1607,7 @@ export declare namespace Shape {
1607
1607
  kind: "String";
1608
1608
  };
1609
1609
  };
1610
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
1610
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
1611
1611
  };
1612
1612
  readonly datatype: {
1613
1613
  readonly kind: "Shacl";
@@ -1617,7 +1617,7 @@ export declare namespace Shape {
1617
1617
  kind: "Iri";
1618
1618
  };
1619
1619
  };
1620
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#datatype">;
1620
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
1621
1621
  };
1622
1622
  readonly deactivated: {
1623
1623
  readonly kind: "Shacl";
@@ -1627,7 +1627,7 @@ export declare namespace Shape {
1627
1627
  kind: "Boolean";
1628
1628
  };
1629
1629
  };
1630
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
1630
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
1631
1631
  };
1632
1632
  readonly discriminantValue: {
1633
1633
  readonly kind: "Shacl";
@@ -1637,7 +1637,7 @@ export declare namespace Shape {
1637
1637
  kind: "String";
1638
1638
  };
1639
1639
  };
1640
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
1640
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
1641
1641
  };
1642
1642
  readonly extern: {
1643
1643
  readonly kind: "Shacl";
@@ -1647,7 +1647,7 @@ export declare namespace Shape {
1647
1647
  kind: "Boolean";
1648
1648
  };
1649
1649
  };
1650
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#extern">;
1650
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
1651
1651
  };
1652
1652
  readonly flags: {
1653
1653
  readonly kind: "Shacl";
@@ -1657,7 +1657,7 @@ export declare namespace Shape {
1657
1657
  kind: "String";
1658
1658
  };
1659
1659
  };
1660
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#flags">;
1660
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
1661
1661
  };
1662
1662
  readonly fromRdfType: {
1663
1663
  readonly kind: "Shacl";
@@ -1667,7 +1667,7 @@ export declare namespace Shape {
1667
1667
  kind: "Iri";
1668
1668
  };
1669
1669
  };
1670
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
1670
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
1671
1671
  };
1672
1672
  readonly hasValues: {
1673
1673
  readonly kind: "Shacl";
@@ -1677,7 +1677,7 @@ export declare namespace Shape {
1677
1677
  kind: "Term";
1678
1678
  };
1679
1679
  };
1680
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1680
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
1681
1681
  };
1682
1682
  readonly identifierMintingStrategy: {
1683
1683
  readonly kind: "Shacl";
@@ -1685,10 +1685,10 @@ export declare namespace Shape {
1685
1685
  kind: "Maybe";
1686
1686
  item: () => {
1687
1687
  kind: "Iri";
1688
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode"> | NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256"> | NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">)[];
1688
+ 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">)[];
1689
1689
  };
1690
1690
  };
1691
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
1691
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
1692
1692
  };
1693
1693
  readonly ignoredProperties: {
1694
1694
  readonly kind: "Shacl";
@@ -1701,7 +1701,7 @@ export declare namespace Shape {
1701
1701
  };
1702
1702
  };
1703
1703
  };
1704
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
1704
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
1705
1705
  };
1706
1706
  readonly in_: {
1707
1707
  readonly kind: "Shacl";
@@ -1714,7 +1714,7 @@ export declare namespace Shape {
1714
1714
  };
1715
1715
  };
1716
1716
  };
1717
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#in">;
1717
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
1718
1718
  };
1719
1719
  readonly isDefinedBy: {
1720
1720
  readonly kind: "Shacl";
@@ -1724,7 +1724,7 @@ export declare namespace Shape {
1724
1724
  kind: "Identifier";
1725
1725
  };
1726
1726
  };
1727
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
1727
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
1728
1728
  };
1729
1729
  readonly label: {
1730
1730
  readonly kind: "Shacl";
@@ -1734,7 +1734,7 @@ export declare namespace Shape {
1734
1734
  kind: "String";
1735
1735
  };
1736
1736
  };
1737
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
1737
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
1738
1738
  };
1739
1739
  readonly languageIn: {
1740
1740
  readonly kind: "Shacl";
@@ -1747,7 +1747,7 @@ export declare namespace Shape {
1747
1747
  };
1748
1748
  };
1749
1749
  };
1750
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
1750
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
1751
1751
  };
1752
1752
  readonly maxCount: {
1753
1753
  readonly kind: "Shacl";
@@ -1757,7 +1757,7 @@ export declare namespace Shape {
1757
1757
  kind: "Int";
1758
1758
  };
1759
1759
  };
1760
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
1760
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
1761
1761
  };
1762
1762
  readonly maxExclusive: {
1763
1763
  readonly kind: "Shacl";
@@ -1767,7 +1767,7 @@ export declare namespace Shape {
1767
1767
  kind: "Literal";
1768
1768
  };
1769
1769
  };
1770
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
1770
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
1771
1771
  };
1772
1772
  readonly maxInclusive: {
1773
1773
  readonly kind: "Shacl";
@@ -1777,7 +1777,7 @@ export declare namespace Shape {
1777
1777
  kind: "Literal";
1778
1778
  };
1779
1779
  };
1780
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
1780
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
1781
1781
  };
1782
1782
  readonly maxLength: {
1783
1783
  readonly kind: "Shacl";
@@ -1787,7 +1787,7 @@ export declare namespace Shape {
1787
1787
  kind: "Int";
1788
1788
  };
1789
1789
  };
1790
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
1790
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
1791
1791
  };
1792
1792
  readonly minCount: {
1793
1793
  readonly kind: "Shacl";
@@ -1797,7 +1797,7 @@ export declare namespace Shape {
1797
1797
  kind: "Int";
1798
1798
  };
1799
1799
  };
1800
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minCount">;
1800
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
1801
1801
  };
1802
1802
  readonly minExclusive: {
1803
1803
  readonly kind: "Shacl";
@@ -1807,7 +1807,7 @@ export declare namespace Shape {
1807
1807
  kind: "Literal";
1808
1808
  };
1809
1809
  };
1810
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
1810
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
1811
1811
  };
1812
1812
  readonly minInclusive: {
1813
1813
  readonly kind: "Shacl";
@@ -1817,7 +1817,7 @@ export declare namespace Shape {
1817
1817
  kind: "Literal";
1818
1818
  };
1819
1819
  };
1820
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
1820
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
1821
1821
  };
1822
1822
  readonly minLength: {
1823
1823
  readonly kind: "Shacl";
@@ -1827,7 +1827,7 @@ export declare namespace Shape {
1827
1827
  kind: "Int";
1828
1828
  };
1829
1829
  };
1830
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minLength">;
1830
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
1831
1831
  };
1832
1832
  readonly mutable: {
1833
1833
  readonly kind: "Shacl";
@@ -1837,7 +1837,7 @@ export declare namespace Shape {
1837
1837
  kind: "Boolean";
1838
1838
  };
1839
1839
  };
1840
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
1840
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
1841
1841
  };
1842
1842
  readonly nodeKind: {
1843
1843
  readonly kind: "Shacl";
@@ -1845,10 +1845,10 @@ export declare namespace Shape {
1845
1845
  kind: "Maybe";
1846
1846
  item: () => {
1847
1847
  kind: "Iri";
1848
- in: (NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#IRI"> | NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
1848
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
1849
1849
  };
1850
1850
  };
1851
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
1851
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
1852
1852
  };
1853
1853
  readonly nodes: {
1854
1854
  readonly kind: "Shacl";
@@ -1858,7 +1858,7 @@ export declare namespace Shape {
1858
1858
  kind: "Identifier";
1859
1859
  };
1860
1860
  };
1861
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#node">;
1861
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
1862
1862
  };
1863
1863
  readonly not: {
1864
1864
  readonly kind: "Shacl";
@@ -1868,7 +1868,7 @@ export declare namespace Shape {
1868
1868
  kind: "Identifier";
1869
1869
  };
1870
1870
  };
1871
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#not">;
1871
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
1872
1872
  };
1873
1873
  readonly or: {
1874
1874
  readonly kind: "Shacl";
@@ -1881,7 +1881,7 @@ export declare namespace Shape {
1881
1881
  };
1882
1882
  };
1883
1883
  };
1884
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#or">;
1884
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
1885
1885
  };
1886
1886
  readonly patterns: {
1887
1887
  readonly kind: "Shacl";
@@ -1891,7 +1891,7 @@ export declare namespace Shape {
1891
1891
  kind: "String";
1892
1892
  };
1893
1893
  };
1894
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1894
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
1895
1895
  };
1896
1896
  readonly properties: {
1897
1897
  readonly kind: "Shacl";
@@ -1901,7 +1901,7 @@ export declare namespace Shape {
1901
1901
  kind: "Identifier";
1902
1902
  };
1903
1903
  };
1904
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#property">;
1904
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
1905
1905
  };
1906
1906
  readonly rdfType: {
1907
1907
  readonly kind: "Shacl";
@@ -1911,7 +1911,7 @@ export declare namespace Shape {
1911
1911
  kind: "Iri";
1912
1912
  };
1913
1913
  };
1914
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
1914
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
1915
1915
  };
1916
1916
  readonly shaclmateName: {
1917
1917
  readonly kind: "Shacl";
@@ -1921,7 +1921,7 @@ export declare namespace Shape {
1921
1921
  kind: "String";
1922
1922
  };
1923
1923
  };
1924
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#name">;
1924
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
1925
1925
  };
1926
1926
  readonly subClassOf: {
1927
1927
  readonly kind: "Shacl";
@@ -1931,7 +1931,7 @@ export declare namespace Shape {
1931
1931
  kind: "Iri";
1932
1932
  };
1933
1933
  };
1934
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
1934
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
1935
1935
  };
1936
1936
  readonly toRdfTypes: {
1937
1937
  readonly kind: "Shacl";
@@ -1941,7 +1941,7 @@ export declare namespace Shape {
1941
1941
  kind: "Iri";
1942
1942
  };
1943
1943
  };
1944
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
1944
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
1945
1945
  };
1946
1946
  readonly tsFeatureExcludes: {
1947
1947
  readonly kind: "Shacl";
@@ -1949,10 +1949,10 @@ export declare namespace Shape {
1949
1949
  kind: "Set";
1950
1950
  item: () => {
1951
1951
  kind: "Iri";
1952
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1952
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1953
1953
  };
1954
1954
  };
1955
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
1955
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
1956
1956
  };
1957
1957
  readonly tsFeatureIncludes: {
1958
1958
  readonly kind: "Shacl";
@@ -1960,10 +1960,10 @@ export declare namespace Shape {
1960
1960
  kind: "Set";
1961
1961
  item: () => {
1962
1962
  kind: "Iri";
1963
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1963
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
1964
1964
  };
1965
1965
  };
1966
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
1966
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
1967
1967
  };
1968
1968
  readonly tsImports: {
1969
1969
  readonly kind: "Shacl";
@@ -1973,7 +1973,7 @@ export declare namespace Shape {
1973
1973
  kind: "String";
1974
1974
  };
1975
1975
  };
1976
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
1976
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
1977
1977
  };
1978
1978
  readonly tsObjectDeclarationType: {
1979
1979
  readonly kind: "Shacl";
@@ -1981,10 +1981,10 @@ export declare namespace Shape {
1981
1981
  kind: "Maybe";
1982
1982
  item: () => {
1983
1983
  kind: "Iri";
1984
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
1984
+ 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">)[];
1985
1985
  };
1986
1986
  };
1987
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
1987
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
1988
1988
  };
1989
1989
  readonly types: {
1990
1990
  readonly kind: "Shacl";
@@ -1994,7 +1994,7 @@ export declare namespace Shape {
1994
1994
  kind: "Iri";
1995
1995
  };
1996
1996
  };
1997
- readonly path: NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
1997
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
1998
1998
  };
1999
1999
  readonly xone: {
2000
2000
  readonly kind: "Shacl";
@@ -2007,7 +2007,7 @@ export declare namespace Shape {
2007
2007
  };
2008
2008
  };
2009
2009
  };
2010
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#xone">;
2010
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
2011
2011
  };
2012
2012
  };
2013
2013
  };
@@ -2040,7 +2040,7 @@ export declare namespace Shape {
2040
2040
  };
2041
2041
  };
2042
2042
  };
2043
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#and">;
2043
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
2044
2044
  };
2045
2045
  readonly classes: {
2046
2046
  readonly kind: "Shacl";
@@ -2050,7 +2050,7 @@ export declare namespace Shape {
2050
2050
  kind: "Iri";
2051
2051
  };
2052
2052
  };
2053
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#class">;
2053
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
2054
2054
  };
2055
2055
  readonly comment: {
2056
2056
  readonly kind: "Shacl";
@@ -2060,7 +2060,7 @@ export declare namespace Shape {
2060
2060
  kind: "String";
2061
2061
  };
2062
2062
  };
2063
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2063
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2064
2064
  };
2065
2065
  readonly datatype: {
2066
2066
  readonly kind: "Shacl";
@@ -2070,7 +2070,7 @@ export declare namespace Shape {
2070
2070
  kind: "Iri";
2071
2071
  };
2072
2072
  };
2073
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2073
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2074
2074
  };
2075
2075
  readonly deactivated: {
2076
2076
  readonly kind: "Shacl";
@@ -2080,7 +2080,7 @@ export declare namespace Shape {
2080
2080
  kind: "Boolean";
2081
2081
  };
2082
2082
  };
2083
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2083
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2084
2084
  };
2085
2085
  readonly defaultValue: {
2086
2086
  readonly kind: "Shacl";
@@ -2090,7 +2090,7 @@ export declare namespace Shape {
2090
2090
  kind: "Term";
2091
2091
  };
2092
2092
  };
2093
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
2093
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
2094
2094
  };
2095
2095
  readonly description: {
2096
2096
  readonly kind: "Shacl";
@@ -2100,7 +2100,7 @@ export declare namespace Shape {
2100
2100
  kind: "String";
2101
2101
  };
2102
2102
  };
2103
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#description">;
2103
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
2104
2104
  };
2105
2105
  readonly flags: {
2106
2106
  readonly kind: "Shacl";
@@ -2110,7 +2110,7 @@ export declare namespace Shape {
2110
2110
  kind: "String";
2111
2111
  };
2112
2112
  };
2113
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#flags">;
2113
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2114
2114
  };
2115
2115
  readonly groups: {
2116
2116
  readonly kind: "Shacl";
@@ -2120,7 +2120,7 @@ export declare namespace Shape {
2120
2120
  kind: "Identifier";
2121
2121
  };
2122
2122
  };
2123
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#group">;
2123
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
2124
2124
  };
2125
2125
  readonly hasValues: {
2126
2126
  readonly kind: "Shacl";
@@ -2130,7 +2130,7 @@ export declare namespace Shape {
2130
2130
  kind: "Term";
2131
2131
  };
2132
2132
  };
2133
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2133
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2134
2134
  };
2135
2135
  readonly in_: {
2136
2136
  readonly kind: "Shacl";
@@ -2143,7 +2143,7 @@ export declare namespace Shape {
2143
2143
  };
2144
2144
  };
2145
2145
  };
2146
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#in">;
2146
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
2147
2147
  };
2148
2148
  readonly isDefinedBy: {
2149
2149
  readonly kind: "Shacl";
@@ -2153,7 +2153,7 @@ export declare namespace Shape {
2153
2153
  kind: "Identifier";
2154
2154
  };
2155
2155
  };
2156
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2156
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2157
2157
  };
2158
2158
  readonly label: {
2159
2159
  readonly kind: "Shacl";
@@ -2163,7 +2163,7 @@ export declare namespace Shape {
2163
2163
  kind: "String";
2164
2164
  };
2165
2165
  };
2166
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2166
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2167
2167
  };
2168
2168
  readonly languageIn: {
2169
2169
  readonly kind: "Shacl";
@@ -2176,7 +2176,7 @@ export declare namespace Shape {
2176
2176
  };
2177
2177
  };
2178
2178
  };
2179
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2179
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2180
2180
  };
2181
2181
  readonly maxCount: {
2182
2182
  readonly kind: "Shacl";
@@ -2186,7 +2186,7 @@ export declare namespace Shape {
2186
2186
  kind: "Int";
2187
2187
  };
2188
2188
  };
2189
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2189
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2190
2190
  };
2191
2191
  readonly maxExclusive: {
2192
2192
  readonly kind: "Shacl";
@@ -2196,7 +2196,7 @@ export declare namespace Shape {
2196
2196
  kind: "Literal";
2197
2197
  };
2198
2198
  };
2199
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2199
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2200
2200
  };
2201
2201
  readonly maxInclusive: {
2202
2202
  readonly kind: "Shacl";
@@ -2206,7 +2206,7 @@ export declare namespace Shape {
2206
2206
  kind: "Literal";
2207
2207
  };
2208
2208
  };
2209
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2209
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2210
2210
  };
2211
2211
  readonly maxLength: {
2212
2212
  readonly kind: "Shacl";
@@ -2216,7 +2216,7 @@ export declare namespace Shape {
2216
2216
  kind: "Int";
2217
2217
  };
2218
2218
  };
2219
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2219
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2220
2220
  };
2221
2221
  readonly minCount: {
2222
2222
  readonly kind: "Shacl";
@@ -2226,7 +2226,7 @@ export declare namespace Shape {
2226
2226
  kind: "Int";
2227
2227
  };
2228
2228
  };
2229
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2229
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2230
2230
  };
2231
2231
  readonly minExclusive: {
2232
2232
  readonly kind: "Shacl";
@@ -2236,7 +2236,7 @@ export declare namespace Shape {
2236
2236
  kind: "Literal";
2237
2237
  };
2238
2238
  };
2239
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2239
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2240
2240
  };
2241
2241
  readonly minInclusive: {
2242
2242
  readonly kind: "Shacl";
@@ -2246,7 +2246,7 @@ export declare namespace Shape {
2246
2246
  kind: "Literal";
2247
2247
  };
2248
2248
  };
2249
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
2249
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
2250
2250
  };
2251
2251
  readonly minLength: {
2252
2252
  readonly kind: "Shacl";
@@ -2256,7 +2256,7 @@ export declare namespace Shape {
2256
2256
  kind: "Int";
2257
2257
  };
2258
2258
  };
2259
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minLength">;
2259
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
2260
2260
  };
2261
2261
  readonly mutable: {
2262
2262
  readonly kind: "Shacl";
@@ -2266,7 +2266,7 @@ export declare namespace Shape {
2266
2266
  kind: "Boolean";
2267
2267
  };
2268
2268
  };
2269
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
2269
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
2270
2270
  };
2271
2271
  readonly name: {
2272
2272
  readonly kind: "Shacl";
@@ -2276,7 +2276,7 @@ export declare namespace Shape {
2276
2276
  kind: "String";
2277
2277
  };
2278
2278
  };
2279
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#name">;
2279
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
2280
2280
  };
2281
2281
  readonly nodeKind: {
2282
2282
  readonly kind: "Shacl";
@@ -2284,10 +2284,10 @@ export declare namespace Shape {
2284
2284
  kind: "Maybe";
2285
2285
  item: () => {
2286
2286
  kind: "Iri";
2287
- in: (NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#IRI"> | NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
2287
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
2288
2288
  };
2289
2289
  };
2290
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
2290
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
2291
2291
  };
2292
2292
  readonly nodes: {
2293
2293
  readonly kind: "Shacl";
@@ -2297,7 +2297,7 @@ export declare namespace Shape {
2297
2297
  kind: "Identifier";
2298
2298
  };
2299
2299
  };
2300
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#node">;
2300
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
2301
2301
  };
2302
2302
  readonly not: {
2303
2303
  readonly kind: "Shacl";
@@ -2307,7 +2307,7 @@ export declare namespace Shape {
2307
2307
  kind: "Identifier";
2308
2308
  };
2309
2309
  };
2310
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#not">;
2310
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
2311
2311
  };
2312
2312
  readonly or: {
2313
2313
  readonly kind: "Shacl";
@@ -2320,7 +2320,7 @@ export declare namespace Shape {
2320
2320
  };
2321
2321
  };
2322
2322
  };
2323
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#or">;
2323
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
2324
2324
  };
2325
2325
  readonly order: {
2326
2326
  readonly kind: "Shacl";
@@ -2330,12 +2330,12 @@ export declare namespace Shape {
2330
2330
  kind: "Float";
2331
2331
  };
2332
2332
  };
2333
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#order">;
2333
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
2334
2334
  };
2335
2335
  readonly path: {
2336
2336
  readonly kind: "Shacl";
2337
2337
  readonly type: () => object;
2338
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#path">;
2338
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
2339
2339
  };
2340
2340
  readonly patterns: {
2341
2341
  readonly kind: "Shacl";
@@ -2345,7 +2345,7 @@ export declare namespace Shape {
2345
2345
  kind: "String";
2346
2346
  };
2347
2347
  };
2348
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2348
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2349
2349
  };
2350
2350
  readonly resolve: {
2351
2351
  readonly kind: "Shacl";
@@ -2355,7 +2355,7 @@ export declare namespace Shape {
2355
2355
  kind: "Identifier";
2356
2356
  };
2357
2357
  };
2358
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
2358
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
2359
2359
  };
2360
2360
  readonly shaclmateName: {
2361
2361
  readonly kind: "Shacl";
@@ -2365,7 +2365,7 @@ export declare namespace Shape {
2365
2365
  kind: "String";
2366
2366
  };
2367
2367
  };
2368
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#name">;
2368
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
2369
2369
  };
2370
2370
  readonly uniqueLang: {
2371
2371
  readonly kind: "Shacl";
@@ -2375,7 +2375,7 @@ export declare namespace Shape {
2375
2375
  kind: "Boolean";
2376
2376
  };
2377
2377
  };
2378
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
2378
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
2379
2379
  };
2380
2380
  readonly visibility: {
2381
2381
  readonly kind: "Shacl";
@@ -2383,10 +2383,10 @@ export declare namespace Shape {
2383
2383
  kind: "Maybe";
2384
2384
  item: () => {
2385
2385
  kind: "Iri";
2386
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private"> | NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Protected"> | NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Public">)[];
2386
+ 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">)[];
2387
2387
  };
2388
2388
  };
2389
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
2389
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
2390
2390
  };
2391
2391
  readonly xone: {
2392
2392
  readonly kind: "Shacl";
@@ -2399,7 +2399,7 @@ export declare namespace Shape {
2399
2399
  };
2400
2400
  };
2401
2401
  };
2402
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#xone">;
2402
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
2403
2403
  };
2404
2404
  };
2405
2405
  };
@@ -2417,7 +2417,7 @@ export declare namespace Shape {
2417
2417
  };
2418
2418
  };
2419
2419
  };
2420
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#and">;
2420
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
2421
2421
  };
2422
2422
  readonly classes: {
2423
2423
  readonly kind: "Shacl";
@@ -2427,7 +2427,7 @@ export declare namespace Shape {
2427
2427
  kind: "Iri";
2428
2428
  };
2429
2429
  };
2430
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#class">;
2430
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
2431
2431
  };
2432
2432
  readonly comment: {
2433
2433
  readonly kind: "Shacl";
@@ -2437,7 +2437,7 @@ export declare namespace Shape {
2437
2437
  kind: "String";
2438
2438
  };
2439
2439
  };
2440
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2440
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2441
2441
  };
2442
2442
  readonly datatype: {
2443
2443
  readonly kind: "Shacl";
@@ -2447,7 +2447,7 @@ export declare namespace Shape {
2447
2447
  kind: "Iri";
2448
2448
  };
2449
2449
  };
2450
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2450
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2451
2451
  };
2452
2452
  readonly deactivated: {
2453
2453
  readonly kind: "Shacl";
@@ -2457,7 +2457,7 @@ export declare namespace Shape {
2457
2457
  kind: "Boolean";
2458
2458
  };
2459
2459
  };
2460
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2460
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2461
2461
  };
2462
2462
  readonly flags: {
2463
2463
  readonly kind: "Shacl";
@@ -2467,7 +2467,7 @@ export declare namespace Shape {
2467
2467
  kind: "String";
2468
2468
  };
2469
2469
  };
2470
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#flags">;
2470
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2471
2471
  };
2472
2472
  readonly hasValues: {
2473
2473
  readonly kind: "Shacl";
@@ -2477,7 +2477,7 @@ export declare namespace Shape {
2477
2477
  kind: "Term";
2478
2478
  };
2479
2479
  };
2480
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2480
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2481
2481
  };
2482
2482
  readonly in_: {
2483
2483
  readonly kind: "Shacl";
@@ -2490,7 +2490,7 @@ export declare namespace Shape {
2490
2490
  };
2491
2491
  };
2492
2492
  };
2493
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#in">;
2493
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
2494
2494
  };
2495
2495
  readonly isDefinedBy: {
2496
2496
  readonly kind: "Shacl";
@@ -2500,7 +2500,7 @@ export declare namespace Shape {
2500
2500
  kind: "Identifier";
2501
2501
  };
2502
2502
  };
2503
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2503
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2504
2504
  };
2505
2505
  readonly label: {
2506
2506
  readonly kind: "Shacl";
@@ -2510,7 +2510,7 @@ export declare namespace Shape {
2510
2510
  kind: "String";
2511
2511
  };
2512
2512
  };
2513
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2513
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2514
2514
  };
2515
2515
  readonly languageIn: {
2516
2516
  readonly kind: "Shacl";
@@ -2523,7 +2523,7 @@ export declare namespace Shape {
2523
2523
  };
2524
2524
  };
2525
2525
  };
2526
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2526
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2527
2527
  };
2528
2528
  readonly maxCount: {
2529
2529
  readonly kind: "Shacl";
@@ -2533,7 +2533,7 @@ export declare namespace Shape {
2533
2533
  kind: "Int";
2534
2534
  };
2535
2535
  };
2536
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2536
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2537
2537
  };
2538
2538
  readonly maxExclusive: {
2539
2539
  readonly kind: "Shacl";
@@ -2543,7 +2543,7 @@ export declare namespace Shape {
2543
2543
  kind: "Literal";
2544
2544
  };
2545
2545
  };
2546
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2546
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2547
2547
  };
2548
2548
  readonly maxInclusive: {
2549
2549
  readonly kind: "Shacl";
@@ -2553,7 +2553,7 @@ export declare namespace Shape {
2553
2553
  kind: "Literal";
2554
2554
  };
2555
2555
  };
2556
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2556
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2557
2557
  };
2558
2558
  readonly maxLength: {
2559
2559
  readonly kind: "Shacl";
@@ -2563,7 +2563,7 @@ export declare namespace Shape {
2563
2563
  kind: "Int";
2564
2564
  };
2565
2565
  };
2566
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2566
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2567
2567
  };
2568
2568
  readonly minCount: {
2569
2569
  readonly kind: "Shacl";
@@ -2573,7 +2573,7 @@ export declare namespace Shape {
2573
2573
  kind: "Int";
2574
2574
  };
2575
2575
  };
2576
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2576
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2577
2577
  };
2578
2578
  readonly minExclusive: {
2579
2579
  readonly kind: "Shacl";
@@ -2583,7 +2583,7 @@ export declare namespace Shape {
2583
2583
  kind: "Literal";
2584
2584
  };
2585
2585
  };
2586
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2586
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2587
2587
  };
2588
2588
  readonly minInclusive: {
2589
2589
  readonly kind: "Shacl";
@@ -2593,7 +2593,7 @@ export declare namespace Shape {
2593
2593
  kind: "Literal";
2594
2594
  };
2595
2595
  };
2596
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
2596
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
2597
2597
  };
2598
2598
  readonly minLength: {
2599
2599
  readonly kind: "Shacl";
@@ -2603,7 +2603,7 @@ export declare namespace Shape {
2603
2603
  kind: "Int";
2604
2604
  };
2605
2605
  };
2606
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minLength">;
2606
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
2607
2607
  };
2608
2608
  readonly mutable: {
2609
2609
  readonly kind: "Shacl";
@@ -2613,7 +2613,7 @@ export declare namespace Shape {
2613
2613
  kind: "Boolean";
2614
2614
  };
2615
2615
  };
2616
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
2616
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
2617
2617
  };
2618
2618
  readonly nodeKind: {
2619
2619
  readonly kind: "Shacl";
@@ -2621,10 +2621,10 @@ export declare namespace Shape {
2621
2621
  kind: "Maybe";
2622
2622
  item: () => {
2623
2623
  kind: "Iri";
2624
- in: (NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#IRI"> | NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
2624
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
2625
2625
  };
2626
2626
  };
2627
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
2627
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
2628
2628
  };
2629
2629
  readonly nodes: {
2630
2630
  readonly kind: "Shacl";
@@ -2634,7 +2634,7 @@ export declare namespace Shape {
2634
2634
  kind: "Identifier";
2635
2635
  };
2636
2636
  };
2637
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#node">;
2637
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
2638
2638
  };
2639
2639
  readonly not: {
2640
2640
  readonly kind: "Shacl";
@@ -2644,7 +2644,7 @@ export declare namespace Shape {
2644
2644
  kind: "Identifier";
2645
2645
  };
2646
2646
  };
2647
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#not">;
2647
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
2648
2648
  };
2649
2649
  readonly or: {
2650
2650
  readonly kind: "Shacl";
@@ -2657,7 +2657,7 @@ export declare namespace Shape {
2657
2657
  };
2658
2658
  };
2659
2659
  };
2660
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#or">;
2660
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
2661
2661
  };
2662
2662
  readonly patterns: {
2663
2663
  readonly kind: "Shacl";
@@ -2667,7 +2667,7 @@ export declare namespace Shape {
2667
2667
  kind: "String";
2668
2668
  };
2669
2669
  };
2670
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2670
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
2671
2671
  };
2672
2672
  readonly shaclmateName: {
2673
2673
  readonly kind: "Shacl";
@@ -2677,7 +2677,7 @@ export declare namespace Shape {
2677
2677
  kind: "String";
2678
2678
  };
2679
2679
  };
2680
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#name">;
2680
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
2681
2681
  };
2682
2682
  readonly xone: {
2683
2683
  readonly kind: "Shacl";
@@ -2690,7 +2690,7 @@ export declare namespace Shape {
2690
2690
  };
2691
2691
  };
2692
2692
  };
2693
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#xone">;
2693
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
2694
2694
  };
2695
2695
  };
2696
2696
  };
@@ -2714,8 +2714,8 @@ export declare namespace $Object {
2714
2714
  const $fromRdfResourceValues: $FromRdfResourceValuesFunction<$Object>;
2715
2715
  type $Identifier = BlankNode | NamedNode;
2716
2716
  namespace $Identifier {
2717
- const fromString: typeof $identifierFromString;
2718
- const toString: typeof import("@rdfx/resource/dist/Identifier.js").Identifier.toString;
2717
+ const parse: (value: string) => Either<Error, import("@rdfx/string/dist/Identifier.js").Identifier>;
2718
+ const stringify: typeof NTriplesTerm.stringify;
2719
2719
  }
2720
2720
  const $schema: {
2721
2721
  readonly kind: "NamedObjectUnion";
@@ -2745,7 +2745,7 @@ export declare namespace $Object {
2745
2745
  kind: "Boolean";
2746
2746
  };
2747
2747
  };
2748
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
2748
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#abstract">;
2749
2749
  };
2750
2750
  readonly and: {
2751
2751
  readonly kind: "Shacl";
@@ -2758,7 +2758,7 @@ export declare namespace $Object {
2758
2758
  };
2759
2759
  };
2760
2760
  };
2761
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#and">;
2761
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
2762
2762
  };
2763
2763
  readonly classes: {
2764
2764
  readonly kind: "Shacl";
@@ -2768,7 +2768,7 @@ export declare namespace $Object {
2768
2768
  kind: "Iri";
2769
2769
  };
2770
2770
  };
2771
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#class">;
2771
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
2772
2772
  };
2773
2773
  readonly closed: {
2774
2774
  readonly kind: "Shacl";
@@ -2778,7 +2778,7 @@ export declare namespace $Object {
2778
2778
  kind: "Boolean";
2779
2779
  };
2780
2780
  };
2781
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#closed">;
2781
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#closed">;
2782
2782
  };
2783
2783
  readonly comment: {
2784
2784
  readonly kind: "Shacl";
@@ -2788,7 +2788,7 @@ export declare namespace $Object {
2788
2788
  kind: "String";
2789
2789
  };
2790
2790
  };
2791
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2791
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
2792
2792
  };
2793
2793
  readonly datatype: {
2794
2794
  readonly kind: "Shacl";
@@ -2798,7 +2798,7 @@ export declare namespace $Object {
2798
2798
  kind: "Iri";
2799
2799
  };
2800
2800
  };
2801
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2801
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
2802
2802
  };
2803
2803
  readonly deactivated: {
2804
2804
  readonly kind: "Shacl";
@@ -2808,7 +2808,7 @@ export declare namespace $Object {
2808
2808
  kind: "Boolean";
2809
2809
  };
2810
2810
  };
2811
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2811
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
2812
2812
  };
2813
2813
  readonly discriminantValue: {
2814
2814
  readonly kind: "Shacl";
@@ -2818,7 +2818,7 @@ export declare namespace $Object {
2818
2818
  kind: "String";
2819
2819
  };
2820
2820
  };
2821
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
2821
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#discriminantValue">;
2822
2822
  };
2823
2823
  readonly extern: {
2824
2824
  readonly kind: "Shacl";
@@ -2828,7 +2828,7 @@ export declare namespace $Object {
2828
2828
  kind: "Boolean";
2829
2829
  };
2830
2830
  };
2831
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#extern">;
2831
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#extern">;
2832
2832
  };
2833
2833
  readonly flags: {
2834
2834
  readonly kind: "Shacl";
@@ -2838,7 +2838,7 @@ export declare namespace $Object {
2838
2838
  kind: "String";
2839
2839
  };
2840
2840
  };
2841
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#flags">;
2841
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
2842
2842
  };
2843
2843
  readonly fromRdfType: {
2844
2844
  readonly kind: "Shacl";
@@ -2848,7 +2848,7 @@ export declare namespace $Object {
2848
2848
  kind: "Iri";
2849
2849
  };
2850
2850
  };
2851
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
2851
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#fromRdfType">;
2852
2852
  };
2853
2853
  readonly hasValues: {
2854
2854
  readonly kind: "Shacl";
@@ -2858,7 +2858,7 @@ export declare namespace $Object {
2858
2858
  kind: "Term";
2859
2859
  };
2860
2860
  };
2861
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2861
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
2862
2862
  };
2863
2863
  readonly identifierMintingStrategy: {
2864
2864
  readonly kind: "Shacl";
@@ -2866,10 +2866,10 @@ export declare namespace $Object {
2866
2866
  kind: "Maybe";
2867
2867
  item: () => {
2868
2868
  kind: "Iri";
2869
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_BlankNode"> | NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_SHA256"> | NamedNode<"http://purl.org/shaclmate/ontology#_IdentifierMintingStrategy_UUIDv4">)[];
2869
+ 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">)[];
2870
2870
  };
2871
2871
  };
2872
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
2872
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#identifierMintingStrategy">;
2873
2873
  };
2874
2874
  readonly ignoredProperties: {
2875
2875
  readonly kind: "Shacl";
@@ -2882,7 +2882,7 @@ export declare namespace $Object {
2882
2882
  };
2883
2883
  };
2884
2884
  };
2885
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
2885
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#ignoredProperties">;
2886
2886
  };
2887
2887
  readonly in_: {
2888
2888
  readonly kind: "Shacl";
@@ -2895,7 +2895,7 @@ export declare namespace $Object {
2895
2895
  };
2896
2896
  };
2897
2897
  };
2898
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#in">;
2898
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
2899
2899
  };
2900
2900
  readonly isDefinedBy: {
2901
2901
  readonly kind: "Shacl";
@@ -2905,7 +2905,7 @@ export declare namespace $Object {
2905
2905
  kind: "Identifier";
2906
2906
  };
2907
2907
  };
2908
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2908
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
2909
2909
  };
2910
2910
  readonly label: {
2911
2911
  readonly kind: "Shacl";
@@ -2915,7 +2915,7 @@ export declare namespace $Object {
2915
2915
  kind: "String";
2916
2916
  };
2917
2917
  };
2918
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2918
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
2919
2919
  };
2920
2920
  readonly languageIn: {
2921
2921
  readonly kind: "Shacl";
@@ -2928,7 +2928,7 @@ export declare namespace $Object {
2928
2928
  };
2929
2929
  };
2930
2930
  };
2931
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2931
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
2932
2932
  };
2933
2933
  readonly maxCount: {
2934
2934
  readonly kind: "Shacl";
@@ -2938,7 +2938,7 @@ export declare namespace $Object {
2938
2938
  kind: "Int";
2939
2939
  };
2940
2940
  };
2941
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2941
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
2942
2942
  };
2943
2943
  readonly maxExclusive: {
2944
2944
  readonly kind: "Shacl";
@@ -2948,7 +2948,7 @@ export declare namespace $Object {
2948
2948
  kind: "Literal";
2949
2949
  };
2950
2950
  };
2951
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2951
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
2952
2952
  };
2953
2953
  readonly maxInclusive: {
2954
2954
  readonly kind: "Shacl";
@@ -2958,7 +2958,7 @@ export declare namespace $Object {
2958
2958
  kind: "Literal";
2959
2959
  };
2960
2960
  };
2961
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2961
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
2962
2962
  };
2963
2963
  readonly maxLength: {
2964
2964
  readonly kind: "Shacl";
@@ -2968,7 +2968,7 @@ export declare namespace $Object {
2968
2968
  kind: "Int";
2969
2969
  };
2970
2970
  };
2971
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2971
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
2972
2972
  };
2973
2973
  readonly minCount: {
2974
2974
  readonly kind: "Shacl";
@@ -2978,7 +2978,7 @@ export declare namespace $Object {
2978
2978
  kind: "Int";
2979
2979
  };
2980
2980
  };
2981
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2981
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
2982
2982
  };
2983
2983
  readonly minExclusive: {
2984
2984
  readonly kind: "Shacl";
@@ -2988,7 +2988,7 @@ export declare namespace $Object {
2988
2988
  kind: "Literal";
2989
2989
  };
2990
2990
  };
2991
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2991
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
2992
2992
  };
2993
2993
  readonly minInclusive: {
2994
2994
  readonly kind: "Shacl";
@@ -2998,7 +2998,7 @@ export declare namespace $Object {
2998
2998
  kind: "Literal";
2999
2999
  };
3000
3000
  };
3001
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
3001
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
3002
3002
  };
3003
3003
  readonly minLength: {
3004
3004
  readonly kind: "Shacl";
@@ -3008,7 +3008,7 @@ export declare namespace $Object {
3008
3008
  kind: "Int";
3009
3009
  };
3010
3010
  };
3011
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minLength">;
3011
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
3012
3012
  };
3013
3013
  readonly mutable: {
3014
3014
  readonly kind: "Shacl";
@@ -3018,7 +3018,7 @@ export declare namespace $Object {
3018
3018
  kind: "Boolean";
3019
3019
  };
3020
3020
  };
3021
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
3021
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
3022
3022
  };
3023
3023
  readonly nodeKind: {
3024
3024
  readonly kind: "Shacl";
@@ -3026,10 +3026,10 @@ export declare namespace $Object {
3026
3026
  kind: "Maybe";
3027
3027
  item: () => {
3028
3028
  kind: "Iri";
3029
- in: (NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#IRI"> | NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
3029
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
3030
3030
  };
3031
3031
  };
3032
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
3032
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
3033
3033
  };
3034
3034
  readonly nodes: {
3035
3035
  readonly kind: "Shacl";
@@ -3039,7 +3039,7 @@ export declare namespace $Object {
3039
3039
  kind: "Identifier";
3040
3040
  };
3041
3041
  };
3042
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#node">;
3042
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
3043
3043
  };
3044
3044
  readonly not: {
3045
3045
  readonly kind: "Shacl";
@@ -3049,7 +3049,7 @@ export declare namespace $Object {
3049
3049
  kind: "Identifier";
3050
3050
  };
3051
3051
  };
3052
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#not">;
3052
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
3053
3053
  };
3054
3054
  readonly or: {
3055
3055
  readonly kind: "Shacl";
@@ -3062,7 +3062,7 @@ export declare namespace $Object {
3062
3062
  };
3063
3063
  };
3064
3064
  };
3065
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#or">;
3065
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
3066
3066
  };
3067
3067
  readonly patterns: {
3068
3068
  readonly kind: "Shacl";
@@ -3072,7 +3072,7 @@ export declare namespace $Object {
3072
3072
  kind: "String";
3073
3073
  };
3074
3074
  };
3075
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#pattern">;
3075
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
3076
3076
  };
3077
3077
  readonly properties: {
3078
3078
  readonly kind: "Shacl";
@@ -3082,7 +3082,7 @@ export declare namespace $Object {
3082
3082
  kind: "Identifier";
3083
3083
  };
3084
3084
  };
3085
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#property">;
3085
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#property">;
3086
3086
  };
3087
3087
  readonly rdfType: {
3088
3088
  readonly kind: "Shacl";
@@ -3092,7 +3092,7 @@ export declare namespace $Object {
3092
3092
  kind: "Iri";
3093
3093
  };
3094
3094
  };
3095
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
3095
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#rdfType">;
3096
3096
  };
3097
3097
  readonly shaclmateName: {
3098
3098
  readonly kind: "Shacl";
@@ -3102,7 +3102,7 @@ export declare namespace $Object {
3102
3102
  kind: "String";
3103
3103
  };
3104
3104
  };
3105
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#name">;
3105
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
3106
3106
  };
3107
3107
  readonly subClassOf: {
3108
3108
  readonly kind: "Shacl";
@@ -3112,7 +3112,7 @@ export declare namespace $Object {
3112
3112
  kind: "Iri";
3113
3113
  };
3114
3114
  };
3115
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
3115
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#subClassOf">;
3116
3116
  };
3117
3117
  readonly toRdfTypes: {
3118
3118
  readonly kind: "Shacl";
@@ -3122,7 +3122,7 @@ export declare namespace $Object {
3122
3122
  kind: "Iri";
3123
3123
  };
3124
3124
  };
3125
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
3125
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#toRdfType">;
3126
3126
  };
3127
3127
  readonly tsFeatureExcludes: {
3128
3128
  readonly kind: "Shacl";
@@ -3130,10 +3130,10 @@ export declare namespace $Object {
3130
3130
  kind: "Set";
3131
3131
  item: () => {
3132
3132
  kind: "Iri";
3133
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3133
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3134
3134
  };
3135
3135
  };
3136
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
3136
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
3137
3137
  };
3138
3138
  readonly tsFeatureIncludes: {
3139
3139
  readonly kind: "Shacl";
@@ -3141,10 +3141,10 @@ export declare namespace $Object {
3141
3141
  kind: "Set";
3142
3142
  item: () => {
3143
3143
  kind: "Iri";
3144
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3144
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3145
3145
  };
3146
3146
  };
3147
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
3147
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
3148
3148
  };
3149
3149
  readonly tsImports: {
3150
3150
  readonly kind: "Shacl";
@@ -3154,7 +3154,7 @@ export declare namespace $Object {
3154
3154
  kind: "String";
3155
3155
  };
3156
3156
  };
3157
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
3157
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
3158
3158
  };
3159
3159
  readonly tsObjectDeclarationType: {
3160
3160
  readonly kind: "Shacl";
@@ -3162,10 +3162,10 @@ export declare namespace $Object {
3162
3162
  kind: "Maybe";
3163
3163
  item: () => {
3164
3164
  kind: "Iri";
3165
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
3165
+ 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">)[];
3166
3166
  };
3167
3167
  };
3168
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
3168
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
3169
3169
  };
3170
3170
  readonly types: {
3171
3171
  readonly kind: "Shacl";
@@ -3175,7 +3175,7 @@ export declare namespace $Object {
3175
3175
  kind: "Iri";
3176
3176
  };
3177
3177
  };
3178
- readonly path: NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
3178
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/1999/02/22-rdf-syntax-ns#type">;
3179
3179
  };
3180
3180
  readonly xone: {
3181
3181
  readonly kind: "Shacl";
@@ -3188,7 +3188,7 @@ export declare namespace $Object {
3188
3188
  };
3189
3189
  };
3190
3190
  };
3191
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#xone">;
3191
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
3192
3192
  };
3193
3193
  };
3194
3194
  };
@@ -3218,7 +3218,7 @@ export declare namespace $Object {
3218
3218
  kind: "String";
3219
3219
  };
3220
3220
  };
3221
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3221
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3222
3222
  };
3223
3223
  readonly label: {
3224
3224
  readonly kind: "Shacl";
@@ -3228,7 +3228,7 @@ export declare namespace $Object {
3228
3228
  kind: "String";
3229
3229
  };
3230
3230
  };
3231
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3231
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3232
3232
  };
3233
3233
  readonly tsFeatureExcludes: {
3234
3234
  readonly kind: "Shacl";
@@ -3236,10 +3236,10 @@ export declare namespace $Object {
3236
3236
  kind: "Set";
3237
3237
  item: () => {
3238
3238
  kind: "Iri";
3239
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3239
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3240
3240
  };
3241
3241
  };
3242
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
3242
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureExclude">;
3243
3243
  };
3244
3244
  readonly tsFeatureIncludes: {
3245
3245
  readonly kind: "Shacl";
@@ -3247,10 +3247,10 @@ export declare namespace $Object {
3247
3247
  kind: "Set";
3248
3248
  item: () => {
3249
3249
  kind: "Iri";
3250
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3250
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_All"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Create"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_Default"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Equals"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Graphql"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Hash"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Json"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeatures_None"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Rdf"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#_TsFeature_Sparql">)[];
3251
3251
  };
3252
3252
  };
3253
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
3253
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsFeatureInclude">;
3254
3254
  };
3255
3255
  readonly tsImports: {
3256
3256
  readonly kind: "Shacl";
@@ -3260,7 +3260,7 @@ export declare namespace $Object {
3260
3260
  kind: "String";
3261
3261
  };
3262
3262
  };
3263
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
3263
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsImport">;
3264
3264
  };
3265
3265
  readonly tsObjectDeclarationType: {
3266
3266
  readonly kind: "Shacl";
@@ -3268,10 +3268,10 @@ export declare namespace $Object {
3268
3268
  kind: "Maybe";
3269
3269
  item: () => {
3270
3270
  kind: "Iri";
3271
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Class"> | NamedNode<"http://purl.org/shaclmate/ontology#_TsObjectDeclarationType_Interface">)[];
3271
+ 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">)[];
3272
3272
  };
3273
3273
  };
3274
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
3274
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#tsObjectDeclarationType">;
3275
3275
  };
3276
3276
  };
3277
3277
  };
@@ -3301,7 +3301,7 @@ export declare namespace $Object {
3301
3301
  kind: "String";
3302
3302
  };
3303
3303
  };
3304
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3304
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3305
3305
  };
3306
3306
  readonly label: {
3307
3307
  readonly kind: "Shacl";
@@ -3311,7 +3311,7 @@ export declare namespace $Object {
3311
3311
  kind: "String";
3312
3312
  };
3313
3313
  };
3314
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3314
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3315
3315
  };
3316
3316
  };
3317
3317
  };
@@ -3344,7 +3344,7 @@ export declare namespace $Object {
3344
3344
  };
3345
3345
  };
3346
3346
  };
3347
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#and">;
3347
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#and">;
3348
3348
  };
3349
3349
  readonly classes: {
3350
3350
  readonly kind: "Shacl";
@@ -3354,7 +3354,7 @@ export declare namespace $Object {
3354
3354
  kind: "Iri";
3355
3355
  };
3356
3356
  };
3357
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#class">;
3357
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#class">;
3358
3358
  };
3359
3359
  readonly comment: {
3360
3360
  readonly kind: "Shacl";
@@ -3364,7 +3364,7 @@ export declare namespace $Object {
3364
3364
  kind: "String";
3365
3365
  };
3366
3366
  };
3367
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3367
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3368
3368
  };
3369
3369
  readonly datatype: {
3370
3370
  readonly kind: "Shacl";
@@ -3374,7 +3374,7 @@ export declare namespace $Object {
3374
3374
  kind: "Iri";
3375
3375
  };
3376
3376
  };
3377
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#datatype">;
3377
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#datatype">;
3378
3378
  };
3379
3379
  readonly deactivated: {
3380
3380
  readonly kind: "Shacl";
@@ -3384,7 +3384,7 @@ export declare namespace $Object {
3384
3384
  kind: "Boolean";
3385
3385
  };
3386
3386
  };
3387
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
3387
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#deactivated">;
3388
3388
  };
3389
3389
  readonly defaultValue: {
3390
3390
  readonly kind: "Shacl";
@@ -3394,7 +3394,7 @@ export declare namespace $Object {
3394
3394
  kind: "Term";
3395
3395
  };
3396
3396
  };
3397
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
3397
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#defaultValue">;
3398
3398
  };
3399
3399
  readonly description: {
3400
3400
  readonly kind: "Shacl";
@@ -3404,7 +3404,7 @@ export declare namespace $Object {
3404
3404
  kind: "String";
3405
3405
  };
3406
3406
  };
3407
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#description">;
3407
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#description">;
3408
3408
  };
3409
3409
  readonly flags: {
3410
3410
  readonly kind: "Shacl";
@@ -3414,7 +3414,7 @@ export declare namespace $Object {
3414
3414
  kind: "String";
3415
3415
  };
3416
3416
  };
3417
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#flags">;
3417
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#flags">;
3418
3418
  };
3419
3419
  readonly groups: {
3420
3420
  readonly kind: "Shacl";
@@ -3424,7 +3424,7 @@ export declare namespace $Object {
3424
3424
  kind: "Identifier";
3425
3425
  };
3426
3426
  };
3427
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#group">;
3427
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#group">;
3428
3428
  };
3429
3429
  readonly hasValues: {
3430
3430
  readonly kind: "Shacl";
@@ -3434,7 +3434,7 @@ export declare namespace $Object {
3434
3434
  kind: "Term";
3435
3435
  };
3436
3436
  };
3437
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
3437
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#hasValue">;
3438
3438
  };
3439
3439
  readonly in_: {
3440
3440
  readonly kind: "Shacl";
@@ -3447,7 +3447,7 @@ export declare namespace $Object {
3447
3447
  };
3448
3448
  };
3449
3449
  };
3450
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#in">;
3450
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#in">;
3451
3451
  };
3452
3452
  readonly isDefinedBy: {
3453
3453
  readonly kind: "Shacl";
@@ -3457,7 +3457,7 @@ export declare namespace $Object {
3457
3457
  kind: "Identifier";
3458
3458
  };
3459
3459
  };
3460
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
3460
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#isDefinedBy">;
3461
3461
  };
3462
3462
  readonly label: {
3463
3463
  readonly kind: "Shacl";
@@ -3467,7 +3467,7 @@ export declare namespace $Object {
3467
3467
  kind: "String";
3468
3468
  };
3469
3469
  };
3470
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3470
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3471
3471
  };
3472
3472
  readonly languageIn: {
3473
3473
  readonly kind: "Shacl";
@@ -3480,7 +3480,7 @@ export declare namespace $Object {
3480
3480
  };
3481
3481
  };
3482
3482
  };
3483
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
3483
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#languageIn">;
3484
3484
  };
3485
3485
  readonly maxCount: {
3486
3486
  readonly kind: "Shacl";
@@ -3490,7 +3490,7 @@ export declare namespace $Object {
3490
3490
  kind: "Int";
3491
3491
  };
3492
3492
  };
3493
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
3493
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
3494
3494
  };
3495
3495
  readonly maxExclusive: {
3496
3496
  readonly kind: "Shacl";
@@ -3500,7 +3500,7 @@ export declare namespace $Object {
3500
3500
  kind: "Literal";
3501
3501
  };
3502
3502
  };
3503
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
3503
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxExclusive">;
3504
3504
  };
3505
3505
  readonly maxInclusive: {
3506
3506
  readonly kind: "Shacl";
@@ -3510,7 +3510,7 @@ export declare namespace $Object {
3510
3510
  kind: "Literal";
3511
3511
  };
3512
3512
  };
3513
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
3513
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxInclusive">;
3514
3514
  };
3515
3515
  readonly maxLength: {
3516
3516
  readonly kind: "Shacl";
@@ -3520,7 +3520,7 @@ export declare namespace $Object {
3520
3520
  kind: "Int";
3521
3521
  };
3522
3522
  };
3523
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
3523
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
3524
3524
  };
3525
3525
  readonly minCount: {
3526
3526
  readonly kind: "Shacl";
@@ -3530,7 +3530,7 @@ export declare namespace $Object {
3530
3530
  kind: "Int";
3531
3531
  };
3532
3532
  };
3533
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minCount">;
3533
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
3534
3534
  };
3535
3535
  readonly minExclusive: {
3536
3536
  readonly kind: "Shacl";
@@ -3540,7 +3540,7 @@ export declare namespace $Object {
3540
3540
  kind: "Literal";
3541
3541
  };
3542
3542
  };
3543
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
3543
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minExclusive">;
3544
3544
  };
3545
3545
  readonly minInclusive: {
3546
3546
  readonly kind: "Shacl";
@@ -3550,7 +3550,7 @@ export declare namespace $Object {
3550
3550
  kind: "Literal";
3551
3551
  };
3552
3552
  };
3553
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
3553
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minInclusive">;
3554
3554
  };
3555
3555
  readonly minLength: {
3556
3556
  readonly kind: "Shacl";
@@ -3560,7 +3560,7 @@ export declare namespace $Object {
3560
3560
  kind: "Int";
3561
3561
  };
3562
3562
  };
3563
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#minLength">;
3563
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
3564
3564
  };
3565
3565
  readonly mutable: {
3566
3566
  readonly kind: "Shacl";
@@ -3570,7 +3570,7 @@ export declare namespace $Object {
3570
3570
  kind: "Boolean";
3571
3571
  };
3572
3572
  };
3573
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
3573
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#mutable">;
3574
3574
  };
3575
3575
  readonly name: {
3576
3576
  readonly kind: "Shacl";
@@ -3580,7 +3580,7 @@ export declare namespace $Object {
3580
3580
  kind: "String";
3581
3581
  };
3582
3582
  };
3583
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#name">;
3583
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#name">;
3584
3584
  };
3585
3585
  readonly nodeKind: {
3586
3586
  readonly kind: "Shacl";
@@ -3588,10 +3588,10 @@ export declare namespace $Object {
3588
3588
  kind: "Maybe";
3589
3589
  item: () => {
3590
3590
  kind: "Iri";
3591
- in: (NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#IRI"> | NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
3591
+ in: (import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNode"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrIRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#BlankNodeOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRI"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#IRIOrLiteral"> | import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#Literal">)[];
3592
3592
  };
3593
3593
  };
3594
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
3594
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#nodeKind">;
3595
3595
  };
3596
3596
  readonly nodes: {
3597
3597
  readonly kind: "Shacl";
@@ -3601,7 +3601,7 @@ export declare namespace $Object {
3601
3601
  kind: "Identifier";
3602
3602
  };
3603
3603
  };
3604
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#node">;
3604
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#node">;
3605
3605
  };
3606
3606
  readonly not: {
3607
3607
  readonly kind: "Shacl";
@@ -3611,7 +3611,7 @@ export declare namespace $Object {
3611
3611
  kind: "Identifier";
3612
3612
  };
3613
3613
  };
3614
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#not">;
3614
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#not">;
3615
3615
  };
3616
3616
  readonly or: {
3617
3617
  readonly kind: "Shacl";
@@ -3624,7 +3624,7 @@ export declare namespace $Object {
3624
3624
  };
3625
3625
  };
3626
3626
  };
3627
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#or">;
3627
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#or">;
3628
3628
  };
3629
3629
  readonly order: {
3630
3630
  readonly kind: "Shacl";
@@ -3634,12 +3634,12 @@ export declare namespace $Object {
3634
3634
  kind: "Float";
3635
3635
  };
3636
3636
  };
3637
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#order">;
3637
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#order">;
3638
3638
  };
3639
3639
  readonly path: {
3640
3640
  readonly kind: "Shacl";
3641
3641
  readonly type: () => object;
3642
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#path">;
3642
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#path">;
3643
3643
  };
3644
3644
  readonly patterns: {
3645
3645
  readonly kind: "Shacl";
@@ -3649,7 +3649,7 @@ export declare namespace $Object {
3649
3649
  kind: "String";
3650
3650
  };
3651
3651
  };
3652
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#pattern">;
3652
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#pattern">;
3653
3653
  };
3654
3654
  readonly resolve: {
3655
3655
  readonly kind: "Shacl";
@@ -3659,7 +3659,7 @@ export declare namespace $Object {
3659
3659
  kind: "Identifier";
3660
3660
  };
3661
3661
  };
3662
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
3662
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#resolve">;
3663
3663
  };
3664
3664
  readonly shaclmateName: {
3665
3665
  readonly kind: "Shacl";
@@ -3669,7 +3669,7 @@ export declare namespace $Object {
3669
3669
  kind: "String";
3670
3670
  };
3671
3671
  };
3672
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#name">;
3672
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#name">;
3673
3673
  };
3674
3674
  readonly uniqueLang: {
3675
3675
  readonly kind: "Shacl";
@@ -3679,7 +3679,7 @@ export declare namespace $Object {
3679
3679
  kind: "Boolean";
3680
3680
  };
3681
3681
  };
3682
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
3682
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#uniqueLang">;
3683
3683
  };
3684
3684
  readonly visibility: {
3685
3685
  readonly kind: "Shacl";
@@ -3687,10 +3687,10 @@ export declare namespace $Object {
3687
3687
  kind: "Maybe";
3688
3688
  item: () => {
3689
3689
  kind: "Iri";
3690
- in: (NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Private"> | NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Protected"> | NamedNode<"http://purl.org/shaclmate/ontology#_Visibility_Public">)[];
3690
+ 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">)[];
3691
3691
  };
3692
3692
  };
3693
- readonly path: NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
3693
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://purl.org/shaclmate/ontology#visibility">;
3694
3694
  };
3695
3695
  readonly xone: {
3696
3696
  readonly kind: "Shacl";
@@ -3703,7 +3703,7 @@ export declare namespace $Object {
3703
3703
  };
3704
3704
  };
3705
3705
  };
3706
- readonly path: NamedNode<"http://www.w3.org/ns/shacl#xone">;
3706
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#xone">;
3707
3707
  };
3708
3708
  };
3709
3709
  };
@@ -3718,7 +3718,7 @@ export declare namespace $Object {
3718
3718
  kind: "String";
3719
3719
  };
3720
3720
  };
3721
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3721
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#comment">;
3722
3722
  };
3723
3723
  readonly label: {
3724
3724
  readonly kind: "Shacl";
@@ -3728,7 +3728,7 @@ export declare namespace $Object {
3728
3728
  kind: "String";
3729
3729
  };
3730
3730
  };
3731
- readonly path: NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3731
+ readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/2000/01/rdf-schema#label">;
3732
3732
  };
3733
3733
  };
3734
3734
  };