@nexeraid/identity-schemas 2.164.0-dev → 2.165.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.
- package/dist/declarations/src/providers/index.d.ts +1 -0
- package/dist/declarations/src/providers/index.d.ts.map +1 -1
- package/dist/declarations/src/providers/trm-labs/trm.schema.d.ts +358 -0
- package/dist/declarations/src/providers/trm-labs/trm.schema.d.ts.map +1 -0
- package/dist/{identity-api.schema-073b77e8.cjs.dev.cjs → identity-api.schema-9a1b028a.cjs.dev.cjs} +446 -446
- package/dist/{identity-api.schema-b0cdf833.cjs.prod.cjs → identity-api.schema-a6843fb9.cjs.prod.cjs} +446 -446
- package/dist/nexeraid-identity-schemas.cjs.dev.cjs +59 -59
- package/dist/nexeraid-identity-schemas.cjs.prod.cjs +59 -59
- package/dist/package.json +1 -1
- package/dist/{tfhe-utilities-f68d3b85.cjs.prod.cjs → tfhe-utilities-2ff3b3c1.cjs.prod.cjs} +2 -2
- package/dist/{tfhe-utilities-7506bbe3.cjs.dev.cjs → tfhe-utilities-5af6eb2a.cjs.dev.cjs} +2 -2
- package/dist/{toArray-d4a6f7df.cjs.dev.cjs → toArray-96f8cc3a.cjs.dev.cjs} +1 -1
- package/dist/{toArray-19bbf25f.cjs.prod.cjs → toArray-f5e38cce.cjs.prod.cjs} +1 -1
- package/dist/{CoinMarketCap.schema-ab71ee5f.cjs.prod.cjs → trm.schema-2ae40855.cjs.prod.cjs} +1276 -1207
- package/dist/{CoinMarketCap.schema-0c52a356.cjs.dev.cjs → trm.schema-4556df89.cjs.dev.cjs} +1276 -1207
- package/dist/{CoinMarketCap.schema-71fcc409.esm.mjs → trm.schema-d593fe86.esm.mjs} +62 -2
- package/dist/{vault.schema-68148c82.cjs.dev.cjs → vault.schema-6368506b.cjs.dev.cjs} +1268 -1268
- package/dist/{vault.schema-83220a2a.cjs.prod.cjs → vault.schema-b41992ec.cjs.prod.cjs} +1268 -1268
- package/dist/{zod-utils-22ad76a6.cjs.prod.cjs → zod-utils-46b101c1.cjs.prod.cjs} +12 -12
- package/dist/{zod-utils-373653ad.cjs.dev.cjs → zod-utils-4e3fa4df.cjs.dev.cjs} +12 -12
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +2 -2
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +2 -2
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +294 -289
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +294 -289
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +1 -1
- package/vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs +3 -3
- package/vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs +3 -3
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +3 -3
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +3 -3
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +484 -484
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +484 -484
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +1 -1
|
@@ -17,4 +17,5 @@ export * from "./chainalysis/chainalysis.schema.js";
|
|
|
17
17
|
export * from "./coin-market-cap/CoinMarketCap.schema.js";
|
|
18
18
|
export * from "./coin-market-cap/cmc-fiat.schema.js";
|
|
19
19
|
export * from "./coin-market-cap/cmc-crypto.schema.js";
|
|
20
|
+
export * from "./trm-labs/trm.schema.js";
|
|
20
21
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"../../../../src/providers","sources":["index.ts"],"names":[],"mappings":"AAAA,kDAA+C;AAC/C,2DAAwD;AACxD,gDAA6C;AAC7C,wDAAqD;AACrD,0CAAuC;AACvC,8DAA2D;AAC3D,qCAAkC;AAClC,mDAAgD;AAChD,0CAAuC;AACvC,oDAAiD;AACjD,iDAA8C;AAC9C,yCAAsC;AACtC,yCAAsC;AACtC,sCAAmC;AACnC,0DAAuD;AACvD,oDAAiD;AACjD,0DAAuD;AACvD,qDAAkD;AAClD,uDAAoD"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"../../../../src/providers","sources":["index.ts"],"names":[],"mappings":"AAAA,kDAA+C;AAC/C,2DAAwD;AACxD,gDAA6C;AAC7C,wDAAqD;AACrD,0CAAuC;AACvC,8DAA2D;AAC3D,qCAAkC;AAClC,mDAAgD;AAChD,0CAAuC;AACvC,oDAAiD;AACjD,iDAA8C;AAC9C,yCAAsC;AACtC,yCAAsC;AACtC,sCAAmC;AACnC,0DAAuD;AACvD,oDAAiD;AACjD,0DAAuD;AACvD,qDAAkD;AAClD,uDAAoD;AACpD,yCAAsC"}
|
|
@@ -0,0 +1,358 @@
|
|
|
1
|
+
import z from "zod";
|
|
2
|
+
export declare const AddressesScreeningApiRequest: z.ZodObject<{
|
|
3
|
+
chain: z.ZodOptional<z.ZodNullable<z.ZodEnum<["avalanche_p_chain", "avalanche_x_chain", "aleo", "algorand", "aptos", "arbitrum", "avalanche_c_chain", "b3", "base", "berachain", "binance", "binance_smart_chain", "bitcoin", "bitcoin_cash", "bitcoin_gold", "bitcoin_sv", "blast", "bytom", "cardano", "celestia", "celo", "codex", "concordium", "cosmos", "dash", "dogecoin", "dydx", "elastos", "eos", "ethereum", "ethereum_classic", "fantom", "filecoin", "flow", "gunzilla", "hedera", "hyperliquid", "icon", "internet_computer", "iost", "iota", "klaytn", "lisk", "litecoin", "mode", "monad", "monero", "elrond", "near", "nebulas", "neo", "noble", "oasis", "omni", "ontology", "optimism", "pai", "polkadot", "polygon", "plume", "qtum", "ripple", "ronin", "sei", "solana", "soneium", "sonic", "strk", "steem", "stellar", "sui", "terra", "tezos", "ton", "tron", "unichain", "worldchain", "zcash", "zilliqa", "zksync", "zora", "ALL"]>>>;
|
|
4
|
+
address: z.ZodString;
|
|
5
|
+
}, "strip", z.ZodTypeAny, {
|
|
6
|
+
address: string;
|
|
7
|
+
chain?: "ALL" | "cosmos" | "tezos" | "aptos" | "polkadot" | "solana" | "cardano" | "dash" | "tron" | "flow" | "mode" | "icon" | "avalanche_p_chain" | "avalanche_x_chain" | "aleo" | "algorand" | "arbitrum" | "avalanche_c_chain" | "b3" | "base" | "berachain" | "binance" | "binance_smart_chain" | "bitcoin" | "bitcoin_cash" | "bitcoin_gold" | "bitcoin_sv" | "blast" | "bytom" | "celestia" | "celo" | "codex" | "concordium" | "dogecoin" | "dydx" | "elastos" | "eos" | "ethereum" | "ethereum_classic" | "fantom" | "filecoin" | "gunzilla" | "hedera" | "hyperliquid" | "internet_computer" | "iost" | "iota" | "klaytn" | "lisk" | "litecoin" | "monad" | "monero" | "elrond" | "near" | "nebulas" | "neo" | "noble" | "oasis" | "omni" | "ontology" | "optimism" | "pai" | "polygon" | "plume" | "qtum" | "ripple" | "ronin" | "sei" | "soneium" | "sonic" | "strk" | "steem" | "stellar" | "sui" | "terra" | "ton" | "unichain" | "worldchain" | "zcash" | "zilliqa" | "zksync" | "zora" | null | undefined;
|
|
8
|
+
}, {
|
|
9
|
+
address: string;
|
|
10
|
+
chain?: "ALL" | "cosmos" | "tezos" | "aptos" | "polkadot" | "solana" | "cardano" | "dash" | "tron" | "flow" | "mode" | "icon" | "avalanche_p_chain" | "avalanche_x_chain" | "aleo" | "algorand" | "arbitrum" | "avalanche_c_chain" | "b3" | "base" | "berachain" | "binance" | "binance_smart_chain" | "bitcoin" | "bitcoin_cash" | "bitcoin_gold" | "bitcoin_sv" | "blast" | "bytom" | "celestia" | "celo" | "codex" | "concordium" | "dogecoin" | "dydx" | "elastos" | "eos" | "ethereum" | "ethereum_classic" | "fantom" | "filecoin" | "gunzilla" | "hedera" | "hyperliquid" | "internet_computer" | "iost" | "iota" | "klaytn" | "lisk" | "litecoin" | "monad" | "monero" | "elrond" | "near" | "nebulas" | "neo" | "noble" | "oasis" | "omni" | "ontology" | "optimism" | "pai" | "polygon" | "plume" | "qtum" | "ripple" | "ronin" | "sei" | "soneium" | "sonic" | "strk" | "steem" | "stellar" | "sui" | "terra" | "ton" | "unichain" | "worldchain" | "zcash" | "zilliqa" | "zksync" | "zora" | null | undefined;
|
|
11
|
+
}>;
|
|
12
|
+
export type AddressesScreeningApiRequest = z.infer<typeof AddressesScreeningApiRequest>;
|
|
13
|
+
export declare const TRM_RISK_SCORE_LEVEL: number[];
|
|
14
|
+
export declare const TRM_RISK_SCORE_LEVEL_LABEL: readonly ["Unknown", "Low", "Medium", "High", "Severe"];
|
|
15
|
+
export declare const AddressesScreening: z.ZodArray<z.ZodObject<{
|
|
16
|
+
accountExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
17
|
+
accountUuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
18
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
19
|
+
addressIncomingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
20
|
+
addressOutgoingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
21
|
+
addressHighestRiskScoreLevel: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
22
|
+
addressHighestRiskScoreLevelLabel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Unknown", "Low", "Medium", "High", "Severe"]>>>;
|
|
23
|
+
addressRiskIndicators: z.ZodArray<z.ZodObject<{
|
|
24
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
|
+
categoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
|
+
categoryRiskScoreLevel: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
27
|
+
categoryRiskScoreLevelLabel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Unknown", "Low", "Medium", "High", "Severe"]>>>;
|
|
28
|
+
incomingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
29
|
+
outgoingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
30
|
+
riskType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["COUNTERPARTY", "INDIRECT", "OWNERSHIP"]>>>;
|
|
31
|
+
totalVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32
|
+
incomingVolumePercent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
33
|
+
outgoingVolumePercent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
34
|
+
totalVolumePercent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
|
+
}, "strip", z.ZodTypeAny, {
|
|
36
|
+
category?: string | null | undefined;
|
|
37
|
+
categoryId?: string | null | undefined;
|
|
38
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
39
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
40
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
41
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
42
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
43
|
+
totalVolumeUsd?: string | null | undefined;
|
|
44
|
+
incomingVolumePercent?: string | null | undefined;
|
|
45
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
46
|
+
totalVolumePercent?: string | null | undefined;
|
|
47
|
+
}, {
|
|
48
|
+
category?: string | null | undefined;
|
|
49
|
+
categoryId?: string | null | undefined;
|
|
50
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
51
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
52
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
53
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
54
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
55
|
+
totalVolumeUsd?: string | null | undefined;
|
|
56
|
+
incomingVolumePercent?: string | null | undefined;
|
|
57
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
58
|
+
totalVolumePercent?: string | null | undefined;
|
|
59
|
+
}>, "many">;
|
|
60
|
+
addressSubmitted: z.ZodString;
|
|
61
|
+
addressTotalVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
62
|
+
chain: z.ZodOptional<z.ZodNullable<z.ZodEnum<["avalanche_p_chain", "avalanche_x_chain", "aleo", "algorand", "aptos", "arbitrum", "avalanche_c_chain", "b3", "base", "berachain", "binance", "binance_smart_chain", "bitcoin", "bitcoin_cash", "bitcoin_gold", "bitcoin_sv", "blast", "bytom", "cardano", "celestia", "celo", "codex", "concordium", "cosmos", "dash", "dogecoin", "dydx", "elastos", "eos", "ethereum", "ethereum_classic", "fantom", "filecoin", "flow", "gunzilla", "hedera", "hyperliquid", "icon", "internet_computer", "iost", "iota", "klaytn", "lisk", "litecoin", "mode", "monad", "monero", "elrond", "near", "nebulas", "neo", "noble", "oasis", "omni", "ontology", "optimism", "pai", "polkadot", "polygon", "plume", "qtum", "ripple", "ronin", "sei", "solana", "soneium", "sonic", "strk", "steem", "stellar", "sui", "terra", "tezos", "ton", "tron", "unichain", "worldchain", "zcash", "zilliqa", "zksync", "zora", "ALL"]>>>;
|
|
63
|
+
entities: z.ZodArray<z.ZodObject<{
|
|
64
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
65
|
+
categoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
66
|
+
confidenceScoreLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
67
|
+
entity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
68
|
+
riskScoreLevel: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
69
|
+
riskScoreLevelLabel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Unknown", "Low", "Medium", "High", "Severe"]>>>;
|
|
70
|
+
trmAppUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
71
|
+
trmUrn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
72
|
+
}, "strip", z.ZodTypeAny, {
|
|
73
|
+
entity?: string | null | undefined;
|
|
74
|
+
category?: string | null | undefined;
|
|
75
|
+
categoryId?: string | null | undefined;
|
|
76
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
77
|
+
riskScoreLevel?: number | null | undefined;
|
|
78
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
79
|
+
trmAppUrl?: string | null | undefined;
|
|
80
|
+
trmUrn?: string | null | undefined;
|
|
81
|
+
}, {
|
|
82
|
+
entity?: string | null | undefined;
|
|
83
|
+
category?: string | null | undefined;
|
|
84
|
+
categoryId?: string | null | undefined;
|
|
85
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
86
|
+
riskScoreLevel?: number | null | undefined;
|
|
87
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
88
|
+
trmAppUrl?: string | null | undefined;
|
|
89
|
+
trmUrn?: string | null | undefined;
|
|
90
|
+
}>, "many">;
|
|
91
|
+
externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
92
|
+
trmAppUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
93
|
+
}, "strip", z.ZodTypeAny, {
|
|
94
|
+
entities: {
|
|
95
|
+
entity?: string | null | undefined;
|
|
96
|
+
category?: string | null | undefined;
|
|
97
|
+
categoryId?: string | null | undefined;
|
|
98
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
99
|
+
riskScoreLevel?: number | null | undefined;
|
|
100
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
101
|
+
trmAppUrl?: string | null | undefined;
|
|
102
|
+
trmUrn?: string | null | undefined;
|
|
103
|
+
}[];
|
|
104
|
+
addressRiskIndicators: {
|
|
105
|
+
category?: string | null | undefined;
|
|
106
|
+
categoryId?: string | null | undefined;
|
|
107
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
108
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
109
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
110
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
111
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
112
|
+
totalVolumeUsd?: string | null | undefined;
|
|
113
|
+
incomingVolumePercent?: string | null | undefined;
|
|
114
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
115
|
+
totalVolumePercent?: string | null | undefined;
|
|
116
|
+
}[];
|
|
117
|
+
addressSubmitted: string;
|
|
118
|
+
address?: string | null | undefined;
|
|
119
|
+
externalId?: string | null | undefined;
|
|
120
|
+
chain?: "ALL" | "cosmos" | "tezos" | "aptos" | "polkadot" | "solana" | "cardano" | "dash" | "tron" | "flow" | "mode" | "icon" | "avalanche_p_chain" | "avalanche_x_chain" | "aleo" | "algorand" | "arbitrum" | "avalanche_c_chain" | "b3" | "base" | "berachain" | "binance" | "binance_smart_chain" | "bitcoin" | "bitcoin_cash" | "bitcoin_gold" | "bitcoin_sv" | "blast" | "bytom" | "celestia" | "celo" | "codex" | "concordium" | "dogecoin" | "dydx" | "elastos" | "eos" | "ethereum" | "ethereum_classic" | "fantom" | "filecoin" | "gunzilla" | "hedera" | "hyperliquid" | "internet_computer" | "iost" | "iota" | "klaytn" | "lisk" | "litecoin" | "monad" | "monero" | "elrond" | "near" | "nebulas" | "neo" | "noble" | "oasis" | "omni" | "ontology" | "optimism" | "pai" | "polygon" | "plume" | "qtum" | "ripple" | "ronin" | "sei" | "soneium" | "sonic" | "strk" | "steem" | "stellar" | "sui" | "terra" | "ton" | "unichain" | "worldchain" | "zcash" | "zilliqa" | "zksync" | "zora" | null | undefined;
|
|
121
|
+
accountExternalId?: string | null | undefined;
|
|
122
|
+
accountUuid?: string | null | undefined;
|
|
123
|
+
addressIncomingVolumeUsd?: string | null | undefined;
|
|
124
|
+
addressOutgoingVolumeUsd?: string | null | undefined;
|
|
125
|
+
addressHighestRiskScoreLevel?: number | null | undefined;
|
|
126
|
+
addressHighestRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
127
|
+
addressTotalVolumeUsd?: string | null | undefined;
|
|
128
|
+
trmAppUrl?: string | null | undefined;
|
|
129
|
+
}, {
|
|
130
|
+
entities: {
|
|
131
|
+
entity?: string | null | undefined;
|
|
132
|
+
category?: string | null | undefined;
|
|
133
|
+
categoryId?: string | null | undefined;
|
|
134
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
135
|
+
riskScoreLevel?: number | null | undefined;
|
|
136
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
137
|
+
trmAppUrl?: string | null | undefined;
|
|
138
|
+
trmUrn?: string | null | undefined;
|
|
139
|
+
}[];
|
|
140
|
+
addressRiskIndicators: {
|
|
141
|
+
category?: string | null | undefined;
|
|
142
|
+
categoryId?: string | null | undefined;
|
|
143
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
144
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
145
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
146
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
147
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
148
|
+
totalVolumeUsd?: string | null | undefined;
|
|
149
|
+
incomingVolumePercent?: string | null | undefined;
|
|
150
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
151
|
+
totalVolumePercent?: string | null | undefined;
|
|
152
|
+
}[];
|
|
153
|
+
addressSubmitted: string;
|
|
154
|
+
address?: string | null | undefined;
|
|
155
|
+
externalId?: string | null | undefined;
|
|
156
|
+
chain?: "ALL" | "cosmos" | "tezos" | "aptos" | "polkadot" | "solana" | "cardano" | "dash" | "tron" | "flow" | "mode" | "icon" | "avalanche_p_chain" | "avalanche_x_chain" | "aleo" | "algorand" | "arbitrum" | "avalanche_c_chain" | "b3" | "base" | "berachain" | "binance" | "binance_smart_chain" | "bitcoin" | "bitcoin_cash" | "bitcoin_gold" | "bitcoin_sv" | "blast" | "bytom" | "celestia" | "celo" | "codex" | "concordium" | "dogecoin" | "dydx" | "elastos" | "eos" | "ethereum" | "ethereum_classic" | "fantom" | "filecoin" | "gunzilla" | "hedera" | "hyperliquid" | "internet_computer" | "iost" | "iota" | "klaytn" | "lisk" | "litecoin" | "monad" | "monero" | "elrond" | "near" | "nebulas" | "neo" | "noble" | "oasis" | "omni" | "ontology" | "optimism" | "pai" | "polygon" | "plume" | "qtum" | "ripple" | "ronin" | "sei" | "soneium" | "sonic" | "strk" | "steem" | "stellar" | "sui" | "terra" | "ton" | "unichain" | "worldchain" | "zcash" | "zilliqa" | "zksync" | "zora" | null | undefined;
|
|
157
|
+
accountExternalId?: string | null | undefined;
|
|
158
|
+
accountUuid?: string | null | undefined;
|
|
159
|
+
addressIncomingVolumeUsd?: string | null | undefined;
|
|
160
|
+
addressOutgoingVolumeUsd?: string | null | undefined;
|
|
161
|
+
addressHighestRiskScoreLevel?: number | null | undefined;
|
|
162
|
+
addressHighestRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
163
|
+
addressTotalVolumeUsd?: string | null | undefined;
|
|
164
|
+
trmAppUrl?: string | null | undefined;
|
|
165
|
+
}>, "many">;
|
|
166
|
+
export type AddressesScreening = z.infer<typeof AddressesScreening>;
|
|
167
|
+
declare const AddressesScreeningError: z.ZodObject<{
|
|
168
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
169
|
+
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
170
|
+
code: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
171
|
+
className: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
172
|
+
errors: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
|
|
173
|
+
}, "strip", z.ZodTypeAny, {
|
|
174
|
+
code?: number | null | undefined;
|
|
175
|
+
message?: string | null | undefined;
|
|
176
|
+
name?: string | null | undefined;
|
|
177
|
+
errors?: {} | null | undefined;
|
|
178
|
+
className?: string | null | undefined;
|
|
179
|
+
}, {
|
|
180
|
+
code?: number | null | undefined;
|
|
181
|
+
message?: string | null | undefined;
|
|
182
|
+
name?: string | null | undefined;
|
|
183
|
+
errors?: {} | null | undefined;
|
|
184
|
+
className?: string | null | undefined;
|
|
185
|
+
}>;
|
|
186
|
+
export type AddressesScreeningError = z.infer<typeof AddressesScreeningError>;
|
|
187
|
+
export declare const AddressesScreeningResponse: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
188
|
+
accountExternalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
189
|
+
accountUuid: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
190
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
191
|
+
addressIncomingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
192
|
+
addressOutgoingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
193
|
+
addressHighestRiskScoreLevel: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
194
|
+
addressHighestRiskScoreLevelLabel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Unknown", "Low", "Medium", "High", "Severe"]>>>;
|
|
195
|
+
addressRiskIndicators: z.ZodArray<z.ZodObject<{
|
|
196
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
197
|
+
categoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
198
|
+
categoryRiskScoreLevel: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
199
|
+
categoryRiskScoreLevelLabel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Unknown", "Low", "Medium", "High", "Severe"]>>>;
|
|
200
|
+
incomingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
201
|
+
outgoingVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
202
|
+
riskType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["COUNTERPARTY", "INDIRECT", "OWNERSHIP"]>>>;
|
|
203
|
+
totalVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
204
|
+
incomingVolumePercent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
205
|
+
outgoingVolumePercent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
206
|
+
totalVolumePercent: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
207
|
+
}, "strip", z.ZodTypeAny, {
|
|
208
|
+
category?: string | null | undefined;
|
|
209
|
+
categoryId?: string | null | undefined;
|
|
210
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
211
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
212
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
213
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
214
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
215
|
+
totalVolumeUsd?: string | null | undefined;
|
|
216
|
+
incomingVolumePercent?: string | null | undefined;
|
|
217
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
218
|
+
totalVolumePercent?: string | null | undefined;
|
|
219
|
+
}, {
|
|
220
|
+
category?: string | null | undefined;
|
|
221
|
+
categoryId?: string | null | undefined;
|
|
222
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
223
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
224
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
225
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
226
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
227
|
+
totalVolumeUsd?: string | null | undefined;
|
|
228
|
+
incomingVolumePercent?: string | null | undefined;
|
|
229
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
230
|
+
totalVolumePercent?: string | null | undefined;
|
|
231
|
+
}>, "many">;
|
|
232
|
+
addressSubmitted: z.ZodString;
|
|
233
|
+
addressTotalVolumeUsd: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
234
|
+
chain: z.ZodOptional<z.ZodNullable<z.ZodEnum<["avalanche_p_chain", "avalanche_x_chain", "aleo", "algorand", "aptos", "arbitrum", "avalanche_c_chain", "b3", "base", "berachain", "binance", "binance_smart_chain", "bitcoin", "bitcoin_cash", "bitcoin_gold", "bitcoin_sv", "blast", "bytom", "cardano", "celestia", "celo", "codex", "concordium", "cosmos", "dash", "dogecoin", "dydx", "elastos", "eos", "ethereum", "ethereum_classic", "fantom", "filecoin", "flow", "gunzilla", "hedera", "hyperliquid", "icon", "internet_computer", "iost", "iota", "klaytn", "lisk", "litecoin", "mode", "monad", "monero", "elrond", "near", "nebulas", "neo", "noble", "oasis", "omni", "ontology", "optimism", "pai", "polkadot", "polygon", "plume", "qtum", "ripple", "ronin", "sei", "solana", "soneium", "sonic", "strk", "steem", "stellar", "sui", "terra", "tezos", "ton", "tron", "unichain", "worldchain", "zcash", "zilliqa", "zksync", "zora", "ALL"]>>>;
|
|
235
|
+
entities: z.ZodArray<z.ZodObject<{
|
|
236
|
+
category: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
237
|
+
categoryId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
238
|
+
confidenceScoreLabel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
239
|
+
entity: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
240
|
+
riskScoreLevel: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
241
|
+
riskScoreLevelLabel: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Unknown", "Low", "Medium", "High", "Severe"]>>>;
|
|
242
|
+
trmAppUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
243
|
+
trmUrn: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
244
|
+
}, "strip", z.ZodTypeAny, {
|
|
245
|
+
entity?: string | null | undefined;
|
|
246
|
+
category?: string | null | undefined;
|
|
247
|
+
categoryId?: string | null | undefined;
|
|
248
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
249
|
+
riskScoreLevel?: number | null | undefined;
|
|
250
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
251
|
+
trmAppUrl?: string | null | undefined;
|
|
252
|
+
trmUrn?: string | null | undefined;
|
|
253
|
+
}, {
|
|
254
|
+
entity?: string | null | undefined;
|
|
255
|
+
category?: string | null | undefined;
|
|
256
|
+
categoryId?: string | null | undefined;
|
|
257
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
258
|
+
riskScoreLevel?: number | null | undefined;
|
|
259
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
260
|
+
trmAppUrl?: string | null | undefined;
|
|
261
|
+
trmUrn?: string | null | undefined;
|
|
262
|
+
}>, "many">;
|
|
263
|
+
externalId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
264
|
+
trmAppUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
265
|
+
}, "strip", z.ZodTypeAny, {
|
|
266
|
+
entities: {
|
|
267
|
+
entity?: string | null | undefined;
|
|
268
|
+
category?: string | null | undefined;
|
|
269
|
+
categoryId?: string | null | undefined;
|
|
270
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
271
|
+
riskScoreLevel?: number | null | undefined;
|
|
272
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
273
|
+
trmAppUrl?: string | null | undefined;
|
|
274
|
+
trmUrn?: string | null | undefined;
|
|
275
|
+
}[];
|
|
276
|
+
addressRiskIndicators: {
|
|
277
|
+
category?: string | null | undefined;
|
|
278
|
+
categoryId?: string | null | undefined;
|
|
279
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
280
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
281
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
282
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
283
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
284
|
+
totalVolumeUsd?: string | null | undefined;
|
|
285
|
+
incomingVolumePercent?: string | null | undefined;
|
|
286
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
287
|
+
totalVolumePercent?: string | null | undefined;
|
|
288
|
+
}[];
|
|
289
|
+
addressSubmitted: string;
|
|
290
|
+
address?: string | null | undefined;
|
|
291
|
+
externalId?: string | null | undefined;
|
|
292
|
+
chain?: "ALL" | "cosmos" | "tezos" | "aptos" | "polkadot" | "solana" | "cardano" | "dash" | "tron" | "flow" | "mode" | "icon" | "avalanche_p_chain" | "avalanche_x_chain" | "aleo" | "algorand" | "arbitrum" | "avalanche_c_chain" | "b3" | "base" | "berachain" | "binance" | "binance_smart_chain" | "bitcoin" | "bitcoin_cash" | "bitcoin_gold" | "bitcoin_sv" | "blast" | "bytom" | "celestia" | "celo" | "codex" | "concordium" | "dogecoin" | "dydx" | "elastos" | "eos" | "ethereum" | "ethereum_classic" | "fantom" | "filecoin" | "gunzilla" | "hedera" | "hyperliquid" | "internet_computer" | "iost" | "iota" | "klaytn" | "lisk" | "litecoin" | "monad" | "monero" | "elrond" | "near" | "nebulas" | "neo" | "noble" | "oasis" | "omni" | "ontology" | "optimism" | "pai" | "polygon" | "plume" | "qtum" | "ripple" | "ronin" | "sei" | "soneium" | "sonic" | "strk" | "steem" | "stellar" | "sui" | "terra" | "ton" | "unichain" | "worldchain" | "zcash" | "zilliqa" | "zksync" | "zora" | null | undefined;
|
|
293
|
+
accountExternalId?: string | null | undefined;
|
|
294
|
+
accountUuid?: string | null | undefined;
|
|
295
|
+
addressIncomingVolumeUsd?: string | null | undefined;
|
|
296
|
+
addressOutgoingVolumeUsd?: string | null | undefined;
|
|
297
|
+
addressHighestRiskScoreLevel?: number | null | undefined;
|
|
298
|
+
addressHighestRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
299
|
+
addressTotalVolumeUsd?: string | null | undefined;
|
|
300
|
+
trmAppUrl?: string | null | undefined;
|
|
301
|
+
}, {
|
|
302
|
+
entities: {
|
|
303
|
+
entity?: string | null | undefined;
|
|
304
|
+
category?: string | null | undefined;
|
|
305
|
+
categoryId?: string | null | undefined;
|
|
306
|
+
confidenceScoreLabel?: string | null | undefined;
|
|
307
|
+
riskScoreLevel?: number | null | undefined;
|
|
308
|
+
riskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
309
|
+
trmAppUrl?: string | null | undefined;
|
|
310
|
+
trmUrn?: string | null | undefined;
|
|
311
|
+
}[];
|
|
312
|
+
addressRiskIndicators: {
|
|
313
|
+
category?: string | null | undefined;
|
|
314
|
+
categoryId?: string | null | undefined;
|
|
315
|
+
categoryRiskScoreLevel?: number | null | undefined;
|
|
316
|
+
categoryRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
317
|
+
incomingVolumeUsd?: string | null | undefined;
|
|
318
|
+
outgoingVolumeUsd?: string | null | undefined;
|
|
319
|
+
riskType?: "COUNTERPARTY" | "INDIRECT" | "OWNERSHIP" | null | undefined;
|
|
320
|
+
totalVolumeUsd?: string | null | undefined;
|
|
321
|
+
incomingVolumePercent?: string | null | undefined;
|
|
322
|
+
outgoingVolumePercent?: string | null | undefined;
|
|
323
|
+
totalVolumePercent?: string | null | undefined;
|
|
324
|
+
}[];
|
|
325
|
+
addressSubmitted: string;
|
|
326
|
+
address?: string | null | undefined;
|
|
327
|
+
externalId?: string | null | undefined;
|
|
328
|
+
chain?: "ALL" | "cosmos" | "tezos" | "aptos" | "polkadot" | "solana" | "cardano" | "dash" | "tron" | "flow" | "mode" | "icon" | "avalanche_p_chain" | "avalanche_x_chain" | "aleo" | "algorand" | "arbitrum" | "avalanche_c_chain" | "b3" | "base" | "berachain" | "binance" | "binance_smart_chain" | "bitcoin" | "bitcoin_cash" | "bitcoin_gold" | "bitcoin_sv" | "blast" | "bytom" | "celestia" | "celo" | "codex" | "concordium" | "dogecoin" | "dydx" | "elastos" | "eos" | "ethereum" | "ethereum_classic" | "fantom" | "filecoin" | "gunzilla" | "hedera" | "hyperliquid" | "internet_computer" | "iost" | "iota" | "klaytn" | "lisk" | "litecoin" | "monad" | "monero" | "elrond" | "near" | "nebulas" | "neo" | "noble" | "oasis" | "omni" | "ontology" | "optimism" | "pai" | "polygon" | "plume" | "qtum" | "ripple" | "ronin" | "sei" | "soneium" | "sonic" | "strk" | "steem" | "stellar" | "sui" | "terra" | "ton" | "unichain" | "worldchain" | "zcash" | "zilliqa" | "zksync" | "zora" | null | undefined;
|
|
329
|
+
accountExternalId?: string | null | undefined;
|
|
330
|
+
accountUuid?: string | null | undefined;
|
|
331
|
+
addressIncomingVolumeUsd?: string | null | undefined;
|
|
332
|
+
addressOutgoingVolumeUsd?: string | null | undefined;
|
|
333
|
+
addressHighestRiskScoreLevel?: number | null | undefined;
|
|
334
|
+
addressHighestRiskScoreLevelLabel?: "Low" | "Medium" | "High" | "Unknown" | "Severe" | null | undefined;
|
|
335
|
+
addressTotalVolumeUsd?: string | null | undefined;
|
|
336
|
+
trmAppUrl?: string | null | undefined;
|
|
337
|
+
}>, "many">, z.ZodObject<{
|
|
338
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
339
|
+
message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
340
|
+
code: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
341
|
+
className: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
342
|
+
errors: z.ZodOptional<z.ZodNullable<z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>>>;
|
|
343
|
+
}, "strip", z.ZodTypeAny, {
|
|
344
|
+
code?: number | null | undefined;
|
|
345
|
+
message?: string | null | undefined;
|
|
346
|
+
name?: string | null | undefined;
|
|
347
|
+
errors?: {} | null | undefined;
|
|
348
|
+
className?: string | null | undefined;
|
|
349
|
+
}, {
|
|
350
|
+
code?: number | null | undefined;
|
|
351
|
+
message?: string | null | undefined;
|
|
352
|
+
name?: string | null | undefined;
|
|
353
|
+
errors?: {} | null | undefined;
|
|
354
|
+
className?: string | null | undefined;
|
|
355
|
+
}>]>;
|
|
356
|
+
export type AddressesScreeningResponse = z.infer<typeof AddressesScreeningResponse>;
|
|
357
|
+
export {};
|
|
358
|
+
//# sourceMappingURL=trm.schema.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"trm.schema.d.ts","sourceRoot":"../../../../../src/providers/trm-labs","sources":["trm.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AA0FpB,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC;AACH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,oBAAoB,UAAoB,CAAC;AACtD,eAAO,MAAM,0BAA0B,yDAM7B,CAAC;AAUX,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA0C9B,CAAC;AACF,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,QAAA,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGrC,CAAC;AACH,MAAM,MAAM,0BAA0B,GAAG,CAAC,CAAC,KAAK,CAC9C,OAAO,0BAA0B,CAClC,CAAC"}
|