@nexeraid/identity-schemas 2.3.25-dev → 2.3.27-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{customers.schema-8f6c7924.esm.js → customers.schema-2a6a70d5.esm.js} +6 -2
- package/dist/{customers.schema-0ce8464a.cjs.dev.js → customers.schema-4a2cc1a8.cjs.dev.js} +6 -2
- package/dist/{customers.schema-459fdc4d.cjs.prod.js → customers.schema-82dfa9fd.cjs.prod.js} +6 -2
- package/dist/declarations/src/providers/scorechain/scorechain.schema.d.ts +290 -290
- package/dist/declarations/src/providers/scorechain/scorechain.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +108 -108
- package/dist/declarations/src/transaction.schema.d.ts +2 -2
- package/dist/declarations/src/transaction.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/send-verification-flow-webhook.schema.d.ts +350 -350
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +2754 -2754
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts +24 -24
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts.map +1 -1
- package/dist/nexeraid-identity-schemas.cjs.dev.js +1 -1
- package/dist/nexeraid-identity-schemas.cjs.prod.js +1 -1
- package/dist/nexeraid-identity-schemas.esm.js +1 -1
- package/dist/package.json +1 -1
- package/dist/{transaction.schema-7297e823.cjs.prod.js → transaction.schema-009d03d6.cjs.dev.js} +1 -1
- package/dist/{transaction.schema-2141e819.cjs.dev.js → transaction.schema-309817d0.cjs.prod.js} +1 -1
- package/dist/{transaction.schema-fb699c40.esm.js → transaction.schema-86683e90.esm.js} +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +21 -21
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +21 -21
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +21 -21
|
@@ -10,7 +10,9 @@ var BLOCKCHAIN_TYPES = ["BITCOIN", "BITCOINCASH", "LITECOIN", "DASH", "ETHEREUM"
|
|
|
10
10
|
var Blockchain = z["enum"](BLOCKCHAIN_TYPES);
|
|
11
11
|
var Coin = z.union([z.string(), z.literal("MAIN"), z.literal("ALL")]).describe("Coin (Use MAIN according to the docs)");
|
|
12
12
|
var RiskSeverity = z["enum"](["CRITICAL_RISK", "HIGH_RISK", "MEDIUM_RISK", "LOW_RISK", "NO_RISK", "UNDEFINED_RISK"]);
|
|
13
|
-
var EntityType = z["enum"](["Airdrop", "Bank", "
|
|
13
|
+
var EntityType = z["enum"](["ATM", "Airdrop", "Auctioned assets", "Bank", "Block reward", "Bot", "Child abuse", "Cloud mining", "Community reported scam", "Cross-chain Bridge Protocol", "Darkweb", "Decentralized service", "Dex", "Donations", "Exchange", "Gambling", "Hack", "ICO", "Ignored small amounts", "Investment management firm", "Large transaction", "Large unnamed entity", "Mining pool", "Mixing pattern", "Mixing service", "NFT Marketplace", "No entities found", "Ongoing legal action", "Payment Service Provider", "Payment channel", "Peeling chain of unknown origin", "Phishing", "Ransomware", "Real World Asset", "Sanction list", "Scam", "Seized assets", "Service", "Staking pool", "Suspicious", "Terrorism", "Token", "Token burning", "Token minting", "Unspent output", "Wallet",
|
|
14
|
+
// Backward support types
|
|
15
|
+
"OFAC sanction list", "Closed exchange", "Custom group"]);
|
|
14
16
|
var AiItemResult = z.object({
|
|
15
17
|
type: EntityType.optional(),
|
|
16
18
|
percent: z.number()
|
|
@@ -32,7 +34,9 @@ var RiskAssessment = z.object({
|
|
|
32
34
|
});
|
|
33
35
|
var CustomRiskAssessment = RiskAssessment;
|
|
34
36
|
var RiskIndicatorType = z["enum"](["ENTITY_TYPE", "ENTITY_COUNTRY", "BEHAVIOR"]);
|
|
35
|
-
var BehavioralType = z["enum"](["Unspent output", "Block reward", "Peeling chain of unknown origin", "Payment channel", "Large unnamed entity", "Ignored small amounts", "
|
|
37
|
+
var BehavioralType = z["enum"](["Unspent output", "Block reward", "Peeling chain of unknown origin", "Payment channel", "Large unnamed entity", "Ignored small amounts", "Large transaction", "Mixing pattern", "No entities found", "Token minting", "Token burning",
|
|
38
|
+
// Backward support types
|
|
39
|
+
"Maximum exploration depth", "Secondary coin creation", "Secondary coin removal"]);
|
|
36
40
|
var Countries = z.string();
|
|
37
41
|
var RiskIndicatorReference = z.union([EntityType.optional(), BehavioralType.optional(), Countries]);
|
|
38
42
|
var RiskIndicatorThresholdParameters = z.object({
|
|
@@ -12,7 +12,9 @@ var BLOCKCHAIN_TYPES = ["BITCOIN", "BITCOINCASH", "LITECOIN", "DASH", "ETHEREUM"
|
|
|
12
12
|
var Blockchain = zod.z["enum"](BLOCKCHAIN_TYPES);
|
|
13
13
|
var Coin = zod.z.union([zod.z.string(), zod.z.literal("MAIN"), zod.z.literal("ALL")]).describe("Coin (Use MAIN according to the docs)");
|
|
14
14
|
var RiskSeverity = zod.z["enum"](["CRITICAL_RISK", "HIGH_RISK", "MEDIUM_RISK", "LOW_RISK", "NO_RISK", "UNDEFINED_RISK"]);
|
|
15
|
-
var EntityType = zod.z["enum"](["Airdrop", "Bank", "
|
|
15
|
+
var EntityType = zod.z["enum"](["ATM", "Airdrop", "Auctioned assets", "Bank", "Block reward", "Bot", "Child abuse", "Cloud mining", "Community reported scam", "Cross-chain Bridge Protocol", "Darkweb", "Decentralized service", "Dex", "Donations", "Exchange", "Gambling", "Hack", "ICO", "Ignored small amounts", "Investment management firm", "Large transaction", "Large unnamed entity", "Mining pool", "Mixing pattern", "Mixing service", "NFT Marketplace", "No entities found", "Ongoing legal action", "Payment Service Provider", "Payment channel", "Peeling chain of unknown origin", "Phishing", "Ransomware", "Real World Asset", "Sanction list", "Scam", "Seized assets", "Service", "Staking pool", "Suspicious", "Terrorism", "Token", "Token burning", "Token minting", "Unspent output", "Wallet",
|
|
16
|
+
// Backward support types
|
|
17
|
+
"OFAC sanction list", "Closed exchange", "Custom group"]);
|
|
16
18
|
var AiItemResult = zod.z.object({
|
|
17
19
|
type: EntityType.optional(),
|
|
18
20
|
percent: zod.z.number()
|
|
@@ -34,7 +36,9 @@ var RiskAssessment = zod.z.object({
|
|
|
34
36
|
});
|
|
35
37
|
var CustomRiskAssessment = RiskAssessment;
|
|
36
38
|
var RiskIndicatorType = zod.z["enum"](["ENTITY_TYPE", "ENTITY_COUNTRY", "BEHAVIOR"]);
|
|
37
|
-
var BehavioralType = zod.z["enum"](["Unspent output", "Block reward", "Peeling chain of unknown origin", "Payment channel", "Large unnamed entity", "Ignored small amounts", "
|
|
39
|
+
var BehavioralType = zod.z["enum"](["Unspent output", "Block reward", "Peeling chain of unknown origin", "Payment channel", "Large unnamed entity", "Ignored small amounts", "Large transaction", "Mixing pattern", "No entities found", "Token minting", "Token burning",
|
|
40
|
+
// Backward support types
|
|
41
|
+
"Maximum exploration depth", "Secondary coin creation", "Secondary coin removal"]);
|
|
38
42
|
var Countries = zod.z.string();
|
|
39
43
|
var RiskIndicatorReference = zod.z.union([EntityType.optional(), BehavioralType.optional(), Countries]);
|
|
40
44
|
var RiskIndicatorThresholdParameters = zod.z.object({
|
package/dist/{customers.schema-459fdc4d.cjs.prod.js → customers.schema-82dfa9fd.cjs.prod.js}
RENAMED
|
@@ -12,7 +12,9 @@ var BLOCKCHAIN_TYPES = ["BITCOIN", "BITCOINCASH", "LITECOIN", "DASH", "ETHEREUM"
|
|
|
12
12
|
var Blockchain = zod.z["enum"](BLOCKCHAIN_TYPES);
|
|
13
13
|
var Coin = zod.z.union([zod.z.string(), zod.z.literal("MAIN"), zod.z.literal("ALL")]).describe("Coin (Use MAIN according to the docs)");
|
|
14
14
|
var RiskSeverity = zod.z["enum"](["CRITICAL_RISK", "HIGH_RISK", "MEDIUM_RISK", "LOW_RISK", "NO_RISK", "UNDEFINED_RISK"]);
|
|
15
|
-
var EntityType = zod.z["enum"](["Airdrop", "Bank", "
|
|
15
|
+
var EntityType = zod.z["enum"](["ATM", "Airdrop", "Auctioned assets", "Bank", "Block reward", "Bot", "Child abuse", "Cloud mining", "Community reported scam", "Cross-chain Bridge Protocol", "Darkweb", "Decentralized service", "Dex", "Donations", "Exchange", "Gambling", "Hack", "ICO", "Ignored small amounts", "Investment management firm", "Large transaction", "Large unnamed entity", "Mining pool", "Mixing pattern", "Mixing service", "NFT Marketplace", "No entities found", "Ongoing legal action", "Payment Service Provider", "Payment channel", "Peeling chain of unknown origin", "Phishing", "Ransomware", "Real World Asset", "Sanction list", "Scam", "Seized assets", "Service", "Staking pool", "Suspicious", "Terrorism", "Token", "Token burning", "Token minting", "Unspent output", "Wallet",
|
|
16
|
+
// Backward support types
|
|
17
|
+
"OFAC sanction list", "Closed exchange", "Custom group"]);
|
|
16
18
|
var AiItemResult = zod.z.object({
|
|
17
19
|
type: EntityType.optional(),
|
|
18
20
|
percent: zod.z.number()
|
|
@@ -34,7 +36,9 @@ var RiskAssessment = zod.z.object({
|
|
|
34
36
|
});
|
|
35
37
|
var CustomRiskAssessment = RiskAssessment;
|
|
36
38
|
var RiskIndicatorType = zod.z["enum"](["ENTITY_TYPE", "ENTITY_COUNTRY", "BEHAVIOR"]);
|
|
37
|
-
var BehavioralType = zod.z["enum"](["Unspent output", "Block reward", "Peeling chain of unknown origin", "Payment channel", "Large unnamed entity", "Ignored small amounts", "
|
|
39
|
+
var BehavioralType = zod.z["enum"](["Unspent output", "Block reward", "Peeling chain of unknown origin", "Payment channel", "Large unnamed entity", "Ignored small amounts", "Large transaction", "Mixing pattern", "No entities found", "Token minting", "Token burning",
|
|
40
|
+
// Backward support types
|
|
41
|
+
"Maximum exploration depth", "Secondary coin creation", "Secondary coin removal"]);
|
|
38
42
|
var Countries = zod.z.string();
|
|
39
43
|
var RiskIndicatorReference = zod.z.union([EntityType.optional(), BehavioralType.optional(), Countries]);
|
|
40
44
|
var RiskIndicatorThresholdParameters = zod.z.object({
|