@nexeraid/identity-schemas 2.191.0-dev → 2.192.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 (40) hide show
  1. package/dist/{CoinMarketCap.schema-185c2591.cjs.dev.cjs → CoinMarketCap.schema-2c6acf23.cjs.dev.cjs} +2 -2
  2. package/dist/{CoinMarketCap.schema-810daa53.cjs.prod.cjs → CoinMarketCap.schema-93dd6d2a.cjs.prod.cjs} +2 -2
  3. package/dist/{CoinMarketCap.schema-320d276c.esm.mjs → CoinMarketCap.schema-dfe010dc.esm.mjs} +2 -2
  4. package/dist/declarations/src/vault/schemas/generated/Transaction.schema.json.d.ts +114 -109
  5. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts +6 -4
  6. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts.map +1 -1
  7. package/dist/declarations/src/vault/vault.schema.d.ts +26 -14
  8. package/dist/declarations/src/vault/vault.schema.d.ts.map +1 -1
  9. package/dist/{identity-api.schema-f6610db0.esm.mjs → identity-api.schema-29e4e10d.esm.mjs} +1 -1
  10. package/dist/{identity-api.schema-3a746737.cjs.prod.cjs → identity-api.schema-d79225f4.cjs.prod.cjs} +1 -1
  11. package/dist/{identity-api.schema-3b0ade9c.cjs.dev.cjs → identity-api.schema-f9da0747.cjs.dev.cjs} +1 -1
  12. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +4 -4
  13. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +4 -4
  14. package/dist/nexeraid-identity-schemas.esm.mjs +5 -5
  15. package/dist/package.json +1 -1
  16. package/dist/{tfhe-utilities-6c2861c1.cjs.dev.cjs → tfhe-utilities-396c5a40.cjs.dev.cjs} +2 -2
  17. package/dist/{tfhe-utilities-02707fef.cjs.prod.cjs → tfhe-utilities-98602326.cjs.prod.cjs} +2 -2
  18. package/dist/{tfhe-utilities-af133b52.esm.mjs → tfhe-utilities-a37819f2.esm.mjs} +2 -2
  19. package/dist/{toArray-af53dbf6.esm.mjs → toArray-3f540af6.esm.mjs} +1 -1
  20. package/dist/{toArray-90aa2268.cjs.dev.cjs → toArray-b9f47315.cjs.dev.cjs} +1 -1
  21. package/dist/{toArray-cee53077.cjs.prod.cjs → toArray-bf2f4671.cjs.prod.cjs} +1 -1
  22. package/dist/{vault.schema-025f42bf.esm.mjs → vault.schema-23f1dece.esm.mjs} +182 -173
  23. package/dist/{vault.schema-4b6853b7.cjs.dev.cjs → vault.schema-cf144eaa.cjs.dev.cjs} +182 -173
  24. package/dist/{vault.schema-d577ccdd.cjs.prod.cjs → vault.schema-f8011417.cjs.prod.cjs} +182 -173
  25. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +2 -2
  26. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +2 -2
  27. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +2 -2
  28. package/package.json +1 -1
  29. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +3 -3
  30. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +3 -3
  31. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +3 -3
  32. package/vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs +2 -2
  33. package/vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs +2 -2
  34. package/vault/dist/nexeraid-identity-schemas-vault.esm.mjs +3 -3
  35. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +3 -3
  36. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +3 -3
  37. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +3 -3
  38. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +4 -4
  39. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +4 -4
  40. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +4 -4
@@ -8733,7 +8733,7 @@ var TransactionJsonSchema = {
8733
8733
  originator: {
8734
8734
  type: "object",
8735
8735
  properties: {
8736
- countryOfResidence: {
8736
+ nationality: {
8737
8737
  type: "string",
8738
8738
  "enum": [
8739
8739
  "AFG",
@@ -8990,6 +8990,30 @@ var TransactionJsonSchema = {
8990
8990
  ],
8991
8991
  description: "Citizenship status of the credential subject - ISO 3166-1 alpha-3 country code (https://www.iban.com/country-codes)"
8992
8992
  },
8993
+ riskScore: {
8994
+ type: "number"
8995
+ },
8996
+ riskLevel: {
8997
+ type: "string",
8998
+ "enum": [
8999
+ "Low",
9000
+ "Medium",
9001
+ "High",
9002
+ "No risk"
9003
+ ]
9004
+ },
9005
+ type: {
9006
+ type: "string"
9007
+ },
9008
+ address: {
9009
+ type: "string"
9010
+ }
9011
+ },
9012
+ additionalProperties: false
9013
+ },
9014
+ beneficiary: {
9015
+ type: "object",
9016
+ properties: {
8993
9017
  nationality: {
8994
9018
  type: "string",
8995
9019
  "enum": [
@@ -9268,9 +9292,152 @@ var TransactionJsonSchema = {
9268
9292
  },
9269
9293
  additionalProperties: false
9270
9294
  },
9271
- beneficiary: {
9295
+ transactionStats: {
9272
9296
  type: "object",
9273
9297
  properties: {
9298
+ last1D: {
9299
+ type: "object",
9300
+ properties: {
9301
+ count: {
9302
+ type: "number"
9303
+ },
9304
+ totalAmountUsd: {
9305
+ type: "number"
9306
+ },
9307
+ maxAmountUsd: {
9308
+ type: "number"
9309
+ }
9310
+ },
9311
+ additionalProperties: false
9312
+ },
9313
+ last7D: {
9314
+ type: "object",
9315
+ properties: {
9316
+ count: {
9317
+ type: "number"
9318
+ },
9319
+ totalAmountUsd: {
9320
+ type: "number"
9321
+ },
9322
+ maxAmountUsd: {
9323
+ type: "number"
9324
+ }
9325
+ },
9326
+ additionalProperties: false
9327
+ },
9328
+ last14D: {
9329
+ type: "object",
9330
+ properties: {
9331
+ count: {
9332
+ type: "number"
9333
+ },
9334
+ totalAmountUsd: {
9335
+ type: "number"
9336
+ },
9337
+ maxAmountUsd: {
9338
+ type: "number"
9339
+ }
9340
+ },
9341
+ additionalProperties: false
9342
+ },
9343
+ last30D: {
9344
+ type: "object",
9345
+ properties: {
9346
+ count: {
9347
+ type: "number"
9348
+ },
9349
+ totalAmountUsd: {
9350
+ type: "number"
9351
+ },
9352
+ maxAmountUsd: {
9353
+ type: "number"
9354
+ }
9355
+ },
9356
+ additionalProperties: false
9357
+ },
9358
+ yearToDate: {
9359
+ type: "object",
9360
+ properties: {
9361
+ count: {
9362
+ type: "number"
9363
+ },
9364
+ totalAmountUsd: {
9365
+ type: "number"
9366
+ },
9367
+ maxAmountUsd: {
9368
+ type: "number"
9369
+ }
9370
+ },
9371
+ additionalProperties: false
9372
+ },
9373
+ monthToDate: {
9374
+ type: "object",
9375
+ properties: {
9376
+ count: {
9377
+ type: "number"
9378
+ },
9379
+ totalAmountUsd: {
9380
+ type: "number"
9381
+ },
9382
+ maxAmountUsd: {
9383
+ type: "number"
9384
+ }
9385
+ },
9386
+ additionalProperties: false
9387
+ }
9388
+ },
9389
+ additionalProperties: false
9390
+ },
9391
+ customer: {
9392
+ type: "object",
9393
+ properties: {
9394
+ status: {
9395
+ type: "string",
9396
+ "enum": [
9397
+ "Active",
9398
+ "Rejected",
9399
+ "Dormant",
9400
+ "To be reviewed",
9401
+ "Failed",
9402
+ "Escalated",
9403
+ "Terminated",
9404
+ "No status"
9405
+ ]
9406
+ },
9407
+ riskLevel: {
9408
+ type: "string",
9409
+ "enum": [
9410
+ "Low",
9411
+ "Medium",
9412
+ "High",
9413
+ "No risk"
9414
+ ]
9415
+ },
9416
+ onboarding: {
9417
+ type: "string",
9418
+ "enum": [
9419
+ "Sign-up",
9420
+ "AML screening",
9421
+ "KYC",
9422
+ "Questionaire",
9423
+ "Onboarded",
9424
+ "Onboarding",
9425
+ "KYB"
9426
+ ]
9427
+ },
9428
+ customerType: {
9429
+ type: "string",
9430
+ "enum": [
9431
+ "Individual",
9432
+ "Company"
9433
+ ]
9434
+ },
9435
+ tags: {
9436
+ type: "array",
9437
+ items: {
9438
+ type: "string"
9439
+ }
9440
+ },
9274
9441
  countryOfResidence: {
9275
9442
  type: "string",
9276
9443
  "enum": [
@@ -9527,8 +9694,14 @@ var TransactionJsonSchema = {
9527
9694
  "XKX"
9528
9695
  ],
9529
9696
  description: "Citizenship status of the credential subject - ISO 3166-1 alpha-3 country code (https://www.iban.com/country-codes)"
9530
- },
9531
- nationality: {
9697
+ }
9698
+ },
9699
+ additionalProperties: false
9700
+ },
9701
+ counterparty: {
9702
+ type: "object",
9703
+ properties: {
9704
+ countryOfResidence: {
9532
9705
  type: "string",
9533
9706
  "enum": [
9534
9707
  "AFG",
@@ -9784,173 +9957,6 @@ var TransactionJsonSchema = {
9784
9957
  "XKX"
9785
9958
  ],
9786
9959
  description: "Citizenship status of the credential subject - ISO 3166-1 alpha-3 country code (https://www.iban.com/country-codes)"
9787
- },
9788
- riskScore: {
9789
- type: "number"
9790
- },
9791
- riskLevel: {
9792
- type: "string",
9793
- "enum": [
9794
- "Low",
9795
- "Medium",
9796
- "High",
9797
- "No risk"
9798
- ]
9799
- },
9800
- type: {
9801
- type: "string"
9802
- },
9803
- address: {
9804
- type: "string"
9805
- }
9806
- },
9807
- additionalProperties: false
9808
- },
9809
- transactionStats: {
9810
- type: "object",
9811
- properties: {
9812
- last1D: {
9813
- type: "object",
9814
- properties: {
9815
- count: {
9816
- type: "number"
9817
- },
9818
- totalAmountUsd: {
9819
- type: "number"
9820
- },
9821
- maxAmountUsd: {
9822
- type: "number"
9823
- }
9824
- },
9825
- additionalProperties: false
9826
- },
9827
- last7D: {
9828
- type: "object",
9829
- properties: {
9830
- count: {
9831
- type: "number"
9832
- },
9833
- totalAmountUsd: {
9834
- type: "number"
9835
- },
9836
- maxAmountUsd: {
9837
- type: "number"
9838
- }
9839
- },
9840
- additionalProperties: false
9841
- },
9842
- last14D: {
9843
- type: "object",
9844
- properties: {
9845
- count: {
9846
- type: "number"
9847
- },
9848
- totalAmountUsd: {
9849
- type: "number"
9850
- },
9851
- maxAmountUsd: {
9852
- type: "number"
9853
- }
9854
- },
9855
- additionalProperties: false
9856
- },
9857
- last30D: {
9858
- type: "object",
9859
- properties: {
9860
- count: {
9861
- type: "number"
9862
- },
9863
- totalAmountUsd: {
9864
- type: "number"
9865
- },
9866
- maxAmountUsd: {
9867
- type: "number"
9868
- }
9869
- },
9870
- additionalProperties: false
9871
- },
9872
- yearToDate: {
9873
- type: "object",
9874
- properties: {
9875
- count: {
9876
- type: "number"
9877
- },
9878
- totalAmountUsd: {
9879
- type: "number"
9880
- },
9881
- maxAmountUsd: {
9882
- type: "number"
9883
- }
9884
- },
9885
- additionalProperties: false
9886
- },
9887
- monthToDate: {
9888
- type: "object",
9889
- properties: {
9890
- count: {
9891
- type: "number"
9892
- },
9893
- totalAmountUsd: {
9894
- type: "number"
9895
- },
9896
- maxAmountUsd: {
9897
- type: "number"
9898
- }
9899
- },
9900
- additionalProperties: false
9901
- }
9902
- },
9903
- additionalProperties: false
9904
- },
9905
- customer: {
9906
- type: "object",
9907
- properties: {
9908
- status: {
9909
- type: "string",
9910
- "enum": [
9911
- "Active",
9912
- "Rejected",
9913
- "Dormant",
9914
- "To be reviewed",
9915
- "Failed",
9916
- "Escalated",
9917
- "Terminated",
9918
- "No status"
9919
- ]
9920
- },
9921
- riskLevel: {
9922
- type: "string",
9923
- "enum": [
9924
- "Low",
9925
- "Medium",
9926
- "High",
9927
- "No risk"
9928
- ]
9929
- },
9930
- onboarding: {
9931
- type: "string",
9932
- "enum": [
9933
- "Sign-up",
9934
- "AML screening",
9935
- "KYC",
9936
- "Questionaire",
9937
- "Onboarded",
9938
- "Onboarding",
9939
- "KYB"
9940
- ]
9941
- },
9942
- customerType: {
9943
- type: "string",
9944
- "enum": [
9945
- "Individual",
9946
- "Company"
9947
- ]
9948
- },
9949
- tags: {
9950
- type: "array",
9951
- items: {
9952
- type: "string"
9953
- }
9954
9960
  }
9955
9961
  },
9956
9962
  additionalProperties: false
@@ -12911,7 +12917,6 @@ var AmountByCurrencyBreakdown = z.z.object({
12911
12917
  GBP: DecimalSchema.optional()
12912
12918
  });
12913
12919
  var PartySchema = z.z.object({
12914
- countryOfResidence: ISO3CountryCode.optional(),
12915
12920
  nationality: ISO3CountryCode.optional(),
12916
12921
  riskScore: z.z.number().optional(),
12917
12922
  riskLevel: TransactionRiskLevel.optional(),
@@ -12944,7 +12949,11 @@ var TransactionZodSchema = z.z.object({
12944
12949
  riskLevel: RiskScoreType.optional(),
12945
12950
  onboarding: CustomerOnboardingLevel.optional(),
12946
12951
  customerType: CustomerType.optional(),
12947
- tags: z.z.array(z.z.string()).optional()
12952
+ tags: z.z.array(z.z.string()).optional(),
12953
+ countryOfResidence: ISO3CountryCode.optional()
12954
+ }).optional(),
12955
+ counterparty: z.z.object({
12956
+ countryOfResidence: ISO3CountryCode.optional()
12948
12957
  }).optional(),
12949
12958
  amlScreening: z.z.object({
12950
12959
  amlResults: AmlResults.array().optional()