@nexeraid/identity-schemas 1.12.16-dev → 1.12.17-dev
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/declarations/src/identity/challenge-query.schema.d.ts +158 -0
- package/dist/declarations/src/identity/challenge-query.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +1090 -160
- package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-6d0912b0.cjs.prod.js → frontend-utilities.schema-5c7e4938.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-efc06daf.cjs.dev.js → frontend-utilities.schema-dfeb3391.cjs.dev.js} +1 -1
- package/dist/{frontend-utilities.schema-99db048a.esm.js → frontend-utilities.schema-f6f3eea6.esm.js} +1 -1
- package/dist/{identity-api.schema-bb419f4c.esm.js → identity-api.schema-8f4532a6.esm.js} +34 -2
- package/dist/{identity-api.schema-dc9a849c.cjs.dev.js → identity-api.schema-c28d229f.cjs.dev.js} +38 -1
- package/dist/{identity-api.schema-63e650ec.cjs.prod.js → identity-api.schema-f4f93e24.cjs.prod.js} +38 -1
- package/dist/nexeraid-identity-schemas.cjs.dev.js +7 -2
- package/dist/nexeraid-identity-schemas.cjs.prod.js +7 -2
- package/dist/nexeraid-identity-schemas.esm.js +3 -3
- package/dist/package.json +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +6 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +6 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
|
@@ -1117,4 +1117,162 @@ export declare const SdkVerificationOutput: z.ZodObject<{
|
|
|
1117
1117
|
}[][];
|
|
1118
1118
|
}>;
|
|
1119
1119
|
export type SdkVerificationOutput = z.infer<typeof SdkVerificationOutput>;
|
|
1120
|
+
export declare const VerificationSessionStatuses: readonly ["IN_PROGRESS", "COMPLETED", "NOT_STARTED"];
|
|
1121
|
+
export declare const VerificationSessionStatus: z.ZodEnum<["IN_PROGRESS", "COMPLETED", "NOT_STARTED"]>;
|
|
1122
|
+
export type VerificationSessionStatus = z.infer<typeof VerificationSessionStatus>;
|
|
1123
|
+
export declare const VerificationOutput: z.ZodObject<{
|
|
1124
|
+
id: z.ZodNullable<z.ZodString>;
|
|
1125
|
+
verificationResult: z.ZodNullable<z.ZodObject<{
|
|
1126
|
+
customerId: z.ZodString;
|
|
1127
|
+
scenarioExecutionId: z.ZodString;
|
|
1128
|
+
status: z.ZodEnum<["valid", "not-valid", "error", "unknown"]>;
|
|
1129
|
+
results: z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
1130
|
+
objectType: z.ZodEnum<["ChallengeQuery", "OnChainZKP", "OffChainZKP"]>;
|
|
1131
|
+
objectId: z.ZodString;
|
|
1132
|
+
name: z.ZodString;
|
|
1133
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>>>;
|
|
1134
|
+
result: z.ZodObject<{
|
|
1135
|
+
result: z.ZodObject<{
|
|
1136
|
+
is_valid: z.ZodBoolean;
|
|
1137
|
+
reasons: z.ZodArray<z.ZodUnknown, "many">;
|
|
1138
|
+
}, "strip", z.ZodTypeAny, {
|
|
1139
|
+
is_valid: boolean;
|
|
1140
|
+
reasons: unknown[];
|
|
1141
|
+
}, {
|
|
1142
|
+
is_valid: boolean;
|
|
1143
|
+
reasons: unknown[];
|
|
1144
|
+
}>;
|
|
1145
|
+
executionId: z.ZodString;
|
|
1146
|
+
}, "strip", z.ZodTypeAny, {
|
|
1147
|
+
result: {
|
|
1148
|
+
is_valid: boolean;
|
|
1149
|
+
reasons: unknown[];
|
|
1150
|
+
};
|
|
1151
|
+
executionId: string;
|
|
1152
|
+
}, {
|
|
1153
|
+
result: {
|
|
1154
|
+
is_valid: boolean;
|
|
1155
|
+
reasons: unknown[];
|
|
1156
|
+
};
|
|
1157
|
+
executionId: string;
|
|
1158
|
+
}>;
|
|
1159
|
+
executionId: z.ZodString;
|
|
1160
|
+
scenarioId: z.ZodString;
|
|
1161
|
+
}, "strip", z.ZodTypeAny, {
|
|
1162
|
+
name: string;
|
|
1163
|
+
result: {
|
|
1164
|
+
result: {
|
|
1165
|
+
is_valid: boolean;
|
|
1166
|
+
reasons: unknown[];
|
|
1167
|
+
};
|
|
1168
|
+
executionId: string;
|
|
1169
|
+
};
|
|
1170
|
+
executionId: string;
|
|
1171
|
+
scenarioId: string;
|
|
1172
|
+
objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
|
|
1173
|
+
objectId: string;
|
|
1174
|
+
address?: string | null | undefined;
|
|
1175
|
+
}, {
|
|
1176
|
+
name: string;
|
|
1177
|
+
result: {
|
|
1178
|
+
result: {
|
|
1179
|
+
is_valid: boolean;
|
|
1180
|
+
reasons: unknown[];
|
|
1181
|
+
};
|
|
1182
|
+
executionId: string;
|
|
1183
|
+
};
|
|
1184
|
+
executionId: string;
|
|
1185
|
+
scenarioId: string;
|
|
1186
|
+
objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
|
|
1187
|
+
objectId: string;
|
|
1188
|
+
address?: string | null | undefined;
|
|
1189
|
+
}>, "many">, "many">;
|
|
1190
|
+
}, "strip", z.ZodTypeAny, {
|
|
1191
|
+
status: "valid" | "unknown" | "not-valid" | "error";
|
|
1192
|
+
customerId: string;
|
|
1193
|
+
scenarioExecutionId: string;
|
|
1194
|
+
results: {
|
|
1195
|
+
name: string;
|
|
1196
|
+
result: {
|
|
1197
|
+
result: {
|
|
1198
|
+
is_valid: boolean;
|
|
1199
|
+
reasons: unknown[];
|
|
1200
|
+
};
|
|
1201
|
+
executionId: string;
|
|
1202
|
+
};
|
|
1203
|
+
executionId: string;
|
|
1204
|
+
scenarioId: string;
|
|
1205
|
+
objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
|
|
1206
|
+
objectId: string;
|
|
1207
|
+
address?: string | null | undefined;
|
|
1208
|
+
}[][];
|
|
1209
|
+
}, {
|
|
1210
|
+
status: "valid" | "unknown" | "not-valid" | "error";
|
|
1211
|
+
customerId: string;
|
|
1212
|
+
scenarioExecutionId: string;
|
|
1213
|
+
results: {
|
|
1214
|
+
name: string;
|
|
1215
|
+
result: {
|
|
1216
|
+
result: {
|
|
1217
|
+
is_valid: boolean;
|
|
1218
|
+
reasons: unknown[];
|
|
1219
|
+
};
|
|
1220
|
+
executionId: string;
|
|
1221
|
+
};
|
|
1222
|
+
executionId: string;
|
|
1223
|
+
scenarioId: string;
|
|
1224
|
+
objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
|
|
1225
|
+
objectId: string;
|
|
1226
|
+
address?: string | null | undefined;
|
|
1227
|
+
}[][];
|
|
1228
|
+
}>>;
|
|
1229
|
+
status: z.ZodEnum<["IN_PROGRESS", "COMPLETED", "NOT_STARTED"]>;
|
|
1230
|
+
}, "strip", z.ZodTypeAny, {
|
|
1231
|
+
id: string | null;
|
|
1232
|
+
status: "IN_PROGRESS" | "COMPLETED" | "NOT_STARTED";
|
|
1233
|
+
verificationResult: {
|
|
1234
|
+
status: "valid" | "unknown" | "not-valid" | "error";
|
|
1235
|
+
customerId: string;
|
|
1236
|
+
scenarioExecutionId: string;
|
|
1237
|
+
results: {
|
|
1238
|
+
name: string;
|
|
1239
|
+
result: {
|
|
1240
|
+
result: {
|
|
1241
|
+
is_valid: boolean;
|
|
1242
|
+
reasons: unknown[];
|
|
1243
|
+
};
|
|
1244
|
+
executionId: string;
|
|
1245
|
+
};
|
|
1246
|
+
executionId: string;
|
|
1247
|
+
scenarioId: string;
|
|
1248
|
+
objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
|
|
1249
|
+
objectId: string;
|
|
1250
|
+
address?: string | null | undefined;
|
|
1251
|
+
}[][];
|
|
1252
|
+
} | null;
|
|
1253
|
+
}, {
|
|
1254
|
+
id: string | null;
|
|
1255
|
+
status: "IN_PROGRESS" | "COMPLETED" | "NOT_STARTED";
|
|
1256
|
+
verificationResult: {
|
|
1257
|
+
status: "valid" | "unknown" | "not-valid" | "error";
|
|
1258
|
+
customerId: string;
|
|
1259
|
+
scenarioExecutionId: string;
|
|
1260
|
+
results: {
|
|
1261
|
+
name: string;
|
|
1262
|
+
result: {
|
|
1263
|
+
result: {
|
|
1264
|
+
is_valid: boolean;
|
|
1265
|
+
reasons: unknown[];
|
|
1266
|
+
};
|
|
1267
|
+
executionId: string;
|
|
1268
|
+
};
|
|
1269
|
+
executionId: string;
|
|
1270
|
+
scenarioId: string;
|
|
1271
|
+
objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
|
|
1272
|
+
objectId: string;
|
|
1273
|
+
address?: string | null | undefined;
|
|
1274
|
+
}[][];
|
|
1275
|
+
} | null;
|
|
1276
|
+
}>;
|
|
1277
|
+
export type VerificationOutput = z.infer<typeof VerificationOutput>;
|
|
1120
1278
|
//# sourceMappingURL=challenge-query.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"challenge-query.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["challenge-query.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"challenge-query.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["challenge-query.schema.ts"],"names":[],"mappings":"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"}
|