@learncard/types 2.1.1 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -5
- package/dist/learncard.d.ts +24 -10
- package/dist/obv3.d.ts +310 -310
- package/dist/types.cjs.development.js +9 -3
- package/dist/types.cjs.development.js.map +2 -2
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +2 -2
- package/dist/types.esm.js +9 -3
- package/dist/types.esm.js.map +2 -2
- package/dist/vc.d.ts +1663 -307
- package/package.json +2 -2
package/dist/obv3.d.ts
CHANGED
@@ -62,7 +62,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
62
62
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
63
63
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
64
64
|
id: z.ZodOptional<z.ZodString>;
|
65
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
65
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
66
66
|
name: z.ZodOptional<z.ZodString>;
|
67
67
|
url: z.ZodOptional<z.ZodString>;
|
68
68
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -158,6 +158,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
158
158
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
159
159
|
}, "strip", z.ZodAny, {
|
160
160
|
[x: string]: any;
|
161
|
+
type?: [string, ...string[]] | undefined;
|
161
162
|
id?: string | undefined;
|
162
163
|
name?: string | undefined;
|
163
164
|
url?: string | undefined;
|
@@ -200,9 +201,9 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
200
201
|
honorificSuffix?: string | undefined;
|
201
202
|
familyNamePrefix?: string | undefined;
|
202
203
|
dateOfBirth?: string | undefined;
|
203
|
-
type: [string, ...string[]];
|
204
204
|
}, {
|
205
205
|
[x: string]: any;
|
206
|
+
type?: [string, ...string[]] | undefined;
|
206
207
|
id?: string | undefined;
|
207
208
|
name?: string | undefined;
|
208
209
|
url?: string | undefined;
|
@@ -245,7 +246,6 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
245
246
|
honorificSuffix?: string | undefined;
|
246
247
|
familyNamePrefix?: string | undefined;
|
247
248
|
dateOfBirth?: string | undefined;
|
248
|
-
type: [string, ...string[]];
|
249
249
|
}>]>;
|
250
250
|
issuanceDate: z.ZodString;
|
251
251
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -318,7 +318,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
318
318
|
challenge: z.ZodOptional<z.ZodString>;
|
319
319
|
domain: z.ZodOptional<z.ZodString>;
|
320
320
|
nonce: z.ZodOptional<z.ZodString>;
|
321
|
-
proofPurpose: z.
|
321
|
+
proofPurpose: z.ZodString;
|
322
322
|
verificationMethod: z.ZodString;
|
323
323
|
jws: z.ZodOptional<z.ZodString>;
|
324
324
|
}, "strip", z.ZodAny, {
|
@@ -329,7 +329,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
329
329
|
jws?: string | undefined;
|
330
330
|
type: string;
|
331
331
|
created: string;
|
332
|
-
proofPurpose:
|
332
|
+
proofPurpose: string;
|
333
333
|
verificationMethod: string;
|
334
334
|
}, {
|
335
335
|
[x: string]: any;
|
@@ -339,7 +339,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
339
339
|
jws?: string | undefined;
|
340
340
|
type: string;
|
341
341
|
created: string;
|
342
|
-
proofPurpose:
|
342
|
+
proofPurpose: string;
|
343
343
|
verificationMethod: string;
|
344
344
|
}>, z.ZodArray<z.ZodObject<{
|
345
345
|
type: z.ZodString;
|
@@ -347,7 +347,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
347
347
|
challenge: z.ZodOptional<z.ZodString>;
|
348
348
|
domain: z.ZodOptional<z.ZodString>;
|
349
349
|
nonce: z.ZodOptional<z.ZodString>;
|
350
|
-
proofPurpose: z.
|
350
|
+
proofPurpose: z.ZodString;
|
351
351
|
verificationMethod: z.ZodString;
|
352
352
|
jws: z.ZodOptional<z.ZodString>;
|
353
353
|
}, "strip", z.ZodAny, {
|
@@ -358,7 +358,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
358
358
|
jws?: string | undefined;
|
359
359
|
type: string;
|
360
360
|
created: string;
|
361
|
-
proofPurpose:
|
361
|
+
proofPurpose: string;
|
362
362
|
verificationMethod: string;
|
363
363
|
}, {
|
364
364
|
[x: string]: any;
|
@@ -368,7 +368,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
368
368
|
jws?: string | undefined;
|
369
369
|
type: string;
|
370
370
|
created: string;
|
371
|
-
proofPurpose:
|
371
|
+
proofPurpose: string;
|
372
372
|
verificationMethod: string;
|
373
373
|
}>, "many">]>>;
|
374
374
|
}>, "strip", z.ZodAny, {
|
@@ -396,7 +396,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
396
396
|
jws?: string | undefined;
|
397
397
|
type: string;
|
398
398
|
created: string;
|
399
|
-
proofPurpose:
|
399
|
+
proofPurpose: string;
|
400
400
|
verificationMethod: string;
|
401
401
|
} | {
|
402
402
|
[x: string]: any;
|
@@ -406,13 +406,14 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
406
406
|
jws?: string | undefined;
|
407
407
|
type: string;
|
408
408
|
created: string;
|
409
|
-
proofPurpose:
|
409
|
+
proofPurpose: string;
|
410
410
|
verificationMethod: string;
|
411
411
|
}[] | undefined;
|
412
412
|
type: [string, ...string[]];
|
413
413
|
'@context': string[];
|
414
414
|
issuer: string | {
|
415
415
|
[x: string]: any;
|
416
|
+
type?: [string, ...string[]] | undefined;
|
416
417
|
id?: string | undefined;
|
417
418
|
name?: string | undefined;
|
418
419
|
url?: string | undefined;
|
@@ -455,7 +456,6 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
455
456
|
honorificSuffix?: string | undefined;
|
456
457
|
familyNamePrefix?: string | undefined;
|
457
458
|
dateOfBirth?: string | undefined;
|
458
|
-
type: [string, ...string[]];
|
459
459
|
};
|
460
460
|
issuanceDate: string;
|
461
461
|
credentialSubject: {
|
@@ -488,7 +488,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
488
488
|
jws?: string | undefined;
|
489
489
|
type: string;
|
490
490
|
created: string;
|
491
|
-
proofPurpose:
|
491
|
+
proofPurpose: string;
|
492
492
|
verificationMethod: string;
|
493
493
|
} | {
|
494
494
|
[x: string]: any;
|
@@ -498,13 +498,14 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
498
498
|
jws?: string | undefined;
|
499
499
|
type: string;
|
500
500
|
created: string;
|
501
|
-
proofPurpose:
|
501
|
+
proofPurpose: string;
|
502
502
|
verificationMethod: string;
|
503
503
|
}[] | undefined;
|
504
504
|
type: [string, ...string[]];
|
505
505
|
'@context': string[];
|
506
506
|
issuer: string | {
|
507
507
|
[x: string]: any;
|
508
|
+
type?: [string, ...string[]] | undefined;
|
508
509
|
id?: string | undefined;
|
509
510
|
name?: string | undefined;
|
510
511
|
url?: string | undefined;
|
@@ -547,7 +548,6 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
547
548
|
honorificSuffix?: string | undefined;
|
548
549
|
familyNamePrefix?: string | undefined;
|
549
550
|
dateOfBirth?: string | undefined;
|
550
|
-
type: [string, ...string[]];
|
551
551
|
};
|
552
552
|
issuanceDate: string;
|
553
553
|
credentialSubject: {
|
@@ -852,7 +852,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
852
852
|
achievementType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Achievement", "ApprenticeshipCertificate", "Assessment", "Assignment", "AssociateDegree", "Award", "Badge", "BachelorDegree", "Certificate", "CertificateOfCompletion", "Certification", "CommunityService", "Competency", "Course", "CoCurricular", "Degree", "Diploma", "DoctoralDegree", "Fieldwork", "GeneralEducationDevelopment", "JourneymanCertificate", "LearningProgram", "License", "Membership", "ProfessionalDoctorate", "QualityAssuranceCredential", "MasterCertificate", "MasterDegree", "MicroCredential", "ResearchDoctorate", "SecondarySchoolDiploma"]>, z.ZodString]>>;
|
853
853
|
creator: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
854
854
|
id: z.ZodOptional<z.ZodString>;
|
855
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
855
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
856
856
|
name: z.ZodOptional<z.ZodString>;
|
857
857
|
url: z.ZodOptional<z.ZodString>;
|
858
858
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -948,6 +948,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
948
948
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
949
949
|
}, "strip", z.ZodAny, {
|
950
950
|
[x: string]: any;
|
951
|
+
type?: [string, ...string[]] | undefined;
|
951
952
|
id?: string | undefined;
|
952
953
|
name?: string | undefined;
|
953
954
|
url?: string | undefined;
|
@@ -990,9 +991,9 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
990
991
|
honorificSuffix?: string | undefined;
|
991
992
|
familyNamePrefix?: string | undefined;
|
992
993
|
dateOfBirth?: string | undefined;
|
993
|
-
type: [string, ...string[]];
|
994
994
|
}, {
|
995
995
|
[x: string]: any;
|
996
|
+
type?: [string, ...string[]] | undefined;
|
996
997
|
id?: string | undefined;
|
997
998
|
name?: string | undefined;
|
998
999
|
url?: string | undefined;
|
@@ -1035,7 +1036,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1035
1036
|
honorificSuffix?: string | undefined;
|
1036
1037
|
familyNamePrefix?: string | undefined;
|
1037
1038
|
dateOfBirth?: string | undefined;
|
1038
|
-
type: [string, ...string[]];
|
1039
1039
|
}>]>>;
|
1040
1040
|
creditsAvailable: z.ZodOptional<z.ZodNumber>;
|
1041
1041
|
criteria: z.ZodObject<{
|
@@ -1057,7 +1057,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1057
1057
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
1058
1058
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
1059
1059
|
id: z.ZodOptional<z.ZodString>;
|
1060
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
1060
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
1061
1061
|
name: z.ZodOptional<z.ZodString>;
|
1062
1062
|
url: z.ZodOptional<z.ZodString>;
|
1063
1063
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -1153,6 +1153,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1153
1153
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
1154
1154
|
}, "strip", z.ZodAny, {
|
1155
1155
|
[x: string]: any;
|
1156
|
+
type?: [string, ...string[]] | undefined;
|
1156
1157
|
id?: string | undefined;
|
1157
1158
|
name?: string | undefined;
|
1158
1159
|
url?: string | undefined;
|
@@ -1195,9 +1196,9 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1195
1196
|
honorificSuffix?: string | undefined;
|
1196
1197
|
familyNamePrefix?: string | undefined;
|
1197
1198
|
dateOfBirth?: string | undefined;
|
1198
|
-
type: [string, ...string[]];
|
1199
1199
|
}, {
|
1200
1200
|
[x: string]: any;
|
1201
|
+
type?: [string, ...string[]] | undefined;
|
1201
1202
|
id?: string | undefined;
|
1202
1203
|
name?: string | undefined;
|
1203
1204
|
url?: string | undefined;
|
@@ -1240,7 +1241,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1240
1241
|
honorificSuffix?: string | undefined;
|
1241
1242
|
familyNamePrefix?: string | undefined;
|
1242
1243
|
dateOfBirth?: string | undefined;
|
1243
|
-
type: [string, ...string[]];
|
1244
1244
|
}>]>;
|
1245
1245
|
issuanceDate: z.ZodString;
|
1246
1246
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -1313,7 +1313,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1313
1313
|
challenge: z.ZodOptional<z.ZodString>;
|
1314
1314
|
domain: z.ZodOptional<z.ZodString>;
|
1315
1315
|
nonce: z.ZodOptional<z.ZodString>;
|
1316
|
-
proofPurpose: z.
|
1316
|
+
proofPurpose: z.ZodString;
|
1317
1317
|
verificationMethod: z.ZodString;
|
1318
1318
|
jws: z.ZodOptional<z.ZodString>;
|
1319
1319
|
}, "strip", z.ZodAny, {
|
@@ -1324,7 +1324,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1324
1324
|
jws?: string | undefined;
|
1325
1325
|
type: string;
|
1326
1326
|
created: string;
|
1327
|
-
proofPurpose:
|
1327
|
+
proofPurpose: string;
|
1328
1328
|
verificationMethod: string;
|
1329
1329
|
}, {
|
1330
1330
|
[x: string]: any;
|
@@ -1334,7 +1334,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1334
1334
|
jws?: string | undefined;
|
1335
1335
|
type: string;
|
1336
1336
|
created: string;
|
1337
|
-
proofPurpose:
|
1337
|
+
proofPurpose: string;
|
1338
1338
|
verificationMethod: string;
|
1339
1339
|
}>, z.ZodArray<z.ZodObject<{
|
1340
1340
|
type: z.ZodString;
|
@@ -1342,7 +1342,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1342
1342
|
challenge: z.ZodOptional<z.ZodString>;
|
1343
1343
|
domain: z.ZodOptional<z.ZodString>;
|
1344
1344
|
nonce: z.ZodOptional<z.ZodString>;
|
1345
|
-
proofPurpose: z.
|
1345
|
+
proofPurpose: z.ZodString;
|
1346
1346
|
verificationMethod: z.ZodString;
|
1347
1347
|
jws: z.ZodOptional<z.ZodString>;
|
1348
1348
|
}, "strip", z.ZodAny, {
|
@@ -1353,7 +1353,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1353
1353
|
jws?: string | undefined;
|
1354
1354
|
type: string;
|
1355
1355
|
created: string;
|
1356
|
-
proofPurpose:
|
1356
|
+
proofPurpose: string;
|
1357
1357
|
verificationMethod: string;
|
1358
1358
|
}, {
|
1359
1359
|
[x: string]: any;
|
@@ -1363,7 +1363,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1363
1363
|
jws?: string | undefined;
|
1364
1364
|
type: string;
|
1365
1365
|
created: string;
|
1366
|
-
proofPurpose:
|
1366
|
+
proofPurpose: string;
|
1367
1367
|
verificationMethod: string;
|
1368
1368
|
}>, "many">]>>;
|
1369
1369
|
}>, "strip", z.ZodAny, {
|
@@ -1391,7 +1391,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1391
1391
|
jws?: string | undefined;
|
1392
1392
|
type: string;
|
1393
1393
|
created: string;
|
1394
|
-
proofPurpose:
|
1394
|
+
proofPurpose: string;
|
1395
1395
|
verificationMethod: string;
|
1396
1396
|
} | {
|
1397
1397
|
[x: string]: any;
|
@@ -1401,13 +1401,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1401
1401
|
jws?: string | undefined;
|
1402
1402
|
type: string;
|
1403
1403
|
created: string;
|
1404
|
-
proofPurpose:
|
1404
|
+
proofPurpose: string;
|
1405
1405
|
verificationMethod: string;
|
1406
1406
|
}[] | undefined;
|
1407
1407
|
type: [string, ...string[]];
|
1408
1408
|
'@context': string[];
|
1409
1409
|
issuer: string | {
|
1410
1410
|
[x: string]: any;
|
1411
|
+
type?: [string, ...string[]] | undefined;
|
1411
1412
|
id?: string | undefined;
|
1412
1413
|
name?: string | undefined;
|
1413
1414
|
url?: string | undefined;
|
@@ -1450,7 +1451,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1450
1451
|
honorificSuffix?: string | undefined;
|
1451
1452
|
familyNamePrefix?: string | undefined;
|
1452
1453
|
dateOfBirth?: string | undefined;
|
1453
|
-
type: [string, ...string[]];
|
1454
1454
|
};
|
1455
1455
|
issuanceDate: string;
|
1456
1456
|
credentialSubject: {
|
@@ -1483,7 +1483,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1483
1483
|
jws?: string | undefined;
|
1484
1484
|
type: string;
|
1485
1485
|
created: string;
|
1486
|
-
proofPurpose:
|
1486
|
+
proofPurpose: string;
|
1487
1487
|
verificationMethod: string;
|
1488
1488
|
} | {
|
1489
1489
|
[x: string]: any;
|
@@ -1493,13 +1493,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1493
1493
|
jws?: string | undefined;
|
1494
1494
|
type: string;
|
1495
1495
|
created: string;
|
1496
|
-
proofPurpose:
|
1496
|
+
proofPurpose: string;
|
1497
1497
|
verificationMethod: string;
|
1498
1498
|
}[] | undefined;
|
1499
1499
|
type: [string, ...string[]];
|
1500
1500
|
'@context': string[];
|
1501
1501
|
issuer: string | {
|
1502
1502
|
[x: string]: any;
|
1503
|
+
type?: [string, ...string[]] | undefined;
|
1503
1504
|
id?: string | undefined;
|
1504
1505
|
name?: string | undefined;
|
1505
1506
|
url?: string | undefined;
|
@@ -1542,7 +1543,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1542
1543
|
honorificSuffix?: string | undefined;
|
1543
1544
|
familyNamePrefix?: string | undefined;
|
1544
1545
|
dateOfBirth?: string | undefined;
|
1545
|
-
type: [string, ...string[]];
|
1546
1546
|
};
|
1547
1547
|
issuanceDate: string;
|
1548
1548
|
credentialSubject: {
|
@@ -1804,7 +1804,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1804
1804
|
jws?: string | undefined;
|
1805
1805
|
type: string;
|
1806
1806
|
created: string;
|
1807
|
-
proofPurpose:
|
1807
|
+
proofPurpose: string;
|
1808
1808
|
verificationMethod: string;
|
1809
1809
|
} | {
|
1810
1810
|
[x: string]: any;
|
@@ -1814,13 +1814,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1814
1814
|
jws?: string | undefined;
|
1815
1815
|
type: string;
|
1816
1816
|
created: string;
|
1817
|
-
proofPurpose:
|
1817
|
+
proofPurpose: string;
|
1818
1818
|
verificationMethod: string;
|
1819
1819
|
}[] | undefined;
|
1820
1820
|
type: [string, ...string[]];
|
1821
1821
|
'@context': string[];
|
1822
1822
|
issuer: string | {
|
1823
1823
|
[x: string]: any;
|
1824
|
+
type?: [string, ...string[]] | undefined;
|
1824
1825
|
id?: string | undefined;
|
1825
1826
|
name?: string | undefined;
|
1826
1827
|
url?: string | undefined;
|
@@ -1863,7 +1864,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1863
1864
|
honorificSuffix?: string | undefined;
|
1864
1865
|
familyNamePrefix?: string | undefined;
|
1865
1866
|
dateOfBirth?: string | undefined;
|
1866
|
-
type: [string, ...string[]];
|
1867
1867
|
};
|
1868
1868
|
issuanceDate: string;
|
1869
1869
|
credentialSubject: {
|
@@ -1896,6 +1896,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1896
1896
|
achievementType?: string | undefined;
|
1897
1897
|
creator?: string | {
|
1898
1898
|
[x: string]: any;
|
1899
|
+
type?: [string, ...string[]] | undefined;
|
1899
1900
|
id?: string | undefined;
|
1900
1901
|
name?: string | undefined;
|
1901
1902
|
url?: string | undefined;
|
@@ -1938,7 +1939,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1938
1939
|
honorificSuffix?: string | undefined;
|
1939
1940
|
familyNamePrefix?: string | undefined;
|
1940
1941
|
dateOfBirth?: string | undefined;
|
1941
|
-
type: [string, ...string[]];
|
1942
1942
|
} | undefined;
|
1943
1943
|
creditsAvailable?: number | undefined;
|
1944
1944
|
fieldOfStudy?: string | undefined;
|
@@ -2025,7 +2025,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2025
2025
|
jws?: string | undefined;
|
2026
2026
|
type: string;
|
2027
2027
|
created: string;
|
2028
|
-
proofPurpose:
|
2028
|
+
proofPurpose: string;
|
2029
2029
|
verificationMethod: string;
|
2030
2030
|
} | {
|
2031
2031
|
[x: string]: any;
|
@@ -2035,13 +2035,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2035
2035
|
jws?: string | undefined;
|
2036
2036
|
type: string;
|
2037
2037
|
created: string;
|
2038
|
-
proofPurpose:
|
2038
|
+
proofPurpose: string;
|
2039
2039
|
verificationMethod: string;
|
2040
2040
|
}[] | undefined;
|
2041
2041
|
type: [string, ...string[]];
|
2042
2042
|
'@context': string[];
|
2043
2043
|
issuer: string | {
|
2044
2044
|
[x: string]: any;
|
2045
|
+
type?: [string, ...string[]] | undefined;
|
2045
2046
|
id?: string | undefined;
|
2046
2047
|
name?: string | undefined;
|
2047
2048
|
url?: string | undefined;
|
@@ -2084,7 +2085,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2084
2085
|
honorificSuffix?: string | undefined;
|
2085
2086
|
familyNamePrefix?: string | undefined;
|
2086
2087
|
dateOfBirth?: string | undefined;
|
2087
|
-
type: [string, ...string[]];
|
2088
2088
|
};
|
2089
2089
|
issuanceDate: string;
|
2090
2090
|
credentialSubject: {
|
@@ -2117,6 +2117,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2117
2117
|
achievementType?: string | undefined;
|
2118
2118
|
creator?: string | {
|
2119
2119
|
[x: string]: any;
|
2120
|
+
type?: [string, ...string[]] | undefined;
|
2120
2121
|
id?: string | undefined;
|
2121
2122
|
name?: string | undefined;
|
2122
2123
|
url?: string | undefined;
|
@@ -2159,7 +2160,6 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2159
2160
|
honorificSuffix?: string | undefined;
|
2160
2161
|
familyNamePrefix?: string | undefined;
|
2161
2162
|
dateOfBirth?: string | undefined;
|
2162
|
-
type: [string, ...string[]];
|
2163
2163
|
} | undefined;
|
2164
2164
|
creditsAvailable?: number | undefined;
|
2165
2165
|
fieldOfStudy?: string | undefined;
|
@@ -2344,7 +2344,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2344
2344
|
achievementType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Achievement", "ApprenticeshipCertificate", "Assessment", "Assignment", "AssociateDegree", "Award", "Badge", "BachelorDegree", "Certificate", "CertificateOfCompletion", "Certification", "CommunityService", "Competency", "Course", "CoCurricular", "Degree", "Diploma", "DoctoralDegree", "Fieldwork", "GeneralEducationDevelopment", "JourneymanCertificate", "LearningProgram", "License", "Membership", "ProfessionalDoctorate", "QualityAssuranceCredential", "MasterCertificate", "MasterDegree", "MicroCredential", "ResearchDoctorate", "SecondarySchoolDiploma"]>, z.ZodString]>>;
|
2345
2345
|
creator: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2346
2346
|
id: z.ZodOptional<z.ZodString>;
|
2347
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
2347
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
2348
2348
|
name: z.ZodOptional<z.ZodString>;
|
2349
2349
|
url: z.ZodOptional<z.ZodString>;
|
2350
2350
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -2440,6 +2440,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2440
2440
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
2441
2441
|
}, "strip", z.ZodAny, {
|
2442
2442
|
[x: string]: any;
|
2443
|
+
type?: [string, ...string[]] | undefined;
|
2443
2444
|
id?: string | undefined;
|
2444
2445
|
name?: string | undefined;
|
2445
2446
|
url?: string | undefined;
|
@@ -2482,9 +2483,9 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2482
2483
|
honorificSuffix?: string | undefined;
|
2483
2484
|
familyNamePrefix?: string | undefined;
|
2484
2485
|
dateOfBirth?: string | undefined;
|
2485
|
-
type: [string, ...string[]];
|
2486
2486
|
}, {
|
2487
2487
|
[x: string]: any;
|
2488
|
+
type?: [string, ...string[]] | undefined;
|
2488
2489
|
id?: string | undefined;
|
2489
2490
|
name?: string | undefined;
|
2490
2491
|
url?: string | undefined;
|
@@ -2527,7 +2528,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2527
2528
|
honorificSuffix?: string | undefined;
|
2528
2529
|
familyNamePrefix?: string | undefined;
|
2529
2530
|
dateOfBirth?: string | undefined;
|
2530
|
-
type: [string, ...string[]];
|
2531
2531
|
}>]>>;
|
2532
2532
|
creditsAvailable: z.ZodOptional<z.ZodNumber>;
|
2533
2533
|
criteria: z.ZodObject<{
|
@@ -2549,7 +2549,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2549
2549
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
2550
2550
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
2551
2551
|
id: z.ZodOptional<z.ZodString>;
|
2552
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
2552
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
2553
2553
|
name: z.ZodOptional<z.ZodString>;
|
2554
2554
|
url: z.ZodOptional<z.ZodString>;
|
2555
2555
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -2645,6 +2645,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2645
2645
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
2646
2646
|
}, "strip", z.ZodAny, {
|
2647
2647
|
[x: string]: any;
|
2648
|
+
type?: [string, ...string[]] | undefined;
|
2648
2649
|
id?: string | undefined;
|
2649
2650
|
name?: string | undefined;
|
2650
2651
|
url?: string | undefined;
|
@@ -2687,9 +2688,9 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2687
2688
|
honorificSuffix?: string | undefined;
|
2688
2689
|
familyNamePrefix?: string | undefined;
|
2689
2690
|
dateOfBirth?: string | undefined;
|
2690
|
-
type: [string, ...string[]];
|
2691
2691
|
}, {
|
2692
2692
|
[x: string]: any;
|
2693
|
+
type?: [string, ...string[]] | undefined;
|
2693
2694
|
id?: string | undefined;
|
2694
2695
|
name?: string | undefined;
|
2695
2696
|
url?: string | undefined;
|
@@ -2732,7 +2733,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2732
2733
|
honorificSuffix?: string | undefined;
|
2733
2734
|
familyNamePrefix?: string | undefined;
|
2734
2735
|
dateOfBirth?: string | undefined;
|
2735
|
-
type: [string, ...string[]];
|
2736
2736
|
}>]>;
|
2737
2737
|
issuanceDate: z.ZodString;
|
2738
2738
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -2805,7 +2805,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2805
2805
|
challenge: z.ZodOptional<z.ZodString>;
|
2806
2806
|
domain: z.ZodOptional<z.ZodString>;
|
2807
2807
|
nonce: z.ZodOptional<z.ZodString>;
|
2808
|
-
proofPurpose: z.
|
2808
|
+
proofPurpose: z.ZodString;
|
2809
2809
|
verificationMethod: z.ZodString;
|
2810
2810
|
jws: z.ZodOptional<z.ZodString>;
|
2811
2811
|
}, "strip", z.ZodAny, {
|
@@ -2816,7 +2816,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2816
2816
|
jws?: string | undefined;
|
2817
2817
|
type: string;
|
2818
2818
|
created: string;
|
2819
|
-
proofPurpose:
|
2819
|
+
proofPurpose: string;
|
2820
2820
|
verificationMethod: string;
|
2821
2821
|
}, {
|
2822
2822
|
[x: string]: any;
|
@@ -2826,7 +2826,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2826
2826
|
jws?: string | undefined;
|
2827
2827
|
type: string;
|
2828
2828
|
created: string;
|
2829
|
-
proofPurpose:
|
2829
|
+
proofPurpose: string;
|
2830
2830
|
verificationMethod: string;
|
2831
2831
|
}>, z.ZodArray<z.ZodObject<{
|
2832
2832
|
type: z.ZodString;
|
@@ -2834,7 +2834,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2834
2834
|
challenge: z.ZodOptional<z.ZodString>;
|
2835
2835
|
domain: z.ZodOptional<z.ZodString>;
|
2836
2836
|
nonce: z.ZodOptional<z.ZodString>;
|
2837
|
-
proofPurpose: z.
|
2837
|
+
proofPurpose: z.ZodString;
|
2838
2838
|
verificationMethod: z.ZodString;
|
2839
2839
|
jws: z.ZodOptional<z.ZodString>;
|
2840
2840
|
}, "strip", z.ZodAny, {
|
@@ -2845,7 +2845,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2845
2845
|
jws?: string | undefined;
|
2846
2846
|
type: string;
|
2847
2847
|
created: string;
|
2848
|
-
proofPurpose:
|
2848
|
+
proofPurpose: string;
|
2849
2849
|
verificationMethod: string;
|
2850
2850
|
}, {
|
2851
2851
|
[x: string]: any;
|
@@ -2855,7 +2855,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2855
2855
|
jws?: string | undefined;
|
2856
2856
|
type: string;
|
2857
2857
|
created: string;
|
2858
|
-
proofPurpose:
|
2858
|
+
proofPurpose: string;
|
2859
2859
|
verificationMethod: string;
|
2860
2860
|
}>, "many">]>>;
|
2861
2861
|
}>, "strip", z.ZodAny, {
|
@@ -2883,7 +2883,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2883
2883
|
jws?: string | undefined;
|
2884
2884
|
type: string;
|
2885
2885
|
created: string;
|
2886
|
-
proofPurpose:
|
2886
|
+
proofPurpose: string;
|
2887
2887
|
verificationMethod: string;
|
2888
2888
|
} | {
|
2889
2889
|
[x: string]: any;
|
@@ -2893,13 +2893,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2893
2893
|
jws?: string | undefined;
|
2894
2894
|
type: string;
|
2895
2895
|
created: string;
|
2896
|
-
proofPurpose:
|
2896
|
+
proofPurpose: string;
|
2897
2897
|
verificationMethod: string;
|
2898
2898
|
}[] | undefined;
|
2899
2899
|
type: [string, ...string[]];
|
2900
2900
|
'@context': string[];
|
2901
2901
|
issuer: string | {
|
2902
2902
|
[x: string]: any;
|
2903
|
+
type?: [string, ...string[]] | undefined;
|
2903
2904
|
id?: string | undefined;
|
2904
2905
|
name?: string | undefined;
|
2905
2906
|
url?: string | undefined;
|
@@ -2942,7 +2943,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2942
2943
|
honorificSuffix?: string | undefined;
|
2943
2944
|
familyNamePrefix?: string | undefined;
|
2944
2945
|
dateOfBirth?: string | undefined;
|
2945
|
-
type: [string, ...string[]];
|
2946
2946
|
};
|
2947
2947
|
issuanceDate: string;
|
2948
2948
|
credentialSubject: {
|
@@ -2975,7 +2975,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2975
2975
|
jws?: string | undefined;
|
2976
2976
|
type: string;
|
2977
2977
|
created: string;
|
2978
|
-
proofPurpose:
|
2978
|
+
proofPurpose: string;
|
2979
2979
|
verificationMethod: string;
|
2980
2980
|
} | {
|
2981
2981
|
[x: string]: any;
|
@@ -2985,13 +2985,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2985
2985
|
jws?: string | undefined;
|
2986
2986
|
type: string;
|
2987
2987
|
created: string;
|
2988
|
-
proofPurpose:
|
2988
|
+
proofPurpose: string;
|
2989
2989
|
verificationMethod: string;
|
2990
2990
|
}[] | undefined;
|
2991
2991
|
type: [string, ...string[]];
|
2992
2992
|
'@context': string[];
|
2993
2993
|
issuer: string | {
|
2994
2994
|
[x: string]: any;
|
2995
|
+
type?: [string, ...string[]] | undefined;
|
2995
2996
|
id?: string | undefined;
|
2996
2997
|
name?: string | undefined;
|
2997
2998
|
url?: string | undefined;
|
@@ -3034,7 +3035,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3034
3035
|
honorificSuffix?: string | undefined;
|
3035
3036
|
familyNamePrefix?: string | undefined;
|
3036
3037
|
dateOfBirth?: string | undefined;
|
3037
|
-
type: [string, ...string[]];
|
3038
3038
|
};
|
3039
3039
|
issuanceDate: string;
|
3040
3040
|
credentialSubject: {
|
@@ -3296,7 +3296,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3296
3296
|
jws?: string | undefined;
|
3297
3297
|
type: string;
|
3298
3298
|
created: string;
|
3299
|
-
proofPurpose:
|
3299
|
+
proofPurpose: string;
|
3300
3300
|
verificationMethod: string;
|
3301
3301
|
} | {
|
3302
3302
|
[x: string]: any;
|
@@ -3306,13 +3306,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3306
3306
|
jws?: string | undefined;
|
3307
3307
|
type: string;
|
3308
3308
|
created: string;
|
3309
|
-
proofPurpose:
|
3309
|
+
proofPurpose: string;
|
3310
3310
|
verificationMethod: string;
|
3311
3311
|
}[] | undefined;
|
3312
3312
|
type: [string, ...string[]];
|
3313
3313
|
'@context': string[];
|
3314
3314
|
issuer: string | {
|
3315
3315
|
[x: string]: any;
|
3316
|
+
type?: [string, ...string[]] | undefined;
|
3316
3317
|
id?: string | undefined;
|
3317
3318
|
name?: string | undefined;
|
3318
3319
|
url?: string | undefined;
|
@@ -3355,7 +3356,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3355
3356
|
honorificSuffix?: string | undefined;
|
3356
3357
|
familyNamePrefix?: string | undefined;
|
3357
3358
|
dateOfBirth?: string | undefined;
|
3358
|
-
type: [string, ...string[]];
|
3359
3359
|
};
|
3360
3360
|
issuanceDate: string;
|
3361
3361
|
credentialSubject: {
|
@@ -3388,6 +3388,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3388
3388
|
achievementType?: string | undefined;
|
3389
3389
|
creator?: string | {
|
3390
3390
|
[x: string]: any;
|
3391
|
+
type?: [string, ...string[]] | undefined;
|
3391
3392
|
id?: string | undefined;
|
3392
3393
|
name?: string | undefined;
|
3393
3394
|
url?: string | undefined;
|
@@ -3430,7 +3431,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3430
3431
|
honorificSuffix?: string | undefined;
|
3431
3432
|
familyNamePrefix?: string | undefined;
|
3432
3433
|
dateOfBirth?: string | undefined;
|
3433
|
-
type: [string, ...string[]];
|
3434
3434
|
} | undefined;
|
3435
3435
|
creditsAvailable?: number | undefined;
|
3436
3436
|
fieldOfStudy?: string | undefined;
|
@@ -3517,7 +3517,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3517
3517
|
jws?: string | undefined;
|
3518
3518
|
type: string;
|
3519
3519
|
created: string;
|
3520
|
-
proofPurpose:
|
3520
|
+
proofPurpose: string;
|
3521
3521
|
verificationMethod: string;
|
3522
3522
|
} | {
|
3523
3523
|
[x: string]: any;
|
@@ -3527,13 +3527,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3527
3527
|
jws?: string | undefined;
|
3528
3528
|
type: string;
|
3529
3529
|
created: string;
|
3530
|
-
proofPurpose:
|
3530
|
+
proofPurpose: string;
|
3531
3531
|
verificationMethod: string;
|
3532
3532
|
}[] | undefined;
|
3533
3533
|
type: [string, ...string[]];
|
3534
3534
|
'@context': string[];
|
3535
3535
|
issuer: string | {
|
3536
3536
|
[x: string]: any;
|
3537
|
+
type?: [string, ...string[]] | undefined;
|
3537
3538
|
id?: string | undefined;
|
3538
3539
|
name?: string | undefined;
|
3539
3540
|
url?: string | undefined;
|
@@ -3576,7 +3577,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3576
3577
|
honorificSuffix?: string | undefined;
|
3577
3578
|
familyNamePrefix?: string | undefined;
|
3578
3579
|
dateOfBirth?: string | undefined;
|
3579
|
-
type: [string, ...string[]];
|
3580
3580
|
};
|
3581
3581
|
issuanceDate: string;
|
3582
3582
|
credentialSubject: {
|
@@ -3609,6 +3609,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3609
3609
|
achievementType?: string | undefined;
|
3610
3610
|
creator?: string | {
|
3611
3611
|
[x: string]: any;
|
3612
|
+
type?: [string, ...string[]] | undefined;
|
3612
3613
|
id?: string | undefined;
|
3613
3614
|
name?: string | undefined;
|
3614
3615
|
url?: string | undefined;
|
@@ -3651,7 +3652,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3651
3652
|
honorificSuffix?: string | undefined;
|
3652
3653
|
familyNamePrefix?: string | undefined;
|
3653
3654
|
dateOfBirth?: string | undefined;
|
3654
|
-
type: [string, ...string[]];
|
3655
3655
|
} | undefined;
|
3656
3656
|
creditsAvailable?: number | undefined;
|
3657
3657
|
fieldOfStudy?: string | undefined;
|
@@ -3812,7 +3812,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3812
3812
|
role: z.ZodOptional<z.ZodString>;
|
3813
3813
|
source: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3814
3814
|
id: z.ZodOptional<z.ZodString>;
|
3815
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
3815
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
3816
3816
|
name: z.ZodOptional<z.ZodString>;
|
3817
3817
|
url: z.ZodOptional<z.ZodString>;
|
3818
3818
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -3908,6 +3908,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3908
3908
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
3909
3909
|
}, "strip", z.ZodAny, {
|
3910
3910
|
[x: string]: any;
|
3911
|
+
type?: [string, ...string[]] | undefined;
|
3911
3912
|
id?: string | undefined;
|
3912
3913
|
name?: string | undefined;
|
3913
3914
|
url?: string | undefined;
|
@@ -3950,9 +3951,9 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3950
3951
|
honorificSuffix?: string | undefined;
|
3951
3952
|
familyNamePrefix?: string | undefined;
|
3952
3953
|
dateOfBirth?: string | undefined;
|
3953
|
-
type: [string, ...string[]];
|
3954
3954
|
}, {
|
3955
3955
|
[x: string]: any;
|
3956
|
+
type?: [string, ...string[]] | undefined;
|
3956
3957
|
id?: string | undefined;
|
3957
3958
|
name?: string | undefined;
|
3958
3959
|
url?: string | undefined;
|
@@ -3995,7 +3996,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3995
3996
|
honorificSuffix?: string | undefined;
|
3996
3997
|
familyNamePrefix?: string | undefined;
|
3997
3998
|
dateOfBirth?: string | undefined;
|
3998
|
-
type: [string, ...string[]];
|
3999
3999
|
}>]>>;
|
4000
4000
|
term: z.ZodOptional<z.ZodString>;
|
4001
4001
|
}, "strip", z.ZodAny, {
|
@@ -4045,7 +4045,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4045
4045
|
jws?: string | undefined;
|
4046
4046
|
type: string;
|
4047
4047
|
created: string;
|
4048
|
-
proofPurpose:
|
4048
|
+
proofPurpose: string;
|
4049
4049
|
verificationMethod: string;
|
4050
4050
|
} | {
|
4051
4051
|
[x: string]: any;
|
@@ -4055,13 +4055,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4055
4055
|
jws?: string | undefined;
|
4056
4056
|
type: string;
|
4057
4057
|
created: string;
|
4058
|
-
proofPurpose:
|
4058
|
+
proofPurpose: string;
|
4059
4059
|
verificationMethod: string;
|
4060
4060
|
}[] | undefined;
|
4061
4061
|
type: [string, ...string[]];
|
4062
4062
|
'@context': string[];
|
4063
4063
|
issuer: string | {
|
4064
4064
|
[x: string]: any;
|
4065
|
+
type?: [string, ...string[]] | undefined;
|
4065
4066
|
id?: string | undefined;
|
4066
4067
|
name?: string | undefined;
|
4067
4068
|
url?: string | undefined;
|
@@ -4104,7 +4105,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4104
4105
|
honorificSuffix?: string | undefined;
|
4105
4106
|
familyNamePrefix?: string | undefined;
|
4106
4107
|
dateOfBirth?: string | undefined;
|
4107
|
-
type: [string, ...string[]];
|
4108
4108
|
};
|
4109
4109
|
issuanceDate: string;
|
4110
4110
|
credentialSubject: {
|
@@ -4137,6 +4137,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4137
4137
|
achievementType?: string | undefined;
|
4138
4138
|
creator?: string | {
|
4139
4139
|
[x: string]: any;
|
4140
|
+
type?: [string, ...string[]] | undefined;
|
4140
4141
|
id?: string | undefined;
|
4141
4142
|
name?: string | undefined;
|
4142
4143
|
url?: string | undefined;
|
@@ -4179,7 +4180,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4179
4180
|
honorificSuffix?: string | undefined;
|
4180
4181
|
familyNamePrefix?: string | undefined;
|
4181
4182
|
dateOfBirth?: string | undefined;
|
4182
|
-
type: [string, ...string[]];
|
4183
4183
|
} | undefined;
|
4184
4184
|
creditsAvailable?: number | undefined;
|
4185
4185
|
fieldOfStudy?: string | undefined;
|
@@ -4260,6 +4260,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4260
4260
|
role?: string | undefined;
|
4261
4261
|
source?: string | {
|
4262
4262
|
[x: string]: any;
|
4263
|
+
type?: [string, ...string[]] | undefined;
|
4263
4264
|
id?: string | undefined;
|
4264
4265
|
name?: string | undefined;
|
4265
4266
|
url?: string | undefined;
|
@@ -4302,7 +4303,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4302
4303
|
honorificSuffix?: string | undefined;
|
4303
4304
|
familyNamePrefix?: string | undefined;
|
4304
4305
|
dateOfBirth?: string | undefined;
|
4305
|
-
type: [string, ...string[]];
|
4306
4306
|
} | undefined;
|
4307
4307
|
term?: string | undefined;
|
4308
4308
|
type: [string, ...string[]];
|
@@ -4353,7 +4353,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4353
4353
|
jws?: string | undefined;
|
4354
4354
|
type: string;
|
4355
4355
|
created: string;
|
4356
|
-
proofPurpose:
|
4356
|
+
proofPurpose: string;
|
4357
4357
|
verificationMethod: string;
|
4358
4358
|
} | {
|
4359
4359
|
[x: string]: any;
|
@@ -4363,13 +4363,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4363
4363
|
jws?: string | undefined;
|
4364
4364
|
type: string;
|
4365
4365
|
created: string;
|
4366
|
-
proofPurpose:
|
4366
|
+
proofPurpose: string;
|
4367
4367
|
verificationMethod: string;
|
4368
4368
|
}[] | undefined;
|
4369
4369
|
type: [string, ...string[]];
|
4370
4370
|
'@context': string[];
|
4371
4371
|
issuer: string | {
|
4372
4372
|
[x: string]: any;
|
4373
|
+
type?: [string, ...string[]] | undefined;
|
4373
4374
|
id?: string | undefined;
|
4374
4375
|
name?: string | undefined;
|
4375
4376
|
url?: string | undefined;
|
@@ -4412,7 +4413,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4412
4413
|
honorificSuffix?: string | undefined;
|
4413
4414
|
familyNamePrefix?: string | undefined;
|
4414
4415
|
dateOfBirth?: string | undefined;
|
4415
|
-
type: [string, ...string[]];
|
4416
4416
|
};
|
4417
4417
|
issuanceDate: string;
|
4418
4418
|
credentialSubject: {
|
@@ -4445,6 +4445,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4445
4445
|
achievementType?: string | undefined;
|
4446
4446
|
creator?: string | {
|
4447
4447
|
[x: string]: any;
|
4448
|
+
type?: [string, ...string[]] | undefined;
|
4448
4449
|
id?: string | undefined;
|
4449
4450
|
name?: string | undefined;
|
4450
4451
|
url?: string | undefined;
|
@@ -4487,7 +4488,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4487
4488
|
honorificSuffix?: string | undefined;
|
4488
4489
|
familyNamePrefix?: string | undefined;
|
4489
4490
|
dateOfBirth?: string | undefined;
|
4490
|
-
type: [string, ...string[]];
|
4491
4491
|
} | undefined;
|
4492
4492
|
creditsAvailable?: number | undefined;
|
4493
4493
|
fieldOfStudy?: string | undefined;
|
@@ -4568,6 +4568,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4568
4568
|
role?: string | undefined;
|
4569
4569
|
source?: string | {
|
4570
4570
|
[x: string]: any;
|
4571
|
+
type?: [string, ...string[]] | undefined;
|
4571
4572
|
id?: string | undefined;
|
4572
4573
|
name?: string | undefined;
|
4573
4574
|
url?: string | undefined;
|
@@ -4610,7 +4611,6 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4610
4611
|
honorificSuffix?: string | undefined;
|
4611
4612
|
familyNamePrefix?: string | undefined;
|
4612
4613
|
dateOfBirth?: string | undefined;
|
4613
|
-
type: [string, ...string[]];
|
4614
4614
|
} | undefined;
|
4615
4615
|
term?: string | undefined;
|
4616
4616
|
type: [string, ...string[]];
|
@@ -4650,7 +4650,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4650
4650
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
4651
4651
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
4652
4652
|
id: z.ZodOptional<z.ZodString>;
|
4653
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
4653
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
4654
4654
|
name: z.ZodOptional<z.ZodString>;
|
4655
4655
|
url: z.ZodOptional<z.ZodString>;
|
4656
4656
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -4746,6 +4746,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4746
4746
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
4747
4747
|
}, "strip", z.ZodAny, {
|
4748
4748
|
[x: string]: any;
|
4749
|
+
type?: [string, ...string[]] | undefined;
|
4749
4750
|
id?: string | undefined;
|
4750
4751
|
name?: string | undefined;
|
4751
4752
|
url?: string | undefined;
|
@@ -4788,9 +4789,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4788
4789
|
honorificSuffix?: string | undefined;
|
4789
4790
|
familyNamePrefix?: string | undefined;
|
4790
4791
|
dateOfBirth?: string | undefined;
|
4791
|
-
type: [string, ...string[]];
|
4792
4792
|
}, {
|
4793
4793
|
[x: string]: any;
|
4794
|
+
type?: [string, ...string[]] | undefined;
|
4794
4795
|
id?: string | undefined;
|
4795
4796
|
name?: string | undefined;
|
4796
4797
|
url?: string | undefined;
|
@@ -4833,7 +4834,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4833
4834
|
honorificSuffix?: string | undefined;
|
4834
4835
|
familyNamePrefix?: string | undefined;
|
4835
4836
|
dateOfBirth?: string | undefined;
|
4836
|
-
type: [string, ...string[]];
|
4837
4837
|
}>]>;
|
4838
4838
|
issuanceDate: z.ZodString;
|
4839
4839
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -4927,7 +4927,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4927
4927
|
achievementType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Achievement", "ApprenticeshipCertificate", "Assessment", "Assignment", "AssociateDegree", "Award", "Badge", "BachelorDegree", "Certificate", "CertificateOfCompletion", "Certification", "CommunityService", "Competency", "Course", "CoCurricular", "Degree", "Diploma", "DoctoralDegree", "Fieldwork", "GeneralEducationDevelopment", "JourneymanCertificate", "LearningProgram", "License", "Membership", "ProfessionalDoctorate", "QualityAssuranceCredential", "MasterCertificate", "MasterDegree", "MicroCredential", "ResearchDoctorate", "SecondarySchoolDiploma"]>, z.ZodString]>>;
|
4928
4928
|
creator: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
4929
4929
|
id: z.ZodOptional<z.ZodString>;
|
4930
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
4930
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
4931
4931
|
name: z.ZodOptional<z.ZodString>;
|
4932
4932
|
url: z.ZodOptional<z.ZodString>;
|
4933
4933
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -5023,6 +5023,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5023
5023
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
5024
5024
|
}, "strip", z.ZodAny, {
|
5025
5025
|
[x: string]: any;
|
5026
|
+
type?: [string, ...string[]] | undefined;
|
5026
5027
|
id?: string | undefined;
|
5027
5028
|
name?: string | undefined;
|
5028
5029
|
url?: string | undefined;
|
@@ -5065,9 +5066,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5065
5066
|
honorificSuffix?: string | undefined;
|
5066
5067
|
familyNamePrefix?: string | undefined;
|
5067
5068
|
dateOfBirth?: string | undefined;
|
5068
|
-
type: [string, ...string[]];
|
5069
5069
|
}, {
|
5070
5070
|
[x: string]: any;
|
5071
|
+
type?: [string, ...string[]] | undefined;
|
5071
5072
|
id?: string | undefined;
|
5072
5073
|
name?: string | undefined;
|
5073
5074
|
url?: string | undefined;
|
@@ -5110,7 +5111,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5110
5111
|
honorificSuffix?: string | undefined;
|
5111
5112
|
familyNamePrefix?: string | undefined;
|
5112
5113
|
dateOfBirth?: string | undefined;
|
5113
|
-
type: [string, ...string[]];
|
5114
5114
|
}>]>>;
|
5115
5115
|
creditsAvailable: z.ZodOptional<z.ZodNumber>;
|
5116
5116
|
criteria: z.ZodObject<{
|
@@ -5132,7 +5132,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5132
5132
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
5133
5133
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
5134
5134
|
id: z.ZodOptional<z.ZodString>;
|
5135
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
5135
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
5136
5136
|
name: z.ZodOptional<z.ZodString>;
|
5137
5137
|
url: z.ZodOptional<z.ZodString>;
|
5138
5138
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -5228,6 +5228,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5228
5228
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
5229
5229
|
}, "strip", z.ZodAny, {
|
5230
5230
|
[x: string]: any;
|
5231
|
+
type?: [string, ...string[]] | undefined;
|
5231
5232
|
id?: string | undefined;
|
5232
5233
|
name?: string | undefined;
|
5233
5234
|
url?: string | undefined;
|
@@ -5270,9 +5271,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5270
5271
|
honorificSuffix?: string | undefined;
|
5271
5272
|
familyNamePrefix?: string | undefined;
|
5272
5273
|
dateOfBirth?: string | undefined;
|
5273
|
-
type: [string, ...string[]];
|
5274
5274
|
}, {
|
5275
5275
|
[x: string]: any;
|
5276
|
+
type?: [string, ...string[]] | undefined;
|
5276
5277
|
id?: string | undefined;
|
5277
5278
|
name?: string | undefined;
|
5278
5279
|
url?: string | undefined;
|
@@ -5315,7 +5316,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5315
5316
|
honorificSuffix?: string | undefined;
|
5316
5317
|
familyNamePrefix?: string | undefined;
|
5317
5318
|
dateOfBirth?: string | undefined;
|
5318
|
-
type: [string, ...string[]];
|
5319
5319
|
}>]>;
|
5320
5320
|
issuanceDate: z.ZodString;
|
5321
5321
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -5388,7 +5388,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5388
5388
|
challenge: z.ZodOptional<z.ZodString>;
|
5389
5389
|
domain: z.ZodOptional<z.ZodString>;
|
5390
5390
|
nonce: z.ZodOptional<z.ZodString>;
|
5391
|
-
proofPurpose: z.
|
5391
|
+
proofPurpose: z.ZodString;
|
5392
5392
|
verificationMethod: z.ZodString;
|
5393
5393
|
jws: z.ZodOptional<z.ZodString>;
|
5394
5394
|
}, "strip", z.ZodAny, {
|
@@ -5399,7 +5399,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5399
5399
|
jws?: string | undefined;
|
5400
5400
|
type: string;
|
5401
5401
|
created: string;
|
5402
|
-
proofPurpose:
|
5402
|
+
proofPurpose: string;
|
5403
5403
|
verificationMethod: string;
|
5404
5404
|
}, {
|
5405
5405
|
[x: string]: any;
|
@@ -5409,7 +5409,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5409
5409
|
jws?: string | undefined;
|
5410
5410
|
type: string;
|
5411
5411
|
created: string;
|
5412
|
-
proofPurpose:
|
5412
|
+
proofPurpose: string;
|
5413
5413
|
verificationMethod: string;
|
5414
5414
|
}>, z.ZodArray<z.ZodObject<{
|
5415
5415
|
type: z.ZodString;
|
@@ -5417,7 +5417,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5417
5417
|
challenge: z.ZodOptional<z.ZodString>;
|
5418
5418
|
domain: z.ZodOptional<z.ZodString>;
|
5419
5419
|
nonce: z.ZodOptional<z.ZodString>;
|
5420
|
-
proofPurpose: z.
|
5420
|
+
proofPurpose: z.ZodString;
|
5421
5421
|
verificationMethod: z.ZodString;
|
5422
5422
|
jws: z.ZodOptional<z.ZodString>;
|
5423
5423
|
}, "strip", z.ZodAny, {
|
@@ -5428,7 +5428,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5428
5428
|
jws?: string | undefined;
|
5429
5429
|
type: string;
|
5430
5430
|
created: string;
|
5431
|
-
proofPurpose:
|
5431
|
+
proofPurpose: string;
|
5432
5432
|
verificationMethod: string;
|
5433
5433
|
}, {
|
5434
5434
|
[x: string]: any;
|
@@ -5438,7 +5438,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5438
5438
|
jws?: string | undefined;
|
5439
5439
|
type: string;
|
5440
5440
|
created: string;
|
5441
|
-
proofPurpose:
|
5441
|
+
proofPurpose: string;
|
5442
5442
|
verificationMethod: string;
|
5443
5443
|
}>, "many">]>>;
|
5444
5444
|
}>, "strip", z.ZodAny, {
|
@@ -5466,7 +5466,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5466
5466
|
jws?: string | undefined;
|
5467
5467
|
type: string;
|
5468
5468
|
created: string;
|
5469
|
-
proofPurpose:
|
5469
|
+
proofPurpose: string;
|
5470
5470
|
verificationMethod: string;
|
5471
5471
|
} | {
|
5472
5472
|
[x: string]: any;
|
@@ -5476,13 +5476,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5476
5476
|
jws?: string | undefined;
|
5477
5477
|
type: string;
|
5478
5478
|
created: string;
|
5479
|
-
proofPurpose:
|
5479
|
+
proofPurpose: string;
|
5480
5480
|
verificationMethod: string;
|
5481
5481
|
}[] | undefined;
|
5482
5482
|
type: [string, ...string[]];
|
5483
5483
|
'@context': string[];
|
5484
5484
|
issuer: string | {
|
5485
5485
|
[x: string]: any;
|
5486
|
+
type?: [string, ...string[]] | undefined;
|
5486
5487
|
id?: string | undefined;
|
5487
5488
|
name?: string | undefined;
|
5488
5489
|
url?: string | undefined;
|
@@ -5525,7 +5526,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5525
5526
|
honorificSuffix?: string | undefined;
|
5526
5527
|
familyNamePrefix?: string | undefined;
|
5527
5528
|
dateOfBirth?: string | undefined;
|
5528
|
-
type: [string, ...string[]];
|
5529
5529
|
};
|
5530
5530
|
issuanceDate: string;
|
5531
5531
|
credentialSubject: {
|
@@ -5558,7 +5558,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5558
5558
|
jws?: string | undefined;
|
5559
5559
|
type: string;
|
5560
5560
|
created: string;
|
5561
|
-
proofPurpose:
|
5561
|
+
proofPurpose: string;
|
5562
5562
|
verificationMethod: string;
|
5563
5563
|
} | {
|
5564
5564
|
[x: string]: any;
|
@@ -5568,13 +5568,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5568
5568
|
jws?: string | undefined;
|
5569
5569
|
type: string;
|
5570
5570
|
created: string;
|
5571
|
-
proofPurpose:
|
5571
|
+
proofPurpose: string;
|
5572
5572
|
verificationMethod: string;
|
5573
5573
|
}[] | undefined;
|
5574
5574
|
type: [string, ...string[]];
|
5575
5575
|
'@context': string[];
|
5576
5576
|
issuer: string | {
|
5577
5577
|
[x: string]: any;
|
5578
|
+
type?: [string, ...string[]] | undefined;
|
5578
5579
|
id?: string | undefined;
|
5579
5580
|
name?: string | undefined;
|
5580
5581
|
url?: string | undefined;
|
@@ -5617,7 +5618,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5617
5618
|
honorificSuffix?: string | undefined;
|
5618
5619
|
familyNamePrefix?: string | undefined;
|
5619
5620
|
dateOfBirth?: string | undefined;
|
5620
|
-
type: [string, ...string[]];
|
5621
5621
|
};
|
5622
5622
|
issuanceDate: string;
|
5623
5623
|
credentialSubject: {
|
@@ -5879,7 +5879,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5879
5879
|
jws?: string | undefined;
|
5880
5880
|
type: string;
|
5881
5881
|
created: string;
|
5882
|
-
proofPurpose:
|
5882
|
+
proofPurpose: string;
|
5883
5883
|
verificationMethod: string;
|
5884
5884
|
} | {
|
5885
5885
|
[x: string]: any;
|
@@ -5889,13 +5889,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5889
5889
|
jws?: string | undefined;
|
5890
5890
|
type: string;
|
5891
5891
|
created: string;
|
5892
|
-
proofPurpose:
|
5892
|
+
proofPurpose: string;
|
5893
5893
|
verificationMethod: string;
|
5894
5894
|
}[] | undefined;
|
5895
5895
|
type: [string, ...string[]];
|
5896
5896
|
'@context': string[];
|
5897
5897
|
issuer: string | {
|
5898
5898
|
[x: string]: any;
|
5899
|
+
type?: [string, ...string[]] | undefined;
|
5899
5900
|
id?: string | undefined;
|
5900
5901
|
name?: string | undefined;
|
5901
5902
|
url?: string | undefined;
|
@@ -5938,7 +5939,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5938
5939
|
honorificSuffix?: string | undefined;
|
5939
5940
|
familyNamePrefix?: string | undefined;
|
5940
5941
|
dateOfBirth?: string | undefined;
|
5941
|
-
type: [string, ...string[]];
|
5942
5942
|
};
|
5943
5943
|
issuanceDate: string;
|
5944
5944
|
credentialSubject: {
|
@@ -5971,6 +5971,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5971
5971
|
achievementType?: string | undefined;
|
5972
5972
|
creator?: string | {
|
5973
5973
|
[x: string]: any;
|
5974
|
+
type?: [string, ...string[]] | undefined;
|
5974
5975
|
id?: string | undefined;
|
5975
5976
|
name?: string | undefined;
|
5976
5977
|
url?: string | undefined;
|
@@ -6013,7 +6014,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6013
6014
|
honorificSuffix?: string | undefined;
|
6014
6015
|
familyNamePrefix?: string | undefined;
|
6015
6016
|
dateOfBirth?: string | undefined;
|
6016
|
-
type: [string, ...string[]];
|
6017
6017
|
} | undefined;
|
6018
6018
|
creditsAvailable?: number | undefined;
|
6019
6019
|
fieldOfStudy?: string | undefined;
|
@@ -6100,7 +6100,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6100
6100
|
jws?: string | undefined;
|
6101
6101
|
type: string;
|
6102
6102
|
created: string;
|
6103
|
-
proofPurpose:
|
6103
|
+
proofPurpose: string;
|
6104
6104
|
verificationMethod: string;
|
6105
6105
|
} | {
|
6106
6106
|
[x: string]: any;
|
@@ -6110,13 +6110,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6110
6110
|
jws?: string | undefined;
|
6111
6111
|
type: string;
|
6112
6112
|
created: string;
|
6113
|
-
proofPurpose:
|
6113
|
+
proofPurpose: string;
|
6114
6114
|
verificationMethod: string;
|
6115
6115
|
}[] | undefined;
|
6116
6116
|
type: [string, ...string[]];
|
6117
6117
|
'@context': string[];
|
6118
6118
|
issuer: string | {
|
6119
6119
|
[x: string]: any;
|
6120
|
+
type?: [string, ...string[]] | undefined;
|
6120
6121
|
id?: string | undefined;
|
6121
6122
|
name?: string | undefined;
|
6122
6123
|
url?: string | undefined;
|
@@ -6159,7 +6160,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6159
6160
|
honorificSuffix?: string | undefined;
|
6160
6161
|
familyNamePrefix?: string | undefined;
|
6161
6162
|
dateOfBirth?: string | undefined;
|
6162
|
-
type: [string, ...string[]];
|
6163
6163
|
};
|
6164
6164
|
issuanceDate: string;
|
6165
6165
|
credentialSubject: {
|
@@ -6192,6 +6192,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6192
6192
|
achievementType?: string | undefined;
|
6193
6193
|
creator?: string | {
|
6194
6194
|
[x: string]: any;
|
6195
|
+
type?: [string, ...string[]] | undefined;
|
6195
6196
|
id?: string | undefined;
|
6196
6197
|
name?: string | undefined;
|
6197
6198
|
url?: string | undefined;
|
@@ -6234,7 +6235,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6234
6235
|
honorificSuffix?: string | undefined;
|
6235
6236
|
familyNamePrefix?: string | undefined;
|
6236
6237
|
dateOfBirth?: string | undefined;
|
6237
|
-
type: [string, ...string[]];
|
6238
6238
|
} | undefined;
|
6239
6239
|
creditsAvailable?: number | undefined;
|
6240
6240
|
fieldOfStudy?: string | undefined;
|
@@ -6395,7 +6395,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6395
6395
|
role: z.ZodOptional<z.ZodString>;
|
6396
6396
|
source: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
6397
6397
|
id: z.ZodOptional<z.ZodString>;
|
6398
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
6398
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
6399
6399
|
name: z.ZodOptional<z.ZodString>;
|
6400
6400
|
url: z.ZodOptional<z.ZodString>;
|
6401
6401
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -6491,6 +6491,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6491
6491
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
6492
6492
|
}, "strip", z.ZodAny, {
|
6493
6493
|
[x: string]: any;
|
6494
|
+
type?: [string, ...string[]] | undefined;
|
6494
6495
|
id?: string | undefined;
|
6495
6496
|
name?: string | undefined;
|
6496
6497
|
url?: string | undefined;
|
@@ -6533,9 +6534,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6533
6534
|
honorificSuffix?: string | undefined;
|
6534
6535
|
familyNamePrefix?: string | undefined;
|
6535
6536
|
dateOfBirth?: string | undefined;
|
6536
|
-
type: [string, ...string[]];
|
6537
6537
|
}, {
|
6538
6538
|
[x: string]: any;
|
6539
|
+
type?: [string, ...string[]] | undefined;
|
6539
6540
|
id?: string | undefined;
|
6540
6541
|
name?: string | undefined;
|
6541
6542
|
url?: string | undefined;
|
@@ -6578,7 +6579,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6578
6579
|
honorificSuffix?: string | undefined;
|
6579
6580
|
familyNamePrefix?: string | undefined;
|
6580
6581
|
dateOfBirth?: string | undefined;
|
6581
|
-
type: [string, ...string[]];
|
6582
6582
|
}>]>>;
|
6583
6583
|
term: z.ZodOptional<z.ZodString>;
|
6584
6584
|
}, "strip", z.ZodAny, {
|
@@ -6628,7 +6628,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6628
6628
|
jws?: string | undefined;
|
6629
6629
|
type: string;
|
6630
6630
|
created: string;
|
6631
|
-
proofPurpose:
|
6631
|
+
proofPurpose: string;
|
6632
6632
|
verificationMethod: string;
|
6633
6633
|
} | {
|
6634
6634
|
[x: string]: any;
|
@@ -6638,13 +6638,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6638
6638
|
jws?: string | undefined;
|
6639
6639
|
type: string;
|
6640
6640
|
created: string;
|
6641
|
-
proofPurpose:
|
6641
|
+
proofPurpose: string;
|
6642
6642
|
verificationMethod: string;
|
6643
6643
|
}[] | undefined;
|
6644
6644
|
type: [string, ...string[]];
|
6645
6645
|
'@context': string[];
|
6646
6646
|
issuer: string | {
|
6647
6647
|
[x: string]: any;
|
6648
|
+
type?: [string, ...string[]] | undefined;
|
6648
6649
|
id?: string | undefined;
|
6649
6650
|
name?: string | undefined;
|
6650
6651
|
url?: string | undefined;
|
@@ -6687,7 +6688,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6687
6688
|
honorificSuffix?: string | undefined;
|
6688
6689
|
familyNamePrefix?: string | undefined;
|
6689
6690
|
dateOfBirth?: string | undefined;
|
6690
|
-
type: [string, ...string[]];
|
6691
6691
|
};
|
6692
6692
|
issuanceDate: string;
|
6693
6693
|
credentialSubject: {
|
@@ -6720,6 +6720,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6720
6720
|
achievementType?: string | undefined;
|
6721
6721
|
creator?: string | {
|
6722
6722
|
[x: string]: any;
|
6723
|
+
type?: [string, ...string[]] | undefined;
|
6723
6724
|
id?: string | undefined;
|
6724
6725
|
name?: string | undefined;
|
6725
6726
|
url?: string | undefined;
|
@@ -6762,7 +6763,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6762
6763
|
honorificSuffix?: string | undefined;
|
6763
6764
|
familyNamePrefix?: string | undefined;
|
6764
6765
|
dateOfBirth?: string | undefined;
|
6765
|
-
type: [string, ...string[]];
|
6766
6766
|
} | undefined;
|
6767
6767
|
creditsAvailable?: number | undefined;
|
6768
6768
|
fieldOfStudy?: string | undefined;
|
@@ -6843,6 +6843,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6843
6843
|
role?: string | undefined;
|
6844
6844
|
source?: string | {
|
6845
6845
|
[x: string]: any;
|
6846
|
+
type?: [string, ...string[]] | undefined;
|
6846
6847
|
id?: string | undefined;
|
6847
6848
|
name?: string | undefined;
|
6848
6849
|
url?: string | undefined;
|
@@ -6885,7 +6886,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6885
6886
|
honorificSuffix?: string | undefined;
|
6886
6887
|
familyNamePrefix?: string | undefined;
|
6887
6888
|
dateOfBirth?: string | undefined;
|
6888
|
-
type: [string, ...string[]];
|
6889
6889
|
} | undefined;
|
6890
6890
|
term?: string | undefined;
|
6891
6891
|
type: [string, ...string[]];
|
@@ -6936,7 +6936,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6936
6936
|
jws?: string | undefined;
|
6937
6937
|
type: string;
|
6938
6938
|
created: string;
|
6939
|
-
proofPurpose:
|
6939
|
+
proofPurpose: string;
|
6940
6940
|
verificationMethod: string;
|
6941
6941
|
} | {
|
6942
6942
|
[x: string]: any;
|
@@ -6946,13 +6946,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6946
6946
|
jws?: string | undefined;
|
6947
6947
|
type: string;
|
6948
6948
|
created: string;
|
6949
|
-
proofPurpose:
|
6949
|
+
proofPurpose: string;
|
6950
6950
|
verificationMethod: string;
|
6951
6951
|
}[] | undefined;
|
6952
6952
|
type: [string, ...string[]];
|
6953
6953
|
'@context': string[];
|
6954
6954
|
issuer: string | {
|
6955
6955
|
[x: string]: any;
|
6956
|
+
type?: [string, ...string[]] | undefined;
|
6956
6957
|
id?: string | undefined;
|
6957
6958
|
name?: string | undefined;
|
6958
6959
|
url?: string | undefined;
|
@@ -6995,7 +6996,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6995
6996
|
honorificSuffix?: string | undefined;
|
6996
6997
|
familyNamePrefix?: string | undefined;
|
6997
6998
|
dateOfBirth?: string | undefined;
|
6998
|
-
type: [string, ...string[]];
|
6999
6999
|
};
|
7000
7000
|
issuanceDate: string;
|
7001
7001
|
credentialSubject: {
|
@@ -7028,6 +7028,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7028
7028
|
achievementType?: string | undefined;
|
7029
7029
|
creator?: string | {
|
7030
7030
|
[x: string]: any;
|
7031
|
+
type?: [string, ...string[]] | undefined;
|
7031
7032
|
id?: string | undefined;
|
7032
7033
|
name?: string | undefined;
|
7033
7034
|
url?: string | undefined;
|
@@ -7070,7 +7071,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7070
7071
|
honorificSuffix?: string | undefined;
|
7071
7072
|
familyNamePrefix?: string | undefined;
|
7072
7073
|
dateOfBirth?: string | undefined;
|
7073
|
-
type: [string, ...string[]];
|
7074
7074
|
} | undefined;
|
7075
7075
|
creditsAvailable?: number | undefined;
|
7076
7076
|
fieldOfStudy?: string | undefined;
|
@@ -7151,6 +7151,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7151
7151
|
role?: string | undefined;
|
7152
7152
|
source?: string | {
|
7153
7153
|
[x: string]: any;
|
7154
|
+
type?: [string, ...string[]] | undefined;
|
7154
7155
|
id?: string | undefined;
|
7155
7156
|
name?: string | undefined;
|
7156
7157
|
url?: string | undefined;
|
@@ -7193,7 +7194,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7193
7194
|
honorificSuffix?: string | undefined;
|
7194
7195
|
familyNamePrefix?: string | undefined;
|
7195
7196
|
dateOfBirth?: string | undefined;
|
7196
|
-
type: [string, ...string[]];
|
7197
7197
|
} | undefined;
|
7198
7198
|
term?: string | undefined;
|
7199
7199
|
type: [string, ...string[]];
|
@@ -7234,7 +7234,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7234
7234
|
achievementType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Achievement", "ApprenticeshipCertificate", "Assessment", "Assignment", "AssociateDegree", "Award", "Badge", "BachelorDegree", "Certificate", "CertificateOfCompletion", "Certification", "CommunityService", "Competency", "Course", "CoCurricular", "Degree", "Diploma", "DoctoralDegree", "Fieldwork", "GeneralEducationDevelopment", "JourneymanCertificate", "LearningProgram", "License", "Membership", "ProfessionalDoctorate", "QualityAssuranceCredential", "MasterCertificate", "MasterDegree", "MicroCredential", "ResearchDoctorate", "SecondarySchoolDiploma"]>, z.ZodString]>>;
|
7235
7235
|
creator: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
7236
7236
|
id: z.ZodOptional<z.ZodString>;
|
7237
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
7237
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
7238
7238
|
name: z.ZodOptional<z.ZodString>;
|
7239
7239
|
url: z.ZodOptional<z.ZodString>;
|
7240
7240
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -7330,6 +7330,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7330
7330
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
7331
7331
|
}, "strip", z.ZodAny, {
|
7332
7332
|
[x: string]: any;
|
7333
|
+
type?: [string, ...string[]] | undefined;
|
7333
7334
|
id?: string | undefined;
|
7334
7335
|
name?: string | undefined;
|
7335
7336
|
url?: string | undefined;
|
@@ -7372,9 +7373,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7372
7373
|
honorificSuffix?: string | undefined;
|
7373
7374
|
familyNamePrefix?: string | undefined;
|
7374
7375
|
dateOfBirth?: string | undefined;
|
7375
|
-
type: [string, ...string[]];
|
7376
7376
|
}, {
|
7377
7377
|
[x: string]: any;
|
7378
|
+
type?: [string, ...string[]] | undefined;
|
7378
7379
|
id?: string | undefined;
|
7379
7380
|
name?: string | undefined;
|
7380
7381
|
url?: string | undefined;
|
@@ -7417,7 +7418,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7417
7418
|
honorificSuffix?: string | undefined;
|
7418
7419
|
familyNamePrefix?: string | undefined;
|
7419
7420
|
dateOfBirth?: string | undefined;
|
7420
|
-
type: [string, ...string[]];
|
7421
7421
|
}>]>>;
|
7422
7422
|
creditsAvailable: z.ZodOptional<z.ZodNumber>;
|
7423
7423
|
criteria: z.ZodObject<{
|
@@ -7439,7 +7439,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7439
7439
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
7440
7440
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
7441
7441
|
id: z.ZodOptional<z.ZodString>;
|
7442
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
7442
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
7443
7443
|
name: z.ZodOptional<z.ZodString>;
|
7444
7444
|
url: z.ZodOptional<z.ZodString>;
|
7445
7445
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -7535,6 +7535,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7535
7535
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
7536
7536
|
}, "strip", z.ZodAny, {
|
7537
7537
|
[x: string]: any;
|
7538
|
+
type?: [string, ...string[]] | undefined;
|
7538
7539
|
id?: string | undefined;
|
7539
7540
|
name?: string | undefined;
|
7540
7541
|
url?: string | undefined;
|
@@ -7577,9 +7578,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7577
7578
|
honorificSuffix?: string | undefined;
|
7578
7579
|
familyNamePrefix?: string | undefined;
|
7579
7580
|
dateOfBirth?: string | undefined;
|
7580
|
-
type: [string, ...string[]];
|
7581
7581
|
}, {
|
7582
7582
|
[x: string]: any;
|
7583
|
+
type?: [string, ...string[]] | undefined;
|
7583
7584
|
id?: string | undefined;
|
7584
7585
|
name?: string | undefined;
|
7585
7586
|
url?: string | undefined;
|
@@ -7622,7 +7623,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7622
7623
|
honorificSuffix?: string | undefined;
|
7623
7624
|
familyNamePrefix?: string | undefined;
|
7624
7625
|
dateOfBirth?: string | undefined;
|
7625
|
-
type: [string, ...string[]];
|
7626
7626
|
}>]>;
|
7627
7627
|
issuanceDate: z.ZodString;
|
7628
7628
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -7695,7 +7695,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7695
7695
|
challenge: z.ZodOptional<z.ZodString>;
|
7696
7696
|
domain: z.ZodOptional<z.ZodString>;
|
7697
7697
|
nonce: z.ZodOptional<z.ZodString>;
|
7698
|
-
proofPurpose: z.
|
7698
|
+
proofPurpose: z.ZodString;
|
7699
7699
|
verificationMethod: z.ZodString;
|
7700
7700
|
jws: z.ZodOptional<z.ZodString>;
|
7701
7701
|
}, "strip", z.ZodAny, {
|
@@ -7706,7 +7706,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7706
7706
|
jws?: string | undefined;
|
7707
7707
|
type: string;
|
7708
7708
|
created: string;
|
7709
|
-
proofPurpose:
|
7709
|
+
proofPurpose: string;
|
7710
7710
|
verificationMethod: string;
|
7711
7711
|
}, {
|
7712
7712
|
[x: string]: any;
|
@@ -7716,7 +7716,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7716
7716
|
jws?: string | undefined;
|
7717
7717
|
type: string;
|
7718
7718
|
created: string;
|
7719
|
-
proofPurpose:
|
7719
|
+
proofPurpose: string;
|
7720
7720
|
verificationMethod: string;
|
7721
7721
|
}>, z.ZodArray<z.ZodObject<{
|
7722
7722
|
type: z.ZodString;
|
@@ -7724,7 +7724,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7724
7724
|
challenge: z.ZodOptional<z.ZodString>;
|
7725
7725
|
domain: z.ZodOptional<z.ZodString>;
|
7726
7726
|
nonce: z.ZodOptional<z.ZodString>;
|
7727
|
-
proofPurpose: z.
|
7727
|
+
proofPurpose: z.ZodString;
|
7728
7728
|
verificationMethod: z.ZodString;
|
7729
7729
|
jws: z.ZodOptional<z.ZodString>;
|
7730
7730
|
}, "strip", z.ZodAny, {
|
@@ -7735,7 +7735,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7735
7735
|
jws?: string | undefined;
|
7736
7736
|
type: string;
|
7737
7737
|
created: string;
|
7738
|
-
proofPurpose:
|
7738
|
+
proofPurpose: string;
|
7739
7739
|
verificationMethod: string;
|
7740
7740
|
}, {
|
7741
7741
|
[x: string]: any;
|
@@ -7745,7 +7745,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7745
7745
|
jws?: string | undefined;
|
7746
7746
|
type: string;
|
7747
7747
|
created: string;
|
7748
|
-
proofPurpose:
|
7748
|
+
proofPurpose: string;
|
7749
7749
|
verificationMethod: string;
|
7750
7750
|
}>, "many">]>>;
|
7751
7751
|
}>, "strip", z.ZodAny, {
|
@@ -7773,7 +7773,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7773
7773
|
jws?: string | undefined;
|
7774
7774
|
type: string;
|
7775
7775
|
created: string;
|
7776
|
-
proofPurpose:
|
7776
|
+
proofPurpose: string;
|
7777
7777
|
verificationMethod: string;
|
7778
7778
|
} | {
|
7779
7779
|
[x: string]: any;
|
@@ -7783,13 +7783,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7783
7783
|
jws?: string | undefined;
|
7784
7784
|
type: string;
|
7785
7785
|
created: string;
|
7786
|
-
proofPurpose:
|
7786
|
+
proofPurpose: string;
|
7787
7787
|
verificationMethod: string;
|
7788
7788
|
}[] | undefined;
|
7789
7789
|
type: [string, ...string[]];
|
7790
7790
|
'@context': string[];
|
7791
7791
|
issuer: string | {
|
7792
7792
|
[x: string]: any;
|
7793
|
+
type?: [string, ...string[]] | undefined;
|
7793
7794
|
id?: string | undefined;
|
7794
7795
|
name?: string | undefined;
|
7795
7796
|
url?: string | undefined;
|
@@ -7832,7 +7833,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7832
7833
|
honorificSuffix?: string | undefined;
|
7833
7834
|
familyNamePrefix?: string | undefined;
|
7834
7835
|
dateOfBirth?: string | undefined;
|
7835
|
-
type: [string, ...string[]];
|
7836
7836
|
};
|
7837
7837
|
issuanceDate: string;
|
7838
7838
|
credentialSubject: {
|
@@ -7865,7 +7865,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7865
7865
|
jws?: string | undefined;
|
7866
7866
|
type: string;
|
7867
7867
|
created: string;
|
7868
|
-
proofPurpose:
|
7868
|
+
proofPurpose: string;
|
7869
7869
|
verificationMethod: string;
|
7870
7870
|
} | {
|
7871
7871
|
[x: string]: any;
|
@@ -7875,13 +7875,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7875
7875
|
jws?: string | undefined;
|
7876
7876
|
type: string;
|
7877
7877
|
created: string;
|
7878
|
-
proofPurpose:
|
7878
|
+
proofPurpose: string;
|
7879
7879
|
verificationMethod: string;
|
7880
7880
|
}[] | undefined;
|
7881
7881
|
type: [string, ...string[]];
|
7882
7882
|
'@context': string[];
|
7883
7883
|
issuer: string | {
|
7884
7884
|
[x: string]: any;
|
7885
|
+
type?: [string, ...string[]] | undefined;
|
7885
7886
|
id?: string | undefined;
|
7886
7887
|
name?: string | undefined;
|
7887
7888
|
url?: string | undefined;
|
@@ -7924,7 +7925,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7924
7925
|
honorificSuffix?: string | undefined;
|
7925
7926
|
familyNamePrefix?: string | undefined;
|
7926
7927
|
dateOfBirth?: string | undefined;
|
7927
|
-
type: [string, ...string[]];
|
7928
7928
|
};
|
7929
7929
|
issuanceDate: string;
|
7930
7930
|
credentialSubject: {
|
@@ -8186,7 +8186,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8186
8186
|
jws?: string | undefined;
|
8187
8187
|
type: string;
|
8188
8188
|
created: string;
|
8189
|
-
proofPurpose:
|
8189
|
+
proofPurpose: string;
|
8190
8190
|
verificationMethod: string;
|
8191
8191
|
} | {
|
8192
8192
|
[x: string]: any;
|
@@ -8196,13 +8196,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8196
8196
|
jws?: string | undefined;
|
8197
8197
|
type: string;
|
8198
8198
|
created: string;
|
8199
|
-
proofPurpose:
|
8199
|
+
proofPurpose: string;
|
8200
8200
|
verificationMethod: string;
|
8201
8201
|
}[] | undefined;
|
8202
8202
|
type: [string, ...string[]];
|
8203
8203
|
'@context': string[];
|
8204
8204
|
issuer: string | {
|
8205
8205
|
[x: string]: any;
|
8206
|
+
type?: [string, ...string[]] | undefined;
|
8206
8207
|
id?: string | undefined;
|
8207
8208
|
name?: string | undefined;
|
8208
8209
|
url?: string | undefined;
|
@@ -8245,7 +8246,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8245
8246
|
honorificSuffix?: string | undefined;
|
8246
8247
|
familyNamePrefix?: string | undefined;
|
8247
8248
|
dateOfBirth?: string | undefined;
|
8248
|
-
type: [string, ...string[]];
|
8249
8249
|
};
|
8250
8250
|
issuanceDate: string;
|
8251
8251
|
credentialSubject: {
|
@@ -8278,6 +8278,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8278
8278
|
achievementType?: string | undefined;
|
8279
8279
|
creator?: string | {
|
8280
8280
|
[x: string]: any;
|
8281
|
+
type?: [string, ...string[]] | undefined;
|
8281
8282
|
id?: string | undefined;
|
8282
8283
|
name?: string | undefined;
|
8283
8284
|
url?: string | undefined;
|
@@ -8320,7 +8321,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8320
8321
|
honorificSuffix?: string | undefined;
|
8321
8322
|
familyNamePrefix?: string | undefined;
|
8322
8323
|
dateOfBirth?: string | undefined;
|
8323
|
-
type: [string, ...string[]];
|
8324
8324
|
} | undefined;
|
8325
8325
|
creditsAvailable?: number | undefined;
|
8326
8326
|
fieldOfStudy?: string | undefined;
|
@@ -8407,7 +8407,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8407
8407
|
jws?: string | undefined;
|
8408
8408
|
type: string;
|
8409
8409
|
created: string;
|
8410
|
-
proofPurpose:
|
8410
|
+
proofPurpose: string;
|
8411
8411
|
verificationMethod: string;
|
8412
8412
|
} | {
|
8413
8413
|
[x: string]: any;
|
@@ -8417,13 +8417,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8417
8417
|
jws?: string | undefined;
|
8418
8418
|
type: string;
|
8419
8419
|
created: string;
|
8420
|
-
proofPurpose:
|
8420
|
+
proofPurpose: string;
|
8421
8421
|
verificationMethod: string;
|
8422
8422
|
}[] | undefined;
|
8423
8423
|
type: [string, ...string[]];
|
8424
8424
|
'@context': string[];
|
8425
8425
|
issuer: string | {
|
8426
8426
|
[x: string]: any;
|
8427
|
+
type?: [string, ...string[]] | undefined;
|
8427
8428
|
id?: string | undefined;
|
8428
8429
|
name?: string | undefined;
|
8429
8430
|
url?: string | undefined;
|
@@ -8466,7 +8467,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8466
8467
|
honorificSuffix?: string | undefined;
|
8467
8468
|
familyNamePrefix?: string | undefined;
|
8468
8469
|
dateOfBirth?: string | undefined;
|
8469
|
-
type: [string, ...string[]];
|
8470
8470
|
};
|
8471
8471
|
issuanceDate: string;
|
8472
8472
|
credentialSubject: {
|
@@ -8499,6 +8499,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8499
8499
|
achievementType?: string | undefined;
|
8500
8500
|
creator?: string | {
|
8501
8501
|
[x: string]: any;
|
8502
|
+
type?: [string, ...string[]] | undefined;
|
8502
8503
|
id?: string | undefined;
|
8503
8504
|
name?: string | undefined;
|
8504
8505
|
url?: string | undefined;
|
@@ -8541,7 +8542,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8541
8542
|
honorificSuffix?: string | undefined;
|
8542
8543
|
familyNamePrefix?: string | undefined;
|
8543
8544
|
dateOfBirth?: string | undefined;
|
8544
|
-
type: [string, ...string[]];
|
8545
8545
|
} | undefined;
|
8546
8546
|
creditsAvailable?: number | undefined;
|
8547
8547
|
fieldOfStudy?: string | undefined;
|
@@ -8702,7 +8702,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8702
8702
|
role: z.ZodOptional<z.ZodString>;
|
8703
8703
|
source: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
8704
8704
|
id: z.ZodOptional<z.ZodString>;
|
8705
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
8705
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
8706
8706
|
name: z.ZodOptional<z.ZodString>;
|
8707
8707
|
url: z.ZodOptional<z.ZodString>;
|
8708
8708
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -8798,6 +8798,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8798
8798
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
8799
8799
|
}, "strip", z.ZodAny, {
|
8800
8800
|
[x: string]: any;
|
8801
|
+
type?: [string, ...string[]] | undefined;
|
8801
8802
|
id?: string | undefined;
|
8802
8803
|
name?: string | undefined;
|
8803
8804
|
url?: string | undefined;
|
@@ -8840,9 +8841,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8840
8841
|
honorificSuffix?: string | undefined;
|
8841
8842
|
familyNamePrefix?: string | undefined;
|
8842
8843
|
dateOfBirth?: string | undefined;
|
8843
|
-
type: [string, ...string[]];
|
8844
8844
|
}, {
|
8845
8845
|
[x: string]: any;
|
8846
|
+
type?: [string, ...string[]] | undefined;
|
8846
8847
|
id?: string | undefined;
|
8847
8848
|
name?: string | undefined;
|
8848
8849
|
url?: string | undefined;
|
@@ -8885,7 +8886,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8885
8886
|
honorificSuffix?: string | undefined;
|
8886
8887
|
familyNamePrefix?: string | undefined;
|
8887
8888
|
dateOfBirth?: string | undefined;
|
8888
|
-
type: [string, ...string[]];
|
8889
8889
|
}>]>>;
|
8890
8890
|
term: z.ZodOptional<z.ZodString>;
|
8891
8891
|
}, "strip", z.ZodAny, {
|
@@ -8935,7 +8935,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8935
8935
|
jws?: string | undefined;
|
8936
8936
|
type: string;
|
8937
8937
|
created: string;
|
8938
|
-
proofPurpose:
|
8938
|
+
proofPurpose: string;
|
8939
8939
|
verificationMethod: string;
|
8940
8940
|
} | {
|
8941
8941
|
[x: string]: any;
|
@@ -8945,13 +8945,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8945
8945
|
jws?: string | undefined;
|
8946
8946
|
type: string;
|
8947
8947
|
created: string;
|
8948
|
-
proofPurpose:
|
8948
|
+
proofPurpose: string;
|
8949
8949
|
verificationMethod: string;
|
8950
8950
|
}[] | undefined;
|
8951
8951
|
type: [string, ...string[]];
|
8952
8952
|
'@context': string[];
|
8953
8953
|
issuer: string | {
|
8954
8954
|
[x: string]: any;
|
8955
|
+
type?: [string, ...string[]] | undefined;
|
8955
8956
|
id?: string | undefined;
|
8956
8957
|
name?: string | undefined;
|
8957
8958
|
url?: string | undefined;
|
@@ -8994,7 +8995,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8994
8995
|
honorificSuffix?: string | undefined;
|
8995
8996
|
familyNamePrefix?: string | undefined;
|
8996
8997
|
dateOfBirth?: string | undefined;
|
8997
|
-
type: [string, ...string[]];
|
8998
8998
|
};
|
8999
8999
|
issuanceDate: string;
|
9000
9000
|
credentialSubject: {
|
@@ -9027,6 +9027,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9027
9027
|
achievementType?: string | undefined;
|
9028
9028
|
creator?: string | {
|
9029
9029
|
[x: string]: any;
|
9030
|
+
type?: [string, ...string[]] | undefined;
|
9030
9031
|
id?: string | undefined;
|
9031
9032
|
name?: string | undefined;
|
9032
9033
|
url?: string | undefined;
|
@@ -9069,7 +9070,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9069
9070
|
honorificSuffix?: string | undefined;
|
9070
9071
|
familyNamePrefix?: string | undefined;
|
9071
9072
|
dateOfBirth?: string | undefined;
|
9072
|
-
type: [string, ...string[]];
|
9073
9073
|
} | undefined;
|
9074
9074
|
creditsAvailable?: number | undefined;
|
9075
9075
|
fieldOfStudy?: string | undefined;
|
@@ -9150,6 +9150,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9150
9150
|
role?: string | undefined;
|
9151
9151
|
source?: string | {
|
9152
9152
|
[x: string]: any;
|
9153
|
+
type?: [string, ...string[]] | undefined;
|
9153
9154
|
id?: string | undefined;
|
9154
9155
|
name?: string | undefined;
|
9155
9156
|
url?: string | undefined;
|
@@ -9192,7 +9193,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9192
9193
|
honorificSuffix?: string | undefined;
|
9193
9194
|
familyNamePrefix?: string | undefined;
|
9194
9195
|
dateOfBirth?: string | undefined;
|
9195
|
-
type: [string, ...string[]];
|
9196
9196
|
} | undefined;
|
9197
9197
|
term?: string | undefined;
|
9198
9198
|
type: [string, ...string[]];
|
@@ -9243,7 +9243,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9243
9243
|
jws?: string | undefined;
|
9244
9244
|
type: string;
|
9245
9245
|
created: string;
|
9246
|
-
proofPurpose:
|
9246
|
+
proofPurpose: string;
|
9247
9247
|
verificationMethod: string;
|
9248
9248
|
} | {
|
9249
9249
|
[x: string]: any;
|
@@ -9253,13 +9253,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9253
9253
|
jws?: string | undefined;
|
9254
9254
|
type: string;
|
9255
9255
|
created: string;
|
9256
|
-
proofPurpose:
|
9256
|
+
proofPurpose: string;
|
9257
9257
|
verificationMethod: string;
|
9258
9258
|
}[] | undefined;
|
9259
9259
|
type: [string, ...string[]];
|
9260
9260
|
'@context': string[];
|
9261
9261
|
issuer: string | {
|
9262
9262
|
[x: string]: any;
|
9263
|
+
type?: [string, ...string[]] | undefined;
|
9263
9264
|
id?: string | undefined;
|
9264
9265
|
name?: string | undefined;
|
9265
9266
|
url?: string | undefined;
|
@@ -9302,7 +9303,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9302
9303
|
honorificSuffix?: string | undefined;
|
9303
9304
|
familyNamePrefix?: string | undefined;
|
9304
9305
|
dateOfBirth?: string | undefined;
|
9305
|
-
type: [string, ...string[]];
|
9306
9306
|
};
|
9307
9307
|
issuanceDate: string;
|
9308
9308
|
credentialSubject: {
|
@@ -9335,6 +9335,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9335
9335
|
achievementType?: string | undefined;
|
9336
9336
|
creator?: string | {
|
9337
9337
|
[x: string]: any;
|
9338
|
+
type?: [string, ...string[]] | undefined;
|
9338
9339
|
id?: string | undefined;
|
9339
9340
|
name?: string | undefined;
|
9340
9341
|
url?: string | undefined;
|
@@ -9377,7 +9378,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9377
9378
|
honorificSuffix?: string | undefined;
|
9378
9379
|
familyNamePrefix?: string | undefined;
|
9379
9380
|
dateOfBirth?: string | undefined;
|
9380
|
-
type: [string, ...string[]];
|
9381
9381
|
} | undefined;
|
9382
9382
|
creditsAvailable?: number | undefined;
|
9383
9383
|
fieldOfStudy?: string | undefined;
|
@@ -9458,6 +9458,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9458
9458
|
role?: string | undefined;
|
9459
9459
|
source?: string | {
|
9460
9460
|
[x: string]: any;
|
9461
|
+
type?: [string, ...string[]] | undefined;
|
9461
9462
|
id?: string | undefined;
|
9462
9463
|
name?: string | undefined;
|
9463
9464
|
url?: string | undefined;
|
@@ -9500,7 +9501,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9500
9501
|
honorificSuffix?: string | undefined;
|
9501
9502
|
familyNamePrefix?: string | undefined;
|
9502
9503
|
dateOfBirth?: string | undefined;
|
9503
|
-
type: [string, ...string[]];
|
9504
9504
|
} | undefined;
|
9505
9505
|
term?: string | undefined;
|
9506
9506
|
type: [string, ...string[]];
|
@@ -9511,7 +9511,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9511
9511
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
9512
9512
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
9513
9513
|
id: z.ZodOptional<z.ZodString>;
|
9514
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
9514
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
9515
9515
|
name: z.ZodOptional<z.ZodString>;
|
9516
9516
|
url: z.ZodOptional<z.ZodString>;
|
9517
9517
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -9607,6 +9607,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9607
9607
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
9608
9608
|
}, "strip", z.ZodAny, {
|
9609
9609
|
[x: string]: any;
|
9610
|
+
type?: [string, ...string[]] | undefined;
|
9610
9611
|
id?: string | undefined;
|
9611
9612
|
name?: string | undefined;
|
9612
9613
|
url?: string | undefined;
|
@@ -9649,9 +9650,9 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9649
9650
|
honorificSuffix?: string | undefined;
|
9650
9651
|
familyNamePrefix?: string | undefined;
|
9651
9652
|
dateOfBirth?: string | undefined;
|
9652
|
-
type: [string, ...string[]];
|
9653
9653
|
}, {
|
9654
9654
|
[x: string]: any;
|
9655
|
+
type?: [string, ...string[]] | undefined;
|
9655
9656
|
id?: string | undefined;
|
9656
9657
|
name?: string | undefined;
|
9657
9658
|
url?: string | undefined;
|
@@ -9694,7 +9695,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9694
9695
|
honorificSuffix?: string | undefined;
|
9695
9696
|
familyNamePrefix?: string | undefined;
|
9696
9697
|
dateOfBirth?: string | undefined;
|
9697
|
-
type: [string, ...string[]];
|
9698
9698
|
}>]>;
|
9699
9699
|
issuanceDate: z.ZodString;
|
9700
9700
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -9768,6 +9768,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9768
9768
|
'@context': string[];
|
9769
9769
|
issuer: string | {
|
9770
9770
|
[x: string]: any;
|
9771
|
+
type?: [string, ...string[]] | undefined;
|
9771
9772
|
id?: string | undefined;
|
9772
9773
|
name?: string | undefined;
|
9773
9774
|
url?: string | undefined;
|
@@ -9810,7 +9811,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9810
9811
|
honorificSuffix?: string | undefined;
|
9811
9812
|
familyNamePrefix?: string | undefined;
|
9812
9813
|
dateOfBirth?: string | undefined;
|
9813
|
-
type: [string, ...string[]];
|
9814
9814
|
};
|
9815
9815
|
issuanceDate: string;
|
9816
9816
|
credentialSubject: {
|
@@ -9841,6 +9841,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9841
9841
|
'@context': string[];
|
9842
9842
|
issuer: string | {
|
9843
9843
|
[x: string]: any;
|
9844
|
+
type?: [string, ...string[]] | undefined;
|
9844
9845
|
id?: string | undefined;
|
9845
9846
|
name?: string | undefined;
|
9846
9847
|
url?: string | undefined;
|
@@ -9883,7 +9884,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9883
9884
|
honorificSuffix?: string | undefined;
|
9884
9885
|
familyNamePrefix?: string | undefined;
|
9885
9886
|
dateOfBirth?: string | undefined;
|
9886
|
-
type: [string, ...string[]];
|
9887
9887
|
};
|
9888
9888
|
issuanceDate: string;
|
9889
9889
|
credentialSubject: {
|
@@ -9947,6 +9947,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9947
9947
|
'@context': string[];
|
9948
9948
|
issuer: string | {
|
9949
9949
|
[x: string]: any;
|
9950
|
+
type?: [string, ...string[]] | undefined;
|
9950
9951
|
id?: string | undefined;
|
9951
9952
|
name?: string | undefined;
|
9952
9953
|
url?: string | undefined;
|
@@ -9989,7 +9990,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9989
9990
|
honorificSuffix?: string | undefined;
|
9990
9991
|
familyNamePrefix?: string | undefined;
|
9991
9992
|
dateOfBirth?: string | undefined;
|
9992
|
-
type: [string, ...string[]];
|
9993
9993
|
};
|
9994
9994
|
issuanceDate: string;
|
9995
9995
|
credentialSubject: {
|
@@ -10029,6 +10029,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10029
10029
|
'@context': string[];
|
10030
10030
|
issuer: string | {
|
10031
10031
|
[x: string]: any;
|
10032
|
+
type?: [string, ...string[]] | undefined;
|
10032
10033
|
id?: string | undefined;
|
10033
10034
|
name?: string | undefined;
|
10034
10035
|
url?: string | undefined;
|
@@ -10071,7 +10072,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10071
10072
|
honorificSuffix?: string | undefined;
|
10072
10073
|
familyNamePrefix?: string | undefined;
|
10073
10074
|
dateOfBirth?: string | undefined;
|
10074
|
-
type: [string, ...string[]];
|
10075
10075
|
};
|
10076
10076
|
issuanceDate: string;
|
10077
10077
|
credentialSubject: {
|
@@ -10121,7 +10121,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10121
10121
|
jws?: string | undefined;
|
10122
10122
|
type: string;
|
10123
10123
|
created: string;
|
10124
|
-
proofPurpose:
|
10124
|
+
proofPurpose: string;
|
10125
10125
|
verificationMethod: string;
|
10126
10126
|
} | {
|
10127
10127
|
[x: string]: any;
|
@@ -10131,13 +10131,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10131
10131
|
jws?: string | undefined;
|
10132
10132
|
type: string;
|
10133
10133
|
created: string;
|
10134
|
-
proofPurpose:
|
10134
|
+
proofPurpose: string;
|
10135
10135
|
verificationMethod: string;
|
10136
10136
|
}[] | undefined;
|
10137
10137
|
type: [string, ...string[]];
|
10138
10138
|
'@context': string[];
|
10139
10139
|
issuer: string | {
|
10140
10140
|
[x: string]: any;
|
10141
|
+
type?: [string, ...string[]] | undefined;
|
10141
10142
|
id?: string | undefined;
|
10142
10143
|
name?: string | undefined;
|
10143
10144
|
url?: string | undefined;
|
@@ -10180,7 +10181,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10180
10181
|
honorificSuffix?: string | undefined;
|
10181
10182
|
familyNamePrefix?: string | undefined;
|
10182
10183
|
dateOfBirth?: string | undefined;
|
10183
|
-
type: [string, ...string[]];
|
10184
10184
|
};
|
10185
10185
|
issuanceDate: string;
|
10186
10186
|
credentialSubject: {
|
@@ -10213,6 +10213,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10213
10213
|
achievementType?: string | undefined;
|
10214
10214
|
creator?: string | {
|
10215
10215
|
[x: string]: any;
|
10216
|
+
type?: [string, ...string[]] | undefined;
|
10216
10217
|
id?: string | undefined;
|
10217
10218
|
name?: string | undefined;
|
10218
10219
|
url?: string | undefined;
|
@@ -10255,7 +10256,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10255
10256
|
honorificSuffix?: string | undefined;
|
10256
10257
|
familyNamePrefix?: string | undefined;
|
10257
10258
|
dateOfBirth?: string | undefined;
|
10258
|
-
type: [string, ...string[]];
|
10259
10259
|
} | undefined;
|
10260
10260
|
creditsAvailable?: number | undefined;
|
10261
10261
|
fieldOfStudy?: string | undefined;
|
@@ -10336,6 +10336,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10336
10336
|
role?: string | undefined;
|
10337
10337
|
source?: string | {
|
10338
10338
|
[x: string]: any;
|
10339
|
+
type?: [string, ...string[]] | undefined;
|
10339
10340
|
id?: string | undefined;
|
10340
10341
|
name?: string | undefined;
|
10341
10342
|
url?: string | undefined;
|
@@ -10378,7 +10379,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10378
10379
|
honorificSuffix?: string | undefined;
|
10379
10380
|
familyNamePrefix?: string | undefined;
|
10380
10381
|
dateOfBirth?: string | undefined;
|
10381
|
-
type: [string, ...string[]];
|
10382
10382
|
} | undefined;
|
10383
10383
|
term?: string | undefined;
|
10384
10384
|
type: [string, ...string[]];
|
@@ -10429,7 +10429,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10429
10429
|
jws?: string | undefined;
|
10430
10430
|
type: string;
|
10431
10431
|
created: string;
|
10432
|
-
proofPurpose:
|
10432
|
+
proofPurpose: string;
|
10433
10433
|
verificationMethod: string;
|
10434
10434
|
} | {
|
10435
10435
|
[x: string]: any;
|
@@ -10439,13 +10439,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10439
10439
|
jws?: string | undefined;
|
10440
10440
|
type: string;
|
10441
10441
|
created: string;
|
10442
|
-
proofPurpose:
|
10442
|
+
proofPurpose: string;
|
10443
10443
|
verificationMethod: string;
|
10444
10444
|
}[] | undefined;
|
10445
10445
|
type: [string, ...string[]];
|
10446
10446
|
'@context': string[];
|
10447
10447
|
issuer: string | {
|
10448
10448
|
[x: string]: any;
|
10449
|
+
type?: [string, ...string[]] | undefined;
|
10449
10450
|
id?: string | undefined;
|
10450
10451
|
name?: string | undefined;
|
10451
10452
|
url?: string | undefined;
|
@@ -10488,7 +10489,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10488
10489
|
honorificSuffix?: string | undefined;
|
10489
10490
|
familyNamePrefix?: string | undefined;
|
10490
10491
|
dateOfBirth?: string | undefined;
|
10491
|
-
type: [string, ...string[]];
|
10492
10492
|
};
|
10493
10493
|
issuanceDate: string;
|
10494
10494
|
credentialSubject: {
|
@@ -10521,6 +10521,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10521
10521
|
achievementType?: string | undefined;
|
10522
10522
|
creator?: string | {
|
10523
10523
|
[x: string]: any;
|
10524
|
+
type?: [string, ...string[]] | undefined;
|
10524
10525
|
id?: string | undefined;
|
10525
10526
|
name?: string | undefined;
|
10526
10527
|
url?: string | undefined;
|
@@ -10563,7 +10564,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10563
10564
|
honorificSuffix?: string | undefined;
|
10564
10565
|
familyNamePrefix?: string | undefined;
|
10565
10566
|
dateOfBirth?: string | undefined;
|
10566
|
-
type: [string, ...string[]];
|
10567
10567
|
} | undefined;
|
10568
10568
|
creditsAvailable?: number | undefined;
|
10569
10569
|
fieldOfStudy?: string | undefined;
|
@@ -10644,6 +10644,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10644
10644
|
role?: string | undefined;
|
10645
10645
|
source?: string | {
|
10646
10646
|
[x: string]: any;
|
10647
|
+
type?: [string, ...string[]] | undefined;
|
10647
10648
|
id?: string | undefined;
|
10648
10649
|
name?: string | undefined;
|
10649
10650
|
url?: string | undefined;
|
@@ -10686,7 +10687,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10686
10687
|
honorificSuffix?: string | undefined;
|
10687
10688
|
familyNamePrefix?: string | undefined;
|
10688
10689
|
dateOfBirth?: string | undefined;
|
10689
|
-
type: [string, ...string[]];
|
10690
10690
|
} | undefined;
|
10691
10691
|
term?: string | undefined;
|
10692
10692
|
type: [string, ...string[]];
|
@@ -10717,6 +10717,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10717
10717
|
'@context': string[];
|
10718
10718
|
issuer: string | {
|
10719
10719
|
[x: string]: any;
|
10720
|
+
type?: [string, ...string[]] | undefined;
|
10720
10721
|
id?: string | undefined;
|
10721
10722
|
name?: string | undefined;
|
10722
10723
|
url?: string | undefined;
|
@@ -10759,7 +10760,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10759
10760
|
honorificSuffix?: string | undefined;
|
10760
10761
|
familyNamePrefix?: string | undefined;
|
10761
10762
|
dateOfBirth?: string | undefined;
|
10762
|
-
type: [string, ...string[]];
|
10763
10763
|
};
|
10764
10764
|
issuanceDate: string;
|
10765
10765
|
credentialSubject: {
|
@@ -10799,6 +10799,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10799
10799
|
'@context': string[];
|
10800
10800
|
issuer: string | {
|
10801
10801
|
[x: string]: any;
|
10802
|
+
type?: [string, ...string[]] | undefined;
|
10802
10803
|
id?: string | undefined;
|
10803
10804
|
name?: string | undefined;
|
10804
10805
|
url?: string | undefined;
|
@@ -10841,7 +10842,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10841
10842
|
honorificSuffix?: string | undefined;
|
10842
10843
|
familyNamePrefix?: string | undefined;
|
10843
10844
|
dateOfBirth?: string | undefined;
|
10844
|
-
type: [string, ...string[]];
|
10845
10845
|
};
|
10846
10846
|
issuanceDate: string;
|
10847
10847
|
credentialSubject: {
|
@@ -10891,7 +10891,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10891
10891
|
jws?: string | undefined;
|
10892
10892
|
type: string;
|
10893
10893
|
created: string;
|
10894
|
-
proofPurpose:
|
10894
|
+
proofPurpose: string;
|
10895
10895
|
verificationMethod: string;
|
10896
10896
|
} | {
|
10897
10897
|
[x: string]: any;
|
@@ -10901,13 +10901,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10901
10901
|
jws?: string | undefined;
|
10902
10902
|
type: string;
|
10903
10903
|
created: string;
|
10904
|
-
proofPurpose:
|
10904
|
+
proofPurpose: string;
|
10905
10905
|
verificationMethod: string;
|
10906
10906
|
}[] | undefined;
|
10907
10907
|
type: [string, ...string[]];
|
10908
10908
|
'@context': string[];
|
10909
10909
|
issuer: string | {
|
10910
10910
|
[x: string]: any;
|
10911
|
+
type?: [string, ...string[]] | undefined;
|
10911
10912
|
id?: string | undefined;
|
10912
10913
|
name?: string | undefined;
|
10913
10914
|
url?: string | undefined;
|
@@ -10950,7 +10951,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10950
10951
|
honorificSuffix?: string | undefined;
|
10951
10952
|
familyNamePrefix?: string | undefined;
|
10952
10953
|
dateOfBirth?: string | undefined;
|
10953
|
-
type: [string, ...string[]];
|
10954
10954
|
};
|
10955
10955
|
issuanceDate: string;
|
10956
10956
|
credentialSubject: {
|
@@ -10983,6 +10983,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10983
10983
|
achievementType?: string | undefined;
|
10984
10984
|
creator?: string | {
|
10985
10985
|
[x: string]: any;
|
10986
|
+
type?: [string, ...string[]] | undefined;
|
10986
10987
|
id?: string | undefined;
|
10987
10988
|
name?: string | undefined;
|
10988
10989
|
url?: string | undefined;
|
@@ -11025,7 +11026,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11025
11026
|
honorificSuffix?: string | undefined;
|
11026
11027
|
familyNamePrefix?: string | undefined;
|
11027
11028
|
dateOfBirth?: string | undefined;
|
11028
|
-
type: [string, ...string[]];
|
11029
11029
|
} | undefined;
|
11030
11030
|
creditsAvailable?: number | undefined;
|
11031
11031
|
fieldOfStudy?: string | undefined;
|
@@ -11106,6 +11106,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11106
11106
|
role?: string | undefined;
|
11107
11107
|
source?: string | {
|
11108
11108
|
[x: string]: any;
|
11109
|
+
type?: [string, ...string[]] | undefined;
|
11109
11110
|
id?: string | undefined;
|
11110
11111
|
name?: string | undefined;
|
11111
11112
|
url?: string | undefined;
|
@@ -11148,7 +11149,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11148
11149
|
honorificSuffix?: string | undefined;
|
11149
11150
|
familyNamePrefix?: string | undefined;
|
11150
11151
|
dateOfBirth?: string | undefined;
|
11151
|
-
type: [string, ...string[]];
|
11152
11152
|
} | undefined;
|
11153
11153
|
term?: string | undefined;
|
11154
11154
|
type: [string, ...string[]];
|
@@ -11199,7 +11199,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11199
11199
|
jws?: string | undefined;
|
11200
11200
|
type: string;
|
11201
11201
|
created: string;
|
11202
|
-
proofPurpose:
|
11202
|
+
proofPurpose: string;
|
11203
11203
|
verificationMethod: string;
|
11204
11204
|
} | {
|
11205
11205
|
[x: string]: any;
|
@@ -11209,13 +11209,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11209
11209
|
jws?: string | undefined;
|
11210
11210
|
type: string;
|
11211
11211
|
created: string;
|
11212
|
-
proofPurpose:
|
11212
|
+
proofPurpose: string;
|
11213
11213
|
verificationMethod: string;
|
11214
11214
|
}[] | undefined;
|
11215
11215
|
type: [string, ...string[]];
|
11216
11216
|
'@context': string[];
|
11217
11217
|
issuer: string | {
|
11218
11218
|
[x: string]: any;
|
11219
|
+
type?: [string, ...string[]] | undefined;
|
11219
11220
|
id?: string | undefined;
|
11220
11221
|
name?: string | undefined;
|
11221
11222
|
url?: string | undefined;
|
@@ -11258,7 +11259,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11258
11259
|
honorificSuffix?: string | undefined;
|
11259
11260
|
familyNamePrefix?: string | undefined;
|
11260
11261
|
dateOfBirth?: string | undefined;
|
11261
|
-
type: [string, ...string[]];
|
11262
11262
|
};
|
11263
11263
|
issuanceDate: string;
|
11264
11264
|
credentialSubject: {
|
@@ -11291,6 +11291,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11291
11291
|
achievementType?: string | undefined;
|
11292
11292
|
creator?: string | {
|
11293
11293
|
[x: string]: any;
|
11294
|
+
type?: [string, ...string[]] | undefined;
|
11294
11295
|
id?: string | undefined;
|
11295
11296
|
name?: string | undefined;
|
11296
11297
|
url?: string | undefined;
|
@@ -11333,7 +11334,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11333
11334
|
honorificSuffix?: string | undefined;
|
11334
11335
|
familyNamePrefix?: string | undefined;
|
11335
11336
|
dateOfBirth?: string | undefined;
|
11336
|
-
type: [string, ...string[]];
|
11337
11337
|
} | undefined;
|
11338
11338
|
creditsAvailable?: number | undefined;
|
11339
11339
|
fieldOfStudy?: string | undefined;
|
@@ -11414,6 +11414,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11414
11414
|
role?: string | undefined;
|
11415
11415
|
source?: string | {
|
11416
11416
|
[x: string]: any;
|
11417
|
+
type?: [string, ...string[]] | undefined;
|
11417
11418
|
id?: string | undefined;
|
11418
11419
|
name?: string | undefined;
|
11419
11420
|
url?: string | undefined;
|
@@ -11456,7 +11457,6 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11456
11457
|
honorificSuffix?: string | undefined;
|
11457
11458
|
familyNamePrefix?: string | undefined;
|
11458
11459
|
dateOfBirth?: string | undefined;
|
11459
|
-
type: [string, ...string[]];
|
11460
11460
|
} | undefined;
|
11461
11461
|
term?: string | undefined;
|
11462
11462
|
type: [string, ...string[]];
|
@@ -11469,7 +11469,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11469
11469
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
11470
11470
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11471
11471
|
id: z.ZodOptional<z.ZodString>;
|
11472
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
11472
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
11473
11473
|
name: z.ZodOptional<z.ZodString>;
|
11474
11474
|
url: z.ZodOptional<z.ZodString>;
|
11475
11475
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -11565,6 +11565,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11565
11565
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
11566
11566
|
}, "strip", z.ZodAny, {
|
11567
11567
|
[x: string]: any;
|
11568
|
+
type?: [string, ...string[]] | undefined;
|
11568
11569
|
id?: string | undefined;
|
11569
11570
|
name?: string | undefined;
|
11570
11571
|
url?: string | undefined;
|
@@ -11607,9 +11608,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11607
11608
|
honorificSuffix?: string | undefined;
|
11608
11609
|
familyNamePrefix?: string | undefined;
|
11609
11610
|
dateOfBirth?: string | undefined;
|
11610
|
-
type: [string, ...string[]];
|
11611
11611
|
}, {
|
11612
11612
|
[x: string]: any;
|
11613
|
+
type?: [string, ...string[]] | undefined;
|
11613
11614
|
id?: string | undefined;
|
11614
11615
|
name?: string | undefined;
|
11615
11616
|
url?: string | undefined;
|
@@ -11652,7 +11653,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11652
11653
|
honorificSuffix?: string | undefined;
|
11653
11654
|
familyNamePrefix?: string | undefined;
|
11654
11655
|
dateOfBirth?: string | undefined;
|
11655
|
-
type: [string, ...string[]];
|
11656
11656
|
}>]>;
|
11657
11657
|
issuanceDate: z.ZodString;
|
11658
11658
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -11746,7 +11746,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11746
11746
|
achievementType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Achievement", "ApprenticeshipCertificate", "Assessment", "Assignment", "AssociateDegree", "Award", "Badge", "BachelorDegree", "Certificate", "CertificateOfCompletion", "Certification", "CommunityService", "Competency", "Course", "CoCurricular", "Degree", "Diploma", "DoctoralDegree", "Fieldwork", "GeneralEducationDevelopment", "JourneymanCertificate", "LearningProgram", "License", "Membership", "ProfessionalDoctorate", "QualityAssuranceCredential", "MasterCertificate", "MasterDegree", "MicroCredential", "ResearchDoctorate", "SecondarySchoolDiploma"]>, z.ZodString]>>;
|
11747
11747
|
creator: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11748
11748
|
id: z.ZodOptional<z.ZodString>;
|
11749
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
11749
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
11750
11750
|
name: z.ZodOptional<z.ZodString>;
|
11751
11751
|
url: z.ZodOptional<z.ZodString>;
|
11752
11752
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -11842,6 +11842,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11842
11842
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
11843
11843
|
}, "strip", z.ZodAny, {
|
11844
11844
|
[x: string]: any;
|
11845
|
+
type?: [string, ...string[]] | undefined;
|
11845
11846
|
id?: string | undefined;
|
11846
11847
|
name?: string | undefined;
|
11847
11848
|
url?: string | undefined;
|
@@ -11884,9 +11885,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11884
11885
|
honorificSuffix?: string | undefined;
|
11885
11886
|
familyNamePrefix?: string | undefined;
|
11886
11887
|
dateOfBirth?: string | undefined;
|
11887
|
-
type: [string, ...string[]];
|
11888
11888
|
}, {
|
11889
11889
|
[x: string]: any;
|
11890
|
+
type?: [string, ...string[]] | undefined;
|
11890
11891
|
id?: string | undefined;
|
11891
11892
|
name?: string | undefined;
|
11892
11893
|
url?: string | undefined;
|
@@ -11929,7 +11930,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11929
11930
|
honorificSuffix?: string | undefined;
|
11930
11931
|
familyNamePrefix?: string | undefined;
|
11931
11932
|
dateOfBirth?: string | undefined;
|
11932
|
-
type: [string, ...string[]];
|
11933
11933
|
}>]>>;
|
11934
11934
|
creditsAvailable: z.ZodOptional<z.ZodNumber>;
|
11935
11935
|
criteria: z.ZodObject<{
|
@@ -11951,7 +11951,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11951
11951
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
11952
11952
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11953
11953
|
id: z.ZodOptional<z.ZodString>;
|
11954
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
11954
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
11955
11955
|
name: z.ZodOptional<z.ZodString>;
|
11956
11956
|
url: z.ZodOptional<z.ZodString>;
|
11957
11957
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -12047,6 +12047,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12047
12047
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
12048
12048
|
}, "strip", z.ZodAny, {
|
12049
12049
|
[x: string]: any;
|
12050
|
+
type?: [string, ...string[]] | undefined;
|
12050
12051
|
id?: string | undefined;
|
12051
12052
|
name?: string | undefined;
|
12052
12053
|
url?: string | undefined;
|
@@ -12089,9 +12090,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12089
12090
|
honorificSuffix?: string | undefined;
|
12090
12091
|
familyNamePrefix?: string | undefined;
|
12091
12092
|
dateOfBirth?: string | undefined;
|
12092
|
-
type: [string, ...string[]];
|
12093
12093
|
}, {
|
12094
12094
|
[x: string]: any;
|
12095
|
+
type?: [string, ...string[]] | undefined;
|
12095
12096
|
id?: string | undefined;
|
12096
12097
|
name?: string | undefined;
|
12097
12098
|
url?: string | undefined;
|
@@ -12134,7 +12135,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12134
12135
|
honorificSuffix?: string | undefined;
|
12135
12136
|
familyNamePrefix?: string | undefined;
|
12136
12137
|
dateOfBirth?: string | undefined;
|
12137
|
-
type: [string, ...string[]];
|
12138
12138
|
}>]>;
|
12139
12139
|
issuanceDate: z.ZodString;
|
12140
12140
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -12207,7 +12207,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12207
12207
|
challenge: z.ZodOptional<z.ZodString>;
|
12208
12208
|
domain: z.ZodOptional<z.ZodString>;
|
12209
12209
|
nonce: z.ZodOptional<z.ZodString>;
|
12210
|
-
proofPurpose: z.
|
12210
|
+
proofPurpose: z.ZodString;
|
12211
12211
|
verificationMethod: z.ZodString;
|
12212
12212
|
jws: z.ZodOptional<z.ZodString>;
|
12213
12213
|
}, "strip", z.ZodAny, {
|
@@ -12218,7 +12218,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12218
12218
|
jws?: string | undefined;
|
12219
12219
|
type: string;
|
12220
12220
|
created: string;
|
12221
|
-
proofPurpose:
|
12221
|
+
proofPurpose: string;
|
12222
12222
|
verificationMethod: string;
|
12223
12223
|
}, {
|
12224
12224
|
[x: string]: any;
|
@@ -12228,7 +12228,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12228
12228
|
jws?: string | undefined;
|
12229
12229
|
type: string;
|
12230
12230
|
created: string;
|
12231
|
-
proofPurpose:
|
12231
|
+
proofPurpose: string;
|
12232
12232
|
verificationMethod: string;
|
12233
12233
|
}>, z.ZodArray<z.ZodObject<{
|
12234
12234
|
type: z.ZodString;
|
@@ -12236,7 +12236,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12236
12236
|
challenge: z.ZodOptional<z.ZodString>;
|
12237
12237
|
domain: z.ZodOptional<z.ZodString>;
|
12238
12238
|
nonce: z.ZodOptional<z.ZodString>;
|
12239
|
-
proofPurpose: z.
|
12239
|
+
proofPurpose: z.ZodString;
|
12240
12240
|
verificationMethod: z.ZodString;
|
12241
12241
|
jws: z.ZodOptional<z.ZodString>;
|
12242
12242
|
}, "strip", z.ZodAny, {
|
@@ -12247,7 +12247,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12247
12247
|
jws?: string | undefined;
|
12248
12248
|
type: string;
|
12249
12249
|
created: string;
|
12250
|
-
proofPurpose:
|
12250
|
+
proofPurpose: string;
|
12251
12251
|
verificationMethod: string;
|
12252
12252
|
}, {
|
12253
12253
|
[x: string]: any;
|
@@ -12257,7 +12257,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12257
12257
|
jws?: string | undefined;
|
12258
12258
|
type: string;
|
12259
12259
|
created: string;
|
12260
|
-
proofPurpose:
|
12260
|
+
proofPurpose: string;
|
12261
12261
|
verificationMethod: string;
|
12262
12262
|
}>, "many">]>>;
|
12263
12263
|
}>, "strip", z.ZodAny, {
|
@@ -12285,7 +12285,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12285
12285
|
jws?: string | undefined;
|
12286
12286
|
type: string;
|
12287
12287
|
created: string;
|
12288
|
-
proofPurpose:
|
12288
|
+
proofPurpose: string;
|
12289
12289
|
verificationMethod: string;
|
12290
12290
|
} | {
|
12291
12291
|
[x: string]: any;
|
@@ -12295,13 +12295,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12295
12295
|
jws?: string | undefined;
|
12296
12296
|
type: string;
|
12297
12297
|
created: string;
|
12298
|
-
proofPurpose:
|
12298
|
+
proofPurpose: string;
|
12299
12299
|
verificationMethod: string;
|
12300
12300
|
}[] | undefined;
|
12301
12301
|
type: [string, ...string[]];
|
12302
12302
|
'@context': string[];
|
12303
12303
|
issuer: string | {
|
12304
12304
|
[x: string]: any;
|
12305
|
+
type?: [string, ...string[]] | undefined;
|
12305
12306
|
id?: string | undefined;
|
12306
12307
|
name?: string | undefined;
|
12307
12308
|
url?: string | undefined;
|
@@ -12344,7 +12345,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12344
12345
|
honorificSuffix?: string | undefined;
|
12345
12346
|
familyNamePrefix?: string | undefined;
|
12346
12347
|
dateOfBirth?: string | undefined;
|
12347
|
-
type: [string, ...string[]];
|
12348
12348
|
};
|
12349
12349
|
issuanceDate: string;
|
12350
12350
|
credentialSubject: {
|
@@ -12377,7 +12377,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12377
12377
|
jws?: string | undefined;
|
12378
12378
|
type: string;
|
12379
12379
|
created: string;
|
12380
|
-
proofPurpose:
|
12380
|
+
proofPurpose: string;
|
12381
12381
|
verificationMethod: string;
|
12382
12382
|
} | {
|
12383
12383
|
[x: string]: any;
|
@@ -12387,13 +12387,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12387
12387
|
jws?: string | undefined;
|
12388
12388
|
type: string;
|
12389
12389
|
created: string;
|
12390
|
-
proofPurpose:
|
12390
|
+
proofPurpose: string;
|
12391
12391
|
verificationMethod: string;
|
12392
12392
|
}[] | undefined;
|
12393
12393
|
type: [string, ...string[]];
|
12394
12394
|
'@context': string[];
|
12395
12395
|
issuer: string | {
|
12396
12396
|
[x: string]: any;
|
12397
|
+
type?: [string, ...string[]] | undefined;
|
12397
12398
|
id?: string | undefined;
|
12398
12399
|
name?: string | undefined;
|
12399
12400
|
url?: string | undefined;
|
@@ -12436,7 +12437,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12436
12437
|
honorificSuffix?: string | undefined;
|
12437
12438
|
familyNamePrefix?: string | undefined;
|
12438
12439
|
dateOfBirth?: string | undefined;
|
12439
|
-
type: [string, ...string[]];
|
12440
12440
|
};
|
12441
12441
|
issuanceDate: string;
|
12442
12442
|
credentialSubject: {
|
@@ -12698,7 +12698,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12698
12698
|
jws?: string | undefined;
|
12699
12699
|
type: string;
|
12700
12700
|
created: string;
|
12701
|
-
proofPurpose:
|
12701
|
+
proofPurpose: string;
|
12702
12702
|
verificationMethod: string;
|
12703
12703
|
} | {
|
12704
12704
|
[x: string]: any;
|
@@ -12708,13 +12708,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12708
12708
|
jws?: string | undefined;
|
12709
12709
|
type: string;
|
12710
12710
|
created: string;
|
12711
|
-
proofPurpose:
|
12711
|
+
proofPurpose: string;
|
12712
12712
|
verificationMethod: string;
|
12713
12713
|
}[] | undefined;
|
12714
12714
|
type: [string, ...string[]];
|
12715
12715
|
'@context': string[];
|
12716
12716
|
issuer: string | {
|
12717
12717
|
[x: string]: any;
|
12718
|
+
type?: [string, ...string[]] | undefined;
|
12718
12719
|
id?: string | undefined;
|
12719
12720
|
name?: string | undefined;
|
12720
12721
|
url?: string | undefined;
|
@@ -12757,7 +12758,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12757
12758
|
honorificSuffix?: string | undefined;
|
12758
12759
|
familyNamePrefix?: string | undefined;
|
12759
12760
|
dateOfBirth?: string | undefined;
|
12760
|
-
type: [string, ...string[]];
|
12761
12761
|
};
|
12762
12762
|
issuanceDate: string;
|
12763
12763
|
credentialSubject: {
|
@@ -12790,6 +12790,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12790
12790
|
achievementType?: string | undefined;
|
12791
12791
|
creator?: string | {
|
12792
12792
|
[x: string]: any;
|
12793
|
+
type?: [string, ...string[]] | undefined;
|
12793
12794
|
id?: string | undefined;
|
12794
12795
|
name?: string | undefined;
|
12795
12796
|
url?: string | undefined;
|
@@ -12832,7 +12833,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12832
12833
|
honorificSuffix?: string | undefined;
|
12833
12834
|
familyNamePrefix?: string | undefined;
|
12834
12835
|
dateOfBirth?: string | undefined;
|
12835
|
-
type: [string, ...string[]];
|
12836
12836
|
} | undefined;
|
12837
12837
|
creditsAvailable?: number | undefined;
|
12838
12838
|
fieldOfStudy?: string | undefined;
|
@@ -12919,7 +12919,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12919
12919
|
jws?: string | undefined;
|
12920
12920
|
type: string;
|
12921
12921
|
created: string;
|
12922
|
-
proofPurpose:
|
12922
|
+
proofPurpose: string;
|
12923
12923
|
verificationMethod: string;
|
12924
12924
|
} | {
|
12925
12925
|
[x: string]: any;
|
@@ -12929,13 +12929,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12929
12929
|
jws?: string | undefined;
|
12930
12930
|
type: string;
|
12931
12931
|
created: string;
|
12932
|
-
proofPurpose:
|
12932
|
+
proofPurpose: string;
|
12933
12933
|
verificationMethod: string;
|
12934
12934
|
}[] | undefined;
|
12935
12935
|
type: [string, ...string[]];
|
12936
12936
|
'@context': string[];
|
12937
12937
|
issuer: string | {
|
12938
12938
|
[x: string]: any;
|
12939
|
+
type?: [string, ...string[]] | undefined;
|
12939
12940
|
id?: string | undefined;
|
12940
12941
|
name?: string | undefined;
|
12941
12942
|
url?: string | undefined;
|
@@ -12978,7 +12979,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12978
12979
|
honorificSuffix?: string | undefined;
|
12979
12980
|
familyNamePrefix?: string | undefined;
|
12980
12981
|
dateOfBirth?: string | undefined;
|
12981
|
-
type: [string, ...string[]];
|
12982
12982
|
};
|
12983
12983
|
issuanceDate: string;
|
12984
12984
|
credentialSubject: {
|
@@ -13011,6 +13011,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13011
13011
|
achievementType?: string | undefined;
|
13012
13012
|
creator?: string | {
|
13013
13013
|
[x: string]: any;
|
13014
|
+
type?: [string, ...string[]] | undefined;
|
13014
13015
|
id?: string | undefined;
|
13015
13016
|
name?: string | undefined;
|
13016
13017
|
url?: string | undefined;
|
@@ -13053,7 +13054,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13053
13054
|
honorificSuffix?: string | undefined;
|
13054
13055
|
familyNamePrefix?: string | undefined;
|
13055
13056
|
dateOfBirth?: string | undefined;
|
13056
|
-
type: [string, ...string[]];
|
13057
13057
|
} | undefined;
|
13058
13058
|
creditsAvailable?: number | undefined;
|
13059
13059
|
fieldOfStudy?: string | undefined;
|
@@ -13214,7 +13214,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13214
13214
|
role: z.ZodOptional<z.ZodString>;
|
13215
13215
|
source: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
13216
13216
|
id: z.ZodOptional<z.ZodString>;
|
13217
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
13217
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
13218
13218
|
name: z.ZodOptional<z.ZodString>;
|
13219
13219
|
url: z.ZodOptional<z.ZodString>;
|
13220
13220
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -13310,6 +13310,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13310
13310
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
13311
13311
|
}, "strip", z.ZodAny, {
|
13312
13312
|
[x: string]: any;
|
13313
|
+
type?: [string, ...string[]] | undefined;
|
13313
13314
|
id?: string | undefined;
|
13314
13315
|
name?: string | undefined;
|
13315
13316
|
url?: string | undefined;
|
@@ -13352,9 +13353,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13352
13353
|
honorificSuffix?: string | undefined;
|
13353
13354
|
familyNamePrefix?: string | undefined;
|
13354
13355
|
dateOfBirth?: string | undefined;
|
13355
|
-
type: [string, ...string[]];
|
13356
13356
|
}, {
|
13357
13357
|
[x: string]: any;
|
13358
|
+
type?: [string, ...string[]] | undefined;
|
13358
13359
|
id?: string | undefined;
|
13359
13360
|
name?: string | undefined;
|
13360
13361
|
url?: string | undefined;
|
@@ -13397,7 +13398,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13397
13398
|
honorificSuffix?: string | undefined;
|
13398
13399
|
familyNamePrefix?: string | undefined;
|
13399
13400
|
dateOfBirth?: string | undefined;
|
13400
|
-
type: [string, ...string[]];
|
13401
13401
|
}>]>>;
|
13402
13402
|
term: z.ZodOptional<z.ZodString>;
|
13403
13403
|
}, "strip", z.ZodAny, {
|
@@ -13447,7 +13447,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13447
13447
|
jws?: string | undefined;
|
13448
13448
|
type: string;
|
13449
13449
|
created: string;
|
13450
|
-
proofPurpose:
|
13450
|
+
proofPurpose: string;
|
13451
13451
|
verificationMethod: string;
|
13452
13452
|
} | {
|
13453
13453
|
[x: string]: any;
|
@@ -13457,13 +13457,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13457
13457
|
jws?: string | undefined;
|
13458
13458
|
type: string;
|
13459
13459
|
created: string;
|
13460
|
-
proofPurpose:
|
13460
|
+
proofPurpose: string;
|
13461
13461
|
verificationMethod: string;
|
13462
13462
|
}[] | undefined;
|
13463
13463
|
type: [string, ...string[]];
|
13464
13464
|
'@context': string[];
|
13465
13465
|
issuer: string | {
|
13466
13466
|
[x: string]: any;
|
13467
|
+
type?: [string, ...string[]] | undefined;
|
13467
13468
|
id?: string | undefined;
|
13468
13469
|
name?: string | undefined;
|
13469
13470
|
url?: string | undefined;
|
@@ -13506,7 +13507,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13506
13507
|
honorificSuffix?: string | undefined;
|
13507
13508
|
familyNamePrefix?: string | undefined;
|
13508
13509
|
dateOfBirth?: string | undefined;
|
13509
|
-
type: [string, ...string[]];
|
13510
13510
|
};
|
13511
13511
|
issuanceDate: string;
|
13512
13512
|
credentialSubject: {
|
@@ -13539,6 +13539,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13539
13539
|
achievementType?: string | undefined;
|
13540
13540
|
creator?: string | {
|
13541
13541
|
[x: string]: any;
|
13542
|
+
type?: [string, ...string[]] | undefined;
|
13542
13543
|
id?: string | undefined;
|
13543
13544
|
name?: string | undefined;
|
13544
13545
|
url?: string | undefined;
|
@@ -13581,7 +13582,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13581
13582
|
honorificSuffix?: string | undefined;
|
13582
13583
|
familyNamePrefix?: string | undefined;
|
13583
13584
|
dateOfBirth?: string | undefined;
|
13584
|
-
type: [string, ...string[]];
|
13585
13585
|
} | undefined;
|
13586
13586
|
creditsAvailable?: number | undefined;
|
13587
13587
|
fieldOfStudy?: string | undefined;
|
@@ -13662,6 +13662,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13662
13662
|
role?: string | undefined;
|
13663
13663
|
source?: string | {
|
13664
13664
|
[x: string]: any;
|
13665
|
+
type?: [string, ...string[]] | undefined;
|
13665
13666
|
id?: string | undefined;
|
13666
13667
|
name?: string | undefined;
|
13667
13668
|
url?: string | undefined;
|
@@ -13704,7 +13705,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13704
13705
|
honorificSuffix?: string | undefined;
|
13705
13706
|
familyNamePrefix?: string | undefined;
|
13706
13707
|
dateOfBirth?: string | undefined;
|
13707
|
-
type: [string, ...string[]];
|
13708
13708
|
} | undefined;
|
13709
13709
|
term?: string | undefined;
|
13710
13710
|
type: [string, ...string[]];
|
@@ -13755,7 +13755,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13755
13755
|
jws?: string | undefined;
|
13756
13756
|
type: string;
|
13757
13757
|
created: string;
|
13758
|
-
proofPurpose:
|
13758
|
+
proofPurpose: string;
|
13759
13759
|
verificationMethod: string;
|
13760
13760
|
} | {
|
13761
13761
|
[x: string]: any;
|
@@ -13765,13 +13765,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13765
13765
|
jws?: string | undefined;
|
13766
13766
|
type: string;
|
13767
13767
|
created: string;
|
13768
|
-
proofPurpose:
|
13768
|
+
proofPurpose: string;
|
13769
13769
|
verificationMethod: string;
|
13770
13770
|
}[] | undefined;
|
13771
13771
|
type: [string, ...string[]];
|
13772
13772
|
'@context': string[];
|
13773
13773
|
issuer: string | {
|
13774
13774
|
[x: string]: any;
|
13775
|
+
type?: [string, ...string[]] | undefined;
|
13775
13776
|
id?: string | undefined;
|
13776
13777
|
name?: string | undefined;
|
13777
13778
|
url?: string | undefined;
|
@@ -13814,7 +13815,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13814
13815
|
honorificSuffix?: string | undefined;
|
13815
13816
|
familyNamePrefix?: string | undefined;
|
13816
13817
|
dateOfBirth?: string | undefined;
|
13817
|
-
type: [string, ...string[]];
|
13818
13818
|
};
|
13819
13819
|
issuanceDate: string;
|
13820
13820
|
credentialSubject: {
|
@@ -13847,6 +13847,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13847
13847
|
achievementType?: string | undefined;
|
13848
13848
|
creator?: string | {
|
13849
13849
|
[x: string]: any;
|
13850
|
+
type?: [string, ...string[]] | undefined;
|
13850
13851
|
id?: string | undefined;
|
13851
13852
|
name?: string | undefined;
|
13852
13853
|
url?: string | undefined;
|
@@ -13889,7 +13890,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13889
13890
|
honorificSuffix?: string | undefined;
|
13890
13891
|
familyNamePrefix?: string | undefined;
|
13891
13892
|
dateOfBirth?: string | undefined;
|
13892
|
-
type: [string, ...string[]];
|
13893
13893
|
} | undefined;
|
13894
13894
|
creditsAvailable?: number | undefined;
|
13895
13895
|
fieldOfStudy?: string | undefined;
|
@@ -13970,6 +13970,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13970
13970
|
role?: string | undefined;
|
13971
13971
|
source?: string | {
|
13972
13972
|
[x: string]: any;
|
13973
|
+
type?: [string, ...string[]] | undefined;
|
13973
13974
|
id?: string | undefined;
|
13974
13975
|
name?: string | undefined;
|
13975
13976
|
url?: string | undefined;
|
@@ -14012,7 +14013,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14012
14013
|
honorificSuffix?: string | undefined;
|
14013
14014
|
familyNamePrefix?: string | undefined;
|
14014
14015
|
dateOfBirth?: string | undefined;
|
14015
|
-
type: [string, ...string[]];
|
14016
14016
|
} | undefined;
|
14017
14017
|
term?: string | undefined;
|
14018
14018
|
type: [string, ...string[]];
|
@@ -14053,7 +14053,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14053
14053
|
achievementType: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["Achievement", "ApprenticeshipCertificate", "Assessment", "Assignment", "AssociateDegree", "Award", "Badge", "BachelorDegree", "Certificate", "CertificateOfCompletion", "Certification", "CommunityService", "Competency", "Course", "CoCurricular", "Degree", "Diploma", "DoctoralDegree", "Fieldwork", "GeneralEducationDevelopment", "JourneymanCertificate", "LearningProgram", "License", "Membership", "ProfessionalDoctorate", "QualityAssuranceCredential", "MasterCertificate", "MasterDegree", "MicroCredential", "ResearchDoctorate", "SecondarySchoolDiploma"]>, z.ZodString]>>;
|
14054
14054
|
creator: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
14055
14055
|
id: z.ZodOptional<z.ZodString>;
|
14056
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
14056
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
14057
14057
|
name: z.ZodOptional<z.ZodString>;
|
14058
14058
|
url: z.ZodOptional<z.ZodString>;
|
14059
14059
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -14149,6 +14149,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14149
14149
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
14150
14150
|
}, "strip", z.ZodAny, {
|
14151
14151
|
[x: string]: any;
|
14152
|
+
type?: [string, ...string[]] | undefined;
|
14152
14153
|
id?: string | undefined;
|
14153
14154
|
name?: string | undefined;
|
14154
14155
|
url?: string | undefined;
|
@@ -14191,9 +14192,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14191
14192
|
honorificSuffix?: string | undefined;
|
14192
14193
|
familyNamePrefix?: string | undefined;
|
14193
14194
|
dateOfBirth?: string | undefined;
|
14194
|
-
type: [string, ...string[]];
|
14195
14195
|
}, {
|
14196
14196
|
[x: string]: any;
|
14197
|
+
type?: [string, ...string[]] | undefined;
|
14197
14198
|
id?: string | undefined;
|
14198
14199
|
name?: string | undefined;
|
14199
14200
|
url?: string | undefined;
|
@@ -14236,7 +14237,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14236
14237
|
honorificSuffix?: string | undefined;
|
14237
14238
|
familyNamePrefix?: string | undefined;
|
14238
14239
|
dateOfBirth?: string | undefined;
|
14239
|
-
type: [string, ...string[]];
|
14240
14240
|
}>]>>;
|
14241
14241
|
creditsAvailable: z.ZodOptional<z.ZodNumber>;
|
14242
14242
|
criteria: z.ZodObject<{
|
@@ -14258,7 +14258,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14258
14258
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
14259
14259
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
14260
14260
|
id: z.ZodOptional<z.ZodString>;
|
14261
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
14261
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
14262
14262
|
name: z.ZodOptional<z.ZodString>;
|
14263
14263
|
url: z.ZodOptional<z.ZodString>;
|
14264
14264
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -14354,6 +14354,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14354
14354
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
14355
14355
|
}, "strip", z.ZodAny, {
|
14356
14356
|
[x: string]: any;
|
14357
|
+
type?: [string, ...string[]] | undefined;
|
14357
14358
|
id?: string | undefined;
|
14358
14359
|
name?: string | undefined;
|
14359
14360
|
url?: string | undefined;
|
@@ -14396,9 +14397,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14396
14397
|
honorificSuffix?: string | undefined;
|
14397
14398
|
familyNamePrefix?: string | undefined;
|
14398
14399
|
dateOfBirth?: string | undefined;
|
14399
|
-
type: [string, ...string[]];
|
14400
14400
|
}, {
|
14401
14401
|
[x: string]: any;
|
14402
|
+
type?: [string, ...string[]] | undefined;
|
14402
14403
|
id?: string | undefined;
|
14403
14404
|
name?: string | undefined;
|
14404
14405
|
url?: string | undefined;
|
@@ -14441,7 +14442,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14441
14442
|
honorificSuffix?: string | undefined;
|
14442
14443
|
familyNamePrefix?: string | undefined;
|
14443
14444
|
dateOfBirth?: string | undefined;
|
14444
|
-
type: [string, ...string[]];
|
14445
14445
|
}>]>;
|
14446
14446
|
issuanceDate: z.ZodString;
|
14447
14447
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -14514,7 +14514,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14514
14514
|
challenge: z.ZodOptional<z.ZodString>;
|
14515
14515
|
domain: z.ZodOptional<z.ZodString>;
|
14516
14516
|
nonce: z.ZodOptional<z.ZodString>;
|
14517
|
-
proofPurpose: z.
|
14517
|
+
proofPurpose: z.ZodString;
|
14518
14518
|
verificationMethod: z.ZodString;
|
14519
14519
|
jws: z.ZodOptional<z.ZodString>;
|
14520
14520
|
}, "strip", z.ZodAny, {
|
@@ -14525,7 +14525,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14525
14525
|
jws?: string | undefined;
|
14526
14526
|
type: string;
|
14527
14527
|
created: string;
|
14528
|
-
proofPurpose:
|
14528
|
+
proofPurpose: string;
|
14529
14529
|
verificationMethod: string;
|
14530
14530
|
}, {
|
14531
14531
|
[x: string]: any;
|
@@ -14535,7 +14535,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14535
14535
|
jws?: string | undefined;
|
14536
14536
|
type: string;
|
14537
14537
|
created: string;
|
14538
|
-
proofPurpose:
|
14538
|
+
proofPurpose: string;
|
14539
14539
|
verificationMethod: string;
|
14540
14540
|
}>, z.ZodArray<z.ZodObject<{
|
14541
14541
|
type: z.ZodString;
|
@@ -14543,7 +14543,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14543
14543
|
challenge: z.ZodOptional<z.ZodString>;
|
14544
14544
|
domain: z.ZodOptional<z.ZodString>;
|
14545
14545
|
nonce: z.ZodOptional<z.ZodString>;
|
14546
|
-
proofPurpose: z.
|
14546
|
+
proofPurpose: z.ZodString;
|
14547
14547
|
verificationMethod: z.ZodString;
|
14548
14548
|
jws: z.ZodOptional<z.ZodString>;
|
14549
14549
|
}, "strip", z.ZodAny, {
|
@@ -14554,7 +14554,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14554
14554
|
jws?: string | undefined;
|
14555
14555
|
type: string;
|
14556
14556
|
created: string;
|
14557
|
-
proofPurpose:
|
14557
|
+
proofPurpose: string;
|
14558
14558
|
verificationMethod: string;
|
14559
14559
|
}, {
|
14560
14560
|
[x: string]: any;
|
@@ -14564,7 +14564,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14564
14564
|
jws?: string | undefined;
|
14565
14565
|
type: string;
|
14566
14566
|
created: string;
|
14567
|
-
proofPurpose:
|
14567
|
+
proofPurpose: string;
|
14568
14568
|
verificationMethod: string;
|
14569
14569
|
}>, "many">]>>;
|
14570
14570
|
}>, "strip", z.ZodAny, {
|
@@ -14592,7 +14592,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14592
14592
|
jws?: string | undefined;
|
14593
14593
|
type: string;
|
14594
14594
|
created: string;
|
14595
|
-
proofPurpose:
|
14595
|
+
proofPurpose: string;
|
14596
14596
|
verificationMethod: string;
|
14597
14597
|
} | {
|
14598
14598
|
[x: string]: any;
|
@@ -14602,13 +14602,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14602
14602
|
jws?: string | undefined;
|
14603
14603
|
type: string;
|
14604
14604
|
created: string;
|
14605
|
-
proofPurpose:
|
14605
|
+
proofPurpose: string;
|
14606
14606
|
verificationMethod: string;
|
14607
14607
|
}[] | undefined;
|
14608
14608
|
type: [string, ...string[]];
|
14609
14609
|
'@context': string[];
|
14610
14610
|
issuer: string | {
|
14611
14611
|
[x: string]: any;
|
14612
|
+
type?: [string, ...string[]] | undefined;
|
14612
14613
|
id?: string | undefined;
|
14613
14614
|
name?: string | undefined;
|
14614
14615
|
url?: string | undefined;
|
@@ -14651,7 +14652,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14651
14652
|
honorificSuffix?: string | undefined;
|
14652
14653
|
familyNamePrefix?: string | undefined;
|
14653
14654
|
dateOfBirth?: string | undefined;
|
14654
|
-
type: [string, ...string[]];
|
14655
14655
|
};
|
14656
14656
|
issuanceDate: string;
|
14657
14657
|
credentialSubject: {
|
@@ -14684,7 +14684,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14684
14684
|
jws?: string | undefined;
|
14685
14685
|
type: string;
|
14686
14686
|
created: string;
|
14687
|
-
proofPurpose:
|
14687
|
+
proofPurpose: string;
|
14688
14688
|
verificationMethod: string;
|
14689
14689
|
} | {
|
14690
14690
|
[x: string]: any;
|
@@ -14694,13 +14694,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14694
14694
|
jws?: string | undefined;
|
14695
14695
|
type: string;
|
14696
14696
|
created: string;
|
14697
|
-
proofPurpose:
|
14697
|
+
proofPurpose: string;
|
14698
14698
|
verificationMethod: string;
|
14699
14699
|
}[] | undefined;
|
14700
14700
|
type: [string, ...string[]];
|
14701
14701
|
'@context': string[];
|
14702
14702
|
issuer: string | {
|
14703
14703
|
[x: string]: any;
|
14704
|
+
type?: [string, ...string[]] | undefined;
|
14704
14705
|
id?: string | undefined;
|
14705
14706
|
name?: string | undefined;
|
14706
14707
|
url?: string | undefined;
|
@@ -14743,7 +14744,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14743
14744
|
honorificSuffix?: string | undefined;
|
14744
14745
|
familyNamePrefix?: string | undefined;
|
14745
14746
|
dateOfBirth?: string | undefined;
|
14746
|
-
type: [string, ...string[]];
|
14747
14747
|
};
|
14748
14748
|
issuanceDate: string;
|
14749
14749
|
credentialSubject: {
|
@@ -15005,7 +15005,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15005
15005
|
jws?: string | undefined;
|
15006
15006
|
type: string;
|
15007
15007
|
created: string;
|
15008
|
-
proofPurpose:
|
15008
|
+
proofPurpose: string;
|
15009
15009
|
verificationMethod: string;
|
15010
15010
|
} | {
|
15011
15011
|
[x: string]: any;
|
@@ -15015,13 +15015,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15015
15015
|
jws?: string | undefined;
|
15016
15016
|
type: string;
|
15017
15017
|
created: string;
|
15018
|
-
proofPurpose:
|
15018
|
+
proofPurpose: string;
|
15019
15019
|
verificationMethod: string;
|
15020
15020
|
}[] | undefined;
|
15021
15021
|
type: [string, ...string[]];
|
15022
15022
|
'@context': string[];
|
15023
15023
|
issuer: string | {
|
15024
15024
|
[x: string]: any;
|
15025
|
+
type?: [string, ...string[]] | undefined;
|
15025
15026
|
id?: string | undefined;
|
15026
15027
|
name?: string | undefined;
|
15027
15028
|
url?: string | undefined;
|
@@ -15064,7 +15065,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15064
15065
|
honorificSuffix?: string | undefined;
|
15065
15066
|
familyNamePrefix?: string | undefined;
|
15066
15067
|
dateOfBirth?: string | undefined;
|
15067
|
-
type: [string, ...string[]];
|
15068
15068
|
};
|
15069
15069
|
issuanceDate: string;
|
15070
15070
|
credentialSubject: {
|
@@ -15097,6 +15097,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15097
15097
|
achievementType?: string | undefined;
|
15098
15098
|
creator?: string | {
|
15099
15099
|
[x: string]: any;
|
15100
|
+
type?: [string, ...string[]] | undefined;
|
15100
15101
|
id?: string | undefined;
|
15101
15102
|
name?: string | undefined;
|
15102
15103
|
url?: string | undefined;
|
@@ -15139,7 +15140,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15139
15140
|
honorificSuffix?: string | undefined;
|
15140
15141
|
familyNamePrefix?: string | undefined;
|
15141
15142
|
dateOfBirth?: string | undefined;
|
15142
|
-
type: [string, ...string[]];
|
15143
15143
|
} | undefined;
|
15144
15144
|
creditsAvailable?: number | undefined;
|
15145
15145
|
fieldOfStudy?: string | undefined;
|
@@ -15226,7 +15226,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15226
15226
|
jws?: string | undefined;
|
15227
15227
|
type: string;
|
15228
15228
|
created: string;
|
15229
|
-
proofPurpose:
|
15229
|
+
proofPurpose: string;
|
15230
15230
|
verificationMethod: string;
|
15231
15231
|
} | {
|
15232
15232
|
[x: string]: any;
|
@@ -15236,13 +15236,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15236
15236
|
jws?: string | undefined;
|
15237
15237
|
type: string;
|
15238
15238
|
created: string;
|
15239
|
-
proofPurpose:
|
15239
|
+
proofPurpose: string;
|
15240
15240
|
verificationMethod: string;
|
15241
15241
|
}[] | undefined;
|
15242
15242
|
type: [string, ...string[]];
|
15243
15243
|
'@context': string[];
|
15244
15244
|
issuer: string | {
|
15245
15245
|
[x: string]: any;
|
15246
|
+
type?: [string, ...string[]] | undefined;
|
15246
15247
|
id?: string | undefined;
|
15247
15248
|
name?: string | undefined;
|
15248
15249
|
url?: string | undefined;
|
@@ -15285,7 +15286,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15285
15286
|
honorificSuffix?: string | undefined;
|
15286
15287
|
familyNamePrefix?: string | undefined;
|
15287
15288
|
dateOfBirth?: string | undefined;
|
15288
|
-
type: [string, ...string[]];
|
15289
15289
|
};
|
15290
15290
|
issuanceDate: string;
|
15291
15291
|
credentialSubject: {
|
@@ -15318,6 +15318,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15318
15318
|
achievementType?: string | undefined;
|
15319
15319
|
creator?: string | {
|
15320
15320
|
[x: string]: any;
|
15321
|
+
type?: [string, ...string[]] | undefined;
|
15321
15322
|
id?: string | undefined;
|
15322
15323
|
name?: string | undefined;
|
15323
15324
|
url?: string | undefined;
|
@@ -15360,7 +15361,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15360
15361
|
honorificSuffix?: string | undefined;
|
15361
15362
|
familyNamePrefix?: string | undefined;
|
15362
15363
|
dateOfBirth?: string | undefined;
|
15363
|
-
type: [string, ...string[]];
|
15364
15364
|
} | undefined;
|
15365
15365
|
creditsAvailable?: number | undefined;
|
15366
15366
|
fieldOfStudy?: string | undefined;
|
@@ -15521,7 +15521,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15521
15521
|
role: z.ZodOptional<z.ZodString>;
|
15522
15522
|
source: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
15523
15523
|
id: z.ZodOptional<z.ZodString>;
|
15524
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
15524
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
15525
15525
|
name: z.ZodOptional<z.ZodString>;
|
15526
15526
|
url: z.ZodOptional<z.ZodString>;
|
15527
15527
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -15617,6 +15617,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15617
15617
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
15618
15618
|
}, "strip", z.ZodAny, {
|
15619
15619
|
[x: string]: any;
|
15620
|
+
type?: [string, ...string[]] | undefined;
|
15620
15621
|
id?: string | undefined;
|
15621
15622
|
name?: string | undefined;
|
15622
15623
|
url?: string | undefined;
|
@@ -15659,9 +15660,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15659
15660
|
honorificSuffix?: string | undefined;
|
15660
15661
|
familyNamePrefix?: string | undefined;
|
15661
15662
|
dateOfBirth?: string | undefined;
|
15662
|
-
type: [string, ...string[]];
|
15663
15663
|
}, {
|
15664
15664
|
[x: string]: any;
|
15665
|
+
type?: [string, ...string[]] | undefined;
|
15665
15666
|
id?: string | undefined;
|
15666
15667
|
name?: string | undefined;
|
15667
15668
|
url?: string | undefined;
|
@@ -15704,7 +15705,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15704
15705
|
honorificSuffix?: string | undefined;
|
15705
15706
|
familyNamePrefix?: string | undefined;
|
15706
15707
|
dateOfBirth?: string | undefined;
|
15707
|
-
type: [string, ...string[]];
|
15708
15708
|
}>]>>;
|
15709
15709
|
term: z.ZodOptional<z.ZodString>;
|
15710
15710
|
}, "strip", z.ZodAny, {
|
@@ -15754,7 +15754,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15754
15754
|
jws?: string | undefined;
|
15755
15755
|
type: string;
|
15756
15756
|
created: string;
|
15757
|
-
proofPurpose:
|
15757
|
+
proofPurpose: string;
|
15758
15758
|
verificationMethod: string;
|
15759
15759
|
} | {
|
15760
15760
|
[x: string]: any;
|
@@ -15764,13 +15764,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15764
15764
|
jws?: string | undefined;
|
15765
15765
|
type: string;
|
15766
15766
|
created: string;
|
15767
|
-
proofPurpose:
|
15767
|
+
proofPurpose: string;
|
15768
15768
|
verificationMethod: string;
|
15769
15769
|
}[] | undefined;
|
15770
15770
|
type: [string, ...string[]];
|
15771
15771
|
'@context': string[];
|
15772
15772
|
issuer: string | {
|
15773
15773
|
[x: string]: any;
|
15774
|
+
type?: [string, ...string[]] | undefined;
|
15774
15775
|
id?: string | undefined;
|
15775
15776
|
name?: string | undefined;
|
15776
15777
|
url?: string | undefined;
|
@@ -15813,7 +15814,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15813
15814
|
honorificSuffix?: string | undefined;
|
15814
15815
|
familyNamePrefix?: string | undefined;
|
15815
15816
|
dateOfBirth?: string | undefined;
|
15816
|
-
type: [string, ...string[]];
|
15817
15817
|
};
|
15818
15818
|
issuanceDate: string;
|
15819
15819
|
credentialSubject: {
|
@@ -15846,6 +15846,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15846
15846
|
achievementType?: string | undefined;
|
15847
15847
|
creator?: string | {
|
15848
15848
|
[x: string]: any;
|
15849
|
+
type?: [string, ...string[]] | undefined;
|
15849
15850
|
id?: string | undefined;
|
15850
15851
|
name?: string | undefined;
|
15851
15852
|
url?: string | undefined;
|
@@ -15888,7 +15889,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15888
15889
|
honorificSuffix?: string | undefined;
|
15889
15890
|
familyNamePrefix?: string | undefined;
|
15890
15891
|
dateOfBirth?: string | undefined;
|
15891
|
-
type: [string, ...string[]];
|
15892
15892
|
} | undefined;
|
15893
15893
|
creditsAvailable?: number | undefined;
|
15894
15894
|
fieldOfStudy?: string | undefined;
|
@@ -15969,6 +15969,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15969
15969
|
role?: string | undefined;
|
15970
15970
|
source?: string | {
|
15971
15971
|
[x: string]: any;
|
15972
|
+
type?: [string, ...string[]] | undefined;
|
15972
15973
|
id?: string | undefined;
|
15973
15974
|
name?: string | undefined;
|
15974
15975
|
url?: string | undefined;
|
@@ -16011,7 +16012,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16011
16012
|
honorificSuffix?: string | undefined;
|
16012
16013
|
familyNamePrefix?: string | undefined;
|
16013
16014
|
dateOfBirth?: string | undefined;
|
16014
|
-
type: [string, ...string[]];
|
16015
16015
|
} | undefined;
|
16016
16016
|
term?: string | undefined;
|
16017
16017
|
type: [string, ...string[]];
|
@@ -16062,7 +16062,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16062
16062
|
jws?: string | undefined;
|
16063
16063
|
type: string;
|
16064
16064
|
created: string;
|
16065
|
-
proofPurpose:
|
16065
|
+
proofPurpose: string;
|
16066
16066
|
verificationMethod: string;
|
16067
16067
|
} | {
|
16068
16068
|
[x: string]: any;
|
@@ -16072,13 +16072,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16072
16072
|
jws?: string | undefined;
|
16073
16073
|
type: string;
|
16074
16074
|
created: string;
|
16075
|
-
proofPurpose:
|
16075
|
+
proofPurpose: string;
|
16076
16076
|
verificationMethod: string;
|
16077
16077
|
}[] | undefined;
|
16078
16078
|
type: [string, ...string[]];
|
16079
16079
|
'@context': string[];
|
16080
16080
|
issuer: string | {
|
16081
16081
|
[x: string]: any;
|
16082
|
+
type?: [string, ...string[]] | undefined;
|
16082
16083
|
id?: string | undefined;
|
16083
16084
|
name?: string | undefined;
|
16084
16085
|
url?: string | undefined;
|
@@ -16121,7 +16122,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16121
16122
|
honorificSuffix?: string | undefined;
|
16122
16123
|
familyNamePrefix?: string | undefined;
|
16123
16124
|
dateOfBirth?: string | undefined;
|
16124
|
-
type: [string, ...string[]];
|
16125
16125
|
};
|
16126
16126
|
issuanceDate: string;
|
16127
16127
|
credentialSubject: {
|
@@ -16154,6 +16154,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16154
16154
|
achievementType?: string | undefined;
|
16155
16155
|
creator?: string | {
|
16156
16156
|
[x: string]: any;
|
16157
|
+
type?: [string, ...string[]] | undefined;
|
16157
16158
|
id?: string | undefined;
|
16158
16159
|
name?: string | undefined;
|
16159
16160
|
url?: string | undefined;
|
@@ -16196,7 +16197,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16196
16197
|
honorificSuffix?: string | undefined;
|
16197
16198
|
familyNamePrefix?: string | undefined;
|
16198
16199
|
dateOfBirth?: string | undefined;
|
16199
|
-
type: [string, ...string[]];
|
16200
16200
|
} | undefined;
|
16201
16201
|
creditsAvailable?: number | undefined;
|
16202
16202
|
fieldOfStudy?: string | undefined;
|
@@ -16277,6 +16277,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16277
16277
|
role?: string | undefined;
|
16278
16278
|
source?: string | {
|
16279
16279
|
[x: string]: any;
|
16280
|
+
type?: [string, ...string[]] | undefined;
|
16280
16281
|
id?: string | undefined;
|
16281
16282
|
name?: string | undefined;
|
16282
16283
|
url?: string | undefined;
|
@@ -16319,7 +16320,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16319
16320
|
honorificSuffix?: string | undefined;
|
16320
16321
|
familyNamePrefix?: string | undefined;
|
16321
16322
|
dateOfBirth?: string | undefined;
|
16322
|
-
type: [string, ...string[]];
|
16323
16323
|
} | undefined;
|
16324
16324
|
term?: string | undefined;
|
16325
16325
|
type: [string, ...string[]];
|
@@ -16330,7 +16330,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16330
16330
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
16331
16331
|
issuer: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
16332
16332
|
id: z.ZodOptional<z.ZodString>;
|
16333
|
-
type: z.ZodArray<z.ZodString, "atleastone"
|
16333
|
+
type: z.ZodOptional<z.ZodArray<z.ZodString, "atleastone">>;
|
16334
16334
|
name: z.ZodOptional<z.ZodString>;
|
16335
16335
|
url: z.ZodOptional<z.ZodString>;
|
16336
16336
|
phone: z.ZodOptional<z.ZodString>;
|
@@ -16426,6 +16426,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16426
16426
|
dateOfBirth: z.ZodOptional<z.ZodString>;
|
16427
16427
|
}, "strip", z.ZodAny, {
|
16428
16428
|
[x: string]: any;
|
16429
|
+
type?: [string, ...string[]] | undefined;
|
16429
16430
|
id?: string | undefined;
|
16430
16431
|
name?: string | undefined;
|
16431
16432
|
url?: string | undefined;
|
@@ -16468,9 +16469,9 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16468
16469
|
honorificSuffix?: string | undefined;
|
16469
16470
|
familyNamePrefix?: string | undefined;
|
16470
16471
|
dateOfBirth?: string | undefined;
|
16471
|
-
type: [string, ...string[]];
|
16472
16472
|
}, {
|
16473
16473
|
[x: string]: any;
|
16474
|
+
type?: [string, ...string[]] | undefined;
|
16474
16475
|
id?: string | undefined;
|
16475
16476
|
name?: string | undefined;
|
16476
16477
|
url?: string | undefined;
|
@@ -16513,7 +16514,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16513
16514
|
honorificSuffix?: string | undefined;
|
16514
16515
|
familyNamePrefix?: string | undefined;
|
16515
16516
|
dateOfBirth?: string | undefined;
|
16516
|
-
type: [string, ...string[]];
|
16517
16517
|
}>]>;
|
16518
16518
|
issuanceDate: z.ZodString;
|
16519
16519
|
expirationDate: z.ZodOptional<z.ZodString>;
|
@@ -16587,6 +16587,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16587
16587
|
'@context': string[];
|
16588
16588
|
issuer: string | {
|
16589
16589
|
[x: string]: any;
|
16590
|
+
type?: [string, ...string[]] | undefined;
|
16590
16591
|
id?: string | undefined;
|
16591
16592
|
name?: string | undefined;
|
16592
16593
|
url?: string | undefined;
|
@@ -16629,7 +16630,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16629
16630
|
honorificSuffix?: string | undefined;
|
16630
16631
|
familyNamePrefix?: string | undefined;
|
16631
16632
|
dateOfBirth?: string | undefined;
|
16632
|
-
type: [string, ...string[]];
|
16633
16633
|
};
|
16634
16634
|
issuanceDate: string;
|
16635
16635
|
credentialSubject: {
|
@@ -16660,6 +16660,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16660
16660
|
'@context': string[];
|
16661
16661
|
issuer: string | {
|
16662
16662
|
[x: string]: any;
|
16663
|
+
type?: [string, ...string[]] | undefined;
|
16663
16664
|
id?: string | undefined;
|
16664
16665
|
name?: string | undefined;
|
16665
16666
|
url?: string | undefined;
|
@@ -16702,7 +16703,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16702
16703
|
honorificSuffix?: string | undefined;
|
16703
16704
|
familyNamePrefix?: string | undefined;
|
16704
16705
|
dateOfBirth?: string | undefined;
|
16705
|
-
type: [string, ...string[]];
|
16706
16706
|
};
|
16707
16707
|
issuanceDate: string;
|
16708
16708
|
credentialSubject: {
|
@@ -16747,7 +16747,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16747
16747
|
challenge: z.ZodOptional<z.ZodString>;
|
16748
16748
|
domain: z.ZodOptional<z.ZodString>;
|
16749
16749
|
nonce: z.ZodOptional<z.ZodString>;
|
16750
|
-
proofPurpose: z.
|
16750
|
+
proofPurpose: z.ZodString;
|
16751
16751
|
verificationMethod: z.ZodString;
|
16752
16752
|
jws: z.ZodOptional<z.ZodString>;
|
16753
16753
|
}, "strip", z.ZodAny, {
|
@@ -16758,7 +16758,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16758
16758
|
jws?: string | undefined;
|
16759
16759
|
type: string;
|
16760
16760
|
created: string;
|
16761
|
-
proofPurpose:
|
16761
|
+
proofPurpose: string;
|
16762
16762
|
verificationMethod: string;
|
16763
16763
|
}, {
|
16764
16764
|
[x: string]: any;
|
@@ -16768,7 +16768,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16768
16768
|
jws?: string | undefined;
|
16769
16769
|
type: string;
|
16770
16770
|
created: string;
|
16771
|
-
proofPurpose:
|
16771
|
+
proofPurpose: string;
|
16772
16772
|
verificationMethod: string;
|
16773
16773
|
}>, z.ZodArray<z.ZodObject<{
|
16774
16774
|
type: z.ZodString;
|
@@ -16776,7 +16776,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16776
16776
|
challenge: z.ZodOptional<z.ZodString>;
|
16777
16777
|
domain: z.ZodOptional<z.ZodString>;
|
16778
16778
|
nonce: z.ZodOptional<z.ZodString>;
|
16779
|
-
proofPurpose: z.
|
16779
|
+
proofPurpose: z.ZodString;
|
16780
16780
|
verificationMethod: z.ZodString;
|
16781
16781
|
jws: z.ZodOptional<z.ZodString>;
|
16782
16782
|
}, "strip", z.ZodAny, {
|
@@ -16787,7 +16787,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16787
16787
|
jws?: string | undefined;
|
16788
16788
|
type: string;
|
16789
16789
|
created: string;
|
16790
|
-
proofPurpose:
|
16790
|
+
proofPurpose: string;
|
16791
16791
|
verificationMethod: string;
|
16792
16792
|
}, {
|
16793
16793
|
[x: string]: any;
|
@@ -16797,7 +16797,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16797
16797
|
jws?: string | undefined;
|
16798
16798
|
type: string;
|
16799
16799
|
created: string;
|
16800
|
-
proofPurpose:
|
16800
|
+
proofPurpose: string;
|
16801
16801
|
verificationMethod: string;
|
16802
16802
|
}>, "many">]>;
|
16803
16803
|
}>, "strip", z.ZodAny, {
|
@@ -16826,6 +16826,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16826
16826
|
'@context': string[];
|
16827
16827
|
issuer: string | {
|
16828
16828
|
[x: string]: any;
|
16829
|
+
type?: [string, ...string[]] | undefined;
|
16829
16830
|
id?: string | undefined;
|
16830
16831
|
name?: string | undefined;
|
16831
16832
|
url?: string | undefined;
|
@@ -16868,7 +16869,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16868
16869
|
honorificSuffix?: string | undefined;
|
16869
16870
|
familyNamePrefix?: string | undefined;
|
16870
16871
|
dateOfBirth?: string | undefined;
|
16871
|
-
type: [string, ...string[]];
|
16872
16872
|
};
|
16873
16873
|
issuanceDate: string;
|
16874
16874
|
credentialSubject: {
|
@@ -16908,6 +16908,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16908
16908
|
'@context': string[];
|
16909
16909
|
issuer: string | {
|
16910
16910
|
[x: string]: any;
|
16911
|
+
type?: [string, ...string[]] | undefined;
|
16911
16912
|
id?: string | undefined;
|
16912
16913
|
name?: string | undefined;
|
16913
16914
|
url?: string | undefined;
|
@@ -16950,7 +16951,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16950
16951
|
honorificSuffix?: string | undefined;
|
16951
16952
|
familyNamePrefix?: string | undefined;
|
16952
16953
|
dateOfBirth?: string | undefined;
|
16953
|
-
type: [string, ...string[]];
|
16954
16954
|
};
|
16955
16955
|
issuanceDate: string;
|
16956
16956
|
credentialSubject: {
|
@@ -17000,7 +17000,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17000
17000
|
jws?: string | undefined;
|
17001
17001
|
type: string;
|
17002
17002
|
created: string;
|
17003
|
-
proofPurpose:
|
17003
|
+
proofPurpose: string;
|
17004
17004
|
verificationMethod: string;
|
17005
17005
|
} | {
|
17006
17006
|
[x: string]: any;
|
@@ -17010,13 +17010,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17010
17010
|
jws?: string | undefined;
|
17011
17011
|
type: string;
|
17012
17012
|
created: string;
|
17013
|
-
proofPurpose:
|
17013
|
+
proofPurpose: string;
|
17014
17014
|
verificationMethod: string;
|
17015
17015
|
}[] | undefined;
|
17016
17016
|
type: [string, ...string[]];
|
17017
17017
|
'@context': string[];
|
17018
17018
|
issuer: string | {
|
17019
17019
|
[x: string]: any;
|
17020
|
+
type?: [string, ...string[]] | undefined;
|
17020
17021
|
id?: string | undefined;
|
17021
17022
|
name?: string | undefined;
|
17022
17023
|
url?: string | undefined;
|
@@ -17059,7 +17060,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17059
17060
|
honorificSuffix?: string | undefined;
|
17060
17061
|
familyNamePrefix?: string | undefined;
|
17061
17062
|
dateOfBirth?: string | undefined;
|
17062
|
-
type: [string, ...string[]];
|
17063
17063
|
};
|
17064
17064
|
issuanceDate: string;
|
17065
17065
|
credentialSubject: {
|
@@ -17092,6 +17092,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17092
17092
|
achievementType?: string | undefined;
|
17093
17093
|
creator?: string | {
|
17094
17094
|
[x: string]: any;
|
17095
|
+
type?: [string, ...string[]] | undefined;
|
17095
17096
|
id?: string | undefined;
|
17096
17097
|
name?: string | undefined;
|
17097
17098
|
url?: string | undefined;
|
@@ -17134,7 +17135,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17134
17135
|
honorificSuffix?: string | undefined;
|
17135
17136
|
familyNamePrefix?: string | undefined;
|
17136
17137
|
dateOfBirth?: string | undefined;
|
17137
|
-
type: [string, ...string[]];
|
17138
17138
|
} | undefined;
|
17139
17139
|
creditsAvailable?: number | undefined;
|
17140
17140
|
fieldOfStudy?: string | undefined;
|
@@ -17215,6 +17215,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17215
17215
|
role?: string | undefined;
|
17216
17216
|
source?: string | {
|
17217
17217
|
[x: string]: any;
|
17218
|
+
type?: [string, ...string[]] | undefined;
|
17218
17219
|
id?: string | undefined;
|
17219
17220
|
name?: string | undefined;
|
17220
17221
|
url?: string | undefined;
|
@@ -17257,7 +17258,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17257
17258
|
honorificSuffix?: string | undefined;
|
17258
17259
|
familyNamePrefix?: string | undefined;
|
17259
17260
|
dateOfBirth?: string | undefined;
|
17260
|
-
type: [string, ...string[]];
|
17261
17261
|
} | undefined;
|
17262
17262
|
term?: string | undefined;
|
17263
17263
|
type: [string, ...string[]];
|
@@ -17308,7 +17308,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17308
17308
|
jws?: string | undefined;
|
17309
17309
|
type: string;
|
17310
17310
|
created: string;
|
17311
|
-
proofPurpose:
|
17311
|
+
proofPurpose: string;
|
17312
17312
|
verificationMethod: string;
|
17313
17313
|
} | {
|
17314
17314
|
[x: string]: any;
|
@@ -17318,13 +17318,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17318
17318
|
jws?: string | undefined;
|
17319
17319
|
type: string;
|
17320
17320
|
created: string;
|
17321
|
-
proofPurpose:
|
17321
|
+
proofPurpose: string;
|
17322
17322
|
verificationMethod: string;
|
17323
17323
|
}[] | undefined;
|
17324
17324
|
type: [string, ...string[]];
|
17325
17325
|
'@context': string[];
|
17326
17326
|
issuer: string | {
|
17327
17327
|
[x: string]: any;
|
17328
|
+
type?: [string, ...string[]] | undefined;
|
17328
17329
|
id?: string | undefined;
|
17329
17330
|
name?: string | undefined;
|
17330
17331
|
url?: string | undefined;
|
@@ -17367,7 +17368,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17367
17368
|
honorificSuffix?: string | undefined;
|
17368
17369
|
familyNamePrefix?: string | undefined;
|
17369
17370
|
dateOfBirth?: string | undefined;
|
17370
|
-
type: [string, ...string[]];
|
17371
17371
|
};
|
17372
17372
|
issuanceDate: string;
|
17373
17373
|
credentialSubject: {
|
@@ -17400,6 +17400,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17400
17400
|
achievementType?: string | undefined;
|
17401
17401
|
creator?: string | {
|
17402
17402
|
[x: string]: any;
|
17403
|
+
type?: [string, ...string[]] | undefined;
|
17403
17404
|
id?: string | undefined;
|
17404
17405
|
name?: string | undefined;
|
17405
17406
|
url?: string | undefined;
|
@@ -17442,7 +17443,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17442
17443
|
honorificSuffix?: string | undefined;
|
17443
17444
|
familyNamePrefix?: string | undefined;
|
17444
17445
|
dateOfBirth?: string | undefined;
|
17445
|
-
type: [string, ...string[]];
|
17446
17446
|
} | undefined;
|
17447
17447
|
creditsAvailable?: number | undefined;
|
17448
17448
|
fieldOfStudy?: string | undefined;
|
@@ -17523,6 +17523,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17523
17523
|
role?: string | undefined;
|
17524
17524
|
source?: string | {
|
17525
17525
|
[x: string]: any;
|
17526
|
+
type?: [string, ...string[]] | undefined;
|
17526
17527
|
id?: string | undefined;
|
17527
17528
|
name?: string | undefined;
|
17528
17529
|
url?: string | undefined;
|
@@ -17565,7 +17566,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17565
17566
|
honorificSuffix?: string | undefined;
|
17566
17567
|
familyNamePrefix?: string | undefined;
|
17567
17568
|
dateOfBirth?: string | undefined;
|
17568
|
-
type: [string, ...string[]];
|
17569
17569
|
} | undefined;
|
17570
17570
|
term?: string | undefined;
|
17571
17571
|
type: [string, ...string[]];
|
@@ -17578,7 +17578,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17578
17578
|
jws?: string | undefined;
|
17579
17579
|
type: string;
|
17580
17580
|
created: string;
|
17581
|
-
proofPurpose:
|
17581
|
+
proofPurpose: string;
|
17582
17582
|
verificationMethod: string;
|
17583
17583
|
} | {
|
17584
17584
|
[x: string]: any;
|
@@ -17588,7 +17588,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17588
17588
|
jws?: string | undefined;
|
17589
17589
|
type: string;
|
17590
17590
|
created: string;
|
17591
|
-
proofPurpose:
|
17591
|
+
proofPurpose: string;
|
17592
17592
|
verificationMethod: string;
|
17593
17593
|
}[];
|
17594
17594
|
}, {
|
@@ -17617,6 +17617,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17617
17617
|
'@context': string[];
|
17618
17618
|
issuer: string | {
|
17619
17619
|
[x: string]: any;
|
17620
|
+
type?: [string, ...string[]] | undefined;
|
17620
17621
|
id?: string | undefined;
|
17621
17622
|
name?: string | undefined;
|
17622
17623
|
url?: string | undefined;
|
@@ -17659,7 +17660,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17659
17660
|
honorificSuffix?: string | undefined;
|
17660
17661
|
familyNamePrefix?: string | undefined;
|
17661
17662
|
dateOfBirth?: string | undefined;
|
17662
|
-
type: [string, ...string[]];
|
17663
17663
|
};
|
17664
17664
|
issuanceDate: string;
|
17665
17665
|
credentialSubject: {
|
@@ -17699,6 +17699,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17699
17699
|
'@context': string[];
|
17700
17700
|
issuer: string | {
|
17701
17701
|
[x: string]: any;
|
17702
|
+
type?: [string, ...string[]] | undefined;
|
17702
17703
|
id?: string | undefined;
|
17703
17704
|
name?: string | undefined;
|
17704
17705
|
url?: string | undefined;
|
@@ -17741,7 +17742,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17741
17742
|
honorificSuffix?: string | undefined;
|
17742
17743
|
familyNamePrefix?: string | undefined;
|
17743
17744
|
dateOfBirth?: string | undefined;
|
17744
|
-
type: [string, ...string[]];
|
17745
17745
|
};
|
17746
17746
|
issuanceDate: string;
|
17747
17747
|
credentialSubject: {
|
@@ -17791,7 +17791,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17791
17791
|
jws?: string | undefined;
|
17792
17792
|
type: string;
|
17793
17793
|
created: string;
|
17794
|
-
proofPurpose:
|
17794
|
+
proofPurpose: string;
|
17795
17795
|
verificationMethod: string;
|
17796
17796
|
} | {
|
17797
17797
|
[x: string]: any;
|
@@ -17801,13 +17801,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17801
17801
|
jws?: string | undefined;
|
17802
17802
|
type: string;
|
17803
17803
|
created: string;
|
17804
|
-
proofPurpose:
|
17804
|
+
proofPurpose: string;
|
17805
17805
|
verificationMethod: string;
|
17806
17806
|
}[] | undefined;
|
17807
17807
|
type: [string, ...string[]];
|
17808
17808
|
'@context': string[];
|
17809
17809
|
issuer: string | {
|
17810
17810
|
[x: string]: any;
|
17811
|
+
type?: [string, ...string[]] | undefined;
|
17811
17812
|
id?: string | undefined;
|
17812
17813
|
name?: string | undefined;
|
17813
17814
|
url?: string | undefined;
|
@@ -17850,7 +17851,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17850
17851
|
honorificSuffix?: string | undefined;
|
17851
17852
|
familyNamePrefix?: string | undefined;
|
17852
17853
|
dateOfBirth?: string | undefined;
|
17853
|
-
type: [string, ...string[]];
|
17854
17854
|
};
|
17855
17855
|
issuanceDate: string;
|
17856
17856
|
credentialSubject: {
|
@@ -17883,6 +17883,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17883
17883
|
achievementType?: string | undefined;
|
17884
17884
|
creator?: string | {
|
17885
17885
|
[x: string]: any;
|
17886
|
+
type?: [string, ...string[]] | undefined;
|
17886
17887
|
id?: string | undefined;
|
17887
17888
|
name?: string | undefined;
|
17888
17889
|
url?: string | undefined;
|
@@ -17925,7 +17926,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17925
17926
|
honorificSuffix?: string | undefined;
|
17926
17927
|
familyNamePrefix?: string | undefined;
|
17927
17928
|
dateOfBirth?: string | undefined;
|
17928
|
-
type: [string, ...string[]];
|
17929
17929
|
} | undefined;
|
17930
17930
|
creditsAvailable?: number | undefined;
|
17931
17931
|
fieldOfStudy?: string | undefined;
|
@@ -18006,6 +18006,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18006
18006
|
role?: string | undefined;
|
18007
18007
|
source?: string | {
|
18008
18008
|
[x: string]: any;
|
18009
|
+
type?: [string, ...string[]] | undefined;
|
18009
18010
|
id?: string | undefined;
|
18010
18011
|
name?: string | undefined;
|
18011
18012
|
url?: string | undefined;
|
@@ -18048,7 +18049,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18048
18049
|
honorificSuffix?: string | undefined;
|
18049
18050
|
familyNamePrefix?: string | undefined;
|
18050
18051
|
dateOfBirth?: string | undefined;
|
18051
|
-
type: [string, ...string[]];
|
18052
18052
|
} | undefined;
|
18053
18053
|
term?: string | undefined;
|
18054
18054
|
type: [string, ...string[]];
|
@@ -18099,7 +18099,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18099
18099
|
jws?: string | undefined;
|
18100
18100
|
type: string;
|
18101
18101
|
created: string;
|
18102
|
-
proofPurpose:
|
18102
|
+
proofPurpose: string;
|
18103
18103
|
verificationMethod: string;
|
18104
18104
|
} | {
|
18105
18105
|
[x: string]: any;
|
@@ -18109,13 +18109,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18109
18109
|
jws?: string | undefined;
|
18110
18110
|
type: string;
|
18111
18111
|
created: string;
|
18112
|
-
proofPurpose:
|
18112
|
+
proofPurpose: string;
|
18113
18113
|
verificationMethod: string;
|
18114
18114
|
}[] | undefined;
|
18115
18115
|
type: [string, ...string[]];
|
18116
18116
|
'@context': string[];
|
18117
18117
|
issuer: string | {
|
18118
18118
|
[x: string]: any;
|
18119
|
+
type?: [string, ...string[]] | undefined;
|
18119
18120
|
id?: string | undefined;
|
18120
18121
|
name?: string | undefined;
|
18121
18122
|
url?: string | undefined;
|
@@ -18158,7 +18159,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18158
18159
|
honorificSuffix?: string | undefined;
|
18159
18160
|
familyNamePrefix?: string | undefined;
|
18160
18161
|
dateOfBirth?: string | undefined;
|
18161
|
-
type: [string, ...string[]];
|
18162
18162
|
};
|
18163
18163
|
issuanceDate: string;
|
18164
18164
|
credentialSubject: {
|
@@ -18191,6 +18191,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18191
18191
|
achievementType?: string | undefined;
|
18192
18192
|
creator?: string | {
|
18193
18193
|
[x: string]: any;
|
18194
|
+
type?: [string, ...string[]] | undefined;
|
18194
18195
|
id?: string | undefined;
|
18195
18196
|
name?: string | undefined;
|
18196
18197
|
url?: string | undefined;
|
@@ -18233,7 +18234,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18233
18234
|
honorificSuffix?: string | undefined;
|
18234
18235
|
familyNamePrefix?: string | undefined;
|
18235
18236
|
dateOfBirth?: string | undefined;
|
18236
|
-
type: [string, ...string[]];
|
18237
18237
|
} | undefined;
|
18238
18238
|
creditsAvailable?: number | undefined;
|
18239
18239
|
fieldOfStudy?: string | undefined;
|
@@ -18314,6 +18314,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18314
18314
|
role?: string | undefined;
|
18315
18315
|
source?: string | {
|
18316
18316
|
[x: string]: any;
|
18317
|
+
type?: [string, ...string[]] | undefined;
|
18317
18318
|
id?: string | undefined;
|
18318
18319
|
name?: string | undefined;
|
18319
18320
|
url?: string | undefined;
|
@@ -18356,7 +18357,6 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18356
18357
|
honorificSuffix?: string | undefined;
|
18357
18358
|
familyNamePrefix?: string | undefined;
|
18358
18359
|
dateOfBirth?: string | undefined;
|
18359
|
-
type: [string, ...string[]];
|
18360
18360
|
} | undefined;
|
18361
18361
|
term?: string | undefined;
|
18362
18362
|
type: [string, ...string[]];
|
@@ -18369,7 +18369,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18369
18369
|
jws?: string | undefined;
|
18370
18370
|
type: string;
|
18371
18371
|
created: string;
|
18372
|
-
proofPurpose:
|
18372
|
+
proofPurpose: string;
|
18373
18373
|
verificationMethod: string;
|
18374
18374
|
} | {
|
18375
18375
|
[x: string]: any;
|
@@ -18379,7 +18379,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18379
18379
|
jws?: string | undefined;
|
18380
18380
|
type: string;
|
18381
18381
|
created: string;
|
18382
|
-
proofPurpose:
|
18382
|
+
proofPurpose: string;
|
18383
18383
|
verificationMethod: string;
|
18384
18384
|
}[];
|
18385
18385
|
}>;
|