@learncard/types 5.3.2 → 5.3.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/crypto.d.ts +1 -0
- package/dist/crypto.d.ts.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/lcn.d.ts +56 -0
- package/dist/lcn.d.ts.map +1 -0
- package/dist/learncard.d.ts +1 -0
- package/dist/learncard.d.ts.map +1 -0
- package/dist/learncloud.d.ts +13 -8
- package/dist/learncloud.d.ts.map +1 -0
- package/dist/mongo.d.ts +1 -0
- package/dist/mongo.d.ts.map +1 -0
- package/dist/obv3.d.ts +1150 -830
- package/dist/obv3.d.ts.map +1 -0
- package/dist/types.cjs.development.js +82 -185
- package/dist/types.cjs.development.js.map +3 -3
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +4 -4
- package/dist/types.esm.js +7 -3
- package/dist/types.esm.js.map +3 -3
- package/dist/vc.d.ts +118 -43
- package/dist/vc.d.ts.map +1 -0
- package/dist/wasm.d.ts +1 -0
- package/dist/wasm.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/obv3.d.ts
CHANGED
@@ -58,10 +58,10 @@ export declare const EndorsementSubjectValidator: z.ZodObject<{
|
|
58
58
|
id: string;
|
59
59
|
}>;
|
60
60
|
export type EndorsementSubject = z.infer<typeof EndorsementSubjectValidator>;
|
61
|
-
export declare const EndorsementCredentialValidator: z.ZodObject<{
|
62
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
63
|
-
id: z.ZodOptional<z.ZodString>;
|
61
|
+
export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
64
62
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
63
|
+
id: z.ZodOptional<z.ZodString>;
|
64
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
65
65
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
66
66
|
id: z.ZodOptional<z.ZodString>;
|
67
67
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -251,23 +251,44 @@ export declare const EndorsementCredentialValidator: z.ZodObject<{
|
|
251
251
|
}>]>;
|
252
252
|
issuanceDate: z.ZodString;
|
253
253
|
expirationDate: z.ZodOptional<z.ZodString>;
|
254
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
255
|
+
id: z.ZodOptional<z.ZodString>;
|
256
|
+
}, "strip", z.ZodAny, {
|
257
|
+
[x: string]: any;
|
258
|
+
id?: string | undefined;
|
259
|
+
}, {
|
260
|
+
[x: string]: any;
|
261
|
+
id?: string | undefined;
|
262
|
+
}>, z.ZodArray<z.ZodObject<{
|
263
|
+
id: z.ZodOptional<z.ZodString>;
|
264
|
+
}, "strip", z.ZodAny, {
|
265
|
+
[x: string]: any;
|
266
|
+
id?: string | undefined;
|
267
|
+
}, {
|
268
|
+
[x: string]: any;
|
269
|
+
id?: string | undefined;
|
270
|
+
}>, "many">]>;
|
254
271
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
255
272
|
type: z.ZodString;
|
256
273
|
id: z.ZodString;
|
257
|
-
}, "strip", z.
|
274
|
+
}, "strip", z.ZodAny, {
|
275
|
+
[x: string]: any;
|
258
276
|
type: string;
|
259
277
|
id: string;
|
260
278
|
}, {
|
279
|
+
[x: string]: any;
|
261
280
|
type: string;
|
262
281
|
id: string;
|
263
282
|
}>>;
|
264
283
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
265
284
|
id: z.ZodString;
|
266
285
|
type: z.ZodString;
|
267
|
-
}, "strip", z.
|
286
|
+
}, "strip", z.ZodAny, {
|
287
|
+
[x: string]: any;
|
268
288
|
type: string;
|
269
289
|
id: string;
|
270
290
|
}, {
|
291
|
+
[x: string]: any;
|
271
292
|
type: string;
|
272
293
|
id: string;
|
273
294
|
}>, "many">>;
|
@@ -283,6 +304,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<{
|
|
283
304
|
type: string;
|
284
305
|
id: string;
|
285
306
|
}>>;
|
307
|
+
}, {
|
286
308
|
credentialSubject: z.ZodObject<{
|
287
309
|
id: z.ZodString;
|
288
310
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -355,15 +377,17 @@ export declare const EndorsementCredentialValidator: z.ZodObject<{
|
|
355
377
|
proofPurpose: string;
|
356
378
|
verificationMethod: string;
|
357
379
|
}>, "many">]>>;
|
358
|
-
}
|
380
|
+
}>, "strip", z.ZodAny, {
|
359
381
|
[x: string]: any;
|
360
382
|
id?: string | undefined;
|
361
383
|
expirationDate?: string | undefined;
|
362
384
|
credentialStatus?: {
|
385
|
+
[x: string]: any;
|
363
386
|
type: string;
|
364
387
|
id: string;
|
365
388
|
} | undefined;
|
366
389
|
credentialSchema?: {
|
390
|
+
[x: string]: any;
|
367
391
|
type: string;
|
368
392
|
id: string;
|
369
393
|
}[] | undefined;
|
@@ -452,10 +476,12 @@ export declare const EndorsementCredentialValidator: z.ZodObject<{
|
|
452
476
|
id?: string | undefined;
|
453
477
|
expirationDate?: string | undefined;
|
454
478
|
credentialStatus?: {
|
479
|
+
[x: string]: any;
|
455
480
|
type: string;
|
456
481
|
id: string;
|
457
482
|
} | undefined;
|
458
483
|
credentialSchema?: {
|
484
|
+
[x: string]: any;
|
459
485
|
type: string;
|
460
486
|
id: string;
|
461
487
|
}[] | undefined;
|
@@ -1035,10 +1061,10 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1035
1061
|
id?: string | undefined;
|
1036
1062
|
}>;
|
1037
1063
|
description: z.ZodString;
|
1038
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1039
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
1040
|
-
id: z.ZodOptional<z.ZodString>;
|
1064
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<z.extendShape<{
|
1041
1065
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
1066
|
+
id: z.ZodOptional<z.ZodString>;
|
1067
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
1042
1068
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1043
1069
|
id: z.ZodOptional<z.ZodString>;
|
1044
1070
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -1228,23 +1254,44 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1228
1254
|
}>]>;
|
1229
1255
|
issuanceDate: z.ZodString;
|
1230
1256
|
expirationDate: z.ZodOptional<z.ZodString>;
|
1257
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
1258
|
+
id: z.ZodOptional<z.ZodString>;
|
1259
|
+
}, "strip", z.ZodAny, {
|
1260
|
+
[x: string]: any;
|
1261
|
+
id?: string | undefined;
|
1262
|
+
}, {
|
1263
|
+
[x: string]: any;
|
1264
|
+
id?: string | undefined;
|
1265
|
+
}>, z.ZodArray<z.ZodObject<{
|
1266
|
+
id: z.ZodOptional<z.ZodString>;
|
1267
|
+
}, "strip", z.ZodAny, {
|
1268
|
+
[x: string]: any;
|
1269
|
+
id?: string | undefined;
|
1270
|
+
}, {
|
1271
|
+
[x: string]: any;
|
1272
|
+
id?: string | undefined;
|
1273
|
+
}>, "many">]>;
|
1231
1274
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
1232
1275
|
type: z.ZodString;
|
1233
1276
|
id: z.ZodString;
|
1234
|
-
}, "strip", z.
|
1277
|
+
}, "strip", z.ZodAny, {
|
1278
|
+
[x: string]: any;
|
1235
1279
|
type: string;
|
1236
1280
|
id: string;
|
1237
1281
|
}, {
|
1282
|
+
[x: string]: any;
|
1238
1283
|
type: string;
|
1239
1284
|
id: string;
|
1240
1285
|
}>>;
|
1241
1286
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1242
1287
|
id: z.ZodString;
|
1243
1288
|
type: z.ZodString;
|
1244
|
-
}, "strip", z.
|
1289
|
+
}, "strip", z.ZodAny, {
|
1290
|
+
[x: string]: any;
|
1245
1291
|
type: string;
|
1246
1292
|
id: string;
|
1247
1293
|
}, {
|
1294
|
+
[x: string]: any;
|
1248
1295
|
type: string;
|
1249
1296
|
id: string;
|
1250
1297
|
}>, "many">>;
|
@@ -1260,6 +1307,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1260
1307
|
type: string;
|
1261
1308
|
id: string;
|
1262
1309
|
}>>;
|
1310
|
+
}, {
|
1263
1311
|
credentialSubject: z.ZodObject<{
|
1264
1312
|
id: z.ZodString;
|
1265
1313
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -1332,15 +1380,17 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1332
1380
|
proofPurpose: string;
|
1333
1381
|
verificationMethod: string;
|
1334
1382
|
}>, "many">]>>;
|
1335
|
-
}
|
1383
|
+
}>, "strip", z.ZodAny, {
|
1336
1384
|
[x: string]: any;
|
1337
1385
|
id?: string | undefined;
|
1338
1386
|
expirationDate?: string | undefined;
|
1339
1387
|
credentialStatus?: {
|
1388
|
+
[x: string]: any;
|
1340
1389
|
type: string;
|
1341
1390
|
id: string;
|
1342
1391
|
} | undefined;
|
1343
1392
|
credentialSchema?: {
|
1393
|
+
[x: string]: any;
|
1344
1394
|
type: string;
|
1345
1395
|
id: string;
|
1346
1396
|
}[] | undefined;
|
@@ -1429,10 +1479,12 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1429
1479
|
id?: string | undefined;
|
1430
1480
|
expirationDate?: string | undefined;
|
1431
1481
|
credentialStatus?: {
|
1482
|
+
[x: string]: any;
|
1432
1483
|
type: string;
|
1433
1484
|
id: string;
|
1434
1485
|
} | undefined;
|
1435
1486
|
credentialSchema?: {
|
1487
|
+
[x: string]: any;
|
1436
1488
|
type: string;
|
1437
1489
|
id: string;
|
1438
1490
|
}[] | undefined;
|
@@ -1751,10 +1803,12 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1751
1803
|
id?: string | undefined;
|
1752
1804
|
expirationDate?: string | undefined;
|
1753
1805
|
credentialStatus?: {
|
1806
|
+
[x: string]: any;
|
1754
1807
|
type: string;
|
1755
1808
|
id: string;
|
1756
1809
|
} | undefined;
|
1757
1810
|
credentialSchema?: {
|
1811
|
+
[x: string]: any;
|
1758
1812
|
type: string;
|
1759
1813
|
id: string;
|
1760
1814
|
}[] | undefined;
|
@@ -1972,10 +2026,12 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1972
2026
|
id?: string | undefined;
|
1973
2027
|
expirationDate?: string | undefined;
|
1974
2028
|
credentialStatus?: {
|
2029
|
+
[x: string]: any;
|
1975
2030
|
type: string;
|
1976
2031
|
id: string;
|
1977
2032
|
} | undefined;
|
1978
2033
|
credentialSchema?: {
|
2034
|
+
[x: string]: any;
|
1979
2035
|
type: string;
|
1980
2036
|
id: string;
|
1981
2037
|
}[] | undefined;
|
@@ -2509,10 +2565,10 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2509
2565
|
id?: string | undefined;
|
2510
2566
|
}>;
|
2511
2567
|
description: z.ZodString;
|
2512
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2513
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
2514
|
-
id: z.ZodOptional<z.ZodString>;
|
2568
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<z.extendShape<{
|
2515
2569
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
2570
|
+
id: z.ZodOptional<z.ZodString>;
|
2571
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
2516
2572
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2517
2573
|
id: z.ZodOptional<z.ZodString>;
|
2518
2574
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -2702,23 +2758,44 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2702
2758
|
}>]>;
|
2703
2759
|
issuanceDate: z.ZodString;
|
2704
2760
|
expirationDate: z.ZodOptional<z.ZodString>;
|
2761
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
2762
|
+
id: z.ZodOptional<z.ZodString>;
|
2763
|
+
}, "strip", z.ZodAny, {
|
2764
|
+
[x: string]: any;
|
2765
|
+
id?: string | undefined;
|
2766
|
+
}, {
|
2767
|
+
[x: string]: any;
|
2768
|
+
id?: string | undefined;
|
2769
|
+
}>, z.ZodArray<z.ZodObject<{
|
2770
|
+
id: z.ZodOptional<z.ZodString>;
|
2771
|
+
}, "strip", z.ZodAny, {
|
2772
|
+
[x: string]: any;
|
2773
|
+
id?: string | undefined;
|
2774
|
+
}, {
|
2775
|
+
[x: string]: any;
|
2776
|
+
id?: string | undefined;
|
2777
|
+
}>, "many">]>;
|
2705
2778
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
2706
2779
|
type: z.ZodString;
|
2707
2780
|
id: z.ZodString;
|
2708
|
-
}, "strip", z.
|
2781
|
+
}, "strip", z.ZodAny, {
|
2782
|
+
[x: string]: any;
|
2709
2783
|
type: string;
|
2710
2784
|
id: string;
|
2711
2785
|
}, {
|
2786
|
+
[x: string]: any;
|
2712
2787
|
type: string;
|
2713
2788
|
id: string;
|
2714
2789
|
}>>;
|
2715
2790
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2716
2791
|
id: z.ZodString;
|
2717
2792
|
type: z.ZodString;
|
2718
|
-
}, "strip", z.
|
2793
|
+
}, "strip", z.ZodAny, {
|
2794
|
+
[x: string]: any;
|
2719
2795
|
type: string;
|
2720
2796
|
id: string;
|
2721
2797
|
}, {
|
2798
|
+
[x: string]: any;
|
2722
2799
|
type: string;
|
2723
2800
|
id: string;
|
2724
2801
|
}>, "many">>;
|
@@ -2734,6 +2811,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2734
2811
|
type: string;
|
2735
2812
|
id: string;
|
2736
2813
|
}>>;
|
2814
|
+
}, {
|
2737
2815
|
credentialSubject: z.ZodObject<{
|
2738
2816
|
id: z.ZodString;
|
2739
2817
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -2806,15 +2884,17 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2806
2884
|
proofPurpose: string;
|
2807
2885
|
verificationMethod: string;
|
2808
2886
|
}>, "many">]>>;
|
2809
|
-
}
|
2887
|
+
}>, "strip", z.ZodAny, {
|
2810
2888
|
[x: string]: any;
|
2811
2889
|
id?: string | undefined;
|
2812
2890
|
expirationDate?: string | undefined;
|
2813
2891
|
credentialStatus?: {
|
2892
|
+
[x: string]: any;
|
2814
2893
|
type: string;
|
2815
2894
|
id: string;
|
2816
2895
|
} | undefined;
|
2817
2896
|
credentialSchema?: {
|
2897
|
+
[x: string]: any;
|
2818
2898
|
type: string;
|
2819
2899
|
id: string;
|
2820
2900
|
}[] | undefined;
|
@@ -2903,10 +2983,12 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2903
2983
|
id?: string | undefined;
|
2904
2984
|
expirationDate?: string | undefined;
|
2905
2985
|
credentialStatus?: {
|
2986
|
+
[x: string]: any;
|
2906
2987
|
type: string;
|
2907
2988
|
id: string;
|
2908
2989
|
} | undefined;
|
2909
2990
|
credentialSchema?: {
|
2991
|
+
[x: string]: any;
|
2910
2992
|
type: string;
|
2911
2993
|
id: string;
|
2912
2994
|
}[] | undefined;
|
@@ -3225,10 +3307,12 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3225
3307
|
id?: string | undefined;
|
3226
3308
|
expirationDate?: string | undefined;
|
3227
3309
|
credentialStatus?: {
|
3310
|
+
[x: string]: any;
|
3228
3311
|
type: string;
|
3229
3312
|
id: string;
|
3230
3313
|
} | undefined;
|
3231
3314
|
credentialSchema?: {
|
3315
|
+
[x: string]: any;
|
3232
3316
|
type: string;
|
3233
3317
|
id: string;
|
3234
3318
|
}[] | undefined;
|
@@ -3446,10 +3530,12 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3446
3530
|
id?: string | undefined;
|
3447
3531
|
expirationDate?: string | undefined;
|
3448
3532
|
credentialStatus?: {
|
3533
|
+
[x: string]: any;
|
3449
3534
|
type: string;
|
3450
3535
|
id: string;
|
3451
3536
|
} | undefined;
|
3452
3537
|
credentialSchema?: {
|
3538
|
+
[x: string]: any;
|
3453
3539
|
type: string;
|
3454
3540
|
id: string;
|
3455
3541
|
}[] | undefined;
|
@@ -3974,10 +4060,12 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3974
4060
|
id?: string | undefined;
|
3975
4061
|
expirationDate?: string | undefined;
|
3976
4062
|
credentialStatus?: {
|
4063
|
+
[x: string]: any;
|
3977
4064
|
type: string;
|
3978
4065
|
id: string;
|
3979
4066
|
} | undefined;
|
3980
4067
|
credentialSchema?: {
|
4068
|
+
[x: string]: any;
|
3981
4069
|
type: string;
|
3982
4070
|
id: string;
|
3983
4071
|
}[] | undefined;
|
@@ -4282,10 +4370,12 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4282
4370
|
id?: string | undefined;
|
4283
4371
|
expirationDate?: string | undefined;
|
4284
4372
|
credentialStatus?: {
|
4373
|
+
[x: string]: any;
|
4285
4374
|
type: string;
|
4286
4375
|
id: string;
|
4287
4376
|
} | undefined;
|
4288
4377
|
credentialSchema?: {
|
4378
|
+
[x: string]: any;
|
4289
4379
|
type: string;
|
4290
4380
|
id: string;
|
4291
4381
|
}[] | undefined;
|
@@ -4592,10 +4682,10 @@ export declare const EvidenceValidator: z.ZodObject<{
|
|
4592
4682
|
type: [string, ...string[]];
|
4593
4683
|
}>;
|
4594
4684
|
export type Evidence = z.infer<typeof EvidenceValidator>;
|
4595
|
-
export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
4596
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
4597
|
-
id: z.ZodOptional<z.ZodString>;
|
4685
|
+
export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.extendShape<{
|
4598
4686
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
4687
|
+
id: z.ZodOptional<z.ZodString>;
|
4688
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
4599
4689
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
4600
4690
|
id: z.ZodOptional<z.ZodString>;
|
4601
4691
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -4785,23 +4875,44 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
4785
4875
|
}>]>;
|
4786
4876
|
issuanceDate: z.ZodString;
|
4787
4877
|
expirationDate: z.ZodOptional<z.ZodString>;
|
4878
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
4879
|
+
id: z.ZodOptional<z.ZodString>;
|
4880
|
+
}, "strip", z.ZodAny, {
|
4881
|
+
[x: string]: any;
|
4882
|
+
id?: string | undefined;
|
4883
|
+
}, {
|
4884
|
+
[x: string]: any;
|
4885
|
+
id?: string | undefined;
|
4886
|
+
}>, z.ZodArray<z.ZodObject<{
|
4887
|
+
id: z.ZodOptional<z.ZodString>;
|
4888
|
+
}, "strip", z.ZodAny, {
|
4889
|
+
[x: string]: any;
|
4890
|
+
id?: string | undefined;
|
4891
|
+
}, {
|
4892
|
+
[x: string]: any;
|
4893
|
+
id?: string | undefined;
|
4894
|
+
}>, "many">]>;
|
4788
4895
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
4789
4896
|
type: z.ZodString;
|
4790
4897
|
id: z.ZodString;
|
4791
|
-
}, "strip", z.
|
4898
|
+
}, "strip", z.ZodAny, {
|
4899
|
+
[x: string]: any;
|
4792
4900
|
type: string;
|
4793
4901
|
id: string;
|
4794
4902
|
}, {
|
4903
|
+
[x: string]: any;
|
4795
4904
|
type: string;
|
4796
4905
|
id: string;
|
4797
4906
|
}>>;
|
4798
4907
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
4799
4908
|
id: z.ZodString;
|
4800
4909
|
type: z.ZodString;
|
4801
|
-
}, "strip", z.
|
4910
|
+
}, "strip", z.ZodAny, {
|
4911
|
+
[x: string]: any;
|
4802
4912
|
type: string;
|
4803
4913
|
id: string;
|
4804
4914
|
}, {
|
4915
|
+
[x: string]: any;
|
4805
4916
|
type: string;
|
4806
4917
|
id: string;
|
4807
4918
|
}>, "many">>;
|
@@ -4817,6 +4928,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
4817
4928
|
type: string;
|
4818
4929
|
id: string;
|
4819
4930
|
}>>;
|
4931
|
+
}, {
|
4820
4932
|
name: z.ZodOptional<z.ZodString>;
|
4821
4933
|
description: z.ZodOptional<z.ZodString>;
|
4822
4934
|
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
@@ -5068,10 +5180,10 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
5068
5180
|
id?: string | undefined;
|
5069
5181
|
}>;
|
5070
5182
|
description: z.ZodString;
|
5071
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5072
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
5073
|
-
id: z.ZodOptional<z.ZodString>;
|
5183
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<z.extendShape<{
|
5074
5184
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
5185
|
+
id: z.ZodOptional<z.ZodString>;
|
5186
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
5075
5187
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
5076
5188
|
id: z.ZodOptional<z.ZodString>;
|
5077
5189
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -5261,23 +5373,44 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
5261
5373
|
}>]>;
|
5262
5374
|
issuanceDate: z.ZodString;
|
5263
5375
|
expirationDate: z.ZodOptional<z.ZodString>;
|
5376
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
5377
|
+
id: z.ZodOptional<z.ZodString>;
|
5378
|
+
}, "strip", z.ZodAny, {
|
5379
|
+
[x: string]: any;
|
5380
|
+
id?: string | undefined;
|
5381
|
+
}, {
|
5382
|
+
[x: string]: any;
|
5383
|
+
id?: string | undefined;
|
5384
|
+
}>, z.ZodArray<z.ZodObject<{
|
5385
|
+
id: z.ZodOptional<z.ZodString>;
|
5386
|
+
}, "strip", z.ZodAny, {
|
5387
|
+
[x: string]: any;
|
5388
|
+
id?: string | undefined;
|
5389
|
+
}, {
|
5390
|
+
[x: string]: any;
|
5391
|
+
id?: string | undefined;
|
5392
|
+
}>, "many">]>;
|
5264
5393
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
5265
5394
|
type: z.ZodString;
|
5266
5395
|
id: z.ZodString;
|
5267
|
-
}, "strip", z.
|
5396
|
+
}, "strip", z.ZodAny, {
|
5397
|
+
[x: string]: any;
|
5268
5398
|
type: string;
|
5269
5399
|
id: string;
|
5270
5400
|
}, {
|
5401
|
+
[x: string]: any;
|
5271
5402
|
type: string;
|
5272
5403
|
id: string;
|
5273
5404
|
}>>;
|
5274
5405
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5275
5406
|
id: z.ZodString;
|
5276
5407
|
type: z.ZodString;
|
5277
|
-
}, "strip", z.
|
5408
|
+
}, "strip", z.ZodAny, {
|
5409
|
+
[x: string]: any;
|
5278
5410
|
type: string;
|
5279
5411
|
id: string;
|
5280
5412
|
}, {
|
5413
|
+
[x: string]: any;
|
5281
5414
|
type: string;
|
5282
5415
|
id: string;
|
5283
5416
|
}>, "many">>;
|
@@ -5293,6 +5426,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
5293
5426
|
type: string;
|
5294
5427
|
id: string;
|
5295
5428
|
}>>;
|
5429
|
+
}, {
|
5296
5430
|
credentialSubject: z.ZodObject<{
|
5297
5431
|
id: z.ZodString;
|
5298
5432
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -5365,15 +5499,17 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
5365
5499
|
proofPurpose: string;
|
5366
5500
|
verificationMethod: string;
|
5367
5501
|
}>, "many">]>>;
|
5368
|
-
}
|
5502
|
+
}>, "strip", z.ZodAny, {
|
5369
5503
|
[x: string]: any;
|
5370
5504
|
id?: string | undefined;
|
5371
5505
|
expirationDate?: string | undefined;
|
5372
5506
|
credentialStatus?: {
|
5507
|
+
[x: string]: any;
|
5373
5508
|
type: string;
|
5374
5509
|
id: string;
|
5375
5510
|
} | undefined;
|
5376
5511
|
credentialSchema?: {
|
5512
|
+
[x: string]: any;
|
5377
5513
|
type: string;
|
5378
5514
|
id: string;
|
5379
5515
|
}[] | undefined;
|
@@ -5462,10 +5598,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
5462
5598
|
id?: string | undefined;
|
5463
5599
|
expirationDate?: string | undefined;
|
5464
5600
|
credentialStatus?: {
|
5601
|
+
[x: string]: any;
|
5465
5602
|
type: string;
|
5466
5603
|
id: string;
|
5467
5604
|
} | undefined;
|
5468
5605
|
credentialSchema?: {
|
5606
|
+
[x: string]: any;
|
5469
5607
|
type: string;
|
5470
5608
|
id: string;
|
5471
5609
|
}[] | undefined;
|
@@ -5784,10 +5922,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
5784
5922
|
id?: string | undefined;
|
5785
5923
|
expirationDate?: string | undefined;
|
5786
5924
|
credentialStatus?: {
|
5925
|
+
[x: string]: any;
|
5787
5926
|
type: string;
|
5788
5927
|
id: string;
|
5789
5928
|
} | undefined;
|
5790
5929
|
credentialSchema?: {
|
5930
|
+
[x: string]: any;
|
5791
5931
|
type: string;
|
5792
5932
|
id: string;
|
5793
5933
|
}[] | undefined;
|
@@ -6005,10 +6145,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
6005
6145
|
id?: string | undefined;
|
6006
6146
|
expirationDate?: string | undefined;
|
6007
6147
|
credentialStatus?: {
|
6148
|
+
[x: string]: any;
|
6008
6149
|
type: string;
|
6009
6150
|
id: string;
|
6010
6151
|
} | undefined;
|
6011
6152
|
credentialSchema?: {
|
6153
|
+
[x: string]: any;
|
6012
6154
|
type: string;
|
6013
6155
|
id: string;
|
6014
6156
|
}[] | undefined;
|
@@ -6533,10 +6675,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
6533
6675
|
id?: string | undefined;
|
6534
6676
|
expirationDate?: string | undefined;
|
6535
6677
|
credentialStatus?: {
|
6678
|
+
[x: string]: any;
|
6536
6679
|
type: string;
|
6537
6680
|
id: string;
|
6538
6681
|
} | undefined;
|
6539
6682
|
credentialSchema?: {
|
6683
|
+
[x: string]: any;
|
6540
6684
|
type: string;
|
6541
6685
|
id: string;
|
6542
6686
|
}[] | undefined;
|
@@ -6841,10 +6985,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
6841
6985
|
id?: string | undefined;
|
6842
6986
|
expirationDate?: string | undefined;
|
6843
6987
|
credentialStatus?: {
|
6988
|
+
[x: string]: any;
|
6844
6989
|
type: string;
|
6845
6990
|
id: string;
|
6846
6991
|
} | undefined;
|
6847
6992
|
credentialSchema?: {
|
6993
|
+
[x: string]: any;
|
6848
6994
|
type: string;
|
6849
6995
|
id: string;
|
6850
6996
|
}[] | undefined;
|
@@ -7357,10 +7503,10 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
7357
7503
|
id?: string | undefined;
|
7358
7504
|
}>;
|
7359
7505
|
description: z.ZodString;
|
7360
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7361
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7362
|
-
id: z.ZodOptional<z.ZodString>;
|
7506
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<z.extendShape<{
|
7363
7507
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
7508
|
+
id: z.ZodOptional<z.ZodString>;
|
7509
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
7364
7510
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
7365
7511
|
id: z.ZodOptional<z.ZodString>;
|
7366
7512
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -7550,23 +7696,44 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
7550
7696
|
}>]>;
|
7551
7697
|
issuanceDate: z.ZodString;
|
7552
7698
|
expirationDate: z.ZodOptional<z.ZodString>;
|
7699
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
7700
|
+
id: z.ZodOptional<z.ZodString>;
|
7701
|
+
}, "strip", z.ZodAny, {
|
7702
|
+
[x: string]: any;
|
7703
|
+
id?: string | undefined;
|
7704
|
+
}, {
|
7705
|
+
[x: string]: any;
|
7706
|
+
id?: string | undefined;
|
7707
|
+
}>, z.ZodArray<z.ZodObject<{
|
7708
|
+
id: z.ZodOptional<z.ZodString>;
|
7709
|
+
}, "strip", z.ZodAny, {
|
7710
|
+
[x: string]: any;
|
7711
|
+
id?: string | undefined;
|
7712
|
+
}, {
|
7713
|
+
[x: string]: any;
|
7714
|
+
id?: string | undefined;
|
7715
|
+
}>, "many">]>;
|
7553
7716
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
7554
7717
|
type: z.ZodString;
|
7555
7718
|
id: z.ZodString;
|
7556
|
-
}, "strip", z.
|
7719
|
+
}, "strip", z.ZodAny, {
|
7720
|
+
[x: string]: any;
|
7557
7721
|
type: string;
|
7558
7722
|
id: string;
|
7559
7723
|
}, {
|
7724
|
+
[x: string]: any;
|
7560
7725
|
type: string;
|
7561
7726
|
id: string;
|
7562
7727
|
}>>;
|
7563
7728
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7564
7729
|
id: z.ZodString;
|
7565
7730
|
type: z.ZodString;
|
7566
|
-
}, "strip", z.
|
7731
|
+
}, "strip", z.ZodAny, {
|
7732
|
+
[x: string]: any;
|
7567
7733
|
type: string;
|
7568
7734
|
id: string;
|
7569
7735
|
}, {
|
7736
|
+
[x: string]: any;
|
7570
7737
|
type: string;
|
7571
7738
|
id: string;
|
7572
7739
|
}>, "many">>;
|
@@ -7582,6 +7749,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
7582
7749
|
type: string;
|
7583
7750
|
id: string;
|
7584
7751
|
}>>;
|
7752
|
+
}, {
|
7585
7753
|
credentialSubject: z.ZodObject<{
|
7586
7754
|
id: z.ZodString;
|
7587
7755
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -7654,15 +7822,17 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
7654
7822
|
proofPurpose: string;
|
7655
7823
|
verificationMethod: string;
|
7656
7824
|
}>, "many">]>>;
|
7657
|
-
}
|
7825
|
+
}>, "strip", z.ZodAny, {
|
7658
7826
|
[x: string]: any;
|
7659
7827
|
id?: string | undefined;
|
7660
7828
|
expirationDate?: string | undefined;
|
7661
7829
|
credentialStatus?: {
|
7830
|
+
[x: string]: any;
|
7662
7831
|
type: string;
|
7663
7832
|
id: string;
|
7664
7833
|
} | undefined;
|
7665
7834
|
credentialSchema?: {
|
7835
|
+
[x: string]: any;
|
7666
7836
|
type: string;
|
7667
7837
|
id: string;
|
7668
7838
|
}[] | undefined;
|
@@ -7751,10 +7921,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
7751
7921
|
id?: string | undefined;
|
7752
7922
|
expirationDate?: string | undefined;
|
7753
7923
|
credentialStatus?: {
|
7924
|
+
[x: string]: any;
|
7754
7925
|
type: string;
|
7755
7926
|
id: string;
|
7756
7927
|
} | undefined;
|
7757
7928
|
credentialSchema?: {
|
7929
|
+
[x: string]: any;
|
7758
7930
|
type: string;
|
7759
7931
|
id: string;
|
7760
7932
|
}[] | undefined;
|
@@ -8073,10 +8245,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
8073
8245
|
id?: string | undefined;
|
8074
8246
|
expirationDate?: string | undefined;
|
8075
8247
|
credentialStatus?: {
|
8248
|
+
[x: string]: any;
|
8076
8249
|
type: string;
|
8077
8250
|
id: string;
|
8078
8251
|
} | undefined;
|
8079
8252
|
credentialSchema?: {
|
8253
|
+
[x: string]: any;
|
8080
8254
|
type: string;
|
8081
8255
|
id: string;
|
8082
8256
|
}[] | undefined;
|
@@ -8294,10 +8468,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
8294
8468
|
id?: string | undefined;
|
8295
8469
|
expirationDate?: string | undefined;
|
8296
8470
|
credentialStatus?: {
|
8471
|
+
[x: string]: any;
|
8297
8472
|
type: string;
|
8298
8473
|
id: string;
|
8299
8474
|
} | undefined;
|
8300
8475
|
credentialSchema?: {
|
8476
|
+
[x: string]: any;
|
8301
8477
|
type: string;
|
8302
8478
|
id: string;
|
8303
8479
|
}[] | undefined;
|
@@ -8822,10 +8998,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
8822
8998
|
id?: string | undefined;
|
8823
8999
|
expirationDate?: string | undefined;
|
8824
9000
|
credentialStatus?: {
|
9001
|
+
[x: string]: any;
|
8825
9002
|
type: string;
|
8826
9003
|
id: string;
|
8827
9004
|
} | undefined;
|
8828
9005
|
credentialSchema?: {
|
9006
|
+
[x: string]: any;
|
8829
9007
|
type: string;
|
8830
9008
|
id: string;
|
8831
9009
|
}[] | undefined;
|
@@ -9130,10 +9308,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
9130
9308
|
id?: string | undefined;
|
9131
9309
|
expirationDate?: string | undefined;
|
9132
9310
|
credentialStatus?: {
|
9311
|
+
[x: string]: any;
|
9133
9312
|
type: string;
|
9134
9313
|
id: string;
|
9135
9314
|
} | undefined;
|
9136
9315
|
credentialSchema?: {
|
9316
|
+
[x: string]: any;
|
9137
9317
|
type: string;
|
9138
9318
|
id: string;
|
9139
9319
|
}[] | undefined;
|
@@ -9624,20 +9804,24 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
9624
9804
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
9625
9805
|
type: z.ZodString;
|
9626
9806
|
id: z.ZodString;
|
9627
|
-
}, "strip", z.
|
9807
|
+
}, "strip", z.ZodAny, {
|
9808
|
+
[x: string]: any;
|
9628
9809
|
type: string;
|
9629
9810
|
id: string;
|
9630
9811
|
}, {
|
9812
|
+
[x: string]: any;
|
9631
9813
|
type: string;
|
9632
9814
|
id: string;
|
9633
9815
|
}>>;
|
9634
9816
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9635
9817
|
id: z.ZodString;
|
9636
9818
|
type: z.ZodString;
|
9637
|
-
}, "strip", z.
|
9819
|
+
}, "strip", z.ZodAny, {
|
9820
|
+
[x: string]: any;
|
9638
9821
|
type: string;
|
9639
9822
|
id: string;
|
9640
9823
|
}, {
|
9824
|
+
[x: string]: any;
|
9641
9825
|
type: string;
|
9642
9826
|
id: string;
|
9643
9827
|
}>, "many">>;
|
@@ -9658,10 +9842,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
9658
9842
|
id?: string | undefined;
|
9659
9843
|
expirationDate?: string | undefined;
|
9660
9844
|
credentialStatus?: {
|
9845
|
+
[x: string]: any;
|
9661
9846
|
type: string;
|
9662
9847
|
id: string;
|
9663
9848
|
} | undefined;
|
9664
9849
|
credentialSchema?: {
|
9850
|
+
[x: string]: any;
|
9665
9851
|
type: string;
|
9666
9852
|
id: string;
|
9667
9853
|
}[] | undefined;
|
@@ -9731,10 +9917,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
9731
9917
|
id?: string | undefined;
|
9732
9918
|
expirationDate?: string | undefined;
|
9733
9919
|
credentialStatus?: {
|
9920
|
+
[x: string]: any;
|
9734
9921
|
type: string;
|
9735
9922
|
id: string;
|
9736
9923
|
} | undefined;
|
9737
9924
|
credentialSchema?: {
|
9925
|
+
[x: string]: any;
|
9738
9926
|
type: string;
|
9739
9927
|
id: string;
|
9740
9928
|
}[] | undefined;
|
@@ -9827,7 +10015,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
9827
10015
|
audience?: string | undefined;
|
9828
10016
|
type: [string, ...string[]];
|
9829
10017
|
}>, "many">>;
|
9830
|
-
}
|
10018
|
+
}>, "strip", z.ZodAny, {
|
9831
10019
|
[x: string]: any;
|
9832
10020
|
id?: string | undefined;
|
9833
10021
|
name?: string | undefined;
|
@@ -9837,10 +10025,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
9837
10025
|
id?: string | undefined;
|
9838
10026
|
expirationDate?: string | undefined;
|
9839
10027
|
credentialStatus?: {
|
10028
|
+
[x: string]: any;
|
9840
10029
|
type: string;
|
9841
10030
|
id: string;
|
9842
10031
|
} | undefined;
|
9843
10032
|
credentialSchema?: {
|
10033
|
+
[x: string]: any;
|
9844
10034
|
type: string;
|
9845
10035
|
id: string;
|
9846
10036
|
}[] | undefined;
|
@@ -9913,10 +10103,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
9913
10103
|
} | undefined;
|
9914
10104
|
expirationDate?: string | undefined;
|
9915
10105
|
credentialStatus?: {
|
10106
|
+
[x: string]: any;
|
9916
10107
|
type: string;
|
9917
10108
|
id: string;
|
9918
10109
|
} | undefined;
|
9919
10110
|
credentialSchema?: {
|
10111
|
+
[x: string]: any;
|
9920
10112
|
type: string;
|
9921
10113
|
id: string;
|
9922
10114
|
}[] | undefined;
|
@@ -10012,10 +10204,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
10012
10204
|
id?: string | undefined;
|
10013
10205
|
expirationDate?: string | undefined;
|
10014
10206
|
credentialStatus?: {
|
10207
|
+
[x: string]: any;
|
10015
10208
|
type: string;
|
10016
10209
|
id: string;
|
10017
10210
|
} | undefined;
|
10018
10211
|
credentialSchema?: {
|
10212
|
+
[x: string]: any;
|
10019
10213
|
type: string;
|
10020
10214
|
id: string;
|
10021
10215
|
}[] | undefined;
|
@@ -10320,10 +10514,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
10320
10514
|
id?: string | undefined;
|
10321
10515
|
expirationDate?: string | undefined;
|
10322
10516
|
credentialStatus?: {
|
10517
|
+
[x: string]: any;
|
10323
10518
|
type: string;
|
10324
10519
|
id: string;
|
10325
10520
|
} | undefined;
|
10326
10521
|
credentialSchema?: {
|
10522
|
+
[x: string]: any;
|
10327
10523
|
type: string;
|
10328
10524
|
id: string;
|
10329
10525
|
}[] | undefined;
|
@@ -10611,10 +10807,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
10611
10807
|
id?: string | undefined;
|
10612
10808
|
expirationDate?: string | undefined;
|
10613
10809
|
credentialStatus?: {
|
10810
|
+
[x: string]: any;
|
10614
10811
|
type: string;
|
10615
10812
|
id: string;
|
10616
10813
|
} | undefined;
|
10617
10814
|
credentialSchema?: {
|
10815
|
+
[x: string]: any;
|
10618
10816
|
type: string;
|
10619
10817
|
id: string;
|
10620
10818
|
}[] | undefined;
|
@@ -10687,10 +10885,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
10687
10885
|
} | undefined;
|
10688
10886
|
expirationDate?: string | undefined;
|
10689
10887
|
credentialStatus?: {
|
10888
|
+
[x: string]: any;
|
10690
10889
|
type: string;
|
10691
10890
|
id: string;
|
10692
10891
|
} | undefined;
|
10693
10892
|
credentialSchema?: {
|
10893
|
+
[x: string]: any;
|
10694
10894
|
type: string;
|
10695
10895
|
id: string;
|
10696
10896
|
}[] | undefined;
|
@@ -10786,10 +10986,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
10786
10986
|
id?: string | undefined;
|
10787
10987
|
expirationDate?: string | undefined;
|
10788
10988
|
credentialStatus?: {
|
10989
|
+
[x: string]: any;
|
10789
10990
|
type: string;
|
10790
10991
|
id: string;
|
10791
10992
|
} | undefined;
|
10792
10993
|
credentialSchema?: {
|
10994
|
+
[x: string]: any;
|
10793
10995
|
type: string;
|
10794
10996
|
id: string;
|
10795
10997
|
}[] | undefined;
|
@@ -11094,10 +11296,12 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
11094
11296
|
id?: string | undefined;
|
11095
11297
|
expirationDate?: string | undefined;
|
11096
11298
|
credentialStatus?: {
|
11299
|
+
[x: string]: any;
|
11097
11300
|
type: string;
|
11098
11301
|
id: string;
|
11099
11302
|
} | undefined;
|
11100
11303
|
credentialSchema?: {
|
11304
|
+
[x: string]: any;
|
11101
11305
|
type: string;
|
11102
11306
|
id: string;
|
11103
11307
|
}[] | undefined;
|
@@ -11377,484 +11581,80 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<{
|
|
11377
11581
|
}[];
|
11378
11582
|
}>;
|
11379
11583
|
export type UnsignedAchievementCredential = z.infer<typeof UnsignedAchievementCredentialValidator>;
|
11380
|
-
export declare const AchievementCredentialValidator: z.ZodObject<{
|
11381
|
-
|
11584
|
+
export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z.extendShape<{
|
11585
|
+
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
11382
11586
|
id: z.ZodOptional<z.ZodString>;
|
11383
|
-
|
11384
|
-
|
11385
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11386
|
-
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
11587
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
11588
|
+
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11387
11589
|
id: z.ZodOptional<z.ZodString>;
|
11388
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
11389
|
-
|
11390
|
-
|
11391
|
-
|
11392
|
-
|
11393
|
-
|
11394
|
-
|
11395
|
-
|
11396
|
-
|
11397
|
-
|
11398
|
-
|
11399
|
-
|
11400
|
-
|
11401
|
-
|
11402
|
-
|
11403
|
-
|
11404
|
-
|
11405
|
-
|
11406
|
-
|
11407
|
-
|
11408
|
-
|
11409
|
-
|
11410
|
-
|
11411
|
-
|
11590
|
+
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
11591
|
+
name: z.ZodOptional<z.ZodString>;
|
11592
|
+
url: z.ZodOptional<z.ZodString>;
|
11593
|
+
phone: z.ZodOptional<z.ZodString>;
|
11594
|
+
description: z.ZodOptional<z.ZodString>;
|
11595
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
11596
|
+
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11597
|
+
id: z.ZodString;
|
11598
|
+
type: z.ZodString;
|
11599
|
+
caption: z.ZodOptional<z.ZodString>;
|
11600
|
+
}, "strip", z.ZodTypeAny, {
|
11601
|
+
caption?: string | undefined;
|
11602
|
+
type: string;
|
11603
|
+
id: string;
|
11604
|
+
}, {
|
11605
|
+
caption?: string | undefined;
|
11606
|
+
type: string;
|
11607
|
+
id: string;
|
11608
|
+
}>]>>;
|
11609
|
+
email: z.ZodOptional<z.ZodString>;
|
11610
|
+
address: z.ZodOptional<z.ZodObject<{
|
11611
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11612
|
+
addressCountry: z.ZodOptional<z.ZodString>;
|
11613
|
+
addressCountryCode: z.ZodOptional<z.ZodString>;
|
11614
|
+
addressRegion: z.ZodOptional<z.ZodString>;
|
11615
|
+
addressLocality: z.ZodOptional<z.ZodString>;
|
11616
|
+
streetAddress: z.ZodOptional<z.ZodString>;
|
11617
|
+
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
11618
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
11619
|
+
geo: z.ZodOptional<z.ZodObject<{
|
11412
11620
|
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11413
|
-
|
11414
|
-
|
11415
|
-
addressRegion: z.ZodOptional<z.ZodString>;
|
11416
|
-
addressLocality: z.ZodOptional<z.ZodString>;
|
11417
|
-
streetAddress: z.ZodOptional<z.ZodString>;
|
11418
|
-
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
11419
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
11420
|
-
geo: z.ZodOptional<z.ZodObject<{
|
11421
|
-
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11422
|
-
latitude: z.ZodNumber;
|
11423
|
-
longitude: z.ZodNumber;
|
11424
|
-
}, "strip", z.ZodTypeAny, {
|
11425
|
-
type: string | [string, ...string[]];
|
11426
|
-
latitude: number;
|
11427
|
-
longitude: number;
|
11428
|
-
}, {
|
11429
|
-
type: string | [string, ...string[]];
|
11430
|
-
latitude: number;
|
11431
|
-
longitude: number;
|
11432
|
-
}>>;
|
11621
|
+
latitude: z.ZodNumber;
|
11622
|
+
longitude: z.ZodNumber;
|
11433
11623
|
}, "strip", z.ZodTypeAny, {
|
11434
|
-
addressCountry?: string | undefined;
|
11435
|
-
addressCountryCode?: string | undefined;
|
11436
|
-
addressRegion?: string | undefined;
|
11437
|
-
addressLocality?: string | undefined;
|
11438
|
-
streetAddress?: string | undefined;
|
11439
|
-
postOfficeBoxNumber?: string | undefined;
|
11440
|
-
postalCode?: string | undefined;
|
11441
|
-
geo?: {
|
11442
|
-
type: string | [string, ...string[]];
|
11443
|
-
latitude: number;
|
11444
|
-
longitude: number;
|
11445
|
-
} | undefined;
|
11446
11624
|
type: string | [string, ...string[]];
|
11625
|
+
latitude: number;
|
11626
|
+
longitude: number;
|
11447
11627
|
}, {
|
11448
|
-
addressCountry?: string | undefined;
|
11449
|
-
addressCountryCode?: string | undefined;
|
11450
|
-
addressRegion?: string | undefined;
|
11451
|
-
addressLocality?: string | undefined;
|
11452
|
-
streetAddress?: string | undefined;
|
11453
|
-
postOfficeBoxNumber?: string | undefined;
|
11454
|
-
postalCode?: string | undefined;
|
11455
|
-
geo?: {
|
11456
|
-
type: string | [string, ...string[]];
|
11457
|
-
latitude: number;
|
11458
|
-
longitude: number;
|
11459
|
-
} | undefined;
|
11460
11628
|
type: string | [string, ...string[]];
|
11629
|
+
latitude: number;
|
11630
|
+
longitude: number;
|
11461
11631
|
}>>;
|
11462
|
-
|
11463
|
-
|
11464
|
-
|
11465
|
-
|
11466
|
-
|
11467
|
-
|
11468
|
-
|
11469
|
-
|
11470
|
-
|
11471
|
-
type: string | [string, ...string[]];
|
11472
|
-
identifier: string;
|
11473
|
-
identifierType: string;
|
11474
|
-
}>, "many">>;
|
11475
|
-
official: z.ZodOptional<z.ZodString>;
|
11476
|
-
parentOrg: z.ZodOptional<z.ZodAny>;
|
11477
|
-
familyName: z.ZodOptional<z.ZodString>;
|
11478
|
-
givenName: z.ZodOptional<z.ZodString>;
|
11479
|
-
additionalName: z.ZodOptional<z.ZodString>;
|
11480
|
-
patronymicName: z.ZodOptional<z.ZodString>;
|
11481
|
-
honorificPrefix: z.ZodOptional<z.ZodString>;
|
11482
|
-
honorificSuffix: z.ZodOptional<z.ZodString>;
|
11483
|
-
familyNamePrefix: z.ZodOptional<z.ZodString>;
|
11484
|
-
dateOfBirth: z.ZodOptional<z.ZodString>;
|
11485
|
-
}, "strip", z.ZodAny, {
|
11486
|
-
[x: string]: any;
|
11487
|
-
type?: string | [string, ...string[]] | undefined;
|
11488
|
-
id?: string | undefined;
|
11489
|
-
name?: string | undefined;
|
11490
|
-
url?: string | undefined;
|
11491
|
-
phone?: string | undefined;
|
11492
|
-
description?: string | undefined;
|
11493
|
-
endorsement?: any[] | undefined;
|
11494
|
-
image?: string | {
|
11495
|
-
caption?: string | undefined;
|
11496
|
-
type: string;
|
11497
|
-
id: string;
|
11498
|
-
} | undefined;
|
11499
|
-
email?: string | undefined;
|
11500
|
-
address?: {
|
11501
|
-
addressCountry?: string | undefined;
|
11502
|
-
addressCountryCode?: string | undefined;
|
11503
|
-
addressRegion?: string | undefined;
|
11504
|
-
addressLocality?: string | undefined;
|
11505
|
-
streetAddress?: string | undefined;
|
11506
|
-
postOfficeBoxNumber?: string | undefined;
|
11507
|
-
postalCode?: string | undefined;
|
11508
|
-
geo?: {
|
11509
|
-
type: string | [string, ...string[]];
|
11510
|
-
latitude: number;
|
11511
|
-
longitude: number;
|
11512
|
-
} | undefined;
|
11632
|
+
}, "strip", z.ZodTypeAny, {
|
11633
|
+
addressCountry?: string | undefined;
|
11634
|
+
addressCountryCode?: string | undefined;
|
11635
|
+
addressRegion?: string | undefined;
|
11636
|
+
addressLocality?: string | undefined;
|
11637
|
+
streetAddress?: string | undefined;
|
11638
|
+
postOfficeBoxNumber?: string | undefined;
|
11639
|
+
postalCode?: string | undefined;
|
11640
|
+
geo?: {
|
11513
11641
|
type: string | [string, ...string[]];
|
11642
|
+
latitude: number;
|
11643
|
+
longitude: number;
|
11514
11644
|
} | undefined;
|
11515
|
-
|
11516
|
-
type: string | [string, ...string[]];
|
11517
|
-
identifier: string;
|
11518
|
-
identifierType: string;
|
11519
|
-
}[] | undefined;
|
11520
|
-
official?: string | undefined;
|
11521
|
-
parentOrg?: any;
|
11522
|
-
familyName?: string | undefined;
|
11523
|
-
givenName?: string | undefined;
|
11524
|
-
additionalName?: string | undefined;
|
11525
|
-
patronymicName?: string | undefined;
|
11526
|
-
honorificPrefix?: string | undefined;
|
11527
|
-
honorificSuffix?: string | undefined;
|
11528
|
-
familyNamePrefix?: string | undefined;
|
11529
|
-
dateOfBirth?: string | undefined;
|
11645
|
+
type: string | [string, ...string[]];
|
11530
11646
|
}, {
|
11531
|
-
|
11532
|
-
|
11533
|
-
|
11534
|
-
|
11535
|
-
|
11536
|
-
|
11537
|
-
|
11538
|
-
|
11539
|
-
image?: string | {
|
11540
|
-
caption?: string | undefined;
|
11541
|
-
type: string;
|
11542
|
-
id: string;
|
11543
|
-
} | undefined;
|
11544
|
-
email?: string | undefined;
|
11545
|
-
address?: {
|
11546
|
-
addressCountry?: string | undefined;
|
11547
|
-
addressCountryCode?: string | undefined;
|
11548
|
-
addressRegion?: string | undefined;
|
11549
|
-
addressLocality?: string | undefined;
|
11550
|
-
streetAddress?: string | undefined;
|
11551
|
-
postOfficeBoxNumber?: string | undefined;
|
11552
|
-
postalCode?: string | undefined;
|
11553
|
-
geo?: {
|
11554
|
-
type: string | [string, ...string[]];
|
11555
|
-
latitude: number;
|
11556
|
-
longitude: number;
|
11557
|
-
} | undefined;
|
11647
|
+
addressCountry?: string | undefined;
|
11648
|
+
addressCountryCode?: string | undefined;
|
11649
|
+
addressRegion?: string | undefined;
|
11650
|
+
addressLocality?: string | undefined;
|
11651
|
+
streetAddress?: string | undefined;
|
11652
|
+
postOfficeBoxNumber?: string | undefined;
|
11653
|
+
postalCode?: string | undefined;
|
11654
|
+
geo?: {
|
11558
11655
|
type: string | [string, ...string[]];
|
11559
|
-
|
11560
|
-
|
11561
|
-
type: string | [string, ...string[]];
|
11562
|
-
identifier: string;
|
11563
|
-
identifierType: string;
|
11564
|
-
}[] | undefined;
|
11565
|
-
official?: string | undefined;
|
11566
|
-
parentOrg?: any;
|
11567
|
-
familyName?: string | undefined;
|
11568
|
-
givenName?: string | undefined;
|
11569
|
-
additionalName?: string | undefined;
|
11570
|
-
patronymicName?: string | undefined;
|
11571
|
-
honorificPrefix?: string | undefined;
|
11572
|
-
honorificSuffix?: string | undefined;
|
11573
|
-
familyNamePrefix?: string | undefined;
|
11574
|
-
dateOfBirth?: string | undefined;
|
11575
|
-
}>]>;
|
11576
|
-
issuanceDate: z.ZodString;
|
11577
|
-
expirationDate: z.ZodOptional<z.ZodString>;
|
11578
|
-
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
11579
|
-
id: z.ZodOptional<z.ZodString>;
|
11580
|
-
}, "strip", z.ZodAny, {
|
11581
|
-
[x: string]: any;
|
11582
|
-
id?: string | undefined;
|
11583
|
-
}, {
|
11584
|
-
[x: string]: any;
|
11585
|
-
id?: string | undefined;
|
11586
|
-
}>, z.ZodArray<z.ZodObject<{
|
11587
|
-
id: z.ZodOptional<z.ZodString>;
|
11588
|
-
}, "strip", z.ZodAny, {
|
11589
|
-
[x: string]: any;
|
11590
|
-
id?: string | undefined;
|
11591
|
-
}, {
|
11592
|
-
[x: string]: any;
|
11593
|
-
id?: string | undefined;
|
11594
|
-
}>, "many">]>;
|
11595
|
-
credentialStatus: z.ZodOptional<z.ZodObject<{
|
11596
|
-
type: z.ZodString;
|
11597
|
-
id: z.ZodString;
|
11598
|
-
}, "strip", z.ZodTypeAny, {
|
11599
|
-
type: string;
|
11600
|
-
id: string;
|
11601
|
-
}, {
|
11602
|
-
type: string;
|
11603
|
-
id: string;
|
11604
|
-
}>>;
|
11605
|
-
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11606
|
-
id: z.ZodString;
|
11607
|
-
type: z.ZodString;
|
11608
|
-
}, "strip", z.ZodTypeAny, {
|
11609
|
-
type: string;
|
11610
|
-
id: string;
|
11611
|
-
}, {
|
11612
|
-
type: string;
|
11613
|
-
id: string;
|
11614
|
-
}>, "many">>;
|
11615
|
-
refreshService: z.ZodOptional<z.ZodObject<{
|
11616
|
-
id: z.ZodString;
|
11617
|
-
type: z.ZodString;
|
11618
|
-
}, "strip", z.ZodAny, {
|
11619
|
-
[x: string]: any;
|
11620
|
-
type: string;
|
11621
|
-
id: string;
|
11622
|
-
}, {
|
11623
|
-
[x: string]: any;
|
11624
|
-
type: string;
|
11625
|
-
id: string;
|
11626
|
-
}>>;
|
11627
|
-
}, "strip", z.ZodAny, {
|
11628
|
-
[x: string]: any;
|
11629
|
-
id?: string | undefined;
|
11630
|
-
expirationDate?: string | undefined;
|
11631
|
-
credentialStatus?: {
|
11632
|
-
type: string;
|
11633
|
-
id: string;
|
11634
|
-
} | undefined;
|
11635
|
-
credentialSchema?: {
|
11636
|
-
type: string;
|
11637
|
-
id: string;
|
11638
|
-
}[] | undefined;
|
11639
|
-
refreshService?: {
|
11640
|
-
[x: string]: any;
|
11641
|
-
type: string;
|
11642
|
-
id: string;
|
11643
|
-
} | undefined;
|
11644
|
-
type: [string, ...string[]];
|
11645
|
-
'@context': (string | Record<string, any>)[];
|
11646
|
-
issuer: string | {
|
11647
|
-
[x: string]: any;
|
11648
|
-
type?: string | [string, ...string[]] | undefined;
|
11649
|
-
id?: string | undefined;
|
11650
|
-
name?: string | undefined;
|
11651
|
-
url?: string | undefined;
|
11652
|
-
phone?: string | undefined;
|
11653
|
-
description?: string | undefined;
|
11654
|
-
endorsement?: any[] | undefined;
|
11655
|
-
image?: string | {
|
11656
|
-
caption?: string | undefined;
|
11657
|
-
type: string;
|
11658
|
-
id: string;
|
11659
|
-
} | undefined;
|
11660
|
-
email?: string | undefined;
|
11661
|
-
address?: {
|
11662
|
-
addressCountry?: string | undefined;
|
11663
|
-
addressCountryCode?: string | undefined;
|
11664
|
-
addressRegion?: string | undefined;
|
11665
|
-
addressLocality?: string | undefined;
|
11666
|
-
streetAddress?: string | undefined;
|
11667
|
-
postOfficeBoxNumber?: string | undefined;
|
11668
|
-
postalCode?: string | undefined;
|
11669
|
-
geo?: {
|
11670
|
-
type: string | [string, ...string[]];
|
11671
|
-
latitude: number;
|
11672
|
-
longitude: number;
|
11673
|
-
} | undefined;
|
11674
|
-
type: string | [string, ...string[]];
|
11675
|
-
} | undefined;
|
11676
|
-
otherIdentifier?: {
|
11677
|
-
type: string | [string, ...string[]];
|
11678
|
-
identifier: string;
|
11679
|
-
identifierType: string;
|
11680
|
-
}[] | undefined;
|
11681
|
-
official?: string | undefined;
|
11682
|
-
parentOrg?: any;
|
11683
|
-
familyName?: string | undefined;
|
11684
|
-
givenName?: string | undefined;
|
11685
|
-
additionalName?: string | undefined;
|
11686
|
-
patronymicName?: string | undefined;
|
11687
|
-
honorificPrefix?: string | undefined;
|
11688
|
-
honorificSuffix?: string | undefined;
|
11689
|
-
familyNamePrefix?: string | undefined;
|
11690
|
-
dateOfBirth?: string | undefined;
|
11691
|
-
};
|
11692
|
-
issuanceDate: string;
|
11693
|
-
credentialSubject: {
|
11694
|
-
[x: string]: any;
|
11695
|
-
id?: string | undefined;
|
11696
|
-
} | {
|
11697
|
-
[x: string]: any;
|
11698
|
-
id?: string | undefined;
|
11699
|
-
}[];
|
11700
|
-
}, {
|
11701
|
-
[x: string]: any;
|
11702
|
-
id?: string | undefined;
|
11703
|
-
expirationDate?: string | undefined;
|
11704
|
-
credentialStatus?: {
|
11705
|
-
type: string;
|
11706
|
-
id: string;
|
11707
|
-
} | undefined;
|
11708
|
-
credentialSchema?: {
|
11709
|
-
type: string;
|
11710
|
-
id: string;
|
11711
|
-
}[] | undefined;
|
11712
|
-
refreshService?: {
|
11713
|
-
[x: string]: any;
|
11714
|
-
type: string;
|
11715
|
-
id: string;
|
11716
|
-
} | undefined;
|
11717
|
-
type: [string, ...string[]];
|
11718
|
-
'@context': (string | Record<string, any>)[];
|
11719
|
-
issuer: string | {
|
11720
|
-
[x: string]: any;
|
11721
|
-
type?: string | [string, ...string[]] | undefined;
|
11722
|
-
id?: string | undefined;
|
11723
|
-
name?: string | undefined;
|
11724
|
-
url?: string | undefined;
|
11725
|
-
phone?: string | undefined;
|
11726
|
-
description?: string | undefined;
|
11727
|
-
endorsement?: any[] | undefined;
|
11728
|
-
image?: string | {
|
11729
|
-
caption?: string | undefined;
|
11730
|
-
type: string;
|
11731
|
-
id: string;
|
11732
|
-
} | undefined;
|
11733
|
-
email?: string | undefined;
|
11734
|
-
address?: {
|
11735
|
-
addressCountry?: string | undefined;
|
11736
|
-
addressCountryCode?: string | undefined;
|
11737
|
-
addressRegion?: string | undefined;
|
11738
|
-
addressLocality?: string | undefined;
|
11739
|
-
streetAddress?: string | undefined;
|
11740
|
-
postOfficeBoxNumber?: string | undefined;
|
11741
|
-
postalCode?: string | undefined;
|
11742
|
-
geo?: {
|
11743
|
-
type: string | [string, ...string[]];
|
11744
|
-
latitude: number;
|
11745
|
-
longitude: number;
|
11746
|
-
} | undefined;
|
11747
|
-
type: string | [string, ...string[]];
|
11748
|
-
} | undefined;
|
11749
|
-
otherIdentifier?: {
|
11750
|
-
type: string | [string, ...string[]];
|
11751
|
-
identifier: string;
|
11752
|
-
identifierType: string;
|
11753
|
-
}[] | undefined;
|
11754
|
-
official?: string | undefined;
|
11755
|
-
parentOrg?: any;
|
11756
|
-
familyName?: string | undefined;
|
11757
|
-
givenName?: string | undefined;
|
11758
|
-
additionalName?: string | undefined;
|
11759
|
-
patronymicName?: string | undefined;
|
11760
|
-
honorificPrefix?: string | undefined;
|
11761
|
-
honorificSuffix?: string | undefined;
|
11762
|
-
familyNamePrefix?: string | undefined;
|
11763
|
-
dateOfBirth?: string | undefined;
|
11764
|
-
};
|
11765
|
-
issuanceDate: string;
|
11766
|
-
credentialSubject: {
|
11767
|
-
[x: string]: any;
|
11768
|
-
id?: string | undefined;
|
11769
|
-
} | {
|
11770
|
-
[x: string]: any;
|
11771
|
-
id?: string | undefined;
|
11772
|
-
}[];
|
11773
|
-
}>, "many">>;
|
11774
|
-
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11775
|
-
id: z.ZodString;
|
11776
|
-
type: z.ZodString;
|
11777
|
-
caption: z.ZodOptional<z.ZodString>;
|
11778
|
-
}, "strip", z.ZodTypeAny, {
|
11779
|
-
caption?: string | undefined;
|
11780
|
-
type: string;
|
11781
|
-
id: string;
|
11782
|
-
}, {
|
11783
|
-
caption?: string | undefined;
|
11784
|
-
type: string;
|
11785
|
-
id: string;
|
11786
|
-
}>]>>;
|
11787
|
-
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
11788
|
-
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11789
|
-
id: z.ZodOptional<z.ZodString>;
|
11790
|
-
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
11791
|
-
name: z.ZodOptional<z.ZodString>;
|
11792
|
-
url: z.ZodOptional<z.ZodString>;
|
11793
|
-
phone: z.ZodOptional<z.ZodString>;
|
11794
|
-
description: z.ZodOptional<z.ZodString>;
|
11795
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
11796
|
-
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11797
|
-
id: z.ZodString;
|
11798
|
-
type: z.ZodString;
|
11799
|
-
caption: z.ZodOptional<z.ZodString>;
|
11800
|
-
}, "strip", z.ZodTypeAny, {
|
11801
|
-
caption?: string | undefined;
|
11802
|
-
type: string;
|
11803
|
-
id: string;
|
11804
|
-
}, {
|
11805
|
-
caption?: string | undefined;
|
11806
|
-
type: string;
|
11807
|
-
id: string;
|
11808
|
-
}>]>>;
|
11809
|
-
email: z.ZodOptional<z.ZodString>;
|
11810
|
-
address: z.ZodOptional<z.ZodObject<{
|
11811
|
-
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11812
|
-
addressCountry: z.ZodOptional<z.ZodString>;
|
11813
|
-
addressCountryCode: z.ZodOptional<z.ZodString>;
|
11814
|
-
addressRegion: z.ZodOptional<z.ZodString>;
|
11815
|
-
addressLocality: z.ZodOptional<z.ZodString>;
|
11816
|
-
streetAddress: z.ZodOptional<z.ZodString>;
|
11817
|
-
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
11818
|
-
postalCode: z.ZodOptional<z.ZodString>;
|
11819
|
-
geo: z.ZodOptional<z.ZodObject<{
|
11820
|
-
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11821
|
-
latitude: z.ZodNumber;
|
11822
|
-
longitude: z.ZodNumber;
|
11823
|
-
}, "strip", z.ZodTypeAny, {
|
11824
|
-
type: string | [string, ...string[]];
|
11825
|
-
latitude: number;
|
11826
|
-
longitude: number;
|
11827
|
-
}, {
|
11828
|
-
type: string | [string, ...string[]];
|
11829
|
-
latitude: number;
|
11830
|
-
longitude: number;
|
11831
|
-
}>>;
|
11832
|
-
}, "strip", z.ZodTypeAny, {
|
11833
|
-
addressCountry?: string | undefined;
|
11834
|
-
addressCountryCode?: string | undefined;
|
11835
|
-
addressRegion?: string | undefined;
|
11836
|
-
addressLocality?: string | undefined;
|
11837
|
-
streetAddress?: string | undefined;
|
11838
|
-
postOfficeBoxNumber?: string | undefined;
|
11839
|
-
postalCode?: string | undefined;
|
11840
|
-
geo?: {
|
11841
|
-
type: string | [string, ...string[]];
|
11842
|
-
latitude: number;
|
11843
|
-
longitude: number;
|
11844
|
-
} | undefined;
|
11845
|
-
type: string | [string, ...string[]];
|
11846
|
-
}, {
|
11847
|
-
addressCountry?: string | undefined;
|
11848
|
-
addressCountryCode?: string | undefined;
|
11849
|
-
addressRegion?: string | undefined;
|
11850
|
-
addressLocality?: string | undefined;
|
11851
|
-
streetAddress?: string | undefined;
|
11852
|
-
postOfficeBoxNumber?: string | undefined;
|
11853
|
-
postalCode?: string | undefined;
|
11854
|
-
geo?: {
|
11855
|
-
type: string | [string, ...string[]];
|
11856
|
-
latitude: number;
|
11857
|
-
longitude: number;
|
11656
|
+
latitude: number;
|
11657
|
+
longitude: number;
|
11858
11658
|
} | undefined;
|
11859
11659
|
type: string | [string, ...string[]];
|
11860
11660
|
}>>;
|
@@ -11974,6 +11774,75 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
11974
11774
|
}>]>;
|
11975
11775
|
issuanceDate: z.ZodString;
|
11976
11776
|
expirationDate: z.ZodOptional<z.ZodString>;
|
11777
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
11778
|
+
id: z.ZodOptional<z.ZodString>;
|
11779
|
+
}, "strip", z.ZodAny, {
|
11780
|
+
[x: string]: any;
|
11781
|
+
id?: string | undefined;
|
11782
|
+
}, {
|
11783
|
+
[x: string]: any;
|
11784
|
+
id?: string | undefined;
|
11785
|
+
}>, z.ZodArray<z.ZodObject<{
|
11786
|
+
id: z.ZodOptional<z.ZodString>;
|
11787
|
+
}, "strip", z.ZodAny, {
|
11788
|
+
[x: string]: any;
|
11789
|
+
id?: string | undefined;
|
11790
|
+
}, {
|
11791
|
+
[x: string]: any;
|
11792
|
+
id?: string | undefined;
|
11793
|
+
}>, "many">]>;
|
11794
|
+
credentialStatus: z.ZodOptional<z.ZodObject<{
|
11795
|
+
type: z.ZodString;
|
11796
|
+
id: z.ZodString;
|
11797
|
+
}, "strip", z.ZodAny, {
|
11798
|
+
[x: string]: any;
|
11799
|
+
type: string;
|
11800
|
+
id: string;
|
11801
|
+
}, {
|
11802
|
+
[x: string]: any;
|
11803
|
+
type: string;
|
11804
|
+
id: string;
|
11805
|
+
}>>;
|
11806
|
+
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11807
|
+
id: z.ZodString;
|
11808
|
+
type: z.ZodString;
|
11809
|
+
}, "strip", z.ZodAny, {
|
11810
|
+
[x: string]: any;
|
11811
|
+
type: string;
|
11812
|
+
id: string;
|
11813
|
+
}, {
|
11814
|
+
[x: string]: any;
|
11815
|
+
type: string;
|
11816
|
+
id: string;
|
11817
|
+
}>, "many">>;
|
11818
|
+
refreshService: z.ZodOptional<z.ZodObject<{
|
11819
|
+
id: z.ZodString;
|
11820
|
+
type: z.ZodString;
|
11821
|
+
}, "strip", z.ZodAny, {
|
11822
|
+
[x: string]: any;
|
11823
|
+
type: string;
|
11824
|
+
id: string;
|
11825
|
+
}, {
|
11826
|
+
[x: string]: any;
|
11827
|
+
type: string;
|
11828
|
+
id: string;
|
11829
|
+
}>>;
|
11830
|
+
}, {
|
11831
|
+
name: z.ZodOptional<z.ZodString>;
|
11832
|
+
description: z.ZodOptional<z.ZodString>;
|
11833
|
+
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11834
|
+
id: z.ZodString;
|
11835
|
+
type: z.ZodString;
|
11836
|
+
caption: z.ZodOptional<z.ZodString>;
|
11837
|
+
}, "strip", z.ZodTypeAny, {
|
11838
|
+
caption?: string | undefined;
|
11839
|
+
type: string;
|
11840
|
+
id: string;
|
11841
|
+
}, {
|
11842
|
+
caption?: string | undefined;
|
11843
|
+
type: string;
|
11844
|
+
id: string;
|
11845
|
+
}>]>>;
|
11977
11846
|
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
11978
11847
|
id: z.ZodOptional<z.ZodString>;
|
11979
11848
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -12210,10 +12079,10 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
12210
12079
|
id?: string | undefined;
|
12211
12080
|
}>;
|
12212
12081
|
description: z.ZodString;
|
12213
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
12214
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
12215
|
-
id: z.ZodOptional<z.ZodString>;
|
12082
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<z.extendShape<{
|
12216
12083
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
12084
|
+
id: z.ZodOptional<z.ZodString>;
|
12085
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
12217
12086
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
12218
12087
|
id: z.ZodOptional<z.ZodString>;
|
12219
12088
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -12403,23 +12272,44 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
12403
12272
|
}>]>;
|
12404
12273
|
issuanceDate: z.ZodString;
|
12405
12274
|
expirationDate: z.ZodOptional<z.ZodString>;
|
12275
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
12276
|
+
id: z.ZodOptional<z.ZodString>;
|
12277
|
+
}, "strip", z.ZodAny, {
|
12278
|
+
[x: string]: any;
|
12279
|
+
id?: string | undefined;
|
12280
|
+
}, {
|
12281
|
+
[x: string]: any;
|
12282
|
+
id?: string | undefined;
|
12283
|
+
}>, z.ZodArray<z.ZodObject<{
|
12284
|
+
id: z.ZodOptional<z.ZodString>;
|
12285
|
+
}, "strip", z.ZodAny, {
|
12286
|
+
[x: string]: any;
|
12287
|
+
id?: string | undefined;
|
12288
|
+
}, {
|
12289
|
+
[x: string]: any;
|
12290
|
+
id?: string | undefined;
|
12291
|
+
}>, "many">]>;
|
12406
12292
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
12407
12293
|
type: z.ZodString;
|
12408
12294
|
id: z.ZodString;
|
12409
|
-
}, "strip", z.
|
12295
|
+
}, "strip", z.ZodAny, {
|
12296
|
+
[x: string]: any;
|
12410
12297
|
type: string;
|
12411
12298
|
id: string;
|
12412
12299
|
}, {
|
12300
|
+
[x: string]: any;
|
12413
12301
|
type: string;
|
12414
12302
|
id: string;
|
12415
12303
|
}>>;
|
12416
12304
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
12417
12305
|
id: z.ZodString;
|
12418
12306
|
type: z.ZodString;
|
12419
|
-
}, "strip", z.
|
12307
|
+
}, "strip", z.ZodAny, {
|
12308
|
+
[x: string]: any;
|
12420
12309
|
type: string;
|
12421
12310
|
id: string;
|
12422
12311
|
}, {
|
12312
|
+
[x: string]: any;
|
12423
12313
|
type: string;
|
12424
12314
|
id: string;
|
12425
12315
|
}>, "many">>;
|
@@ -12435,6 +12325,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
12435
12325
|
type: string;
|
12436
12326
|
id: string;
|
12437
12327
|
}>>;
|
12328
|
+
}, {
|
12438
12329
|
credentialSubject: z.ZodObject<{
|
12439
12330
|
id: z.ZodString;
|
12440
12331
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -12507,15 +12398,17 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
12507
12398
|
proofPurpose: string;
|
12508
12399
|
verificationMethod: string;
|
12509
12400
|
}>, "many">]>>;
|
12510
|
-
}
|
12401
|
+
}>, "strip", z.ZodAny, {
|
12511
12402
|
[x: string]: any;
|
12512
12403
|
id?: string | undefined;
|
12513
12404
|
expirationDate?: string | undefined;
|
12514
12405
|
credentialStatus?: {
|
12406
|
+
[x: string]: any;
|
12515
12407
|
type: string;
|
12516
12408
|
id: string;
|
12517
12409
|
} | undefined;
|
12518
12410
|
credentialSchema?: {
|
12411
|
+
[x: string]: any;
|
12519
12412
|
type: string;
|
12520
12413
|
id: string;
|
12521
12414
|
}[] | undefined;
|
@@ -12604,10 +12497,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
12604
12497
|
id?: string | undefined;
|
12605
12498
|
expirationDate?: string | undefined;
|
12606
12499
|
credentialStatus?: {
|
12500
|
+
[x: string]: any;
|
12607
12501
|
type: string;
|
12608
12502
|
id: string;
|
12609
12503
|
} | undefined;
|
12610
12504
|
credentialSchema?: {
|
12505
|
+
[x: string]: any;
|
12611
12506
|
type: string;
|
12612
12507
|
id: string;
|
12613
12508
|
}[] | undefined;
|
@@ -12926,10 +12821,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
12926
12821
|
id?: string | undefined;
|
12927
12822
|
expirationDate?: string | undefined;
|
12928
12823
|
credentialStatus?: {
|
12824
|
+
[x: string]: any;
|
12929
12825
|
type: string;
|
12930
12826
|
id: string;
|
12931
12827
|
} | undefined;
|
12932
12828
|
credentialSchema?: {
|
12829
|
+
[x: string]: any;
|
12933
12830
|
type: string;
|
12934
12831
|
id: string;
|
12935
12832
|
}[] | undefined;
|
@@ -13147,10 +13044,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
13147
13044
|
id?: string | undefined;
|
13148
13045
|
expirationDate?: string | undefined;
|
13149
13046
|
credentialStatus?: {
|
13047
|
+
[x: string]: any;
|
13150
13048
|
type: string;
|
13151
13049
|
id: string;
|
13152
13050
|
} | undefined;
|
13153
13051
|
credentialSchema?: {
|
13052
|
+
[x: string]: any;
|
13154
13053
|
type: string;
|
13155
13054
|
id: string;
|
13156
13055
|
}[] | undefined;
|
@@ -13675,10 +13574,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
13675
13574
|
id?: string | undefined;
|
13676
13575
|
expirationDate?: string | undefined;
|
13677
13576
|
credentialStatus?: {
|
13577
|
+
[x: string]: any;
|
13678
13578
|
type: string;
|
13679
13579
|
id: string;
|
13680
13580
|
} | undefined;
|
13681
13581
|
credentialSchema?: {
|
13582
|
+
[x: string]: any;
|
13682
13583
|
type: string;
|
13683
13584
|
id: string;
|
13684
13585
|
}[] | undefined;
|
@@ -13983,10 +13884,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
13983
13884
|
id?: string | undefined;
|
13984
13885
|
expirationDate?: string | undefined;
|
13985
13886
|
credentialStatus?: {
|
13887
|
+
[x: string]: any;
|
13986
13888
|
type: string;
|
13987
13889
|
id: string;
|
13988
13890
|
} | undefined;
|
13989
13891
|
credentialSchema?: {
|
13892
|
+
[x: string]: any;
|
13990
13893
|
type: string;
|
13991
13894
|
id: string;
|
13992
13895
|
}[] | undefined;
|
@@ -14499,10 +14402,10 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
14499
14402
|
id?: string | undefined;
|
14500
14403
|
}>;
|
14501
14404
|
description: z.ZodString;
|
14502
|
-
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14503
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14504
|
-
id: z.ZodOptional<z.ZodString>;
|
14405
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<z.extendShape<{
|
14505
14406
|
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
14407
|
+
id: z.ZodOptional<z.ZodString>;
|
14408
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
14506
14409
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
14507
14410
|
id: z.ZodOptional<z.ZodString>;
|
14508
14411
|
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
@@ -14692,23 +14595,44 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
14692
14595
|
}>]>;
|
14693
14596
|
issuanceDate: z.ZodString;
|
14694
14597
|
expirationDate: z.ZodOptional<z.ZodString>;
|
14598
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
14599
|
+
id: z.ZodOptional<z.ZodString>;
|
14600
|
+
}, "strip", z.ZodAny, {
|
14601
|
+
[x: string]: any;
|
14602
|
+
id?: string | undefined;
|
14603
|
+
}, {
|
14604
|
+
[x: string]: any;
|
14605
|
+
id?: string | undefined;
|
14606
|
+
}>, z.ZodArray<z.ZodObject<{
|
14607
|
+
id: z.ZodOptional<z.ZodString>;
|
14608
|
+
}, "strip", z.ZodAny, {
|
14609
|
+
[x: string]: any;
|
14610
|
+
id?: string | undefined;
|
14611
|
+
}, {
|
14612
|
+
[x: string]: any;
|
14613
|
+
id?: string | undefined;
|
14614
|
+
}>, "many">]>;
|
14695
14615
|
credentialStatus: z.ZodOptional<z.ZodObject<{
|
14696
14616
|
type: z.ZodString;
|
14697
14617
|
id: z.ZodString;
|
14698
|
-
}, "strip", z.
|
14618
|
+
}, "strip", z.ZodAny, {
|
14619
|
+
[x: string]: any;
|
14699
14620
|
type: string;
|
14700
14621
|
id: string;
|
14701
14622
|
}, {
|
14623
|
+
[x: string]: any;
|
14702
14624
|
type: string;
|
14703
14625
|
id: string;
|
14704
14626
|
}>>;
|
14705
14627
|
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14706
14628
|
id: z.ZodString;
|
14707
14629
|
type: z.ZodString;
|
14708
|
-
}, "strip", z.
|
14630
|
+
}, "strip", z.ZodAny, {
|
14631
|
+
[x: string]: any;
|
14709
14632
|
type: string;
|
14710
14633
|
id: string;
|
14711
14634
|
}, {
|
14635
|
+
[x: string]: any;
|
14712
14636
|
type: string;
|
14713
14637
|
id: string;
|
14714
14638
|
}>, "many">>;
|
@@ -14724,6 +14648,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
14724
14648
|
type: string;
|
14725
14649
|
id: string;
|
14726
14650
|
}>>;
|
14651
|
+
}, {
|
14727
14652
|
credentialSubject: z.ZodObject<{
|
14728
14653
|
id: z.ZodString;
|
14729
14654
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -14796,15 +14721,17 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
14796
14721
|
proofPurpose: string;
|
14797
14722
|
verificationMethod: string;
|
14798
14723
|
}>, "many">]>>;
|
14799
|
-
}
|
14724
|
+
}>, "strip", z.ZodAny, {
|
14800
14725
|
[x: string]: any;
|
14801
14726
|
id?: string | undefined;
|
14802
14727
|
expirationDate?: string | undefined;
|
14803
14728
|
credentialStatus?: {
|
14729
|
+
[x: string]: any;
|
14804
14730
|
type: string;
|
14805
14731
|
id: string;
|
14806
14732
|
} | undefined;
|
14807
14733
|
credentialSchema?: {
|
14734
|
+
[x: string]: any;
|
14808
14735
|
type: string;
|
14809
14736
|
id: string;
|
14810
14737
|
}[] | undefined;
|
@@ -14893,10 +14820,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
14893
14820
|
id?: string | undefined;
|
14894
14821
|
expirationDate?: string | undefined;
|
14895
14822
|
credentialStatus?: {
|
14823
|
+
[x: string]: any;
|
14896
14824
|
type: string;
|
14897
14825
|
id: string;
|
14898
14826
|
} | undefined;
|
14899
14827
|
credentialSchema?: {
|
14828
|
+
[x: string]: any;
|
14900
14829
|
type: string;
|
14901
14830
|
id: string;
|
14902
14831
|
}[] | undefined;
|
@@ -15215,10 +15144,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
15215
15144
|
id?: string | undefined;
|
15216
15145
|
expirationDate?: string | undefined;
|
15217
15146
|
credentialStatus?: {
|
15147
|
+
[x: string]: any;
|
15218
15148
|
type: string;
|
15219
15149
|
id: string;
|
15220
15150
|
} | undefined;
|
15221
15151
|
credentialSchema?: {
|
15152
|
+
[x: string]: any;
|
15222
15153
|
type: string;
|
15223
15154
|
id: string;
|
15224
15155
|
}[] | undefined;
|
@@ -15436,10 +15367,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
15436
15367
|
id?: string | undefined;
|
15437
15368
|
expirationDate?: string | undefined;
|
15438
15369
|
credentialStatus?: {
|
15370
|
+
[x: string]: any;
|
15439
15371
|
type: string;
|
15440
15372
|
id: string;
|
15441
15373
|
} | undefined;
|
15442
15374
|
credentialSchema?: {
|
15375
|
+
[x: string]: any;
|
15443
15376
|
type: string;
|
15444
15377
|
id: string;
|
15445
15378
|
}[] | undefined;
|
@@ -15874,22 +15807,331 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
15874
15807
|
} | undefined;
|
15875
15808
|
type: string | [string, ...string[]];
|
15876
15809
|
} | undefined;
|
15877
|
-
otherIdentifier?: {
|
15878
|
-
type: string | [string, ...string[]];
|
15879
|
-
identifier: string;
|
15880
|
-
identifierType: string;
|
15810
|
+
otherIdentifier?: {
|
15811
|
+
type: string | [string, ...string[]];
|
15812
|
+
identifier: string;
|
15813
|
+
identifierType: string;
|
15814
|
+
}[] | undefined;
|
15815
|
+
official?: string | undefined;
|
15816
|
+
parentOrg?: any;
|
15817
|
+
familyName?: string | undefined;
|
15818
|
+
givenName?: string | undefined;
|
15819
|
+
additionalName?: string | undefined;
|
15820
|
+
patronymicName?: string | undefined;
|
15821
|
+
honorificPrefix?: string | undefined;
|
15822
|
+
honorificSuffix?: string | undefined;
|
15823
|
+
familyNamePrefix?: string | undefined;
|
15824
|
+
dateOfBirth?: string | undefined;
|
15825
|
+
}, {
|
15826
|
+
[x: string]: any;
|
15827
|
+
type?: string | [string, ...string[]] | undefined;
|
15828
|
+
id?: string | undefined;
|
15829
|
+
name?: string | undefined;
|
15830
|
+
url?: string | undefined;
|
15831
|
+
phone?: string | undefined;
|
15832
|
+
description?: string | undefined;
|
15833
|
+
endorsement?: any[] | undefined;
|
15834
|
+
image?: string | {
|
15835
|
+
caption?: string | undefined;
|
15836
|
+
type: string;
|
15837
|
+
id: string;
|
15838
|
+
} | undefined;
|
15839
|
+
email?: string | undefined;
|
15840
|
+
address?: {
|
15841
|
+
addressCountry?: string | undefined;
|
15842
|
+
addressCountryCode?: string | undefined;
|
15843
|
+
addressRegion?: string | undefined;
|
15844
|
+
addressLocality?: string | undefined;
|
15845
|
+
streetAddress?: string | undefined;
|
15846
|
+
postOfficeBoxNumber?: string | undefined;
|
15847
|
+
postalCode?: string | undefined;
|
15848
|
+
geo?: {
|
15849
|
+
type: string | [string, ...string[]];
|
15850
|
+
latitude: number;
|
15851
|
+
longitude: number;
|
15852
|
+
} | undefined;
|
15853
|
+
type: string | [string, ...string[]];
|
15854
|
+
} | undefined;
|
15855
|
+
otherIdentifier?: {
|
15856
|
+
type: string | [string, ...string[]];
|
15857
|
+
identifier: string;
|
15858
|
+
identifierType: string;
|
15859
|
+
}[] | undefined;
|
15860
|
+
official?: string | undefined;
|
15861
|
+
parentOrg?: any;
|
15862
|
+
familyName?: string | undefined;
|
15863
|
+
givenName?: string | undefined;
|
15864
|
+
additionalName?: string | undefined;
|
15865
|
+
patronymicName?: string | undefined;
|
15866
|
+
honorificPrefix?: string | undefined;
|
15867
|
+
honorificSuffix?: string | undefined;
|
15868
|
+
familyNamePrefix?: string | undefined;
|
15869
|
+
dateOfBirth?: string | undefined;
|
15870
|
+
}>]>>;
|
15871
|
+
term: z.ZodOptional<z.ZodString>;
|
15872
|
+
}, "strip", z.ZodAny, {
|
15873
|
+
[x: string]: any;
|
15874
|
+
narrative?: string | undefined;
|
15875
|
+
id?: string | undefined;
|
15876
|
+
identifier?: {
|
15877
|
+
salt?: string | undefined;
|
15878
|
+
type: string;
|
15879
|
+
hashed: boolean;
|
15880
|
+
identityHash: string;
|
15881
|
+
identityType: string;
|
15882
|
+
}[] | undefined;
|
15883
|
+
image?: string | {
|
15884
|
+
caption?: string | undefined;
|
15885
|
+
type: string;
|
15886
|
+
id: string;
|
15887
|
+
} | undefined;
|
15888
|
+
activityEndDate?: string | undefined;
|
15889
|
+
activityStartDate?: string | undefined;
|
15890
|
+
creditsEarned?: number | undefined;
|
15891
|
+
achievement?: {
|
15892
|
+
[x: string]: any;
|
15893
|
+
tag?: string[] | undefined;
|
15894
|
+
id?: string | undefined;
|
15895
|
+
endorsement?: {
|
15896
|
+
[x: string]: any;
|
15897
|
+
id?: string | undefined;
|
15898
|
+
expirationDate?: string | undefined;
|
15899
|
+
credentialStatus?: {
|
15900
|
+
[x: string]: any;
|
15901
|
+
type: string;
|
15902
|
+
id: string;
|
15903
|
+
} | undefined;
|
15904
|
+
credentialSchema?: {
|
15905
|
+
[x: string]: any;
|
15906
|
+
type: string;
|
15907
|
+
id: string;
|
15908
|
+
}[] | undefined;
|
15909
|
+
refreshService?: {
|
15910
|
+
[x: string]: any;
|
15911
|
+
type: string;
|
15912
|
+
id: string;
|
15913
|
+
} | undefined;
|
15914
|
+
proof?: {
|
15915
|
+
[x: string]: any;
|
15916
|
+
challenge?: string | undefined;
|
15917
|
+
domain?: string | undefined;
|
15918
|
+
nonce?: string | undefined;
|
15919
|
+
jws?: string | undefined;
|
15920
|
+
type: string;
|
15921
|
+
created: string;
|
15922
|
+
proofPurpose: string;
|
15923
|
+
verificationMethod: string;
|
15924
|
+
} | {
|
15925
|
+
[x: string]: any;
|
15926
|
+
challenge?: string | undefined;
|
15927
|
+
domain?: string | undefined;
|
15928
|
+
nonce?: string | undefined;
|
15929
|
+
jws?: string | undefined;
|
15930
|
+
type: string;
|
15931
|
+
created: string;
|
15932
|
+
proofPurpose: string;
|
15933
|
+
verificationMethod: string;
|
15934
|
+
}[] | undefined;
|
15935
|
+
type: [string, ...string[]];
|
15936
|
+
'@context': (string | Record<string, any>)[];
|
15937
|
+
issuer: string | {
|
15938
|
+
[x: string]: any;
|
15939
|
+
type?: string | [string, ...string[]] | undefined;
|
15940
|
+
id?: string | undefined;
|
15941
|
+
name?: string | undefined;
|
15942
|
+
url?: string | undefined;
|
15943
|
+
phone?: string | undefined;
|
15944
|
+
description?: string | undefined;
|
15945
|
+
endorsement?: any[] | undefined;
|
15946
|
+
image?: string | {
|
15947
|
+
caption?: string | undefined;
|
15948
|
+
type: string;
|
15949
|
+
id: string;
|
15950
|
+
} | undefined;
|
15951
|
+
email?: string | undefined;
|
15952
|
+
address?: {
|
15953
|
+
addressCountry?: string | undefined;
|
15954
|
+
addressCountryCode?: string | undefined;
|
15955
|
+
addressRegion?: string | undefined;
|
15956
|
+
addressLocality?: string | undefined;
|
15957
|
+
streetAddress?: string | undefined;
|
15958
|
+
postOfficeBoxNumber?: string | undefined;
|
15959
|
+
postalCode?: string | undefined;
|
15960
|
+
geo?: {
|
15961
|
+
type: string | [string, ...string[]];
|
15962
|
+
latitude: number;
|
15963
|
+
longitude: number;
|
15964
|
+
} | undefined;
|
15965
|
+
type: string | [string, ...string[]];
|
15966
|
+
} | undefined;
|
15967
|
+
otherIdentifier?: {
|
15968
|
+
type: string | [string, ...string[]];
|
15969
|
+
identifier: string;
|
15970
|
+
identifierType: string;
|
15971
|
+
}[] | undefined;
|
15972
|
+
official?: string | undefined;
|
15973
|
+
parentOrg?: any;
|
15974
|
+
familyName?: string | undefined;
|
15975
|
+
givenName?: string | undefined;
|
15976
|
+
additionalName?: string | undefined;
|
15977
|
+
patronymicName?: string | undefined;
|
15978
|
+
honorificPrefix?: string | undefined;
|
15979
|
+
honorificSuffix?: string | undefined;
|
15980
|
+
familyNamePrefix?: string | undefined;
|
15981
|
+
dateOfBirth?: string | undefined;
|
15982
|
+
};
|
15983
|
+
issuanceDate: string;
|
15984
|
+
credentialSubject: {
|
15985
|
+
endorsementComment?: string | undefined;
|
15986
|
+
type: [string, ...string[]];
|
15987
|
+
id: string;
|
15988
|
+
};
|
15989
|
+
}[] | undefined;
|
15990
|
+
image?: string | {
|
15991
|
+
caption?: string | undefined;
|
15992
|
+
type: string;
|
15993
|
+
id: string;
|
15994
|
+
} | undefined;
|
15995
|
+
otherIdentifier?: {
|
15996
|
+
type: string | [string, ...string[]];
|
15997
|
+
identifier: string;
|
15998
|
+
identifierType: string;
|
15999
|
+
}[] | undefined;
|
16000
|
+
'@language'?: string | undefined;
|
16001
|
+
version?: string | undefined;
|
16002
|
+
alignment?: {
|
16003
|
+
targetCode?: string | undefined;
|
16004
|
+
targetDescription?: string | undefined;
|
16005
|
+
targetFramework?: string | undefined;
|
16006
|
+
targetType?: string | undefined;
|
16007
|
+
type: [string, ...string[]];
|
16008
|
+
targetName: string;
|
16009
|
+
targetUrl: string;
|
16010
|
+
}[] | undefined;
|
16011
|
+
achievementType?: string | undefined;
|
16012
|
+
creator?: string | {
|
16013
|
+
[x: string]: any;
|
16014
|
+
type?: string | [string, ...string[]] | undefined;
|
16015
|
+
id?: string | undefined;
|
16016
|
+
name?: string | undefined;
|
16017
|
+
url?: string | undefined;
|
16018
|
+
phone?: string | undefined;
|
16019
|
+
description?: string | undefined;
|
16020
|
+
endorsement?: any[] | undefined;
|
16021
|
+
image?: string | {
|
16022
|
+
caption?: string | undefined;
|
16023
|
+
type: string;
|
16024
|
+
id: string;
|
16025
|
+
} | undefined;
|
16026
|
+
email?: string | undefined;
|
16027
|
+
address?: {
|
16028
|
+
addressCountry?: string | undefined;
|
16029
|
+
addressCountryCode?: string | undefined;
|
16030
|
+
addressRegion?: string | undefined;
|
16031
|
+
addressLocality?: string | undefined;
|
16032
|
+
streetAddress?: string | undefined;
|
16033
|
+
postOfficeBoxNumber?: string | undefined;
|
16034
|
+
postalCode?: string | undefined;
|
16035
|
+
geo?: {
|
16036
|
+
type: string | [string, ...string[]];
|
16037
|
+
latitude: number;
|
16038
|
+
longitude: number;
|
16039
|
+
} | undefined;
|
16040
|
+
type: string | [string, ...string[]];
|
16041
|
+
} | undefined;
|
16042
|
+
otherIdentifier?: {
|
16043
|
+
type: string | [string, ...string[]];
|
16044
|
+
identifier: string;
|
16045
|
+
identifierType: string;
|
16046
|
+
}[] | undefined;
|
16047
|
+
official?: string | undefined;
|
16048
|
+
parentOrg?: any;
|
16049
|
+
familyName?: string | undefined;
|
16050
|
+
givenName?: string | undefined;
|
16051
|
+
additionalName?: string | undefined;
|
16052
|
+
patronymicName?: string | undefined;
|
16053
|
+
honorificPrefix?: string | undefined;
|
16054
|
+
honorificSuffix?: string | undefined;
|
16055
|
+
familyNamePrefix?: string | undefined;
|
16056
|
+
dateOfBirth?: string | undefined;
|
16057
|
+
} | undefined;
|
16058
|
+
creditsAvailable?: number | undefined;
|
16059
|
+
fieldOfStudy?: string | undefined;
|
16060
|
+
humanCode?: string | undefined;
|
16061
|
+
related?: {
|
16062
|
+
'@language'?: string | undefined;
|
16063
|
+
version?: string | undefined;
|
16064
|
+
id: string;
|
15881
16065
|
}[] | undefined;
|
15882
|
-
|
15883
|
-
|
15884
|
-
|
15885
|
-
|
15886
|
-
|
15887
|
-
|
15888
|
-
|
15889
|
-
|
15890
|
-
|
15891
|
-
|
15892
|
-
|
16066
|
+
resultDescription?: {
|
16067
|
+
[x: string]: any;
|
16068
|
+
alignment?: {
|
16069
|
+
targetCode?: string | undefined;
|
16070
|
+
targetDescription?: string | undefined;
|
16071
|
+
targetFramework?: string | undefined;
|
16072
|
+
targetType?: string | undefined;
|
16073
|
+
type: [string, ...string[]];
|
16074
|
+
targetName: string;
|
16075
|
+
targetUrl: string;
|
16076
|
+
}[] | undefined;
|
16077
|
+
allowedValue?: string[] | undefined;
|
16078
|
+
requiredLevel?: string | undefined;
|
16079
|
+
requiredValue?: string | undefined;
|
16080
|
+
rubricCriterionLevel?: {
|
16081
|
+
[x: string]: any;
|
16082
|
+
description?: string | undefined;
|
16083
|
+
alignment?: {
|
16084
|
+
targetCode?: string | undefined;
|
16085
|
+
targetDescription?: string | undefined;
|
16086
|
+
targetFramework?: string | undefined;
|
16087
|
+
targetType?: string | undefined;
|
16088
|
+
type: [string, ...string[]];
|
16089
|
+
targetName: string;
|
16090
|
+
targetUrl: string;
|
16091
|
+
}[] | undefined;
|
16092
|
+
level?: string | undefined;
|
16093
|
+
points?: string | undefined;
|
16094
|
+
type: [string, ...string[]];
|
16095
|
+
id: string;
|
16096
|
+
name: string;
|
16097
|
+
}[] | undefined;
|
16098
|
+
valueMax?: string | undefined;
|
16099
|
+
valueMin?: string | undefined;
|
16100
|
+
type: [string, ...string[]];
|
16101
|
+
id: string;
|
16102
|
+
name: string;
|
16103
|
+
resultType: string;
|
16104
|
+
}[] | undefined;
|
16105
|
+
specialization?: string | undefined;
|
16106
|
+
type: [string, ...string[]];
|
16107
|
+
name: string;
|
16108
|
+
description: string;
|
16109
|
+
criteria: {
|
16110
|
+
[x: string]: any;
|
16111
|
+
narrative?: string | undefined;
|
16112
|
+
id?: string | undefined;
|
16113
|
+
};
|
16114
|
+
} | undefined;
|
16115
|
+
licenseNumber?: string | undefined;
|
16116
|
+
result?: {
|
16117
|
+
[x: string]: any;
|
16118
|
+
status?: "Completed" | "Enrolled" | "Failed" | "InProgress" | "OnHold" | "Withdrew" | undefined;
|
16119
|
+
value?: string | undefined;
|
16120
|
+
alignment?: {
|
16121
|
+
targetCode?: string | undefined;
|
16122
|
+
targetDescription?: string | undefined;
|
16123
|
+
targetFramework?: string | undefined;
|
16124
|
+
targetType?: string | undefined;
|
16125
|
+
type: [string, ...string[]];
|
16126
|
+
targetName: string;
|
16127
|
+
targetUrl: string;
|
16128
|
+
}[] | undefined;
|
16129
|
+
resultDescription?: string | undefined;
|
16130
|
+
achievedLevel?: string | undefined;
|
16131
|
+
type: [string, ...string[]];
|
16132
|
+
}[] | undefined;
|
16133
|
+
role?: string | undefined;
|
16134
|
+
source?: string | {
|
15893
16135
|
[x: string]: any;
|
15894
16136
|
type?: string | [string, ...string[]] | undefined;
|
15895
16137
|
id?: string | undefined;
|
@@ -15934,9 +16176,10 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
15934
16176
|
honorificSuffix?: string | undefined;
|
15935
16177
|
familyNamePrefix?: string | undefined;
|
15936
16178
|
dateOfBirth?: string | undefined;
|
15937
|
-
}
|
15938
|
-
term
|
15939
|
-
|
16179
|
+
} | undefined;
|
16180
|
+
term?: string | undefined;
|
16181
|
+
type: [string, ...string[]];
|
16182
|
+
}, {
|
15940
16183
|
[x: string]: any;
|
15941
16184
|
narrative?: string | undefined;
|
15942
16185
|
id?: string | undefined;
|
@@ -15964,10 +16207,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
15964
16207
|
id?: string | undefined;
|
15965
16208
|
expirationDate?: string | undefined;
|
15966
16209
|
credentialStatus?: {
|
16210
|
+
[x: string]: any;
|
15967
16211
|
type: string;
|
15968
16212
|
id: string;
|
15969
16213
|
} | undefined;
|
15970
16214
|
credentialSchema?: {
|
16215
|
+
[x: string]: any;
|
15971
16216
|
type: string;
|
15972
16217
|
id: string;
|
15973
16218
|
}[] | undefined;
|
@@ -16180,23 +16425,217 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16180
16425
|
licenseNumber?: string | undefined;
|
16181
16426
|
result?: {
|
16182
16427
|
[x: string]: any;
|
16183
|
-
status?: "Completed" | "Enrolled" | "Failed" | "InProgress" | "OnHold" | "Withdrew" | undefined;
|
16184
|
-
value?: string | undefined;
|
16185
|
-
alignment?: {
|
16186
|
-
targetCode?: string | undefined;
|
16187
|
-
targetDescription?: string | undefined;
|
16188
|
-
targetFramework?: string | undefined;
|
16189
|
-
targetType?: string | undefined;
|
16190
|
-
type: [string, ...string[]];
|
16191
|
-
targetName: string;
|
16192
|
-
targetUrl: string;
|
16428
|
+
status?: "Completed" | "Enrolled" | "Failed" | "InProgress" | "OnHold" | "Withdrew" | undefined;
|
16429
|
+
value?: string | undefined;
|
16430
|
+
alignment?: {
|
16431
|
+
targetCode?: string | undefined;
|
16432
|
+
targetDescription?: string | undefined;
|
16433
|
+
targetFramework?: string | undefined;
|
16434
|
+
targetType?: string | undefined;
|
16435
|
+
type: [string, ...string[]];
|
16436
|
+
targetName: string;
|
16437
|
+
targetUrl: string;
|
16438
|
+
}[] | undefined;
|
16439
|
+
resultDescription?: string | undefined;
|
16440
|
+
achievedLevel?: string | undefined;
|
16441
|
+
type: [string, ...string[]];
|
16442
|
+
}[] | undefined;
|
16443
|
+
role?: string | undefined;
|
16444
|
+
source?: string | {
|
16445
|
+
[x: string]: any;
|
16446
|
+
type?: string | [string, ...string[]] | undefined;
|
16447
|
+
id?: string | undefined;
|
16448
|
+
name?: string | undefined;
|
16449
|
+
url?: string | undefined;
|
16450
|
+
phone?: string | undefined;
|
16451
|
+
description?: string | undefined;
|
16452
|
+
endorsement?: any[] | undefined;
|
16453
|
+
image?: string | {
|
16454
|
+
caption?: string | undefined;
|
16455
|
+
type: string;
|
16456
|
+
id: string;
|
16457
|
+
} | undefined;
|
16458
|
+
email?: string | undefined;
|
16459
|
+
address?: {
|
16460
|
+
addressCountry?: string | undefined;
|
16461
|
+
addressCountryCode?: string | undefined;
|
16462
|
+
addressRegion?: string | undefined;
|
16463
|
+
addressLocality?: string | undefined;
|
16464
|
+
streetAddress?: string | undefined;
|
16465
|
+
postOfficeBoxNumber?: string | undefined;
|
16466
|
+
postalCode?: string | undefined;
|
16467
|
+
geo?: {
|
16468
|
+
type: string | [string, ...string[]];
|
16469
|
+
latitude: number;
|
16470
|
+
longitude: number;
|
16471
|
+
} | undefined;
|
16472
|
+
type: string | [string, ...string[]];
|
16473
|
+
} | undefined;
|
16474
|
+
otherIdentifier?: {
|
16475
|
+
type: string | [string, ...string[]];
|
16476
|
+
identifier: string;
|
16477
|
+
identifierType: string;
|
16478
|
+
}[] | undefined;
|
16479
|
+
official?: string | undefined;
|
16480
|
+
parentOrg?: any;
|
16481
|
+
familyName?: string | undefined;
|
16482
|
+
givenName?: string | undefined;
|
16483
|
+
additionalName?: string | undefined;
|
16484
|
+
patronymicName?: string | undefined;
|
16485
|
+
honorificPrefix?: string | undefined;
|
16486
|
+
honorificSuffix?: string | undefined;
|
16487
|
+
familyNamePrefix?: string | undefined;
|
16488
|
+
dateOfBirth?: string | undefined;
|
16489
|
+
} | undefined;
|
16490
|
+
term?: string | undefined;
|
16491
|
+
type: [string, ...string[]];
|
16492
|
+
}>, "many">]>;
|
16493
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
16494
|
+
'@context': z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
16495
|
+
id: z.ZodOptional<z.ZodString>;
|
16496
|
+
type: z.ZodArray<z.ZodString, "atleastone">;
|
16497
|
+
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
16498
|
+
id: z.ZodOptional<z.ZodString>;
|
16499
|
+
type: z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>]>;
|
16500
|
+
name: z.ZodOptional<z.ZodString>;
|
16501
|
+
url: z.ZodOptional<z.ZodString>;
|
16502
|
+
phone: z.ZodOptional<z.ZodString>;
|
16503
|
+
description: z.ZodOptional<z.ZodString>;
|
16504
|
+
endorsement: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
16505
|
+
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
16506
|
+
id: z.ZodString;
|
16507
|
+
type: z.ZodString;
|
16508
|
+
caption: z.ZodOptional<z.ZodString>;
|
16509
|
+
}, "strip", z.ZodTypeAny, {
|
16510
|
+
caption?: string | undefined;
|
16511
|
+
type: string;
|
16512
|
+
id: string;
|
16513
|
+
}, {
|
16514
|
+
caption?: string | undefined;
|
16515
|
+
type: string;
|
16516
|
+
id: string;
|
16517
|
+
}>]>>;
|
16518
|
+
email: z.ZodOptional<z.ZodString>;
|
16519
|
+
address: z.ZodOptional<z.ZodObject<{
|
16520
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
16521
|
+
addressCountry: z.ZodOptional<z.ZodString>;
|
16522
|
+
addressCountryCode: z.ZodOptional<z.ZodString>;
|
16523
|
+
addressRegion: z.ZodOptional<z.ZodString>;
|
16524
|
+
addressLocality: z.ZodOptional<z.ZodString>;
|
16525
|
+
streetAddress: z.ZodOptional<z.ZodString>;
|
16526
|
+
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
16527
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
16528
|
+
geo: z.ZodOptional<z.ZodObject<{
|
16529
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
16530
|
+
latitude: z.ZodNumber;
|
16531
|
+
longitude: z.ZodNumber;
|
16532
|
+
}, "strip", z.ZodTypeAny, {
|
16533
|
+
type: string | [string, ...string[]];
|
16534
|
+
latitude: number;
|
16535
|
+
longitude: number;
|
16536
|
+
}, {
|
16537
|
+
type: string | [string, ...string[]];
|
16538
|
+
latitude: number;
|
16539
|
+
longitude: number;
|
16540
|
+
}>>;
|
16541
|
+
}, "strip", z.ZodTypeAny, {
|
16542
|
+
addressCountry?: string | undefined;
|
16543
|
+
addressCountryCode?: string | undefined;
|
16544
|
+
addressRegion?: string | undefined;
|
16545
|
+
addressLocality?: string | undefined;
|
16546
|
+
streetAddress?: string | undefined;
|
16547
|
+
postOfficeBoxNumber?: string | undefined;
|
16548
|
+
postalCode?: string | undefined;
|
16549
|
+
geo?: {
|
16550
|
+
type: string | [string, ...string[]];
|
16551
|
+
latitude: number;
|
16552
|
+
longitude: number;
|
16553
|
+
} | undefined;
|
16554
|
+
type: string | [string, ...string[]];
|
16555
|
+
}, {
|
16556
|
+
addressCountry?: string | undefined;
|
16557
|
+
addressCountryCode?: string | undefined;
|
16558
|
+
addressRegion?: string | undefined;
|
16559
|
+
addressLocality?: string | undefined;
|
16560
|
+
streetAddress?: string | undefined;
|
16561
|
+
postOfficeBoxNumber?: string | undefined;
|
16562
|
+
postalCode?: string | undefined;
|
16563
|
+
geo?: {
|
16564
|
+
type: string | [string, ...string[]];
|
16565
|
+
latitude: number;
|
16566
|
+
longitude: number;
|
16567
|
+
} | undefined;
|
16568
|
+
type: string | [string, ...string[]];
|
16569
|
+
}>>;
|
16570
|
+
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
16571
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
16572
|
+
identifier: z.ZodString;
|
16573
|
+
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
16574
|
+
}, "strip", z.ZodTypeAny, {
|
16575
|
+
type: string | [string, ...string[]];
|
16576
|
+
identifier: string;
|
16577
|
+
identifierType: string;
|
16578
|
+
}, {
|
16579
|
+
type: string | [string, ...string[]];
|
16580
|
+
identifier: string;
|
16581
|
+
identifierType: string;
|
16582
|
+
}>, "many">>;
|
16583
|
+
official: z.ZodOptional<z.ZodString>;
|
16584
|
+
parentOrg: z.ZodOptional<z.ZodAny>;
|
16585
|
+
familyName: z.ZodOptional<z.ZodString>;
|
16586
|
+
givenName: z.ZodOptional<z.ZodString>;
|
16587
|
+
additionalName: z.ZodOptional<z.ZodString>;
|
16588
|
+
patronymicName: z.ZodOptional<z.ZodString>;
|
16589
|
+
honorificPrefix: z.ZodOptional<z.ZodString>;
|
16590
|
+
honorificSuffix: z.ZodOptional<z.ZodString>;
|
16591
|
+
familyNamePrefix: z.ZodOptional<z.ZodString>;
|
16592
|
+
dateOfBirth: z.ZodOptional<z.ZodString>;
|
16593
|
+
}, "strip", z.ZodAny, {
|
16594
|
+
[x: string]: any;
|
16595
|
+
type?: string | [string, ...string[]] | undefined;
|
16596
|
+
id?: string | undefined;
|
16597
|
+
name?: string | undefined;
|
16598
|
+
url?: string | undefined;
|
16599
|
+
phone?: string | undefined;
|
16600
|
+
description?: string | undefined;
|
16601
|
+
endorsement?: any[] | undefined;
|
16602
|
+
image?: string | {
|
16603
|
+
caption?: string | undefined;
|
16604
|
+
type: string;
|
16605
|
+
id: string;
|
16606
|
+
} | undefined;
|
16607
|
+
email?: string | undefined;
|
16608
|
+
address?: {
|
16609
|
+
addressCountry?: string | undefined;
|
16610
|
+
addressCountryCode?: string | undefined;
|
16611
|
+
addressRegion?: string | undefined;
|
16612
|
+
addressLocality?: string | undefined;
|
16613
|
+
streetAddress?: string | undefined;
|
16614
|
+
postOfficeBoxNumber?: string | undefined;
|
16615
|
+
postalCode?: string | undefined;
|
16616
|
+
geo?: {
|
16617
|
+
type: string | [string, ...string[]];
|
16618
|
+
latitude: number;
|
16619
|
+
longitude: number;
|
16620
|
+
} | undefined;
|
16621
|
+
type: string | [string, ...string[]];
|
16622
|
+
} | undefined;
|
16623
|
+
otherIdentifier?: {
|
16624
|
+
type: string | [string, ...string[]];
|
16625
|
+
identifier: string;
|
16626
|
+
identifierType: string;
|
16193
16627
|
}[] | undefined;
|
16194
|
-
|
16195
|
-
|
16196
|
-
|
16197
|
-
|
16198
|
-
|
16199
|
-
|
16628
|
+
official?: string | undefined;
|
16629
|
+
parentOrg?: any;
|
16630
|
+
familyName?: string | undefined;
|
16631
|
+
givenName?: string | undefined;
|
16632
|
+
additionalName?: string | undefined;
|
16633
|
+
patronymicName?: string | undefined;
|
16634
|
+
honorificPrefix?: string | undefined;
|
16635
|
+
honorificSuffix?: string | undefined;
|
16636
|
+
familyNamePrefix?: string | undefined;
|
16637
|
+
dateOfBirth?: string | undefined;
|
16638
|
+
}, {
|
16200
16639
|
[x: string]: any;
|
16201
16640
|
type?: string | [string, ...string[]] | undefined;
|
16202
16641
|
id?: string | undefined;
|
@@ -16241,270 +16680,159 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16241
16680
|
honorificSuffix?: string | undefined;
|
16242
16681
|
familyNamePrefix?: string | undefined;
|
16243
16682
|
dateOfBirth?: string | undefined;
|
16244
|
-
}
|
16245
|
-
|
16246
|
-
|
16247
|
-
|
16683
|
+
}>]>;
|
16684
|
+
issuanceDate: z.ZodString;
|
16685
|
+
expirationDate: z.ZodOptional<z.ZodString>;
|
16686
|
+
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
16687
|
+
id: z.ZodOptional<z.ZodString>;
|
16688
|
+
}, "strip", z.ZodAny, {
|
16689
|
+
[x: string]: any;
|
16690
|
+
id?: string | undefined;
|
16691
|
+
}, {
|
16692
|
+
[x: string]: any;
|
16693
|
+
id?: string | undefined;
|
16694
|
+
}>, z.ZodArray<z.ZodObject<{
|
16695
|
+
id: z.ZodOptional<z.ZodString>;
|
16696
|
+
}, "strip", z.ZodAny, {
|
16697
|
+
[x: string]: any;
|
16698
|
+
id?: string | undefined;
|
16699
|
+
}, {
|
16700
|
+
[x: string]: any;
|
16701
|
+
id?: string | undefined;
|
16702
|
+
}>, "many">]>;
|
16703
|
+
credentialStatus: z.ZodOptional<z.ZodObject<{
|
16704
|
+
type: z.ZodString;
|
16705
|
+
id: z.ZodString;
|
16706
|
+
}, "strip", z.ZodAny, {
|
16707
|
+
[x: string]: any;
|
16708
|
+
type: string;
|
16709
|
+
id: string;
|
16710
|
+
}, {
|
16711
|
+
[x: string]: any;
|
16712
|
+
type: string;
|
16713
|
+
id: string;
|
16714
|
+
}>>;
|
16715
|
+
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
16716
|
+
id: z.ZodString;
|
16717
|
+
type: z.ZodString;
|
16718
|
+
}, "strip", z.ZodAny, {
|
16719
|
+
[x: string]: any;
|
16720
|
+
type: string;
|
16721
|
+
id: string;
|
16722
|
+
}, {
|
16723
|
+
[x: string]: any;
|
16724
|
+
type: string;
|
16725
|
+
id: string;
|
16726
|
+
}>, "many">>;
|
16727
|
+
refreshService: z.ZodOptional<z.ZodObject<{
|
16728
|
+
id: z.ZodString;
|
16729
|
+
type: z.ZodString;
|
16730
|
+
}, "strip", z.ZodAny, {
|
16731
|
+
[x: string]: any;
|
16732
|
+
type: string;
|
16733
|
+
id: string;
|
16734
|
+
}, {
|
16735
|
+
[x: string]: any;
|
16736
|
+
type: string;
|
16737
|
+
id: string;
|
16738
|
+
}>>;
|
16739
|
+
}, "strip", z.ZodAny, {
|
16248
16740
|
[x: string]: any;
|
16249
|
-
narrative?: string | undefined;
|
16250
16741
|
id?: string | undefined;
|
16251
|
-
|
16252
|
-
|
16742
|
+
expirationDate?: string | undefined;
|
16743
|
+
credentialStatus?: {
|
16744
|
+
[x: string]: any;
|
16253
16745
|
type: string;
|
16254
|
-
|
16255
|
-
|
16256
|
-
|
16746
|
+
id: string;
|
16747
|
+
} | undefined;
|
16748
|
+
credentialSchema?: {
|
16749
|
+
[x: string]: any;
|
16750
|
+
type: string;
|
16751
|
+
id: string;
|
16257
16752
|
}[] | undefined;
|
16258
|
-
|
16259
|
-
|
16753
|
+
refreshService?: {
|
16754
|
+
[x: string]: any;
|
16260
16755
|
type: string;
|
16261
16756
|
id: string;
|
16262
16757
|
} | undefined;
|
16263
|
-
|
16264
|
-
|
16265
|
-
|
16266
|
-
|
16267
|
-
[
|
16268
|
-
|
16269
|
-
|
16270
|
-
|
16271
|
-
|
16272
|
-
|
16273
|
-
|
16274
|
-
credentialStatus?: {
|
16275
|
-
type: string;
|
16276
|
-
id: string;
|
16277
|
-
} | undefined;
|
16278
|
-
credentialSchema?: {
|
16279
|
-
type: string;
|
16280
|
-
id: string;
|
16281
|
-
}[] | undefined;
|
16282
|
-
refreshService?: {
|
16283
|
-
[x: string]: any;
|
16284
|
-
type: string;
|
16285
|
-
id: string;
|
16286
|
-
} | undefined;
|
16287
|
-
proof?: {
|
16288
|
-
[x: string]: any;
|
16289
|
-
challenge?: string | undefined;
|
16290
|
-
domain?: string | undefined;
|
16291
|
-
nonce?: string | undefined;
|
16292
|
-
jws?: string | undefined;
|
16293
|
-
type: string;
|
16294
|
-
created: string;
|
16295
|
-
proofPurpose: string;
|
16296
|
-
verificationMethod: string;
|
16297
|
-
} | {
|
16298
|
-
[x: string]: any;
|
16299
|
-
challenge?: string | undefined;
|
16300
|
-
domain?: string | undefined;
|
16301
|
-
nonce?: string | undefined;
|
16302
|
-
jws?: string | undefined;
|
16303
|
-
type: string;
|
16304
|
-
created: string;
|
16305
|
-
proofPurpose: string;
|
16306
|
-
verificationMethod: string;
|
16307
|
-
}[] | undefined;
|
16308
|
-
type: [string, ...string[]];
|
16309
|
-
'@context': (string | Record<string, any>)[];
|
16310
|
-
issuer: string | {
|
16311
|
-
[x: string]: any;
|
16312
|
-
type?: string | [string, ...string[]] | undefined;
|
16313
|
-
id?: string | undefined;
|
16314
|
-
name?: string | undefined;
|
16315
|
-
url?: string | undefined;
|
16316
|
-
phone?: string | undefined;
|
16317
|
-
description?: string | undefined;
|
16318
|
-
endorsement?: any[] | undefined;
|
16319
|
-
image?: string | {
|
16320
|
-
caption?: string | undefined;
|
16321
|
-
type: string;
|
16322
|
-
id: string;
|
16323
|
-
} | undefined;
|
16324
|
-
email?: string | undefined;
|
16325
|
-
address?: {
|
16326
|
-
addressCountry?: string | undefined;
|
16327
|
-
addressCountryCode?: string | undefined;
|
16328
|
-
addressRegion?: string | undefined;
|
16329
|
-
addressLocality?: string | undefined;
|
16330
|
-
streetAddress?: string | undefined;
|
16331
|
-
postOfficeBoxNumber?: string | undefined;
|
16332
|
-
postalCode?: string | undefined;
|
16333
|
-
geo?: {
|
16334
|
-
type: string | [string, ...string[]];
|
16335
|
-
latitude: number;
|
16336
|
-
longitude: number;
|
16337
|
-
} | undefined;
|
16338
|
-
type: string | [string, ...string[]];
|
16339
|
-
} | undefined;
|
16340
|
-
otherIdentifier?: {
|
16341
|
-
type: string | [string, ...string[]];
|
16342
|
-
identifier: string;
|
16343
|
-
identifierType: string;
|
16344
|
-
}[] | undefined;
|
16345
|
-
official?: string | undefined;
|
16346
|
-
parentOrg?: any;
|
16347
|
-
familyName?: string | undefined;
|
16348
|
-
givenName?: string | undefined;
|
16349
|
-
additionalName?: string | undefined;
|
16350
|
-
patronymicName?: string | undefined;
|
16351
|
-
honorificPrefix?: string | undefined;
|
16352
|
-
honorificSuffix?: string | undefined;
|
16353
|
-
familyNamePrefix?: string | undefined;
|
16354
|
-
dateOfBirth?: string | undefined;
|
16355
|
-
};
|
16356
|
-
issuanceDate: string;
|
16357
|
-
credentialSubject: {
|
16358
|
-
endorsementComment?: string | undefined;
|
16359
|
-
type: [string, ...string[]];
|
16360
|
-
id: string;
|
16361
|
-
};
|
16362
|
-
}[] | undefined;
|
16758
|
+
type: [string, ...string[]];
|
16759
|
+
'@context': (string | Record<string, any>)[];
|
16760
|
+
issuer: string | {
|
16761
|
+
[x: string]: any;
|
16762
|
+
type?: string | [string, ...string[]] | undefined;
|
16763
|
+
id?: string | undefined;
|
16764
|
+
name?: string | undefined;
|
16765
|
+
url?: string | undefined;
|
16766
|
+
phone?: string | undefined;
|
16767
|
+
description?: string | undefined;
|
16768
|
+
endorsement?: any[] | undefined;
|
16363
16769
|
image?: string | {
|
16364
16770
|
caption?: string | undefined;
|
16365
16771
|
type: string;
|
16366
16772
|
id: string;
|
16367
16773
|
} | undefined;
|
16774
|
+
email?: string | undefined;
|
16775
|
+
address?: {
|
16776
|
+
addressCountry?: string | undefined;
|
16777
|
+
addressCountryCode?: string | undefined;
|
16778
|
+
addressRegion?: string | undefined;
|
16779
|
+
addressLocality?: string | undefined;
|
16780
|
+
streetAddress?: string | undefined;
|
16781
|
+
postOfficeBoxNumber?: string | undefined;
|
16782
|
+
postalCode?: string | undefined;
|
16783
|
+
geo?: {
|
16784
|
+
type: string | [string, ...string[]];
|
16785
|
+
latitude: number;
|
16786
|
+
longitude: number;
|
16787
|
+
} | undefined;
|
16788
|
+
type: string | [string, ...string[]];
|
16789
|
+
} | undefined;
|
16368
16790
|
otherIdentifier?: {
|
16369
16791
|
type: string | [string, ...string[]];
|
16370
16792
|
identifier: string;
|
16371
16793
|
identifierType: string;
|
16372
16794
|
}[] | undefined;
|
16373
|
-
|
16374
|
-
|
16375
|
-
|
16376
|
-
|
16377
|
-
|
16378
|
-
|
16379
|
-
|
16380
|
-
|
16381
|
-
|
16382
|
-
|
16383
|
-
|
16384
|
-
|
16385
|
-
|
16386
|
-
|
16387
|
-
|
16388
|
-
|
16389
|
-
|
16390
|
-
|
16391
|
-
|
16392
|
-
|
16393
|
-
|
16394
|
-
|
16395
|
-
|
16396
|
-
|
16397
|
-
|
16398
|
-
|
16399
|
-
|
16400
|
-
address?: {
|
16401
|
-
addressCountry?: string | undefined;
|
16402
|
-
addressCountryCode?: string | undefined;
|
16403
|
-
addressRegion?: string | undefined;
|
16404
|
-
addressLocality?: string | undefined;
|
16405
|
-
streetAddress?: string | undefined;
|
16406
|
-
postOfficeBoxNumber?: string | undefined;
|
16407
|
-
postalCode?: string | undefined;
|
16408
|
-
geo?: {
|
16409
|
-
type: string | [string, ...string[]];
|
16410
|
-
latitude: number;
|
16411
|
-
longitude: number;
|
16412
|
-
} | undefined;
|
16413
|
-
type: string | [string, ...string[]];
|
16414
|
-
} | undefined;
|
16415
|
-
otherIdentifier?: {
|
16416
|
-
type: string | [string, ...string[]];
|
16417
|
-
identifier: string;
|
16418
|
-
identifierType: string;
|
16419
|
-
}[] | undefined;
|
16420
|
-
official?: string | undefined;
|
16421
|
-
parentOrg?: any;
|
16422
|
-
familyName?: string | undefined;
|
16423
|
-
givenName?: string | undefined;
|
16424
|
-
additionalName?: string | undefined;
|
16425
|
-
patronymicName?: string | undefined;
|
16426
|
-
honorificPrefix?: string | undefined;
|
16427
|
-
honorificSuffix?: string | undefined;
|
16428
|
-
familyNamePrefix?: string | undefined;
|
16429
|
-
dateOfBirth?: string | undefined;
|
16430
|
-
} | undefined;
|
16431
|
-
creditsAvailable?: number | undefined;
|
16432
|
-
fieldOfStudy?: string | undefined;
|
16433
|
-
humanCode?: string | undefined;
|
16434
|
-
related?: {
|
16435
|
-
'@language'?: string | undefined;
|
16436
|
-
version?: string | undefined;
|
16437
|
-
id: string;
|
16438
|
-
}[] | undefined;
|
16439
|
-
resultDescription?: {
|
16440
|
-
[x: string]: any;
|
16441
|
-
alignment?: {
|
16442
|
-
targetCode?: string | undefined;
|
16443
|
-
targetDescription?: string | undefined;
|
16444
|
-
targetFramework?: string | undefined;
|
16445
|
-
targetType?: string | undefined;
|
16446
|
-
type: [string, ...string[]];
|
16447
|
-
targetName: string;
|
16448
|
-
targetUrl: string;
|
16449
|
-
}[] | undefined;
|
16450
|
-
allowedValue?: string[] | undefined;
|
16451
|
-
requiredLevel?: string | undefined;
|
16452
|
-
requiredValue?: string | undefined;
|
16453
|
-
rubricCriterionLevel?: {
|
16454
|
-
[x: string]: any;
|
16455
|
-
description?: string | undefined;
|
16456
|
-
alignment?: {
|
16457
|
-
targetCode?: string | undefined;
|
16458
|
-
targetDescription?: string | undefined;
|
16459
|
-
targetFramework?: string | undefined;
|
16460
|
-
targetType?: string | undefined;
|
16461
|
-
type: [string, ...string[]];
|
16462
|
-
targetName: string;
|
16463
|
-
targetUrl: string;
|
16464
|
-
}[] | undefined;
|
16465
|
-
level?: string | undefined;
|
16466
|
-
points?: string | undefined;
|
16467
|
-
type: [string, ...string[]];
|
16468
|
-
id: string;
|
16469
|
-
name: string;
|
16470
|
-
}[] | undefined;
|
16471
|
-
valueMax?: string | undefined;
|
16472
|
-
valueMin?: string | undefined;
|
16473
|
-
type: [string, ...string[]];
|
16474
|
-
id: string;
|
16475
|
-
name: string;
|
16476
|
-
resultType: string;
|
16477
|
-
}[] | undefined;
|
16478
|
-
specialization?: string | undefined;
|
16479
|
-
type: [string, ...string[]];
|
16480
|
-
name: string;
|
16481
|
-
description: string;
|
16482
|
-
criteria: {
|
16483
|
-
[x: string]: any;
|
16484
|
-
narrative?: string | undefined;
|
16485
|
-
id?: string | undefined;
|
16486
|
-
};
|
16795
|
+
official?: string | undefined;
|
16796
|
+
parentOrg?: any;
|
16797
|
+
familyName?: string | undefined;
|
16798
|
+
givenName?: string | undefined;
|
16799
|
+
additionalName?: string | undefined;
|
16800
|
+
patronymicName?: string | undefined;
|
16801
|
+
honorificPrefix?: string | undefined;
|
16802
|
+
honorificSuffix?: string | undefined;
|
16803
|
+
familyNamePrefix?: string | undefined;
|
16804
|
+
dateOfBirth?: string | undefined;
|
16805
|
+
};
|
16806
|
+
issuanceDate: string;
|
16807
|
+
credentialSubject: {
|
16808
|
+
[x: string]: any;
|
16809
|
+
id?: string | undefined;
|
16810
|
+
} | {
|
16811
|
+
[x: string]: any;
|
16812
|
+
id?: string | undefined;
|
16813
|
+
}[];
|
16814
|
+
}, {
|
16815
|
+
[x: string]: any;
|
16816
|
+
id?: string | undefined;
|
16817
|
+
expirationDate?: string | undefined;
|
16818
|
+
credentialStatus?: {
|
16819
|
+
[x: string]: any;
|
16820
|
+
type: string;
|
16821
|
+
id: string;
|
16487
16822
|
} | undefined;
|
16488
|
-
|
16489
|
-
result?: {
|
16823
|
+
credentialSchema?: {
|
16490
16824
|
[x: string]: any;
|
16491
|
-
|
16492
|
-
|
16493
|
-
alignment?: {
|
16494
|
-
targetCode?: string | undefined;
|
16495
|
-
targetDescription?: string | undefined;
|
16496
|
-
targetFramework?: string | undefined;
|
16497
|
-
targetType?: string | undefined;
|
16498
|
-
type: [string, ...string[]];
|
16499
|
-
targetName: string;
|
16500
|
-
targetUrl: string;
|
16501
|
-
}[] | undefined;
|
16502
|
-
resultDescription?: string | undefined;
|
16503
|
-
achievedLevel?: string | undefined;
|
16504
|
-
type: [string, ...string[]];
|
16825
|
+
type: string;
|
16826
|
+
id: string;
|
16505
16827
|
}[] | undefined;
|
16506
|
-
|
16507
|
-
|
16828
|
+
refreshService?: {
|
16829
|
+
[x: string]: any;
|
16830
|
+
type: string;
|
16831
|
+
id: string;
|
16832
|
+
} | undefined;
|
16833
|
+
type: [string, ...string[]];
|
16834
|
+
'@context': (string | Record<string, any>)[];
|
16835
|
+
issuer: string | {
|
16508
16836
|
[x: string]: any;
|
16509
16837
|
type?: string | [string, ...string[]] | undefined;
|
16510
16838
|
id?: string | undefined;
|
@@ -16549,42 +16877,16 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16549
16877
|
honorificSuffix?: string | undefined;
|
16550
16878
|
familyNamePrefix?: string | undefined;
|
16551
16879
|
dateOfBirth?: string | undefined;
|
16552
|
-
}
|
16553
|
-
|
16554
|
-
|
16555
|
-
|
16556
|
-
|
16557
|
-
|
16558
|
-
|
16559
|
-
|
16560
|
-
|
16561
|
-
id: string;
|
16562
|
-
}, {
|
16563
|
-
type: string;
|
16564
|
-
id: string;
|
16565
|
-
}>>;
|
16566
|
-
credentialSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
16567
|
-
id: z.ZodString;
|
16568
|
-
type: z.ZodString;
|
16569
|
-
}, "strip", z.ZodTypeAny, {
|
16570
|
-
type: string;
|
16571
|
-
id: string;
|
16572
|
-
}, {
|
16573
|
-
type: string;
|
16574
|
-
id: string;
|
16880
|
+
};
|
16881
|
+
issuanceDate: string;
|
16882
|
+
credentialSubject: {
|
16883
|
+
[x: string]: any;
|
16884
|
+
id?: string | undefined;
|
16885
|
+
} | {
|
16886
|
+
[x: string]: any;
|
16887
|
+
id?: string | undefined;
|
16888
|
+
}[];
|
16575
16889
|
}>, "many">>;
|
16576
|
-
refreshService: z.ZodOptional<z.ZodObject<{
|
16577
|
-
id: z.ZodString;
|
16578
|
-
type: z.ZodString;
|
16579
|
-
}, "strip", z.ZodAny, {
|
16580
|
-
[x: string]: any;
|
16581
|
-
type: string;
|
16582
|
-
id: string;
|
16583
|
-
}, {
|
16584
|
-
[x: string]: any;
|
16585
|
-
type: string;
|
16586
|
-
id: string;
|
16587
|
-
}>>;
|
16588
16890
|
evidence: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
16589
16891
|
id: z.ZodOptional<z.ZodString>;
|
16590
16892
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -16612,6 +16914,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16612
16914
|
audience?: string | undefined;
|
16613
16915
|
type: [string, ...string[]];
|
16614
16916
|
}>, "many">>;
|
16917
|
+
}>, {
|
16615
16918
|
proof: z.ZodUnion<[z.ZodObject<{
|
16616
16919
|
type: z.ZodString;
|
16617
16920
|
created: z.ZodString;
|
@@ -16671,7 +16974,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16671
16974
|
proofPurpose: string;
|
16672
16975
|
verificationMethod: string;
|
16673
16976
|
}>, "many">]>;
|
16674
|
-
}
|
16977
|
+
}>, "strip", z.ZodAny, {
|
16675
16978
|
[x: string]: any;
|
16676
16979
|
id?: string | undefined;
|
16677
16980
|
name?: string | undefined;
|
@@ -16681,10 +16984,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16681
16984
|
id?: string | undefined;
|
16682
16985
|
expirationDate?: string | undefined;
|
16683
16986
|
credentialStatus?: {
|
16987
|
+
[x: string]: any;
|
16684
16988
|
type: string;
|
16685
16989
|
id: string;
|
16686
16990
|
} | undefined;
|
16687
16991
|
credentialSchema?: {
|
16992
|
+
[x: string]: any;
|
16688
16993
|
type: string;
|
16689
16994
|
id: string;
|
16690
16995
|
}[] | undefined;
|
@@ -16757,10 +17062,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16757
17062
|
} | undefined;
|
16758
17063
|
expirationDate?: string | undefined;
|
16759
17064
|
credentialStatus?: {
|
17065
|
+
[x: string]: any;
|
16760
17066
|
type: string;
|
16761
17067
|
id: string;
|
16762
17068
|
} | undefined;
|
16763
17069
|
credentialSchema?: {
|
17070
|
+
[x: string]: any;
|
16764
17071
|
type: string;
|
16765
17072
|
id: string;
|
16766
17073
|
}[] | undefined;
|
@@ -16856,10 +17163,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
16856
17163
|
id?: string | undefined;
|
16857
17164
|
expirationDate?: string | undefined;
|
16858
17165
|
credentialStatus?: {
|
17166
|
+
[x: string]: any;
|
16859
17167
|
type: string;
|
16860
17168
|
id: string;
|
16861
17169
|
} | undefined;
|
16862
17170
|
credentialSchema?: {
|
17171
|
+
[x: string]: any;
|
16863
17172
|
type: string;
|
16864
17173
|
id: string;
|
16865
17174
|
}[] | undefined;
|
@@ -17164,10 +17473,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
17164
17473
|
id?: string | undefined;
|
17165
17474
|
expirationDate?: string | undefined;
|
17166
17475
|
credentialStatus?: {
|
17476
|
+
[x: string]: any;
|
17167
17477
|
type: string;
|
17168
17478
|
id: string;
|
17169
17479
|
} | undefined;
|
17170
17480
|
credentialSchema?: {
|
17481
|
+
[x: string]: any;
|
17171
17482
|
type: string;
|
17172
17483
|
id: string;
|
17173
17484
|
}[] | undefined;
|
@@ -17476,10 +17787,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
17476
17787
|
id?: string | undefined;
|
17477
17788
|
expirationDate?: string | undefined;
|
17478
17789
|
credentialStatus?: {
|
17790
|
+
[x: string]: any;
|
17479
17791
|
type: string;
|
17480
17792
|
id: string;
|
17481
17793
|
} | undefined;
|
17482
17794
|
credentialSchema?: {
|
17795
|
+
[x: string]: any;
|
17483
17796
|
type: string;
|
17484
17797
|
id: string;
|
17485
17798
|
}[] | undefined;
|
@@ -17552,10 +17865,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
17552
17865
|
} | undefined;
|
17553
17866
|
expirationDate?: string | undefined;
|
17554
17867
|
credentialStatus?: {
|
17868
|
+
[x: string]: any;
|
17555
17869
|
type: string;
|
17556
17870
|
id: string;
|
17557
17871
|
} | undefined;
|
17558
17872
|
credentialSchema?: {
|
17873
|
+
[x: string]: any;
|
17559
17874
|
type: string;
|
17560
17875
|
id: string;
|
17561
17876
|
}[] | undefined;
|
@@ -17651,10 +17966,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
17651
17966
|
id?: string | undefined;
|
17652
17967
|
expirationDate?: string | undefined;
|
17653
17968
|
credentialStatus?: {
|
17969
|
+
[x: string]: any;
|
17654
17970
|
type: string;
|
17655
17971
|
id: string;
|
17656
17972
|
} | undefined;
|
17657
17973
|
credentialSchema?: {
|
17974
|
+
[x: string]: any;
|
17658
17975
|
type: string;
|
17659
17976
|
id: string;
|
17660
17977
|
}[] | undefined;
|
@@ -17959,10 +18276,12 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
17959
18276
|
id?: string | undefined;
|
17960
18277
|
expirationDate?: string | undefined;
|
17961
18278
|
credentialStatus?: {
|
18279
|
+
[x: string]: any;
|
17962
18280
|
type: string;
|
17963
18281
|
id: string;
|
17964
18282
|
} | undefined;
|
17965
18283
|
credentialSchema?: {
|
18284
|
+
[x: string]: any;
|
17966
18285
|
type: string;
|
17967
18286
|
id: string;
|
17968
18287
|
}[] | undefined;
|
@@ -18263,3 +18582,4 @@ export declare const AchievementCredentialValidator: z.ZodObject<{
|
|
18263
18582
|
}[];
|
18264
18583
|
}>;
|
18265
18584
|
export type AchievementCredential = z.infer<typeof AchievementCredentialValidator>;
|
18585
|
+
//# sourceMappingURL=obv3.d.ts.map
|