@carrot-foundation/schemas 0.1.49 → 0.1.50
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +168 -192
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +132 -130
- package/dist/index.d.ts +132 -130
- package/dist/index.js +164 -192
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/schemas/ipfs/collection/collection.schema.json +2 -2
- package/schemas/ipfs/credit/credit.schema.json +2 -2
- package/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.example.json +6 -6
- package/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.schema.json +6 -17
- package/schemas/ipfs/credit-retirement-receipt/credit-retirement-receipt.example.json +5 -5
- package/schemas/ipfs/credit-retirement-receipt/credit-retirement-receipt.schema.json +5 -16
- package/schemas/ipfs/gas-id/gas-id.example.json +11 -10
- package/schemas/ipfs/gas-id/gas-id.schema.json +6 -5
- package/schemas/ipfs/mass-id/mass-id.example.json +3 -3
- package/schemas/ipfs/mass-id/mass-id.schema.json +11 -42
- package/schemas/ipfs/mass-id-audit/mass-id-audit.example.json +147 -147
- package/schemas/ipfs/mass-id-audit/mass-id-audit.schema.json +2 -2
- package/schemas/ipfs/methodology/methodology.example.json +84 -84
- package/schemas/ipfs/methodology/methodology.schema.json +2 -2
- package/schemas/ipfs/recycled-id/recycled-id.example.json +10 -9
- package/schemas/ipfs/recycled-id/recycled-id.schema.json +2 -2
- package/schemas/schema-hashes.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -36,7 +36,7 @@ declare const MassIDAttributeWasteSubtypeSchema: z.ZodObject<{
|
|
|
36
36
|
type MassIDAttributeWasteSubtype = z.infer<typeof MassIDAttributeWasteSubtypeSchema>;
|
|
37
37
|
declare const MassIDAttributeWeightSchema: z.ZodObject<{
|
|
38
38
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
39
|
-
trait_type: z.ZodLiteral<
|
|
39
|
+
trait_type: z.ZodLiteral<string>;
|
|
40
40
|
value: z.ZodNumber;
|
|
41
41
|
display_type: z.ZodLiteral<"number">;
|
|
42
42
|
}, z.core.$strict>;
|
|
@@ -165,22 +165,19 @@ declare const MassIDAttributeScaleTypeSchema: z.ZodObject<{
|
|
|
165
165
|
}, z.core.$strict>;
|
|
166
166
|
type MassIDAttributeScaleType = z.infer<typeof MassIDAttributeScaleTypeSchema>;
|
|
167
167
|
declare const MassIDAttributePickUpDateSchema: z.ZodObject<{
|
|
168
|
-
|
|
169
|
-
trait_type: z.ZodLiteral<"Pick-up Date">;
|
|
168
|
+
trait_type: z.ZodLiteral<string>;
|
|
170
169
|
value: z.ZodNumber;
|
|
171
170
|
display_type: z.ZodLiteral<"date">;
|
|
172
171
|
}, z.core.$strict>;
|
|
173
172
|
type MassIDAttributePickUpDate = z.infer<typeof MassIDAttributePickUpDateSchema>;
|
|
174
173
|
declare const MassIDAttributeDropOffDateSchema: z.ZodObject<{
|
|
175
|
-
|
|
176
|
-
trait_type: z.ZodLiteral<"Drop-off Date">;
|
|
174
|
+
trait_type: z.ZodLiteral<string>;
|
|
177
175
|
value: z.ZodNumber;
|
|
178
176
|
display_type: z.ZodLiteral<"date">;
|
|
179
177
|
}, z.core.$strict>;
|
|
180
178
|
type MassIDAttributeDropOffDate = z.infer<typeof MassIDAttributeDropOffDateSchema>;
|
|
181
179
|
declare const MassIDAttributeRecyclingDateSchema: z.ZodObject<{
|
|
182
|
-
|
|
183
|
-
trait_type: z.ZodLiteral<"Recycling Date">;
|
|
180
|
+
trait_type: z.ZodLiteral<string>;
|
|
184
181
|
value: z.ZodNumber;
|
|
185
182
|
display_type: z.ZodLiteral<"date">;
|
|
186
183
|
}, z.core.$strict>;
|
|
@@ -217,7 +214,7 @@ declare const MassIDAttributesSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObjec
|
|
|
217
214
|
}>;
|
|
218
215
|
}, z.core.$strict>, z.ZodObject<{
|
|
219
216
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
220
|
-
trait_type: z.ZodLiteral<
|
|
217
|
+
trait_type: z.ZodLiteral<string>;
|
|
221
218
|
value: z.ZodNumber;
|
|
222
219
|
display_type: z.ZodLiteral<"number">;
|
|
223
220
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -328,18 +325,15 @@ declare const MassIDAttributesSchema: z.ZodArray<z.ZodUnion<readonly [z.ZodObjec
|
|
|
328
325
|
"Weighbridge (Truck Scale)": "Weighbridge (Truck Scale)";
|
|
329
326
|
}>;
|
|
330
327
|
}, z.core.$strict>, z.ZodObject<{
|
|
331
|
-
|
|
332
|
-
trait_type: z.ZodLiteral<"Pick-up Date">;
|
|
328
|
+
trait_type: z.ZodLiteral<string>;
|
|
333
329
|
value: z.ZodNumber;
|
|
334
330
|
display_type: z.ZodLiteral<"date">;
|
|
335
331
|
}, z.core.$strict>, z.ZodObject<{
|
|
336
|
-
|
|
337
|
-
trait_type: z.ZodLiteral<"Drop-off Date">;
|
|
332
|
+
trait_type: z.ZodLiteral<string>;
|
|
338
333
|
value: z.ZodNumber;
|
|
339
334
|
display_type: z.ZodLiteral<"date">;
|
|
340
335
|
}, z.core.$strict>, z.ZodObject<{
|
|
341
|
-
|
|
342
|
-
trait_type: z.ZodLiteral<"Recycling Date">;
|
|
336
|
+
trait_type: z.ZodLiteral<string>;
|
|
343
337
|
value: z.ZodNumber;
|
|
344
338
|
display_type: z.ZodLiteral<"date">;
|
|
345
339
|
}, z.core.$strict>]>>;
|
|
@@ -816,7 +810,7 @@ declare const MassIDIpfsSchema: z.ZodObject<{
|
|
|
816
810
|
}>;
|
|
817
811
|
}, z.core.$strict>, z.ZodObject<{
|
|
818
812
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
819
|
-
trait_type: z.ZodLiteral<
|
|
813
|
+
trait_type: z.ZodLiteral<string>;
|
|
820
814
|
value: z.ZodNumber;
|
|
821
815
|
display_type: z.ZodLiteral<"number">;
|
|
822
816
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -927,18 +921,15 @@ declare const MassIDIpfsSchema: z.ZodObject<{
|
|
|
927
921
|
"Weighbridge (Truck Scale)": "Weighbridge (Truck Scale)";
|
|
928
922
|
}>;
|
|
929
923
|
}, z.core.$strict>, z.ZodObject<{
|
|
930
|
-
|
|
931
|
-
trait_type: z.ZodLiteral<"Pick-up Date">;
|
|
924
|
+
trait_type: z.ZodLiteral<string>;
|
|
932
925
|
value: z.ZodNumber;
|
|
933
926
|
display_type: z.ZodLiteral<"date">;
|
|
934
927
|
}, z.core.$strict>, z.ZodObject<{
|
|
935
|
-
|
|
936
|
-
trait_type: z.ZodLiteral<"Drop-off Date">;
|
|
928
|
+
trait_type: z.ZodLiteral<string>;
|
|
937
929
|
value: z.ZodNumber;
|
|
938
930
|
display_type: z.ZodLiteral<"date">;
|
|
939
931
|
}, z.core.$strict>, z.ZodObject<{
|
|
940
|
-
|
|
941
|
-
trait_type: z.ZodLiteral<"Recycling Date">;
|
|
932
|
+
trait_type: z.ZodLiteral<string>;
|
|
942
933
|
value: z.ZodNumber;
|
|
943
934
|
display_type: z.ZodLiteral<"date">;
|
|
944
935
|
}, z.core.$strict>]>>;
|
|
@@ -1118,19 +1109,21 @@ declare const GasIDAttributeGasTypeSchema: z.ZodObject<{
|
|
|
1118
1109
|
}>>;
|
|
1119
1110
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1120
1111
|
trait_type: z.ZodLiteral<"Gas Type">;
|
|
1121
|
-
value: z.
|
|
1112
|
+
value: z.ZodEnum<{
|
|
1113
|
+
"Methane (CH\u2084)": "Methane (CH₄)";
|
|
1114
|
+
}>;
|
|
1122
1115
|
}, z.core.$strict>;
|
|
1123
1116
|
type GasIDAttributeGasType = z.infer<typeof GasIDAttributeGasTypeSchema>;
|
|
1124
1117
|
declare const GasIDAttributeCo2ePreventedSchema: z.ZodObject<{
|
|
1125
1118
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1126
|
-
trait_type: z.ZodLiteral<
|
|
1119
|
+
trait_type: z.ZodLiteral<string>;
|
|
1127
1120
|
value: z.ZodNumber;
|
|
1128
1121
|
display_type: z.ZodLiteral<"number">;
|
|
1129
1122
|
}, z.core.$strict>;
|
|
1130
1123
|
type GasIDAttributeCo2ePrevented = z.infer<typeof GasIDAttributeCo2ePreventedSchema>;
|
|
1131
1124
|
declare const GasIDAttributeCreditAmountSchema: z.ZodObject<{
|
|
1132
1125
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1133
|
-
trait_type: z.ZodLiteral<
|
|
1126
|
+
trait_type: z.ZodLiteral<string>;
|
|
1134
1127
|
value: z.ZodNumber;
|
|
1135
1128
|
display_type: z.ZodLiteral<"number">;
|
|
1136
1129
|
}, z.core.$strict>;
|
|
@@ -1166,7 +1159,7 @@ declare const GasIDAttributeSourceWasteTypeSchema: z.ZodObject<{
|
|
|
1166
1159
|
type GasIDAttributeSourceWasteType = z.infer<typeof GasIDAttributeSourceWasteTypeSchema>;
|
|
1167
1160
|
declare const GasIDAttributeSourceWeightSchema: z.ZodObject<{
|
|
1168
1161
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1169
|
-
trait_type: z.ZodLiteral<
|
|
1162
|
+
trait_type: z.ZodLiteral<string>;
|
|
1170
1163
|
value: z.ZodNumber;
|
|
1171
1164
|
display_type: z.ZodLiteral<"number">;
|
|
1172
1165
|
}, z.core.$strict>;
|
|
@@ -1183,18 +1176,6 @@ declare const GasIDAttributeOriginCitySchema: z.ZodObject<{
|
|
|
1183
1176
|
value: z.ZodString;
|
|
1184
1177
|
}, z.core.$strict>;
|
|
1185
1178
|
type GasIDAttributeOriginCity = z.infer<typeof GasIDAttributeOriginCitySchema>;
|
|
1186
|
-
declare const GasIDAttributeRecyclerSchema: z.ZodObject<{
|
|
1187
|
-
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1188
|
-
number: "number";
|
|
1189
|
-
date: "date";
|
|
1190
|
-
boost_number: "boost_number";
|
|
1191
|
-
boost_percentage: "boost_percentage";
|
|
1192
|
-
}>>;
|
|
1193
|
-
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1194
|
-
trait_type: z.ZodLiteral<"Recycler">;
|
|
1195
|
-
value: z.ZodString;
|
|
1196
|
-
}, z.core.$strict>;
|
|
1197
|
-
type GasIDAttributeRecycler = z.infer<typeof GasIDAttributeRecyclerSchema>;
|
|
1198
1179
|
declare const GasIDAttributeMassIDTokenIdSchema: z.ZodObject<{
|
|
1199
1180
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1200
1181
|
number: "number";
|
|
@@ -1208,11 +1189,17 @@ declare const GasIDAttributeMassIDTokenIdSchema: z.ZodObject<{
|
|
|
1208
1189
|
}, z.core.$strict>;
|
|
1209
1190
|
type GasIDAttributeMassIDTokenId = z.infer<typeof GasIDAttributeMassIDTokenIdSchema>;
|
|
1210
1191
|
declare const GasIDAttributeMassIDRecyclingDateSchema: z.ZodObject<{
|
|
1211
|
-
trait_type: z.ZodLiteral<
|
|
1192
|
+
trait_type: z.ZodLiteral<string>;
|
|
1212
1193
|
value: z.ZodNumber;
|
|
1213
1194
|
display_type: z.ZodLiteral<"date">;
|
|
1214
1195
|
}, z.core.$strict>;
|
|
1215
1196
|
type GasIDAttributeMassIDRecyclingDate = z.infer<typeof GasIDAttributeMassIDRecyclingDateSchema>;
|
|
1197
|
+
declare const GasIDAttributeCertificateIssuanceDateSchema: z.ZodObject<{
|
|
1198
|
+
trait_type: z.ZodLiteral<string>;
|
|
1199
|
+
value: z.ZodNumber;
|
|
1200
|
+
display_type: z.ZodLiteral<"date">;
|
|
1201
|
+
}, z.core.$strict>;
|
|
1202
|
+
type GasIDAttributeCertificateIssuanceDate = z.infer<typeof GasIDAttributeCertificateIssuanceDateSchema>;
|
|
1216
1203
|
declare const GasIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
1217
1204
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1218
1205
|
number: "number";
|
|
@@ -1235,15 +1222,17 @@ declare const GasIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1235
1222
|
}>>;
|
|
1236
1223
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1237
1224
|
trait_type: z.ZodLiteral<"Gas Type">;
|
|
1238
|
-
value: z.
|
|
1225
|
+
value: z.ZodEnum<{
|
|
1226
|
+
"Methane (CH\u2084)": "Methane (CH₄)";
|
|
1227
|
+
}>;
|
|
1239
1228
|
}, z.core.$strict>, z.ZodObject<{
|
|
1240
1229
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1241
|
-
trait_type: z.ZodLiteral<
|
|
1230
|
+
trait_type: z.ZodLiteral<string>;
|
|
1242
1231
|
value: z.ZodNumber;
|
|
1243
1232
|
display_type: z.ZodLiteral<"number">;
|
|
1244
1233
|
}, z.core.$strict>, z.ZodObject<{
|
|
1245
1234
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1246
|
-
trait_type: z.ZodLiteral<
|
|
1235
|
+
trait_type: z.ZodLiteral<string>;
|
|
1247
1236
|
value: z.ZodNumber;
|
|
1248
1237
|
display_type: z.ZodLiteral<"number">;
|
|
1249
1238
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -1273,7 +1262,7 @@ declare const GasIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1273
1262
|
}>;
|
|
1274
1263
|
}, z.core.$strict>, z.ZodObject<{
|
|
1275
1264
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1276
|
-
trait_type: z.ZodLiteral<
|
|
1265
|
+
trait_type: z.ZodLiteral<string>;
|
|
1277
1266
|
value: z.ZodNumber;
|
|
1278
1267
|
display_type: z.ZodLiteral<"number">;
|
|
1279
1268
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -1286,16 +1275,6 @@ declare const GasIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1286
1275
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1287
1276
|
trait_type: z.ZodLiteral<"Origin City">;
|
|
1288
1277
|
value: z.ZodString;
|
|
1289
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1290
|
-
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1291
|
-
number: "number";
|
|
1292
|
-
date: "date";
|
|
1293
|
-
boost_number: "boost_number";
|
|
1294
|
-
boost_percentage: "boost_percentage";
|
|
1295
|
-
}>>;
|
|
1296
|
-
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1297
|
-
trait_type: z.ZodLiteral<"Recycler">;
|
|
1298
|
-
value: z.ZodString;
|
|
1299
1278
|
}, z.core.$strict>, z.ZodObject<{
|
|
1300
1279
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1301
1280
|
number: "number";
|
|
@@ -1307,14 +1286,20 @@ declare const GasIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1307
1286
|
trait_type: z.ZodLiteral<"MassID">;
|
|
1308
1287
|
value: z.ZodString;
|
|
1309
1288
|
}, z.core.$strict>, z.ZodObject<{
|
|
1310
|
-
trait_type: z.ZodLiteral<
|
|
1289
|
+
trait_type: z.ZodLiteral<string>;
|
|
1290
|
+
value: z.ZodNumber;
|
|
1291
|
+
display_type: z.ZodLiteral<"date">;
|
|
1292
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1293
|
+
trait_type: z.ZodLiteral<string>;
|
|
1311
1294
|
value: z.ZodNumber;
|
|
1312
1295
|
display_type: z.ZodLiteral<"date">;
|
|
1313
1296
|
}, z.core.$strict>], null>;
|
|
1314
1297
|
type GasIDAttributes = z.infer<typeof GasIDAttributesSchema>;
|
|
1315
1298
|
|
|
1316
1299
|
declare const GasIDSummarySchema: z.ZodObject<{
|
|
1317
|
-
gas_type: z.
|
|
1300
|
+
gas_type: z.ZodEnum<{
|
|
1301
|
+
"Methane (CH\u2084)": "Methane (CH₄)";
|
|
1302
|
+
}>;
|
|
1318
1303
|
credit_type: z.ZodEnum<{
|
|
1319
1304
|
Biowaste: "Biowaste";
|
|
1320
1305
|
"Carbon (CH\u2084)": "Carbon (CH₄)";
|
|
@@ -1342,7 +1327,9 @@ declare const PreventedEmissionsCalculationSchema: z.ZodObject<{
|
|
|
1342
1327
|
type PreventedEmissionsCalculation = z.infer<typeof PreventedEmissionsCalculationSchema>;
|
|
1343
1328
|
declare const GasIDDataSchema: z.ZodObject<{
|
|
1344
1329
|
summary: z.ZodObject<{
|
|
1345
|
-
gas_type: z.
|
|
1330
|
+
gas_type: z.ZodEnum<{
|
|
1331
|
+
"Methane (CH\u2084)": "Methane (CH₄)";
|
|
1332
|
+
}>;
|
|
1346
1333
|
credit_type: z.ZodEnum<{
|
|
1347
1334
|
Biowaste: "Biowaste";
|
|
1348
1335
|
"Carbon (CH\u2084)": "Carbon (CH₄)";
|
|
@@ -1529,7 +1516,9 @@ declare const GasIDIpfsSchema: z.ZodObject<{
|
|
|
1529
1516
|
}, z.core.$strict>;
|
|
1530
1517
|
data: z.ZodObject<{
|
|
1531
1518
|
summary: z.ZodObject<{
|
|
1532
|
-
gas_type: z.
|
|
1519
|
+
gas_type: z.ZodEnum<{
|
|
1520
|
+
"Methane (CH\u2084)": "Methane (CH₄)";
|
|
1521
|
+
}>;
|
|
1533
1522
|
credit_type: z.ZodEnum<{
|
|
1534
1523
|
Biowaste: "Biowaste";
|
|
1535
1524
|
"Carbon (CH\u2084)": "Carbon (CH₄)";
|
|
@@ -1663,14 +1652,14 @@ declare const RecycledIDAttributeMethodologySchema: z.ZodObject<{
|
|
|
1663
1652
|
type RecycledIDAttributeMethodology = z.infer<typeof RecycledIDAttributeMethodologySchema>;
|
|
1664
1653
|
declare const RecycledIDAttributeRecycledMassWeightSchema: z.ZodObject<{
|
|
1665
1654
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1666
|
-
trait_type: z.ZodLiteral<
|
|
1655
|
+
trait_type: z.ZodLiteral<string>;
|
|
1667
1656
|
value: z.ZodNumber;
|
|
1668
1657
|
display_type: z.ZodLiteral<"number">;
|
|
1669
1658
|
}, z.core.$strict>;
|
|
1670
1659
|
type RecycledIDAttributeRecycledMassWeight = z.infer<typeof RecycledIDAttributeRecycledMassWeightSchema>;
|
|
1671
1660
|
declare const RecycledIDAttributeCreditAmountSchema: z.ZodObject<{
|
|
1672
1661
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1673
|
-
trait_type: z.ZodLiteral<
|
|
1662
|
+
trait_type: z.ZodLiteral<string>;
|
|
1674
1663
|
value: z.ZodNumber;
|
|
1675
1664
|
display_type: z.ZodLiteral<"number">;
|
|
1676
1665
|
}, z.core.$strict>;
|
|
@@ -1706,7 +1695,7 @@ declare const RecycledIDAttributeSourceWasteTypeSchema: z.ZodObject<{
|
|
|
1706
1695
|
type RecycledIDAttributeSourceWasteType = z.infer<typeof RecycledIDAttributeSourceWasteTypeSchema>;
|
|
1707
1696
|
declare const RecycledIDAttributeSourceWeightSchema: z.ZodObject<{
|
|
1708
1697
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1709
|
-
trait_type: z.ZodLiteral<
|
|
1698
|
+
trait_type: z.ZodLiteral<string>;
|
|
1710
1699
|
value: z.ZodNumber;
|
|
1711
1700
|
display_type: z.ZodLiteral<"number">;
|
|
1712
1701
|
}, z.core.$strict>;
|
|
@@ -1723,18 +1712,6 @@ declare const RecycledIDAttributeOriginCitySchema: z.ZodObject<{
|
|
|
1723
1712
|
value: z.ZodString;
|
|
1724
1713
|
}, z.core.$strict>;
|
|
1725
1714
|
type RecycledIDAttributeOriginCity = z.infer<typeof RecycledIDAttributeOriginCitySchema>;
|
|
1726
|
-
declare const RecycledIDAttributeRecyclerSchema: z.ZodObject<{
|
|
1727
|
-
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1728
|
-
number: "number";
|
|
1729
|
-
date: "date";
|
|
1730
|
-
boost_number: "boost_number";
|
|
1731
|
-
boost_percentage: "boost_percentage";
|
|
1732
|
-
}>>;
|
|
1733
|
-
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1734
|
-
trait_type: z.ZodLiteral<"Recycler">;
|
|
1735
|
-
value: z.ZodString;
|
|
1736
|
-
}, z.core.$strict>;
|
|
1737
|
-
type RecycledIDAttributeRecycler = z.infer<typeof RecycledIDAttributeRecyclerSchema>;
|
|
1738
1715
|
declare const RecycledIDAttributeMassIDTokenIdSchema: z.ZodObject<{
|
|
1739
1716
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1740
1717
|
number: "number";
|
|
@@ -1748,11 +1725,17 @@ declare const RecycledIDAttributeMassIDTokenIdSchema: z.ZodObject<{
|
|
|
1748
1725
|
}, z.core.$strict>;
|
|
1749
1726
|
type RecycledIDAttributeMassIDTokenId = z.infer<typeof RecycledIDAttributeMassIDTokenIdSchema>;
|
|
1750
1727
|
declare const RecycledIDAttributeMassIDRecyclingDateSchema: z.ZodObject<{
|
|
1751
|
-
trait_type: z.ZodLiteral<
|
|
1728
|
+
trait_type: z.ZodLiteral<string>;
|
|
1752
1729
|
value: z.ZodNumber;
|
|
1753
1730
|
display_type: z.ZodLiteral<"date">;
|
|
1754
1731
|
}, z.core.$strict>;
|
|
1755
1732
|
type RecycledIDAttributeMassIDRecyclingDate = z.infer<typeof RecycledIDAttributeMassIDRecyclingDateSchema>;
|
|
1733
|
+
declare const RecycledIDAttributeCertificateIssuanceDateSchema: z.ZodObject<{
|
|
1734
|
+
trait_type: z.ZodLiteral<string>;
|
|
1735
|
+
value: z.ZodNumber;
|
|
1736
|
+
display_type: z.ZodLiteral<"date">;
|
|
1737
|
+
}, z.core.$strict>;
|
|
1738
|
+
type RecycledIDAttributeCertificateIssuanceDate = z.infer<typeof RecycledIDAttributeCertificateIssuanceDateSchema>;
|
|
1756
1739
|
declare const RecycledIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
1757
1740
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1758
1741
|
number: "number";
|
|
@@ -1768,12 +1751,12 @@ declare const RecycledIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1768
1751
|
}>;
|
|
1769
1752
|
}, z.core.$strict>, z.ZodObject<{
|
|
1770
1753
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1771
|
-
trait_type: z.ZodLiteral<
|
|
1754
|
+
trait_type: z.ZodLiteral<string>;
|
|
1772
1755
|
value: z.ZodNumber;
|
|
1773
1756
|
display_type: z.ZodLiteral<"number">;
|
|
1774
1757
|
}, z.core.$strict>, z.ZodObject<{
|
|
1775
1758
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1776
|
-
trait_type: z.ZodLiteral<
|
|
1759
|
+
trait_type: z.ZodLiteral<string>;
|
|
1777
1760
|
value: z.ZodNumber;
|
|
1778
1761
|
display_type: z.ZodLiteral<"number">;
|
|
1779
1762
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -1803,7 +1786,7 @@ declare const RecycledIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1803
1786
|
}>;
|
|
1804
1787
|
}, z.core.$strict>, z.ZodObject<{
|
|
1805
1788
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1806
|
-
trait_type: z.ZodLiteral<
|
|
1789
|
+
trait_type: z.ZodLiteral<string>;
|
|
1807
1790
|
value: z.ZodNumber;
|
|
1808
1791
|
display_type: z.ZodLiteral<"number">;
|
|
1809
1792
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -1816,16 +1799,6 @@ declare const RecycledIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1816
1799
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1817
1800
|
trait_type: z.ZodLiteral<"Origin City">;
|
|
1818
1801
|
value: z.ZodString;
|
|
1819
|
-
}, z.core.$strict>, z.ZodObject<{
|
|
1820
|
-
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1821
|
-
number: "number";
|
|
1822
|
-
date: "date";
|
|
1823
|
-
boost_number: "boost_number";
|
|
1824
|
-
boost_percentage: "boost_percentage";
|
|
1825
|
-
}>>;
|
|
1826
|
-
max_value: z.ZodOptional<z.ZodNumber>;
|
|
1827
|
-
trait_type: z.ZodLiteral<"Recycler">;
|
|
1828
|
-
value: z.ZodString;
|
|
1829
1802
|
}, z.core.$strict>, z.ZodObject<{
|
|
1830
1803
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
1831
1804
|
number: "number";
|
|
@@ -1837,7 +1810,11 @@ declare const RecycledIDAttributesSchema: z.ZodTuple<[z.ZodObject<{
|
|
|
1837
1810
|
trait_type: z.ZodLiteral<"MassID">;
|
|
1838
1811
|
value: z.ZodString;
|
|
1839
1812
|
}, z.core.$strict>, z.ZodObject<{
|
|
1840
|
-
trait_type: z.ZodLiteral<
|
|
1813
|
+
trait_type: z.ZodLiteral<string>;
|
|
1814
|
+
value: z.ZodNumber;
|
|
1815
|
+
display_type: z.ZodLiteral<"date">;
|
|
1816
|
+
}, z.core.$strict>, z.ZodObject<{
|
|
1817
|
+
trait_type: z.ZodLiteral<string>;
|
|
1841
1818
|
value: z.ZodNumber;
|
|
1842
1819
|
display_type: z.ZodLiteral<"date">;
|
|
1843
1820
|
}, z.core.$strict>], null>;
|
|
@@ -2146,22 +2123,21 @@ declare const CreditPurchaseReceiptAttributesSchema: z.ZodArray<z.ZodUnion<reado
|
|
|
2146
2123
|
display_type: z.ZodLiteral<"number">;
|
|
2147
2124
|
}, z.core.$strict>, z.ZodObject<{
|
|
2148
2125
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2149
|
-
trait_type: z.ZodLiteral<
|
|
2126
|
+
trait_type: z.ZodLiteral<string>;
|
|
2150
2127
|
value: z.ZodNumber;
|
|
2151
2128
|
display_type: z.ZodLiteral<"number">;
|
|
2152
2129
|
}, z.core.$strict>, z.ZodObject<{
|
|
2153
2130
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2154
|
-
trait_type: z.ZodLiteral<
|
|
2131
|
+
trait_type: z.ZodLiteral<string>;
|
|
2155
2132
|
value: z.ZodNumber;
|
|
2156
2133
|
display_type: z.ZodLiteral<"number">;
|
|
2157
2134
|
}, z.core.$strict>, z.ZodObject<{
|
|
2158
|
-
|
|
2159
|
-
trait_type: z.ZodLiteral<"Purchase Date">;
|
|
2135
|
+
trait_type: z.ZodLiteral<string>;
|
|
2160
2136
|
value: z.ZodNumber;
|
|
2161
2137
|
display_type: z.ZodLiteral<"date">;
|
|
2162
2138
|
}, z.core.$strict>, z.ZodObject<{
|
|
2163
2139
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2164
|
-
trait_type: z.ZodLiteral<
|
|
2140
|
+
trait_type: z.ZodLiteral<string>;
|
|
2165
2141
|
value: z.ZodNumber;
|
|
2166
2142
|
display_type: z.ZodLiteral<"number">;
|
|
2167
2143
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -2373,6 +2349,37 @@ declare const NftIpfsSchema: z.ZodObject<{
|
|
|
2373
2349
|
}, z.core.$strict>;
|
|
2374
2350
|
type NftIpfs = z.infer<typeof NftIpfsSchema>;
|
|
2375
2351
|
|
|
2352
|
+
declare function createDateAttributeSchema(params: {
|
|
2353
|
+
traitType: string;
|
|
2354
|
+
title: string;
|
|
2355
|
+
description: string;
|
|
2356
|
+
omitMaxValue?: boolean;
|
|
2357
|
+
}): z.ZodObject<{
|
|
2358
|
+
trait_type: z.ZodLiteral<string>;
|
|
2359
|
+
value: z.ZodNumber;
|
|
2360
|
+
display_type: z.ZodLiteral<"date">;
|
|
2361
|
+
}, z.core.$strict>;
|
|
2362
|
+
declare function createWeightAttributeSchema(params: {
|
|
2363
|
+
traitType: string;
|
|
2364
|
+
title: string;
|
|
2365
|
+
description: string;
|
|
2366
|
+
}): z.ZodObject<{
|
|
2367
|
+
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2368
|
+
trait_type: z.ZodLiteral<string>;
|
|
2369
|
+
value: z.ZodNumber;
|
|
2370
|
+
display_type: z.ZodLiteral<"number">;
|
|
2371
|
+
}, z.core.$strict>;
|
|
2372
|
+
declare function createNumericAttributeSchema(params: {
|
|
2373
|
+
traitType: string;
|
|
2374
|
+
title: string;
|
|
2375
|
+
description: string;
|
|
2376
|
+
valueSchema: z.ZodNumber;
|
|
2377
|
+
}): z.ZodObject<{
|
|
2378
|
+
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2379
|
+
trait_type: z.ZodLiteral<string>;
|
|
2380
|
+
value: z.ZodNumber;
|
|
2381
|
+
display_type: z.ZodLiteral<"number">;
|
|
2382
|
+
}, z.core.$strict>;
|
|
2376
2383
|
declare const MethodologyAttributeSchema: z.ZodObject<{
|
|
2377
2384
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
2378
2385
|
number: "number";
|
|
@@ -2390,7 +2397,7 @@ declare const MethodologyAttributeSchema: z.ZodObject<{
|
|
|
2390
2397
|
type MethodologyAttribute = z.infer<typeof MethodologyAttributeSchema>;
|
|
2391
2398
|
declare const CreditAmountAttributeSchema: z.ZodObject<{
|
|
2392
2399
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2393
|
-
trait_type: z.ZodLiteral<
|
|
2400
|
+
trait_type: z.ZodLiteral<string>;
|
|
2394
2401
|
value: z.ZodNumber;
|
|
2395
2402
|
display_type: z.ZodLiteral<"number">;
|
|
2396
2403
|
}, z.core.$strict>;
|
|
@@ -2426,12 +2433,12 @@ declare const SourceWasteTypeAttributeSchema: z.ZodObject<{
|
|
|
2426
2433
|
type SourceWasteTypeAttribute = z.infer<typeof SourceWasteTypeAttributeSchema>;
|
|
2427
2434
|
declare const SourceWeightAttributeSchema: z.ZodObject<{
|
|
2428
2435
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2429
|
-
trait_type: z.ZodLiteral<
|
|
2436
|
+
trait_type: z.ZodLiteral<string>;
|
|
2430
2437
|
value: z.ZodNumber;
|
|
2431
2438
|
display_type: z.ZodLiteral<"number">;
|
|
2432
2439
|
}, z.core.$strict>;
|
|
2433
2440
|
type SourceWeightAttribute = z.infer<typeof SourceWeightAttributeSchema>;
|
|
2434
|
-
declare const
|
|
2441
|
+
declare const MassIDTokenIdAttributeSchema: z.ZodObject<{
|
|
2435
2442
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
2436
2443
|
number: "number";
|
|
2437
2444
|
date: "date";
|
|
@@ -2439,23 +2446,23 @@ declare const OriginCityAttributeSchema: z.ZodObject<{
|
|
|
2439
2446
|
boost_percentage: "boost_percentage";
|
|
2440
2447
|
}>>;
|
|
2441
2448
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2442
|
-
trait_type: z.ZodLiteral<"
|
|
2449
|
+
trait_type: z.ZodLiteral<"MassID">;
|
|
2443
2450
|
value: z.ZodString;
|
|
2444
2451
|
}, z.core.$strict>;
|
|
2445
|
-
type
|
|
2446
|
-
declare const
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
boost_number: "boost_number";
|
|
2451
|
-
boost_percentage: "boost_percentage";
|
|
2452
|
-
}>>;
|
|
2453
|
-
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2454
|
-
trait_type: z.ZodLiteral<"Recycler">;
|
|
2455
|
-
value: z.ZodString;
|
|
2452
|
+
type MassIDTokenIdAttribute = z.infer<typeof MassIDTokenIdAttributeSchema>;
|
|
2453
|
+
declare const MassIDRecyclingDateAttributeSchema: z.ZodObject<{
|
|
2454
|
+
trait_type: z.ZodLiteral<string>;
|
|
2455
|
+
value: z.ZodNumber;
|
|
2456
|
+
display_type: z.ZodLiteral<"date">;
|
|
2456
2457
|
}, z.core.$strict>;
|
|
2457
|
-
type
|
|
2458
|
-
declare const
|
|
2458
|
+
type MassIDRecyclingDateAttribute = z.infer<typeof MassIDRecyclingDateAttributeSchema>;
|
|
2459
|
+
declare const CertificateIssuanceDateAttributeSchema: z.ZodObject<{
|
|
2460
|
+
trait_type: z.ZodLiteral<string>;
|
|
2461
|
+
value: z.ZodNumber;
|
|
2462
|
+
display_type: z.ZodLiteral<"date">;
|
|
2463
|
+
}, z.core.$strict>;
|
|
2464
|
+
type CertificateIssuanceDateAttribute = z.infer<typeof CertificateIssuanceDateAttributeSchema>;
|
|
2465
|
+
declare const OriginCityAttributeSchema: z.ZodObject<{
|
|
2459
2466
|
display_type: z.ZodOptional<z.ZodEnum<{
|
|
2460
2467
|
number: "number";
|
|
2461
2468
|
date: "date";
|
|
@@ -2463,16 +2470,10 @@ declare const MassIDTokenIdAttributeSchema: z.ZodObject<{
|
|
|
2463
2470
|
boost_percentage: "boost_percentage";
|
|
2464
2471
|
}>>;
|
|
2465
2472
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
2466
|
-
trait_type: z.ZodLiteral<"
|
|
2473
|
+
trait_type: z.ZodLiteral<"Origin City">;
|
|
2467
2474
|
value: z.ZodString;
|
|
2468
2475
|
}, z.core.$strict>;
|
|
2469
|
-
type
|
|
2470
|
-
declare const MassIDRecyclingDateAttributeSchema: z.ZodObject<{
|
|
2471
|
-
trait_type: z.ZodLiteral<"MassID Recycling Date">;
|
|
2472
|
-
value: z.ZodNumber;
|
|
2473
|
-
display_type: z.ZodLiteral<"date">;
|
|
2474
|
-
}, z.core.$strict>;
|
|
2475
|
-
type MassIDRecyclingDateAttribute = z.infer<typeof MassIDRecyclingDateAttributeSchema>;
|
|
2476
|
+
type OriginCityAttribute = z.infer<typeof OriginCityAttributeSchema>;
|
|
2476
2477
|
|
|
2477
2478
|
declare const NonEmptyStringSchema: z.ZodString;
|
|
2478
2479
|
type NonEmptyString = z.infer<typeof NonEmptyStringSchema>;
|
|
@@ -2610,6 +2611,10 @@ declare const CreditTypeSchema: z.ZodEnum<{
|
|
|
2610
2611
|
"Carbon (CH\u2084)": "Carbon (CH₄)";
|
|
2611
2612
|
}>;
|
|
2612
2613
|
type CreditType = z.infer<typeof CreditTypeSchema>;
|
|
2614
|
+
declare const GasTypeSchema: z.ZodEnum<{
|
|
2615
|
+
"Methane (CH\u2084)": "Methane (CH₄)";
|
|
2616
|
+
}>;
|
|
2617
|
+
type GasType = z.infer<typeof GasTypeSchema>;
|
|
2613
2618
|
declare const VehicleTypeSchema: z.ZodEnum<{
|
|
2614
2619
|
Bicycle: "Bicycle";
|
|
2615
2620
|
Boat: "Boat";
|
|
@@ -3581,22 +3586,21 @@ declare const CreditPurchaseReceiptIpfsSchema: z.ZodObject<{
|
|
|
3581
3586
|
display_type: z.ZodLiteral<"number">;
|
|
3582
3587
|
}, z.core.$strict>, z.ZodObject<{
|
|
3583
3588
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
3584
|
-
trait_type: z.ZodLiteral<
|
|
3589
|
+
trait_type: z.ZodLiteral<string>;
|
|
3585
3590
|
value: z.ZodNumber;
|
|
3586
3591
|
display_type: z.ZodLiteral<"number">;
|
|
3587
3592
|
}, z.core.$strict>, z.ZodObject<{
|
|
3588
3593
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
3589
|
-
trait_type: z.ZodLiteral<
|
|
3594
|
+
trait_type: z.ZodLiteral<string>;
|
|
3590
3595
|
value: z.ZodNumber;
|
|
3591
3596
|
display_type: z.ZodLiteral<"number">;
|
|
3592
3597
|
}, z.core.$strict>, z.ZodObject<{
|
|
3593
|
-
|
|
3594
|
-
trait_type: z.ZodLiteral<"Purchase Date">;
|
|
3598
|
+
trait_type: z.ZodLiteral<string>;
|
|
3595
3599
|
value: z.ZodNumber;
|
|
3596
3600
|
display_type: z.ZodLiteral<"date">;
|
|
3597
3601
|
}, z.core.$strict>, z.ZodObject<{
|
|
3598
3602
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
3599
|
-
trait_type: z.ZodLiteral<
|
|
3603
|
+
trait_type: z.ZodLiteral<string>;
|
|
3600
3604
|
value: z.ZodNumber;
|
|
3601
3605
|
display_type: z.ZodLiteral<"number">;
|
|
3602
3606
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -3772,7 +3776,7 @@ declare const CreditRetirementReceiptAttributesSchema: z.ZodArray<z.ZodUnion<rea
|
|
|
3772
3776
|
display_type: z.ZodLiteral<"number">;
|
|
3773
3777
|
}, z.core.$strict>, z.ZodObject<{
|
|
3774
3778
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
3775
|
-
trait_type: z.ZodLiteral<
|
|
3779
|
+
trait_type: z.ZodLiteral<string>;
|
|
3776
3780
|
value: z.ZodNumber;
|
|
3777
3781
|
display_type: z.ZodLiteral<"number">;
|
|
3778
3782
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -3796,13 +3800,12 @@ declare const CreditRetirementReceiptAttributesSchema: z.ZodArray<z.ZodUnion<rea
|
|
|
3796
3800
|
trait_type: z.ZodLiteral<"Credit Holder">;
|
|
3797
3801
|
value: z.ZodString;
|
|
3798
3802
|
}, z.core.$strict>, z.ZodObject<{
|
|
3799
|
-
|
|
3800
|
-
trait_type: z.ZodLiteral<"Retirement Date">;
|
|
3803
|
+
trait_type: z.ZodLiteral<string>;
|
|
3801
3804
|
value: z.ZodNumber;
|
|
3802
3805
|
display_type: z.ZodLiteral<"date">;
|
|
3803
3806
|
}, z.core.$strict>, z.ZodObject<{
|
|
3804
3807
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
3805
|
-
trait_type: z.ZodLiteral<
|
|
3808
|
+
trait_type: z.ZodLiteral<string>;
|
|
3806
3809
|
value: z.ZodNumber;
|
|
3807
3810
|
display_type: z.ZodLiteral<"number">;
|
|
3808
3811
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -4162,7 +4165,7 @@ declare const CreditRetirementReceiptIpfsSchema: z.ZodObject<{
|
|
|
4162
4165
|
display_type: z.ZodLiteral<"number">;
|
|
4163
4166
|
}, z.core.$strict>, z.ZodObject<{
|
|
4164
4167
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
4165
|
-
trait_type: z.ZodLiteral<
|
|
4168
|
+
trait_type: z.ZodLiteral<string>;
|
|
4166
4169
|
value: z.ZodNumber;
|
|
4167
4170
|
display_type: z.ZodLiteral<"number">;
|
|
4168
4171
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -4186,13 +4189,12 @@ declare const CreditRetirementReceiptIpfsSchema: z.ZodObject<{
|
|
|
4186
4189
|
trait_type: z.ZodLiteral<"Credit Holder">;
|
|
4187
4190
|
value: z.ZodString;
|
|
4188
4191
|
}, z.core.$strict>, z.ZodObject<{
|
|
4189
|
-
|
|
4190
|
-
trait_type: z.ZodLiteral<"Retirement Date">;
|
|
4192
|
+
trait_type: z.ZodLiteral<string>;
|
|
4191
4193
|
value: z.ZodNumber;
|
|
4192
4194
|
display_type: z.ZodLiteral<"date">;
|
|
4193
4195
|
}, z.core.$strict>, z.ZodObject<{
|
|
4194
4196
|
max_value: z.ZodOptional<z.ZodNumber>;
|
|
4195
|
-
trait_type: z.ZodLiteral<
|
|
4197
|
+
trait_type: z.ZodLiteral<string>;
|
|
4196
4198
|
value: z.ZodNumber;
|
|
4197
4199
|
display_type: z.ZodLiteral<"number">;
|
|
4198
4200
|
}, z.core.$strict>, z.ZodObject<{
|
|
@@ -4703,4 +4705,4 @@ declare const MassIDAuditDataSchema: z.ZodObject<{
|
|
|
4703
4705
|
}, z.core.$strict>;
|
|
4704
4706
|
type MassIDAuditData = z.infer<typeof MassIDAuditDataSchema>;
|
|
4705
4707
|
|
|
4706
|
-
export { ALLOWED_BLOCKCHAIN_NETWORKS, type AccreditedParticipant, AccreditedParticipantSchema, type AccreditedParticipants, AccreditedParticipantsSchema, type AuditReference, AuditReferenceSchema, type AuditResult, AuditResultSchema, type AuditRuleDefinition, AuditRuleDefinitionSchema, type AuditRuleDefinitions, AuditRuleDefinitionsSchema, type AuditRuleExecutionResult, AuditRuleExecutionResultSchema, type AuditRuleExecutionResults, AuditRuleExecutionResultsSchema, BLOCKCHAIN_NETWORK_CONFIG, BRAZIL_COUNTRY_CODE, BRAZIL_MUNICIPALITIES, BRAZIL_MUNICIPALITIES_NAMES, BRAZIL_SUBDIVISION_CODES, type BaseIpfs, BaseIpfsSchema, type BlockchainChainId, BlockchainChainIdSchema, type BlockchainNetworkName, BlockchainNetworkNameSchema, type BlockchainReference, type CalculationValue, type City, CitySchema, type Collection, type CollectionName, CollectionNameSchema, CollectionSchema, CollectionSchemaMeta, type CollectionSlug, CollectionSlugSchema, type ContainerType, ContainerTypeSchema, type Coordinates, CoordinatesSchema, type Credit, type CreditAmount, type CreditAmountAttribute, CreditAmountAttributeSchema, CreditAmountSchema, type CreditPurchaseReceiptAttributes, CreditPurchaseReceiptAttributesSchema, type CreditPurchaseReceiptBuyer, type CreditPurchaseReceiptCertificate, type CreditPurchaseReceiptCollection, type CreditPurchaseReceiptCredit, type CreditPurchaseReceiptData, CreditPurchaseReceiptDataSchema, type CreditPurchaseReceiptIdentity, type CreditPurchaseReceiptIpfs, CreditPurchaseReceiptIpfsSchema, CreditPurchaseReceiptIpfsSchemaMeta, type CreditPurchaseReceiptParticipantReward, type CreditPurchaseReceiptParties, type CreditPurchaseReceiptReceiver, type CreditPurchaseReceiptReference, type CreditPurchaseReceiptRetirement, type CreditPurchaseReceiptRetirementReceipt, type CreditPurchaseReceiptSummary, CreditPurchaseReceiptSummarySchema, type CreditRetirementMassIdReference, type CreditRetirementReceiptAttributes, CreditRetirementReceiptAttributesSchema, type CreditRetirementReceiptBeneficiary, type CreditRetirementReceiptCertificate, type CreditRetirementReceiptCertificateCredit, type CreditRetirementReceiptCollection, type CreditRetirementReceiptCredit, type CreditRetirementReceiptCreditHolder, type CreditRetirementReceiptData, CreditRetirementReceiptDataSchema, type CreditRetirementReceiptIdentity, type CreditRetirementReceiptIpfs, CreditRetirementReceiptIpfsSchema, CreditRetirementReceiptIpfsSchemaMeta, type CreditRetirementReceiptSummary, CreditRetirementReceiptSummarySchema, CreditSchema, CreditSchemaMeta, type CreditTokenName, CreditTokenNameSchema, type CreditTokenSlug, CreditTokenSlugSchema, type CreditTokenSymbol, CreditTokenSymbolSchema, type CreditType, type CreditTypeAttribute, CreditTypeAttributeSchema, CreditTypeSchema, type DistributionNotes, DistributionNotesSchema, EPSILON, type EnsDomain, EnsDomainSchema, type EthereumAddress, EthereumAddressSchema, type ExternalId, ExternalIdSchema, type ExternalLink, type ExternalUrl, ExternalUrlSchema, type GasIDAttributeCo2ePrevented, type GasIDAttributeCreditAmount, type GasIDAttributeCreditType, type GasIDAttributeGasType, type GasIDAttributeMassIDRecyclingDate, type GasIDAttributeMassIDTokenId, type GasIDAttributeMethodology, type GasIDAttributeOriginCity, type
|
|
4708
|
+
export { ALLOWED_BLOCKCHAIN_NETWORKS, type AccreditedParticipant, AccreditedParticipantSchema, type AccreditedParticipants, AccreditedParticipantsSchema, type AuditReference, AuditReferenceSchema, type AuditResult, AuditResultSchema, type AuditRuleDefinition, AuditRuleDefinitionSchema, type AuditRuleDefinitions, AuditRuleDefinitionsSchema, type AuditRuleExecutionResult, AuditRuleExecutionResultSchema, type AuditRuleExecutionResults, AuditRuleExecutionResultsSchema, BLOCKCHAIN_NETWORK_CONFIG, BRAZIL_COUNTRY_CODE, BRAZIL_MUNICIPALITIES, BRAZIL_MUNICIPALITIES_NAMES, BRAZIL_SUBDIVISION_CODES, type BaseIpfs, BaseIpfsSchema, type BlockchainChainId, BlockchainChainIdSchema, type BlockchainNetworkName, BlockchainNetworkNameSchema, type BlockchainReference, type CalculationValue, type CertificateIssuanceDateAttribute, CertificateIssuanceDateAttributeSchema, type City, CitySchema, type Collection, type CollectionName, CollectionNameSchema, CollectionSchema, CollectionSchemaMeta, type CollectionSlug, CollectionSlugSchema, type ContainerType, ContainerTypeSchema, type Coordinates, CoordinatesSchema, type Credit, type CreditAmount, type CreditAmountAttribute, CreditAmountAttributeSchema, CreditAmountSchema, type CreditPurchaseReceiptAttributes, CreditPurchaseReceiptAttributesSchema, type CreditPurchaseReceiptBuyer, type CreditPurchaseReceiptCertificate, type CreditPurchaseReceiptCollection, type CreditPurchaseReceiptCredit, type CreditPurchaseReceiptData, CreditPurchaseReceiptDataSchema, type CreditPurchaseReceiptIdentity, type CreditPurchaseReceiptIpfs, CreditPurchaseReceiptIpfsSchema, CreditPurchaseReceiptIpfsSchemaMeta, type CreditPurchaseReceiptParticipantReward, type CreditPurchaseReceiptParties, type CreditPurchaseReceiptReceiver, type CreditPurchaseReceiptReference, type CreditPurchaseReceiptRetirement, type CreditPurchaseReceiptRetirementReceipt, type CreditPurchaseReceiptSummary, CreditPurchaseReceiptSummarySchema, type CreditRetirementMassIdReference, type CreditRetirementReceiptAttributes, CreditRetirementReceiptAttributesSchema, type CreditRetirementReceiptBeneficiary, type CreditRetirementReceiptCertificate, type CreditRetirementReceiptCertificateCredit, type CreditRetirementReceiptCollection, type CreditRetirementReceiptCredit, type CreditRetirementReceiptCreditHolder, type CreditRetirementReceiptData, CreditRetirementReceiptDataSchema, type CreditRetirementReceiptIdentity, type CreditRetirementReceiptIpfs, CreditRetirementReceiptIpfsSchema, CreditRetirementReceiptIpfsSchemaMeta, type CreditRetirementReceiptSummary, CreditRetirementReceiptSummarySchema, CreditSchema, CreditSchemaMeta, type CreditTokenName, CreditTokenNameSchema, type CreditTokenSlug, CreditTokenSlugSchema, type CreditTokenSymbol, CreditTokenSymbolSchema, type CreditType, type CreditTypeAttribute, CreditTypeAttributeSchema, CreditTypeSchema, type DistributionNotes, DistributionNotesSchema, EPSILON, type EnsDomain, EnsDomainSchema, type EthereumAddress, EthereumAddressSchema, type ExternalId, ExternalIdSchema, type ExternalLink, type ExternalUrl, ExternalUrlSchema, type GasIDAttributeCertificateIssuanceDate, type GasIDAttributeCo2ePrevented, type GasIDAttributeCreditAmount, type GasIDAttributeCreditType, type GasIDAttributeGasType, type GasIDAttributeMassIDRecyclingDate, type GasIDAttributeMassIDTokenId, type GasIDAttributeMethodology, type GasIDAttributeOriginCity, type GasIDAttributeSourceWasteType, type GasIDAttributeSourceWeight, type GasIDAttributes, GasIDAttributesSchema, type GasIDData, GasIDDataSchema, type GasIDIpfs, GasIDIpfsSchema, GasIDIpfsSchemaMeta, type GasIDReference, GasIDReferenceSchema, type GasIDSummary, type GasType, GasTypeSchema, type HexColor, HexColorSchema, type IbamaWasteClassification, IbamaWasteClassificationSchema, type IpfsCid, IpfsCidSchema, type IpfsUri, IpfsUriSchema, type Ipns, IpnsSchema, type IsoCountryCode, IsoCountryCodeSchema, type IsoCountrySubdivisionCode, IsoCountrySubdivisionCodeSchema, type IsoDate, IsoDateSchema, type IsoDateTime, IsoDateTimeSchema, type Latitude, LatitudeSchema, type Location, LocationSchema, type Longitude, LongitudeSchema, type MassIDAttachment, type MassIDAttachmentType, type MassIDAttributeDropOffDate, type MassIDAttributeLocalWasteClassificationId, type MassIDAttributeOriginCity, type MassIDAttributePickUpDate, type MassIDAttributePickUpVehicleType, type MassIDAttributeRecyclingDate, type MassIDAttributeRecyclingManifestCode, type MassIDAttributeRecyclingMethod, type MassIDAttributeScaleType, type MassIDAttributeTransportManifestCode, type MassIDAttributeWasteSubtype, type MassIDAttributeWasteType, type MassIDAttributeWeighingCaptureMethod, type MassIDAttributeWeight, type MassIDAttributes, MassIDAttributesSchema, type MassIDAudit, type MassIDAuditData, MassIDAuditDataSchema, MassIDAuditSchema, MassIDAuditSchemaMeta, type MassIDAuditSummary, MassIDAuditSummarySchema, type MassIDData, MassIDDataSchema, type MassIDEvent, type MassIDEvents, type MassIDIpfs, MassIDIpfsSchema, MassIDIpfsSchemaMeta, type MassIDLocalClassification, type MassIDRecyclingDateAttribute, MassIDRecyclingDateAttributeSchema, type MassIDReference, MassIDReferenceSchema, type MassIDReferenceWithContract, type MassIDTokenIdAttribute, MassIDTokenIdAttributeSchema, type MassIDWasteProperties, type MassIdReferenceWithContract, MassIdReferenceWithContractSchema, type Methodology, type MethodologyAttribute, MethodologyAttributeSchema, type MethodologyData, MethodologyDataSchema, type MethodologyName, MethodologyNameSchema, type MethodologyReference, MethodologyReferenceSchema, MethodologySchema, MethodologySchemaMeta, type MethodologyShortName, MethodologyShortNameSchema, type MethodologySlug, MethodologySlugSchema, type NftAttribute, NftAttributeSchema, type NftIpfs, NftIpfsSchema, type NftSchemaType, type NonEmptyString, NonEmptyStringSchema, type NonNegativeFloat, NonNegativeFloatSchema, type NonNegativeInteger, NonNegativeIntegerSchema, type OriginCityAttribute, OriginCityAttributeSchema, type Participant, type ParticipantRewards, ParticipantRewardsSchema, type ParticipantRole, ParticipantRoleSchema, ParticipantSchema, type Percentage, PercentageSchema, type PositiveInteger, PositiveIntegerSchema, type PreventedEmissionsCalculation, type ReceiptIdentity, ReceiptIdentitySchema, type RecordEnvironment, RecordEnvironmentSchema, type RecordSchemaType, RecordSchemaTypeSchema, type RecycledIDAttributeCertificateIssuanceDate, type RecycledIDAttributeCreditAmount, type RecycledIDAttributeCreditType, type RecycledIDAttributeMassIDRecyclingDate, type RecycledIDAttributeMassIDTokenId, type RecycledIDAttributeMethodology, type RecycledIDAttributeOriginCity, type RecycledIDAttributeRecycledMassWeight, type RecycledIDAttributeSourceWasteType, type RecycledIDAttributeSourceWeight, type RecycledIDAttributes, RecycledIDAttributesSchema, type RecycledIDData, RecycledIDDataSchema, type RecycledIDIpfs, RecycledIDIpfsSchema, RecycledIDIpfsSchemaMeta, type RecycledIDSummary, type RewardAllocation, RewardAllocationSchema, type ScaleType, ScaleTypeSchema, type SchemaInfo, SchemaInfoSchema, type SemanticVersion, SemanticVersionSchema, type Sha256Hash, Sha256HashSchema, type Slug, SlugSchema, type SmartContract, type SmartContractAddress, SmartContractAddressSchema, SmartContractSchema, type SourceWasteTypeAttribute, SourceWasteTypeAttributeSchema, type SourceWeightAttribute, SourceWeightAttributeSchema, type StringifiedTokenId, StringifiedTokenIdSchema, type TokenId, TokenIdSchema, type UnixTimestamp, UnixTimestampSchema, type Uuid, UuidSchema, type VehicleType, VehicleTypeSchema, type ViewerReference, ViewerReferenceSchema, type WasteClassification, WasteClassificationSchema, type WasteSubtype, WasteSubtypeSchema, type WasteType, WasteTypeSchema, type WeighingCaptureMethod, WeighingCaptureMethodSchema, type WeightKg, WeightKgSchema, buildSchemaUrl, canonicalizeForHash, createAttributeMap, createDateAttributeSchema, createNumericAttributeSchema, createReceiptCertificateSchema, createReceiptCollectionSchema, createReceiptCreditSchema, createWeightAttributeSchema, getSchemaBaseUrl, getSchemaVersionOrDefault, hashCanonicalJson, hashObject, nearlyEqual, uniqueArrayItems, uniqueBy, validateAttributeValue, validateAttributesForItems, validateCountMatches, validateDateAttribute, validateLocationBrazilData, validateSummaryListMatchesData, validateTotalMatches };
|