@nexeraid/identity-schemas 2.3.24-dev → 2.3.25-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 (42) hide show
  1. package/dist/{customers.schema-cc3df18f.cjs.dev.js → customers.schema-0ce8464a.cjs.dev.js} +1 -1
  2. package/dist/{customers.schema-f0d472b1.cjs.prod.js → customers.schema-459fdc4d.cjs.prod.js} +1 -1
  3. package/dist/{customers.schema-0306abb6.esm.js → customers.schema-8f6c7924.esm.js} +1 -1
  4. package/dist/declarations/src/identity/app-requests.schema.d.ts +366 -366
  5. package/dist/declarations/src/identity/app-requests.schema.d.ts.map +1 -1
  6. package/dist/declarations/src/identity/challenge-query.schema.d.ts +117 -149
  7. package/dist/declarations/src/identity/challenge-query.schema.d.ts.map +1 -1
  8. package/dist/declarations/src/identity/host-requests.schema.d.ts +44 -44
  9. package/dist/declarations/src/identity/identity-v2.schema.d.ts +94 -94
  10. package/dist/declarations/src/identity/kyc.schema.d.ts +150 -150
  11. package/dist/declarations/src/identity/polygon-id.schema.d.ts +8 -8
  12. package/dist/declarations/src/identity/query.schema.d.ts +69 -67
  13. package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
  14. package/dist/declarations/src/identity/zkps.schema.d.ts +97 -97
  15. package/dist/declarations/src/identity-ids.schema.d.ts +20 -2
  16. package/dist/declarations/src/identity-ids.schema.d.ts.map +1 -1
  17. package/dist/declarations/src/nexeraSSID.schema.d.ts +2 -0
  18. package/dist/declarations/src/nexeraSSID.schema.d.ts.map +1 -1
  19. package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +75 -75
  20. package/dist/{frontend-utilities.schema-02fc8336.esm.js → frontend-utilities.schema-8b213997.esm.js} +1 -1
  21. package/dist/{frontend-utilities.schema-0be040b7.cjs.dev.js → frontend-utilities.schema-9ce4190b.cjs.dev.js} +1 -1
  22. package/dist/{frontend-utilities.schema-cd88e673.cjs.prod.js → frontend-utilities.schema-d4d6374c.cjs.prod.js} +1 -1
  23. package/dist/{identity-api.schema-2de31155.cjs.prod.js → identity-api.schema-a16ec830.cjs.dev.js} +417 -396
  24. package/dist/{identity-api.schema-68a83f54.esm.js → identity-api.schema-d1954107.esm.js} +406 -396
  25. package/dist/{identity-api.schema-bbb2c243.cjs.dev.js → identity-api.schema-f103ebd9.cjs.prod.js} +417 -396
  26. package/dist/nexeraid-identity-schemas.cjs.dev.js +14 -3
  27. package/dist/nexeraid-identity-schemas.cjs.prod.js +14 -3
  28. package/dist/nexeraid-identity-schemas.esm.js +3 -3
  29. package/dist/package.json +1 -1
  30. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +3 -2
  31. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +3 -2
  32. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  33. package/package.json +1 -1
  34. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
  35. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
  36. package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
  37. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
  38. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
  39. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
  40. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +2 -2
  41. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +2 -2
  42. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +2 -2
@@ -1241,10 +1241,10 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1241
1241
  data: z.ZodUnion<[z.ZodObject<{
1242
1242
  type: z.ZodLiteral<"RuleEngineScenarioExecution">;
1243
1243
  data: z.ZodObject<{
1244
- customerId: z.ZodString;
1245
- scenarioExecutionId: z.ZodString;
1246
- status: z.ZodEnum<["valid", "not-valid", "error", "unknown"]>;
1247
- results: z.ZodArray<z.ZodArray<z.ZodObject<{
1244
+ customerId: z.ZodOptional<z.ZodString>;
1245
+ scenarioExecutionId: z.ZodOptional<z.ZodString>;
1246
+ status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "error", "unknown"]>>;
1247
+ results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
1248
1248
  objectType: z.ZodEnum<["ChallengeQuery", "OnChainZKP", "OffChainZKP"]>;
1249
1249
  objectId: z.ZodString;
1250
1250
  name: z.ZodString;
@@ -1304,12 +1304,12 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1304
1304
  objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
1305
1305
  objectId: string;
1306
1306
  address?: string | null | undefined;
1307
- }>, "many">, "many">;
1307
+ }>, "many">, "many">>;
1308
1308
  }, "strip", z.ZodTypeAny, {
1309
- status: "valid" | "unknown" | "not-valid" | "error";
1310
- customerId: string;
1311
- scenarioExecutionId: string;
1312
- results: {
1309
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
1310
+ customerId?: string | undefined;
1311
+ scenarioExecutionId?: string | undefined;
1312
+ results?: {
1313
1313
  name: string;
1314
1314
  result: {
1315
1315
  result: {
@@ -1323,12 +1323,12 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1323
1323
  objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
1324
1324
  objectId: string;
1325
1325
  address?: string | null | undefined;
1326
- }[][];
1326
+ }[][] | undefined;
1327
1327
  }, {
1328
- status: "valid" | "unknown" | "not-valid" | "error";
1329
- customerId: string;
1330
- scenarioExecutionId: string;
1331
- results: {
1328
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
1329
+ customerId?: string | undefined;
1330
+ scenarioExecutionId?: string | undefined;
1331
+ results?: {
1332
1332
  name: string;
1333
1333
  result: {
1334
1334
  result: {
@@ -1342,15 +1342,15 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1342
1342
  objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
1343
1343
  objectId: string;
1344
1344
  address?: string | null | undefined;
1345
- }[][];
1345
+ }[][] | undefined;
1346
1346
  }>;
1347
1347
  }, "strip", z.ZodTypeAny, {
1348
1348
  type: "RuleEngineScenarioExecution";
1349
1349
  data: {
1350
- status: "valid" | "unknown" | "not-valid" | "error";
1351
- customerId: string;
1352
- scenarioExecutionId: string;
1353
- results: {
1350
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
1351
+ customerId?: string | undefined;
1352
+ scenarioExecutionId?: string | undefined;
1353
+ results?: {
1354
1354
  name: string;
1355
1355
  result: {
1356
1356
  result: {
@@ -1364,15 +1364,15 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1364
1364
  objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
1365
1365
  objectId: string;
1366
1366
  address?: string | null | undefined;
1367
- }[][];
1367
+ }[][] | undefined;
1368
1368
  };
1369
1369
  }, {
1370
1370
  type: "RuleEngineScenarioExecution";
1371
1371
  data: {
1372
- status: "valid" | "unknown" | "not-valid" | "error";
1373
- customerId: string;
1374
- scenarioExecutionId: string;
1375
- results: {
1372
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
1373
+ customerId?: string | undefined;
1374
+ scenarioExecutionId?: string | undefined;
1375
+ results?: {
1376
1376
  name: string;
1377
1377
  result: {
1378
1378
  result: {
@@ -1386,7 +1386,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1386
1386
  objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
1387
1387
  objectId: string;
1388
1388
  address?: string | null | undefined;
1389
- }[][];
1389
+ }[][] | undefined;
1390
1390
  };
1391
1391
  }>, z.ZodObject<{
1392
1392
  type: z.ZodLiteral<"OffChainScenarioExecution">;
@@ -1415,21 +1415,21 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1415
1415
  query: z.ZodRecord<z.ZodString, z.ZodAny>;
1416
1416
  }, "strip", z.ZodTypeAny, {
1417
1417
  id: number;
1418
- circuitId: string;
1419
1418
  query: Record<string, any>;
1419
+ circuitId: string;
1420
1420
  optional?: boolean | undefined;
1421
1421
  }, {
1422
1422
  id: number;
1423
- circuitId: string;
1424
1423
  query: Record<string, any>;
1424
+ circuitId: string;
1425
1425
  optional?: boolean | undefined;
1426
1426
  }>, "many">;
1427
1427
  }, "strip", z.ZodTypeAny, {
1428
1428
  callbackUrl: string;
1429
1429
  scope: {
1430
1430
  id: number;
1431
- circuitId: string;
1432
1431
  query: Record<string, any>;
1432
+ circuitId: string;
1433
1433
  optional?: boolean | undefined;
1434
1434
  }[];
1435
1435
  message?: string | undefined;
@@ -1439,8 +1439,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1439
1439
  callbackUrl: string;
1440
1440
  scope: {
1441
1441
  id: number;
1442
- circuitId: string;
1443
1442
  query: Record<string, any>;
1443
+ circuitId: string;
1444
1444
  optional?: boolean | undefined;
1445
1445
  }[];
1446
1446
  message?: string | undefined;
@@ -1456,8 +1456,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1456
1456
  callbackUrl: string;
1457
1457
  scope: {
1458
1458
  id: number;
1459
- circuitId: string;
1460
1459
  query: Record<string, any>;
1460
+ circuitId: string;
1461
1461
  optional?: boolean | undefined;
1462
1462
  }[];
1463
1463
  message?: string | undefined;
@@ -1475,8 +1475,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1475
1475
  callbackUrl: string;
1476
1476
  scope: {
1477
1477
  id: number;
1478
- circuitId: string;
1479
1478
  query: Record<string, any>;
1479
+ circuitId: string;
1480
1480
  optional?: boolean | undefined;
1481
1481
  }[];
1482
1482
  message?: string | undefined;
@@ -1630,40 +1630,40 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1630
1630
  to?: string | undefined;
1631
1631
  }>>>;
1632
1632
  verificationError: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1633
- query: z.ZodObject<{
1633
+ query: z.ZodArray<z.ZodObject<{
1634
1634
  type: z.ZodEnum<["IDInformation", "SelfieImage", "IDImage", "ProofOfResidence", "AMLScreeningsResults", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>;
1635
1635
  requestId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1636
1636
  attribute: z.ZodString;
1637
- value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">]>;
1637
+ value: z.ZodUnion<[z.ZodBoolean, z.ZodString, z.ZodNumber, z.ZodArray<z.ZodString, "many">, z.ZodArray<z.ZodNumber, "many">]>;
1638
1638
  operator: z.ZodEnum<["$noop", "$eq", "$lt", "$lte", "$gt", "$gte", "$in", "$nin", "$ne"]>;
1639
1639
  }, "strip", z.ZodTypeAny, {
1640
- value: string | number | boolean | (string | number)[];
1640
+ value: string | number | boolean | string[] | number[];
1641
1641
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
1642
1642
  attribute: string;
1643
1643
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
1644
1644
  requestId?: number | null | undefined;
1645
1645
  }, {
1646
- value: string | number | boolean | (string | number)[];
1646
+ value: string | number | boolean | string[] | number[];
1647
1647
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
1648
1648
  attribute: string;
1649
1649
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
1650
1650
  requestId?: number | null | undefined;
1651
- }>;
1651
+ }>, "many">;
1652
1652
  workflowSessionId: z.ZodOptional<z.ZodString>;
1653
1653
  }, "strip", z.ZodTypeAny, {
1654
1654
  status: "pending" | "authorised" | "unauthorised";
1655
- projectId: string;
1656
- executionId: string;
1657
- sessionId: string;
1658
- scenarioId: string;
1659
- scenarioName: string;
1660
1655
  query: {
1661
- value: string | number | boolean | (string | number)[];
1656
+ value: string | number | boolean | string[] | number[];
1662
1657
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
1663
1658
  attribute: string;
1664
1659
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
1665
1660
  requestId?: number | null | undefined;
1666
- };
1661
+ }[];
1662
+ projectId: string;
1663
+ executionId: string;
1664
+ sessionId: string;
1665
+ scenarioId: string;
1666
+ scenarioName: string;
1667
1667
  requestMessage: {
1668
1668
  id: string;
1669
1669
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -1671,8 +1671,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1671
1671
  callbackUrl: string;
1672
1672
  scope: {
1673
1673
  id: number;
1674
- circuitId: string;
1675
1674
  query: Record<string, any>;
1675
+ circuitId: string;
1676
1676
  optional?: boolean | undefined;
1677
1677
  }[];
1678
1678
  message?: string | undefined;
@@ -1714,18 +1714,18 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1714
1714
  workflowSessionId?: string | undefined;
1715
1715
  }, {
1716
1716
  status: "pending" | "authorised" | "unauthorised";
1717
- projectId: string;
1718
- executionId: string;
1719
- sessionId: string;
1720
- scenarioId: string;
1721
- scenarioName: string;
1722
1717
  query: {
1723
- value: string | number | boolean | (string | number)[];
1718
+ value: string | number | boolean | string[] | number[];
1724
1719
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
1725
1720
  attribute: string;
1726
1721
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
1727
1722
  requestId?: number | null | undefined;
1728
- };
1723
+ }[];
1724
+ projectId: string;
1725
+ executionId: string;
1726
+ sessionId: string;
1727
+ scenarioId: string;
1728
+ scenarioName: string;
1729
1729
  requestMessage: {
1730
1730
  id: string;
1731
1731
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -1733,8 +1733,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1733
1733
  callbackUrl: string;
1734
1734
  scope: {
1735
1735
  id: number;
1736
- circuitId: string;
1737
1736
  query: Record<string, any>;
1737
+ circuitId: string;
1738
1738
  optional?: boolean | undefined;
1739
1739
  }[];
1740
1740
  message?: string | undefined;
@@ -1779,18 +1779,18 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1779
1779
  type: "OffChainScenarioExecution";
1780
1780
  data: {
1781
1781
  status: "pending" | "authorised" | "unauthorised";
1782
- projectId: string;
1783
- executionId: string;
1784
- sessionId: string;
1785
- scenarioId: string;
1786
- scenarioName: string;
1787
1782
  query: {
1788
- value: string | number | boolean | (string | number)[];
1783
+ value: string | number | boolean | string[] | number[];
1789
1784
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
1790
1785
  attribute: string;
1791
1786
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
1792
1787
  requestId?: number | null | undefined;
1793
- };
1788
+ }[];
1789
+ projectId: string;
1790
+ executionId: string;
1791
+ sessionId: string;
1792
+ scenarioId: string;
1793
+ scenarioName: string;
1794
1794
  requestMessage: {
1795
1795
  id: string;
1796
1796
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -1798,8 +1798,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1798
1798
  callbackUrl: string;
1799
1799
  scope: {
1800
1800
  id: number;
1801
- circuitId: string;
1802
1801
  query: Record<string, any>;
1802
+ circuitId: string;
1803
1803
  optional?: boolean | undefined;
1804
1804
  }[];
1805
1805
  message?: string | undefined;
@@ -1844,18 +1844,18 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1844
1844
  type: "OffChainScenarioExecution";
1845
1845
  data: {
1846
1846
  status: "pending" | "authorised" | "unauthorised";
1847
- projectId: string;
1848
- executionId: string;
1849
- sessionId: string;
1850
- scenarioId: string;
1851
- scenarioName: string;
1852
1847
  query: {
1853
- value: string | number | boolean | (string | number)[];
1848
+ value: string | number | boolean | string[] | number[];
1854
1849
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
1855
1850
  attribute: string;
1856
1851
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
1857
1852
  requestId?: number | null | undefined;
1858
- };
1853
+ }[];
1854
+ projectId: string;
1855
+ executionId: string;
1856
+ sessionId: string;
1857
+ scenarioId: string;
1858
+ scenarioName: string;
1859
1859
  requestMessage: {
1860
1860
  id: string;
1861
1861
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -1863,8 +1863,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1863
1863
  callbackUrl: string;
1864
1864
  scope: {
1865
1865
  id: number;
1866
- circuitId: string;
1867
1866
  query: Record<string, any>;
1867
+ circuitId: string;
1868
1868
  optional?: boolean | undefined;
1869
1869
  }[];
1870
1870
  message?: string | undefined;
@@ -1920,10 +1920,10 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1920
1920
  data: {
1921
1921
  type: "RuleEngineScenarioExecution";
1922
1922
  data: {
1923
- status: "valid" | "unknown" | "not-valid" | "error";
1924
- customerId: string;
1925
- scenarioExecutionId: string;
1926
- results: {
1923
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
1924
+ customerId?: string | undefined;
1925
+ scenarioExecutionId?: string | undefined;
1926
+ results?: {
1927
1927
  name: string;
1928
1928
  result: {
1929
1929
  result: {
@@ -1937,24 +1937,24 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1937
1937
  objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
1938
1938
  objectId: string;
1939
1939
  address?: string | null | undefined;
1940
- }[][];
1940
+ }[][] | undefined;
1941
1941
  };
1942
1942
  } | {
1943
1943
  type: "OffChainScenarioExecution";
1944
1944
  data: {
1945
1945
  status: "pending" | "authorised" | "unauthorised";
1946
- projectId: string;
1947
- executionId: string;
1948
- sessionId: string;
1949
- scenarioId: string;
1950
- scenarioName: string;
1951
1946
  query: {
1952
- value: string | number | boolean | (string | number)[];
1947
+ value: string | number | boolean | string[] | number[];
1953
1948
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
1954
1949
  attribute: string;
1955
1950
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
1956
1951
  requestId?: number | null | undefined;
1957
- };
1952
+ }[];
1953
+ projectId: string;
1954
+ executionId: string;
1955
+ sessionId: string;
1956
+ scenarioId: string;
1957
+ scenarioName: string;
1958
1958
  requestMessage: {
1959
1959
  id: string;
1960
1960
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -1962,8 +1962,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
1962
1962
  callbackUrl: string;
1963
1963
  scope: {
1964
1964
  id: number;
1965
- circuitId: string;
1966
1965
  query: Record<string, any>;
1966
+ circuitId: string;
1967
1967
  optional?: boolean | undefined;
1968
1968
  }[];
1969
1969
  message?: string | undefined;
@@ -2013,10 +2013,10 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
2013
2013
  data: {
2014
2014
  type: "RuleEngineScenarioExecution";
2015
2015
  data: {
2016
- status: "valid" | "unknown" | "not-valid" | "error";
2017
- customerId: string;
2018
- scenarioExecutionId: string;
2019
- results: {
2016
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
2017
+ customerId?: string | undefined;
2018
+ scenarioExecutionId?: string | undefined;
2019
+ results?: {
2020
2020
  name: string;
2021
2021
  result: {
2022
2022
  result: {
@@ -2030,24 +2030,24 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
2030
2030
  objectType: "ChallengeQuery" | "OnChainZKP" | "OffChainZKP";
2031
2031
  objectId: string;
2032
2032
  address?: string | null | undefined;
2033
- }[][];
2033
+ }[][] | undefined;
2034
2034
  };
2035
2035
  } | {
2036
2036
  type: "OffChainScenarioExecution";
2037
2037
  data: {
2038
2038
  status: "pending" | "authorised" | "unauthorised";
2039
- projectId: string;
2040
- executionId: string;
2041
- sessionId: string;
2042
- scenarioId: string;
2043
- scenarioName: string;
2044
2039
  query: {
2045
- value: string | number | boolean | (string | number)[];
2040
+ value: string | number | boolean | string[] | number[];
2046
2041
  type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
2047
2042
  attribute: string;
2048
2043
  operator: "$noop" | "$eq" | "$lt" | "$lte" | "$gt" | "$gte" | "$in" | "$nin" | "$ne";
2049
2044
  requestId?: number | null | undefined;
2050
- };
2045
+ }[];
2046
+ projectId: string;
2047
+ executionId: string;
2048
+ sessionId: string;
2049
+ scenarioId: string;
2050
+ scenarioName: string;
2051
2051
  requestMessage: {
2052
2052
  id: string;
2053
2053
  type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment";
@@ -2055,8 +2055,8 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
2055
2055
  callbackUrl: string;
2056
2056
  scope: {
2057
2057
  id: number;
2058
- circuitId: string;
2059
2058
  query: Record<string, any>;
2059
+ circuitId: string;
2060
2060
  optional?: boolean | undefined;
2061
2061
  }[];
2062
2062
  message?: string | undefined;