@learncard/types 2.2.1 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/crypto.d.ts +21 -0
- package/dist/index.d.ts +1 -0
- package/dist/learncard.d.ts +46 -46
- package/dist/obv3.d.ts +808 -768
- package/dist/types.cjs.development.js +16 -5
- package/dist/types.cjs.development.js.map +3 -3
- package/dist/types.cjs.production.min.js +1 -1
- package/dist/types.cjs.production.min.js.map +3 -3
- package/dist/types.esm.js +16 -5
- package/dist/types.esm.js.map +3 -3
- package/dist/vc.d.ts +193 -193
- package/package.json +1 -1
package/dist/obv3.d.ts
CHANGED
@@ -83,7 +83,7 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
83
83
|
}>]>>;
|
84
84
|
email: z.ZodOptional<z.ZodString>;
|
85
85
|
address: z.ZodOptional<z.ZodObject<{
|
86
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
86
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
87
87
|
addressCountry: z.ZodOptional<z.ZodString>;
|
88
88
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
89
89
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -92,15 +92,15 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
92
92
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
93
93
|
postalCode: z.ZodOptional<z.ZodString>;
|
94
94
|
geo: z.ZodOptional<z.ZodObject<{
|
95
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
95
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
96
96
|
latitude: z.ZodNumber;
|
97
97
|
longitude: z.ZodNumber;
|
98
98
|
}, "strip", z.ZodTypeAny, {
|
99
|
-
type: [string, ...string[]];
|
99
|
+
type: string | [string, ...string[]];
|
100
100
|
latitude: number;
|
101
101
|
longitude: number;
|
102
102
|
}, {
|
103
|
-
type: [string, ...string[]];
|
103
|
+
type: string | [string, ...string[]];
|
104
104
|
latitude: number;
|
105
105
|
longitude: number;
|
106
106
|
}>>;
|
@@ -113,11 +113,11 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
113
113
|
postOfficeBoxNumber?: string | undefined;
|
114
114
|
postalCode?: string | undefined;
|
115
115
|
geo?: {
|
116
|
-
type: [string, ...string[]];
|
116
|
+
type: string | [string, ...string[]];
|
117
117
|
latitude: number;
|
118
118
|
longitude: number;
|
119
119
|
} | undefined;
|
120
|
-
type: [string, ...string[]];
|
120
|
+
type: string | [string, ...string[]];
|
121
121
|
}, {
|
122
122
|
addressCountry?: string | undefined;
|
123
123
|
addressCountryCode?: string | undefined;
|
@@ -127,22 +127,22 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
127
127
|
postOfficeBoxNumber?: string | undefined;
|
128
128
|
postalCode?: string | undefined;
|
129
129
|
geo?: {
|
130
|
-
type: [string, ...string[]];
|
130
|
+
type: string | [string, ...string[]];
|
131
131
|
latitude: number;
|
132
132
|
longitude: number;
|
133
133
|
} | undefined;
|
134
|
-
type: [string, ...string[]];
|
134
|
+
type: string | [string, ...string[]];
|
135
135
|
}>>;
|
136
136
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
137
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
137
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
138
138
|
identifier: z.ZodString;
|
139
139
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
140
140
|
}, "strip", z.ZodTypeAny, {
|
141
|
-
type: [string, ...string[]];
|
141
|
+
type: string | [string, ...string[]];
|
142
142
|
identifier: string;
|
143
143
|
identifierType: string;
|
144
144
|
}, {
|
145
|
-
type: [string, ...string[]];
|
145
|
+
type: string | [string, ...string[]];
|
146
146
|
identifier: string;
|
147
147
|
identifierType: string;
|
148
148
|
}>, "many">>;
|
@@ -180,14 +180,14 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
180
180
|
postOfficeBoxNumber?: string | undefined;
|
181
181
|
postalCode?: string | undefined;
|
182
182
|
geo?: {
|
183
|
-
type: [string, ...string[]];
|
183
|
+
type: string | [string, ...string[]];
|
184
184
|
latitude: number;
|
185
185
|
longitude: number;
|
186
186
|
} | undefined;
|
187
|
-
type: [string, ...string[]];
|
187
|
+
type: string | [string, ...string[]];
|
188
188
|
} | undefined;
|
189
189
|
otherIdentifier?: {
|
190
|
-
type: [string, ...string[]];
|
190
|
+
type: string | [string, ...string[]];
|
191
191
|
identifier: string;
|
192
192
|
identifierType: string;
|
193
193
|
}[] | undefined;
|
@@ -225,14 +225,14 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
225
225
|
postOfficeBoxNumber?: string | undefined;
|
226
226
|
postalCode?: string | undefined;
|
227
227
|
geo?: {
|
228
|
-
type: [string, ...string[]];
|
228
|
+
type: string | [string, ...string[]];
|
229
229
|
latitude: number;
|
230
230
|
longitude: number;
|
231
231
|
} | undefined;
|
232
|
-
type: [string, ...string[]];
|
232
|
+
type: string | [string, ...string[]];
|
233
233
|
} | undefined;
|
234
234
|
otherIdentifier?: {
|
235
|
-
type: [string, ...string[]];
|
235
|
+
type: string | [string, ...string[]];
|
236
236
|
identifier: string;
|
237
237
|
identifierType: string;
|
238
238
|
}[] | undefined;
|
@@ -435,14 +435,14 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
435
435
|
postOfficeBoxNumber?: string | undefined;
|
436
436
|
postalCode?: string | undefined;
|
437
437
|
geo?: {
|
438
|
-
type: [string, ...string[]];
|
438
|
+
type: string | [string, ...string[]];
|
439
439
|
latitude: number;
|
440
440
|
longitude: number;
|
441
441
|
} | undefined;
|
442
|
-
type: [string, ...string[]];
|
442
|
+
type: string | [string, ...string[]];
|
443
443
|
} | undefined;
|
444
444
|
otherIdentifier?: {
|
445
|
-
type: [string, ...string[]];
|
445
|
+
type: string | [string, ...string[]];
|
446
446
|
identifier: string;
|
447
447
|
identifierType: string;
|
448
448
|
}[] | undefined;
|
@@ -527,14 +527,14 @@ export declare const EndorsementCredentialValidator: z.ZodObject<z.extendShape<{
|
|
527
527
|
postOfficeBoxNumber?: string | undefined;
|
528
528
|
postalCode?: string | undefined;
|
529
529
|
geo?: {
|
530
|
-
type: [string, ...string[]];
|
530
|
+
type: string | [string, ...string[]];
|
531
531
|
latitude: number;
|
532
532
|
longitude: number;
|
533
533
|
} | undefined;
|
534
|
-
type: [string, ...string[]];
|
534
|
+
type: string | [string, ...string[]];
|
535
535
|
} | undefined;
|
536
536
|
otherIdentifier?: {
|
537
|
-
type: [string, ...string[]];
|
537
|
+
type: string | [string, ...string[]];
|
538
538
|
identifier: string;
|
539
539
|
identifierType: string;
|
540
540
|
}[] | undefined;
|
@@ -873,7 +873,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
873
873
|
}>]>>;
|
874
874
|
email: z.ZodOptional<z.ZodString>;
|
875
875
|
address: z.ZodOptional<z.ZodObject<{
|
876
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
876
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
877
877
|
addressCountry: z.ZodOptional<z.ZodString>;
|
878
878
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
879
879
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -882,15 +882,15 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
882
882
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
883
883
|
postalCode: z.ZodOptional<z.ZodString>;
|
884
884
|
geo: z.ZodOptional<z.ZodObject<{
|
885
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
885
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
886
886
|
latitude: z.ZodNumber;
|
887
887
|
longitude: z.ZodNumber;
|
888
888
|
}, "strip", z.ZodTypeAny, {
|
889
|
-
type: [string, ...string[]];
|
889
|
+
type: string | [string, ...string[]];
|
890
890
|
latitude: number;
|
891
891
|
longitude: number;
|
892
892
|
}, {
|
893
|
-
type: [string, ...string[]];
|
893
|
+
type: string | [string, ...string[]];
|
894
894
|
latitude: number;
|
895
895
|
longitude: number;
|
896
896
|
}>>;
|
@@ -903,11 +903,11 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
903
903
|
postOfficeBoxNumber?: string | undefined;
|
904
904
|
postalCode?: string | undefined;
|
905
905
|
geo?: {
|
906
|
-
type: [string, ...string[]];
|
906
|
+
type: string | [string, ...string[]];
|
907
907
|
latitude: number;
|
908
908
|
longitude: number;
|
909
909
|
} | undefined;
|
910
|
-
type: [string, ...string[]];
|
910
|
+
type: string | [string, ...string[]];
|
911
911
|
}, {
|
912
912
|
addressCountry?: string | undefined;
|
913
913
|
addressCountryCode?: string | undefined;
|
@@ -917,22 +917,22 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
917
917
|
postOfficeBoxNumber?: string | undefined;
|
918
918
|
postalCode?: string | undefined;
|
919
919
|
geo?: {
|
920
|
-
type: [string, ...string[]];
|
920
|
+
type: string | [string, ...string[]];
|
921
921
|
latitude: number;
|
922
922
|
longitude: number;
|
923
923
|
} | undefined;
|
924
|
-
type: [string, ...string[]];
|
924
|
+
type: string | [string, ...string[]];
|
925
925
|
}>>;
|
926
926
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
927
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
927
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
928
928
|
identifier: z.ZodString;
|
929
929
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
930
930
|
}, "strip", z.ZodTypeAny, {
|
931
|
-
type: [string, ...string[]];
|
931
|
+
type: string | [string, ...string[]];
|
932
932
|
identifier: string;
|
933
933
|
identifierType: string;
|
934
934
|
}, {
|
935
|
-
type: [string, ...string[]];
|
935
|
+
type: string | [string, ...string[]];
|
936
936
|
identifier: string;
|
937
937
|
identifierType: string;
|
938
938
|
}>, "many">>;
|
@@ -970,14 +970,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
970
970
|
postOfficeBoxNumber?: string | undefined;
|
971
971
|
postalCode?: string | undefined;
|
972
972
|
geo?: {
|
973
|
-
type: [string, ...string[]];
|
973
|
+
type: string | [string, ...string[]];
|
974
974
|
latitude: number;
|
975
975
|
longitude: number;
|
976
976
|
} | undefined;
|
977
|
-
type: [string, ...string[]];
|
977
|
+
type: string | [string, ...string[]];
|
978
978
|
} | undefined;
|
979
979
|
otherIdentifier?: {
|
980
|
-
type: [string, ...string[]];
|
980
|
+
type: string | [string, ...string[]];
|
981
981
|
identifier: string;
|
982
982
|
identifierType: string;
|
983
983
|
}[] | undefined;
|
@@ -1015,14 +1015,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1015
1015
|
postOfficeBoxNumber?: string | undefined;
|
1016
1016
|
postalCode?: string | undefined;
|
1017
1017
|
geo?: {
|
1018
|
-
type: [string, ...string[]];
|
1018
|
+
type: string | [string, ...string[]];
|
1019
1019
|
latitude: number;
|
1020
1020
|
longitude: number;
|
1021
1021
|
} | undefined;
|
1022
|
-
type: [string, ...string[]];
|
1022
|
+
type: string | [string, ...string[]];
|
1023
1023
|
} | undefined;
|
1024
1024
|
otherIdentifier?: {
|
1025
|
-
type: [string, ...string[]];
|
1025
|
+
type: string | [string, ...string[]];
|
1026
1026
|
identifier: string;
|
1027
1027
|
identifierType: string;
|
1028
1028
|
}[] | undefined;
|
@@ -1078,7 +1078,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1078
1078
|
}>]>>;
|
1079
1079
|
email: z.ZodOptional<z.ZodString>;
|
1080
1080
|
address: z.ZodOptional<z.ZodObject<{
|
1081
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
1081
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
1082
1082
|
addressCountry: z.ZodOptional<z.ZodString>;
|
1083
1083
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
1084
1084
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -1087,15 +1087,15 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1087
1087
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
1088
1088
|
postalCode: z.ZodOptional<z.ZodString>;
|
1089
1089
|
geo: z.ZodOptional<z.ZodObject<{
|
1090
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
1090
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
1091
1091
|
latitude: z.ZodNumber;
|
1092
1092
|
longitude: z.ZodNumber;
|
1093
1093
|
}, "strip", z.ZodTypeAny, {
|
1094
|
-
type: [string, ...string[]];
|
1094
|
+
type: string | [string, ...string[]];
|
1095
1095
|
latitude: number;
|
1096
1096
|
longitude: number;
|
1097
1097
|
}, {
|
1098
|
-
type: [string, ...string[]];
|
1098
|
+
type: string | [string, ...string[]];
|
1099
1099
|
latitude: number;
|
1100
1100
|
longitude: number;
|
1101
1101
|
}>>;
|
@@ -1108,11 +1108,11 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1108
1108
|
postOfficeBoxNumber?: string | undefined;
|
1109
1109
|
postalCode?: string | undefined;
|
1110
1110
|
geo?: {
|
1111
|
-
type: [string, ...string[]];
|
1111
|
+
type: string | [string, ...string[]];
|
1112
1112
|
latitude: number;
|
1113
1113
|
longitude: number;
|
1114
1114
|
} | undefined;
|
1115
|
-
type: [string, ...string[]];
|
1115
|
+
type: string | [string, ...string[]];
|
1116
1116
|
}, {
|
1117
1117
|
addressCountry?: string | undefined;
|
1118
1118
|
addressCountryCode?: string | undefined;
|
@@ -1122,22 +1122,22 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1122
1122
|
postOfficeBoxNumber?: string | undefined;
|
1123
1123
|
postalCode?: string | undefined;
|
1124
1124
|
geo?: {
|
1125
|
-
type: [string, ...string[]];
|
1125
|
+
type: string | [string, ...string[]];
|
1126
1126
|
latitude: number;
|
1127
1127
|
longitude: number;
|
1128
1128
|
} | undefined;
|
1129
|
-
type: [string, ...string[]];
|
1129
|
+
type: string | [string, ...string[]];
|
1130
1130
|
}>>;
|
1131
1131
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1132
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
1132
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
1133
1133
|
identifier: z.ZodString;
|
1134
1134
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
1135
1135
|
}, "strip", z.ZodTypeAny, {
|
1136
|
-
type: [string, ...string[]];
|
1136
|
+
type: string | [string, ...string[]];
|
1137
1137
|
identifier: string;
|
1138
1138
|
identifierType: string;
|
1139
1139
|
}, {
|
1140
|
-
type: [string, ...string[]];
|
1140
|
+
type: string | [string, ...string[]];
|
1141
1141
|
identifier: string;
|
1142
1142
|
identifierType: string;
|
1143
1143
|
}>, "many">>;
|
@@ -1175,14 +1175,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1175
1175
|
postOfficeBoxNumber?: string | undefined;
|
1176
1176
|
postalCode?: string | undefined;
|
1177
1177
|
geo?: {
|
1178
|
-
type: [string, ...string[]];
|
1178
|
+
type: string | [string, ...string[]];
|
1179
1179
|
latitude: number;
|
1180
1180
|
longitude: number;
|
1181
1181
|
} | undefined;
|
1182
|
-
type: [string, ...string[]];
|
1182
|
+
type: string | [string, ...string[]];
|
1183
1183
|
} | undefined;
|
1184
1184
|
otherIdentifier?: {
|
1185
|
-
type: [string, ...string[]];
|
1185
|
+
type: string | [string, ...string[]];
|
1186
1186
|
identifier: string;
|
1187
1187
|
identifierType: string;
|
1188
1188
|
}[] | undefined;
|
@@ -1220,14 +1220,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1220
1220
|
postOfficeBoxNumber?: string | undefined;
|
1221
1221
|
postalCode?: string | undefined;
|
1222
1222
|
geo?: {
|
1223
|
-
type: [string, ...string[]];
|
1223
|
+
type: string | [string, ...string[]];
|
1224
1224
|
latitude: number;
|
1225
1225
|
longitude: number;
|
1226
1226
|
} | undefined;
|
1227
|
-
type: [string, ...string[]];
|
1227
|
+
type: string | [string, ...string[]];
|
1228
1228
|
} | undefined;
|
1229
1229
|
otherIdentifier?: {
|
1230
|
-
type: [string, ...string[]];
|
1230
|
+
type: string | [string, ...string[]];
|
1231
1231
|
identifier: string;
|
1232
1232
|
identifierType: string;
|
1233
1233
|
}[] | undefined;
|
@@ -1430,14 +1430,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1430
1430
|
postOfficeBoxNumber?: string | undefined;
|
1431
1431
|
postalCode?: string | undefined;
|
1432
1432
|
geo?: {
|
1433
|
-
type: [string, ...string[]];
|
1433
|
+
type: string | [string, ...string[]];
|
1434
1434
|
latitude: number;
|
1435
1435
|
longitude: number;
|
1436
1436
|
} | undefined;
|
1437
|
-
type: [string, ...string[]];
|
1437
|
+
type: string | [string, ...string[]];
|
1438
1438
|
} | undefined;
|
1439
1439
|
otherIdentifier?: {
|
1440
|
-
type: [string, ...string[]];
|
1440
|
+
type: string | [string, ...string[]];
|
1441
1441
|
identifier: string;
|
1442
1442
|
identifierType: string;
|
1443
1443
|
}[] | undefined;
|
@@ -1522,14 +1522,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1522
1522
|
postOfficeBoxNumber?: string | undefined;
|
1523
1523
|
postalCode?: string | undefined;
|
1524
1524
|
geo?: {
|
1525
|
-
type: [string, ...string[]];
|
1525
|
+
type: string | [string, ...string[]];
|
1526
1526
|
latitude: number;
|
1527
1527
|
longitude: number;
|
1528
1528
|
} | undefined;
|
1529
|
-
type: [string, ...string[]];
|
1529
|
+
type: string | [string, ...string[]];
|
1530
1530
|
} | undefined;
|
1531
1531
|
otherIdentifier?: {
|
1532
|
-
type: [string, ...string[]];
|
1532
|
+
type: string | [string, ...string[]];
|
1533
1533
|
identifier: string;
|
1534
1534
|
identifierType: string;
|
1535
1535
|
}[] | undefined;
|
@@ -1569,15 +1569,15 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1569
1569
|
'@language': z.ZodOptional<z.ZodString>;
|
1570
1570
|
name: z.ZodString;
|
1571
1571
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
1572
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
1572
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
1573
1573
|
identifier: z.ZodString;
|
1574
1574
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
1575
1575
|
}, "strip", z.ZodTypeAny, {
|
1576
|
-
type: [string, ...string[]];
|
1576
|
+
type: string | [string, ...string[]];
|
1577
1577
|
identifier: string;
|
1578
1578
|
identifierType: string;
|
1579
1579
|
}, {
|
1580
|
-
type: [string, ...string[]];
|
1580
|
+
type: string | [string, ...string[]];
|
1581
1581
|
identifier: string;
|
1582
1582
|
identifierType: string;
|
1583
1583
|
}>, "many">>;
|
@@ -1843,14 +1843,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1843
1843
|
postOfficeBoxNumber?: string | undefined;
|
1844
1844
|
postalCode?: string | undefined;
|
1845
1845
|
geo?: {
|
1846
|
-
type: [string, ...string[]];
|
1846
|
+
type: string | [string, ...string[]];
|
1847
1847
|
latitude: number;
|
1848
1848
|
longitude: number;
|
1849
1849
|
} | undefined;
|
1850
|
-
type: [string, ...string[]];
|
1850
|
+
type: string | [string, ...string[]];
|
1851
1851
|
} | undefined;
|
1852
1852
|
otherIdentifier?: {
|
1853
|
-
type: [string, ...string[]];
|
1853
|
+
type: string | [string, ...string[]];
|
1854
1854
|
identifier: string;
|
1855
1855
|
identifierType: string;
|
1856
1856
|
}[] | undefined;
|
@@ -1878,7 +1878,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1878
1878
|
id: string;
|
1879
1879
|
} | undefined;
|
1880
1880
|
otherIdentifier?: {
|
1881
|
-
type: [string, ...string[]];
|
1881
|
+
type: string | [string, ...string[]];
|
1882
1882
|
identifier: string;
|
1883
1883
|
identifierType: string;
|
1884
1884
|
}[] | undefined;
|
@@ -1918,14 +1918,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
1918
1918
|
postOfficeBoxNumber?: string | undefined;
|
1919
1919
|
postalCode?: string | undefined;
|
1920
1920
|
geo?: {
|
1921
|
-
type: [string, ...string[]];
|
1921
|
+
type: string | [string, ...string[]];
|
1922
1922
|
latitude: number;
|
1923
1923
|
longitude: number;
|
1924
1924
|
} | undefined;
|
1925
|
-
type: [string, ...string[]];
|
1925
|
+
type: string | [string, ...string[]];
|
1926
1926
|
} | undefined;
|
1927
1927
|
otherIdentifier?: {
|
1928
|
-
type: [string, ...string[]];
|
1928
|
+
type: string | [string, ...string[]];
|
1929
1929
|
identifier: string;
|
1930
1930
|
identifierType: string;
|
1931
1931
|
}[] | undefined;
|
@@ -2064,14 +2064,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2064
2064
|
postOfficeBoxNumber?: string | undefined;
|
2065
2065
|
postalCode?: string | undefined;
|
2066
2066
|
geo?: {
|
2067
|
-
type: [string, ...string[]];
|
2067
|
+
type: string | [string, ...string[]];
|
2068
2068
|
latitude: number;
|
2069
2069
|
longitude: number;
|
2070
2070
|
} | undefined;
|
2071
|
-
type: [string, ...string[]];
|
2071
|
+
type: string | [string, ...string[]];
|
2072
2072
|
} | undefined;
|
2073
2073
|
otherIdentifier?: {
|
2074
|
-
type: [string, ...string[]];
|
2074
|
+
type: string | [string, ...string[]];
|
2075
2075
|
identifier: string;
|
2076
2076
|
identifierType: string;
|
2077
2077
|
}[] | undefined;
|
@@ -2099,7 +2099,7 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2099
2099
|
id: string;
|
2100
2100
|
} | undefined;
|
2101
2101
|
otherIdentifier?: {
|
2102
|
-
type: [string, ...string[]];
|
2102
|
+
type: string | [string, ...string[]];
|
2103
2103
|
identifier: string;
|
2104
2104
|
identifierType: string;
|
2105
2105
|
}[] | undefined;
|
@@ -2139,14 +2139,14 @@ export declare const AchievementValidator: z.ZodObject<{
|
|
2139
2139
|
postOfficeBoxNumber?: string | undefined;
|
2140
2140
|
postalCode?: string | undefined;
|
2141
2141
|
geo?: {
|
2142
|
-
type: [string, ...string[]];
|
2142
|
+
type: string | [string, ...string[]];
|
2143
2143
|
latitude: number;
|
2144
2144
|
longitude: number;
|
2145
2145
|
} | undefined;
|
2146
|
-
type: [string, ...string[]];
|
2146
|
+
type: string | [string, ...string[]];
|
2147
2147
|
} | undefined;
|
2148
2148
|
otherIdentifier?: {
|
2149
|
-
type: [string, ...string[]];
|
2149
|
+
type: string | [string, ...string[]];
|
2150
2150
|
identifier: string;
|
2151
2151
|
identifierType: string;
|
2152
2152
|
}[] | undefined;
|
@@ -2365,7 +2365,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2365
2365
|
}>]>>;
|
2366
2366
|
email: z.ZodOptional<z.ZodString>;
|
2367
2367
|
address: z.ZodOptional<z.ZodObject<{
|
2368
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
2368
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
2369
2369
|
addressCountry: z.ZodOptional<z.ZodString>;
|
2370
2370
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
2371
2371
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -2374,15 +2374,15 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2374
2374
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
2375
2375
|
postalCode: z.ZodOptional<z.ZodString>;
|
2376
2376
|
geo: z.ZodOptional<z.ZodObject<{
|
2377
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
2377
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
2378
2378
|
latitude: z.ZodNumber;
|
2379
2379
|
longitude: z.ZodNumber;
|
2380
2380
|
}, "strip", z.ZodTypeAny, {
|
2381
|
-
type: [string, ...string[]];
|
2381
|
+
type: string | [string, ...string[]];
|
2382
2382
|
latitude: number;
|
2383
2383
|
longitude: number;
|
2384
2384
|
}, {
|
2385
|
-
type: [string, ...string[]];
|
2385
|
+
type: string | [string, ...string[]];
|
2386
2386
|
latitude: number;
|
2387
2387
|
longitude: number;
|
2388
2388
|
}>>;
|
@@ -2395,11 +2395,11 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2395
2395
|
postOfficeBoxNumber?: string | undefined;
|
2396
2396
|
postalCode?: string | undefined;
|
2397
2397
|
geo?: {
|
2398
|
-
type: [string, ...string[]];
|
2398
|
+
type: string | [string, ...string[]];
|
2399
2399
|
latitude: number;
|
2400
2400
|
longitude: number;
|
2401
2401
|
} | undefined;
|
2402
|
-
type: [string, ...string[]];
|
2402
|
+
type: string | [string, ...string[]];
|
2403
2403
|
}, {
|
2404
2404
|
addressCountry?: string | undefined;
|
2405
2405
|
addressCountryCode?: string | undefined;
|
@@ -2409,22 +2409,22 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2409
2409
|
postOfficeBoxNumber?: string | undefined;
|
2410
2410
|
postalCode?: string | undefined;
|
2411
2411
|
geo?: {
|
2412
|
-
type: [string, ...string[]];
|
2412
|
+
type: string | [string, ...string[]];
|
2413
2413
|
latitude: number;
|
2414
2414
|
longitude: number;
|
2415
2415
|
} | undefined;
|
2416
|
-
type: [string, ...string[]];
|
2416
|
+
type: string | [string, ...string[]];
|
2417
2417
|
}>>;
|
2418
2418
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2419
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
2419
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
2420
2420
|
identifier: z.ZodString;
|
2421
2421
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
2422
2422
|
}, "strip", z.ZodTypeAny, {
|
2423
|
-
type: [string, ...string[]];
|
2423
|
+
type: string | [string, ...string[]];
|
2424
2424
|
identifier: string;
|
2425
2425
|
identifierType: string;
|
2426
2426
|
}, {
|
2427
|
-
type: [string, ...string[]];
|
2427
|
+
type: string | [string, ...string[]];
|
2428
2428
|
identifier: string;
|
2429
2429
|
identifierType: string;
|
2430
2430
|
}>, "many">>;
|
@@ -2462,14 +2462,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2462
2462
|
postOfficeBoxNumber?: string | undefined;
|
2463
2463
|
postalCode?: string | undefined;
|
2464
2464
|
geo?: {
|
2465
|
-
type: [string, ...string[]];
|
2465
|
+
type: string | [string, ...string[]];
|
2466
2466
|
latitude: number;
|
2467
2467
|
longitude: number;
|
2468
2468
|
} | undefined;
|
2469
|
-
type: [string, ...string[]];
|
2469
|
+
type: string | [string, ...string[]];
|
2470
2470
|
} | undefined;
|
2471
2471
|
otherIdentifier?: {
|
2472
|
-
type: [string, ...string[]];
|
2472
|
+
type: string | [string, ...string[]];
|
2473
2473
|
identifier: string;
|
2474
2474
|
identifierType: string;
|
2475
2475
|
}[] | undefined;
|
@@ -2507,14 +2507,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2507
2507
|
postOfficeBoxNumber?: string | undefined;
|
2508
2508
|
postalCode?: string | undefined;
|
2509
2509
|
geo?: {
|
2510
|
-
type: [string, ...string[]];
|
2510
|
+
type: string | [string, ...string[]];
|
2511
2511
|
latitude: number;
|
2512
2512
|
longitude: number;
|
2513
2513
|
} | undefined;
|
2514
|
-
type: [string, ...string[]];
|
2514
|
+
type: string | [string, ...string[]];
|
2515
2515
|
} | undefined;
|
2516
2516
|
otherIdentifier?: {
|
2517
|
-
type: [string, ...string[]];
|
2517
|
+
type: string | [string, ...string[]];
|
2518
2518
|
identifier: string;
|
2519
2519
|
identifierType: string;
|
2520
2520
|
}[] | undefined;
|
@@ -2570,7 +2570,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2570
2570
|
}>]>>;
|
2571
2571
|
email: z.ZodOptional<z.ZodString>;
|
2572
2572
|
address: z.ZodOptional<z.ZodObject<{
|
2573
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
2573
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
2574
2574
|
addressCountry: z.ZodOptional<z.ZodString>;
|
2575
2575
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
2576
2576
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -2579,15 +2579,15 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2579
2579
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
2580
2580
|
postalCode: z.ZodOptional<z.ZodString>;
|
2581
2581
|
geo: z.ZodOptional<z.ZodObject<{
|
2582
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
2582
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
2583
2583
|
latitude: z.ZodNumber;
|
2584
2584
|
longitude: z.ZodNumber;
|
2585
2585
|
}, "strip", z.ZodTypeAny, {
|
2586
|
-
type: [string, ...string[]];
|
2586
|
+
type: string | [string, ...string[]];
|
2587
2587
|
latitude: number;
|
2588
2588
|
longitude: number;
|
2589
2589
|
}, {
|
2590
|
-
type: [string, ...string[]];
|
2590
|
+
type: string | [string, ...string[]];
|
2591
2591
|
latitude: number;
|
2592
2592
|
longitude: number;
|
2593
2593
|
}>>;
|
@@ -2600,11 +2600,11 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2600
2600
|
postOfficeBoxNumber?: string | undefined;
|
2601
2601
|
postalCode?: string | undefined;
|
2602
2602
|
geo?: {
|
2603
|
-
type: [string, ...string[]];
|
2603
|
+
type: string | [string, ...string[]];
|
2604
2604
|
latitude: number;
|
2605
2605
|
longitude: number;
|
2606
2606
|
} | undefined;
|
2607
|
-
type: [string, ...string[]];
|
2607
|
+
type: string | [string, ...string[]];
|
2608
2608
|
}, {
|
2609
2609
|
addressCountry?: string | undefined;
|
2610
2610
|
addressCountryCode?: string | undefined;
|
@@ -2614,22 +2614,22 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2614
2614
|
postOfficeBoxNumber?: string | undefined;
|
2615
2615
|
postalCode?: string | undefined;
|
2616
2616
|
geo?: {
|
2617
|
-
type: [string, ...string[]];
|
2617
|
+
type: string | [string, ...string[]];
|
2618
2618
|
latitude: number;
|
2619
2619
|
longitude: number;
|
2620
2620
|
} | undefined;
|
2621
|
-
type: [string, ...string[]];
|
2621
|
+
type: string | [string, ...string[]];
|
2622
2622
|
}>>;
|
2623
2623
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
2624
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
2624
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
2625
2625
|
identifier: z.ZodString;
|
2626
2626
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
2627
2627
|
}, "strip", z.ZodTypeAny, {
|
2628
|
-
type: [string, ...string[]];
|
2628
|
+
type: string | [string, ...string[]];
|
2629
2629
|
identifier: string;
|
2630
2630
|
identifierType: string;
|
2631
2631
|
}, {
|
2632
|
-
type: [string, ...string[]];
|
2632
|
+
type: string | [string, ...string[]];
|
2633
2633
|
identifier: string;
|
2634
2634
|
identifierType: string;
|
2635
2635
|
}>, "many">>;
|
@@ -2667,14 +2667,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2667
2667
|
postOfficeBoxNumber?: string | undefined;
|
2668
2668
|
postalCode?: string | undefined;
|
2669
2669
|
geo?: {
|
2670
|
-
type: [string, ...string[]];
|
2670
|
+
type: string | [string, ...string[]];
|
2671
2671
|
latitude: number;
|
2672
2672
|
longitude: number;
|
2673
2673
|
} | undefined;
|
2674
|
-
type: [string, ...string[]];
|
2674
|
+
type: string | [string, ...string[]];
|
2675
2675
|
} | undefined;
|
2676
2676
|
otherIdentifier?: {
|
2677
|
-
type: [string, ...string[]];
|
2677
|
+
type: string | [string, ...string[]];
|
2678
2678
|
identifier: string;
|
2679
2679
|
identifierType: string;
|
2680
2680
|
}[] | undefined;
|
@@ -2712,14 +2712,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2712
2712
|
postOfficeBoxNumber?: string | undefined;
|
2713
2713
|
postalCode?: string | undefined;
|
2714
2714
|
geo?: {
|
2715
|
-
type: [string, ...string[]];
|
2715
|
+
type: string | [string, ...string[]];
|
2716
2716
|
latitude: number;
|
2717
2717
|
longitude: number;
|
2718
2718
|
} | undefined;
|
2719
|
-
type: [string, ...string[]];
|
2719
|
+
type: string | [string, ...string[]];
|
2720
2720
|
} | undefined;
|
2721
2721
|
otherIdentifier?: {
|
2722
|
-
type: [string, ...string[]];
|
2722
|
+
type: string | [string, ...string[]];
|
2723
2723
|
identifier: string;
|
2724
2724
|
identifierType: string;
|
2725
2725
|
}[] | undefined;
|
@@ -2922,14 +2922,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
2922
2922
|
postOfficeBoxNumber?: string | undefined;
|
2923
2923
|
postalCode?: string | undefined;
|
2924
2924
|
geo?: {
|
2925
|
-
type: [string, ...string[]];
|
2925
|
+
type: string | [string, ...string[]];
|
2926
2926
|
latitude: number;
|
2927
2927
|
longitude: number;
|
2928
2928
|
} | undefined;
|
2929
|
-
type: [string, ...string[]];
|
2929
|
+
type: string | [string, ...string[]];
|
2930
2930
|
} | undefined;
|
2931
2931
|
otherIdentifier?: {
|
2932
|
-
type: [string, ...string[]];
|
2932
|
+
type: string | [string, ...string[]];
|
2933
2933
|
identifier: string;
|
2934
2934
|
identifierType: string;
|
2935
2935
|
}[] | undefined;
|
@@ -3014,14 +3014,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3014
3014
|
postOfficeBoxNumber?: string | undefined;
|
3015
3015
|
postalCode?: string | undefined;
|
3016
3016
|
geo?: {
|
3017
|
-
type: [string, ...string[]];
|
3017
|
+
type: string | [string, ...string[]];
|
3018
3018
|
latitude: number;
|
3019
3019
|
longitude: number;
|
3020
3020
|
} | undefined;
|
3021
|
-
type: [string, ...string[]];
|
3021
|
+
type: string | [string, ...string[]];
|
3022
3022
|
} | undefined;
|
3023
3023
|
otherIdentifier?: {
|
3024
|
-
type: [string, ...string[]];
|
3024
|
+
type: string | [string, ...string[]];
|
3025
3025
|
identifier: string;
|
3026
3026
|
identifierType: string;
|
3027
3027
|
}[] | undefined;
|
@@ -3061,15 +3061,15 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3061
3061
|
'@language': z.ZodOptional<z.ZodString>;
|
3062
3062
|
name: z.ZodString;
|
3063
3063
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3064
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
3064
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
3065
3065
|
identifier: z.ZodString;
|
3066
3066
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
3067
3067
|
}, "strip", z.ZodTypeAny, {
|
3068
|
-
type: [string, ...string[]];
|
3068
|
+
type: string | [string, ...string[]];
|
3069
3069
|
identifier: string;
|
3070
3070
|
identifierType: string;
|
3071
3071
|
}, {
|
3072
|
-
type: [string, ...string[]];
|
3072
|
+
type: string | [string, ...string[]];
|
3073
3073
|
identifier: string;
|
3074
3074
|
identifierType: string;
|
3075
3075
|
}>, "many">>;
|
@@ -3335,14 +3335,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3335
3335
|
postOfficeBoxNumber?: string | undefined;
|
3336
3336
|
postalCode?: string | undefined;
|
3337
3337
|
geo?: {
|
3338
|
-
type: [string, ...string[]];
|
3338
|
+
type: string | [string, ...string[]];
|
3339
3339
|
latitude: number;
|
3340
3340
|
longitude: number;
|
3341
3341
|
} | undefined;
|
3342
|
-
type: [string, ...string[]];
|
3342
|
+
type: string | [string, ...string[]];
|
3343
3343
|
} | undefined;
|
3344
3344
|
otherIdentifier?: {
|
3345
|
-
type: [string, ...string[]];
|
3345
|
+
type: string | [string, ...string[]];
|
3346
3346
|
identifier: string;
|
3347
3347
|
identifierType: string;
|
3348
3348
|
}[] | undefined;
|
@@ -3370,7 +3370,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3370
3370
|
id: string;
|
3371
3371
|
} | undefined;
|
3372
3372
|
otherIdentifier?: {
|
3373
|
-
type: [string, ...string[]];
|
3373
|
+
type: string | [string, ...string[]];
|
3374
3374
|
identifier: string;
|
3375
3375
|
identifierType: string;
|
3376
3376
|
}[] | undefined;
|
@@ -3410,14 +3410,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3410
3410
|
postOfficeBoxNumber?: string | undefined;
|
3411
3411
|
postalCode?: string | undefined;
|
3412
3412
|
geo?: {
|
3413
|
-
type: [string, ...string[]];
|
3413
|
+
type: string | [string, ...string[]];
|
3414
3414
|
latitude: number;
|
3415
3415
|
longitude: number;
|
3416
3416
|
} | undefined;
|
3417
|
-
type: [string, ...string[]];
|
3417
|
+
type: string | [string, ...string[]];
|
3418
3418
|
} | undefined;
|
3419
3419
|
otherIdentifier?: {
|
3420
|
-
type: [string, ...string[]];
|
3420
|
+
type: string | [string, ...string[]];
|
3421
3421
|
identifier: string;
|
3422
3422
|
identifierType: string;
|
3423
3423
|
}[] | undefined;
|
@@ -3556,14 +3556,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3556
3556
|
postOfficeBoxNumber?: string | undefined;
|
3557
3557
|
postalCode?: string | undefined;
|
3558
3558
|
geo?: {
|
3559
|
-
type: [string, ...string[]];
|
3559
|
+
type: string | [string, ...string[]];
|
3560
3560
|
latitude: number;
|
3561
3561
|
longitude: number;
|
3562
3562
|
} | undefined;
|
3563
|
-
type: [string, ...string[]];
|
3563
|
+
type: string | [string, ...string[]];
|
3564
3564
|
} | undefined;
|
3565
3565
|
otherIdentifier?: {
|
3566
|
-
type: [string, ...string[]];
|
3566
|
+
type: string | [string, ...string[]];
|
3567
3567
|
identifier: string;
|
3568
3568
|
identifierType: string;
|
3569
3569
|
}[] | undefined;
|
@@ -3591,7 +3591,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3591
3591
|
id: string;
|
3592
3592
|
} | undefined;
|
3593
3593
|
otherIdentifier?: {
|
3594
|
-
type: [string, ...string[]];
|
3594
|
+
type: string | [string, ...string[]];
|
3595
3595
|
identifier: string;
|
3596
3596
|
identifierType: string;
|
3597
3597
|
}[] | undefined;
|
@@ -3631,14 +3631,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3631
3631
|
postOfficeBoxNumber?: string | undefined;
|
3632
3632
|
postalCode?: string | undefined;
|
3633
3633
|
geo?: {
|
3634
|
-
type: [string, ...string[]];
|
3634
|
+
type: string | [string, ...string[]];
|
3635
3635
|
latitude: number;
|
3636
3636
|
longitude: number;
|
3637
3637
|
} | undefined;
|
3638
|
-
type: [string, ...string[]];
|
3638
|
+
type: string | [string, ...string[]];
|
3639
3639
|
} | undefined;
|
3640
3640
|
otherIdentifier?: {
|
3641
|
-
type: [string, ...string[]];
|
3641
|
+
type: string | [string, ...string[]];
|
3642
3642
|
identifier: string;
|
3643
3643
|
identifierType: string;
|
3644
3644
|
}[] | undefined;
|
@@ -3711,7 +3711,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3711
3711
|
id?: string | undefined;
|
3712
3712
|
};
|
3713
3713
|
}>>;
|
3714
|
-
identifier: z.ZodOptional<z.ZodObject<{
|
3714
|
+
identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3715
3715
|
type: z.ZodString;
|
3716
3716
|
hashed: z.ZodBoolean;
|
3717
3717
|
identityHash: z.ZodString;
|
@@ -3729,7 +3729,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3729
3729
|
hashed: boolean;
|
3730
3730
|
identityHash: string;
|
3731
3731
|
identityType: string;
|
3732
|
-
}>>;
|
3732
|
+
}>, "many">>;
|
3733
3733
|
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
3734
3734
|
id: z.ZodString;
|
3735
3735
|
type: z.ZodString;
|
@@ -3833,7 +3833,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3833
3833
|
}>]>>;
|
3834
3834
|
email: z.ZodOptional<z.ZodString>;
|
3835
3835
|
address: z.ZodOptional<z.ZodObject<{
|
3836
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
3836
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
3837
3837
|
addressCountry: z.ZodOptional<z.ZodString>;
|
3838
3838
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
3839
3839
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -3842,15 +3842,15 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3842
3842
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
3843
3843
|
postalCode: z.ZodOptional<z.ZodString>;
|
3844
3844
|
geo: z.ZodOptional<z.ZodObject<{
|
3845
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
3845
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
3846
3846
|
latitude: z.ZodNumber;
|
3847
3847
|
longitude: z.ZodNumber;
|
3848
3848
|
}, "strip", z.ZodTypeAny, {
|
3849
|
-
type: [string, ...string[]];
|
3849
|
+
type: string | [string, ...string[]];
|
3850
3850
|
latitude: number;
|
3851
3851
|
longitude: number;
|
3852
3852
|
}, {
|
3853
|
-
type: [string, ...string[]];
|
3853
|
+
type: string | [string, ...string[]];
|
3854
3854
|
latitude: number;
|
3855
3855
|
longitude: number;
|
3856
3856
|
}>>;
|
@@ -3863,11 +3863,11 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3863
3863
|
postOfficeBoxNumber?: string | undefined;
|
3864
3864
|
postalCode?: string | undefined;
|
3865
3865
|
geo?: {
|
3866
|
-
type: [string, ...string[]];
|
3866
|
+
type: string | [string, ...string[]];
|
3867
3867
|
latitude: number;
|
3868
3868
|
longitude: number;
|
3869
3869
|
} | undefined;
|
3870
|
-
type: [string, ...string[]];
|
3870
|
+
type: string | [string, ...string[]];
|
3871
3871
|
}, {
|
3872
3872
|
addressCountry?: string | undefined;
|
3873
3873
|
addressCountryCode?: string | undefined;
|
@@ -3877,22 +3877,22 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3877
3877
|
postOfficeBoxNumber?: string | undefined;
|
3878
3878
|
postalCode?: string | undefined;
|
3879
3879
|
geo?: {
|
3880
|
-
type: [string, ...string[]];
|
3880
|
+
type: string | [string, ...string[]];
|
3881
3881
|
latitude: number;
|
3882
3882
|
longitude: number;
|
3883
3883
|
} | undefined;
|
3884
|
-
type: [string, ...string[]];
|
3884
|
+
type: string | [string, ...string[]];
|
3885
3885
|
}>>;
|
3886
3886
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
3887
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
3887
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
3888
3888
|
identifier: z.ZodString;
|
3889
3889
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
3890
3890
|
}, "strip", z.ZodTypeAny, {
|
3891
|
-
type: [string, ...string[]];
|
3891
|
+
type: string | [string, ...string[]];
|
3892
3892
|
identifier: string;
|
3893
3893
|
identifierType: string;
|
3894
3894
|
}, {
|
3895
|
-
type: [string, ...string[]];
|
3895
|
+
type: string | [string, ...string[]];
|
3896
3896
|
identifier: string;
|
3897
3897
|
identifierType: string;
|
3898
3898
|
}>, "many">>;
|
@@ -3930,14 +3930,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3930
3930
|
postOfficeBoxNumber?: string | undefined;
|
3931
3931
|
postalCode?: string | undefined;
|
3932
3932
|
geo?: {
|
3933
|
-
type: [string, ...string[]];
|
3933
|
+
type: string | [string, ...string[]];
|
3934
3934
|
latitude: number;
|
3935
3935
|
longitude: number;
|
3936
3936
|
} | undefined;
|
3937
|
-
type: [string, ...string[]];
|
3937
|
+
type: string | [string, ...string[]];
|
3938
3938
|
} | undefined;
|
3939
3939
|
otherIdentifier?: {
|
3940
|
-
type: [string, ...string[]];
|
3940
|
+
type: string | [string, ...string[]];
|
3941
3941
|
identifier: string;
|
3942
3942
|
identifierType: string;
|
3943
3943
|
}[] | undefined;
|
@@ -3975,14 +3975,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
3975
3975
|
postOfficeBoxNumber?: string | undefined;
|
3976
3976
|
postalCode?: string | undefined;
|
3977
3977
|
geo?: {
|
3978
|
-
type: [string, ...string[]];
|
3978
|
+
type: string | [string, ...string[]];
|
3979
3979
|
latitude: number;
|
3980
3980
|
longitude: number;
|
3981
3981
|
} | undefined;
|
3982
|
-
type: [string, ...string[]];
|
3982
|
+
type: string | [string, ...string[]];
|
3983
3983
|
} | undefined;
|
3984
3984
|
otherIdentifier?: {
|
3985
|
-
type: [string, ...string[]];
|
3985
|
+
type: string | [string, ...string[]];
|
3986
3986
|
identifier: string;
|
3987
3987
|
identifierType: string;
|
3988
3988
|
}[] | undefined;
|
@@ -4008,7 +4008,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4008
4008
|
hashed: boolean;
|
4009
4009
|
identityHash: string;
|
4010
4010
|
identityType: string;
|
4011
|
-
} | undefined;
|
4011
|
+
}[] | undefined;
|
4012
4012
|
image?: string | {
|
4013
4013
|
caption?: string | undefined;
|
4014
4014
|
type: string;
|
@@ -4084,14 +4084,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4084
4084
|
postOfficeBoxNumber?: string | undefined;
|
4085
4085
|
postalCode?: string | undefined;
|
4086
4086
|
geo?: {
|
4087
|
-
type: [string, ...string[]];
|
4087
|
+
type: string | [string, ...string[]];
|
4088
4088
|
latitude: number;
|
4089
4089
|
longitude: number;
|
4090
4090
|
} | undefined;
|
4091
|
-
type: [string, ...string[]];
|
4091
|
+
type: string | [string, ...string[]];
|
4092
4092
|
} | undefined;
|
4093
4093
|
otherIdentifier?: {
|
4094
|
-
type: [string, ...string[]];
|
4094
|
+
type: string | [string, ...string[]];
|
4095
4095
|
identifier: string;
|
4096
4096
|
identifierType: string;
|
4097
4097
|
}[] | undefined;
|
@@ -4119,7 +4119,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4119
4119
|
id: string;
|
4120
4120
|
} | undefined;
|
4121
4121
|
otherIdentifier?: {
|
4122
|
-
type: [string, ...string[]];
|
4122
|
+
type: string | [string, ...string[]];
|
4123
4123
|
identifier: string;
|
4124
4124
|
identifierType: string;
|
4125
4125
|
}[] | undefined;
|
@@ -4159,14 +4159,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4159
4159
|
postOfficeBoxNumber?: string | undefined;
|
4160
4160
|
postalCode?: string | undefined;
|
4161
4161
|
geo?: {
|
4162
|
-
type: [string, ...string[]];
|
4162
|
+
type: string | [string, ...string[]];
|
4163
4163
|
latitude: number;
|
4164
4164
|
longitude: number;
|
4165
4165
|
} | undefined;
|
4166
|
-
type: [string, ...string[]];
|
4166
|
+
type: string | [string, ...string[]];
|
4167
4167
|
} | undefined;
|
4168
4168
|
otherIdentifier?: {
|
4169
|
-
type: [string, ...string[]];
|
4169
|
+
type: string | [string, ...string[]];
|
4170
4170
|
identifier: string;
|
4171
4171
|
identifierType: string;
|
4172
4172
|
}[] | undefined;
|
@@ -4282,14 +4282,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4282
4282
|
postOfficeBoxNumber?: string | undefined;
|
4283
4283
|
postalCode?: string | undefined;
|
4284
4284
|
geo?: {
|
4285
|
-
type: [string, ...string[]];
|
4285
|
+
type: string | [string, ...string[]];
|
4286
4286
|
latitude: number;
|
4287
4287
|
longitude: number;
|
4288
4288
|
} | undefined;
|
4289
|
-
type: [string, ...string[]];
|
4289
|
+
type: string | [string, ...string[]];
|
4290
4290
|
} | undefined;
|
4291
4291
|
otherIdentifier?: {
|
4292
|
-
type: [string, ...string[]];
|
4292
|
+
type: string | [string, ...string[]];
|
4293
4293
|
identifier: string;
|
4294
4294
|
identifierType: string;
|
4295
4295
|
}[] | undefined;
|
@@ -4316,7 +4316,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4316
4316
|
hashed: boolean;
|
4317
4317
|
identityHash: string;
|
4318
4318
|
identityType: string;
|
4319
|
-
} | undefined;
|
4319
|
+
}[] | undefined;
|
4320
4320
|
image?: string | {
|
4321
4321
|
caption?: string | undefined;
|
4322
4322
|
type: string;
|
@@ -4392,14 +4392,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4392
4392
|
postOfficeBoxNumber?: string | undefined;
|
4393
4393
|
postalCode?: string | undefined;
|
4394
4394
|
geo?: {
|
4395
|
-
type: [string, ...string[]];
|
4395
|
+
type: string | [string, ...string[]];
|
4396
4396
|
latitude: number;
|
4397
4397
|
longitude: number;
|
4398
4398
|
} | undefined;
|
4399
|
-
type: [string, ...string[]];
|
4399
|
+
type: string | [string, ...string[]];
|
4400
4400
|
} | undefined;
|
4401
4401
|
otherIdentifier?: {
|
4402
|
-
type: [string, ...string[]];
|
4402
|
+
type: string | [string, ...string[]];
|
4403
4403
|
identifier: string;
|
4404
4404
|
identifierType: string;
|
4405
4405
|
}[] | undefined;
|
@@ -4427,7 +4427,7 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4427
4427
|
id: string;
|
4428
4428
|
} | undefined;
|
4429
4429
|
otherIdentifier?: {
|
4430
|
-
type: [string, ...string[]];
|
4430
|
+
type: string | [string, ...string[]];
|
4431
4431
|
identifier: string;
|
4432
4432
|
identifierType: string;
|
4433
4433
|
}[] | undefined;
|
@@ -4467,14 +4467,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4467
4467
|
postOfficeBoxNumber?: string | undefined;
|
4468
4468
|
postalCode?: string | undefined;
|
4469
4469
|
geo?: {
|
4470
|
-
type: [string, ...string[]];
|
4470
|
+
type: string | [string, ...string[]];
|
4471
4471
|
latitude: number;
|
4472
4472
|
longitude: number;
|
4473
4473
|
} | undefined;
|
4474
|
-
type: [string, ...string[]];
|
4474
|
+
type: string | [string, ...string[]];
|
4475
4475
|
} | undefined;
|
4476
4476
|
otherIdentifier?: {
|
4477
|
-
type: [string, ...string[]];
|
4477
|
+
type: string | [string, ...string[]];
|
4478
4478
|
identifier: string;
|
4479
4479
|
identifierType: string;
|
4480
4480
|
}[] | undefined;
|
@@ -4590,14 +4590,14 @@ export declare const AchievementSubjectValidator: z.ZodObject<{
|
|
4590
4590
|
postOfficeBoxNumber?: string | undefined;
|
4591
4591
|
postalCode?: string | undefined;
|
4592
4592
|
geo?: {
|
4593
|
-
type: [string, ...string[]];
|
4593
|
+
type: string | [string, ...string[]];
|
4594
4594
|
latitude: number;
|
4595
4595
|
longitude: number;
|
4596
4596
|
} | undefined;
|
4597
|
-
type: [string, ...string[]];
|
4597
|
+
type: string | [string, ...string[]];
|
4598
4598
|
} | undefined;
|
4599
4599
|
otherIdentifier?: {
|
4600
|
-
type: [string, ...string[]];
|
4600
|
+
type: string | [string, ...string[]];
|
4601
4601
|
identifier: string;
|
4602
4602
|
identifierType: string;
|
4603
4603
|
}[] | undefined;
|
@@ -4671,7 +4671,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4671
4671
|
}>]>>;
|
4672
4672
|
email: z.ZodOptional<z.ZodString>;
|
4673
4673
|
address: z.ZodOptional<z.ZodObject<{
|
4674
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
4674
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
4675
4675
|
addressCountry: z.ZodOptional<z.ZodString>;
|
4676
4676
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
4677
4677
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -4680,15 +4680,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4680
4680
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
4681
4681
|
postalCode: z.ZodOptional<z.ZodString>;
|
4682
4682
|
geo: z.ZodOptional<z.ZodObject<{
|
4683
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
4683
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
4684
4684
|
latitude: z.ZodNumber;
|
4685
4685
|
longitude: z.ZodNumber;
|
4686
4686
|
}, "strip", z.ZodTypeAny, {
|
4687
|
-
type: [string, ...string[]];
|
4687
|
+
type: string | [string, ...string[]];
|
4688
4688
|
latitude: number;
|
4689
4689
|
longitude: number;
|
4690
4690
|
}, {
|
4691
|
-
type: [string, ...string[]];
|
4691
|
+
type: string | [string, ...string[]];
|
4692
4692
|
latitude: number;
|
4693
4693
|
longitude: number;
|
4694
4694
|
}>>;
|
@@ -4701,11 +4701,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4701
4701
|
postOfficeBoxNumber?: string | undefined;
|
4702
4702
|
postalCode?: string | undefined;
|
4703
4703
|
geo?: {
|
4704
|
-
type: [string, ...string[]];
|
4704
|
+
type: string | [string, ...string[]];
|
4705
4705
|
latitude: number;
|
4706
4706
|
longitude: number;
|
4707
4707
|
} | undefined;
|
4708
|
-
type: [string, ...string[]];
|
4708
|
+
type: string | [string, ...string[]];
|
4709
4709
|
}, {
|
4710
4710
|
addressCountry?: string | undefined;
|
4711
4711
|
addressCountryCode?: string | undefined;
|
@@ -4715,22 +4715,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4715
4715
|
postOfficeBoxNumber?: string | undefined;
|
4716
4716
|
postalCode?: string | undefined;
|
4717
4717
|
geo?: {
|
4718
|
-
type: [string, ...string[]];
|
4718
|
+
type: string | [string, ...string[]];
|
4719
4719
|
latitude: number;
|
4720
4720
|
longitude: number;
|
4721
4721
|
} | undefined;
|
4722
|
-
type: [string, ...string[]];
|
4722
|
+
type: string | [string, ...string[]];
|
4723
4723
|
}>>;
|
4724
4724
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
4725
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
4725
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
4726
4726
|
identifier: z.ZodString;
|
4727
4727
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
4728
4728
|
}, "strip", z.ZodTypeAny, {
|
4729
|
-
type: [string, ...string[]];
|
4729
|
+
type: string | [string, ...string[]];
|
4730
4730
|
identifier: string;
|
4731
4731
|
identifierType: string;
|
4732
4732
|
}, {
|
4733
|
-
type: [string, ...string[]];
|
4733
|
+
type: string | [string, ...string[]];
|
4734
4734
|
identifier: string;
|
4735
4735
|
identifierType: string;
|
4736
4736
|
}>, "many">>;
|
@@ -4768,14 +4768,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4768
4768
|
postOfficeBoxNumber?: string | undefined;
|
4769
4769
|
postalCode?: string | undefined;
|
4770
4770
|
geo?: {
|
4771
|
-
type: [string, ...string[]];
|
4771
|
+
type: string | [string, ...string[]];
|
4772
4772
|
latitude: number;
|
4773
4773
|
longitude: number;
|
4774
4774
|
} | undefined;
|
4775
|
-
type: [string, ...string[]];
|
4775
|
+
type: string | [string, ...string[]];
|
4776
4776
|
} | undefined;
|
4777
4777
|
otherIdentifier?: {
|
4778
|
-
type: [string, ...string[]];
|
4778
|
+
type: string | [string, ...string[]];
|
4779
4779
|
identifier: string;
|
4780
4780
|
identifierType: string;
|
4781
4781
|
}[] | undefined;
|
@@ -4813,14 +4813,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4813
4813
|
postOfficeBoxNumber?: string | undefined;
|
4814
4814
|
postalCode?: string | undefined;
|
4815
4815
|
geo?: {
|
4816
|
-
type: [string, ...string[]];
|
4816
|
+
type: string | [string, ...string[]];
|
4817
4817
|
latitude: number;
|
4818
4818
|
longitude: number;
|
4819
4819
|
} | undefined;
|
4820
|
-
type: [string, ...string[]];
|
4820
|
+
type: string | [string, ...string[]];
|
4821
4821
|
} | undefined;
|
4822
4822
|
otherIdentifier?: {
|
4823
|
-
type: [string, ...string[]];
|
4823
|
+
type: string | [string, ...string[]];
|
4824
4824
|
identifier: string;
|
4825
4825
|
identifierType: string;
|
4826
4826
|
}[] | undefined;
|
@@ -4889,7 +4889,19 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4889
4889
|
}, {
|
4890
4890
|
name: z.ZodOptional<z.ZodString>;
|
4891
4891
|
description: z.ZodOptional<z.ZodString>;
|
4892
|
-
image: z.ZodOptional<z.ZodString
|
4892
|
+
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
4893
|
+
id: z.ZodString;
|
4894
|
+
type: z.ZodString;
|
4895
|
+
caption: z.ZodOptional<z.ZodString>;
|
4896
|
+
}, "strip", z.ZodTypeAny, {
|
4897
|
+
caption?: string | undefined;
|
4898
|
+
type: string;
|
4899
|
+
id: string;
|
4900
|
+
}, {
|
4901
|
+
caption?: string | undefined;
|
4902
|
+
type: string;
|
4903
|
+
id: string;
|
4904
|
+
}>]>>;
|
4893
4905
|
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
4894
4906
|
id: z.ZodOptional<z.ZodString>;
|
4895
4907
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -4948,7 +4960,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4948
4960
|
}>]>>;
|
4949
4961
|
email: z.ZodOptional<z.ZodString>;
|
4950
4962
|
address: z.ZodOptional<z.ZodObject<{
|
4951
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
4963
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
4952
4964
|
addressCountry: z.ZodOptional<z.ZodString>;
|
4953
4965
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
4954
4966
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -4957,15 +4969,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4957
4969
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
4958
4970
|
postalCode: z.ZodOptional<z.ZodString>;
|
4959
4971
|
geo: z.ZodOptional<z.ZodObject<{
|
4960
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
4972
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
4961
4973
|
latitude: z.ZodNumber;
|
4962
4974
|
longitude: z.ZodNumber;
|
4963
4975
|
}, "strip", z.ZodTypeAny, {
|
4964
|
-
type: [string, ...string[]];
|
4976
|
+
type: string | [string, ...string[]];
|
4965
4977
|
latitude: number;
|
4966
4978
|
longitude: number;
|
4967
4979
|
}, {
|
4968
|
-
type: [string, ...string[]];
|
4980
|
+
type: string | [string, ...string[]];
|
4969
4981
|
latitude: number;
|
4970
4982
|
longitude: number;
|
4971
4983
|
}>>;
|
@@ -4978,11 +4990,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4978
4990
|
postOfficeBoxNumber?: string | undefined;
|
4979
4991
|
postalCode?: string | undefined;
|
4980
4992
|
geo?: {
|
4981
|
-
type: [string, ...string[]];
|
4993
|
+
type: string | [string, ...string[]];
|
4982
4994
|
latitude: number;
|
4983
4995
|
longitude: number;
|
4984
4996
|
} | undefined;
|
4985
|
-
type: [string, ...string[]];
|
4997
|
+
type: string | [string, ...string[]];
|
4986
4998
|
}, {
|
4987
4999
|
addressCountry?: string | undefined;
|
4988
5000
|
addressCountryCode?: string | undefined;
|
@@ -4992,22 +5004,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
4992
5004
|
postOfficeBoxNumber?: string | undefined;
|
4993
5005
|
postalCode?: string | undefined;
|
4994
5006
|
geo?: {
|
4995
|
-
type: [string, ...string[]];
|
5007
|
+
type: string | [string, ...string[]];
|
4996
5008
|
latitude: number;
|
4997
5009
|
longitude: number;
|
4998
5010
|
} | undefined;
|
4999
|
-
type: [string, ...string[]];
|
5011
|
+
type: string | [string, ...string[]];
|
5000
5012
|
}>>;
|
5001
5013
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5002
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
5014
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
5003
5015
|
identifier: z.ZodString;
|
5004
5016
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
5005
5017
|
}, "strip", z.ZodTypeAny, {
|
5006
|
-
type: [string, ...string[]];
|
5018
|
+
type: string | [string, ...string[]];
|
5007
5019
|
identifier: string;
|
5008
5020
|
identifierType: string;
|
5009
5021
|
}, {
|
5010
|
-
type: [string, ...string[]];
|
5022
|
+
type: string | [string, ...string[]];
|
5011
5023
|
identifier: string;
|
5012
5024
|
identifierType: string;
|
5013
5025
|
}>, "many">>;
|
@@ -5045,14 +5057,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5045
5057
|
postOfficeBoxNumber?: string | undefined;
|
5046
5058
|
postalCode?: string | undefined;
|
5047
5059
|
geo?: {
|
5048
|
-
type: [string, ...string[]];
|
5060
|
+
type: string | [string, ...string[]];
|
5049
5061
|
latitude: number;
|
5050
5062
|
longitude: number;
|
5051
5063
|
} | undefined;
|
5052
|
-
type: [string, ...string[]];
|
5064
|
+
type: string | [string, ...string[]];
|
5053
5065
|
} | undefined;
|
5054
5066
|
otherIdentifier?: {
|
5055
|
-
type: [string, ...string[]];
|
5067
|
+
type: string | [string, ...string[]];
|
5056
5068
|
identifier: string;
|
5057
5069
|
identifierType: string;
|
5058
5070
|
}[] | undefined;
|
@@ -5090,14 +5102,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5090
5102
|
postOfficeBoxNumber?: string | undefined;
|
5091
5103
|
postalCode?: string | undefined;
|
5092
5104
|
geo?: {
|
5093
|
-
type: [string, ...string[]];
|
5105
|
+
type: string | [string, ...string[]];
|
5094
5106
|
latitude: number;
|
5095
5107
|
longitude: number;
|
5096
5108
|
} | undefined;
|
5097
|
-
type: [string, ...string[]];
|
5109
|
+
type: string | [string, ...string[]];
|
5098
5110
|
} | undefined;
|
5099
5111
|
otherIdentifier?: {
|
5100
|
-
type: [string, ...string[]];
|
5112
|
+
type: string | [string, ...string[]];
|
5101
5113
|
identifier: string;
|
5102
5114
|
identifierType: string;
|
5103
5115
|
}[] | undefined;
|
@@ -5153,7 +5165,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5153
5165
|
}>]>>;
|
5154
5166
|
email: z.ZodOptional<z.ZodString>;
|
5155
5167
|
address: z.ZodOptional<z.ZodObject<{
|
5156
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
5168
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
5157
5169
|
addressCountry: z.ZodOptional<z.ZodString>;
|
5158
5170
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
5159
5171
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -5162,15 +5174,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5162
5174
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
5163
5175
|
postalCode: z.ZodOptional<z.ZodString>;
|
5164
5176
|
geo: z.ZodOptional<z.ZodObject<{
|
5165
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
5177
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
5166
5178
|
latitude: z.ZodNumber;
|
5167
5179
|
longitude: z.ZodNumber;
|
5168
5180
|
}, "strip", z.ZodTypeAny, {
|
5169
|
-
type: [string, ...string[]];
|
5181
|
+
type: string | [string, ...string[]];
|
5170
5182
|
latitude: number;
|
5171
5183
|
longitude: number;
|
5172
5184
|
}, {
|
5173
|
-
type: [string, ...string[]];
|
5185
|
+
type: string | [string, ...string[]];
|
5174
5186
|
latitude: number;
|
5175
5187
|
longitude: number;
|
5176
5188
|
}>>;
|
@@ -5183,11 +5195,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5183
5195
|
postOfficeBoxNumber?: string | undefined;
|
5184
5196
|
postalCode?: string | undefined;
|
5185
5197
|
geo?: {
|
5186
|
-
type: [string, ...string[]];
|
5198
|
+
type: string | [string, ...string[]];
|
5187
5199
|
latitude: number;
|
5188
5200
|
longitude: number;
|
5189
5201
|
} | undefined;
|
5190
|
-
type: [string, ...string[]];
|
5202
|
+
type: string | [string, ...string[]];
|
5191
5203
|
}, {
|
5192
5204
|
addressCountry?: string | undefined;
|
5193
5205
|
addressCountryCode?: string | undefined;
|
@@ -5197,22 +5209,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5197
5209
|
postOfficeBoxNumber?: string | undefined;
|
5198
5210
|
postalCode?: string | undefined;
|
5199
5211
|
geo?: {
|
5200
|
-
type: [string, ...string[]];
|
5212
|
+
type: string | [string, ...string[]];
|
5201
5213
|
latitude: number;
|
5202
5214
|
longitude: number;
|
5203
5215
|
} | undefined;
|
5204
|
-
type: [string, ...string[]];
|
5216
|
+
type: string | [string, ...string[]];
|
5205
5217
|
}>>;
|
5206
5218
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5207
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
5219
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
5208
5220
|
identifier: z.ZodString;
|
5209
5221
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
5210
5222
|
}, "strip", z.ZodTypeAny, {
|
5211
|
-
type: [string, ...string[]];
|
5223
|
+
type: string | [string, ...string[]];
|
5212
5224
|
identifier: string;
|
5213
5225
|
identifierType: string;
|
5214
5226
|
}, {
|
5215
|
-
type: [string, ...string[]];
|
5227
|
+
type: string | [string, ...string[]];
|
5216
5228
|
identifier: string;
|
5217
5229
|
identifierType: string;
|
5218
5230
|
}>, "many">>;
|
@@ -5250,14 +5262,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5250
5262
|
postOfficeBoxNumber?: string | undefined;
|
5251
5263
|
postalCode?: string | undefined;
|
5252
5264
|
geo?: {
|
5253
|
-
type: [string, ...string[]];
|
5265
|
+
type: string | [string, ...string[]];
|
5254
5266
|
latitude: number;
|
5255
5267
|
longitude: number;
|
5256
5268
|
} | undefined;
|
5257
|
-
type: [string, ...string[]];
|
5269
|
+
type: string | [string, ...string[]];
|
5258
5270
|
} | undefined;
|
5259
5271
|
otherIdentifier?: {
|
5260
|
-
type: [string, ...string[]];
|
5272
|
+
type: string | [string, ...string[]];
|
5261
5273
|
identifier: string;
|
5262
5274
|
identifierType: string;
|
5263
5275
|
}[] | undefined;
|
@@ -5295,14 +5307,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5295
5307
|
postOfficeBoxNumber?: string | undefined;
|
5296
5308
|
postalCode?: string | undefined;
|
5297
5309
|
geo?: {
|
5298
|
-
type: [string, ...string[]];
|
5310
|
+
type: string | [string, ...string[]];
|
5299
5311
|
latitude: number;
|
5300
5312
|
longitude: number;
|
5301
5313
|
} | undefined;
|
5302
|
-
type: [string, ...string[]];
|
5314
|
+
type: string | [string, ...string[]];
|
5303
5315
|
} | undefined;
|
5304
5316
|
otherIdentifier?: {
|
5305
|
-
type: [string, ...string[]];
|
5317
|
+
type: string | [string, ...string[]];
|
5306
5318
|
identifier: string;
|
5307
5319
|
identifierType: string;
|
5308
5320
|
}[] | undefined;
|
@@ -5505,14 +5517,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5505
5517
|
postOfficeBoxNumber?: string | undefined;
|
5506
5518
|
postalCode?: string | undefined;
|
5507
5519
|
geo?: {
|
5508
|
-
type: [string, ...string[]];
|
5520
|
+
type: string | [string, ...string[]];
|
5509
5521
|
latitude: number;
|
5510
5522
|
longitude: number;
|
5511
5523
|
} | undefined;
|
5512
|
-
type: [string, ...string[]];
|
5524
|
+
type: string | [string, ...string[]];
|
5513
5525
|
} | undefined;
|
5514
5526
|
otherIdentifier?: {
|
5515
|
-
type: [string, ...string[]];
|
5527
|
+
type: string | [string, ...string[]];
|
5516
5528
|
identifier: string;
|
5517
5529
|
identifierType: string;
|
5518
5530
|
}[] | undefined;
|
@@ -5597,14 +5609,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5597
5609
|
postOfficeBoxNumber?: string | undefined;
|
5598
5610
|
postalCode?: string | undefined;
|
5599
5611
|
geo?: {
|
5600
|
-
type: [string, ...string[]];
|
5612
|
+
type: string | [string, ...string[]];
|
5601
5613
|
latitude: number;
|
5602
5614
|
longitude: number;
|
5603
5615
|
} | undefined;
|
5604
|
-
type: [string, ...string[]];
|
5616
|
+
type: string | [string, ...string[]];
|
5605
5617
|
} | undefined;
|
5606
5618
|
otherIdentifier?: {
|
5607
|
-
type: [string, ...string[]];
|
5619
|
+
type: string | [string, ...string[]];
|
5608
5620
|
identifier: string;
|
5609
5621
|
identifierType: string;
|
5610
5622
|
}[] | undefined;
|
@@ -5644,15 +5656,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5644
5656
|
'@language': z.ZodOptional<z.ZodString>;
|
5645
5657
|
name: z.ZodString;
|
5646
5658
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
5647
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
5659
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
5648
5660
|
identifier: z.ZodString;
|
5649
5661
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
5650
5662
|
}, "strip", z.ZodTypeAny, {
|
5651
|
-
type: [string, ...string[]];
|
5663
|
+
type: string | [string, ...string[]];
|
5652
5664
|
identifier: string;
|
5653
5665
|
identifierType: string;
|
5654
5666
|
}, {
|
5655
|
-
type: [string, ...string[]];
|
5667
|
+
type: string | [string, ...string[]];
|
5656
5668
|
identifier: string;
|
5657
5669
|
identifierType: string;
|
5658
5670
|
}>, "many">>;
|
@@ -5918,14 +5930,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5918
5930
|
postOfficeBoxNumber?: string | undefined;
|
5919
5931
|
postalCode?: string | undefined;
|
5920
5932
|
geo?: {
|
5921
|
-
type: [string, ...string[]];
|
5933
|
+
type: string | [string, ...string[]];
|
5922
5934
|
latitude: number;
|
5923
5935
|
longitude: number;
|
5924
5936
|
} | undefined;
|
5925
|
-
type: [string, ...string[]];
|
5937
|
+
type: string | [string, ...string[]];
|
5926
5938
|
} | undefined;
|
5927
5939
|
otherIdentifier?: {
|
5928
|
-
type: [string, ...string[]];
|
5940
|
+
type: string | [string, ...string[]];
|
5929
5941
|
identifier: string;
|
5930
5942
|
identifierType: string;
|
5931
5943
|
}[] | undefined;
|
@@ -5953,7 +5965,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5953
5965
|
id: string;
|
5954
5966
|
} | undefined;
|
5955
5967
|
otherIdentifier?: {
|
5956
|
-
type: [string, ...string[]];
|
5968
|
+
type: string | [string, ...string[]];
|
5957
5969
|
identifier: string;
|
5958
5970
|
identifierType: string;
|
5959
5971
|
}[] | undefined;
|
@@ -5993,14 +6005,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
5993
6005
|
postOfficeBoxNumber?: string | undefined;
|
5994
6006
|
postalCode?: string | undefined;
|
5995
6007
|
geo?: {
|
5996
|
-
type: [string, ...string[]];
|
6008
|
+
type: string | [string, ...string[]];
|
5997
6009
|
latitude: number;
|
5998
6010
|
longitude: number;
|
5999
6011
|
} | undefined;
|
6000
|
-
type: [string, ...string[]];
|
6012
|
+
type: string | [string, ...string[]];
|
6001
6013
|
} | undefined;
|
6002
6014
|
otherIdentifier?: {
|
6003
|
-
type: [string, ...string[]];
|
6015
|
+
type: string | [string, ...string[]];
|
6004
6016
|
identifier: string;
|
6005
6017
|
identifierType: string;
|
6006
6018
|
}[] | undefined;
|
@@ -6139,14 +6151,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6139
6151
|
postOfficeBoxNumber?: string | undefined;
|
6140
6152
|
postalCode?: string | undefined;
|
6141
6153
|
geo?: {
|
6142
|
-
type: [string, ...string[]];
|
6154
|
+
type: string | [string, ...string[]];
|
6143
6155
|
latitude: number;
|
6144
6156
|
longitude: number;
|
6145
6157
|
} | undefined;
|
6146
|
-
type: [string, ...string[]];
|
6158
|
+
type: string | [string, ...string[]];
|
6147
6159
|
} | undefined;
|
6148
6160
|
otherIdentifier?: {
|
6149
|
-
type: [string, ...string[]];
|
6161
|
+
type: string | [string, ...string[]];
|
6150
6162
|
identifier: string;
|
6151
6163
|
identifierType: string;
|
6152
6164
|
}[] | undefined;
|
@@ -6174,7 +6186,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6174
6186
|
id: string;
|
6175
6187
|
} | undefined;
|
6176
6188
|
otherIdentifier?: {
|
6177
|
-
type: [string, ...string[]];
|
6189
|
+
type: string | [string, ...string[]];
|
6178
6190
|
identifier: string;
|
6179
6191
|
identifierType: string;
|
6180
6192
|
}[] | undefined;
|
@@ -6214,14 +6226,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6214
6226
|
postOfficeBoxNumber?: string | undefined;
|
6215
6227
|
postalCode?: string | undefined;
|
6216
6228
|
geo?: {
|
6217
|
-
type: [string, ...string[]];
|
6229
|
+
type: string | [string, ...string[]];
|
6218
6230
|
latitude: number;
|
6219
6231
|
longitude: number;
|
6220
6232
|
} | undefined;
|
6221
|
-
type: [string, ...string[]];
|
6233
|
+
type: string | [string, ...string[]];
|
6222
6234
|
} | undefined;
|
6223
6235
|
otherIdentifier?: {
|
6224
|
-
type: [string, ...string[]];
|
6236
|
+
type: string | [string, ...string[]];
|
6225
6237
|
identifier: string;
|
6226
6238
|
identifierType: string;
|
6227
6239
|
}[] | undefined;
|
@@ -6294,7 +6306,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6294
6306
|
id?: string | undefined;
|
6295
6307
|
};
|
6296
6308
|
}>>;
|
6297
|
-
identifier: z.ZodOptional<z.ZodObject<{
|
6309
|
+
identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
6298
6310
|
type: z.ZodString;
|
6299
6311
|
hashed: z.ZodBoolean;
|
6300
6312
|
identityHash: z.ZodString;
|
@@ -6312,7 +6324,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6312
6324
|
hashed: boolean;
|
6313
6325
|
identityHash: string;
|
6314
6326
|
identityType: string;
|
6315
|
-
}>>;
|
6327
|
+
}>, "many">>;
|
6316
6328
|
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
6317
6329
|
id: z.ZodString;
|
6318
6330
|
type: z.ZodString;
|
@@ -6416,7 +6428,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6416
6428
|
}>]>>;
|
6417
6429
|
email: z.ZodOptional<z.ZodString>;
|
6418
6430
|
address: z.ZodOptional<z.ZodObject<{
|
6419
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
6431
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
6420
6432
|
addressCountry: z.ZodOptional<z.ZodString>;
|
6421
6433
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
6422
6434
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -6425,15 +6437,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6425
6437
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
6426
6438
|
postalCode: z.ZodOptional<z.ZodString>;
|
6427
6439
|
geo: z.ZodOptional<z.ZodObject<{
|
6428
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
6440
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
6429
6441
|
latitude: z.ZodNumber;
|
6430
6442
|
longitude: z.ZodNumber;
|
6431
6443
|
}, "strip", z.ZodTypeAny, {
|
6432
|
-
type: [string, ...string[]];
|
6444
|
+
type: string | [string, ...string[]];
|
6433
6445
|
latitude: number;
|
6434
6446
|
longitude: number;
|
6435
6447
|
}, {
|
6436
|
-
type: [string, ...string[]];
|
6448
|
+
type: string | [string, ...string[]];
|
6437
6449
|
latitude: number;
|
6438
6450
|
longitude: number;
|
6439
6451
|
}>>;
|
@@ -6446,11 +6458,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6446
6458
|
postOfficeBoxNumber?: string | undefined;
|
6447
6459
|
postalCode?: string | undefined;
|
6448
6460
|
geo?: {
|
6449
|
-
type: [string, ...string[]];
|
6461
|
+
type: string | [string, ...string[]];
|
6450
6462
|
latitude: number;
|
6451
6463
|
longitude: number;
|
6452
6464
|
} | undefined;
|
6453
|
-
type: [string, ...string[]];
|
6465
|
+
type: string | [string, ...string[]];
|
6454
6466
|
}, {
|
6455
6467
|
addressCountry?: string | undefined;
|
6456
6468
|
addressCountryCode?: string | undefined;
|
@@ -6460,22 +6472,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6460
6472
|
postOfficeBoxNumber?: string | undefined;
|
6461
6473
|
postalCode?: string | undefined;
|
6462
6474
|
geo?: {
|
6463
|
-
type: [string, ...string[]];
|
6475
|
+
type: string | [string, ...string[]];
|
6464
6476
|
latitude: number;
|
6465
6477
|
longitude: number;
|
6466
6478
|
} | undefined;
|
6467
|
-
type: [string, ...string[]];
|
6479
|
+
type: string | [string, ...string[]];
|
6468
6480
|
}>>;
|
6469
6481
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
6470
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
6482
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
6471
6483
|
identifier: z.ZodString;
|
6472
6484
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
6473
6485
|
}, "strip", z.ZodTypeAny, {
|
6474
|
-
type: [string, ...string[]];
|
6486
|
+
type: string | [string, ...string[]];
|
6475
6487
|
identifier: string;
|
6476
6488
|
identifierType: string;
|
6477
6489
|
}, {
|
6478
|
-
type: [string, ...string[]];
|
6490
|
+
type: string | [string, ...string[]];
|
6479
6491
|
identifier: string;
|
6480
6492
|
identifierType: string;
|
6481
6493
|
}>, "many">>;
|
@@ -6513,14 +6525,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6513
6525
|
postOfficeBoxNumber?: string | undefined;
|
6514
6526
|
postalCode?: string | undefined;
|
6515
6527
|
geo?: {
|
6516
|
-
type: [string, ...string[]];
|
6528
|
+
type: string | [string, ...string[]];
|
6517
6529
|
latitude: number;
|
6518
6530
|
longitude: number;
|
6519
6531
|
} | undefined;
|
6520
|
-
type: [string, ...string[]];
|
6532
|
+
type: string | [string, ...string[]];
|
6521
6533
|
} | undefined;
|
6522
6534
|
otherIdentifier?: {
|
6523
|
-
type: [string, ...string[]];
|
6535
|
+
type: string | [string, ...string[]];
|
6524
6536
|
identifier: string;
|
6525
6537
|
identifierType: string;
|
6526
6538
|
}[] | undefined;
|
@@ -6558,14 +6570,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6558
6570
|
postOfficeBoxNumber?: string | undefined;
|
6559
6571
|
postalCode?: string | undefined;
|
6560
6572
|
geo?: {
|
6561
|
-
type: [string, ...string[]];
|
6573
|
+
type: string | [string, ...string[]];
|
6562
6574
|
latitude: number;
|
6563
6575
|
longitude: number;
|
6564
6576
|
} | undefined;
|
6565
|
-
type: [string, ...string[]];
|
6577
|
+
type: string | [string, ...string[]];
|
6566
6578
|
} | undefined;
|
6567
6579
|
otherIdentifier?: {
|
6568
|
-
type: [string, ...string[]];
|
6580
|
+
type: string | [string, ...string[]];
|
6569
6581
|
identifier: string;
|
6570
6582
|
identifierType: string;
|
6571
6583
|
}[] | undefined;
|
@@ -6591,7 +6603,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6591
6603
|
hashed: boolean;
|
6592
6604
|
identityHash: string;
|
6593
6605
|
identityType: string;
|
6594
|
-
} | undefined;
|
6606
|
+
}[] | undefined;
|
6595
6607
|
image?: string | {
|
6596
6608
|
caption?: string | undefined;
|
6597
6609
|
type: string;
|
@@ -6667,14 +6679,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6667
6679
|
postOfficeBoxNumber?: string | undefined;
|
6668
6680
|
postalCode?: string | undefined;
|
6669
6681
|
geo?: {
|
6670
|
-
type: [string, ...string[]];
|
6682
|
+
type: string | [string, ...string[]];
|
6671
6683
|
latitude: number;
|
6672
6684
|
longitude: number;
|
6673
6685
|
} | undefined;
|
6674
|
-
type: [string, ...string[]];
|
6686
|
+
type: string | [string, ...string[]];
|
6675
6687
|
} | undefined;
|
6676
6688
|
otherIdentifier?: {
|
6677
|
-
type: [string, ...string[]];
|
6689
|
+
type: string | [string, ...string[]];
|
6678
6690
|
identifier: string;
|
6679
6691
|
identifierType: string;
|
6680
6692
|
}[] | undefined;
|
@@ -6702,7 +6714,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6702
6714
|
id: string;
|
6703
6715
|
} | undefined;
|
6704
6716
|
otherIdentifier?: {
|
6705
|
-
type: [string, ...string[]];
|
6717
|
+
type: string | [string, ...string[]];
|
6706
6718
|
identifier: string;
|
6707
6719
|
identifierType: string;
|
6708
6720
|
}[] | undefined;
|
@@ -6742,14 +6754,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6742
6754
|
postOfficeBoxNumber?: string | undefined;
|
6743
6755
|
postalCode?: string | undefined;
|
6744
6756
|
geo?: {
|
6745
|
-
type: [string, ...string[]];
|
6757
|
+
type: string | [string, ...string[]];
|
6746
6758
|
latitude: number;
|
6747
6759
|
longitude: number;
|
6748
6760
|
} | undefined;
|
6749
|
-
type: [string, ...string[]];
|
6761
|
+
type: string | [string, ...string[]];
|
6750
6762
|
} | undefined;
|
6751
6763
|
otherIdentifier?: {
|
6752
|
-
type: [string, ...string[]];
|
6764
|
+
type: string | [string, ...string[]];
|
6753
6765
|
identifier: string;
|
6754
6766
|
identifierType: string;
|
6755
6767
|
}[] | undefined;
|
@@ -6865,14 +6877,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6865
6877
|
postOfficeBoxNumber?: string | undefined;
|
6866
6878
|
postalCode?: string | undefined;
|
6867
6879
|
geo?: {
|
6868
|
-
type: [string, ...string[]];
|
6880
|
+
type: string | [string, ...string[]];
|
6869
6881
|
latitude: number;
|
6870
6882
|
longitude: number;
|
6871
6883
|
} | undefined;
|
6872
|
-
type: [string, ...string[]];
|
6884
|
+
type: string | [string, ...string[]];
|
6873
6885
|
} | undefined;
|
6874
6886
|
otherIdentifier?: {
|
6875
|
-
type: [string, ...string[]];
|
6887
|
+
type: string | [string, ...string[]];
|
6876
6888
|
identifier: string;
|
6877
6889
|
identifierType: string;
|
6878
6890
|
}[] | undefined;
|
@@ -6899,7 +6911,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6899
6911
|
hashed: boolean;
|
6900
6912
|
identityHash: string;
|
6901
6913
|
identityType: string;
|
6902
|
-
} | undefined;
|
6914
|
+
}[] | undefined;
|
6903
6915
|
image?: string | {
|
6904
6916
|
caption?: string | undefined;
|
6905
6917
|
type: string;
|
@@ -6975,14 +6987,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
6975
6987
|
postOfficeBoxNumber?: string | undefined;
|
6976
6988
|
postalCode?: string | undefined;
|
6977
6989
|
geo?: {
|
6978
|
-
type: [string, ...string[]];
|
6990
|
+
type: string | [string, ...string[]];
|
6979
6991
|
latitude: number;
|
6980
6992
|
longitude: number;
|
6981
6993
|
} | undefined;
|
6982
|
-
type: [string, ...string[]];
|
6994
|
+
type: string | [string, ...string[]];
|
6983
6995
|
} | undefined;
|
6984
6996
|
otherIdentifier?: {
|
6985
|
-
type: [string, ...string[]];
|
6997
|
+
type: string | [string, ...string[]];
|
6986
6998
|
identifier: string;
|
6987
6999
|
identifierType: string;
|
6988
7000
|
}[] | undefined;
|
@@ -7010,7 +7022,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7010
7022
|
id: string;
|
7011
7023
|
} | undefined;
|
7012
7024
|
otherIdentifier?: {
|
7013
|
-
type: [string, ...string[]];
|
7025
|
+
type: string | [string, ...string[]];
|
7014
7026
|
identifier: string;
|
7015
7027
|
identifierType: string;
|
7016
7028
|
}[] | undefined;
|
@@ -7050,14 +7062,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7050
7062
|
postOfficeBoxNumber?: string | undefined;
|
7051
7063
|
postalCode?: string | undefined;
|
7052
7064
|
geo?: {
|
7053
|
-
type: [string, ...string[]];
|
7065
|
+
type: string | [string, ...string[]];
|
7054
7066
|
latitude: number;
|
7055
7067
|
longitude: number;
|
7056
7068
|
} | undefined;
|
7057
|
-
type: [string, ...string[]];
|
7069
|
+
type: string | [string, ...string[]];
|
7058
7070
|
} | undefined;
|
7059
7071
|
otherIdentifier?: {
|
7060
|
-
type: [string, ...string[]];
|
7072
|
+
type: string | [string, ...string[]];
|
7061
7073
|
identifier: string;
|
7062
7074
|
identifierType: string;
|
7063
7075
|
}[] | undefined;
|
@@ -7173,14 +7185,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7173
7185
|
postOfficeBoxNumber?: string | undefined;
|
7174
7186
|
postalCode?: string | undefined;
|
7175
7187
|
geo?: {
|
7176
|
-
type: [string, ...string[]];
|
7188
|
+
type: string | [string, ...string[]];
|
7177
7189
|
latitude: number;
|
7178
7190
|
longitude: number;
|
7179
7191
|
} | undefined;
|
7180
|
-
type: [string, ...string[]];
|
7192
|
+
type: string | [string, ...string[]];
|
7181
7193
|
} | undefined;
|
7182
7194
|
otherIdentifier?: {
|
7183
|
-
type: [string, ...string[]];
|
7195
|
+
type: string | [string, ...string[]];
|
7184
7196
|
identifier: string;
|
7185
7197
|
identifierType: string;
|
7186
7198
|
}[] | undefined;
|
@@ -7255,7 +7267,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7255
7267
|
}>]>>;
|
7256
7268
|
email: z.ZodOptional<z.ZodString>;
|
7257
7269
|
address: z.ZodOptional<z.ZodObject<{
|
7258
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7270
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
7259
7271
|
addressCountry: z.ZodOptional<z.ZodString>;
|
7260
7272
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
7261
7273
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -7264,15 +7276,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7264
7276
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
7265
7277
|
postalCode: z.ZodOptional<z.ZodString>;
|
7266
7278
|
geo: z.ZodOptional<z.ZodObject<{
|
7267
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7279
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
7268
7280
|
latitude: z.ZodNumber;
|
7269
7281
|
longitude: z.ZodNumber;
|
7270
7282
|
}, "strip", z.ZodTypeAny, {
|
7271
|
-
type: [string, ...string[]];
|
7283
|
+
type: string | [string, ...string[]];
|
7272
7284
|
latitude: number;
|
7273
7285
|
longitude: number;
|
7274
7286
|
}, {
|
7275
|
-
type: [string, ...string[]];
|
7287
|
+
type: string | [string, ...string[]];
|
7276
7288
|
latitude: number;
|
7277
7289
|
longitude: number;
|
7278
7290
|
}>>;
|
@@ -7285,11 +7297,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7285
7297
|
postOfficeBoxNumber?: string | undefined;
|
7286
7298
|
postalCode?: string | undefined;
|
7287
7299
|
geo?: {
|
7288
|
-
type: [string, ...string[]];
|
7300
|
+
type: string | [string, ...string[]];
|
7289
7301
|
latitude: number;
|
7290
7302
|
longitude: number;
|
7291
7303
|
} | undefined;
|
7292
|
-
type: [string, ...string[]];
|
7304
|
+
type: string | [string, ...string[]];
|
7293
7305
|
}, {
|
7294
7306
|
addressCountry?: string | undefined;
|
7295
7307
|
addressCountryCode?: string | undefined;
|
@@ -7299,22 +7311,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7299
7311
|
postOfficeBoxNumber?: string | undefined;
|
7300
7312
|
postalCode?: string | undefined;
|
7301
7313
|
geo?: {
|
7302
|
-
type: [string, ...string[]];
|
7314
|
+
type: string | [string, ...string[]];
|
7303
7315
|
latitude: number;
|
7304
7316
|
longitude: number;
|
7305
7317
|
} | undefined;
|
7306
|
-
type: [string, ...string[]];
|
7318
|
+
type: string | [string, ...string[]];
|
7307
7319
|
}>>;
|
7308
7320
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7309
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7321
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
7310
7322
|
identifier: z.ZodString;
|
7311
7323
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
7312
7324
|
}, "strip", z.ZodTypeAny, {
|
7313
|
-
type: [string, ...string[]];
|
7325
|
+
type: string | [string, ...string[]];
|
7314
7326
|
identifier: string;
|
7315
7327
|
identifierType: string;
|
7316
7328
|
}, {
|
7317
|
-
type: [string, ...string[]];
|
7329
|
+
type: string | [string, ...string[]];
|
7318
7330
|
identifier: string;
|
7319
7331
|
identifierType: string;
|
7320
7332
|
}>, "many">>;
|
@@ -7352,14 +7364,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7352
7364
|
postOfficeBoxNumber?: string | undefined;
|
7353
7365
|
postalCode?: string | undefined;
|
7354
7366
|
geo?: {
|
7355
|
-
type: [string, ...string[]];
|
7367
|
+
type: string | [string, ...string[]];
|
7356
7368
|
latitude: number;
|
7357
7369
|
longitude: number;
|
7358
7370
|
} | undefined;
|
7359
|
-
type: [string, ...string[]];
|
7371
|
+
type: string | [string, ...string[]];
|
7360
7372
|
} | undefined;
|
7361
7373
|
otherIdentifier?: {
|
7362
|
-
type: [string, ...string[]];
|
7374
|
+
type: string | [string, ...string[]];
|
7363
7375
|
identifier: string;
|
7364
7376
|
identifierType: string;
|
7365
7377
|
}[] | undefined;
|
@@ -7397,14 +7409,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7397
7409
|
postOfficeBoxNumber?: string | undefined;
|
7398
7410
|
postalCode?: string | undefined;
|
7399
7411
|
geo?: {
|
7400
|
-
type: [string, ...string[]];
|
7412
|
+
type: string | [string, ...string[]];
|
7401
7413
|
latitude: number;
|
7402
7414
|
longitude: number;
|
7403
7415
|
} | undefined;
|
7404
|
-
type: [string, ...string[]];
|
7416
|
+
type: string | [string, ...string[]];
|
7405
7417
|
} | undefined;
|
7406
7418
|
otherIdentifier?: {
|
7407
|
-
type: [string, ...string[]];
|
7419
|
+
type: string | [string, ...string[]];
|
7408
7420
|
identifier: string;
|
7409
7421
|
identifierType: string;
|
7410
7422
|
}[] | undefined;
|
@@ -7460,7 +7472,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7460
7472
|
}>]>>;
|
7461
7473
|
email: z.ZodOptional<z.ZodString>;
|
7462
7474
|
address: z.ZodOptional<z.ZodObject<{
|
7463
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7475
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
7464
7476
|
addressCountry: z.ZodOptional<z.ZodString>;
|
7465
7477
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
7466
7478
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -7469,15 +7481,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7469
7481
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
7470
7482
|
postalCode: z.ZodOptional<z.ZodString>;
|
7471
7483
|
geo: z.ZodOptional<z.ZodObject<{
|
7472
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7484
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
7473
7485
|
latitude: z.ZodNumber;
|
7474
7486
|
longitude: z.ZodNumber;
|
7475
7487
|
}, "strip", z.ZodTypeAny, {
|
7476
|
-
type: [string, ...string[]];
|
7488
|
+
type: string | [string, ...string[]];
|
7477
7489
|
latitude: number;
|
7478
7490
|
longitude: number;
|
7479
7491
|
}, {
|
7480
|
-
type: [string, ...string[]];
|
7492
|
+
type: string | [string, ...string[]];
|
7481
7493
|
latitude: number;
|
7482
7494
|
longitude: number;
|
7483
7495
|
}>>;
|
@@ -7490,11 +7502,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7490
7502
|
postOfficeBoxNumber?: string | undefined;
|
7491
7503
|
postalCode?: string | undefined;
|
7492
7504
|
geo?: {
|
7493
|
-
type: [string, ...string[]];
|
7505
|
+
type: string | [string, ...string[]];
|
7494
7506
|
latitude: number;
|
7495
7507
|
longitude: number;
|
7496
7508
|
} | undefined;
|
7497
|
-
type: [string, ...string[]];
|
7509
|
+
type: string | [string, ...string[]];
|
7498
7510
|
}, {
|
7499
7511
|
addressCountry?: string | undefined;
|
7500
7512
|
addressCountryCode?: string | undefined;
|
@@ -7504,22 +7516,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7504
7516
|
postOfficeBoxNumber?: string | undefined;
|
7505
7517
|
postalCode?: string | undefined;
|
7506
7518
|
geo?: {
|
7507
|
-
type: [string, ...string[]];
|
7519
|
+
type: string | [string, ...string[]];
|
7508
7520
|
latitude: number;
|
7509
7521
|
longitude: number;
|
7510
7522
|
} | undefined;
|
7511
|
-
type: [string, ...string[]];
|
7523
|
+
type: string | [string, ...string[]];
|
7512
7524
|
}>>;
|
7513
7525
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7514
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7526
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
7515
7527
|
identifier: z.ZodString;
|
7516
7528
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
7517
7529
|
}, "strip", z.ZodTypeAny, {
|
7518
|
-
type: [string, ...string[]];
|
7530
|
+
type: string | [string, ...string[]];
|
7519
7531
|
identifier: string;
|
7520
7532
|
identifierType: string;
|
7521
7533
|
}, {
|
7522
|
-
type: [string, ...string[]];
|
7534
|
+
type: string | [string, ...string[]];
|
7523
7535
|
identifier: string;
|
7524
7536
|
identifierType: string;
|
7525
7537
|
}>, "many">>;
|
@@ -7557,14 +7569,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7557
7569
|
postOfficeBoxNumber?: string | undefined;
|
7558
7570
|
postalCode?: string | undefined;
|
7559
7571
|
geo?: {
|
7560
|
-
type: [string, ...string[]];
|
7572
|
+
type: string | [string, ...string[]];
|
7561
7573
|
latitude: number;
|
7562
7574
|
longitude: number;
|
7563
7575
|
} | undefined;
|
7564
|
-
type: [string, ...string[]];
|
7576
|
+
type: string | [string, ...string[]];
|
7565
7577
|
} | undefined;
|
7566
7578
|
otherIdentifier?: {
|
7567
|
-
type: [string, ...string[]];
|
7579
|
+
type: string | [string, ...string[]];
|
7568
7580
|
identifier: string;
|
7569
7581
|
identifierType: string;
|
7570
7582
|
}[] | undefined;
|
@@ -7602,14 +7614,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7602
7614
|
postOfficeBoxNumber?: string | undefined;
|
7603
7615
|
postalCode?: string | undefined;
|
7604
7616
|
geo?: {
|
7605
|
-
type: [string, ...string[]];
|
7617
|
+
type: string | [string, ...string[]];
|
7606
7618
|
latitude: number;
|
7607
7619
|
longitude: number;
|
7608
7620
|
} | undefined;
|
7609
|
-
type: [string, ...string[]];
|
7621
|
+
type: string | [string, ...string[]];
|
7610
7622
|
} | undefined;
|
7611
7623
|
otherIdentifier?: {
|
7612
|
-
type: [string, ...string[]];
|
7624
|
+
type: string | [string, ...string[]];
|
7613
7625
|
identifier: string;
|
7614
7626
|
identifierType: string;
|
7615
7627
|
}[] | undefined;
|
@@ -7812,14 +7824,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7812
7824
|
postOfficeBoxNumber?: string | undefined;
|
7813
7825
|
postalCode?: string | undefined;
|
7814
7826
|
geo?: {
|
7815
|
-
type: [string, ...string[]];
|
7827
|
+
type: string | [string, ...string[]];
|
7816
7828
|
latitude: number;
|
7817
7829
|
longitude: number;
|
7818
7830
|
} | undefined;
|
7819
|
-
type: [string, ...string[]];
|
7831
|
+
type: string | [string, ...string[]];
|
7820
7832
|
} | undefined;
|
7821
7833
|
otherIdentifier?: {
|
7822
|
-
type: [string, ...string[]];
|
7834
|
+
type: string | [string, ...string[]];
|
7823
7835
|
identifier: string;
|
7824
7836
|
identifierType: string;
|
7825
7837
|
}[] | undefined;
|
@@ -7904,14 +7916,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7904
7916
|
postOfficeBoxNumber?: string | undefined;
|
7905
7917
|
postalCode?: string | undefined;
|
7906
7918
|
geo?: {
|
7907
|
-
type: [string, ...string[]];
|
7919
|
+
type: string | [string, ...string[]];
|
7908
7920
|
latitude: number;
|
7909
7921
|
longitude: number;
|
7910
7922
|
} | undefined;
|
7911
|
-
type: [string, ...string[]];
|
7923
|
+
type: string | [string, ...string[]];
|
7912
7924
|
} | undefined;
|
7913
7925
|
otherIdentifier?: {
|
7914
|
-
type: [string, ...string[]];
|
7926
|
+
type: string | [string, ...string[]];
|
7915
7927
|
identifier: string;
|
7916
7928
|
identifierType: string;
|
7917
7929
|
}[] | undefined;
|
@@ -7951,15 +7963,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
7951
7963
|
'@language': z.ZodOptional<z.ZodString>;
|
7952
7964
|
name: z.ZodString;
|
7953
7965
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
7954
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
7966
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
7955
7967
|
identifier: z.ZodString;
|
7956
7968
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
7957
7969
|
}, "strip", z.ZodTypeAny, {
|
7958
|
-
type: [string, ...string[]];
|
7970
|
+
type: string | [string, ...string[]];
|
7959
7971
|
identifier: string;
|
7960
7972
|
identifierType: string;
|
7961
7973
|
}, {
|
7962
|
-
type: [string, ...string[]];
|
7974
|
+
type: string | [string, ...string[]];
|
7963
7975
|
identifier: string;
|
7964
7976
|
identifierType: string;
|
7965
7977
|
}>, "many">>;
|
@@ -8225,14 +8237,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8225
8237
|
postOfficeBoxNumber?: string | undefined;
|
8226
8238
|
postalCode?: string | undefined;
|
8227
8239
|
geo?: {
|
8228
|
-
type: [string, ...string[]];
|
8240
|
+
type: string | [string, ...string[]];
|
8229
8241
|
latitude: number;
|
8230
8242
|
longitude: number;
|
8231
8243
|
} | undefined;
|
8232
|
-
type: [string, ...string[]];
|
8244
|
+
type: string | [string, ...string[]];
|
8233
8245
|
} | undefined;
|
8234
8246
|
otherIdentifier?: {
|
8235
|
-
type: [string, ...string[]];
|
8247
|
+
type: string | [string, ...string[]];
|
8236
8248
|
identifier: string;
|
8237
8249
|
identifierType: string;
|
8238
8250
|
}[] | undefined;
|
@@ -8260,7 +8272,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8260
8272
|
id: string;
|
8261
8273
|
} | undefined;
|
8262
8274
|
otherIdentifier?: {
|
8263
|
-
type: [string, ...string[]];
|
8275
|
+
type: string | [string, ...string[]];
|
8264
8276
|
identifier: string;
|
8265
8277
|
identifierType: string;
|
8266
8278
|
}[] | undefined;
|
@@ -8300,14 +8312,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8300
8312
|
postOfficeBoxNumber?: string | undefined;
|
8301
8313
|
postalCode?: string | undefined;
|
8302
8314
|
geo?: {
|
8303
|
-
type: [string, ...string[]];
|
8315
|
+
type: string | [string, ...string[]];
|
8304
8316
|
latitude: number;
|
8305
8317
|
longitude: number;
|
8306
8318
|
} | undefined;
|
8307
|
-
type: [string, ...string[]];
|
8319
|
+
type: string | [string, ...string[]];
|
8308
8320
|
} | undefined;
|
8309
8321
|
otherIdentifier?: {
|
8310
|
-
type: [string, ...string[]];
|
8322
|
+
type: string | [string, ...string[]];
|
8311
8323
|
identifier: string;
|
8312
8324
|
identifierType: string;
|
8313
8325
|
}[] | undefined;
|
@@ -8446,14 +8458,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8446
8458
|
postOfficeBoxNumber?: string | undefined;
|
8447
8459
|
postalCode?: string | undefined;
|
8448
8460
|
geo?: {
|
8449
|
-
type: [string, ...string[]];
|
8461
|
+
type: string | [string, ...string[]];
|
8450
8462
|
latitude: number;
|
8451
8463
|
longitude: number;
|
8452
8464
|
} | undefined;
|
8453
|
-
type: [string, ...string[]];
|
8465
|
+
type: string | [string, ...string[]];
|
8454
8466
|
} | undefined;
|
8455
8467
|
otherIdentifier?: {
|
8456
|
-
type: [string, ...string[]];
|
8468
|
+
type: string | [string, ...string[]];
|
8457
8469
|
identifier: string;
|
8458
8470
|
identifierType: string;
|
8459
8471
|
}[] | undefined;
|
@@ -8481,7 +8493,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8481
8493
|
id: string;
|
8482
8494
|
} | undefined;
|
8483
8495
|
otherIdentifier?: {
|
8484
|
-
type: [string, ...string[]];
|
8496
|
+
type: string | [string, ...string[]];
|
8485
8497
|
identifier: string;
|
8486
8498
|
identifierType: string;
|
8487
8499
|
}[] | undefined;
|
@@ -8521,14 +8533,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8521
8533
|
postOfficeBoxNumber?: string | undefined;
|
8522
8534
|
postalCode?: string | undefined;
|
8523
8535
|
geo?: {
|
8524
|
-
type: [string, ...string[]];
|
8536
|
+
type: string | [string, ...string[]];
|
8525
8537
|
latitude: number;
|
8526
8538
|
longitude: number;
|
8527
8539
|
} | undefined;
|
8528
|
-
type: [string, ...string[]];
|
8540
|
+
type: string | [string, ...string[]];
|
8529
8541
|
} | undefined;
|
8530
8542
|
otherIdentifier?: {
|
8531
|
-
type: [string, ...string[]];
|
8543
|
+
type: string | [string, ...string[]];
|
8532
8544
|
identifier: string;
|
8533
8545
|
identifierType: string;
|
8534
8546
|
}[] | undefined;
|
@@ -8601,7 +8613,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8601
8613
|
id?: string | undefined;
|
8602
8614
|
};
|
8603
8615
|
}>>;
|
8604
|
-
identifier: z.ZodOptional<z.ZodObject<{
|
8616
|
+
identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
8605
8617
|
type: z.ZodString;
|
8606
8618
|
hashed: z.ZodBoolean;
|
8607
8619
|
identityHash: z.ZodString;
|
@@ -8619,7 +8631,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8619
8631
|
hashed: boolean;
|
8620
8632
|
identityHash: string;
|
8621
8633
|
identityType: string;
|
8622
|
-
}>>;
|
8634
|
+
}>, "many">>;
|
8623
8635
|
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
8624
8636
|
id: z.ZodString;
|
8625
8637
|
type: z.ZodString;
|
@@ -8723,7 +8735,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8723
8735
|
}>]>>;
|
8724
8736
|
email: z.ZodOptional<z.ZodString>;
|
8725
8737
|
address: z.ZodOptional<z.ZodObject<{
|
8726
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
8738
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
8727
8739
|
addressCountry: z.ZodOptional<z.ZodString>;
|
8728
8740
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
8729
8741
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -8732,15 +8744,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8732
8744
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
8733
8745
|
postalCode: z.ZodOptional<z.ZodString>;
|
8734
8746
|
geo: z.ZodOptional<z.ZodObject<{
|
8735
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
8747
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
8736
8748
|
latitude: z.ZodNumber;
|
8737
8749
|
longitude: z.ZodNumber;
|
8738
8750
|
}, "strip", z.ZodTypeAny, {
|
8739
|
-
type: [string, ...string[]];
|
8751
|
+
type: string | [string, ...string[]];
|
8740
8752
|
latitude: number;
|
8741
8753
|
longitude: number;
|
8742
8754
|
}, {
|
8743
|
-
type: [string, ...string[]];
|
8755
|
+
type: string | [string, ...string[]];
|
8744
8756
|
latitude: number;
|
8745
8757
|
longitude: number;
|
8746
8758
|
}>>;
|
@@ -8753,11 +8765,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8753
8765
|
postOfficeBoxNumber?: string | undefined;
|
8754
8766
|
postalCode?: string | undefined;
|
8755
8767
|
geo?: {
|
8756
|
-
type: [string, ...string[]];
|
8768
|
+
type: string | [string, ...string[]];
|
8757
8769
|
latitude: number;
|
8758
8770
|
longitude: number;
|
8759
8771
|
} | undefined;
|
8760
|
-
type: [string, ...string[]];
|
8772
|
+
type: string | [string, ...string[]];
|
8761
8773
|
}, {
|
8762
8774
|
addressCountry?: string | undefined;
|
8763
8775
|
addressCountryCode?: string | undefined;
|
@@ -8767,22 +8779,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8767
8779
|
postOfficeBoxNumber?: string | undefined;
|
8768
8780
|
postalCode?: string | undefined;
|
8769
8781
|
geo?: {
|
8770
|
-
type: [string, ...string[]];
|
8782
|
+
type: string | [string, ...string[]];
|
8771
8783
|
latitude: number;
|
8772
8784
|
longitude: number;
|
8773
8785
|
} | undefined;
|
8774
|
-
type: [string, ...string[]];
|
8786
|
+
type: string | [string, ...string[]];
|
8775
8787
|
}>>;
|
8776
8788
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
8777
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
8789
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
8778
8790
|
identifier: z.ZodString;
|
8779
8791
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
8780
8792
|
}, "strip", z.ZodTypeAny, {
|
8781
|
-
type: [string, ...string[]];
|
8793
|
+
type: string | [string, ...string[]];
|
8782
8794
|
identifier: string;
|
8783
8795
|
identifierType: string;
|
8784
8796
|
}, {
|
8785
|
-
type: [string, ...string[]];
|
8797
|
+
type: string | [string, ...string[]];
|
8786
8798
|
identifier: string;
|
8787
8799
|
identifierType: string;
|
8788
8800
|
}>, "many">>;
|
@@ -8820,14 +8832,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8820
8832
|
postOfficeBoxNumber?: string | undefined;
|
8821
8833
|
postalCode?: string | undefined;
|
8822
8834
|
geo?: {
|
8823
|
-
type: [string, ...string[]];
|
8835
|
+
type: string | [string, ...string[]];
|
8824
8836
|
latitude: number;
|
8825
8837
|
longitude: number;
|
8826
8838
|
} | undefined;
|
8827
|
-
type: [string, ...string[]];
|
8839
|
+
type: string | [string, ...string[]];
|
8828
8840
|
} | undefined;
|
8829
8841
|
otherIdentifier?: {
|
8830
|
-
type: [string, ...string[]];
|
8842
|
+
type: string | [string, ...string[]];
|
8831
8843
|
identifier: string;
|
8832
8844
|
identifierType: string;
|
8833
8845
|
}[] | undefined;
|
@@ -8865,14 +8877,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8865
8877
|
postOfficeBoxNumber?: string | undefined;
|
8866
8878
|
postalCode?: string | undefined;
|
8867
8879
|
geo?: {
|
8868
|
-
type: [string, ...string[]];
|
8880
|
+
type: string | [string, ...string[]];
|
8869
8881
|
latitude: number;
|
8870
8882
|
longitude: number;
|
8871
8883
|
} | undefined;
|
8872
|
-
type: [string, ...string[]];
|
8884
|
+
type: string | [string, ...string[]];
|
8873
8885
|
} | undefined;
|
8874
8886
|
otherIdentifier?: {
|
8875
|
-
type: [string, ...string[]];
|
8887
|
+
type: string | [string, ...string[]];
|
8876
8888
|
identifier: string;
|
8877
8889
|
identifierType: string;
|
8878
8890
|
}[] | undefined;
|
@@ -8898,7 +8910,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8898
8910
|
hashed: boolean;
|
8899
8911
|
identityHash: string;
|
8900
8912
|
identityType: string;
|
8901
|
-
} | undefined;
|
8913
|
+
}[] | undefined;
|
8902
8914
|
image?: string | {
|
8903
8915
|
caption?: string | undefined;
|
8904
8916
|
type: string;
|
@@ -8974,14 +8986,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
8974
8986
|
postOfficeBoxNumber?: string | undefined;
|
8975
8987
|
postalCode?: string | undefined;
|
8976
8988
|
geo?: {
|
8977
|
-
type: [string, ...string[]];
|
8989
|
+
type: string | [string, ...string[]];
|
8978
8990
|
latitude: number;
|
8979
8991
|
longitude: number;
|
8980
8992
|
} | undefined;
|
8981
|
-
type: [string, ...string[]];
|
8993
|
+
type: string | [string, ...string[]];
|
8982
8994
|
} | undefined;
|
8983
8995
|
otherIdentifier?: {
|
8984
|
-
type: [string, ...string[]];
|
8996
|
+
type: string | [string, ...string[]];
|
8985
8997
|
identifier: string;
|
8986
8998
|
identifierType: string;
|
8987
8999
|
}[] | undefined;
|
@@ -9009,7 +9021,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9009
9021
|
id: string;
|
9010
9022
|
} | undefined;
|
9011
9023
|
otherIdentifier?: {
|
9012
|
-
type: [string, ...string[]];
|
9024
|
+
type: string | [string, ...string[]];
|
9013
9025
|
identifier: string;
|
9014
9026
|
identifierType: string;
|
9015
9027
|
}[] | undefined;
|
@@ -9049,14 +9061,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9049
9061
|
postOfficeBoxNumber?: string | undefined;
|
9050
9062
|
postalCode?: string | undefined;
|
9051
9063
|
geo?: {
|
9052
|
-
type: [string, ...string[]];
|
9064
|
+
type: string | [string, ...string[]];
|
9053
9065
|
latitude: number;
|
9054
9066
|
longitude: number;
|
9055
9067
|
} | undefined;
|
9056
|
-
type: [string, ...string[]];
|
9068
|
+
type: string | [string, ...string[]];
|
9057
9069
|
} | undefined;
|
9058
9070
|
otherIdentifier?: {
|
9059
|
-
type: [string, ...string[]];
|
9071
|
+
type: string | [string, ...string[]];
|
9060
9072
|
identifier: string;
|
9061
9073
|
identifierType: string;
|
9062
9074
|
}[] | undefined;
|
@@ -9172,14 +9184,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9172
9184
|
postOfficeBoxNumber?: string | undefined;
|
9173
9185
|
postalCode?: string | undefined;
|
9174
9186
|
geo?: {
|
9175
|
-
type: [string, ...string[]];
|
9187
|
+
type: string | [string, ...string[]];
|
9176
9188
|
latitude: number;
|
9177
9189
|
longitude: number;
|
9178
9190
|
} | undefined;
|
9179
|
-
type: [string, ...string[]];
|
9191
|
+
type: string | [string, ...string[]];
|
9180
9192
|
} | undefined;
|
9181
9193
|
otherIdentifier?: {
|
9182
|
-
type: [string, ...string[]];
|
9194
|
+
type: string | [string, ...string[]];
|
9183
9195
|
identifier: string;
|
9184
9196
|
identifierType: string;
|
9185
9197
|
}[] | undefined;
|
@@ -9206,7 +9218,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9206
9218
|
hashed: boolean;
|
9207
9219
|
identityHash: string;
|
9208
9220
|
identityType: string;
|
9209
|
-
} | undefined;
|
9221
|
+
}[] | undefined;
|
9210
9222
|
image?: string | {
|
9211
9223
|
caption?: string | undefined;
|
9212
9224
|
type: string;
|
@@ -9282,14 +9294,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9282
9294
|
postOfficeBoxNumber?: string | undefined;
|
9283
9295
|
postalCode?: string | undefined;
|
9284
9296
|
geo?: {
|
9285
|
-
type: [string, ...string[]];
|
9297
|
+
type: string | [string, ...string[]];
|
9286
9298
|
latitude: number;
|
9287
9299
|
longitude: number;
|
9288
9300
|
} | undefined;
|
9289
|
-
type: [string, ...string[]];
|
9301
|
+
type: string | [string, ...string[]];
|
9290
9302
|
} | undefined;
|
9291
9303
|
otherIdentifier?: {
|
9292
|
-
type: [string, ...string[]];
|
9304
|
+
type: string | [string, ...string[]];
|
9293
9305
|
identifier: string;
|
9294
9306
|
identifierType: string;
|
9295
9307
|
}[] | undefined;
|
@@ -9317,7 +9329,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9317
9329
|
id: string;
|
9318
9330
|
} | undefined;
|
9319
9331
|
otherIdentifier?: {
|
9320
|
-
type: [string, ...string[]];
|
9332
|
+
type: string | [string, ...string[]];
|
9321
9333
|
identifier: string;
|
9322
9334
|
identifierType: string;
|
9323
9335
|
}[] | undefined;
|
@@ -9357,14 +9369,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9357
9369
|
postOfficeBoxNumber?: string | undefined;
|
9358
9370
|
postalCode?: string | undefined;
|
9359
9371
|
geo?: {
|
9360
|
-
type: [string, ...string[]];
|
9372
|
+
type: string | [string, ...string[]];
|
9361
9373
|
latitude: number;
|
9362
9374
|
longitude: number;
|
9363
9375
|
} | undefined;
|
9364
|
-
type: [string, ...string[]];
|
9376
|
+
type: string | [string, ...string[]];
|
9365
9377
|
} | undefined;
|
9366
9378
|
otherIdentifier?: {
|
9367
|
-
type: [string, ...string[]];
|
9379
|
+
type: string | [string, ...string[]];
|
9368
9380
|
identifier: string;
|
9369
9381
|
identifierType: string;
|
9370
9382
|
}[] | undefined;
|
@@ -9480,14 +9492,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9480
9492
|
postOfficeBoxNumber?: string | undefined;
|
9481
9493
|
postalCode?: string | undefined;
|
9482
9494
|
geo?: {
|
9483
|
-
type: [string, ...string[]];
|
9495
|
+
type: string | [string, ...string[]];
|
9484
9496
|
latitude: number;
|
9485
9497
|
longitude: number;
|
9486
9498
|
} | undefined;
|
9487
|
-
type: [string, ...string[]];
|
9499
|
+
type: string | [string, ...string[]];
|
9488
9500
|
} | undefined;
|
9489
9501
|
otherIdentifier?: {
|
9490
|
-
type: [string, ...string[]];
|
9502
|
+
type: string | [string, ...string[]];
|
9491
9503
|
identifier: string;
|
9492
9504
|
identifierType: string;
|
9493
9505
|
}[] | undefined;
|
@@ -9532,7 +9544,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9532
9544
|
}>]>>;
|
9533
9545
|
email: z.ZodOptional<z.ZodString>;
|
9534
9546
|
address: z.ZodOptional<z.ZodObject<{
|
9535
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
9547
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
9536
9548
|
addressCountry: z.ZodOptional<z.ZodString>;
|
9537
9549
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
9538
9550
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -9541,15 +9553,15 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9541
9553
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
9542
9554
|
postalCode: z.ZodOptional<z.ZodString>;
|
9543
9555
|
geo: z.ZodOptional<z.ZodObject<{
|
9544
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
9556
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
9545
9557
|
latitude: z.ZodNumber;
|
9546
9558
|
longitude: z.ZodNumber;
|
9547
9559
|
}, "strip", z.ZodTypeAny, {
|
9548
|
-
type: [string, ...string[]];
|
9560
|
+
type: string | [string, ...string[]];
|
9549
9561
|
latitude: number;
|
9550
9562
|
longitude: number;
|
9551
9563
|
}, {
|
9552
|
-
type: [string, ...string[]];
|
9564
|
+
type: string | [string, ...string[]];
|
9553
9565
|
latitude: number;
|
9554
9566
|
longitude: number;
|
9555
9567
|
}>>;
|
@@ -9562,11 +9574,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9562
9574
|
postOfficeBoxNumber?: string | undefined;
|
9563
9575
|
postalCode?: string | undefined;
|
9564
9576
|
geo?: {
|
9565
|
-
type: [string, ...string[]];
|
9577
|
+
type: string | [string, ...string[]];
|
9566
9578
|
latitude: number;
|
9567
9579
|
longitude: number;
|
9568
9580
|
} | undefined;
|
9569
|
-
type: [string, ...string[]];
|
9581
|
+
type: string | [string, ...string[]];
|
9570
9582
|
}, {
|
9571
9583
|
addressCountry?: string | undefined;
|
9572
9584
|
addressCountryCode?: string | undefined;
|
@@ -9576,22 +9588,22 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9576
9588
|
postOfficeBoxNumber?: string | undefined;
|
9577
9589
|
postalCode?: string | undefined;
|
9578
9590
|
geo?: {
|
9579
|
-
type: [string, ...string[]];
|
9591
|
+
type: string | [string, ...string[]];
|
9580
9592
|
latitude: number;
|
9581
9593
|
longitude: number;
|
9582
9594
|
} | undefined;
|
9583
|
-
type: [string, ...string[]];
|
9595
|
+
type: string | [string, ...string[]];
|
9584
9596
|
}>>;
|
9585
9597
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
9586
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
9598
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
9587
9599
|
identifier: z.ZodString;
|
9588
9600
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
9589
9601
|
}, "strip", z.ZodTypeAny, {
|
9590
|
-
type: [string, ...string[]];
|
9602
|
+
type: string | [string, ...string[]];
|
9591
9603
|
identifier: string;
|
9592
9604
|
identifierType: string;
|
9593
9605
|
}, {
|
9594
|
-
type: [string, ...string[]];
|
9606
|
+
type: string | [string, ...string[]];
|
9595
9607
|
identifier: string;
|
9596
9608
|
identifierType: string;
|
9597
9609
|
}>, "many">>;
|
@@ -9629,14 +9641,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9629
9641
|
postOfficeBoxNumber?: string | undefined;
|
9630
9642
|
postalCode?: string | undefined;
|
9631
9643
|
geo?: {
|
9632
|
-
type: [string, ...string[]];
|
9644
|
+
type: string | [string, ...string[]];
|
9633
9645
|
latitude: number;
|
9634
9646
|
longitude: number;
|
9635
9647
|
} | undefined;
|
9636
|
-
type: [string, ...string[]];
|
9648
|
+
type: string | [string, ...string[]];
|
9637
9649
|
} | undefined;
|
9638
9650
|
otherIdentifier?: {
|
9639
|
-
type: [string, ...string[]];
|
9651
|
+
type: string | [string, ...string[]];
|
9640
9652
|
identifier: string;
|
9641
9653
|
identifierType: string;
|
9642
9654
|
}[] | undefined;
|
@@ -9674,14 +9686,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9674
9686
|
postOfficeBoxNumber?: string | undefined;
|
9675
9687
|
postalCode?: string | undefined;
|
9676
9688
|
geo?: {
|
9677
|
-
type: [string, ...string[]];
|
9689
|
+
type: string | [string, ...string[]];
|
9678
9690
|
latitude: number;
|
9679
9691
|
longitude: number;
|
9680
9692
|
} | undefined;
|
9681
|
-
type: [string, ...string[]];
|
9693
|
+
type: string | [string, ...string[]];
|
9682
9694
|
} | undefined;
|
9683
9695
|
otherIdentifier?: {
|
9684
|
-
type: [string, ...string[]];
|
9696
|
+
type: string | [string, ...string[]];
|
9685
9697
|
identifier: string;
|
9686
9698
|
identifierType: string;
|
9687
9699
|
}[] | undefined;
|
@@ -9790,14 +9802,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9790
9802
|
postOfficeBoxNumber?: string | undefined;
|
9791
9803
|
postalCode?: string | undefined;
|
9792
9804
|
geo?: {
|
9793
|
-
type: [string, ...string[]];
|
9805
|
+
type: string | [string, ...string[]];
|
9794
9806
|
latitude: number;
|
9795
9807
|
longitude: number;
|
9796
9808
|
} | undefined;
|
9797
|
-
type: [string, ...string[]];
|
9809
|
+
type: string | [string, ...string[]];
|
9798
9810
|
} | undefined;
|
9799
9811
|
otherIdentifier?: {
|
9800
|
-
type: [string, ...string[]];
|
9812
|
+
type: string | [string, ...string[]];
|
9801
9813
|
identifier: string;
|
9802
9814
|
identifierType: string;
|
9803
9815
|
}[] | undefined;
|
@@ -9863,14 +9875,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9863
9875
|
postOfficeBoxNumber?: string | undefined;
|
9864
9876
|
postalCode?: string | undefined;
|
9865
9877
|
geo?: {
|
9866
|
-
type: [string, ...string[]];
|
9878
|
+
type: string | [string, ...string[]];
|
9867
9879
|
latitude: number;
|
9868
9880
|
longitude: number;
|
9869
9881
|
} | undefined;
|
9870
|
-
type: [string, ...string[]];
|
9882
|
+
type: string | [string, ...string[]];
|
9871
9883
|
} | undefined;
|
9872
9884
|
otherIdentifier?: {
|
9873
|
-
type: [string, ...string[]];
|
9885
|
+
type: string | [string, ...string[]];
|
9874
9886
|
identifier: string;
|
9875
9887
|
identifierType: string;
|
9876
9888
|
}[] | undefined;
|
@@ -9969,14 +9981,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
9969
9981
|
postOfficeBoxNumber?: string | undefined;
|
9970
9982
|
postalCode?: string | undefined;
|
9971
9983
|
geo?: {
|
9972
|
-
type: [string, ...string[]];
|
9984
|
+
type: string | [string, ...string[]];
|
9973
9985
|
latitude: number;
|
9974
9986
|
longitude: number;
|
9975
9987
|
} | undefined;
|
9976
|
-
type: [string, ...string[]];
|
9988
|
+
type: string | [string, ...string[]];
|
9977
9989
|
} | undefined;
|
9978
9990
|
otherIdentifier?: {
|
9979
|
-
type: [string, ...string[]];
|
9991
|
+
type: string | [string, ...string[]];
|
9980
9992
|
identifier: string;
|
9981
9993
|
identifierType: string;
|
9982
9994
|
}[] | undefined;
|
@@ -10000,7 +10012,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10000
10012
|
id?: string | undefined;
|
10001
10013
|
}[];
|
10002
10014
|
}[] | undefined;
|
10003
|
-
image?: string |
|
10015
|
+
image?: string | {
|
10016
|
+
caption?: string | undefined;
|
10017
|
+
type: string;
|
10018
|
+
id: string;
|
10019
|
+
} | undefined;
|
10004
10020
|
expirationDate?: string | undefined;
|
10005
10021
|
credentialStatus?: {
|
10006
10022
|
type: string;
|
@@ -10051,14 +10067,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10051
10067
|
postOfficeBoxNumber?: string | undefined;
|
10052
10068
|
postalCode?: string | undefined;
|
10053
10069
|
geo?: {
|
10054
|
-
type: [string, ...string[]];
|
10070
|
+
type: string | [string, ...string[]];
|
10055
10071
|
latitude: number;
|
10056
10072
|
longitude: number;
|
10057
10073
|
} | undefined;
|
10058
|
-
type: [string, ...string[]];
|
10074
|
+
type: string | [string, ...string[]];
|
10059
10075
|
} | undefined;
|
10060
10076
|
otherIdentifier?: {
|
10061
|
-
type: [string, ...string[]];
|
10077
|
+
type: string | [string, ...string[]];
|
10062
10078
|
identifier: string;
|
10063
10079
|
identifierType: string;
|
10064
10080
|
}[] | undefined;
|
@@ -10084,7 +10100,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10084
10100
|
hashed: boolean;
|
10085
10101
|
identityHash: string;
|
10086
10102
|
identityType: string;
|
10087
|
-
} | undefined;
|
10103
|
+
}[] | undefined;
|
10088
10104
|
image?: string | {
|
10089
10105
|
caption?: string | undefined;
|
10090
10106
|
type: string;
|
@@ -10160,14 +10176,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10160
10176
|
postOfficeBoxNumber?: string | undefined;
|
10161
10177
|
postalCode?: string | undefined;
|
10162
10178
|
geo?: {
|
10163
|
-
type: [string, ...string[]];
|
10179
|
+
type: string | [string, ...string[]];
|
10164
10180
|
latitude: number;
|
10165
10181
|
longitude: number;
|
10166
10182
|
} | undefined;
|
10167
|
-
type: [string, ...string[]];
|
10183
|
+
type: string | [string, ...string[]];
|
10168
10184
|
} | undefined;
|
10169
10185
|
otherIdentifier?: {
|
10170
|
-
type: [string, ...string[]];
|
10186
|
+
type: string | [string, ...string[]];
|
10171
10187
|
identifier: string;
|
10172
10188
|
identifierType: string;
|
10173
10189
|
}[] | undefined;
|
@@ -10195,7 +10211,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10195
10211
|
id: string;
|
10196
10212
|
} | undefined;
|
10197
10213
|
otherIdentifier?: {
|
10198
|
-
type: [string, ...string[]];
|
10214
|
+
type: string | [string, ...string[]];
|
10199
10215
|
identifier: string;
|
10200
10216
|
identifierType: string;
|
10201
10217
|
}[] | undefined;
|
@@ -10235,14 +10251,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10235
10251
|
postOfficeBoxNumber?: string | undefined;
|
10236
10252
|
postalCode?: string | undefined;
|
10237
10253
|
geo?: {
|
10238
|
-
type: [string, ...string[]];
|
10254
|
+
type: string | [string, ...string[]];
|
10239
10255
|
latitude: number;
|
10240
10256
|
longitude: number;
|
10241
10257
|
} | undefined;
|
10242
|
-
type: [string, ...string[]];
|
10258
|
+
type: string | [string, ...string[]];
|
10243
10259
|
} | undefined;
|
10244
10260
|
otherIdentifier?: {
|
10245
|
-
type: [string, ...string[]];
|
10261
|
+
type: string | [string, ...string[]];
|
10246
10262
|
identifier: string;
|
10247
10263
|
identifierType: string;
|
10248
10264
|
}[] | undefined;
|
@@ -10358,14 +10374,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10358
10374
|
postOfficeBoxNumber?: string | undefined;
|
10359
10375
|
postalCode?: string | undefined;
|
10360
10376
|
geo?: {
|
10361
|
-
type: [string, ...string[]];
|
10377
|
+
type: string | [string, ...string[]];
|
10362
10378
|
latitude: number;
|
10363
10379
|
longitude: number;
|
10364
10380
|
} | undefined;
|
10365
|
-
type: [string, ...string[]];
|
10381
|
+
type: string | [string, ...string[]];
|
10366
10382
|
} | undefined;
|
10367
10383
|
otherIdentifier?: {
|
10368
|
-
type: [string, ...string[]];
|
10384
|
+
type: string | [string, ...string[]];
|
10369
10385
|
identifier: string;
|
10370
10386
|
identifierType: string;
|
10371
10387
|
}[] | undefined;
|
@@ -10392,7 +10408,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10392
10408
|
hashed: boolean;
|
10393
10409
|
identityHash: string;
|
10394
10410
|
identityType: string;
|
10395
|
-
} | undefined;
|
10411
|
+
}[] | undefined;
|
10396
10412
|
image?: string | {
|
10397
10413
|
caption?: string | undefined;
|
10398
10414
|
type: string;
|
@@ -10468,14 +10484,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10468
10484
|
postOfficeBoxNumber?: string | undefined;
|
10469
10485
|
postalCode?: string | undefined;
|
10470
10486
|
geo?: {
|
10471
|
-
type: [string, ...string[]];
|
10487
|
+
type: string | [string, ...string[]];
|
10472
10488
|
latitude: number;
|
10473
10489
|
longitude: number;
|
10474
10490
|
} | undefined;
|
10475
|
-
type: [string, ...string[]];
|
10491
|
+
type: string | [string, ...string[]];
|
10476
10492
|
} | undefined;
|
10477
10493
|
otherIdentifier?: {
|
10478
|
-
type: [string, ...string[]];
|
10494
|
+
type: string | [string, ...string[]];
|
10479
10495
|
identifier: string;
|
10480
10496
|
identifierType: string;
|
10481
10497
|
}[] | undefined;
|
@@ -10503,7 +10519,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10503
10519
|
id: string;
|
10504
10520
|
} | undefined;
|
10505
10521
|
otherIdentifier?: {
|
10506
|
-
type: [string, ...string[]];
|
10522
|
+
type: string | [string, ...string[]];
|
10507
10523
|
identifier: string;
|
10508
10524
|
identifierType: string;
|
10509
10525
|
}[] | undefined;
|
@@ -10543,14 +10559,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10543
10559
|
postOfficeBoxNumber?: string | undefined;
|
10544
10560
|
postalCode?: string | undefined;
|
10545
10561
|
geo?: {
|
10546
|
-
type: [string, ...string[]];
|
10562
|
+
type: string | [string, ...string[]];
|
10547
10563
|
latitude: number;
|
10548
10564
|
longitude: number;
|
10549
10565
|
} | undefined;
|
10550
|
-
type: [string, ...string[]];
|
10566
|
+
type: string | [string, ...string[]];
|
10551
10567
|
} | undefined;
|
10552
10568
|
otherIdentifier?: {
|
10553
|
-
type: [string, ...string[]];
|
10569
|
+
type: string | [string, ...string[]];
|
10554
10570
|
identifier: string;
|
10555
10571
|
identifierType: string;
|
10556
10572
|
}[] | undefined;
|
@@ -10666,14 +10682,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10666
10682
|
postOfficeBoxNumber?: string | undefined;
|
10667
10683
|
postalCode?: string | undefined;
|
10668
10684
|
geo?: {
|
10669
|
-
type: [string, ...string[]];
|
10685
|
+
type: string | [string, ...string[]];
|
10670
10686
|
latitude: number;
|
10671
10687
|
longitude: number;
|
10672
10688
|
} | undefined;
|
10673
|
-
type: [string, ...string[]];
|
10689
|
+
type: string | [string, ...string[]];
|
10674
10690
|
} | undefined;
|
10675
10691
|
otherIdentifier?: {
|
10676
|
-
type: [string, ...string[]];
|
10692
|
+
type: string | [string, ...string[]];
|
10677
10693
|
identifier: string;
|
10678
10694
|
identifierType: string;
|
10679
10695
|
}[] | undefined;
|
@@ -10739,14 +10755,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10739
10755
|
postOfficeBoxNumber?: string | undefined;
|
10740
10756
|
postalCode?: string | undefined;
|
10741
10757
|
geo?: {
|
10742
|
-
type: [string, ...string[]];
|
10758
|
+
type: string | [string, ...string[]];
|
10743
10759
|
latitude: number;
|
10744
10760
|
longitude: number;
|
10745
10761
|
} | undefined;
|
10746
|
-
type: [string, ...string[]];
|
10762
|
+
type: string | [string, ...string[]];
|
10747
10763
|
} | undefined;
|
10748
10764
|
otherIdentifier?: {
|
10749
|
-
type: [string, ...string[]];
|
10765
|
+
type: string | [string, ...string[]];
|
10750
10766
|
identifier: string;
|
10751
10767
|
identifierType: string;
|
10752
10768
|
}[] | undefined;
|
@@ -10770,7 +10786,11 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10770
10786
|
id?: string | undefined;
|
10771
10787
|
}[];
|
10772
10788
|
}[] | undefined;
|
10773
|
-
image?: string |
|
10789
|
+
image?: string | {
|
10790
|
+
caption?: string | undefined;
|
10791
|
+
type: string;
|
10792
|
+
id: string;
|
10793
|
+
} | undefined;
|
10774
10794
|
expirationDate?: string | undefined;
|
10775
10795
|
credentialStatus?: {
|
10776
10796
|
type: string;
|
@@ -10821,14 +10841,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10821
10841
|
postOfficeBoxNumber?: string | undefined;
|
10822
10842
|
postalCode?: string | undefined;
|
10823
10843
|
geo?: {
|
10824
|
-
type: [string, ...string[]];
|
10844
|
+
type: string | [string, ...string[]];
|
10825
10845
|
latitude: number;
|
10826
10846
|
longitude: number;
|
10827
10847
|
} | undefined;
|
10828
|
-
type: [string, ...string[]];
|
10848
|
+
type: string | [string, ...string[]];
|
10829
10849
|
} | undefined;
|
10830
10850
|
otherIdentifier?: {
|
10831
|
-
type: [string, ...string[]];
|
10851
|
+
type: string | [string, ...string[]];
|
10832
10852
|
identifier: string;
|
10833
10853
|
identifierType: string;
|
10834
10854
|
}[] | undefined;
|
@@ -10854,7 +10874,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10854
10874
|
hashed: boolean;
|
10855
10875
|
identityHash: string;
|
10856
10876
|
identityType: string;
|
10857
|
-
} | undefined;
|
10877
|
+
}[] | undefined;
|
10858
10878
|
image?: string | {
|
10859
10879
|
caption?: string | undefined;
|
10860
10880
|
type: string;
|
@@ -10930,14 +10950,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10930
10950
|
postOfficeBoxNumber?: string | undefined;
|
10931
10951
|
postalCode?: string | undefined;
|
10932
10952
|
geo?: {
|
10933
|
-
type: [string, ...string[]];
|
10953
|
+
type: string | [string, ...string[]];
|
10934
10954
|
latitude: number;
|
10935
10955
|
longitude: number;
|
10936
10956
|
} | undefined;
|
10937
|
-
type: [string, ...string[]];
|
10957
|
+
type: string | [string, ...string[]];
|
10938
10958
|
} | undefined;
|
10939
10959
|
otherIdentifier?: {
|
10940
|
-
type: [string, ...string[]];
|
10960
|
+
type: string | [string, ...string[]];
|
10941
10961
|
identifier: string;
|
10942
10962
|
identifierType: string;
|
10943
10963
|
}[] | undefined;
|
@@ -10965,7 +10985,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
10965
10985
|
id: string;
|
10966
10986
|
} | undefined;
|
10967
10987
|
otherIdentifier?: {
|
10968
|
-
type: [string, ...string[]];
|
10988
|
+
type: string | [string, ...string[]];
|
10969
10989
|
identifier: string;
|
10970
10990
|
identifierType: string;
|
10971
10991
|
}[] | undefined;
|
@@ -11005,14 +11025,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11005
11025
|
postOfficeBoxNumber?: string | undefined;
|
11006
11026
|
postalCode?: string | undefined;
|
11007
11027
|
geo?: {
|
11008
|
-
type: [string, ...string[]];
|
11028
|
+
type: string | [string, ...string[]];
|
11009
11029
|
latitude: number;
|
11010
11030
|
longitude: number;
|
11011
11031
|
} | undefined;
|
11012
|
-
type: [string, ...string[]];
|
11032
|
+
type: string | [string, ...string[]];
|
11013
11033
|
} | undefined;
|
11014
11034
|
otherIdentifier?: {
|
11015
|
-
type: [string, ...string[]];
|
11035
|
+
type: string | [string, ...string[]];
|
11016
11036
|
identifier: string;
|
11017
11037
|
identifierType: string;
|
11018
11038
|
}[] | undefined;
|
@@ -11128,14 +11148,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11128
11148
|
postOfficeBoxNumber?: string | undefined;
|
11129
11149
|
postalCode?: string | undefined;
|
11130
11150
|
geo?: {
|
11131
|
-
type: [string, ...string[]];
|
11151
|
+
type: string | [string, ...string[]];
|
11132
11152
|
latitude: number;
|
11133
11153
|
longitude: number;
|
11134
11154
|
} | undefined;
|
11135
|
-
type: [string, ...string[]];
|
11155
|
+
type: string | [string, ...string[]];
|
11136
11156
|
} | undefined;
|
11137
11157
|
otherIdentifier?: {
|
11138
|
-
type: [string, ...string[]];
|
11158
|
+
type: string | [string, ...string[]];
|
11139
11159
|
identifier: string;
|
11140
11160
|
identifierType: string;
|
11141
11161
|
}[] | undefined;
|
@@ -11162,7 +11182,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11162
11182
|
hashed: boolean;
|
11163
11183
|
identityHash: string;
|
11164
11184
|
identityType: string;
|
11165
|
-
} | undefined;
|
11185
|
+
}[] | undefined;
|
11166
11186
|
image?: string | {
|
11167
11187
|
caption?: string | undefined;
|
11168
11188
|
type: string;
|
@@ -11238,14 +11258,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11238
11258
|
postOfficeBoxNumber?: string | undefined;
|
11239
11259
|
postalCode?: string | undefined;
|
11240
11260
|
geo?: {
|
11241
|
-
type: [string, ...string[]];
|
11261
|
+
type: string | [string, ...string[]];
|
11242
11262
|
latitude: number;
|
11243
11263
|
longitude: number;
|
11244
11264
|
} | undefined;
|
11245
|
-
type: [string, ...string[]];
|
11265
|
+
type: string | [string, ...string[]];
|
11246
11266
|
} | undefined;
|
11247
11267
|
otherIdentifier?: {
|
11248
|
-
type: [string, ...string[]];
|
11268
|
+
type: string | [string, ...string[]];
|
11249
11269
|
identifier: string;
|
11250
11270
|
identifierType: string;
|
11251
11271
|
}[] | undefined;
|
@@ -11273,7 +11293,7 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11273
11293
|
id: string;
|
11274
11294
|
} | undefined;
|
11275
11295
|
otherIdentifier?: {
|
11276
|
-
type: [string, ...string[]];
|
11296
|
+
type: string | [string, ...string[]];
|
11277
11297
|
identifier: string;
|
11278
11298
|
identifierType: string;
|
11279
11299
|
}[] | undefined;
|
@@ -11313,14 +11333,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11313
11333
|
postOfficeBoxNumber?: string | undefined;
|
11314
11334
|
postalCode?: string | undefined;
|
11315
11335
|
geo?: {
|
11316
|
-
type: [string, ...string[]];
|
11336
|
+
type: string | [string, ...string[]];
|
11317
11337
|
latitude: number;
|
11318
11338
|
longitude: number;
|
11319
11339
|
} | undefined;
|
11320
|
-
type: [string, ...string[]];
|
11340
|
+
type: string | [string, ...string[]];
|
11321
11341
|
} | undefined;
|
11322
11342
|
otherIdentifier?: {
|
11323
|
-
type: [string, ...string[]];
|
11343
|
+
type: string | [string, ...string[]];
|
11324
11344
|
identifier: string;
|
11325
11345
|
identifierType: string;
|
11326
11346
|
}[] | undefined;
|
@@ -11436,14 +11456,14 @@ export declare const UnsignedAchievementCredentialValidator: z.ZodObject<z.exten
|
|
11436
11456
|
postOfficeBoxNumber?: string | undefined;
|
11437
11457
|
postalCode?: string | undefined;
|
11438
11458
|
geo?: {
|
11439
|
-
type: [string, ...string[]];
|
11459
|
+
type: string | [string, ...string[]];
|
11440
11460
|
latitude: number;
|
11441
11461
|
longitude: number;
|
11442
11462
|
} | undefined;
|
11443
|
-
type: [string, ...string[]];
|
11463
|
+
type: string | [string, ...string[]];
|
11444
11464
|
} | undefined;
|
11445
11465
|
otherIdentifier?: {
|
11446
|
-
type: [string, ...string[]];
|
11466
|
+
type: string | [string, ...string[]];
|
11447
11467
|
identifier: string;
|
11448
11468
|
identifierType: string;
|
11449
11469
|
}[] | undefined;
|
@@ -11490,7 +11510,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11490
11510
|
}>]>>;
|
11491
11511
|
email: z.ZodOptional<z.ZodString>;
|
11492
11512
|
address: z.ZodOptional<z.ZodObject<{
|
11493
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
11513
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11494
11514
|
addressCountry: z.ZodOptional<z.ZodString>;
|
11495
11515
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
11496
11516
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -11499,15 +11519,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11499
11519
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
11500
11520
|
postalCode: z.ZodOptional<z.ZodString>;
|
11501
11521
|
geo: z.ZodOptional<z.ZodObject<{
|
11502
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
11522
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11503
11523
|
latitude: z.ZodNumber;
|
11504
11524
|
longitude: z.ZodNumber;
|
11505
11525
|
}, "strip", z.ZodTypeAny, {
|
11506
|
-
type: [string, ...string[]];
|
11526
|
+
type: string | [string, ...string[]];
|
11507
11527
|
latitude: number;
|
11508
11528
|
longitude: number;
|
11509
11529
|
}, {
|
11510
|
-
type: [string, ...string[]];
|
11530
|
+
type: string | [string, ...string[]];
|
11511
11531
|
latitude: number;
|
11512
11532
|
longitude: number;
|
11513
11533
|
}>>;
|
@@ -11520,11 +11540,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11520
11540
|
postOfficeBoxNumber?: string | undefined;
|
11521
11541
|
postalCode?: string | undefined;
|
11522
11542
|
geo?: {
|
11523
|
-
type: [string, ...string[]];
|
11543
|
+
type: string | [string, ...string[]];
|
11524
11544
|
latitude: number;
|
11525
11545
|
longitude: number;
|
11526
11546
|
} | undefined;
|
11527
|
-
type: [string, ...string[]];
|
11547
|
+
type: string | [string, ...string[]];
|
11528
11548
|
}, {
|
11529
11549
|
addressCountry?: string | undefined;
|
11530
11550
|
addressCountryCode?: string | undefined;
|
@@ -11534,22 +11554,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11534
11554
|
postOfficeBoxNumber?: string | undefined;
|
11535
11555
|
postalCode?: string | undefined;
|
11536
11556
|
geo?: {
|
11537
|
-
type: [string, ...string[]];
|
11557
|
+
type: string | [string, ...string[]];
|
11538
11558
|
latitude: number;
|
11539
11559
|
longitude: number;
|
11540
11560
|
} | undefined;
|
11541
|
-
type: [string, ...string[]];
|
11561
|
+
type: string | [string, ...string[]];
|
11542
11562
|
}>>;
|
11543
11563
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11544
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
11564
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11545
11565
|
identifier: z.ZodString;
|
11546
11566
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
11547
11567
|
}, "strip", z.ZodTypeAny, {
|
11548
|
-
type: [string, ...string[]];
|
11568
|
+
type: string | [string, ...string[]];
|
11549
11569
|
identifier: string;
|
11550
11570
|
identifierType: string;
|
11551
11571
|
}, {
|
11552
|
-
type: [string, ...string[]];
|
11572
|
+
type: string | [string, ...string[]];
|
11553
11573
|
identifier: string;
|
11554
11574
|
identifierType: string;
|
11555
11575
|
}>, "many">>;
|
@@ -11587,14 +11607,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11587
11607
|
postOfficeBoxNumber?: string | undefined;
|
11588
11608
|
postalCode?: string | undefined;
|
11589
11609
|
geo?: {
|
11590
|
-
type: [string, ...string[]];
|
11610
|
+
type: string | [string, ...string[]];
|
11591
11611
|
latitude: number;
|
11592
11612
|
longitude: number;
|
11593
11613
|
} | undefined;
|
11594
|
-
type: [string, ...string[]];
|
11614
|
+
type: string | [string, ...string[]];
|
11595
11615
|
} | undefined;
|
11596
11616
|
otherIdentifier?: {
|
11597
|
-
type: [string, ...string[]];
|
11617
|
+
type: string | [string, ...string[]];
|
11598
11618
|
identifier: string;
|
11599
11619
|
identifierType: string;
|
11600
11620
|
}[] | undefined;
|
@@ -11632,14 +11652,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11632
11652
|
postOfficeBoxNumber?: string | undefined;
|
11633
11653
|
postalCode?: string | undefined;
|
11634
11654
|
geo?: {
|
11635
|
-
type: [string, ...string[]];
|
11655
|
+
type: string | [string, ...string[]];
|
11636
11656
|
latitude: number;
|
11637
11657
|
longitude: number;
|
11638
11658
|
} | undefined;
|
11639
|
-
type: [string, ...string[]];
|
11659
|
+
type: string | [string, ...string[]];
|
11640
11660
|
} | undefined;
|
11641
11661
|
otherIdentifier?: {
|
11642
|
-
type: [string, ...string[]];
|
11662
|
+
type: string | [string, ...string[]];
|
11643
11663
|
identifier: string;
|
11644
11664
|
identifierType: string;
|
11645
11665
|
}[] | undefined;
|
@@ -11708,7 +11728,19 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11708
11728
|
}, {
|
11709
11729
|
name: z.ZodOptional<z.ZodString>;
|
11710
11730
|
description: z.ZodOptional<z.ZodString>;
|
11711
|
-
image: z.ZodOptional<z.ZodString
|
11731
|
+
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
11732
|
+
id: z.ZodString;
|
11733
|
+
type: z.ZodString;
|
11734
|
+
caption: z.ZodOptional<z.ZodString>;
|
11735
|
+
}, "strip", z.ZodTypeAny, {
|
11736
|
+
caption?: string | undefined;
|
11737
|
+
type: string;
|
11738
|
+
id: string;
|
11739
|
+
}, {
|
11740
|
+
caption?: string | undefined;
|
11741
|
+
type: string;
|
11742
|
+
id: string;
|
11743
|
+
}>]>>;
|
11712
11744
|
credentialSubject: z.ZodUnion<[z.ZodObject<{
|
11713
11745
|
id: z.ZodOptional<z.ZodString>;
|
11714
11746
|
type: z.ZodArray<z.ZodString, "atleastone">;
|
@@ -11767,7 +11799,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11767
11799
|
}>]>>;
|
11768
11800
|
email: z.ZodOptional<z.ZodString>;
|
11769
11801
|
address: z.ZodOptional<z.ZodObject<{
|
11770
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
11802
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11771
11803
|
addressCountry: z.ZodOptional<z.ZodString>;
|
11772
11804
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
11773
11805
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -11776,15 +11808,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11776
11808
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
11777
11809
|
postalCode: z.ZodOptional<z.ZodString>;
|
11778
11810
|
geo: z.ZodOptional<z.ZodObject<{
|
11779
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
11811
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11780
11812
|
latitude: z.ZodNumber;
|
11781
11813
|
longitude: z.ZodNumber;
|
11782
11814
|
}, "strip", z.ZodTypeAny, {
|
11783
|
-
type: [string, ...string[]];
|
11815
|
+
type: string | [string, ...string[]];
|
11784
11816
|
latitude: number;
|
11785
11817
|
longitude: number;
|
11786
11818
|
}, {
|
11787
|
-
type: [string, ...string[]];
|
11819
|
+
type: string | [string, ...string[]];
|
11788
11820
|
latitude: number;
|
11789
11821
|
longitude: number;
|
11790
11822
|
}>>;
|
@@ -11797,11 +11829,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11797
11829
|
postOfficeBoxNumber?: string | undefined;
|
11798
11830
|
postalCode?: string | undefined;
|
11799
11831
|
geo?: {
|
11800
|
-
type: [string, ...string[]];
|
11832
|
+
type: string | [string, ...string[]];
|
11801
11833
|
latitude: number;
|
11802
11834
|
longitude: number;
|
11803
11835
|
} | undefined;
|
11804
|
-
type: [string, ...string[]];
|
11836
|
+
type: string | [string, ...string[]];
|
11805
11837
|
}, {
|
11806
11838
|
addressCountry?: string | undefined;
|
11807
11839
|
addressCountryCode?: string | undefined;
|
@@ -11811,22 +11843,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11811
11843
|
postOfficeBoxNumber?: string | undefined;
|
11812
11844
|
postalCode?: string | undefined;
|
11813
11845
|
geo?: {
|
11814
|
-
type: [string, ...string[]];
|
11846
|
+
type: string | [string, ...string[]];
|
11815
11847
|
latitude: number;
|
11816
11848
|
longitude: number;
|
11817
11849
|
} | undefined;
|
11818
|
-
type: [string, ...string[]];
|
11850
|
+
type: string | [string, ...string[]];
|
11819
11851
|
}>>;
|
11820
11852
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
11821
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
11853
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11822
11854
|
identifier: z.ZodString;
|
11823
11855
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
11824
11856
|
}, "strip", z.ZodTypeAny, {
|
11825
|
-
type: [string, ...string[]];
|
11857
|
+
type: string | [string, ...string[]];
|
11826
11858
|
identifier: string;
|
11827
11859
|
identifierType: string;
|
11828
11860
|
}, {
|
11829
|
-
type: [string, ...string[]];
|
11861
|
+
type: string | [string, ...string[]];
|
11830
11862
|
identifier: string;
|
11831
11863
|
identifierType: string;
|
11832
11864
|
}>, "many">>;
|
@@ -11864,14 +11896,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11864
11896
|
postOfficeBoxNumber?: string | undefined;
|
11865
11897
|
postalCode?: string | undefined;
|
11866
11898
|
geo?: {
|
11867
|
-
type: [string, ...string[]];
|
11899
|
+
type: string | [string, ...string[]];
|
11868
11900
|
latitude: number;
|
11869
11901
|
longitude: number;
|
11870
11902
|
} | undefined;
|
11871
|
-
type: [string, ...string[]];
|
11903
|
+
type: string | [string, ...string[]];
|
11872
11904
|
} | undefined;
|
11873
11905
|
otherIdentifier?: {
|
11874
|
-
type: [string, ...string[]];
|
11906
|
+
type: string | [string, ...string[]];
|
11875
11907
|
identifier: string;
|
11876
11908
|
identifierType: string;
|
11877
11909
|
}[] | undefined;
|
@@ -11909,14 +11941,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11909
11941
|
postOfficeBoxNumber?: string | undefined;
|
11910
11942
|
postalCode?: string | undefined;
|
11911
11943
|
geo?: {
|
11912
|
-
type: [string, ...string[]];
|
11944
|
+
type: string | [string, ...string[]];
|
11913
11945
|
latitude: number;
|
11914
11946
|
longitude: number;
|
11915
11947
|
} | undefined;
|
11916
|
-
type: [string, ...string[]];
|
11948
|
+
type: string | [string, ...string[]];
|
11917
11949
|
} | undefined;
|
11918
11950
|
otherIdentifier?: {
|
11919
|
-
type: [string, ...string[]];
|
11951
|
+
type: string | [string, ...string[]];
|
11920
11952
|
identifier: string;
|
11921
11953
|
identifierType: string;
|
11922
11954
|
}[] | undefined;
|
@@ -11972,7 +12004,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11972
12004
|
}>]>>;
|
11973
12005
|
email: z.ZodOptional<z.ZodString>;
|
11974
12006
|
address: z.ZodOptional<z.ZodObject<{
|
11975
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
12007
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11976
12008
|
addressCountry: z.ZodOptional<z.ZodString>;
|
11977
12009
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
11978
12010
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -11981,15 +12013,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
11981
12013
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
11982
12014
|
postalCode: z.ZodOptional<z.ZodString>;
|
11983
12015
|
geo: z.ZodOptional<z.ZodObject<{
|
11984
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
12016
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
11985
12017
|
latitude: z.ZodNumber;
|
11986
12018
|
longitude: z.ZodNumber;
|
11987
12019
|
}, "strip", z.ZodTypeAny, {
|
11988
|
-
type: [string, ...string[]];
|
12020
|
+
type: string | [string, ...string[]];
|
11989
12021
|
latitude: number;
|
11990
12022
|
longitude: number;
|
11991
12023
|
}, {
|
11992
|
-
type: [string, ...string[]];
|
12024
|
+
type: string | [string, ...string[]];
|
11993
12025
|
latitude: number;
|
11994
12026
|
longitude: number;
|
11995
12027
|
}>>;
|
@@ -12002,11 +12034,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12002
12034
|
postOfficeBoxNumber?: string | undefined;
|
12003
12035
|
postalCode?: string | undefined;
|
12004
12036
|
geo?: {
|
12005
|
-
type: [string, ...string[]];
|
12037
|
+
type: string | [string, ...string[]];
|
12006
12038
|
latitude: number;
|
12007
12039
|
longitude: number;
|
12008
12040
|
} | undefined;
|
12009
|
-
type: [string, ...string[]];
|
12041
|
+
type: string | [string, ...string[]];
|
12010
12042
|
}, {
|
12011
12043
|
addressCountry?: string | undefined;
|
12012
12044
|
addressCountryCode?: string | undefined;
|
@@ -12016,22 +12048,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12016
12048
|
postOfficeBoxNumber?: string | undefined;
|
12017
12049
|
postalCode?: string | undefined;
|
12018
12050
|
geo?: {
|
12019
|
-
type: [string, ...string[]];
|
12051
|
+
type: string | [string, ...string[]];
|
12020
12052
|
latitude: number;
|
12021
12053
|
longitude: number;
|
12022
12054
|
} | undefined;
|
12023
|
-
type: [string, ...string[]];
|
12055
|
+
type: string | [string, ...string[]];
|
12024
12056
|
}>>;
|
12025
12057
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
12026
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
12058
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
12027
12059
|
identifier: z.ZodString;
|
12028
12060
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
12029
12061
|
}, "strip", z.ZodTypeAny, {
|
12030
|
-
type: [string, ...string[]];
|
12062
|
+
type: string | [string, ...string[]];
|
12031
12063
|
identifier: string;
|
12032
12064
|
identifierType: string;
|
12033
12065
|
}, {
|
12034
|
-
type: [string, ...string[]];
|
12066
|
+
type: string | [string, ...string[]];
|
12035
12067
|
identifier: string;
|
12036
12068
|
identifierType: string;
|
12037
12069
|
}>, "many">>;
|
@@ -12069,14 +12101,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12069
12101
|
postOfficeBoxNumber?: string | undefined;
|
12070
12102
|
postalCode?: string | undefined;
|
12071
12103
|
geo?: {
|
12072
|
-
type: [string, ...string[]];
|
12104
|
+
type: string | [string, ...string[]];
|
12073
12105
|
latitude: number;
|
12074
12106
|
longitude: number;
|
12075
12107
|
} | undefined;
|
12076
|
-
type: [string, ...string[]];
|
12108
|
+
type: string | [string, ...string[]];
|
12077
12109
|
} | undefined;
|
12078
12110
|
otherIdentifier?: {
|
12079
|
-
type: [string, ...string[]];
|
12111
|
+
type: string | [string, ...string[]];
|
12080
12112
|
identifier: string;
|
12081
12113
|
identifierType: string;
|
12082
12114
|
}[] | undefined;
|
@@ -12114,14 +12146,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12114
12146
|
postOfficeBoxNumber?: string | undefined;
|
12115
12147
|
postalCode?: string | undefined;
|
12116
12148
|
geo?: {
|
12117
|
-
type: [string, ...string[]];
|
12149
|
+
type: string | [string, ...string[]];
|
12118
12150
|
latitude: number;
|
12119
12151
|
longitude: number;
|
12120
12152
|
} | undefined;
|
12121
|
-
type: [string, ...string[]];
|
12153
|
+
type: string | [string, ...string[]];
|
12122
12154
|
} | undefined;
|
12123
12155
|
otherIdentifier?: {
|
12124
|
-
type: [string, ...string[]];
|
12156
|
+
type: string | [string, ...string[]];
|
12125
12157
|
identifier: string;
|
12126
12158
|
identifierType: string;
|
12127
12159
|
}[] | undefined;
|
@@ -12324,14 +12356,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12324
12356
|
postOfficeBoxNumber?: string | undefined;
|
12325
12357
|
postalCode?: string | undefined;
|
12326
12358
|
geo?: {
|
12327
|
-
type: [string, ...string[]];
|
12359
|
+
type: string | [string, ...string[]];
|
12328
12360
|
latitude: number;
|
12329
12361
|
longitude: number;
|
12330
12362
|
} | undefined;
|
12331
|
-
type: [string, ...string[]];
|
12363
|
+
type: string | [string, ...string[]];
|
12332
12364
|
} | undefined;
|
12333
12365
|
otherIdentifier?: {
|
12334
|
-
type: [string, ...string[]];
|
12366
|
+
type: string | [string, ...string[]];
|
12335
12367
|
identifier: string;
|
12336
12368
|
identifierType: string;
|
12337
12369
|
}[] | undefined;
|
@@ -12416,14 +12448,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12416
12448
|
postOfficeBoxNumber?: string | undefined;
|
12417
12449
|
postalCode?: string | undefined;
|
12418
12450
|
geo?: {
|
12419
|
-
type: [string, ...string[]];
|
12451
|
+
type: string | [string, ...string[]];
|
12420
12452
|
latitude: number;
|
12421
12453
|
longitude: number;
|
12422
12454
|
} | undefined;
|
12423
|
-
type: [string, ...string[]];
|
12455
|
+
type: string | [string, ...string[]];
|
12424
12456
|
} | undefined;
|
12425
12457
|
otherIdentifier?: {
|
12426
|
-
type: [string, ...string[]];
|
12458
|
+
type: string | [string, ...string[]];
|
12427
12459
|
identifier: string;
|
12428
12460
|
identifierType: string;
|
12429
12461
|
}[] | undefined;
|
@@ -12463,15 +12495,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12463
12495
|
'@language': z.ZodOptional<z.ZodString>;
|
12464
12496
|
name: z.ZodString;
|
12465
12497
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
12466
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
12498
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
12467
12499
|
identifier: z.ZodString;
|
12468
12500
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
12469
12501
|
}, "strip", z.ZodTypeAny, {
|
12470
|
-
type: [string, ...string[]];
|
12502
|
+
type: string | [string, ...string[]];
|
12471
12503
|
identifier: string;
|
12472
12504
|
identifierType: string;
|
12473
12505
|
}, {
|
12474
|
-
type: [string, ...string[]];
|
12506
|
+
type: string | [string, ...string[]];
|
12475
12507
|
identifier: string;
|
12476
12508
|
identifierType: string;
|
12477
12509
|
}>, "many">>;
|
@@ -12737,14 +12769,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12737
12769
|
postOfficeBoxNumber?: string | undefined;
|
12738
12770
|
postalCode?: string | undefined;
|
12739
12771
|
geo?: {
|
12740
|
-
type: [string, ...string[]];
|
12772
|
+
type: string | [string, ...string[]];
|
12741
12773
|
latitude: number;
|
12742
12774
|
longitude: number;
|
12743
12775
|
} | undefined;
|
12744
|
-
type: [string, ...string[]];
|
12776
|
+
type: string | [string, ...string[]];
|
12745
12777
|
} | undefined;
|
12746
12778
|
otherIdentifier?: {
|
12747
|
-
type: [string, ...string[]];
|
12779
|
+
type: string | [string, ...string[]];
|
12748
12780
|
identifier: string;
|
12749
12781
|
identifierType: string;
|
12750
12782
|
}[] | undefined;
|
@@ -12772,7 +12804,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12772
12804
|
id: string;
|
12773
12805
|
} | undefined;
|
12774
12806
|
otherIdentifier?: {
|
12775
|
-
type: [string, ...string[]];
|
12807
|
+
type: string | [string, ...string[]];
|
12776
12808
|
identifier: string;
|
12777
12809
|
identifierType: string;
|
12778
12810
|
}[] | undefined;
|
@@ -12812,14 +12844,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12812
12844
|
postOfficeBoxNumber?: string | undefined;
|
12813
12845
|
postalCode?: string | undefined;
|
12814
12846
|
geo?: {
|
12815
|
-
type: [string, ...string[]];
|
12847
|
+
type: string | [string, ...string[]];
|
12816
12848
|
latitude: number;
|
12817
12849
|
longitude: number;
|
12818
12850
|
} | undefined;
|
12819
|
-
type: [string, ...string[]];
|
12851
|
+
type: string | [string, ...string[]];
|
12820
12852
|
} | undefined;
|
12821
12853
|
otherIdentifier?: {
|
12822
|
-
type: [string, ...string[]];
|
12854
|
+
type: string | [string, ...string[]];
|
12823
12855
|
identifier: string;
|
12824
12856
|
identifierType: string;
|
12825
12857
|
}[] | undefined;
|
@@ -12958,14 +12990,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12958
12990
|
postOfficeBoxNumber?: string | undefined;
|
12959
12991
|
postalCode?: string | undefined;
|
12960
12992
|
geo?: {
|
12961
|
-
type: [string, ...string[]];
|
12993
|
+
type: string | [string, ...string[]];
|
12962
12994
|
latitude: number;
|
12963
12995
|
longitude: number;
|
12964
12996
|
} | undefined;
|
12965
|
-
type: [string, ...string[]];
|
12997
|
+
type: string | [string, ...string[]];
|
12966
12998
|
} | undefined;
|
12967
12999
|
otherIdentifier?: {
|
12968
|
-
type: [string, ...string[]];
|
13000
|
+
type: string | [string, ...string[]];
|
12969
13001
|
identifier: string;
|
12970
13002
|
identifierType: string;
|
12971
13003
|
}[] | undefined;
|
@@ -12993,7 +13025,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
12993
13025
|
id: string;
|
12994
13026
|
} | undefined;
|
12995
13027
|
otherIdentifier?: {
|
12996
|
-
type: [string, ...string[]];
|
13028
|
+
type: string | [string, ...string[]];
|
12997
13029
|
identifier: string;
|
12998
13030
|
identifierType: string;
|
12999
13031
|
}[] | undefined;
|
@@ -13033,14 +13065,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13033
13065
|
postOfficeBoxNumber?: string | undefined;
|
13034
13066
|
postalCode?: string | undefined;
|
13035
13067
|
geo?: {
|
13036
|
-
type: [string, ...string[]];
|
13068
|
+
type: string | [string, ...string[]];
|
13037
13069
|
latitude: number;
|
13038
13070
|
longitude: number;
|
13039
13071
|
} | undefined;
|
13040
|
-
type: [string, ...string[]];
|
13072
|
+
type: string | [string, ...string[]];
|
13041
13073
|
} | undefined;
|
13042
13074
|
otherIdentifier?: {
|
13043
|
-
type: [string, ...string[]];
|
13075
|
+
type: string | [string, ...string[]];
|
13044
13076
|
identifier: string;
|
13045
13077
|
identifierType: string;
|
13046
13078
|
}[] | undefined;
|
@@ -13113,7 +13145,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13113
13145
|
id?: string | undefined;
|
13114
13146
|
};
|
13115
13147
|
}>>;
|
13116
|
-
identifier: z.ZodOptional<z.ZodObject<{
|
13148
|
+
identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
13117
13149
|
type: z.ZodString;
|
13118
13150
|
hashed: z.ZodBoolean;
|
13119
13151
|
identityHash: z.ZodString;
|
@@ -13131,7 +13163,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13131
13163
|
hashed: boolean;
|
13132
13164
|
identityHash: string;
|
13133
13165
|
identityType: string;
|
13134
|
-
}>>;
|
13166
|
+
}>, "many">>;
|
13135
13167
|
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
13136
13168
|
id: z.ZodString;
|
13137
13169
|
type: z.ZodString;
|
@@ -13235,7 +13267,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13235
13267
|
}>]>>;
|
13236
13268
|
email: z.ZodOptional<z.ZodString>;
|
13237
13269
|
address: z.ZodOptional<z.ZodObject<{
|
13238
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
13270
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
13239
13271
|
addressCountry: z.ZodOptional<z.ZodString>;
|
13240
13272
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
13241
13273
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -13244,15 +13276,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13244
13276
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
13245
13277
|
postalCode: z.ZodOptional<z.ZodString>;
|
13246
13278
|
geo: z.ZodOptional<z.ZodObject<{
|
13247
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
13279
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
13248
13280
|
latitude: z.ZodNumber;
|
13249
13281
|
longitude: z.ZodNumber;
|
13250
13282
|
}, "strip", z.ZodTypeAny, {
|
13251
|
-
type: [string, ...string[]];
|
13283
|
+
type: string | [string, ...string[]];
|
13252
13284
|
latitude: number;
|
13253
13285
|
longitude: number;
|
13254
13286
|
}, {
|
13255
|
-
type: [string, ...string[]];
|
13287
|
+
type: string | [string, ...string[]];
|
13256
13288
|
latitude: number;
|
13257
13289
|
longitude: number;
|
13258
13290
|
}>>;
|
@@ -13265,11 +13297,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13265
13297
|
postOfficeBoxNumber?: string | undefined;
|
13266
13298
|
postalCode?: string | undefined;
|
13267
13299
|
geo?: {
|
13268
|
-
type: [string, ...string[]];
|
13300
|
+
type: string | [string, ...string[]];
|
13269
13301
|
latitude: number;
|
13270
13302
|
longitude: number;
|
13271
13303
|
} | undefined;
|
13272
|
-
type: [string, ...string[]];
|
13304
|
+
type: string | [string, ...string[]];
|
13273
13305
|
}, {
|
13274
13306
|
addressCountry?: string | undefined;
|
13275
13307
|
addressCountryCode?: string | undefined;
|
@@ -13279,22 +13311,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13279
13311
|
postOfficeBoxNumber?: string | undefined;
|
13280
13312
|
postalCode?: string | undefined;
|
13281
13313
|
geo?: {
|
13282
|
-
type: [string, ...string[]];
|
13314
|
+
type: string | [string, ...string[]];
|
13283
13315
|
latitude: number;
|
13284
13316
|
longitude: number;
|
13285
13317
|
} | undefined;
|
13286
|
-
type: [string, ...string[]];
|
13318
|
+
type: string | [string, ...string[]];
|
13287
13319
|
}>>;
|
13288
13320
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
13289
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
13321
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
13290
13322
|
identifier: z.ZodString;
|
13291
13323
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
13292
13324
|
}, "strip", z.ZodTypeAny, {
|
13293
|
-
type: [string, ...string[]];
|
13325
|
+
type: string | [string, ...string[]];
|
13294
13326
|
identifier: string;
|
13295
13327
|
identifierType: string;
|
13296
13328
|
}, {
|
13297
|
-
type: [string, ...string[]];
|
13329
|
+
type: string | [string, ...string[]];
|
13298
13330
|
identifier: string;
|
13299
13331
|
identifierType: string;
|
13300
13332
|
}>, "many">>;
|
@@ -13332,14 +13364,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13332
13364
|
postOfficeBoxNumber?: string | undefined;
|
13333
13365
|
postalCode?: string | undefined;
|
13334
13366
|
geo?: {
|
13335
|
-
type: [string, ...string[]];
|
13367
|
+
type: string | [string, ...string[]];
|
13336
13368
|
latitude: number;
|
13337
13369
|
longitude: number;
|
13338
13370
|
} | undefined;
|
13339
|
-
type: [string, ...string[]];
|
13371
|
+
type: string | [string, ...string[]];
|
13340
13372
|
} | undefined;
|
13341
13373
|
otherIdentifier?: {
|
13342
|
-
type: [string, ...string[]];
|
13374
|
+
type: string | [string, ...string[]];
|
13343
13375
|
identifier: string;
|
13344
13376
|
identifierType: string;
|
13345
13377
|
}[] | undefined;
|
@@ -13377,14 +13409,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13377
13409
|
postOfficeBoxNumber?: string | undefined;
|
13378
13410
|
postalCode?: string | undefined;
|
13379
13411
|
geo?: {
|
13380
|
-
type: [string, ...string[]];
|
13412
|
+
type: string | [string, ...string[]];
|
13381
13413
|
latitude: number;
|
13382
13414
|
longitude: number;
|
13383
13415
|
} | undefined;
|
13384
|
-
type: [string, ...string[]];
|
13416
|
+
type: string | [string, ...string[]];
|
13385
13417
|
} | undefined;
|
13386
13418
|
otherIdentifier?: {
|
13387
|
-
type: [string, ...string[]];
|
13419
|
+
type: string | [string, ...string[]];
|
13388
13420
|
identifier: string;
|
13389
13421
|
identifierType: string;
|
13390
13422
|
}[] | undefined;
|
@@ -13410,7 +13442,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13410
13442
|
hashed: boolean;
|
13411
13443
|
identityHash: string;
|
13412
13444
|
identityType: string;
|
13413
|
-
} | undefined;
|
13445
|
+
}[] | undefined;
|
13414
13446
|
image?: string | {
|
13415
13447
|
caption?: string | undefined;
|
13416
13448
|
type: string;
|
@@ -13486,14 +13518,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13486
13518
|
postOfficeBoxNumber?: string | undefined;
|
13487
13519
|
postalCode?: string | undefined;
|
13488
13520
|
geo?: {
|
13489
|
-
type: [string, ...string[]];
|
13521
|
+
type: string | [string, ...string[]];
|
13490
13522
|
latitude: number;
|
13491
13523
|
longitude: number;
|
13492
13524
|
} | undefined;
|
13493
|
-
type: [string, ...string[]];
|
13525
|
+
type: string | [string, ...string[]];
|
13494
13526
|
} | undefined;
|
13495
13527
|
otherIdentifier?: {
|
13496
|
-
type: [string, ...string[]];
|
13528
|
+
type: string | [string, ...string[]];
|
13497
13529
|
identifier: string;
|
13498
13530
|
identifierType: string;
|
13499
13531
|
}[] | undefined;
|
@@ -13521,7 +13553,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13521
13553
|
id: string;
|
13522
13554
|
} | undefined;
|
13523
13555
|
otherIdentifier?: {
|
13524
|
-
type: [string, ...string[]];
|
13556
|
+
type: string | [string, ...string[]];
|
13525
13557
|
identifier: string;
|
13526
13558
|
identifierType: string;
|
13527
13559
|
}[] | undefined;
|
@@ -13561,14 +13593,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13561
13593
|
postOfficeBoxNumber?: string | undefined;
|
13562
13594
|
postalCode?: string | undefined;
|
13563
13595
|
geo?: {
|
13564
|
-
type: [string, ...string[]];
|
13596
|
+
type: string | [string, ...string[]];
|
13565
13597
|
latitude: number;
|
13566
13598
|
longitude: number;
|
13567
13599
|
} | undefined;
|
13568
|
-
type: [string, ...string[]];
|
13600
|
+
type: string | [string, ...string[]];
|
13569
13601
|
} | undefined;
|
13570
13602
|
otherIdentifier?: {
|
13571
|
-
type: [string, ...string[]];
|
13603
|
+
type: string | [string, ...string[]];
|
13572
13604
|
identifier: string;
|
13573
13605
|
identifierType: string;
|
13574
13606
|
}[] | undefined;
|
@@ -13684,14 +13716,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13684
13716
|
postOfficeBoxNumber?: string | undefined;
|
13685
13717
|
postalCode?: string | undefined;
|
13686
13718
|
geo?: {
|
13687
|
-
type: [string, ...string[]];
|
13719
|
+
type: string | [string, ...string[]];
|
13688
13720
|
latitude: number;
|
13689
13721
|
longitude: number;
|
13690
13722
|
} | undefined;
|
13691
|
-
type: [string, ...string[]];
|
13723
|
+
type: string | [string, ...string[]];
|
13692
13724
|
} | undefined;
|
13693
13725
|
otherIdentifier?: {
|
13694
|
-
type: [string, ...string[]];
|
13726
|
+
type: string | [string, ...string[]];
|
13695
13727
|
identifier: string;
|
13696
13728
|
identifierType: string;
|
13697
13729
|
}[] | undefined;
|
@@ -13718,7 +13750,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13718
13750
|
hashed: boolean;
|
13719
13751
|
identityHash: string;
|
13720
13752
|
identityType: string;
|
13721
|
-
} | undefined;
|
13753
|
+
}[] | undefined;
|
13722
13754
|
image?: string | {
|
13723
13755
|
caption?: string | undefined;
|
13724
13756
|
type: string;
|
@@ -13794,14 +13826,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13794
13826
|
postOfficeBoxNumber?: string | undefined;
|
13795
13827
|
postalCode?: string | undefined;
|
13796
13828
|
geo?: {
|
13797
|
-
type: [string, ...string[]];
|
13829
|
+
type: string | [string, ...string[]];
|
13798
13830
|
latitude: number;
|
13799
13831
|
longitude: number;
|
13800
13832
|
} | undefined;
|
13801
|
-
type: [string, ...string[]];
|
13833
|
+
type: string | [string, ...string[]];
|
13802
13834
|
} | undefined;
|
13803
13835
|
otherIdentifier?: {
|
13804
|
-
type: [string, ...string[]];
|
13836
|
+
type: string | [string, ...string[]];
|
13805
13837
|
identifier: string;
|
13806
13838
|
identifierType: string;
|
13807
13839
|
}[] | undefined;
|
@@ -13829,7 +13861,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13829
13861
|
id: string;
|
13830
13862
|
} | undefined;
|
13831
13863
|
otherIdentifier?: {
|
13832
|
-
type: [string, ...string[]];
|
13864
|
+
type: string | [string, ...string[]];
|
13833
13865
|
identifier: string;
|
13834
13866
|
identifierType: string;
|
13835
13867
|
}[] | undefined;
|
@@ -13869,14 +13901,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13869
13901
|
postOfficeBoxNumber?: string | undefined;
|
13870
13902
|
postalCode?: string | undefined;
|
13871
13903
|
geo?: {
|
13872
|
-
type: [string, ...string[]];
|
13904
|
+
type: string | [string, ...string[]];
|
13873
13905
|
latitude: number;
|
13874
13906
|
longitude: number;
|
13875
13907
|
} | undefined;
|
13876
|
-
type: [string, ...string[]];
|
13908
|
+
type: string | [string, ...string[]];
|
13877
13909
|
} | undefined;
|
13878
13910
|
otherIdentifier?: {
|
13879
|
-
type: [string, ...string[]];
|
13911
|
+
type: string | [string, ...string[]];
|
13880
13912
|
identifier: string;
|
13881
13913
|
identifierType: string;
|
13882
13914
|
}[] | undefined;
|
@@ -13992,14 +14024,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
13992
14024
|
postOfficeBoxNumber?: string | undefined;
|
13993
14025
|
postalCode?: string | undefined;
|
13994
14026
|
geo?: {
|
13995
|
-
type: [string, ...string[]];
|
14027
|
+
type: string | [string, ...string[]];
|
13996
14028
|
latitude: number;
|
13997
14029
|
longitude: number;
|
13998
14030
|
} | undefined;
|
13999
|
-
type: [string, ...string[]];
|
14031
|
+
type: string | [string, ...string[]];
|
14000
14032
|
} | undefined;
|
14001
14033
|
otherIdentifier?: {
|
14002
|
-
type: [string, ...string[]];
|
14034
|
+
type: string | [string, ...string[]];
|
14003
14035
|
identifier: string;
|
14004
14036
|
identifierType: string;
|
14005
14037
|
}[] | undefined;
|
@@ -14074,7 +14106,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14074
14106
|
}>]>>;
|
14075
14107
|
email: z.ZodOptional<z.ZodString>;
|
14076
14108
|
address: z.ZodOptional<z.ZodObject<{
|
14077
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14109
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
14078
14110
|
addressCountry: z.ZodOptional<z.ZodString>;
|
14079
14111
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
14080
14112
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -14083,15 +14115,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14083
14115
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
14084
14116
|
postalCode: z.ZodOptional<z.ZodString>;
|
14085
14117
|
geo: z.ZodOptional<z.ZodObject<{
|
14086
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14118
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
14087
14119
|
latitude: z.ZodNumber;
|
14088
14120
|
longitude: z.ZodNumber;
|
14089
14121
|
}, "strip", z.ZodTypeAny, {
|
14090
|
-
type: [string, ...string[]];
|
14122
|
+
type: string | [string, ...string[]];
|
14091
14123
|
latitude: number;
|
14092
14124
|
longitude: number;
|
14093
14125
|
}, {
|
14094
|
-
type: [string, ...string[]];
|
14126
|
+
type: string | [string, ...string[]];
|
14095
14127
|
latitude: number;
|
14096
14128
|
longitude: number;
|
14097
14129
|
}>>;
|
@@ -14104,11 +14136,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14104
14136
|
postOfficeBoxNumber?: string | undefined;
|
14105
14137
|
postalCode?: string | undefined;
|
14106
14138
|
geo?: {
|
14107
|
-
type: [string, ...string[]];
|
14139
|
+
type: string | [string, ...string[]];
|
14108
14140
|
latitude: number;
|
14109
14141
|
longitude: number;
|
14110
14142
|
} | undefined;
|
14111
|
-
type: [string, ...string[]];
|
14143
|
+
type: string | [string, ...string[]];
|
14112
14144
|
}, {
|
14113
14145
|
addressCountry?: string | undefined;
|
14114
14146
|
addressCountryCode?: string | undefined;
|
@@ -14118,22 +14150,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14118
14150
|
postOfficeBoxNumber?: string | undefined;
|
14119
14151
|
postalCode?: string | undefined;
|
14120
14152
|
geo?: {
|
14121
|
-
type: [string, ...string[]];
|
14153
|
+
type: string | [string, ...string[]];
|
14122
14154
|
latitude: number;
|
14123
14155
|
longitude: number;
|
14124
14156
|
} | undefined;
|
14125
|
-
type: [string, ...string[]];
|
14157
|
+
type: string | [string, ...string[]];
|
14126
14158
|
}>>;
|
14127
14159
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14128
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14160
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
14129
14161
|
identifier: z.ZodString;
|
14130
14162
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
14131
14163
|
}, "strip", z.ZodTypeAny, {
|
14132
|
-
type: [string, ...string[]];
|
14164
|
+
type: string | [string, ...string[]];
|
14133
14165
|
identifier: string;
|
14134
14166
|
identifierType: string;
|
14135
14167
|
}, {
|
14136
|
-
type: [string, ...string[]];
|
14168
|
+
type: string | [string, ...string[]];
|
14137
14169
|
identifier: string;
|
14138
14170
|
identifierType: string;
|
14139
14171
|
}>, "many">>;
|
@@ -14171,14 +14203,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14171
14203
|
postOfficeBoxNumber?: string | undefined;
|
14172
14204
|
postalCode?: string | undefined;
|
14173
14205
|
geo?: {
|
14174
|
-
type: [string, ...string[]];
|
14206
|
+
type: string | [string, ...string[]];
|
14175
14207
|
latitude: number;
|
14176
14208
|
longitude: number;
|
14177
14209
|
} | undefined;
|
14178
|
-
type: [string, ...string[]];
|
14210
|
+
type: string | [string, ...string[]];
|
14179
14211
|
} | undefined;
|
14180
14212
|
otherIdentifier?: {
|
14181
|
-
type: [string, ...string[]];
|
14213
|
+
type: string | [string, ...string[]];
|
14182
14214
|
identifier: string;
|
14183
14215
|
identifierType: string;
|
14184
14216
|
}[] | undefined;
|
@@ -14216,14 +14248,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14216
14248
|
postOfficeBoxNumber?: string | undefined;
|
14217
14249
|
postalCode?: string | undefined;
|
14218
14250
|
geo?: {
|
14219
|
-
type: [string, ...string[]];
|
14251
|
+
type: string | [string, ...string[]];
|
14220
14252
|
latitude: number;
|
14221
14253
|
longitude: number;
|
14222
14254
|
} | undefined;
|
14223
|
-
type: [string, ...string[]];
|
14255
|
+
type: string | [string, ...string[]];
|
14224
14256
|
} | undefined;
|
14225
14257
|
otherIdentifier?: {
|
14226
|
-
type: [string, ...string[]];
|
14258
|
+
type: string | [string, ...string[]];
|
14227
14259
|
identifier: string;
|
14228
14260
|
identifierType: string;
|
14229
14261
|
}[] | undefined;
|
@@ -14279,7 +14311,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14279
14311
|
}>]>>;
|
14280
14312
|
email: z.ZodOptional<z.ZodString>;
|
14281
14313
|
address: z.ZodOptional<z.ZodObject<{
|
14282
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14314
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
14283
14315
|
addressCountry: z.ZodOptional<z.ZodString>;
|
14284
14316
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
14285
14317
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -14288,15 +14320,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14288
14320
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
14289
14321
|
postalCode: z.ZodOptional<z.ZodString>;
|
14290
14322
|
geo: z.ZodOptional<z.ZodObject<{
|
14291
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14323
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
14292
14324
|
latitude: z.ZodNumber;
|
14293
14325
|
longitude: z.ZodNumber;
|
14294
14326
|
}, "strip", z.ZodTypeAny, {
|
14295
|
-
type: [string, ...string[]];
|
14327
|
+
type: string | [string, ...string[]];
|
14296
14328
|
latitude: number;
|
14297
14329
|
longitude: number;
|
14298
14330
|
}, {
|
14299
|
-
type: [string, ...string[]];
|
14331
|
+
type: string | [string, ...string[]];
|
14300
14332
|
latitude: number;
|
14301
14333
|
longitude: number;
|
14302
14334
|
}>>;
|
@@ -14309,11 +14341,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14309
14341
|
postOfficeBoxNumber?: string | undefined;
|
14310
14342
|
postalCode?: string | undefined;
|
14311
14343
|
geo?: {
|
14312
|
-
type: [string, ...string[]];
|
14344
|
+
type: string | [string, ...string[]];
|
14313
14345
|
latitude: number;
|
14314
14346
|
longitude: number;
|
14315
14347
|
} | undefined;
|
14316
|
-
type: [string, ...string[]];
|
14348
|
+
type: string | [string, ...string[]];
|
14317
14349
|
}, {
|
14318
14350
|
addressCountry?: string | undefined;
|
14319
14351
|
addressCountryCode?: string | undefined;
|
@@ -14323,22 +14355,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14323
14355
|
postOfficeBoxNumber?: string | undefined;
|
14324
14356
|
postalCode?: string | undefined;
|
14325
14357
|
geo?: {
|
14326
|
-
type: [string, ...string[]];
|
14358
|
+
type: string | [string, ...string[]];
|
14327
14359
|
latitude: number;
|
14328
14360
|
longitude: number;
|
14329
14361
|
} | undefined;
|
14330
|
-
type: [string, ...string[]];
|
14362
|
+
type: string | [string, ...string[]];
|
14331
14363
|
}>>;
|
14332
14364
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14333
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14365
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
14334
14366
|
identifier: z.ZodString;
|
14335
14367
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
14336
14368
|
}, "strip", z.ZodTypeAny, {
|
14337
|
-
type: [string, ...string[]];
|
14369
|
+
type: string | [string, ...string[]];
|
14338
14370
|
identifier: string;
|
14339
14371
|
identifierType: string;
|
14340
14372
|
}, {
|
14341
|
-
type: [string, ...string[]];
|
14373
|
+
type: string | [string, ...string[]];
|
14342
14374
|
identifier: string;
|
14343
14375
|
identifierType: string;
|
14344
14376
|
}>, "many">>;
|
@@ -14376,14 +14408,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14376
14408
|
postOfficeBoxNumber?: string | undefined;
|
14377
14409
|
postalCode?: string | undefined;
|
14378
14410
|
geo?: {
|
14379
|
-
type: [string, ...string[]];
|
14411
|
+
type: string | [string, ...string[]];
|
14380
14412
|
latitude: number;
|
14381
14413
|
longitude: number;
|
14382
14414
|
} | undefined;
|
14383
|
-
type: [string, ...string[]];
|
14415
|
+
type: string | [string, ...string[]];
|
14384
14416
|
} | undefined;
|
14385
14417
|
otherIdentifier?: {
|
14386
|
-
type: [string, ...string[]];
|
14418
|
+
type: string | [string, ...string[]];
|
14387
14419
|
identifier: string;
|
14388
14420
|
identifierType: string;
|
14389
14421
|
}[] | undefined;
|
@@ -14421,14 +14453,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14421
14453
|
postOfficeBoxNumber?: string | undefined;
|
14422
14454
|
postalCode?: string | undefined;
|
14423
14455
|
geo?: {
|
14424
|
-
type: [string, ...string[]];
|
14456
|
+
type: string | [string, ...string[]];
|
14425
14457
|
latitude: number;
|
14426
14458
|
longitude: number;
|
14427
14459
|
} | undefined;
|
14428
|
-
type: [string, ...string[]];
|
14460
|
+
type: string | [string, ...string[]];
|
14429
14461
|
} | undefined;
|
14430
14462
|
otherIdentifier?: {
|
14431
|
-
type: [string, ...string[]];
|
14463
|
+
type: string | [string, ...string[]];
|
14432
14464
|
identifier: string;
|
14433
14465
|
identifierType: string;
|
14434
14466
|
}[] | undefined;
|
@@ -14631,14 +14663,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14631
14663
|
postOfficeBoxNumber?: string | undefined;
|
14632
14664
|
postalCode?: string | undefined;
|
14633
14665
|
geo?: {
|
14634
|
-
type: [string, ...string[]];
|
14666
|
+
type: string | [string, ...string[]];
|
14635
14667
|
latitude: number;
|
14636
14668
|
longitude: number;
|
14637
14669
|
} | undefined;
|
14638
|
-
type: [string, ...string[]];
|
14670
|
+
type: string | [string, ...string[]];
|
14639
14671
|
} | undefined;
|
14640
14672
|
otherIdentifier?: {
|
14641
|
-
type: [string, ...string[]];
|
14673
|
+
type: string | [string, ...string[]];
|
14642
14674
|
identifier: string;
|
14643
14675
|
identifierType: string;
|
14644
14676
|
}[] | undefined;
|
@@ -14723,14 +14755,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14723
14755
|
postOfficeBoxNumber?: string | undefined;
|
14724
14756
|
postalCode?: string | undefined;
|
14725
14757
|
geo?: {
|
14726
|
-
type: [string, ...string[]];
|
14758
|
+
type: string | [string, ...string[]];
|
14727
14759
|
latitude: number;
|
14728
14760
|
longitude: number;
|
14729
14761
|
} | undefined;
|
14730
|
-
type: [string, ...string[]];
|
14762
|
+
type: string | [string, ...string[]];
|
14731
14763
|
} | undefined;
|
14732
14764
|
otherIdentifier?: {
|
14733
|
-
type: [string, ...string[]];
|
14765
|
+
type: string | [string, ...string[]];
|
14734
14766
|
identifier: string;
|
14735
14767
|
identifierType: string;
|
14736
14768
|
}[] | undefined;
|
@@ -14770,15 +14802,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
14770
14802
|
'@language': z.ZodOptional<z.ZodString>;
|
14771
14803
|
name: z.ZodString;
|
14772
14804
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
14773
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
14805
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
14774
14806
|
identifier: z.ZodString;
|
14775
14807
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
14776
14808
|
}, "strip", z.ZodTypeAny, {
|
14777
|
-
type: [string, ...string[]];
|
14809
|
+
type: string | [string, ...string[]];
|
14778
14810
|
identifier: string;
|
14779
14811
|
identifierType: string;
|
14780
14812
|
}, {
|
14781
|
-
type: [string, ...string[]];
|
14813
|
+
type: string | [string, ...string[]];
|
14782
14814
|
identifier: string;
|
14783
14815
|
identifierType: string;
|
14784
14816
|
}>, "many">>;
|
@@ -15044,14 +15076,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15044
15076
|
postOfficeBoxNumber?: string | undefined;
|
15045
15077
|
postalCode?: string | undefined;
|
15046
15078
|
geo?: {
|
15047
|
-
type: [string, ...string[]];
|
15079
|
+
type: string | [string, ...string[]];
|
15048
15080
|
latitude: number;
|
15049
15081
|
longitude: number;
|
15050
15082
|
} | undefined;
|
15051
|
-
type: [string, ...string[]];
|
15083
|
+
type: string | [string, ...string[]];
|
15052
15084
|
} | undefined;
|
15053
15085
|
otherIdentifier?: {
|
15054
|
-
type: [string, ...string[]];
|
15086
|
+
type: string | [string, ...string[]];
|
15055
15087
|
identifier: string;
|
15056
15088
|
identifierType: string;
|
15057
15089
|
}[] | undefined;
|
@@ -15079,7 +15111,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15079
15111
|
id: string;
|
15080
15112
|
} | undefined;
|
15081
15113
|
otherIdentifier?: {
|
15082
|
-
type: [string, ...string[]];
|
15114
|
+
type: string | [string, ...string[]];
|
15083
15115
|
identifier: string;
|
15084
15116
|
identifierType: string;
|
15085
15117
|
}[] | undefined;
|
@@ -15119,14 +15151,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15119
15151
|
postOfficeBoxNumber?: string | undefined;
|
15120
15152
|
postalCode?: string | undefined;
|
15121
15153
|
geo?: {
|
15122
|
-
type: [string, ...string[]];
|
15154
|
+
type: string | [string, ...string[]];
|
15123
15155
|
latitude: number;
|
15124
15156
|
longitude: number;
|
15125
15157
|
} | undefined;
|
15126
|
-
type: [string, ...string[]];
|
15158
|
+
type: string | [string, ...string[]];
|
15127
15159
|
} | undefined;
|
15128
15160
|
otherIdentifier?: {
|
15129
|
-
type: [string, ...string[]];
|
15161
|
+
type: string | [string, ...string[]];
|
15130
15162
|
identifier: string;
|
15131
15163
|
identifierType: string;
|
15132
15164
|
}[] | undefined;
|
@@ -15265,14 +15297,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15265
15297
|
postOfficeBoxNumber?: string | undefined;
|
15266
15298
|
postalCode?: string | undefined;
|
15267
15299
|
geo?: {
|
15268
|
-
type: [string, ...string[]];
|
15300
|
+
type: string | [string, ...string[]];
|
15269
15301
|
latitude: number;
|
15270
15302
|
longitude: number;
|
15271
15303
|
} | undefined;
|
15272
|
-
type: [string, ...string[]];
|
15304
|
+
type: string | [string, ...string[]];
|
15273
15305
|
} | undefined;
|
15274
15306
|
otherIdentifier?: {
|
15275
|
-
type: [string, ...string[]];
|
15307
|
+
type: string | [string, ...string[]];
|
15276
15308
|
identifier: string;
|
15277
15309
|
identifierType: string;
|
15278
15310
|
}[] | undefined;
|
@@ -15300,7 +15332,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15300
15332
|
id: string;
|
15301
15333
|
} | undefined;
|
15302
15334
|
otherIdentifier?: {
|
15303
|
-
type: [string, ...string[]];
|
15335
|
+
type: string | [string, ...string[]];
|
15304
15336
|
identifier: string;
|
15305
15337
|
identifierType: string;
|
15306
15338
|
}[] | undefined;
|
@@ -15340,14 +15372,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15340
15372
|
postOfficeBoxNumber?: string | undefined;
|
15341
15373
|
postalCode?: string | undefined;
|
15342
15374
|
geo?: {
|
15343
|
-
type: [string, ...string[]];
|
15375
|
+
type: string | [string, ...string[]];
|
15344
15376
|
latitude: number;
|
15345
15377
|
longitude: number;
|
15346
15378
|
} | undefined;
|
15347
|
-
type: [string, ...string[]];
|
15379
|
+
type: string | [string, ...string[]];
|
15348
15380
|
} | undefined;
|
15349
15381
|
otherIdentifier?: {
|
15350
|
-
type: [string, ...string[]];
|
15382
|
+
type: string | [string, ...string[]];
|
15351
15383
|
identifier: string;
|
15352
15384
|
identifierType: string;
|
15353
15385
|
}[] | undefined;
|
@@ -15420,7 +15452,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15420
15452
|
id?: string | undefined;
|
15421
15453
|
};
|
15422
15454
|
}>>;
|
15423
|
-
identifier: z.ZodOptional<z.ZodObject<{
|
15455
|
+
identifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
15424
15456
|
type: z.ZodString;
|
15425
15457
|
hashed: z.ZodBoolean;
|
15426
15458
|
identityHash: z.ZodString;
|
@@ -15438,7 +15470,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15438
15470
|
hashed: boolean;
|
15439
15471
|
identityHash: string;
|
15440
15472
|
identityType: string;
|
15441
|
-
}>>;
|
15473
|
+
}>, "many">>;
|
15442
15474
|
image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
15443
15475
|
id: z.ZodString;
|
15444
15476
|
type: z.ZodString;
|
@@ -15542,7 +15574,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15542
15574
|
}>]>>;
|
15543
15575
|
email: z.ZodOptional<z.ZodString>;
|
15544
15576
|
address: z.ZodOptional<z.ZodObject<{
|
15545
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
15577
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
15546
15578
|
addressCountry: z.ZodOptional<z.ZodString>;
|
15547
15579
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
15548
15580
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -15551,15 +15583,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15551
15583
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
15552
15584
|
postalCode: z.ZodOptional<z.ZodString>;
|
15553
15585
|
geo: z.ZodOptional<z.ZodObject<{
|
15554
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
15586
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
15555
15587
|
latitude: z.ZodNumber;
|
15556
15588
|
longitude: z.ZodNumber;
|
15557
15589
|
}, "strip", z.ZodTypeAny, {
|
15558
|
-
type: [string, ...string[]];
|
15590
|
+
type: string | [string, ...string[]];
|
15559
15591
|
latitude: number;
|
15560
15592
|
longitude: number;
|
15561
15593
|
}, {
|
15562
|
-
type: [string, ...string[]];
|
15594
|
+
type: string | [string, ...string[]];
|
15563
15595
|
latitude: number;
|
15564
15596
|
longitude: number;
|
15565
15597
|
}>>;
|
@@ -15572,11 +15604,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15572
15604
|
postOfficeBoxNumber?: string | undefined;
|
15573
15605
|
postalCode?: string | undefined;
|
15574
15606
|
geo?: {
|
15575
|
-
type: [string, ...string[]];
|
15607
|
+
type: string | [string, ...string[]];
|
15576
15608
|
latitude: number;
|
15577
15609
|
longitude: number;
|
15578
15610
|
} | undefined;
|
15579
|
-
type: [string, ...string[]];
|
15611
|
+
type: string | [string, ...string[]];
|
15580
15612
|
}, {
|
15581
15613
|
addressCountry?: string | undefined;
|
15582
15614
|
addressCountryCode?: string | undefined;
|
@@ -15586,22 +15618,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15586
15618
|
postOfficeBoxNumber?: string | undefined;
|
15587
15619
|
postalCode?: string | undefined;
|
15588
15620
|
geo?: {
|
15589
|
-
type: [string, ...string[]];
|
15621
|
+
type: string | [string, ...string[]];
|
15590
15622
|
latitude: number;
|
15591
15623
|
longitude: number;
|
15592
15624
|
} | undefined;
|
15593
|
-
type: [string, ...string[]];
|
15625
|
+
type: string | [string, ...string[]];
|
15594
15626
|
}>>;
|
15595
15627
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
15596
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
15628
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
15597
15629
|
identifier: z.ZodString;
|
15598
15630
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
15599
15631
|
}, "strip", z.ZodTypeAny, {
|
15600
|
-
type: [string, ...string[]];
|
15632
|
+
type: string | [string, ...string[]];
|
15601
15633
|
identifier: string;
|
15602
15634
|
identifierType: string;
|
15603
15635
|
}, {
|
15604
|
-
type: [string, ...string[]];
|
15636
|
+
type: string | [string, ...string[]];
|
15605
15637
|
identifier: string;
|
15606
15638
|
identifierType: string;
|
15607
15639
|
}>, "many">>;
|
@@ -15639,14 +15671,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15639
15671
|
postOfficeBoxNumber?: string | undefined;
|
15640
15672
|
postalCode?: string | undefined;
|
15641
15673
|
geo?: {
|
15642
|
-
type: [string, ...string[]];
|
15674
|
+
type: string | [string, ...string[]];
|
15643
15675
|
latitude: number;
|
15644
15676
|
longitude: number;
|
15645
15677
|
} | undefined;
|
15646
|
-
type: [string, ...string[]];
|
15678
|
+
type: string | [string, ...string[]];
|
15647
15679
|
} | undefined;
|
15648
15680
|
otherIdentifier?: {
|
15649
|
-
type: [string, ...string[]];
|
15681
|
+
type: string | [string, ...string[]];
|
15650
15682
|
identifier: string;
|
15651
15683
|
identifierType: string;
|
15652
15684
|
}[] | undefined;
|
@@ -15684,14 +15716,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15684
15716
|
postOfficeBoxNumber?: string | undefined;
|
15685
15717
|
postalCode?: string | undefined;
|
15686
15718
|
geo?: {
|
15687
|
-
type: [string, ...string[]];
|
15719
|
+
type: string | [string, ...string[]];
|
15688
15720
|
latitude: number;
|
15689
15721
|
longitude: number;
|
15690
15722
|
} | undefined;
|
15691
|
-
type: [string, ...string[]];
|
15723
|
+
type: string | [string, ...string[]];
|
15692
15724
|
} | undefined;
|
15693
15725
|
otherIdentifier?: {
|
15694
|
-
type: [string, ...string[]];
|
15726
|
+
type: string | [string, ...string[]];
|
15695
15727
|
identifier: string;
|
15696
15728
|
identifierType: string;
|
15697
15729
|
}[] | undefined;
|
@@ -15717,7 +15749,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15717
15749
|
hashed: boolean;
|
15718
15750
|
identityHash: string;
|
15719
15751
|
identityType: string;
|
15720
|
-
} | undefined;
|
15752
|
+
}[] | undefined;
|
15721
15753
|
image?: string | {
|
15722
15754
|
caption?: string | undefined;
|
15723
15755
|
type: string;
|
@@ -15793,14 +15825,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15793
15825
|
postOfficeBoxNumber?: string | undefined;
|
15794
15826
|
postalCode?: string | undefined;
|
15795
15827
|
geo?: {
|
15796
|
-
type: [string, ...string[]];
|
15828
|
+
type: string | [string, ...string[]];
|
15797
15829
|
latitude: number;
|
15798
15830
|
longitude: number;
|
15799
15831
|
} | undefined;
|
15800
|
-
type: [string, ...string[]];
|
15832
|
+
type: string | [string, ...string[]];
|
15801
15833
|
} | undefined;
|
15802
15834
|
otherIdentifier?: {
|
15803
|
-
type: [string, ...string[]];
|
15835
|
+
type: string | [string, ...string[]];
|
15804
15836
|
identifier: string;
|
15805
15837
|
identifierType: string;
|
15806
15838
|
}[] | undefined;
|
@@ -15828,7 +15860,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15828
15860
|
id: string;
|
15829
15861
|
} | undefined;
|
15830
15862
|
otherIdentifier?: {
|
15831
|
-
type: [string, ...string[]];
|
15863
|
+
type: string | [string, ...string[]];
|
15832
15864
|
identifier: string;
|
15833
15865
|
identifierType: string;
|
15834
15866
|
}[] | undefined;
|
@@ -15868,14 +15900,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15868
15900
|
postOfficeBoxNumber?: string | undefined;
|
15869
15901
|
postalCode?: string | undefined;
|
15870
15902
|
geo?: {
|
15871
|
-
type: [string, ...string[]];
|
15903
|
+
type: string | [string, ...string[]];
|
15872
15904
|
latitude: number;
|
15873
15905
|
longitude: number;
|
15874
15906
|
} | undefined;
|
15875
|
-
type: [string, ...string[]];
|
15907
|
+
type: string | [string, ...string[]];
|
15876
15908
|
} | undefined;
|
15877
15909
|
otherIdentifier?: {
|
15878
|
-
type: [string, ...string[]];
|
15910
|
+
type: string | [string, ...string[]];
|
15879
15911
|
identifier: string;
|
15880
15912
|
identifierType: string;
|
15881
15913
|
}[] | undefined;
|
@@ -15991,14 +16023,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
15991
16023
|
postOfficeBoxNumber?: string | undefined;
|
15992
16024
|
postalCode?: string | undefined;
|
15993
16025
|
geo?: {
|
15994
|
-
type: [string, ...string[]];
|
16026
|
+
type: string | [string, ...string[]];
|
15995
16027
|
latitude: number;
|
15996
16028
|
longitude: number;
|
15997
16029
|
} | undefined;
|
15998
|
-
type: [string, ...string[]];
|
16030
|
+
type: string | [string, ...string[]];
|
15999
16031
|
} | undefined;
|
16000
16032
|
otherIdentifier?: {
|
16001
|
-
type: [string, ...string[]];
|
16033
|
+
type: string | [string, ...string[]];
|
16002
16034
|
identifier: string;
|
16003
16035
|
identifierType: string;
|
16004
16036
|
}[] | undefined;
|
@@ -16025,7 +16057,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16025
16057
|
hashed: boolean;
|
16026
16058
|
identityHash: string;
|
16027
16059
|
identityType: string;
|
16028
|
-
} | undefined;
|
16060
|
+
}[] | undefined;
|
16029
16061
|
image?: string | {
|
16030
16062
|
caption?: string | undefined;
|
16031
16063
|
type: string;
|
@@ -16101,14 +16133,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16101
16133
|
postOfficeBoxNumber?: string | undefined;
|
16102
16134
|
postalCode?: string | undefined;
|
16103
16135
|
geo?: {
|
16104
|
-
type: [string, ...string[]];
|
16136
|
+
type: string | [string, ...string[]];
|
16105
16137
|
latitude: number;
|
16106
16138
|
longitude: number;
|
16107
16139
|
} | undefined;
|
16108
|
-
type: [string, ...string[]];
|
16140
|
+
type: string | [string, ...string[]];
|
16109
16141
|
} | undefined;
|
16110
16142
|
otherIdentifier?: {
|
16111
|
-
type: [string, ...string[]];
|
16143
|
+
type: string | [string, ...string[]];
|
16112
16144
|
identifier: string;
|
16113
16145
|
identifierType: string;
|
16114
16146
|
}[] | undefined;
|
@@ -16136,7 +16168,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16136
16168
|
id: string;
|
16137
16169
|
} | undefined;
|
16138
16170
|
otherIdentifier?: {
|
16139
|
-
type: [string, ...string[]];
|
16171
|
+
type: string | [string, ...string[]];
|
16140
16172
|
identifier: string;
|
16141
16173
|
identifierType: string;
|
16142
16174
|
}[] | undefined;
|
@@ -16176,14 +16208,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16176
16208
|
postOfficeBoxNumber?: string | undefined;
|
16177
16209
|
postalCode?: string | undefined;
|
16178
16210
|
geo?: {
|
16179
|
-
type: [string, ...string[]];
|
16211
|
+
type: string | [string, ...string[]];
|
16180
16212
|
latitude: number;
|
16181
16213
|
longitude: number;
|
16182
16214
|
} | undefined;
|
16183
|
-
type: [string, ...string[]];
|
16215
|
+
type: string | [string, ...string[]];
|
16184
16216
|
} | undefined;
|
16185
16217
|
otherIdentifier?: {
|
16186
|
-
type: [string, ...string[]];
|
16218
|
+
type: string | [string, ...string[]];
|
16187
16219
|
identifier: string;
|
16188
16220
|
identifierType: string;
|
16189
16221
|
}[] | undefined;
|
@@ -16299,14 +16331,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16299
16331
|
postOfficeBoxNumber?: string | undefined;
|
16300
16332
|
postalCode?: string | undefined;
|
16301
16333
|
geo?: {
|
16302
|
-
type: [string, ...string[]];
|
16334
|
+
type: string | [string, ...string[]];
|
16303
16335
|
latitude: number;
|
16304
16336
|
longitude: number;
|
16305
16337
|
} | undefined;
|
16306
|
-
type: [string, ...string[]];
|
16338
|
+
type: string | [string, ...string[]];
|
16307
16339
|
} | undefined;
|
16308
16340
|
otherIdentifier?: {
|
16309
|
-
type: [string, ...string[]];
|
16341
|
+
type: string | [string, ...string[]];
|
16310
16342
|
identifier: string;
|
16311
16343
|
identifierType: string;
|
16312
16344
|
}[] | undefined;
|
@@ -16351,7 +16383,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16351
16383
|
}>]>>;
|
16352
16384
|
email: z.ZodOptional<z.ZodString>;
|
16353
16385
|
address: z.ZodOptional<z.ZodObject<{
|
16354
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
16386
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
16355
16387
|
addressCountry: z.ZodOptional<z.ZodString>;
|
16356
16388
|
addressCountryCode: z.ZodOptional<z.ZodString>;
|
16357
16389
|
addressRegion: z.ZodOptional<z.ZodString>;
|
@@ -16360,15 +16392,15 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16360
16392
|
postOfficeBoxNumber: z.ZodOptional<z.ZodString>;
|
16361
16393
|
postalCode: z.ZodOptional<z.ZodString>;
|
16362
16394
|
geo: z.ZodOptional<z.ZodObject<{
|
16363
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
16395
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
16364
16396
|
latitude: z.ZodNumber;
|
16365
16397
|
longitude: z.ZodNumber;
|
16366
16398
|
}, "strip", z.ZodTypeAny, {
|
16367
|
-
type: [string, ...string[]];
|
16399
|
+
type: string | [string, ...string[]];
|
16368
16400
|
latitude: number;
|
16369
16401
|
longitude: number;
|
16370
16402
|
}, {
|
16371
|
-
type: [string, ...string[]];
|
16403
|
+
type: string | [string, ...string[]];
|
16372
16404
|
latitude: number;
|
16373
16405
|
longitude: number;
|
16374
16406
|
}>>;
|
@@ -16381,11 +16413,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16381
16413
|
postOfficeBoxNumber?: string | undefined;
|
16382
16414
|
postalCode?: string | undefined;
|
16383
16415
|
geo?: {
|
16384
|
-
type: [string, ...string[]];
|
16416
|
+
type: string | [string, ...string[]];
|
16385
16417
|
latitude: number;
|
16386
16418
|
longitude: number;
|
16387
16419
|
} | undefined;
|
16388
|
-
type: [string, ...string[]];
|
16420
|
+
type: string | [string, ...string[]];
|
16389
16421
|
}, {
|
16390
16422
|
addressCountry?: string | undefined;
|
16391
16423
|
addressCountryCode?: string | undefined;
|
@@ -16395,22 +16427,22 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16395
16427
|
postOfficeBoxNumber?: string | undefined;
|
16396
16428
|
postalCode?: string | undefined;
|
16397
16429
|
geo?: {
|
16398
|
-
type: [string, ...string[]];
|
16430
|
+
type: string | [string, ...string[]];
|
16399
16431
|
latitude: number;
|
16400
16432
|
longitude: number;
|
16401
16433
|
} | undefined;
|
16402
|
-
type: [string, ...string[]];
|
16434
|
+
type: string | [string, ...string[]];
|
16403
16435
|
}>>;
|
16404
16436
|
otherIdentifier: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
16405
|
-
type: z.ZodArray<z.ZodString, "atleastone">;
|
16437
|
+
type: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "atleastone">]>;
|
16406
16438
|
identifier: z.ZodString;
|
16407
16439
|
identifierType: z.ZodUnion<[z.ZodEnum<["sourcedId", "systemId", "productId", "userName", "accountId", "emailAddress", "nationalIdentityNumber", "isbn", "issn", "lisSourcedId", "oneRosterSourcedId", "sisSourcedId", "ltiContextId", "ltiDeploymentId", "ltiToolId", "ltiPlatformId", "ltiUserId", "identifier"]>, z.ZodString]>;
|
16408
16440
|
}, "strip", z.ZodTypeAny, {
|
16409
|
-
type: [string, ...string[]];
|
16441
|
+
type: string | [string, ...string[]];
|
16410
16442
|
identifier: string;
|
16411
16443
|
identifierType: string;
|
16412
16444
|
}, {
|
16413
|
-
type: [string, ...string[]];
|
16445
|
+
type: string | [string, ...string[]];
|
16414
16446
|
identifier: string;
|
16415
16447
|
identifierType: string;
|
16416
16448
|
}>, "many">>;
|
@@ -16448,14 +16480,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16448
16480
|
postOfficeBoxNumber?: string | undefined;
|
16449
16481
|
postalCode?: string | undefined;
|
16450
16482
|
geo?: {
|
16451
|
-
type: [string, ...string[]];
|
16483
|
+
type: string | [string, ...string[]];
|
16452
16484
|
latitude: number;
|
16453
16485
|
longitude: number;
|
16454
16486
|
} | undefined;
|
16455
|
-
type: [string, ...string[]];
|
16487
|
+
type: string | [string, ...string[]];
|
16456
16488
|
} | undefined;
|
16457
16489
|
otherIdentifier?: {
|
16458
|
-
type: [string, ...string[]];
|
16490
|
+
type: string | [string, ...string[]];
|
16459
16491
|
identifier: string;
|
16460
16492
|
identifierType: string;
|
16461
16493
|
}[] | undefined;
|
@@ -16493,14 +16525,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16493
16525
|
postOfficeBoxNumber?: string | undefined;
|
16494
16526
|
postalCode?: string | undefined;
|
16495
16527
|
geo?: {
|
16496
|
-
type: [string, ...string[]];
|
16528
|
+
type: string | [string, ...string[]];
|
16497
16529
|
latitude: number;
|
16498
16530
|
longitude: number;
|
16499
16531
|
} | undefined;
|
16500
|
-
type: [string, ...string[]];
|
16532
|
+
type: string | [string, ...string[]];
|
16501
16533
|
} | undefined;
|
16502
16534
|
otherIdentifier?: {
|
16503
|
-
type: [string, ...string[]];
|
16535
|
+
type: string | [string, ...string[]];
|
16504
16536
|
identifier: string;
|
16505
16537
|
identifierType: string;
|
16506
16538
|
}[] | undefined;
|
@@ -16609,14 +16641,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16609
16641
|
postOfficeBoxNumber?: string | undefined;
|
16610
16642
|
postalCode?: string | undefined;
|
16611
16643
|
geo?: {
|
16612
|
-
type: [string, ...string[]];
|
16644
|
+
type: string | [string, ...string[]];
|
16613
16645
|
latitude: number;
|
16614
16646
|
longitude: number;
|
16615
16647
|
} | undefined;
|
16616
|
-
type: [string, ...string[]];
|
16648
|
+
type: string | [string, ...string[]];
|
16617
16649
|
} | undefined;
|
16618
16650
|
otherIdentifier?: {
|
16619
|
-
type: [string, ...string[]];
|
16651
|
+
type: string | [string, ...string[]];
|
16620
16652
|
identifier: string;
|
16621
16653
|
identifierType: string;
|
16622
16654
|
}[] | undefined;
|
@@ -16682,14 +16714,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16682
16714
|
postOfficeBoxNumber?: string | undefined;
|
16683
16715
|
postalCode?: string | undefined;
|
16684
16716
|
geo?: {
|
16685
|
-
type: [string, ...string[]];
|
16717
|
+
type: string | [string, ...string[]];
|
16686
16718
|
latitude: number;
|
16687
16719
|
longitude: number;
|
16688
16720
|
} | undefined;
|
16689
|
-
type: [string, ...string[]];
|
16721
|
+
type: string | [string, ...string[]];
|
16690
16722
|
} | undefined;
|
16691
16723
|
otherIdentifier?: {
|
16692
|
-
type: [string, ...string[]];
|
16724
|
+
type: string | [string, ...string[]];
|
16693
16725
|
identifier: string;
|
16694
16726
|
identifierType: string;
|
16695
16727
|
}[] | undefined;
|
@@ -16848,14 +16880,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16848
16880
|
postOfficeBoxNumber?: string | undefined;
|
16849
16881
|
postalCode?: string | undefined;
|
16850
16882
|
geo?: {
|
16851
|
-
type: [string, ...string[]];
|
16883
|
+
type: string | [string, ...string[]];
|
16852
16884
|
latitude: number;
|
16853
16885
|
longitude: number;
|
16854
16886
|
} | undefined;
|
16855
|
-
type: [string, ...string[]];
|
16887
|
+
type: string | [string, ...string[]];
|
16856
16888
|
} | undefined;
|
16857
16889
|
otherIdentifier?: {
|
16858
|
-
type: [string, ...string[]];
|
16890
|
+
type: string | [string, ...string[]];
|
16859
16891
|
identifier: string;
|
16860
16892
|
identifierType: string;
|
16861
16893
|
}[] | undefined;
|
@@ -16879,7 +16911,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16879
16911
|
id?: string | undefined;
|
16880
16912
|
}[];
|
16881
16913
|
}[] | undefined;
|
16882
|
-
image?: string |
|
16914
|
+
image?: string | {
|
16915
|
+
caption?: string | undefined;
|
16916
|
+
type: string;
|
16917
|
+
id: string;
|
16918
|
+
} | undefined;
|
16883
16919
|
expirationDate?: string | undefined;
|
16884
16920
|
credentialStatus?: {
|
16885
16921
|
type: string;
|
@@ -16930,14 +16966,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16930
16966
|
postOfficeBoxNumber?: string | undefined;
|
16931
16967
|
postalCode?: string | undefined;
|
16932
16968
|
geo?: {
|
16933
|
-
type: [string, ...string[]];
|
16969
|
+
type: string | [string, ...string[]];
|
16934
16970
|
latitude: number;
|
16935
16971
|
longitude: number;
|
16936
16972
|
} | undefined;
|
16937
|
-
type: [string, ...string[]];
|
16973
|
+
type: string | [string, ...string[]];
|
16938
16974
|
} | undefined;
|
16939
16975
|
otherIdentifier?: {
|
16940
|
-
type: [string, ...string[]];
|
16976
|
+
type: string | [string, ...string[]];
|
16941
16977
|
identifier: string;
|
16942
16978
|
identifierType: string;
|
16943
16979
|
}[] | undefined;
|
@@ -16963,7 +16999,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
16963
16999
|
hashed: boolean;
|
16964
17000
|
identityHash: string;
|
16965
17001
|
identityType: string;
|
16966
|
-
} | undefined;
|
17002
|
+
}[] | undefined;
|
16967
17003
|
image?: string | {
|
16968
17004
|
caption?: string | undefined;
|
16969
17005
|
type: string;
|
@@ -17039,14 +17075,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17039
17075
|
postOfficeBoxNumber?: string | undefined;
|
17040
17076
|
postalCode?: string | undefined;
|
17041
17077
|
geo?: {
|
17042
|
-
type: [string, ...string[]];
|
17078
|
+
type: string | [string, ...string[]];
|
17043
17079
|
latitude: number;
|
17044
17080
|
longitude: number;
|
17045
17081
|
} | undefined;
|
17046
|
-
type: [string, ...string[]];
|
17082
|
+
type: string | [string, ...string[]];
|
17047
17083
|
} | undefined;
|
17048
17084
|
otherIdentifier?: {
|
17049
|
-
type: [string, ...string[]];
|
17085
|
+
type: string | [string, ...string[]];
|
17050
17086
|
identifier: string;
|
17051
17087
|
identifierType: string;
|
17052
17088
|
}[] | undefined;
|
@@ -17074,7 +17110,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17074
17110
|
id: string;
|
17075
17111
|
} | undefined;
|
17076
17112
|
otherIdentifier?: {
|
17077
|
-
type: [string, ...string[]];
|
17113
|
+
type: string | [string, ...string[]];
|
17078
17114
|
identifier: string;
|
17079
17115
|
identifierType: string;
|
17080
17116
|
}[] | undefined;
|
@@ -17114,14 +17150,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17114
17150
|
postOfficeBoxNumber?: string | undefined;
|
17115
17151
|
postalCode?: string | undefined;
|
17116
17152
|
geo?: {
|
17117
|
-
type: [string, ...string[]];
|
17153
|
+
type: string | [string, ...string[]];
|
17118
17154
|
latitude: number;
|
17119
17155
|
longitude: number;
|
17120
17156
|
} | undefined;
|
17121
|
-
type: [string, ...string[]];
|
17157
|
+
type: string | [string, ...string[]];
|
17122
17158
|
} | undefined;
|
17123
17159
|
otherIdentifier?: {
|
17124
|
-
type: [string, ...string[]];
|
17160
|
+
type: string | [string, ...string[]];
|
17125
17161
|
identifier: string;
|
17126
17162
|
identifierType: string;
|
17127
17163
|
}[] | undefined;
|
@@ -17237,14 +17273,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17237
17273
|
postOfficeBoxNumber?: string | undefined;
|
17238
17274
|
postalCode?: string | undefined;
|
17239
17275
|
geo?: {
|
17240
|
-
type: [string, ...string[]];
|
17276
|
+
type: string | [string, ...string[]];
|
17241
17277
|
latitude: number;
|
17242
17278
|
longitude: number;
|
17243
17279
|
} | undefined;
|
17244
|
-
type: [string, ...string[]];
|
17280
|
+
type: string | [string, ...string[]];
|
17245
17281
|
} | undefined;
|
17246
17282
|
otherIdentifier?: {
|
17247
|
-
type: [string, ...string[]];
|
17283
|
+
type: string | [string, ...string[]];
|
17248
17284
|
identifier: string;
|
17249
17285
|
identifierType: string;
|
17250
17286
|
}[] | undefined;
|
@@ -17271,7 +17307,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17271
17307
|
hashed: boolean;
|
17272
17308
|
identityHash: string;
|
17273
17309
|
identityType: string;
|
17274
|
-
} | undefined;
|
17310
|
+
}[] | undefined;
|
17275
17311
|
image?: string | {
|
17276
17312
|
caption?: string | undefined;
|
17277
17313
|
type: string;
|
@@ -17347,14 +17383,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17347
17383
|
postOfficeBoxNumber?: string | undefined;
|
17348
17384
|
postalCode?: string | undefined;
|
17349
17385
|
geo?: {
|
17350
|
-
type: [string, ...string[]];
|
17386
|
+
type: string | [string, ...string[]];
|
17351
17387
|
latitude: number;
|
17352
17388
|
longitude: number;
|
17353
17389
|
} | undefined;
|
17354
|
-
type: [string, ...string[]];
|
17390
|
+
type: string | [string, ...string[]];
|
17355
17391
|
} | undefined;
|
17356
17392
|
otherIdentifier?: {
|
17357
|
-
type: [string, ...string[]];
|
17393
|
+
type: string | [string, ...string[]];
|
17358
17394
|
identifier: string;
|
17359
17395
|
identifierType: string;
|
17360
17396
|
}[] | undefined;
|
@@ -17382,7 +17418,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17382
17418
|
id: string;
|
17383
17419
|
} | undefined;
|
17384
17420
|
otherIdentifier?: {
|
17385
|
-
type: [string, ...string[]];
|
17421
|
+
type: string | [string, ...string[]];
|
17386
17422
|
identifier: string;
|
17387
17423
|
identifierType: string;
|
17388
17424
|
}[] | undefined;
|
@@ -17422,14 +17458,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17422
17458
|
postOfficeBoxNumber?: string | undefined;
|
17423
17459
|
postalCode?: string | undefined;
|
17424
17460
|
geo?: {
|
17425
|
-
type: [string, ...string[]];
|
17461
|
+
type: string | [string, ...string[]];
|
17426
17462
|
latitude: number;
|
17427
17463
|
longitude: number;
|
17428
17464
|
} | undefined;
|
17429
|
-
type: [string, ...string[]];
|
17465
|
+
type: string | [string, ...string[]];
|
17430
17466
|
} | undefined;
|
17431
17467
|
otherIdentifier?: {
|
17432
|
-
type: [string, ...string[]];
|
17468
|
+
type: string | [string, ...string[]];
|
17433
17469
|
identifier: string;
|
17434
17470
|
identifierType: string;
|
17435
17471
|
}[] | undefined;
|
@@ -17545,14 +17581,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17545
17581
|
postOfficeBoxNumber?: string | undefined;
|
17546
17582
|
postalCode?: string | undefined;
|
17547
17583
|
geo?: {
|
17548
|
-
type: [string, ...string[]];
|
17584
|
+
type: string | [string, ...string[]];
|
17549
17585
|
latitude: number;
|
17550
17586
|
longitude: number;
|
17551
17587
|
} | undefined;
|
17552
|
-
type: [string, ...string[]];
|
17588
|
+
type: string | [string, ...string[]];
|
17553
17589
|
} | undefined;
|
17554
17590
|
otherIdentifier?: {
|
17555
|
-
type: [string, ...string[]];
|
17591
|
+
type: string | [string, ...string[]];
|
17556
17592
|
identifier: string;
|
17557
17593
|
identifierType: string;
|
17558
17594
|
}[] | undefined;
|
@@ -17639,14 +17675,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17639
17675
|
postOfficeBoxNumber?: string | undefined;
|
17640
17676
|
postalCode?: string | undefined;
|
17641
17677
|
geo?: {
|
17642
|
-
type: [string, ...string[]];
|
17678
|
+
type: string | [string, ...string[]];
|
17643
17679
|
latitude: number;
|
17644
17680
|
longitude: number;
|
17645
17681
|
} | undefined;
|
17646
|
-
type: [string, ...string[]];
|
17682
|
+
type: string | [string, ...string[]];
|
17647
17683
|
} | undefined;
|
17648
17684
|
otherIdentifier?: {
|
17649
|
-
type: [string, ...string[]];
|
17685
|
+
type: string | [string, ...string[]];
|
17650
17686
|
identifier: string;
|
17651
17687
|
identifierType: string;
|
17652
17688
|
}[] | undefined;
|
@@ -17670,7 +17706,11 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17670
17706
|
id?: string | undefined;
|
17671
17707
|
}[];
|
17672
17708
|
}[] | undefined;
|
17673
|
-
image?: string |
|
17709
|
+
image?: string | {
|
17710
|
+
caption?: string | undefined;
|
17711
|
+
type: string;
|
17712
|
+
id: string;
|
17713
|
+
} | undefined;
|
17674
17714
|
expirationDate?: string | undefined;
|
17675
17715
|
credentialStatus?: {
|
17676
17716
|
type: string;
|
@@ -17721,14 +17761,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17721
17761
|
postOfficeBoxNumber?: string | undefined;
|
17722
17762
|
postalCode?: string | undefined;
|
17723
17763
|
geo?: {
|
17724
|
-
type: [string, ...string[]];
|
17764
|
+
type: string | [string, ...string[]];
|
17725
17765
|
latitude: number;
|
17726
17766
|
longitude: number;
|
17727
17767
|
} | undefined;
|
17728
|
-
type: [string, ...string[]];
|
17768
|
+
type: string | [string, ...string[]];
|
17729
17769
|
} | undefined;
|
17730
17770
|
otherIdentifier?: {
|
17731
|
-
type: [string, ...string[]];
|
17771
|
+
type: string | [string, ...string[]];
|
17732
17772
|
identifier: string;
|
17733
17773
|
identifierType: string;
|
17734
17774
|
}[] | undefined;
|
@@ -17754,7 +17794,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17754
17794
|
hashed: boolean;
|
17755
17795
|
identityHash: string;
|
17756
17796
|
identityType: string;
|
17757
|
-
} | undefined;
|
17797
|
+
}[] | undefined;
|
17758
17798
|
image?: string | {
|
17759
17799
|
caption?: string | undefined;
|
17760
17800
|
type: string;
|
@@ -17830,14 +17870,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17830
17870
|
postOfficeBoxNumber?: string | undefined;
|
17831
17871
|
postalCode?: string | undefined;
|
17832
17872
|
geo?: {
|
17833
|
-
type: [string, ...string[]];
|
17873
|
+
type: string | [string, ...string[]];
|
17834
17874
|
latitude: number;
|
17835
17875
|
longitude: number;
|
17836
17876
|
} | undefined;
|
17837
|
-
type: [string, ...string[]];
|
17877
|
+
type: string | [string, ...string[]];
|
17838
17878
|
} | undefined;
|
17839
17879
|
otherIdentifier?: {
|
17840
|
-
type: [string, ...string[]];
|
17880
|
+
type: string | [string, ...string[]];
|
17841
17881
|
identifier: string;
|
17842
17882
|
identifierType: string;
|
17843
17883
|
}[] | undefined;
|
@@ -17865,7 +17905,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17865
17905
|
id: string;
|
17866
17906
|
} | undefined;
|
17867
17907
|
otherIdentifier?: {
|
17868
|
-
type: [string, ...string[]];
|
17908
|
+
type: string | [string, ...string[]];
|
17869
17909
|
identifier: string;
|
17870
17910
|
identifierType: string;
|
17871
17911
|
}[] | undefined;
|
@@ -17905,14 +17945,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
17905
17945
|
postOfficeBoxNumber?: string | undefined;
|
17906
17946
|
postalCode?: string | undefined;
|
17907
17947
|
geo?: {
|
17908
|
-
type: [string, ...string[]];
|
17948
|
+
type: string | [string, ...string[]];
|
17909
17949
|
latitude: number;
|
17910
17950
|
longitude: number;
|
17911
17951
|
} | undefined;
|
17912
|
-
type: [string, ...string[]];
|
17952
|
+
type: string | [string, ...string[]];
|
17913
17953
|
} | undefined;
|
17914
17954
|
otherIdentifier?: {
|
17915
|
-
type: [string, ...string[]];
|
17955
|
+
type: string | [string, ...string[]];
|
17916
17956
|
identifier: string;
|
17917
17957
|
identifierType: string;
|
17918
17958
|
}[] | undefined;
|
@@ -18028,14 +18068,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18028
18068
|
postOfficeBoxNumber?: string | undefined;
|
18029
18069
|
postalCode?: string | undefined;
|
18030
18070
|
geo?: {
|
18031
|
-
type: [string, ...string[]];
|
18071
|
+
type: string | [string, ...string[]];
|
18032
18072
|
latitude: number;
|
18033
18073
|
longitude: number;
|
18034
18074
|
} | undefined;
|
18035
|
-
type: [string, ...string[]];
|
18075
|
+
type: string | [string, ...string[]];
|
18036
18076
|
} | undefined;
|
18037
18077
|
otherIdentifier?: {
|
18038
|
-
type: [string, ...string[]];
|
18078
|
+
type: string | [string, ...string[]];
|
18039
18079
|
identifier: string;
|
18040
18080
|
identifierType: string;
|
18041
18081
|
}[] | undefined;
|
@@ -18062,7 +18102,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18062
18102
|
hashed: boolean;
|
18063
18103
|
identityHash: string;
|
18064
18104
|
identityType: string;
|
18065
|
-
} | undefined;
|
18105
|
+
}[] | undefined;
|
18066
18106
|
image?: string | {
|
18067
18107
|
caption?: string | undefined;
|
18068
18108
|
type: string;
|
@@ -18138,14 +18178,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18138
18178
|
postOfficeBoxNumber?: string | undefined;
|
18139
18179
|
postalCode?: string | undefined;
|
18140
18180
|
geo?: {
|
18141
|
-
type: [string, ...string[]];
|
18181
|
+
type: string | [string, ...string[]];
|
18142
18182
|
latitude: number;
|
18143
18183
|
longitude: number;
|
18144
18184
|
} | undefined;
|
18145
|
-
type: [string, ...string[]];
|
18185
|
+
type: string | [string, ...string[]];
|
18146
18186
|
} | undefined;
|
18147
18187
|
otherIdentifier?: {
|
18148
|
-
type: [string, ...string[]];
|
18188
|
+
type: string | [string, ...string[]];
|
18149
18189
|
identifier: string;
|
18150
18190
|
identifierType: string;
|
18151
18191
|
}[] | undefined;
|
@@ -18173,7 +18213,7 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18173
18213
|
id: string;
|
18174
18214
|
} | undefined;
|
18175
18215
|
otherIdentifier?: {
|
18176
|
-
type: [string, ...string[]];
|
18216
|
+
type: string | [string, ...string[]];
|
18177
18217
|
identifier: string;
|
18178
18218
|
identifierType: string;
|
18179
18219
|
}[] | undefined;
|
@@ -18213,14 +18253,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18213
18253
|
postOfficeBoxNumber?: string | undefined;
|
18214
18254
|
postalCode?: string | undefined;
|
18215
18255
|
geo?: {
|
18216
|
-
type: [string, ...string[]];
|
18256
|
+
type: string | [string, ...string[]];
|
18217
18257
|
latitude: number;
|
18218
18258
|
longitude: number;
|
18219
18259
|
} | undefined;
|
18220
|
-
type: [string, ...string[]];
|
18260
|
+
type: string | [string, ...string[]];
|
18221
18261
|
} | undefined;
|
18222
18262
|
otherIdentifier?: {
|
18223
|
-
type: [string, ...string[]];
|
18263
|
+
type: string | [string, ...string[]];
|
18224
18264
|
identifier: string;
|
18225
18265
|
identifierType: string;
|
18226
18266
|
}[] | undefined;
|
@@ -18336,14 +18376,14 @@ export declare const AchievementCredentialValidator: z.ZodObject<z.extendShape<z
|
|
18336
18376
|
postOfficeBoxNumber?: string | undefined;
|
18337
18377
|
postalCode?: string | undefined;
|
18338
18378
|
geo?: {
|
18339
|
-
type: [string, ...string[]];
|
18379
|
+
type: string | [string, ...string[]];
|
18340
18380
|
latitude: number;
|
18341
18381
|
longitude: number;
|
18342
18382
|
} | undefined;
|
18343
|
-
type: [string, ...string[]];
|
18383
|
+
type: string | [string, ...string[]];
|
18344
18384
|
} | undefined;
|
18345
18385
|
otherIdentifier?: {
|
18346
|
-
type: [string, ...string[]];
|
18386
|
+
type: string | [string, ...string[]];
|
18347
18387
|
identifier: string;
|
18348
18388
|
identifierType: string;
|
18349
18389
|
}[] | undefined;
|