@nexeraid/identity-schemas 2.78.0-dev → 2.80.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 (39) hide show
  1. package/dist/{CoinMarketCap.schema-aa5828c7.cjs.prod.cjs → CoinMarketCap.schema-159dd089.cjs.prod.cjs} +2 -2
  2. package/dist/{CoinMarketCap.schema-c0235e2f.esm.mjs → CoinMarketCap.schema-804ac440.esm.mjs} +2 -2
  3. package/dist/{CoinMarketCap.schema-bf7b056e.cjs.dev.cjs → CoinMarketCap.schema-bab2fdef.cjs.dev.cjs} +2 -2
  4. package/dist/declarations/src/identity/query.schema.d.ts +5 -5
  5. package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
  6. package/dist/declarations/src/vault/schemas/generated/Transaction.schema.json.d.ts +800 -0
  7. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts +18 -0
  8. package/dist/declarations/src/vault/schemas/generated/Transaction.type.d.ts.map +1 -1
  9. package/dist/declarations/src/vault/vault.schema.d.ts +141 -0
  10. package/dist/declarations/src/vault/vault.schema.d.ts.map +1 -1
  11. package/dist/{identity-api.schema-c8cf0fc7.cjs.dev.cjs → identity-api.schema-744f132e.cjs.dev.cjs} +3 -3
  12. package/dist/{identity-api.schema-9d6c83f9.esm.mjs → identity-api.schema-915a0e06.esm.mjs} +3 -3
  13. package/dist/{identity-api.schema-5d1ea875.cjs.prod.cjs → identity-api.schema-b9a02183.cjs.prod.cjs} +3 -3
  14. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +3 -3
  15. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +3 -3
  16. package/dist/nexeraid-identity-schemas.esm.mjs +4 -4
  17. package/dist/package.json +1 -1
  18. package/dist/{tfhe-utilities-7701c871.cjs.prod.cjs → tfhe-utilities-010787d8.cjs.prod.cjs} +2 -2
  19. package/dist/{tfhe-utilities-1053105c.esm.mjs → tfhe-utilities-558a2f22.esm.mjs} +2 -2
  20. package/dist/{tfhe-utilities-6de59992.cjs.dev.cjs → tfhe-utilities-6b45bc7e.cjs.dev.cjs} +2 -2
  21. package/dist/{vault.schema-9359863a.esm.mjs → vault.schema-1731457a.esm.mjs} +826 -2
  22. package/dist/{vault.schema-2f9ee3e3.cjs.prod.cjs → vault.schema-2462a106.cjs.prod.cjs} +826 -2
  23. package/dist/{vault.schema-89066148.cjs.dev.cjs → vault.schema-bcad47da.cjs.dev.cjs} +826 -2
  24. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +2 -2
  25. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +2 -2
  26. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +2 -2
  27. package/package.json +1 -1
  28. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +3 -3
  29. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +3 -3
  30. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +3 -3
  31. package/vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs +1 -1
  32. package/vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs +1 -1
  33. package/vault/dist/nexeraid-identity-schemas-vault.esm.mjs +1 -1
  34. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +3 -3
  35. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +3 -3
  36. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +3 -3
  37. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +3 -3
  38. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +3 -3
  39. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +4 -4
@@ -9933,6 +9933,828 @@ var TransactionJsonSchema = {
9933
9933
  }
9934
9934
  },
9935
9935
  additionalProperties: false
9936
+ },
9937
+ walletScreening: {
9938
+ type: "object",
9939
+ properties: {
9940
+ riskLevel: {
9941
+ type: "string",
9942
+ "enum": [
9943
+ "No Risk",
9944
+ "Low Risk",
9945
+ "Medium Risk",
9946
+ "High Risk",
9947
+ "Critical Risk"
9948
+ ]
9949
+ },
9950
+ riskScore: {
9951
+ type: "number",
9952
+ minimum: 0,
9953
+ maximum: 100
9954
+ },
9955
+ firstActive: {
9956
+ type: "number"
9957
+ },
9958
+ lastActive: {
9959
+ type: "number"
9960
+ },
9961
+ lastScreened: {
9962
+ type: "number"
9963
+ },
9964
+ entities: {
9965
+ type: "array",
9966
+ items: {
9967
+ type: "object",
9968
+ properties: {
9969
+ name: {
9970
+ type: "string"
9971
+ },
9972
+ entityType: {
9973
+ type: "string",
9974
+ "enum": [
9975
+ "ATM",
9976
+ "Airdrop",
9977
+ "Auctioned assets",
9978
+ "Bank",
9979
+ "Block reward",
9980
+ "Bot",
9981
+ "Child abuse",
9982
+ "Cloud mining",
9983
+ "Community reported scam",
9984
+ "Cross-chain Bridge Protocol",
9985
+ "Darkweb",
9986
+ "Decentralized service",
9987
+ "Dex",
9988
+ "Donations",
9989
+ "Exchange",
9990
+ "Gambling",
9991
+ "Hack",
9992
+ "ICO",
9993
+ "Ignored small amounts",
9994
+ "Investment management firm",
9995
+ "Large transaction",
9996
+ "Large unnamed entity",
9997
+ "Mining pool",
9998
+ "Mixing pattern",
9999
+ "Mixing service",
10000
+ "NFT Marketplace",
10001
+ "No entities found",
10002
+ "Ongoing legal action",
10003
+ "Payment Service Provider",
10004
+ "Payment channel",
10005
+ "Peeling chain of unknown origin",
10006
+ "Phishing",
10007
+ "Ransomware",
10008
+ "Real World Asset",
10009
+ "Sanction list",
10010
+ "Scam",
10011
+ "Seized assets",
10012
+ "Service",
10013
+ "Staking pool",
10014
+ "Suspicious",
10015
+ "Terrorism",
10016
+ "Token",
10017
+ "Token burning",
10018
+ "Token minting",
10019
+ "Unspent output",
10020
+ "Wallet",
10021
+ "OFAC sanction list",
10022
+ "Closed exchange",
10023
+ "Custom group"
10024
+ ]
10025
+ }
10026
+ },
10027
+ required: [
10028
+ "name",
10029
+ "entityType"
10030
+ ],
10031
+ additionalProperties: false
10032
+ }
10033
+ },
10034
+ blockchainsActive: {
10035
+ type: "array",
10036
+ items: {
10037
+ type: "string",
10038
+ "enum": [
10039
+ "BITCOIN",
10040
+ "ETHEREUM",
10041
+ "BITCOINCASH",
10042
+ "LITECOIN",
10043
+ "DASH",
10044
+ "RIPPLE",
10045
+ "TEZOS",
10046
+ "TRON",
10047
+ "BSC",
10048
+ "STELLAR",
10049
+ "CARDANO",
10050
+ "ZCASH",
10051
+ "MONERO",
10052
+ "SOLANA",
10053
+ "POLKADOT",
10054
+ "ICON",
10055
+ "DOGECOIN",
10056
+ "FILECOIN",
10057
+ "ARBITRUMONE",
10058
+ "COSMOS",
10059
+ "ALGORAND",
10060
+ "CELO",
10061
+ "POLYGON",
10062
+ "EOS",
10063
+ "ETHEREUMCLASSIC",
10064
+ "FLOW",
10065
+ "FANTOM",
10066
+ "MOONBEAM",
10067
+ "GROESTLCOIN",
10068
+ "INTERNETCOMPUTERPROTOCOL",
10069
+ "INJECTIVEPROTOCOL",
10070
+ "KUSAMA",
10071
+ "LISK",
10072
+ "TERRACLASSIC",
10073
+ "MOONRIVER",
10074
+ "NEARPROTOCOL",
10075
+ "BITCOINGOLD",
10076
+ "THORCHAIN",
10077
+ "SIACOIN",
10078
+ "ECREDITS",
10079
+ "BITCOINSV",
10080
+ "RADIX",
10081
+ "STACKS",
10082
+ "THETANETWORK",
10083
+ "VECHAIN",
10084
+ "VITE",
10085
+ "ZILLIQA",
10086
+ "NEM",
10087
+ "NEO",
10088
+ "VERGE",
10089
+ "AVALANCHE",
10090
+ "GNOSIS",
10091
+ "APTOS",
10092
+ "BNBBEACONCHAIN",
10093
+ "OPTIMISM",
10094
+ "VENIDIUM",
10095
+ "MULTIVERSX",
10096
+ "HARMONY",
10097
+ "TON",
10098
+ "WEMIX",
10099
+ "CRONOS",
10100
+ "AVALANCHEP-XCHAIN",
10101
+ "SUI",
10102
+ "METIS",
10103
+ "AETERNITY",
10104
+ "COTI",
10105
+ "CASPER",
10106
+ "CONSTELLATION",
10107
+ "ELECTRONEUM",
10108
+ "EVERSCALE",
10109
+ "DECENTRALIZEDPICTURES",
10110
+ "HEDERA",
10111
+ "CIRRUS",
10112
+ "HATHOR",
10113
+ "KADENA",
10114
+ "STRATIS",
10115
+ "IOST",
10116
+ "DIGIBYTE",
10117
+ "KOMODO",
10118
+ "RAVENCOIN",
10119
+ "TELOS",
10120
+ "DIGITALBITS",
10121
+ "NERVOS",
10122
+ "DIVI",
10123
+ "HIVE",
10124
+ "NANO",
10125
+ "XDCNETWORK",
10126
+ "FUSE",
10127
+ "ZKSYNC",
10128
+ "BOBA",
10129
+ "HECO",
10130
+ "PULSECHAIN",
10131
+ "BASE",
10132
+ "HELIUM",
10133
+ "DOGECHAIN",
10134
+ "KASPA",
10135
+ "MANTLE",
10136
+ "SEI",
10137
+ "COMDEX",
10138
+ "FIRO",
10139
+ "ECASH",
10140
+ "XDAG",
10141
+ "RONIN",
10142
+ "KLEVER",
10143
+ "BAHAMUT",
10144
+ "FLARE",
10145
+ "CELESTIA",
10146
+ "BNBOPTIMISTIC",
10147
+ "OSMOSIS",
10148
+ "MANTANETWORK",
10149
+ "CONFLUX",
10150
+ "IOTA",
10151
+ "STARKNET",
10152
+ "PARTISIA",
10153
+ "LINEA",
10154
+ "NIBIRUCHAIN",
10155
+ "DYDXCHAIN",
10156
+ "DYMENSION",
10157
+ "OKB",
10158
+ "POLYGONZKEVM",
10159
+ "LUMIA"
10160
+ ]
10161
+ }
10162
+ },
10163
+ countries: {
10164
+ type: "array",
10165
+ items: {
10166
+ type: "string",
10167
+ "enum": [
10168
+ "Afghanistan",
10169
+ "Åland Islands",
10170
+ "Albania",
10171
+ "Algeria",
10172
+ "American Samoa",
10173
+ "Andorra",
10174
+ "Angola",
10175
+ "Anguilla",
10176
+ "Antigua and Barbuda",
10177
+ "Argentina",
10178
+ "Armenia",
10179
+ "Aruba",
10180
+ "Australia",
10181
+ "Austria",
10182
+ "Azerbaijan",
10183
+ "Bahamas",
10184
+ "Bahrain",
10185
+ "Bangladesh",
10186
+ "Barbados",
10187
+ "Belarus",
10188
+ "Belgium",
10189
+ "Belize",
10190
+ "Benin",
10191
+ "Bermuda",
10192
+ "Bhutan",
10193
+ "Bolivia",
10194
+ "Bonaire, Sint Eustatius and Saba",
10195
+ "Bosnia-Herzegovina",
10196
+ "Botswana",
10197
+ "Brazil",
10198
+ "British Indian Ocean Territory",
10199
+ "British Virgin Islands",
10200
+ "Brunei Darussalam",
10201
+ "Bulgaria",
10202
+ "Burkina Faso",
10203
+ "Burundi",
10204
+ "Cambodia",
10205
+ "Cameroon",
10206
+ "Canada",
10207
+ "Cape Verde",
10208
+ "Cayman Islands",
10209
+ "Central African Rep",
10210
+ "Chad",
10211
+ "Chile",
10212
+ "China",
10213
+ "Christmas Island",
10214
+ "Cocos (Keeling) Islands",
10215
+ "Colombia",
10216
+ "Comoros",
10217
+ "Congo (Brazzaville)",
10218
+ "Congo, the Democratic Republic",
10219
+ "Cook Islands",
10220
+ "Costa Rica",
10221
+ "Cote D'Ivoire",
10222
+ "Croatia",
10223
+ "Cuba",
10224
+ "Curacao",
10225
+ "Cyprus",
10226
+ "Czech Republic",
10227
+ "Denmark",
10228
+ "Djibouti",
10229
+ "Dominica",
10230
+ "Dominican Republic",
10231
+ "Ecuador",
10232
+ "Egypt",
10233
+ "El Salvador",
10234
+ "Equatorial Guinea",
10235
+ "Eritrea",
10236
+ "Estonia",
10237
+ "Eswatini",
10238
+ "Ethiopia",
10239
+ "Falkland Islands (Malvinas)",
10240
+ "Faroe islands",
10241
+ "Fiji",
10242
+ "Finland",
10243
+ "France",
10244
+ "French Guiana",
10245
+ "French Polynesia",
10246
+ "Gabon",
10247
+ "Gambia",
10248
+ "Georgia",
10249
+ "Germany",
10250
+ "Ghana",
10251
+ "Gibraltar",
10252
+ "Greece",
10253
+ "Greenland",
10254
+ "Grenada",
10255
+ "Guadeloupe",
10256
+ "Guam",
10257
+ "Guatemala",
10258
+ "Guernsey",
10259
+ "Guinea",
10260
+ "Guinea Bissau",
10261
+ "Guyana",
10262
+ "Haiti",
10263
+ "Honduras",
10264
+ "Hong Kong",
10265
+ "Hungary",
10266
+ "Iceland",
10267
+ "India",
10268
+ "Indonesia",
10269
+ "Iran, Islamic Republic of",
10270
+ "Iraq",
10271
+ "Ireland",
10272
+ "Isle Of Man",
10273
+ "Israel",
10274
+ "Italy",
10275
+ "Jamaica",
10276
+ "Japan",
10277
+ "Jersey",
10278
+ "Jordan",
10279
+ "Kazakhstan",
10280
+ "Kenya",
10281
+ "Kiribati",
10282
+ "Kosovo",
10283
+ "Kuwait",
10284
+ "Kyrgyzstan",
10285
+ "Lao People's Democratic Republic",
10286
+ "Latvia",
10287
+ "Lebanon",
10288
+ "Lesotho",
10289
+ "Liberia",
10290
+ "Libya",
10291
+ "Liechtenstein",
10292
+ "Lithuania",
10293
+ "Luxembourg",
10294
+ "Macau",
10295
+ "Madagascar",
10296
+ "Malawi",
10297
+ "Malaysia",
10298
+ "Maldives",
10299
+ "Mali",
10300
+ "Malta",
10301
+ "Marshall Islands",
10302
+ "Martinique",
10303
+ "Mauritania",
10304
+ "Mauritius",
10305
+ "Mayotte",
10306
+ "Mexico",
10307
+ "Micronesia",
10308
+ "Moldova",
10309
+ "Monaco",
10310
+ "Mongolia",
10311
+ "Montenegro",
10312
+ "Montserrat",
10313
+ "Morocco",
10314
+ "Mozambique",
10315
+ "Myanmar",
10316
+ "Namibia",
10317
+ "Nauru",
10318
+ "Nepal",
10319
+ "Netherlands",
10320
+ "New Caledonia",
10321
+ "New Zealand",
10322
+ "Nicaragua",
10323
+ "Niger",
10324
+ "Nigeria",
10325
+ "Niue",
10326
+ "Norfolk Island",
10327
+ "North Korea",
10328
+ "North Macedonia",
10329
+ "North Mariana Islands",
10330
+ "Norway",
10331
+ "Oman",
10332
+ "Pakistan",
10333
+ "Palau",
10334
+ "Palestine, State of",
10335
+ "Panama",
10336
+ "Papua New Guinea",
10337
+ "Paraguay",
10338
+ "Peru",
10339
+ "Philippines",
10340
+ "Pitcairn",
10341
+ "Poland",
10342
+ "Portugal",
10343
+ "Puerto Rico",
10344
+ "Qatar",
10345
+ "Réunion",
10346
+ "Romania",
10347
+ "Russian Federation",
10348
+ "Rwanda",
10349
+ "Saint Barthélemy",
10350
+ "Saint Helena, Ascension and Tristan",
10351
+ "Saint Kitts & Nevis",
10352
+ "Saint Lucia",
10353
+ "Saint Maarten",
10354
+ "Saint Martin (French part)",
10355
+ "Saint Pierre and Miquelon",
10356
+ "Saint Vincent & Grenadines",
10357
+ "Samoa",
10358
+ "San Marino",
10359
+ "Sao Tome & Prin.",
10360
+ "Saudi Arabia",
10361
+ "Senegal",
10362
+ "Serbia",
10363
+ "Seychelles",
10364
+ "Sierra Leone",
10365
+ "Singapore",
10366
+ "Slovakia",
10367
+ "Slovenia",
10368
+ "Solomon Islands",
10369
+ "Somalia",
10370
+ "South Africa",
10371
+ "South Korea",
10372
+ "South Sudan",
10373
+ "Spain",
10374
+ "Sri Lanka",
10375
+ "Sudan",
10376
+ "Suriname",
10377
+ "Svalbard and Mayen",
10378
+ "Sweden",
10379
+ "Switzerland",
10380
+ "Syria",
10381
+ "Taiwan",
10382
+ "Tajikistan",
10383
+ "Tanzania",
10384
+ "Thailand",
10385
+ "Timor-Leste",
10386
+ "Togo",
10387
+ "Tokelau",
10388
+ "Tonga",
10389
+ "Trinidad & Tobago",
10390
+ "Tunisia",
10391
+ "Turkey",
10392
+ "Turkmenistan",
10393
+ "Turks & Caicos",
10394
+ "Tuvalu",
10395
+ "Uganda",
10396
+ "Ukraine",
10397
+ "United Arab Emirates",
10398
+ "United Kingdom",
10399
+ "United States",
10400
+ "United States Virgin Islands",
10401
+ "Uruguay",
10402
+ "Uzbekistan",
10403
+ "Vanuatu",
10404
+ "Vatican City State (Holy See)",
10405
+ "Venezuela",
10406
+ "Vietnam",
10407
+ "Wallis and Futuna",
10408
+ "Western Sahara",
10409
+ "Yemen",
10410
+ "Zambia",
10411
+ "Zimbabwe",
10412
+ "Undefined",
10413
+ "Netherlands Antiles",
10414
+ "Antarctica",
10415
+ "Bouvet Island",
10416
+ "French Southern Territories",
10417
+ "Heard Island & Mcdonald Islands",
10418
+ "South Georgia And Sandwich Isl.",
10419
+ "United States Outlying Islands"
10420
+ ]
10421
+ }
10422
+ },
10423
+ relatedCountries: {
10424
+ type: "array",
10425
+ items: {
10426
+ type: "string",
10427
+ "enum": [
10428
+ "Afghanistan",
10429
+ "Åland Islands",
10430
+ "Albania",
10431
+ "Algeria",
10432
+ "American Samoa",
10433
+ "Andorra",
10434
+ "Angola",
10435
+ "Anguilla",
10436
+ "Antigua and Barbuda",
10437
+ "Argentina",
10438
+ "Armenia",
10439
+ "Aruba",
10440
+ "Australia",
10441
+ "Austria",
10442
+ "Azerbaijan",
10443
+ "Bahamas",
10444
+ "Bahrain",
10445
+ "Bangladesh",
10446
+ "Barbados",
10447
+ "Belarus",
10448
+ "Belgium",
10449
+ "Belize",
10450
+ "Benin",
10451
+ "Bermuda",
10452
+ "Bhutan",
10453
+ "Bolivia",
10454
+ "Bonaire, Sint Eustatius and Saba",
10455
+ "Bosnia-Herzegovina",
10456
+ "Botswana",
10457
+ "Brazil",
10458
+ "British Indian Ocean Territory",
10459
+ "British Virgin Islands",
10460
+ "Brunei Darussalam",
10461
+ "Bulgaria",
10462
+ "Burkina Faso",
10463
+ "Burundi",
10464
+ "Cambodia",
10465
+ "Cameroon",
10466
+ "Canada",
10467
+ "Cape Verde",
10468
+ "Cayman Islands",
10469
+ "Central African Rep",
10470
+ "Chad",
10471
+ "Chile",
10472
+ "China",
10473
+ "Christmas Island",
10474
+ "Cocos (Keeling) Islands",
10475
+ "Colombia",
10476
+ "Comoros",
10477
+ "Congo (Brazzaville)",
10478
+ "Congo, the Democratic Republic",
10479
+ "Cook Islands",
10480
+ "Costa Rica",
10481
+ "Cote D'Ivoire",
10482
+ "Croatia",
10483
+ "Cuba",
10484
+ "Curacao",
10485
+ "Cyprus",
10486
+ "Czech Republic",
10487
+ "Denmark",
10488
+ "Djibouti",
10489
+ "Dominica",
10490
+ "Dominican Republic",
10491
+ "Ecuador",
10492
+ "Egypt",
10493
+ "El Salvador",
10494
+ "Equatorial Guinea",
10495
+ "Eritrea",
10496
+ "Estonia",
10497
+ "Eswatini",
10498
+ "Ethiopia",
10499
+ "Falkland Islands (Malvinas)",
10500
+ "Faroe islands",
10501
+ "Fiji",
10502
+ "Finland",
10503
+ "France",
10504
+ "French Guiana",
10505
+ "French Polynesia",
10506
+ "Gabon",
10507
+ "Gambia",
10508
+ "Georgia",
10509
+ "Germany",
10510
+ "Ghana",
10511
+ "Gibraltar",
10512
+ "Greece",
10513
+ "Greenland",
10514
+ "Grenada",
10515
+ "Guadeloupe",
10516
+ "Guam",
10517
+ "Guatemala",
10518
+ "Guernsey",
10519
+ "Guinea",
10520
+ "Guinea Bissau",
10521
+ "Guyana",
10522
+ "Haiti",
10523
+ "Honduras",
10524
+ "Hong Kong",
10525
+ "Hungary",
10526
+ "Iceland",
10527
+ "India",
10528
+ "Indonesia",
10529
+ "Iran, Islamic Republic of",
10530
+ "Iraq",
10531
+ "Ireland",
10532
+ "Isle Of Man",
10533
+ "Israel",
10534
+ "Italy",
10535
+ "Jamaica",
10536
+ "Japan",
10537
+ "Jersey",
10538
+ "Jordan",
10539
+ "Kazakhstan",
10540
+ "Kenya",
10541
+ "Kiribati",
10542
+ "Kosovo",
10543
+ "Kuwait",
10544
+ "Kyrgyzstan",
10545
+ "Lao People's Democratic Republic",
10546
+ "Latvia",
10547
+ "Lebanon",
10548
+ "Lesotho",
10549
+ "Liberia",
10550
+ "Libya",
10551
+ "Liechtenstein",
10552
+ "Lithuania",
10553
+ "Luxembourg",
10554
+ "Macau",
10555
+ "Madagascar",
10556
+ "Malawi",
10557
+ "Malaysia",
10558
+ "Maldives",
10559
+ "Mali",
10560
+ "Malta",
10561
+ "Marshall Islands",
10562
+ "Martinique",
10563
+ "Mauritania",
10564
+ "Mauritius",
10565
+ "Mayotte",
10566
+ "Mexico",
10567
+ "Micronesia",
10568
+ "Moldova",
10569
+ "Monaco",
10570
+ "Mongolia",
10571
+ "Montenegro",
10572
+ "Montserrat",
10573
+ "Morocco",
10574
+ "Mozambique",
10575
+ "Myanmar",
10576
+ "Namibia",
10577
+ "Nauru",
10578
+ "Nepal",
10579
+ "Netherlands",
10580
+ "New Caledonia",
10581
+ "New Zealand",
10582
+ "Nicaragua",
10583
+ "Niger",
10584
+ "Nigeria",
10585
+ "Niue",
10586
+ "Norfolk Island",
10587
+ "North Korea",
10588
+ "North Macedonia",
10589
+ "North Mariana Islands",
10590
+ "Norway",
10591
+ "Oman",
10592
+ "Pakistan",
10593
+ "Palau",
10594
+ "Palestine, State of",
10595
+ "Panama",
10596
+ "Papua New Guinea",
10597
+ "Paraguay",
10598
+ "Peru",
10599
+ "Philippines",
10600
+ "Pitcairn",
10601
+ "Poland",
10602
+ "Portugal",
10603
+ "Puerto Rico",
10604
+ "Qatar",
10605
+ "Réunion",
10606
+ "Romania",
10607
+ "Russian Federation",
10608
+ "Rwanda",
10609
+ "Saint Barthélemy",
10610
+ "Saint Helena, Ascension and Tristan",
10611
+ "Saint Kitts & Nevis",
10612
+ "Saint Lucia",
10613
+ "Saint Maarten",
10614
+ "Saint Martin (French part)",
10615
+ "Saint Pierre and Miquelon",
10616
+ "Saint Vincent & Grenadines",
10617
+ "Samoa",
10618
+ "San Marino",
10619
+ "Sao Tome & Prin.",
10620
+ "Saudi Arabia",
10621
+ "Senegal",
10622
+ "Serbia",
10623
+ "Seychelles",
10624
+ "Sierra Leone",
10625
+ "Singapore",
10626
+ "Slovakia",
10627
+ "Slovenia",
10628
+ "Solomon Islands",
10629
+ "Somalia",
10630
+ "South Africa",
10631
+ "South Korea",
10632
+ "South Sudan",
10633
+ "Spain",
10634
+ "Sri Lanka",
10635
+ "Sudan",
10636
+ "Suriname",
10637
+ "Svalbard and Mayen",
10638
+ "Sweden",
10639
+ "Switzerland",
10640
+ "Syria",
10641
+ "Taiwan",
10642
+ "Tajikistan",
10643
+ "Tanzania",
10644
+ "Thailand",
10645
+ "Timor-Leste",
10646
+ "Togo",
10647
+ "Tokelau",
10648
+ "Tonga",
10649
+ "Trinidad & Tobago",
10650
+ "Tunisia",
10651
+ "Turkey",
10652
+ "Turkmenistan",
10653
+ "Turks & Caicos",
10654
+ "Tuvalu",
10655
+ "Uganda",
10656
+ "Ukraine",
10657
+ "United Arab Emirates",
10658
+ "United Kingdom",
10659
+ "United States",
10660
+ "United States Virgin Islands",
10661
+ "Uruguay",
10662
+ "Uzbekistan",
10663
+ "Vanuatu",
10664
+ "Vatican City State (Holy See)",
10665
+ "Venezuela",
10666
+ "Vietnam",
10667
+ "Wallis and Futuna",
10668
+ "Western Sahara",
10669
+ "Yemen",
10670
+ "Zambia",
10671
+ "Zimbabwe",
10672
+ "Undefined",
10673
+ "Netherlands Antiles",
10674
+ "Antarctica",
10675
+ "Bouvet Island",
10676
+ "French Southern Territories",
10677
+ "Heard Island & Mcdonald Islands",
10678
+ "South Georgia And Sandwich Isl.",
10679
+ "United States Outlying Islands"
10680
+ ]
10681
+ }
10682
+ },
10683
+ relatedEntities: {
10684
+ type: "array",
10685
+ items: {
10686
+ type: "object",
10687
+ properties: {
10688
+ name: {
10689
+ type: "string"
10690
+ },
10691
+ entityType: {
10692
+ type: "string",
10693
+ "enum": [
10694
+ "ATM",
10695
+ "Airdrop",
10696
+ "Auctioned assets",
10697
+ "Bank",
10698
+ "Block reward",
10699
+ "Bot",
10700
+ "Child abuse",
10701
+ "Cloud mining",
10702
+ "Community reported scam",
10703
+ "Cross-chain Bridge Protocol",
10704
+ "Darkweb",
10705
+ "Decentralized service",
10706
+ "Dex",
10707
+ "Donations",
10708
+ "Exchange",
10709
+ "Gambling",
10710
+ "Hack",
10711
+ "ICO",
10712
+ "Ignored small amounts",
10713
+ "Investment management firm",
10714
+ "Large transaction",
10715
+ "Large unnamed entity",
10716
+ "Mining pool",
10717
+ "Mixing pattern",
10718
+ "Mixing service",
10719
+ "NFT Marketplace",
10720
+ "No entities found",
10721
+ "Ongoing legal action",
10722
+ "Payment Service Provider",
10723
+ "Payment channel",
10724
+ "Peeling chain of unknown origin",
10725
+ "Phishing",
10726
+ "Ransomware",
10727
+ "Real World Asset",
10728
+ "Sanction list",
10729
+ "Scam",
10730
+ "Seized assets",
10731
+ "Service",
10732
+ "Staking pool",
10733
+ "Suspicious",
10734
+ "Terrorism",
10735
+ "Token",
10736
+ "Token burning",
10737
+ "Token minting",
10738
+ "Unspent output",
10739
+ "Wallet",
10740
+ "OFAC sanction list",
10741
+ "Closed exchange",
10742
+ "Custom group"
10743
+ ]
10744
+ }
10745
+ },
10746
+ required: [
10747
+ "name",
10748
+ "entityType"
10749
+ ],
10750
+ additionalProperties: false
10751
+ }
10752
+ }
10753
+ },
10754
+ required: [
10755
+ "riskLevel"
10756
+ ],
10757
+ additionalProperties: false
9936
10758
  }
9937
10759
  },
9938
10760
  additionalProperties: false
@@ -10084,7 +10906,8 @@ var TransactionZodSchema = z.object({
10084
10906
  }).optional(),
10085
10907
  amlScreening: z.object({
10086
10908
  amlResults: AmlResults.array().optional()
10087
- }).optional()
10909
+ }).optional(),
10910
+ walletScreening: WalletScreeningData.optional()
10088
10911
  });
10089
10912
 
10090
10913
  var VaultJsonSchemas = {
@@ -10120,7 +10943,8 @@ var VaultPointerKeyMapZodSchema = z.object({
10120
10943
  }).strict(),
10121
10944
  Transaction: z.object({
10122
10945
  transactionId: z.string(),
10123
- workflowSessionId: z.string().optional()
10946
+ workflowSessionId: z.string().optional(),
10947
+ verificationMode: VerificationMode.optional()
10124
10948
  }),
10125
10949
  Tfhe: z.object({
10126
10950
  organizationId: z.string(),