@nexeraid/identity-schemas 2.8.0-dev → 2.10.0-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.
Files changed (41) hide show
  1. package/dist/{customers.schema-1bf4fe64.cjs.dev.js → customers.schema-a23a7d7d.cjs.dev.js} +1 -1
  2. package/dist/{customers.schema-0bfe7ed2.esm.js → customers.schema-bc9ea241.esm.js} +1 -1
  3. package/dist/{customers.schema-80e163e9.cjs.prod.js → customers.schema-f2cbacca.cjs.prod.js} +1 -1
  4. package/dist/declarations/src/identity/app-requests.schema.d.ts +37 -37
  5. package/dist/declarations/src/identity/identity-v2.schema.d.ts +9 -9
  6. package/dist/declarations/src/identity/kyc.schema.d.ts +20 -20
  7. package/dist/declarations/src/identity/query.schema.d.ts +97 -92
  8. package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
  9. package/dist/declarations/src/identity/scenario.schema.d.ts +99 -99
  10. package/dist/declarations/src/identity/zkps.schema.d.ts +17 -17
  11. package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +4 -4
  12. package/dist/declarations/src/transaction.schema.d.ts +2 -2
  13. package/dist/declarations/src/transaction.schema.d.ts.map +1 -1
  14. package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +135 -135
  15. package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts +3 -3
  16. package/dist/{frontend-utilities.schema-63c0c3ec.cjs.prod.js → frontend-utilities.schema-1a37ad51.cjs.prod.js} +1 -1
  17. package/dist/{frontend-utilities.schema-c53dbf36.esm.js → frontend-utilities.schema-5587da47.esm.js} +1 -1
  18. package/dist/{frontend-utilities.schema-7ec52bb3.cjs.dev.js → frontend-utilities.schema-b01c1889.cjs.dev.js} +1 -1
  19. package/dist/{identity-api.schema-725ecd1d.cjs.prod.js → identity-api.schema-2fb2ff78.cjs.prod.js} +42 -9
  20. package/dist/{identity-api.schema-e1fe9b0e.cjs.dev.js → identity-api.schema-841bc821.cjs.dev.js} +42 -9
  21. package/dist/{identity-api.schema-a3f556f3.esm.js → identity-api.schema-ee362a66.esm.js} +42 -9
  22. package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -3
  23. package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -3
  24. package/dist/nexeraid-identity-schemas.esm.js +4 -4
  25. package/dist/package.json +1 -1
  26. package/dist/{transaction.schema-1534b40f.cjs.prod.js → transaction.schema-2d4e973b.cjs.prod.js} +2 -2
  27. package/dist/{transaction.schema-221579a3.esm.js → transaction.schema-2dd50ae5.esm.js} +2 -2
  28. package/dist/{transaction.schema-4195655f.cjs.dev.js → transaction.schema-5bc7e516.cjs.dev.js} +2 -2
  29. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
  30. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
  31. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  32. package/package.json +1 -1
  33. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
  34. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
  35. package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
  36. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
  37. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
  38. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
  39. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +3 -3
  40. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +3 -3
  41. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +3 -3
@@ -4,7 +4,7 @@ export declare const TMSWebhookPayload: z.ZodObject<{
4
4
  id: z.ZodString;
5
5
  transactionId: z.ZodString;
6
6
  transactionType: z.ZodEnum<["crypto", "fiat"]>;
7
- status: z.ZodEnum<["pending", "approved", "under_investigation", "blocked"]>;
7
+ status: z.ZodEnum<["pending", "approved", "under_investigation", "blocked", "failed"]>;
8
8
  riskScore: z.ZodNullable<z.ZodString>;
9
9
  riskLevel: z.ZodNullable<z.ZodString>;
10
10
  customerId: z.ZodString;
@@ -15,7 +15,7 @@ export declare const TMSWebhookPayload: z.ZodObject<{
15
15
  updatedAt: z.ZodNullable<z.ZodDate>;
16
16
  }, "strip", z.ZodTypeAny, {
17
17
  id: string;
18
- status: "pending" | "approved" | "under_investigation" | "blocked";
18
+ status: "pending" | "approved" | "under_investigation" | "blocked" | "failed";
19
19
  createdAt: Date;
20
20
  updatedAt: Date | null;
21
21
  customerId: string;
@@ -29,7 +29,7 @@ export declare const TMSWebhookPayload: z.ZodObject<{
29
29
  transactionDate: Date;
30
30
  }, {
31
31
  id: string;
32
- status: "pending" | "approved" | "under_investigation" | "blocked";
32
+ status: "pending" | "approved" | "under_investigation" | "blocked" | "failed";
33
33
  createdAt: Date;
34
34
  updatedAt: Date | null;
35
35
  customerId: string;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var identityApi_schema = require('./identity-api.schema-725ecd1d.cjs.prod.js');
3
+ var identityApi_schema = require('./identity-api.schema-2fb2ff78.cjs.prod.js');
4
4
 
5
5
  var VC_JSON_SCHEMA_MAP = {
6
6
  ProofOfResidence: {
@@ -1,4 +1,4 @@
1
- import { dk as SupportedType, eM as _toConsumableArray, d9 as ARRAY_OPERATORS, df as BOOLEAN_OPERATORS, dd as NUMERIC_OPERATORS, db as STRING_OPERATORS } from './identity-api.schema-a3f556f3.esm.js';
1
+ import { dk as SupportedType, eM as _toConsumableArray, d9 as ARRAY_OPERATORS, df as BOOLEAN_OPERATORS, dd as NUMERIC_OPERATORS, db as STRING_OPERATORS } from './identity-api.schema-ee362a66.esm.js';
2
2
 
3
3
  var VC_JSON_SCHEMA_MAP = {
4
4
  ProofOfResidence: {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var identityApi_schema = require('./identity-api.schema-e1fe9b0e.cjs.dev.js');
3
+ var identityApi_schema = require('./identity-api.schema-841bc821.cjs.dev.js');
4
4
 
5
5
  var VC_JSON_SCHEMA_MAP = {
6
6
  ProofOfResidence: {
@@ -2230,19 +2230,49 @@ function zodEnumFromObjKeys(obj) {
2230
2230
  }
2231
2231
  var AllCredentialAttributes = zod.z.union([zodEnumFromObjKeys(IDInformationCredentialSubjectSchema.shape), zodEnumFromObjKeys(IDImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(SelfieImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(ProofOfResidenceCredentialSubjectSchema.shape)]);
2232
2232
  var AllCredentialValues = zod.z.union([zod.z["boolean"](), zod.z.string(), zod.z.number(), zod.z.array(zod.z.string()), zod.z.array(zod.z.number())]);
2233
- var OPERATORS = ["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"];
2233
+ var OPERATORS = ["$noop",
2234
+ // noop can be used in zkps as proof of credential issuance https://docs.privado.id/docs/verifier/verification-library/zk-query-language#exists---operator-11
2235
+ "$eq",
2236
+ // equal to
2237
+ "$lt",
2238
+ // less than
2239
+ "$lte",
2240
+ // less than or equal to
2241
+ "$gt",
2242
+ // greater than
2243
+ "$gte",
2244
+ // greater than or equal to
2245
+ "$in",
2246
+ // in
2247
+ "$nin",
2248
+ // not in
2249
+ "$ne",
2250
+ // not equal to
2251
+ //"$between", // between
2252
+ //"$nonbetween", // contains
2253
+ "$exists" // exists
2254
+ ];
2234
2255
  var Operator = zod.z["enum"](OPERATORS);
2235
2256
  var ZKPOperator = zod.z["enum"](OPERATORS).exclude(["$lte", "$gte"]);
2236
- var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop");
2237
- var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne];
2257
+ var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop"), Operator["enum"].$exists, "exists");
2258
+ var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
2259
+ //Operator.enum.$between,
2260
+ //Operator.enum.$nonbetween,
2261
+ ];
2238
2262
  var ArrayOperator = zod.z["enum"](ARRAY_OPERATORS);
2239
- var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin];
2263
+ var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$exists];
2240
2264
  var StringOperator = zod.z["enum"](STRING_OPERATORS);
2241
- var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte];
2265
+ var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
2266
+ //Operator.enum.$between,
2267
+ //Operator.enum.$nonbetween,
2268
+ ];
2242
2269
  var NumericOperator = zod.z["enum"](NUMERIC_OPERATORS);
2243
2270
  var BOOLEAN_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne];
2244
2271
  var BooleanOperator = zod.z["enum"](BOOLEAN_OPERATORS);
2245
- var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte];
2272
+ var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
2273
+ //Operator.enum.$between,
2274
+ //Operator.enum.$nonbetween,
2275
+ ];
2246
2276
  var DateOperator = zod.z["enum"](DATE_OPERATORS);
2247
2277
  var SUPPORTED_TYPES = ["string", "integer", "boolean", "number", "array", "date"];
2248
2278
  var SupportedType = zod.z["enum"](SUPPORTED_TYPES);
@@ -2396,11 +2426,14 @@ var ChallengeQuerySchema = zod.z.object({
2396
2426
  id: zod.z.string().optional(),
2397
2427
  query: QueryConfig
2398
2428
  });
2399
- var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"];
2429
+ var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN",
2430
+ //"BETWEEN",
2431
+ //"NOT_BETWEEN",
2432
+ "EXISTS"];
2400
2433
  var ChallengeQueryOperator = zod.z["enum"](CHALLENGE_QUERY_OPERATORS);
2401
2434
  var OperatorMappings = {
2402
- toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO),
2403
- fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne)
2435
+ toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO), Operator["enum"].$exists, ChallengeQueryOperator["enum"].EXISTS),
2436
+ fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne), ChallengeQueryOperator["enum"].EXISTS, Operator["enum"].$exists)
2404
2437
  };
2405
2438
  var OperatorToChallengeQueryOperator = OperatorMappings.toChallenge;
2406
2439
  var ChallengeQueryOperatorToOperator = OperatorMappings.fromChallenge;
@@ -2230,19 +2230,49 @@ function zodEnumFromObjKeys(obj) {
2230
2230
  }
2231
2231
  var AllCredentialAttributes = zod.z.union([zodEnumFromObjKeys(IDInformationCredentialSubjectSchema.shape), zodEnumFromObjKeys(IDImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(SelfieImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(ProofOfResidenceCredentialSubjectSchema.shape)]);
2232
2232
  var AllCredentialValues = zod.z.union([zod.z["boolean"](), zod.z.string(), zod.z.number(), zod.z.array(zod.z.string()), zod.z.array(zod.z.number())]);
2233
- var OPERATORS = ["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"];
2233
+ var OPERATORS = ["$noop",
2234
+ // noop can be used in zkps as proof of credential issuance https://docs.privado.id/docs/verifier/verification-library/zk-query-language#exists---operator-11
2235
+ "$eq",
2236
+ // equal to
2237
+ "$lt",
2238
+ // less than
2239
+ "$lte",
2240
+ // less than or equal to
2241
+ "$gt",
2242
+ // greater than
2243
+ "$gte",
2244
+ // greater than or equal to
2245
+ "$in",
2246
+ // in
2247
+ "$nin",
2248
+ // not in
2249
+ "$ne",
2250
+ // not equal to
2251
+ //"$between", // between
2252
+ //"$nonbetween", // contains
2253
+ "$exists" // exists
2254
+ ];
2234
2255
  var Operator = zod.z["enum"](OPERATORS);
2235
2256
  var ZKPOperator = zod.z["enum"](OPERATORS).exclude(["$lte", "$gte"]);
2236
- var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop");
2237
- var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne];
2257
+ var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop"), Operator["enum"].$exists, "exists");
2258
+ var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
2259
+ //Operator.enum.$between,
2260
+ //Operator.enum.$nonbetween,
2261
+ ];
2238
2262
  var ArrayOperator = zod.z["enum"](ARRAY_OPERATORS);
2239
- var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin];
2263
+ var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$exists];
2240
2264
  var StringOperator = zod.z["enum"](STRING_OPERATORS);
2241
- var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte];
2265
+ var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
2266
+ //Operator.enum.$between,
2267
+ //Operator.enum.$nonbetween,
2268
+ ];
2242
2269
  var NumericOperator = zod.z["enum"](NUMERIC_OPERATORS);
2243
2270
  var BOOLEAN_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne];
2244
2271
  var BooleanOperator = zod.z["enum"](BOOLEAN_OPERATORS);
2245
- var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte];
2272
+ var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
2273
+ //Operator.enum.$between,
2274
+ //Operator.enum.$nonbetween,
2275
+ ];
2246
2276
  var DateOperator = zod.z["enum"](DATE_OPERATORS);
2247
2277
  var SUPPORTED_TYPES = ["string", "integer", "boolean", "number", "array", "date"];
2248
2278
  var SupportedType = zod.z["enum"](SUPPORTED_TYPES);
@@ -2396,11 +2426,14 @@ var ChallengeQuerySchema = zod.z.object({
2396
2426
  id: zod.z.string().optional(),
2397
2427
  query: QueryConfig
2398
2428
  });
2399
- var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"];
2429
+ var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN",
2430
+ //"BETWEEN",
2431
+ //"NOT_BETWEEN",
2432
+ "EXISTS"];
2400
2433
  var ChallengeQueryOperator = zod.z["enum"](CHALLENGE_QUERY_OPERATORS);
2401
2434
  var OperatorMappings = {
2402
- toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO),
2403
- fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne)
2435
+ toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO), Operator["enum"].$exists, ChallengeQueryOperator["enum"].EXISTS),
2436
+ fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne), ChallengeQueryOperator["enum"].EXISTS, Operator["enum"].$exists)
2404
2437
  };
2405
2438
  var OperatorToChallengeQueryOperator = OperatorMappings.toChallenge;
2406
2439
  var ChallengeQueryOperatorToOperator = OperatorMappings.fromChallenge;
@@ -2228,19 +2228,49 @@ function zodEnumFromObjKeys(obj) {
2228
2228
  }
2229
2229
  var AllCredentialAttributes = z.union([zodEnumFromObjKeys(IDInformationCredentialSubjectSchema.shape), zodEnumFromObjKeys(IDImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(SelfieImageCredentialSubjectSchema.shape), zodEnumFromObjKeys(ProofOfResidenceCredentialSubjectSchema.shape)]);
2230
2230
  var AllCredentialValues = z.union([z["boolean"](), z.string(), z.number(), z.array(z.string()), z.array(z.number())]);
2231
- var OPERATORS = ["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"];
2231
+ var OPERATORS = ["$noop",
2232
+ // noop can be used in zkps as proof of credential issuance https://docs.privado.id/docs/verifier/verification-library/zk-query-language#exists---operator-11
2233
+ "$eq",
2234
+ // equal to
2235
+ "$lt",
2236
+ // less than
2237
+ "$lte",
2238
+ // less than or equal to
2239
+ "$gt",
2240
+ // greater than
2241
+ "$gte",
2242
+ // greater than or equal to
2243
+ "$in",
2244
+ // in
2245
+ "$nin",
2246
+ // not in
2247
+ "$ne",
2248
+ // not equal to
2249
+ //"$between", // between
2250
+ //"$nonbetween", // contains
2251
+ "$exists" // exists
2252
+ ];
2232
2253
  var Operator = z["enum"](OPERATORS);
2233
2254
  var ZKPOperator = z["enum"](OPERATORS).exclude(["$lte", "$gte"]);
2234
- var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop");
2235
- var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne];
2255
+ var operatorDisplayMap = _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$eq, "="), Operator["enum"].$gt, ">"), Operator["enum"].$lt, "<"), Operator["enum"].$gte, ">="), Operator["enum"].$lte, "<="), Operator["enum"].$ne, "!="), Operator["enum"].$in, "in"), Operator["enum"].$nin, "not in"), Operator["enum"].$noop, "noop"), Operator["enum"].$exists, "exists");
2256
+ var ARRAY_OPERATORS = [Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$eq, Operator["enum"].$ne
2257
+ //Operator.enum.$between,
2258
+ //Operator.enum.$nonbetween,
2259
+ ];
2236
2260
  var ArrayOperator = z["enum"](ARRAY_OPERATORS);
2237
- var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin];
2261
+ var STRING_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$in, Operator["enum"].$nin, Operator["enum"].$exists];
2238
2262
  var StringOperator = z["enum"](STRING_OPERATORS);
2239
- var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte];
2263
+ var NUMERIC_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
2264
+ //Operator.enum.$between,
2265
+ //Operator.enum.$nonbetween,
2266
+ ];
2240
2267
  var NumericOperator = z["enum"](NUMERIC_OPERATORS);
2241
2268
  var BOOLEAN_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne];
2242
2269
  var BooleanOperator = z["enum"](BOOLEAN_OPERATORS);
2243
- var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte];
2270
+ var DATE_OPERATORS = [Operator["enum"].$eq, Operator["enum"].$ne, Operator["enum"].$gt, Operator["enum"].$gte, Operator["enum"].$lt, Operator["enum"].$lte
2271
+ //Operator.enum.$between,
2272
+ //Operator.enum.$nonbetween,
2273
+ ];
2244
2274
  var DateOperator = z["enum"](DATE_OPERATORS);
2245
2275
  var SUPPORTED_TYPES = ["string", "integer", "boolean", "number", "array", "date"];
2246
2276
  var SupportedType = z["enum"](SUPPORTED_TYPES);
@@ -2394,11 +2424,14 @@ var ChallengeQuerySchema = z.object({
2394
2424
  id: z.string().optional(),
2395
2425
  query: QueryConfig
2396
2426
  });
2397
- var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN"];
2427
+ var CHALLENGE_QUERY_OPERATORS = ["GREATER_THAN", "LESS_THAN", "EQUAL_TO", "NOT_EQUAL_TO", "LESS_THAN_OR_EQUAL_TO", "GREATER_THAN_OR_EQUAL_TO", "IN", "NOT_IN",
2428
+ //"BETWEEN",
2429
+ //"NOT_BETWEEN",
2430
+ "EXISTS"];
2398
2431
  var ChallengeQueryOperator = z["enum"](CHALLENGE_QUERY_OPERATORS);
2399
2432
  var OperatorMappings = {
2400
- toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO),
2401
- fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne)
2433
+ toChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, Operator["enum"].$noop, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$eq, ChallengeQueryOperator["enum"].EQUAL_TO), Operator["enum"].$lt, ChallengeQueryOperator["enum"].LESS_THAN), Operator["enum"].$lte, ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO), Operator["enum"].$gt, ChallengeQueryOperator["enum"].GREATER_THAN), Operator["enum"].$gte, ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO), Operator["enum"].$in, ChallengeQueryOperator["enum"].IN), Operator["enum"].$nin, ChallengeQueryOperator["enum"].NOT_IN), Operator["enum"].$ne, ChallengeQueryOperator["enum"].NOT_EQUAL_TO), Operator["enum"].$exists, ChallengeQueryOperator["enum"].EXISTS),
2434
+ fromChallenge: _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ChallengeQueryOperator["enum"].EQUAL_TO, Operator["enum"].$eq), ChallengeQueryOperator["enum"].LESS_THAN, Operator["enum"].$lt), ChallengeQueryOperator["enum"].LESS_THAN_OR_EQUAL_TO, Operator["enum"].$lte), ChallengeQueryOperator["enum"].GREATER_THAN, Operator["enum"].$gt), ChallengeQueryOperator["enum"].GREATER_THAN_OR_EQUAL_TO, Operator["enum"].$gte), ChallengeQueryOperator["enum"].IN, Operator["enum"].$in), ChallengeQueryOperator["enum"].NOT_IN, Operator["enum"].$nin), ChallengeQueryOperator["enum"].NOT_EQUAL_TO, Operator["enum"].$ne), ChallengeQueryOperator["enum"].EXISTS, Operator["enum"].$exists)
2402
2435
  };
2403
2436
  var OperatorToChallengeQueryOperator = OperatorMappings.toChallenge;
2404
2437
  var ChallengeQueryOperatorToOperator = OperatorMappings.fromChallenge;
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('./identity-api.schema-e1fe9b0e.cjs.dev.js');
6
- var transaction_schema = require('./transaction.schema-4195655f.cjs.dev.js');
5
+ var identityApi_schema = require('./identity-api.schema-841bc821.cjs.dev.js');
6
+ var transaction_schema = require('./transaction.schema-5bc7e516.cjs.dev.js');
7
7
  var zod = require('zod');
8
- var frontendUtilities_schema = require('./frontend-utilities.schema-7ec52bb3.cjs.dev.js');
8
+ var frontendUtilities_schema = require('./frontend-utilities.schema-b01c1889.cjs.dev.js');
9
9
  require('nanoid');
10
10
 
11
11
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -2,10 +2,10 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('./identity-api.schema-725ecd1d.cjs.prod.js');
6
- var transaction_schema = require('./transaction.schema-1534b40f.cjs.prod.js');
5
+ var identityApi_schema = require('./identity-api.schema-2fb2ff78.cjs.prod.js');
6
+ var transaction_schema = require('./transaction.schema-2d4e973b.cjs.prod.js');
7
7
  var zod = require('zod');
8
- var frontendUtilities_schema = require('./frontend-utilities.schema-63c0c3ec.cjs.prod.js');
8
+ var frontendUtilities_schema = require('./frontend-utilities.schema-1a37ad51.cjs.prod.js');
9
9
  require('nanoid');
10
10
 
11
11
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -1,8 +1,8 @@
1
- import { C as CredentialTypes } from './identity-api.schema-a3f556f3.esm.js';
2
- export { s as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, o as ACTIVE_TEZOS_CHAIN_VALUES, am as ALPHA_2_COUNTRIES, d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, bh as ActionId, b6 as ActionPrefix, ef as AdditionalCustomerInformationParams, F as AddressSchema, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, an as Alpha2Country, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, bc as AppId, aO as AppPrefix, K as AptosAddress, L as AptosSignature, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, a6 as BLOCKCHAIN_NAMESPACES, a8 as BLOCKCHAIN_NAMESPACES_NAMES, ac as BLOCKCHAIN_NAMESPACE_TO_NAME, ab as BLOCKCHAIN_NAME_TO_NAMESPACE, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, aE as BasicCustomerContactInformation, a4 as BlockchainAddress, B as BlockchainId, a7 as BlockchainNamespace, a5 as BlockchainSignature, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, p as COSMOS_CHAIN_NAMES, q as COSMOS_CHAIN_NAMES_LIST, r as COSMOS_CHAIN_VALUES, aF as CUSTOMERS_CHARTS, aJ as CUSTOMER_AUTOMATION_REASONS, aH as CUSTOMER_TABLE_COLUMNS, a2 as CardanoAddress, a3 as CardanoSignature, bd as ChallengeId, aP as ChallengePrefix, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, U as CosmosAddress, t as CosmosChainId, V as CosmosSignature, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, eL as CredentialMediaType, eG as CredentialNames, c_ as CredentialQrCodeData, eF as CredentialSchemas, eJ as CredentialType, C as CredentialTypes, ej as CustomerId, aB as CustomerOnboardingLevel, aA as CustomerOnboardingLevels, bf as CustomerScreeningId, aR as CustomerScreeningPrefix, aD as CustomerStatus, aC as CustomerStatuses, aI as CustomerTableColumn, av as CustomerType, au as CustomerTypes, aG as CustomersChartType, dh as DATE_OPERATORS, a9 as DISPLAYED_LOCKCHAIN_NAMESPACES, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, aa as DisplayedBlockchainNamespace, H as EIP155Signature, ad as ENVS, E as EVM_BLOCK_TIME, i as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, _ as EdSignature, ba as EmailId, aM as EmailPrefix, ae as EnvironmentSchema, j as EvmChainId, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, el as ExternalCustomerId, e4 as FLOW_TYPES, e5 as FlowType, I as FunctionCallData, cx as GenerateWalletChallengeRequest, eE as GenericVerifiableCredentialSchema, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, er as ID3CredentialSubjectSchema, e8 as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, ea as IDENTITY_DOCUMENT_OPTIONS, eB as IDImageCredentialSubjectSchema, dm as IDInformation, eA as IDInformationCredentialSubjectSchema, es as IDScanCredentialSubjectSchema, et as IDScanPassportCredentialSubjectSchema, eu as IDScanSelfieCredentialSubjectSchema, al as ISO3CountryCode, ee as Identifier, cI as IdentityAppMessage, en as IdentityAppV2Web2JWT, em as IdentityAppV2Web3JWT, e9 as IdentityDocumentCountryListOption, eb as IdentityDocumentOptionsType, b9 as IdentityId, cL as IdentityMessage, bN as IdentityNotificationMessage, aL as IdentityPrefix, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, ek as IdentityWidgetAccessToken, eo as IdentityWidgetAccessToken_NEW, ep as IdentityWidgetSessionToken, bO as InitialDataRequest, bW as InitialDataResponse, bt as InstitutionExtractedInfosId, b2 as InstitutionExtractedInfosPrefix, bs as InstitutionId, b1 as InstitutionPrefix, ak as IpAddress, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, az as KybOnboardingLevel, ay as KybOnboardingLevels, bC as KycCompletionData, bD as KycCompletionNotification, ax as KycOnboardingLevel, aw as KycOnboardingLevels, bv as ListId, b4 as ListPrefix, cO as MediaType, cP as MediaTypePID, by as MemberId, w as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, h as NEXERA_CHAIN_VALUES, d as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, a as NEXERA_EVM_CHAINS_ID, f as NEXERA_EVM_CHAIN_NAMES, g as NEXERA_EVM_CHAIN_NAMES_LIST, e as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_NAMES, v as NEXERA_STARKNET_CHAIN_VALUES, c as NEXERA_TEZOS_CHAINS, l as NEXERA_TEZOS_CHAIN_NAMES, m as NEXERA_TEZOS_CHAIN_NAMES_LIST, n as NEXERA_TEZOS_CHAIN_VALUES, dd as NUMERIC_OPERATORS, eH as NexeraCredentialType, b as NexeraEvmChains, du as NonParsedQueryConfiguration, de as NumericOperator, ez as OLD_AMLScreeningsResultsCredentialSubjectSchema, ev as OLD_IDImageCredentialSubjectSchema, ew as OLD_IDInformationCredentialSubjectSchema, ex as OLD_ProofOfResidenceCredentialSubjectSchema, ey as OLD_SelfieImageCredentialSubjectSchema, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, eg as OrganizationId, ag as OtpCode, a0 as P2Signature, ec as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, aj as PUBLIC_SERVICES_SCHEMA_MAP, dr as PartialQueryConfigSimplified, ed as PersonalInformationFieldsIdentityDocuments, Q as PolkadotAddress, R as PolkadotSignature, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, k as PolygonNetworkNames, z as PrivateKey, cX as ProofData, eD as ProofOfResidenceCredentialSubjectSchema, D as PublicKey, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, bw as QueryId, b5 as QueryPrefix, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, at as RiskScoreType, as as RiskScoreTypes, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, bu as ScenarioId, b3 as ScenarioPrefix, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, eC as SelfieImageCredentialSubjectSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, $ as SpSignature, M as StarknetAddress, S as StarknetChainId, O as StarknetSignature, bM as StartCompletedNotification, co as StartFlowRequest, b8 as StorageId, aK as StoragePrefix, y as String0x, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, bg as TagId, aS as TagPrefix, bi as TagsToTransactionReviewsId, aT as TagsToTransactionReviewsPrefix, ce as TemplateScenario, be as TestId, aQ as TestPrefix, Y as TezosAddress, T as TezosChainId, X as TezosContractAddress, Z as TezosEntrypointName, W as TezosImplicitAddress, a1 as TezosSignature, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bj as TransactionAddressesId, aU as TransactionAddressesPrefix, bQ as TransactionData, bp as TransactionExtractedInfosId, a_ as TransactionExtractedInfosPrefix, bl as TransactionFeesId, aW as TransactionFeesPrefix, bk as TransactionId, bo as TransactionInfosId, aZ as TransactionInfosPrefix, br as TransactionMethodExtractedInfosId, b0 as TransactionMethodExtractedInfosPrefix, bq as TransactionMethodsId, a$ as TransactionMethodsPrefix, bn as TransactionPartiesId, aY as TransactionPartiesPrefix, aV as TransactionPrefix, bY as TransactionResponse, bm as TransactionReviewId, aX as TransactionReviewPrefix, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, G as TxHash, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, af as UuidString, eK as VerifiableCredential, e7 as VerificationMode, e6 as VerificationModes, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, bb as WalletId, aN as WalletPrefix, cB as WalletSignResponse, e2 as WalletSignatureResponse, eq as Web2CreateSessionParams, ei as WorkflowId, eh as WorkspaceId, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, ah as ZodParse, ap as countryISO2toISO3Mapping, ao as countryISO3toISO2Mapping, b7 as createBrandedSchemaId, bx as generateId, eI as getCredentialName, x as isValidAddress, aq as isoCountriesNameFromISO2, d8 as operatorDisplayMap, ar as parseISO3CountryCode, d1 as parseIden3Message, d2 as parseSessionIdFromUrl, J as shortAddress, ai as shortBlockchainAddress } from './identity-api.schema-a3f556f3.esm.js';
3
- export { c as CryptoCode, b as CryptoCodes, a as CurrencyCode, C as CurrencyCodes, u as PaymentType, P as PaymentTypes, T as TRANSACTION_CHARTS, e as TRANSACTION_TABLE_COLUMNS, r as TransactionCurrencyCode, q as TransactionCurrencyCodes, p as TransactionDirection, o as TransactionDirections, w as TransactionPartiesType, v as TransactionPartiesTypes, t as TransactionProvider, s as TransactionProviders, n as TransactionReviewStatus, m as TransactionReviewStatuses, l as TransactionRiskLevel, k as TransactionRiskLevels, f as TransactionTableColumn, h as TransactionType, j as TransactionTypeWithAll, g as TransactionTypes, i as TransactionTypesWithAll, d as TransactionsChartType } from './transaction.schema-221579a3.esm.js';
1
+ import { C as CredentialTypes } from './identity-api.schema-ee362a66.esm.js';
2
+ export { s as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, o as ACTIVE_TEZOS_CHAIN_VALUES, am as ALPHA_2_COUNTRIES, d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, bh as ActionId, b6 as ActionPrefix, ef as AdditionalCustomerInformationParams, F as AddressSchema, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, an as Alpha2Country, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, bc as AppId, aO as AppPrefix, K as AptosAddress, L as AptosSignature, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, a6 as BLOCKCHAIN_NAMESPACES, a8 as BLOCKCHAIN_NAMESPACES_NAMES, ac as BLOCKCHAIN_NAMESPACE_TO_NAME, ab as BLOCKCHAIN_NAME_TO_NAMESPACE, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, aE as BasicCustomerContactInformation, a4 as BlockchainAddress, B as BlockchainId, a7 as BlockchainNamespace, a5 as BlockchainSignature, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, p as COSMOS_CHAIN_NAMES, q as COSMOS_CHAIN_NAMES_LIST, r as COSMOS_CHAIN_VALUES, aF as CUSTOMERS_CHARTS, aJ as CUSTOMER_AUTOMATION_REASONS, aH as CUSTOMER_TABLE_COLUMNS, a2 as CardanoAddress, a3 as CardanoSignature, bd as ChallengeId, aP as ChallengePrefix, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, U as CosmosAddress, t as CosmosChainId, V as CosmosSignature, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, eL as CredentialMediaType, eG as CredentialNames, c_ as CredentialQrCodeData, eF as CredentialSchemas, eJ as CredentialType, C as CredentialTypes, ej as CustomerId, aB as CustomerOnboardingLevel, aA as CustomerOnboardingLevels, bf as CustomerScreeningId, aR as CustomerScreeningPrefix, aD as CustomerStatus, aC as CustomerStatuses, aI as CustomerTableColumn, av as CustomerType, au as CustomerTypes, aG as CustomersChartType, dh as DATE_OPERATORS, a9 as DISPLAYED_LOCKCHAIN_NAMESPACES, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, aa as DisplayedBlockchainNamespace, H as EIP155Signature, ad as ENVS, E as EVM_BLOCK_TIME, i as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, _ as EdSignature, ba as EmailId, aM as EmailPrefix, ae as EnvironmentSchema, j as EvmChainId, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, el as ExternalCustomerId, e4 as FLOW_TYPES, e5 as FlowType, I as FunctionCallData, cx as GenerateWalletChallengeRequest, eE as GenericVerifiableCredentialSchema, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, er as ID3CredentialSubjectSchema, e8 as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, ea as IDENTITY_DOCUMENT_OPTIONS, eB as IDImageCredentialSubjectSchema, dm as IDInformation, eA as IDInformationCredentialSubjectSchema, es as IDScanCredentialSubjectSchema, et as IDScanPassportCredentialSubjectSchema, eu as IDScanSelfieCredentialSubjectSchema, al as ISO3CountryCode, ee as Identifier, cI as IdentityAppMessage, en as IdentityAppV2Web2JWT, em as IdentityAppV2Web3JWT, e9 as IdentityDocumentCountryListOption, eb as IdentityDocumentOptionsType, b9 as IdentityId, cL as IdentityMessage, bN as IdentityNotificationMessage, aL as IdentityPrefix, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, ek as IdentityWidgetAccessToken, eo as IdentityWidgetAccessToken_NEW, ep as IdentityWidgetSessionToken, bO as InitialDataRequest, bW as InitialDataResponse, bt as InstitutionExtractedInfosId, b2 as InstitutionExtractedInfosPrefix, bs as InstitutionId, b1 as InstitutionPrefix, ak as IpAddress, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, az as KybOnboardingLevel, ay as KybOnboardingLevels, bC as KycCompletionData, bD as KycCompletionNotification, ax as KycOnboardingLevel, aw as KycOnboardingLevels, bv as ListId, b4 as ListPrefix, cO as MediaType, cP as MediaTypePID, by as MemberId, w as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, h as NEXERA_CHAIN_VALUES, d as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, a as NEXERA_EVM_CHAINS_ID, f as NEXERA_EVM_CHAIN_NAMES, g as NEXERA_EVM_CHAIN_NAMES_LIST, e as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_NAMES, v as NEXERA_STARKNET_CHAIN_VALUES, c as NEXERA_TEZOS_CHAINS, l as NEXERA_TEZOS_CHAIN_NAMES, m as NEXERA_TEZOS_CHAIN_NAMES_LIST, n as NEXERA_TEZOS_CHAIN_VALUES, dd as NUMERIC_OPERATORS, eH as NexeraCredentialType, b as NexeraEvmChains, du as NonParsedQueryConfiguration, de as NumericOperator, ez as OLD_AMLScreeningsResultsCredentialSubjectSchema, ev as OLD_IDImageCredentialSubjectSchema, ew as OLD_IDInformationCredentialSubjectSchema, ex as OLD_ProofOfResidenceCredentialSubjectSchema, ey as OLD_SelfieImageCredentialSubjectSchema, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, eg as OrganizationId, ag as OtpCode, a0 as P2Signature, ec as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, aj as PUBLIC_SERVICES_SCHEMA_MAP, dr as PartialQueryConfigSimplified, ed as PersonalInformationFieldsIdentityDocuments, Q as PolkadotAddress, R as PolkadotSignature, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, k as PolygonNetworkNames, z as PrivateKey, cX as ProofData, eD as ProofOfResidenceCredentialSubjectSchema, D as PublicKey, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, bw as QueryId, b5 as QueryPrefix, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, at as RiskScoreType, as as RiskScoreTypes, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, bu as ScenarioId, b3 as ScenarioPrefix, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, eC as SelfieImageCredentialSubjectSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, $ as SpSignature, M as StarknetAddress, S as StarknetChainId, O as StarknetSignature, bM as StartCompletedNotification, co as StartFlowRequest, b8 as StorageId, aK as StoragePrefix, y as String0x, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, bg as TagId, aS as TagPrefix, bi as TagsToTransactionReviewsId, aT as TagsToTransactionReviewsPrefix, ce as TemplateScenario, be as TestId, aQ as TestPrefix, Y as TezosAddress, T as TezosChainId, X as TezosContractAddress, Z as TezosEntrypointName, W as TezosImplicitAddress, a1 as TezosSignature, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bj as TransactionAddressesId, aU as TransactionAddressesPrefix, bQ as TransactionData, bp as TransactionExtractedInfosId, a_ as TransactionExtractedInfosPrefix, bl as TransactionFeesId, aW as TransactionFeesPrefix, bk as TransactionId, bo as TransactionInfosId, aZ as TransactionInfosPrefix, br as TransactionMethodExtractedInfosId, b0 as TransactionMethodExtractedInfosPrefix, bq as TransactionMethodsId, a$ as TransactionMethodsPrefix, bn as TransactionPartiesId, aY as TransactionPartiesPrefix, aV as TransactionPrefix, bY as TransactionResponse, bm as TransactionReviewId, aX as TransactionReviewPrefix, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, G as TxHash, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, af as UuidString, eK as VerifiableCredential, e7 as VerificationMode, e6 as VerificationModes, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, bb as WalletId, aN as WalletPrefix, cB as WalletSignResponse, e2 as WalletSignatureResponse, eq as Web2CreateSessionParams, ei as WorkflowId, eh as WorkspaceId, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, ah as ZodParse, ap as countryISO2toISO3Mapping, ao as countryISO3toISO2Mapping, b7 as createBrandedSchemaId, bx as generateId, eI as getCredentialName, x as isValidAddress, aq as isoCountriesNameFromISO2, d8 as operatorDisplayMap, ar as parseISO3CountryCode, d1 as parseIden3Message, d2 as parseSessionIdFromUrl, J as shortAddress, ai as shortBlockchainAddress } from './identity-api.schema-ee362a66.esm.js';
3
+ export { c as CryptoCode, b as CryptoCodes, a as CurrencyCode, C as CurrencyCodes, u as PaymentType, P as PaymentTypes, T as TRANSACTION_CHARTS, e as TRANSACTION_TABLE_COLUMNS, r as TransactionCurrencyCode, q as TransactionCurrencyCodes, p as TransactionDirection, o as TransactionDirections, w as TransactionPartiesType, v as TransactionPartiesTypes, t as TransactionProvider, s as TransactionProviders, n as TransactionReviewStatus, m as TransactionReviewStatuses, l as TransactionRiskLevel, k as TransactionRiskLevels, f as TransactionTableColumn, h as TransactionType, j as TransactionTypeWithAll, g as TransactionTypes, i as TransactionTypesWithAll, d as TransactionsChartType } from './transaction.schema-2dd50ae5.esm.js';
4
4
  import { z } from 'zod';
5
- export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-c53dbf36.esm.js';
5
+ export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-5587da47.esm.js';
6
6
  import 'nanoid';
7
7
 
8
8
  var decodeUint8Array = function decodeUint8Array(data) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.8.0",
3
+ "version": "2.10.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var identityApi_schema = require('./identity-api.schema-725ecd1d.cjs.prod.js');
3
+ var identityApi_schema = require('./identity-api.schema-2fb2ff78.cjs.prod.js');
4
4
  var zod = require('zod');
5
5
 
6
6
  var CurrencyCodes = ["ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARP", "ARS", "ARY", "ATS", "AUD", "AWG", "AYM", "AZM", "AZN", "BAD", "BAM", "BBD", "BDT", "BEC", "BEF", "BEL", "BGJ", "BGK", "BGL", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CAD", "CDF", "CHC", "CHE", "CHF", "CHW", "CLF", "CLP", "CNY", "COP", "COU", "CRC", "CSD", "CSJ", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHP", "GHS", "GIP", "GMD", "GNE", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAJ", "LAK", "LBP", "LKR", "LRD", "LSL", "LSM", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MDL", "MGA", "MGF", "MKD", "MLF", "MMK", "MNT", "MOP", "MRO", "MRU", "MTL", "MTP", "MUR", "MVQ", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEH", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROK", "ROL", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGW", "UGX", "USD", "USN", "USS", "UYI", "UYN", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "VES", "VNC", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWC", "ZWD", "ZWL", "ZWN", "ZWR"];
@@ -24,7 +24,7 @@ var TransactionTypeWithAll = zod.z["enum"](TransactionTypesWithAll);
24
24
  var TransactionRiskLevels = ["Low", "Medium", "High"];
25
25
  var TransactionRiskLevel = zod.z["enum"](TransactionRiskLevels);
26
26
  // TransactionReview Status
27
- var TransactionReviewStatuses = ["pending", "approved", "under_investigation", "blocked"];
27
+ var TransactionReviewStatuses = ["pending", "approved", "under_investigation", "blocked", "failed"];
28
28
  var TransactionReviewStatus = zod.z["enum"](TransactionReviewStatuses);
29
29
  // TransactionInfos Direction
30
30
  var TransactionDirections = ["IN", "OUT"];
@@ -1,4 +1,4 @@
1
- import { eM as _toConsumableArray } from './identity-api.schema-a3f556f3.esm.js';
1
+ import { eM as _toConsumableArray } from './identity-api.schema-ee362a66.esm.js';
2
2
  import { z } from 'zod';
3
3
 
4
4
  var CurrencyCodes = ["ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARP", "ARS", "ARY", "ATS", "AUD", "AWG", "AYM", "AZM", "AZN", "BAD", "BAM", "BBD", "BDT", "BEC", "BEF", "BEL", "BGJ", "BGK", "BGL", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CAD", "CDF", "CHC", "CHE", "CHF", "CHW", "CLF", "CLP", "CNY", "COP", "COU", "CRC", "CSD", "CSJ", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHP", "GHS", "GIP", "GMD", "GNE", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAJ", "LAK", "LBP", "LKR", "LRD", "LSL", "LSM", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MDL", "MGA", "MGF", "MKD", "MLF", "MMK", "MNT", "MOP", "MRO", "MRU", "MTL", "MTP", "MUR", "MVQ", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEH", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROK", "ROL", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGW", "UGX", "USD", "USN", "USS", "UYI", "UYN", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "VES", "VNC", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWC", "ZWD", "ZWL", "ZWN", "ZWR"];
@@ -22,7 +22,7 @@ var TransactionTypeWithAll = z["enum"](TransactionTypesWithAll);
22
22
  var TransactionRiskLevels = ["Low", "Medium", "High"];
23
23
  var TransactionRiskLevel = z["enum"](TransactionRiskLevels);
24
24
  // TransactionReview Status
25
- var TransactionReviewStatuses = ["pending", "approved", "under_investigation", "blocked"];
25
+ var TransactionReviewStatuses = ["pending", "approved", "under_investigation", "blocked", "failed"];
26
26
  var TransactionReviewStatus = z["enum"](TransactionReviewStatuses);
27
27
  // TransactionInfos Direction
28
28
  var TransactionDirections = ["IN", "OUT"];
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var identityApi_schema = require('./identity-api.schema-e1fe9b0e.cjs.dev.js');
3
+ var identityApi_schema = require('./identity-api.schema-841bc821.cjs.dev.js');
4
4
  var zod = require('zod');
5
5
 
6
6
  var CurrencyCodes = ["ADP", "AED", "AFA", "AFN", "ALK", "ALL", "AMD", "ANG", "AOA", "AOK", "AON", "AOR", "ARA", "ARP", "ARS", "ARY", "ATS", "AUD", "AWG", "AYM", "AZM", "AZN", "BAD", "BAM", "BBD", "BDT", "BEC", "BEF", "BEL", "BGJ", "BGK", "BGL", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BOP", "BOV", "BRB", "BRC", "BRE", "BRL", "BRN", "BRR", "BSD", "BTN", "BUK", "BWP", "BYB", "BYN", "BYR", "BZD", "CAD", "CDF", "CHC", "CHE", "CHF", "CHW", "CLF", "CLP", "CNY", "COP", "COU", "CRC", "CSD", "CSJ", "CSK", "CUC", "CUP", "CVE", "CYP", "CZK", "DDM", "DEM", "DJF", "DKK", "DOP", "DZD", "ECS", "ECV", "EEK", "EGP", "ERN", "ESA", "ESB", "ESP", "ETB", "EUR", "FIM", "FJD", "FKP", "FRF", "GBP", "GEK", "GEL", "GHC", "GHP", "GHS", "GIP", "GMD", "GNE", "GNF", "GNS", "GQE", "GRD", "GTQ", "GWE", "GWP", "GYD", "HKD", "HNL", "HRD", "HRK", "HTG", "HUF", "IDR", "IEP", "ILP", "ILR", "ILS", "INR", "IQD", "IRR", "ISJ", "ISK", "ITL", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAJ", "LAK", "LBP", "LKR", "LRD", "LSL", "LSM", "LTL", "LTT", "LUC", "LUF", "LUL", "LVL", "LVR", "LYD", "MAD", "MDL", "MGA", "MGF", "MKD", "MLF", "MMK", "MNT", "MOP", "MRO", "MRU", "MTL", "MTP", "MUR", "MVQ", "MVR", "MWK", "MXN", "MXP", "MXV", "MYR", "MZE", "MZM", "MZN", "NAD", "NGN", "NIC", "NIO", "NLG", "NOK", "NPR", "NZD", "OMR", "PAB", "PEH", "PEI", "PEN", "PES", "PGK", "PHP", "PKR", "PLN", "PLZ", "PTE", "PYG", "QAR", "RHD", "ROK", "ROL", "RON", "RSD", "RUB", "RUR", "RWF", "SAR", "SBD", "SCR", "SDD", "SDG", "SDP", "SEK", "SGD", "SHP", "SIT", "SKK", "SLL", "SOS", "SRD", "SRG", "SSP", "STD", "STN", "SUR", "SVC", "SYP", "SZL", "THB", "TJR", "TJS", "TMM", "TMT", "TND", "TOP", "TPE", "TRL", "TRY", "TTD", "TWD", "TZS", "UAH", "UAK", "UGS", "UGW", "UGX", "USD", "USN", "USS", "UYI", "UYN", "UYP", "UYU", "UYW", "UZS", "VEB", "VEF", "VES", "VNC", "VND", "VUV", "WST", "XAF", "XAG", "XAU", "XBA", "XBB", "XBC", "XBD", "XCD", "XDR", "XEU", "XFO", "XFU", "XOF", "XPD", "XPF", "XPT", "XRE", "XSU", "XTS", "XUA", "XXX", "YDD", "YER", "YUD", "YUM", "YUN", "ZAL", "ZAR", "ZMK", "ZMW", "ZRN", "ZRZ", "ZWC", "ZWD", "ZWL", "ZWN", "ZWR"];
@@ -24,7 +24,7 @@ var TransactionTypeWithAll = zod.z["enum"](TransactionTypesWithAll);
24
24
  var TransactionRiskLevels = ["Low", "Medium", "High"];
25
25
  var TransactionRiskLevel = zod.z["enum"](TransactionRiskLevels);
26
26
  // TransactionReview Status
27
- var TransactionReviewStatuses = ["pending", "approved", "under_investigation", "blocked"];
27
+ var TransactionReviewStatuses = ["pending", "approved", "under_investigation", "blocked", "failed"];
28
28
  var TransactionReviewStatus = zod.z["enum"](TransactionReviewStatuses);
29
29
  // TransactionInfos Direction
30
30
  var TransactionDirections = ["IN", "OUT"];
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('../../dist/identity-api.schema-e1fe9b0e.cjs.dev.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-841bc821.cjs.dev.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var identityApi_schema = require('../../dist/identity-api.schema-725ecd1d.cjs.prod.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-2fb2ff78.cjs.prod.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -1,3 +1,3 @@
1
- export { d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, c_ as CredentialQrCodeData, dh as DATE_OPERATORS, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, cx as GenerateWalletChallengeRequest, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, dm as IDInformation, cI as IdentityAppMessage, cL as IdentityMessage, bN as IdentityNotificationMessage, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, bO as InitialDataRequest, bW as InitialDataResponse, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, bC as KycCompletionData, bD as KycCompletionNotification, cO as MediaType, cP as MediaTypePID, dd as NUMERIC_OPERATORS, du as NonParsedQueryConfiguration, de as NumericOperator, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, dr as PartialQueryConfigSimplified, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, cX as ProofData, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, bM as StartCompletedNotification, co as StartFlowRequest, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, ce as TemplateScenario, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bQ as TransactionData, bY as TransactionResponse, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, cB as WalletSignResponse, e2 as WalletSignatureResponse, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, d8 as operatorDisplayMap, d1 as parseIden3Message, d2 as parseSessionIdFromUrl } from '../../dist/identity-api.schema-a3f556f3.esm.js';
1
+ export { d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, c_ as CredentialQrCodeData, dh as DATE_OPERATORS, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, cx as GenerateWalletChallengeRequest, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, dm as IDInformation, cI as IdentityAppMessage, cL as IdentityMessage, bN as IdentityNotificationMessage, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, bO as InitialDataRequest, bW as InitialDataResponse, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, bC as KycCompletionData, bD as KycCompletionNotification, cO as MediaType, cP as MediaTypePID, dd as NUMERIC_OPERATORS, du as NonParsedQueryConfiguration, de as NumericOperator, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, dr as PartialQueryConfigSimplified, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, cX as ProofData, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, bM as StartCompletedNotification, co as StartFlowRequest, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, ce as TemplateScenario, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bQ as TransactionData, bY as TransactionResponse, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, cB as WalletSignResponse, e2 as WalletSignatureResponse, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, d8 as operatorDisplayMap, d1 as parseIden3Message, d2 as parseSessionIdFromUrl } from '../../dist/identity-api.schema-ee362a66.esm.js';
2
2
  import 'zod';
3
3
  import 'nanoid';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.8.0-dev",
3
+ "version": "2.10.0-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var customers_schema = require('../../dist/customers.schema-1bf4fe64.cjs.dev.js');
5
+ var customers_schema = require('../../dist/customers.schema-a23a7d7d.cjs.dev.js');
6
6
  require('zod');
7
- require('../../dist/identity-api.schema-e1fe9b0e.cjs.dev.js');
7
+ require('../../dist/identity-api.schema-841bc821.cjs.dev.js');
8
8
  require('nanoid');
9
9
 
10
10
 
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var customers_schema = require('../../dist/customers.schema-80e163e9.cjs.prod.js');
5
+ var customers_schema = require('../../dist/customers.schema-f2cbacca.cjs.prod.js');
6
6
  require('zod');
7
- require('../../dist/identity-api.schema-725ecd1d.cjs.prod.js');
7
+ require('../../dist/identity-api.schema-2fb2ff78.cjs.prod.js');
8
8
  require('nanoid');
9
9
 
10
10