@shaclmate/shacl-ast 4.0.27 → 4.0.28

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.
@@ -105,14 +105,14 @@ export interface PropertyShape {
105
105
  readonly isDefinedBy: Maybe<BlankNode | NamedNode>;
106
106
  readonly label: Maybe<string>;
107
107
  readonly languageIn: Maybe<readonly string[]>;
108
- readonly maxCount: Maybe<number>;
108
+ readonly maxCount: Maybe<bigint>;
109
109
  readonly maxExclusive: Maybe<Literal>;
110
110
  readonly maxInclusive: Maybe<Literal>;
111
- readonly maxLength: Maybe<number>;
112
- readonly minCount: Maybe<number>;
111
+ readonly maxLength: Maybe<bigint>;
112
+ readonly minCount: Maybe<bigint>;
113
113
  readonly minExclusive: Maybe<Literal>;
114
114
  readonly minInclusive: Maybe<Literal>;
115
- readonly minLength: Maybe<number>;
115
+ readonly minLength: Maybe<bigint>;
116
116
  readonly name: Maybe<string>;
117
117
  readonly node: Maybe<BlankNode | NamedNode>;
118
118
  readonly nodeKind: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
@@ -141,14 +141,14 @@ export declare namespace PropertyShape {
141
141
  readonly isDefinedBy?: Maybe<BlankNode | NamedNode> | (BlankNode | NamedNode) | string;
142
142
  readonly label?: Maybe<string> | string;
143
143
  readonly languageIn?: Maybe<readonly string[]> | readonly string[];
144
- readonly maxCount?: Maybe<number> | number;
144
+ readonly maxCount?: Maybe<bigint> | bigint | number;
145
145
  readonly maxExclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
146
146
  readonly maxInclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
147
- readonly maxLength?: Maybe<number> | number;
148
- readonly minCount?: Maybe<number> | number;
147
+ readonly maxLength?: Maybe<bigint> | bigint | number;
148
+ readonly minCount?: Maybe<bigint> | bigint | number;
149
149
  readonly minExclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
150
150
  readonly minInclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
151
- readonly minLength?: Maybe<number> | number;
151
+ readonly minLength?: Maybe<bigint> | bigint | number;
152
152
  readonly name?: Maybe<string> | string;
153
153
  readonly node?: Maybe<BlankNode | NamedNode> | (BlankNode | NamedNode) | string;
154
154
  readonly nodeKind?: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">> | NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal"> | "http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal";
@@ -182,14 +182,14 @@ export declare namespace PropertyShape {
182
182
  readonly isDefinedBy?: $MaybeFilter<$IdentifierFilter>;
183
183
  readonly label?: $MaybeFilter<$StringFilter>;
184
184
  readonly languageIn?: $MaybeFilter<$CollectionFilter<$StringFilter>>;
185
- readonly maxCount?: $MaybeFilter<$NumericFilter<number>>;
185
+ readonly maxCount?: $MaybeFilter<$NumericFilter<bigint>>;
186
186
  readonly maxExclusive?: $MaybeFilter<$LiteralFilter>;
187
187
  readonly maxInclusive?: $MaybeFilter<$LiteralFilter>;
188
- readonly maxLength?: $MaybeFilter<$NumericFilter<number>>;
189
- readonly minCount?: $MaybeFilter<$NumericFilter<number>>;
188
+ readonly maxLength?: $MaybeFilter<$NumericFilter<bigint>>;
189
+ readonly minCount?: $MaybeFilter<$NumericFilter<bigint>>;
190
190
  readonly minExclusive?: $MaybeFilter<$LiteralFilter>;
191
191
  readonly minInclusive?: $MaybeFilter<$LiteralFilter>;
192
- readonly minLength?: $MaybeFilter<$NumericFilter<number>>;
192
+ readonly minLength?: $MaybeFilter<$NumericFilter<bigint>>;
193
193
  readonly name?: $MaybeFilter<$StringFilter>;
194
194
  readonly node?: $MaybeFilter<$IdentifierFilter>;
195
195
  readonly nodeKind?: $MaybeFilter<$IriFilter>;
@@ -222,14 +222,14 @@ export declare namespace PropertyShape {
222
222
  isDefinedBy: Maybe<BlankNode | NamedNode>;
223
223
  label: Maybe<string>;
224
224
  languageIn: Maybe<readonly string[]>;
225
- maxCount: Maybe<number>;
225
+ maxCount: Maybe<bigint>;
226
226
  maxExclusive: Maybe<Literal>;
227
227
  maxInclusive: Maybe<Literal>;
228
- maxLength: Maybe<number>;
229
- minCount: Maybe<number>;
228
+ maxLength: Maybe<bigint>;
229
+ minCount: Maybe<bigint>;
230
230
  minExclusive: Maybe<Literal>;
231
231
  minInclusive: Maybe<Literal>;
232
- minLength: Maybe<number>;
232
+ minLength: Maybe<bigint>;
233
233
  name: Maybe<string>;
234
234
  node: Maybe<BlankNode | NamedNode>;
235
235
  nodeKind: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
@@ -410,7 +410,7 @@ export declare namespace PropertyShape {
410
410
  readonly type: () => {
411
411
  kind: "Maybe";
412
412
  item: () => {
413
- kind: "Int";
413
+ kind: "BigInt";
414
414
  };
415
415
  };
416
416
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -440,7 +440,7 @@ export declare namespace PropertyShape {
440
440
  readonly type: () => {
441
441
  kind: "Maybe";
442
442
  item: () => {
443
- kind: "Int";
443
+ kind: "BigInt";
444
444
  };
445
445
  };
446
446
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
@@ -450,7 +450,7 @@ export declare namespace PropertyShape {
450
450
  readonly type: () => {
451
451
  kind: "Maybe";
452
452
  item: () => {
453
- kind: "Int";
453
+ kind: "BigInt";
454
454
  };
455
455
  };
456
456
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -480,7 +480,7 @@ export declare namespace PropertyShape {
480
480
  readonly type: () => {
481
481
  kind: "Maybe";
482
482
  item: () => {
483
- kind: "Int";
483
+ kind: "BigInt";
484
484
  };
485
485
  };
486
486
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
@@ -760,14 +760,14 @@ export interface NodeShape {
760
760
  readonly isDefinedBy: Maybe<BlankNode | NamedNode>;
761
761
  readonly label: Maybe<string>;
762
762
  readonly languageIn: Maybe<readonly string[]>;
763
- readonly maxCount: Maybe<number>;
763
+ readonly maxCount: Maybe<bigint>;
764
764
  readonly maxExclusive: Maybe<Literal>;
765
765
  readonly maxInclusive: Maybe<Literal>;
766
- readonly maxLength: Maybe<number>;
767
- readonly minCount: Maybe<number>;
766
+ readonly maxLength: Maybe<bigint>;
767
+ readonly minCount: Maybe<bigint>;
768
768
  readonly minExclusive: Maybe<Literal>;
769
769
  readonly minInclusive: Maybe<Literal>;
770
- readonly minLength: Maybe<number>;
770
+ readonly minLength: Maybe<bigint>;
771
771
  readonly node: Maybe<BlankNode | NamedNode>;
772
772
  readonly nodeKind: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
773
773
  readonly not: readonly (BlankNode | NamedNode)[];
@@ -794,14 +794,14 @@ export declare namespace NodeShape {
794
794
  readonly isDefinedBy?: Maybe<BlankNode | NamedNode> | (BlankNode | NamedNode) | string;
795
795
  readonly label?: Maybe<string> | string;
796
796
  readonly languageIn?: Maybe<readonly string[]> | readonly string[];
797
- readonly maxCount?: Maybe<number> | number;
797
+ readonly maxCount?: Maybe<bigint> | bigint | number;
798
798
  readonly maxExclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
799
799
  readonly maxInclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
800
- readonly maxLength?: Maybe<number> | number;
801
- readonly minCount?: Maybe<number> | number;
800
+ readonly maxLength?: Maybe<bigint> | bigint | number;
801
+ readonly minCount?: Maybe<bigint> | bigint | number;
802
802
  readonly minExclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
803
803
  readonly minInclusive?: Maybe<Literal> | bigint | boolean | Date | number | string | Literal;
804
- readonly minLength?: Maybe<number> | number;
804
+ readonly minLength?: Maybe<bigint> | bigint | number;
805
805
  readonly node?: Maybe<BlankNode | NamedNode> | (BlankNode | NamedNode) | string;
806
806
  readonly nodeKind?: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">> | NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal"> | "http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal";
807
807
  readonly not?: readonly (BlankNode | NamedNode)[] | readonly string[];
@@ -833,14 +833,14 @@ export declare namespace NodeShape {
833
833
  readonly isDefinedBy?: $MaybeFilter<$IdentifierFilter>;
834
834
  readonly label?: $MaybeFilter<$StringFilter>;
835
835
  readonly languageIn?: $MaybeFilter<$CollectionFilter<$StringFilter>>;
836
- readonly maxCount?: $MaybeFilter<$NumericFilter<number>>;
836
+ readonly maxCount?: $MaybeFilter<$NumericFilter<bigint>>;
837
837
  readonly maxExclusive?: $MaybeFilter<$LiteralFilter>;
838
838
  readonly maxInclusive?: $MaybeFilter<$LiteralFilter>;
839
- readonly maxLength?: $MaybeFilter<$NumericFilter<number>>;
840
- readonly minCount?: $MaybeFilter<$NumericFilter<number>>;
839
+ readonly maxLength?: $MaybeFilter<$NumericFilter<bigint>>;
840
+ readonly minCount?: $MaybeFilter<$NumericFilter<bigint>>;
841
841
  readonly minExclusive?: $MaybeFilter<$LiteralFilter>;
842
842
  readonly minInclusive?: $MaybeFilter<$LiteralFilter>;
843
- readonly minLength?: $MaybeFilter<$NumericFilter<number>>;
843
+ readonly minLength?: $MaybeFilter<$NumericFilter<bigint>>;
844
844
  readonly node?: $MaybeFilter<$IdentifierFilter>;
845
845
  readonly nodeKind?: $MaybeFilter<$IriFilter>;
846
846
  readonly not?: $CollectionFilter<$IdentifierFilter>;
@@ -871,14 +871,14 @@ export declare namespace NodeShape {
871
871
  isDefinedBy: Maybe<BlankNode | NamedNode>;
872
872
  label: Maybe<string>;
873
873
  languageIn: Maybe<readonly string[]>;
874
- maxCount: Maybe<number>;
874
+ maxCount: Maybe<bigint>;
875
875
  maxExclusive: Maybe<Literal>;
876
876
  maxInclusive: Maybe<Literal>;
877
- maxLength: Maybe<number>;
878
- minCount: Maybe<number>;
877
+ maxLength: Maybe<bigint>;
878
+ minCount: Maybe<bigint>;
879
879
  minExclusive: Maybe<Literal>;
880
880
  minInclusive: Maybe<Literal>;
881
- minLength: Maybe<number>;
881
+ minLength: Maybe<bigint>;
882
882
  node: Maybe<BlankNode | NamedNode>;
883
883
  nodeKind: Maybe<NamedNode<"http://www.w3.org/ns/shacl#BlankNode" | "http://www.w3.org/ns/shacl#BlankNodeOrIRI" | "http://www.w3.org/ns/shacl#BlankNodeOrLiteral" | "http://www.w3.org/ns/shacl#IRI" | "http://www.w3.org/ns/shacl#IRIOrLiteral" | "http://www.w3.org/ns/shacl#Literal">>;
884
884
  not: readonly (BlankNode | NamedNode)[];
@@ -1051,7 +1051,7 @@ export declare namespace NodeShape {
1051
1051
  readonly type: () => {
1052
1052
  kind: "Maybe";
1053
1053
  item: () => {
1054
- kind: "Int";
1054
+ kind: "BigInt";
1055
1055
  };
1056
1056
  };
1057
1057
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -1081,7 +1081,7 @@ export declare namespace NodeShape {
1081
1081
  readonly type: () => {
1082
1082
  kind: "Maybe";
1083
1083
  item: () => {
1084
- kind: "Int";
1084
+ kind: "BigInt";
1085
1085
  };
1086
1086
  };
1087
1087
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
@@ -1091,7 +1091,7 @@ export declare namespace NodeShape {
1091
1091
  readonly type: () => {
1092
1092
  kind: "Maybe";
1093
1093
  item: () => {
1094
- kind: "Int";
1094
+ kind: "BigInt";
1095
1095
  };
1096
1096
  };
1097
1097
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -1121,7 +1121,7 @@ export declare namespace NodeShape {
1121
1121
  readonly type: () => {
1122
1122
  kind: "Maybe";
1123
1123
  item: () => {
1124
- kind: "Int";
1124
+ kind: "BigInt";
1125
1125
  };
1126
1126
  };
1127
1127
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
@@ -1414,7 +1414,7 @@ export declare namespace Shape {
1414
1414
  readonly type: () => {
1415
1415
  kind: "Maybe";
1416
1416
  item: () => {
1417
- kind: "Int";
1417
+ kind: "BigInt";
1418
1418
  };
1419
1419
  };
1420
1420
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -1444,7 +1444,7 @@ export declare namespace Shape {
1444
1444
  readonly type: () => {
1445
1445
  kind: "Maybe";
1446
1446
  item: () => {
1447
- kind: "Int";
1447
+ kind: "BigInt";
1448
1448
  };
1449
1449
  };
1450
1450
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
@@ -1454,7 +1454,7 @@ export declare namespace Shape {
1454
1454
  readonly type: () => {
1455
1455
  kind: "Maybe";
1456
1456
  item: () => {
1457
- kind: "Int";
1457
+ kind: "BigInt";
1458
1458
  };
1459
1459
  };
1460
1460
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -1484,7 +1484,7 @@ export declare namespace Shape {
1484
1484
  readonly type: () => {
1485
1485
  kind: "Maybe";
1486
1486
  item: () => {
1487
- kind: "Int";
1487
+ kind: "BigInt";
1488
1488
  };
1489
1489
  };
1490
1490
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
@@ -1760,7 +1760,7 @@ export declare namespace Shape {
1760
1760
  readonly type: () => {
1761
1761
  kind: "Maybe";
1762
1762
  item: () => {
1763
- kind: "Int";
1763
+ kind: "BigInt";
1764
1764
  };
1765
1765
  };
1766
1766
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -1790,7 +1790,7 @@ export declare namespace Shape {
1790
1790
  readonly type: () => {
1791
1791
  kind: "Maybe";
1792
1792
  item: () => {
1793
- kind: "Int";
1793
+ kind: "BigInt";
1794
1794
  };
1795
1795
  };
1796
1796
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
@@ -1800,7 +1800,7 @@ export declare namespace Shape {
1800
1800
  readonly type: () => {
1801
1801
  kind: "Maybe";
1802
1802
  item: () => {
1803
- kind: "Int";
1803
+ kind: "BigInt";
1804
1804
  };
1805
1805
  };
1806
1806
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -1830,7 +1830,7 @@ export declare namespace Shape {
1830
1830
  readonly type: () => {
1831
1831
  kind: "Maybe";
1832
1832
  item: () => {
1833
- kind: "Int";
1833
+ kind: "BigInt";
1834
1834
  };
1835
1835
  };
1836
1836
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
@@ -2066,7 +2066,7 @@ export declare namespace Shape {
2066
2066
  readonly type: () => {
2067
2067
  kind: "Maybe";
2068
2068
  item: () => {
2069
- kind: "Int";
2069
+ kind: "BigInt";
2070
2070
  };
2071
2071
  };
2072
2072
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -2096,7 +2096,7 @@ export declare namespace Shape {
2096
2096
  readonly type: () => {
2097
2097
  kind: "Maybe";
2098
2098
  item: () => {
2099
- kind: "Int";
2099
+ kind: "BigInt";
2100
2100
  };
2101
2101
  };
2102
2102
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
@@ -2106,7 +2106,7 @@ export declare namespace Shape {
2106
2106
  readonly type: () => {
2107
2107
  kind: "Maybe";
2108
2108
  item: () => {
2109
- kind: "Int";
2109
+ kind: "BigInt";
2110
2110
  };
2111
2111
  };
2112
2112
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -2136,7 +2136,7 @@ export declare namespace Shape {
2136
2136
  readonly type: () => {
2137
2137
  kind: "Maybe";
2138
2138
  item: () => {
2139
- kind: "Int";
2139
+ kind: "BigInt";
2140
2140
  };
2141
2141
  };
2142
2142
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
@@ -2407,7 +2407,7 @@ export declare namespace $Object {
2407
2407
  readonly type: () => {
2408
2408
  kind: "Maybe";
2409
2409
  item: () => {
2410
- kind: "Int";
2410
+ kind: "BigInt";
2411
2411
  };
2412
2412
  };
2413
2413
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -2437,7 +2437,7 @@ export declare namespace $Object {
2437
2437
  readonly type: () => {
2438
2438
  kind: "Maybe";
2439
2439
  item: () => {
2440
- kind: "Int";
2440
+ kind: "BigInt";
2441
2441
  };
2442
2442
  };
2443
2443
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
@@ -2447,7 +2447,7 @@ export declare namespace $Object {
2447
2447
  readonly type: () => {
2448
2448
  kind: "Maybe";
2449
2449
  item: () => {
2450
- kind: "Int";
2450
+ kind: "BigInt";
2451
2451
  };
2452
2452
  };
2453
2453
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -2477,7 +2477,7 @@ export declare namespace $Object {
2477
2477
  readonly type: () => {
2478
2478
  kind: "Maybe";
2479
2479
  item: () => {
2480
- kind: "Int";
2480
+ kind: "BigInt";
2481
2481
  };
2482
2482
  };
2483
2483
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
@@ -2833,7 +2833,7 @@ export declare namespace $Object {
2833
2833
  readonly type: () => {
2834
2834
  kind: "Maybe";
2835
2835
  item: () => {
2836
- kind: "Int";
2836
+ kind: "BigInt";
2837
2837
  };
2838
2838
  };
2839
2839
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxCount">;
@@ -2863,7 +2863,7 @@ export declare namespace $Object {
2863
2863
  readonly type: () => {
2864
2864
  kind: "Maybe";
2865
2865
  item: () => {
2866
- kind: "Int";
2866
+ kind: "BigInt";
2867
2867
  };
2868
2868
  };
2869
2869
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#maxLength">;
@@ -2873,7 +2873,7 @@ export declare namespace $Object {
2873
2873
  readonly type: () => {
2874
2874
  kind: "Maybe";
2875
2875
  item: () => {
2876
- kind: "Int";
2876
+ kind: "BigInt";
2877
2877
  };
2878
2878
  };
2879
2879
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minCount">;
@@ -2903,7 +2903,7 @@ export declare namespace $Object {
2903
2903
  readonly type: () => {
2904
2904
  kind: "Maybe";
2905
2905
  item: () => {
2906
- kind: "Int";
2906
+ kind: "BigInt";
2907
2907
  };
2908
2908
  };
2909
2909
  readonly path: import("@rdfx/data-factory/dist/NamedNode.js").NamedNode<"http://www.w3.org/ns/shacl#minLength">;
package/dist/generated.js CHANGED
@@ -495,9 +495,12 @@ export var PropertyShape;
495
495
  if (Maybe.isMaybe(parameters.maxCount)) {
496
496
  maxCount = parameters.maxCount;
497
497
  }
498
- else if (typeof parameters.maxCount === "number") {
498
+ else if (typeof parameters.maxCount === "bigint") {
499
499
  maxCount = Maybe.of(parameters.maxCount);
500
500
  }
501
+ else if (typeof parameters.maxCount === "number") {
502
+ maxCount = Maybe.of(BigInt(parameters.maxCount));
503
+ }
501
504
  else if (parameters.maxCount === undefined) {
502
505
  maxCount = Maybe.empty();
503
506
  }
@@ -566,9 +569,12 @@ export var PropertyShape;
566
569
  if (Maybe.isMaybe(parameters.maxLength)) {
567
570
  maxLength = parameters.maxLength;
568
571
  }
569
- else if (typeof parameters.maxLength === "number") {
572
+ else if (typeof parameters.maxLength === "bigint") {
570
573
  maxLength = Maybe.of(parameters.maxLength);
571
574
  }
575
+ else if (typeof parameters.maxLength === "number") {
576
+ maxLength = Maybe.of(BigInt(parameters.maxLength));
577
+ }
572
578
  else if (parameters.maxLength === undefined) {
573
579
  maxLength = Maybe.empty();
574
580
  }
@@ -579,9 +585,12 @@ export var PropertyShape;
579
585
  if (Maybe.isMaybe(parameters.minCount)) {
580
586
  minCount = parameters.minCount;
581
587
  }
582
- else if (typeof parameters.minCount === "number") {
588
+ else if (typeof parameters.minCount === "bigint") {
583
589
  minCount = Maybe.of(parameters.minCount);
584
590
  }
591
+ else if (typeof parameters.minCount === "number") {
592
+ minCount = Maybe.of(BigInt(parameters.minCount));
593
+ }
585
594
  else if (parameters.minCount === undefined) {
586
595
  minCount = Maybe.empty();
587
596
  }
@@ -650,9 +659,12 @@ export var PropertyShape;
650
659
  if (Maybe.isMaybe(parameters.minLength)) {
651
660
  minLength = parameters.minLength;
652
661
  }
653
- else if (typeof parameters.minLength === "number") {
662
+ else if (typeof parameters.minLength === "bigint") {
654
663
  minLength = Maybe.of(parameters.minLength);
655
664
  }
665
+ else if (typeof parameters.minLength === "number") {
666
+ minLength = Maybe.of(BigInt(parameters.minLength));
667
+ }
656
668
  else if (parameters.minLength === undefined) {
657
669
  minLength = Maybe.empty();
658
670
  }
@@ -1290,7 +1302,7 @@ export var PropertyShape;
1290
1302
  resource: $resource,
1291
1303
  propertySchema: PropertyShape.$schema.properties.maxCount,
1292
1304
  typeFromRdf: (resourceValues) => resourceValues
1293
- .chain((values) => values.chainMap((value) => value.toInt()))
1305
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
1294
1306
  .map((values) => values.length > 0
1295
1307
  ? values.map((value) => Maybe.of(value))
1296
1308
  : Resource.Values.fromValue({
@@ -1339,7 +1351,7 @@ export var PropertyShape;
1339
1351
  resource: $resource,
1340
1352
  propertySchema: PropertyShape.$schema.properties.maxLength,
1341
1353
  typeFromRdf: (resourceValues) => resourceValues
1342
- .chain((values) => values.chainMap((value) => value.toInt()))
1354
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
1343
1355
  .map((values) => values.length > 0
1344
1356
  ? values.map((value) => Maybe.of(value))
1345
1357
  : Resource.Values.fromValue({
@@ -1355,7 +1367,7 @@ export var PropertyShape;
1355
1367
  resource: $resource,
1356
1368
  propertySchema: PropertyShape.$schema.properties.minCount,
1357
1369
  typeFromRdf: (resourceValues) => resourceValues
1358
- .chain((values) => values.chainMap((value) => value.toInt()))
1370
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
1359
1371
  .map((values) => values.length > 0
1360
1372
  ? values.map((value) => Maybe.of(value))
1361
1373
  : Resource.Values.fromValue({
@@ -1411,7 +1423,7 @@ export var PropertyShape;
1411
1423
  propertySchema: PropertyShape.$schema.properties
1412
1424
  .minLength,
1413
1425
  typeFromRdf: (resourceValues) => resourceValues
1414
- .chain((values) => values.chainMap((value) => value.toInt()))
1426
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
1415
1427
  .map((values) => values.length > 0
1416
1428
  ? values.map((value) => Maybe.of(value))
1417
1429
  : Resource.Values.fromValue({
@@ -1825,7 +1837,7 @@ export var PropertyShape;
1825
1837
  kind: "Shacl",
1826
1838
  type: () => ({
1827
1839
  kind: "Maybe",
1828
- item: () => ({ kind: "Int" }),
1840
+ item: () => ({ kind: "BigInt" }),
1829
1841
  }),
1830
1842
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#maxCount"),
1831
1843
  },
@@ -1849,7 +1861,7 @@ export var PropertyShape;
1849
1861
  kind: "Shacl",
1850
1862
  type: () => ({
1851
1863
  kind: "Maybe",
1852
- item: () => ({ kind: "Int" }),
1864
+ item: () => ({ kind: "BigInt" }),
1853
1865
  }),
1854
1866
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#maxLength"),
1855
1867
  },
@@ -1857,7 +1869,7 @@ export var PropertyShape;
1857
1869
  kind: "Shacl",
1858
1870
  type: () => ({
1859
1871
  kind: "Maybe",
1860
- item: () => ({ kind: "Int" }),
1872
+ item: () => ({ kind: "BigInt" }),
1861
1873
  }),
1862
1874
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#minCount"),
1863
1875
  },
@@ -1881,7 +1893,7 @@ export var PropertyShape;
1881
1893
  kind: "Shacl",
1882
1894
  type: () => ({
1883
1895
  kind: "Maybe",
1884
- item: () => ({ kind: "Int" }),
1896
+ item: () => ({ kind: "BigInt" }),
1885
1897
  }),
1886
1898
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#minLength"),
1887
1899
  },
@@ -2080,26 +2092,26 @@ export var PropertyShape;
2080
2092
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxCount"), _propertyShape.maxCount
2081
2093
  .toList()
2082
2094
  .flatMap((value) => [
2083
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
2095
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
2084
2096
  ]), options?.graph);
2085
2097
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxExclusive"), _propertyShape.maxExclusive.toList(), options?.graph);
2086
2098
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxInclusive"), _propertyShape.maxInclusive.toList(), options?.graph);
2087
2099
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxLength"), _propertyShape.maxLength
2088
2100
  .toList()
2089
2101
  .flatMap((value) => [
2090
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
2102
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
2091
2103
  ]), options?.graph);
2092
2104
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minCount"), _propertyShape.minCount
2093
2105
  .toList()
2094
2106
  .flatMap((value) => [
2095
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
2107
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
2096
2108
  ]), options?.graph);
2097
2109
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minExclusive"), _propertyShape.minExclusive.toList(), options?.graph);
2098
2110
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minInclusive"), _propertyShape.minInclusive.toList(), options?.graph);
2099
2111
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minLength"), _propertyShape.minLength
2100
2112
  .toList()
2101
2113
  .flatMap((value) => [
2102
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
2114
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
2103
2115
  ]), options?.graph);
2104
2116
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#name"), _propertyShape.name
2105
2117
  .toList()
@@ -2844,9 +2856,12 @@ export var NodeShape;
2844
2856
  if (Maybe.isMaybe(parameters?.maxCount)) {
2845
2857
  maxCount = parameters?.maxCount;
2846
2858
  }
2847
- else if (typeof parameters?.maxCount === "number") {
2859
+ else if (typeof parameters?.maxCount === "bigint") {
2848
2860
  maxCount = Maybe.of(parameters?.maxCount);
2849
2861
  }
2862
+ else if (typeof parameters?.maxCount === "number") {
2863
+ maxCount = Maybe.of(BigInt(parameters?.maxCount));
2864
+ }
2850
2865
  else if (parameters?.maxCount === undefined) {
2851
2866
  maxCount = Maybe.empty();
2852
2867
  }
@@ -2915,9 +2930,12 @@ export var NodeShape;
2915
2930
  if (Maybe.isMaybe(parameters?.maxLength)) {
2916
2931
  maxLength = parameters?.maxLength;
2917
2932
  }
2918
- else if (typeof parameters?.maxLength === "number") {
2933
+ else if (typeof parameters?.maxLength === "bigint") {
2919
2934
  maxLength = Maybe.of(parameters?.maxLength);
2920
2935
  }
2936
+ else if (typeof parameters?.maxLength === "number") {
2937
+ maxLength = Maybe.of(BigInt(parameters?.maxLength));
2938
+ }
2921
2939
  else if (parameters?.maxLength === undefined) {
2922
2940
  maxLength = Maybe.empty();
2923
2941
  }
@@ -2928,9 +2946,12 @@ export var NodeShape;
2928
2946
  if (Maybe.isMaybe(parameters?.minCount)) {
2929
2947
  minCount = parameters?.minCount;
2930
2948
  }
2931
- else if (typeof parameters?.minCount === "number") {
2949
+ else if (typeof parameters?.minCount === "bigint") {
2932
2950
  minCount = Maybe.of(parameters?.minCount);
2933
2951
  }
2952
+ else if (typeof parameters?.minCount === "number") {
2953
+ minCount = Maybe.of(BigInt(parameters?.minCount));
2954
+ }
2934
2955
  else if (parameters?.minCount === undefined) {
2935
2956
  minCount = Maybe.empty();
2936
2957
  }
@@ -2999,9 +3020,12 @@ export var NodeShape;
2999
3020
  if (Maybe.isMaybe(parameters?.minLength)) {
3000
3021
  minLength = parameters?.minLength;
3001
3022
  }
3002
- else if (typeof parameters?.minLength === "number") {
3023
+ else if (typeof parameters?.minLength === "bigint") {
3003
3024
  minLength = Maybe.of(parameters?.minLength);
3004
3025
  }
3026
+ else if (typeof parameters?.minLength === "number") {
3027
+ minLength = Maybe.of(BigInt(parameters?.minLength));
3028
+ }
3005
3029
  else if (parameters?.minLength === undefined) {
3006
3030
  minLength = Maybe.empty();
3007
3031
  }
@@ -3602,7 +3626,7 @@ export var NodeShape;
3602
3626
  resource: $resource,
3603
3627
  propertySchema: NodeShape.$schema.properties.maxCount,
3604
3628
  typeFromRdf: (resourceValues) => resourceValues
3605
- .chain((values) => values.chainMap((value) => value.toInt()))
3629
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
3606
3630
  .map((values) => values.length > 0
3607
3631
  ? values.map((value) => Maybe.of(value))
3608
3632
  : Resource.Values.fromValue({
@@ -3649,7 +3673,7 @@ export var NodeShape;
3649
3673
  resource: $resource,
3650
3674
  propertySchema: NodeShape.$schema.properties.maxLength,
3651
3675
  typeFromRdf: (resourceValues) => resourceValues
3652
- .chain((values) => values.chainMap((value) => value.toInt()))
3676
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
3653
3677
  .map((values) => values.length > 0
3654
3678
  ? values.map((value) => Maybe.of(value))
3655
3679
  : Resource.Values.fromValue({
@@ -3665,7 +3689,7 @@ export var NodeShape;
3665
3689
  resource: $resource,
3666
3690
  propertySchema: NodeShape.$schema.properties.minCount,
3667
3691
  typeFromRdf: (resourceValues) => resourceValues
3668
- .chain((values) => values.chainMap((value) => value.toInt()))
3692
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
3669
3693
  .map((values) => values.length > 0
3670
3694
  ? values.map((value) => Maybe.of(value))
3671
3695
  : Resource.Values.fromValue({
@@ -3720,7 +3744,7 @@ export var NodeShape;
3720
3744
  propertySchema: NodeShape.$schema.properties
3721
3745
  .minLength,
3722
3746
  typeFromRdf: (resourceValues) => resourceValues
3723
- .chain((values) => values.chainMap((value) => value.toInt()))
3747
+ .chain((values) => values.chainMap((value) => value.toBigInt()))
3724
3748
  .map((values) => values.length > 0
3725
3749
  ? values.map((value) => Maybe.of(value))
3726
3750
  : Resource.Values.fromValue({
@@ -4099,7 +4123,7 @@ export var NodeShape;
4099
4123
  kind: "Shacl",
4100
4124
  type: () => ({
4101
4125
  kind: "Maybe",
4102
- item: () => ({ kind: "Int" }),
4126
+ item: () => ({ kind: "BigInt" }),
4103
4127
  }),
4104
4128
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#maxCount"),
4105
4129
  },
@@ -4123,7 +4147,7 @@ export var NodeShape;
4123
4147
  kind: "Shacl",
4124
4148
  type: () => ({
4125
4149
  kind: "Maybe",
4126
- item: () => ({ kind: "Int" }),
4150
+ item: () => ({ kind: "BigInt" }),
4127
4151
  }),
4128
4152
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#maxLength"),
4129
4153
  },
@@ -4131,7 +4155,7 @@ export var NodeShape;
4131
4155
  kind: "Shacl",
4132
4156
  type: () => ({
4133
4157
  kind: "Maybe",
4134
- item: () => ({ kind: "Int" }),
4158
+ item: () => ({ kind: "BigInt" }),
4135
4159
  }),
4136
4160
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#minCount"),
4137
4161
  },
@@ -4155,7 +4179,7 @@ export var NodeShape;
4155
4179
  kind: "Shacl",
4156
4180
  type: () => ({
4157
4181
  kind: "Maybe",
4158
- item: () => ({ kind: "Int" }),
4182
+ item: () => ({ kind: "BigInt" }),
4159
4183
  }),
4160
4184
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#minLength"),
4161
4185
  },
@@ -4371,26 +4395,26 @@ export var NodeShape;
4371
4395
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxCount"), _nodeShape.maxCount
4372
4396
  .toList()
4373
4397
  .flatMap((value) => [
4374
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
4398
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
4375
4399
  ]), options?.graph);
4376
4400
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxExclusive"), _nodeShape.maxExclusive.toList(), options?.graph);
4377
4401
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxInclusive"), _nodeShape.maxInclusive.toList(), options?.graph);
4378
4402
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#maxLength"), _nodeShape.maxLength
4379
4403
  .toList()
4380
4404
  .flatMap((value) => [
4381
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
4405
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
4382
4406
  ]), options?.graph);
4383
4407
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minCount"), _nodeShape.minCount
4384
4408
  .toList()
4385
4409
  .flatMap((value) => [
4386
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
4410
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
4387
4411
  ]), options?.graph);
4388
4412
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minExclusive"), _nodeShape.minExclusive.toList(), options?.graph);
4389
4413
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minInclusive"), _nodeShape.minInclusive.toList(), options?.graph);
4390
4414
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#minLength"), _nodeShape.minLength
4391
4415
  .toList()
4392
4416
  .flatMap((value) => [
4393
- $literalFactory.number(value, $RdfVocabularies.xsd.unsignedInt),
4417
+ $literalFactory.bigint(value, $RdfVocabularies.xsd.integer),
4394
4418
  ]), options?.graph);
4395
4419
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#node"), _nodeShape.node.toList(), options?.graph);
4396
4420
  resource.add(dataFactory.namedNode("http://www.w3.org/ns/shacl#nodeKind"), _nodeShape.nodeKind.toList(), options?.graph);
@@ -4624,7 +4648,7 @@ export var Shape;
4624
4648
  kind: "Shacl",
4625
4649
  type: () => ({
4626
4650
  kind: "Maybe",
4627
- item: () => ({ kind: "Int" }),
4651
+ item: () => ({ kind: "BigInt" }),
4628
4652
  }),
4629
4653
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#maxCount"),
4630
4654
  },
@@ -4648,7 +4672,7 @@ export var Shape;
4648
4672
  kind: "Shacl",
4649
4673
  type: () => ({
4650
4674
  kind: "Maybe",
4651
- item: () => ({ kind: "Int" }),
4675
+ item: () => ({ kind: "BigInt" }),
4652
4676
  }),
4653
4677
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#maxLength"),
4654
4678
  },
@@ -4656,7 +4680,7 @@ export var Shape;
4656
4680
  kind: "Shacl",
4657
4681
  type: () => ({
4658
4682
  kind: "Maybe",
4659
- item: () => ({ kind: "Int" }),
4683
+ item: () => ({ kind: "BigInt" }),
4660
4684
  }),
4661
4685
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#minCount"),
4662
4686
  },
@@ -4680,7 +4704,7 @@ export var Shape;
4680
4704
  kind: "Shacl",
4681
4705
  type: () => ({
4682
4706
  kind: "Maybe",
4683
- item: () => ({ kind: "Int" }),
4707
+ item: () => ({ kind: "BigInt" }),
4684
4708
  }),
4685
4709
  path: dataFactory.namedNode("http://www.w3.org/ns/shacl#minLength"),
4686
4710
  },
package/package.json CHANGED
@@ -44,5 +44,5 @@
44
44
  },
45
45
  "type": "module",
46
46
  "types": "./dist/index.d.ts",
47
- "version": "4.0.27"
47
+ "version": "4.0.28"
48
48
  }