@nexeraid/identity-schemas 2.3.7-dev → 2.3.8-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-37608679.esm.js → customers.schema-071dc023.esm.js} +3 -3
- package/dist/{customers.schema-e40f7e9a.cjs.dev.js → customers.schema-3b610861.cjs.dev.js} +3 -3
- package/dist/{customers.schema-1acdda1a.cjs.prod.js → customers.schema-ce1e5d31.cjs.prod.js} +3 -3
- package/dist/declarations/src/providers/chainalysis/chainalysis.schema.d.ts +15 -15
- package/dist/declarations/src/providers/merkle-science/merkle-science.schema.d.ts +6 -6
- package/dist/declarations/src/webhooks/send-verification-flow-webhook.schema.d.ts +24 -24
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +146 -146
- package/dist/package.json +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 +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +1 -1
|
@@ -1061,7 +1061,7 @@ var ChainalysisRequest = z.object({
|
|
|
1061
1061
|
address: z.string()
|
|
1062
1062
|
});
|
|
1063
1063
|
var ChainalysisRegisterApiResponse = z.object({
|
|
1064
|
-
statusCode: z.number(),
|
|
1064
|
+
statusCode: z.number().nullish(),
|
|
1065
1065
|
address: z.string()
|
|
1066
1066
|
});
|
|
1067
1067
|
var ChainalysisRiskLevel = z["enum"](["Severe", "High", "Medium", "Low"]);
|
|
@@ -1119,7 +1119,7 @@ var ChainalysisRiskAssessmentApiResponse = z.object({
|
|
|
1119
1119
|
poolMetadata: PoolMetadata.nullish()
|
|
1120
1120
|
});
|
|
1121
1121
|
var ChainalysisApiError = z.object({
|
|
1122
|
-
statusCode: z.number(),
|
|
1122
|
+
statusCode: z.number().nullish(),
|
|
1123
1123
|
error: z.object({
|
|
1124
1124
|
error: z.string(),
|
|
1125
1125
|
message: z.string(),
|
|
@@ -1300,7 +1300,7 @@ var DigitalAsset = z.object({
|
|
|
1300
1300
|
symbol: z.string().nullish()
|
|
1301
1301
|
});
|
|
1302
1302
|
var MerkleAddressApiResponse = z.object({
|
|
1303
|
-
statusCode: z.number(),
|
|
1303
|
+
statusCode: z.number().nullish(),
|
|
1304
1304
|
identifier: z.string().nullish(),
|
|
1305
1305
|
blockchain: BlockChainNumericalCodes.nullish(),
|
|
1306
1306
|
blockchain_verbose: MerkleBlockChainNamesExtended.nullish(),
|
|
@@ -1063,7 +1063,7 @@ var ChainalysisRequest = zod.z.object({
|
|
|
1063
1063
|
address: zod.z.string()
|
|
1064
1064
|
});
|
|
1065
1065
|
var ChainalysisRegisterApiResponse = zod.z.object({
|
|
1066
|
-
statusCode: zod.z.number(),
|
|
1066
|
+
statusCode: zod.z.number().nullish(),
|
|
1067
1067
|
address: zod.z.string()
|
|
1068
1068
|
});
|
|
1069
1069
|
var ChainalysisRiskLevel = zod.z["enum"](["Severe", "High", "Medium", "Low"]);
|
|
@@ -1121,7 +1121,7 @@ var ChainalysisRiskAssessmentApiResponse = zod.z.object({
|
|
|
1121
1121
|
poolMetadata: PoolMetadata.nullish()
|
|
1122
1122
|
});
|
|
1123
1123
|
var ChainalysisApiError = zod.z.object({
|
|
1124
|
-
statusCode: zod.z.number(),
|
|
1124
|
+
statusCode: zod.z.number().nullish(),
|
|
1125
1125
|
error: zod.z.object({
|
|
1126
1126
|
error: zod.z.string(),
|
|
1127
1127
|
message: zod.z.string(),
|
|
@@ -1302,7 +1302,7 @@ var DigitalAsset = zod.z.object({
|
|
|
1302
1302
|
symbol: zod.z.string().nullish()
|
|
1303
1303
|
});
|
|
1304
1304
|
var MerkleAddressApiResponse = zod.z.object({
|
|
1305
|
-
statusCode: zod.z.number(),
|
|
1305
|
+
statusCode: zod.z.number().nullish(),
|
|
1306
1306
|
identifier: zod.z.string().nullish(),
|
|
1307
1307
|
blockchain: BlockChainNumericalCodes.nullish(),
|
|
1308
1308
|
blockchain_verbose: MerkleBlockChainNamesExtended.nullish(),
|
package/dist/{customers.schema-1acdda1a.cjs.prod.js → customers.schema-ce1e5d31.cjs.prod.js}
RENAMED
|
@@ -1063,7 +1063,7 @@ var ChainalysisRequest = zod.z.object({
|
|
|
1063
1063
|
address: zod.z.string()
|
|
1064
1064
|
});
|
|
1065
1065
|
var ChainalysisRegisterApiResponse = zod.z.object({
|
|
1066
|
-
statusCode: zod.z.number(),
|
|
1066
|
+
statusCode: zod.z.number().nullish(),
|
|
1067
1067
|
address: zod.z.string()
|
|
1068
1068
|
});
|
|
1069
1069
|
var ChainalysisRiskLevel = zod.z["enum"](["Severe", "High", "Medium", "Low"]);
|
|
@@ -1121,7 +1121,7 @@ var ChainalysisRiskAssessmentApiResponse = zod.z.object({
|
|
|
1121
1121
|
poolMetadata: PoolMetadata.nullish()
|
|
1122
1122
|
});
|
|
1123
1123
|
var ChainalysisApiError = zod.z.object({
|
|
1124
|
-
statusCode: zod.z.number(),
|
|
1124
|
+
statusCode: zod.z.number().nullish(),
|
|
1125
1125
|
error: zod.z.object({
|
|
1126
1126
|
error: zod.z.string(),
|
|
1127
1127
|
message: zod.z.string(),
|
|
@@ -1302,7 +1302,7 @@ var DigitalAsset = zod.z.object({
|
|
|
1302
1302
|
symbol: zod.z.string().nullish()
|
|
1303
1303
|
});
|
|
1304
1304
|
var MerkleAddressApiResponse = zod.z.object({
|
|
1305
|
-
statusCode: zod.z.number(),
|
|
1305
|
+
statusCode: zod.z.number().nullish(),
|
|
1306
1306
|
identifier: zod.z.string().nullish(),
|
|
1307
1307
|
blockchain: BlockChainNumericalCodes.nullish(),
|
|
1308
1308
|
blockchain_verbose: MerkleBlockChainNamesExtended.nullish(),
|
|
@@ -8,14 +8,14 @@ export declare const ChainalysisRequest: z.ZodObject<{
|
|
|
8
8
|
}>;
|
|
9
9
|
export type ChainalysisRequest = z.infer<typeof ChainalysisRequest>;
|
|
10
10
|
export declare const ChainalysisRegisterApiResponse: z.ZodObject<{
|
|
11
|
-
statusCode: z.ZodNumber
|
|
11
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12
12
|
address: z.ZodString;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
14
|
address: string;
|
|
15
|
-
statusCode
|
|
15
|
+
statusCode?: number | null | undefined;
|
|
16
16
|
}, {
|
|
17
17
|
address: string;
|
|
18
|
-
statusCode
|
|
18
|
+
statusCode?: number | null | undefined;
|
|
19
19
|
}>;
|
|
20
20
|
export type ChainalysisRegisterApiResponse = z.infer<typeof ChainalysisRegisterApiResponse>;
|
|
21
21
|
export declare const ChainalysisRiskLevel: z.ZodEnum<["Severe", "High", "Medium", "Low"]>;
|
|
@@ -213,7 +213,7 @@ export declare const ChainalysisRiskAssessmentApiResponse: z.ZodObject<{
|
|
|
213
213
|
} | null | undefined;
|
|
214
214
|
}>;
|
|
215
215
|
export declare const ChainalysisApiError: z.ZodObject<{
|
|
216
|
-
statusCode: z.ZodNumber
|
|
216
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
217
217
|
error: z.ZodObject<{
|
|
218
218
|
error: z.ZodString;
|
|
219
219
|
message: z.ZodString;
|
|
@@ -233,27 +233,27 @@ export declare const ChainalysisApiError: z.ZodObject<{
|
|
|
233
233
|
error: string;
|
|
234
234
|
data?: string | null | undefined;
|
|
235
235
|
};
|
|
236
|
-
statusCode
|
|
236
|
+
statusCode?: number | null | undefined;
|
|
237
237
|
}, {
|
|
238
238
|
error: {
|
|
239
239
|
message: string;
|
|
240
240
|
error: string;
|
|
241
241
|
data?: string | null | undefined;
|
|
242
242
|
};
|
|
243
|
-
statusCode
|
|
243
|
+
statusCode?: number | null | undefined;
|
|
244
244
|
}>;
|
|
245
245
|
export type ChainalysisApiErrorType = z.infer<typeof ChainalysisApiError>;
|
|
246
246
|
export declare const ChainalysisRegisterResponse: z.ZodUnion<[z.ZodObject<{
|
|
247
|
-
statusCode: z.ZodNumber
|
|
247
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
248
248
|
address: z.ZodString;
|
|
249
249
|
}, "strip", z.ZodTypeAny, {
|
|
250
250
|
address: string;
|
|
251
|
-
statusCode
|
|
251
|
+
statusCode?: number | null | undefined;
|
|
252
252
|
}, {
|
|
253
253
|
address: string;
|
|
254
|
-
statusCode
|
|
254
|
+
statusCode?: number | null | undefined;
|
|
255
255
|
}>, z.ZodObject<{
|
|
256
|
-
statusCode: z.ZodNumber
|
|
256
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
257
257
|
error: z.ZodObject<{
|
|
258
258
|
error: z.ZodString;
|
|
259
259
|
message: z.ZodString;
|
|
@@ -273,14 +273,14 @@ export declare const ChainalysisRegisterResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
273
273
|
error: string;
|
|
274
274
|
data?: string | null | undefined;
|
|
275
275
|
};
|
|
276
|
-
statusCode
|
|
276
|
+
statusCode?: number | null | undefined;
|
|
277
277
|
}, {
|
|
278
278
|
error: {
|
|
279
279
|
message: string;
|
|
280
280
|
error: string;
|
|
281
281
|
data?: string | null | undefined;
|
|
282
282
|
};
|
|
283
|
-
statusCode
|
|
283
|
+
statusCode?: number | null | undefined;
|
|
284
284
|
}>]>;
|
|
285
285
|
export type ChainalysisRegisterResponse = z.infer<typeof ChainalysisRegisterResponse>;
|
|
286
286
|
export declare const ChainalysisRiskAssessmentResponse: z.ZodUnion<[z.ZodObject<{
|
|
@@ -474,7 +474,7 @@ export declare const ChainalysisRiskAssessmentResponse: z.ZodUnion<[z.ZodObject<
|
|
|
474
474
|
fees?: number | null | undefined;
|
|
475
475
|
} | null | undefined;
|
|
476
476
|
}>, z.ZodObject<{
|
|
477
|
-
statusCode: z.ZodNumber
|
|
477
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
478
478
|
error: z.ZodObject<{
|
|
479
479
|
error: z.ZodString;
|
|
480
480
|
message: z.ZodString;
|
|
@@ -494,14 +494,14 @@ export declare const ChainalysisRiskAssessmentResponse: z.ZodUnion<[z.ZodObject<
|
|
|
494
494
|
error: string;
|
|
495
495
|
data?: string | null | undefined;
|
|
496
496
|
};
|
|
497
|
-
statusCode
|
|
497
|
+
statusCode?: number | null | undefined;
|
|
498
498
|
}, {
|
|
499
499
|
error: {
|
|
500
500
|
message: string;
|
|
501
501
|
error: string;
|
|
502
502
|
data?: string | null | undefined;
|
|
503
503
|
};
|
|
504
|
-
statusCode
|
|
504
|
+
statusCode?: number | null | undefined;
|
|
505
505
|
}>]>;
|
|
506
506
|
export type ChainalysisRiskAssessmentResponse = z.infer<typeof ChainalysisRiskAssessmentResponse>;
|
|
507
507
|
//# sourceMappingURL=chainalysis.schema.d.ts.map
|
|
@@ -159,7 +159,7 @@ export declare const MerkleAddressRequest: z.ZodObject<{
|
|
|
159
159
|
}>;
|
|
160
160
|
export type MerkleAddressRequest = z.infer<typeof MerkleAddressRequest>;
|
|
161
161
|
export declare const MerkleAddressApiResponse: z.ZodObject<{
|
|
162
|
-
statusCode: z.ZodNumber
|
|
162
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
163
163
|
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
164
164
|
blockchain: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
165
165
|
blockchain_verbose: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Bitcoin", "Ethereum", "Litecoin", "BitcoinCash", "Ripple", "Dogecoin", "Zilliqa", "BinanceSmartChain", "Polygon", "Tron", "Cardano", "Polkadot", "Stellar", "Hedera", "Cronos", "Optimism", "Arbitrum", "Fantom", "Monero", "Cosmos", "Zcash", "EthereumClassic", "Dash", "Solana", "AvalancheC_Chain", "Verge", "BitcoinGold", "Algorand", "Acala", "Akash", "Arweave", "Ardor", "Ark", "Astar", "Band", "BinanceNative", "Celo", "Chiliz", "Nervos", "CronosNative", "Digibyte", "Multiversx", "Enjin", "Eos", "EthereumPow", "FetchAI", "Filecoin", "Flow", "Flare", "Moonbeam", "Helium", "ICP", "Icon", "Injective", "IOTA", "IoTex", "Iris", "Kava", "Kadena", "Klaytn", "Komodo", "Kusama", "Lisk", "Terra", "Mina", "Moonriver", "Nano", "Near", "Neo3", "Oasys", "One", "Ontology", "Osmosis", "Polymesh", "QTUM", "Oasis", "Thorchain", "Ravencoin", "Siacoin", "Shiden", "Songbird", "Stratis", "Stacks", "SUI", "zkSync", "Theta", "Tomo", "VeChain", "Waves", "Wax", "WEMIX", "WaltonChain", "Chia", "Tezos", "Zcoin", "Celestia", "Neutron", "Avalanche_P", "Sei", "Avalanche_X", "Aztec", "Bittensor", "Casper", "Deso", "Juno", "PocketNetwork", "Ronin", "Vara", "XPLA", "Archway", "Axelar", "Dymension", "Starknet", "Orai", "Lukso", "bitsCrunch", "Reef", "ImmutablezkEVM", "BaseProtocol", "ArbitrumNova", "Canto", "MetisDAO", "Aptos", "Bitcoin Cash", "Binance Smart Chain", "Ethereum Classic", "Avalanche C-Chain", "Bitcoin Gold", "Binance Native", "Cronos Native", "Ethereum Pow", "Fetch AI", "Avalanche-P", "Avalanche-X", "Pocket Network", "Immutable zkEVM", "Base Protocol", "Arbitrum Nova"]>>>;
|
|
@@ -259,9 +259,9 @@ export declare const MerkleAddressApiResponse: z.ZodObject<{
|
|
|
259
259
|
name?: string | null | undefined;
|
|
260
260
|
}>, "many">>>;
|
|
261
261
|
}, "strip", z.ZodTypeAny, {
|
|
262
|
-
statusCode: number;
|
|
263
262
|
type?: number | null | undefined;
|
|
264
263
|
identifier?: string | null | undefined;
|
|
264
|
+
statusCode?: number | null | undefined;
|
|
265
265
|
balance?: number | null | undefined;
|
|
266
266
|
blockchain?: number | null | undefined;
|
|
267
267
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -303,9 +303,9 @@ export declare const MerkleAddressApiResponse: z.ZodObject<{
|
|
|
303
303
|
name?: string | null | undefined;
|
|
304
304
|
}[] | null | undefined;
|
|
305
305
|
}, {
|
|
306
|
-
statusCode: number;
|
|
307
306
|
type?: number | null | undefined;
|
|
308
307
|
identifier?: string | null | undefined;
|
|
308
|
+
statusCode?: number | null | undefined;
|
|
309
309
|
balance?: number | null | undefined;
|
|
310
310
|
blockchain?: number | null | undefined;
|
|
311
311
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -384,7 +384,7 @@ export declare const MerkleAddressApiError: z.ZodObject<{
|
|
|
384
384
|
risk_level_verbose?: "Medium" | "High" | "No Risk Detected" | "Info" | "Caution" | "Critical" | null | undefined;
|
|
385
385
|
}>;
|
|
386
386
|
export declare const MerkleAddressResponse: z.ZodUnion<[z.ZodObject<{
|
|
387
|
-
statusCode: z.ZodNumber
|
|
387
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
388
388
|
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
389
389
|
blockchain: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
390
390
|
blockchain_verbose: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Bitcoin", "Ethereum", "Litecoin", "BitcoinCash", "Ripple", "Dogecoin", "Zilliqa", "BinanceSmartChain", "Polygon", "Tron", "Cardano", "Polkadot", "Stellar", "Hedera", "Cronos", "Optimism", "Arbitrum", "Fantom", "Monero", "Cosmos", "Zcash", "EthereumClassic", "Dash", "Solana", "AvalancheC_Chain", "Verge", "BitcoinGold", "Algorand", "Acala", "Akash", "Arweave", "Ardor", "Ark", "Astar", "Band", "BinanceNative", "Celo", "Chiliz", "Nervos", "CronosNative", "Digibyte", "Multiversx", "Enjin", "Eos", "EthereumPow", "FetchAI", "Filecoin", "Flow", "Flare", "Moonbeam", "Helium", "ICP", "Icon", "Injective", "IOTA", "IoTex", "Iris", "Kava", "Kadena", "Klaytn", "Komodo", "Kusama", "Lisk", "Terra", "Mina", "Moonriver", "Nano", "Near", "Neo3", "Oasys", "One", "Ontology", "Osmosis", "Polymesh", "QTUM", "Oasis", "Thorchain", "Ravencoin", "Siacoin", "Shiden", "Songbird", "Stratis", "Stacks", "SUI", "zkSync", "Theta", "Tomo", "VeChain", "Waves", "Wax", "WEMIX", "WaltonChain", "Chia", "Tezos", "Zcoin", "Celestia", "Neutron", "Avalanche_P", "Sei", "Avalanche_X", "Aztec", "Bittensor", "Casper", "Deso", "Juno", "PocketNetwork", "Ronin", "Vara", "XPLA", "Archway", "Axelar", "Dymension", "Starknet", "Orai", "Lukso", "bitsCrunch", "Reef", "ImmutablezkEVM", "BaseProtocol", "ArbitrumNova", "Canto", "MetisDAO", "Aptos", "Bitcoin Cash", "Binance Smart Chain", "Ethereum Classic", "Avalanche C-Chain", "Bitcoin Gold", "Binance Native", "Cronos Native", "Ethereum Pow", "Fetch AI", "Avalanche-P", "Avalanche-X", "Pocket Network", "Immutable zkEVM", "Base Protocol", "Arbitrum Nova"]>>>;
|
|
@@ -484,9 +484,9 @@ export declare const MerkleAddressResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
484
484
|
name?: string | null | undefined;
|
|
485
485
|
}>, "many">>>;
|
|
486
486
|
}, "strip", z.ZodTypeAny, {
|
|
487
|
-
statusCode: number;
|
|
488
487
|
type?: number | null | undefined;
|
|
489
488
|
identifier?: string | null | undefined;
|
|
489
|
+
statusCode?: number | null | undefined;
|
|
490
490
|
balance?: number | null | undefined;
|
|
491
491
|
blockchain?: number | null | undefined;
|
|
492
492
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -528,9 +528,9 @@ export declare const MerkleAddressResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
528
528
|
name?: string | null | undefined;
|
|
529
529
|
}[] | null | undefined;
|
|
530
530
|
}, {
|
|
531
|
-
statusCode: number;
|
|
532
531
|
type?: number | null | undefined;
|
|
533
532
|
identifier?: string | null | undefined;
|
|
533
|
+
statusCode?: number | null | undefined;
|
|
534
534
|
balance?: number | null | undefined;
|
|
535
535
|
blockchain?: number | null | undefined;
|
|
536
536
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -3362,7 +3362,7 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3362
3362
|
}>, z.ZodObject<{
|
|
3363
3363
|
type: z.ZodEnum<["merkleScience"]>;
|
|
3364
3364
|
data: z.ZodUnion<[z.ZodObject<{
|
|
3365
|
-
statusCode: z.ZodNumber
|
|
3365
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3366
3366
|
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3367
3367
|
blockchain: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
3368
3368
|
blockchain_verbose: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Bitcoin", "Ethereum", "Litecoin", "BitcoinCash", "Ripple", "Dogecoin", "Zilliqa", "BinanceSmartChain", "Polygon", "Tron", "Cardano", "Polkadot", "Stellar", "Hedera", "Cronos", "Optimism", "Arbitrum", "Fantom", "Monero", "Cosmos", "Zcash", "EthereumClassic", "Dash", "Solana", "AvalancheC_Chain", "Verge", "BitcoinGold", "Algorand", "Acala", "Akash", "Arweave", "Ardor", "Ark", "Astar", "Band", "BinanceNative", "Celo", "Chiliz", "Nervos", "CronosNative", "Digibyte", "Multiversx", "Enjin", "Eos", "EthereumPow", "FetchAI", "Filecoin", "Flow", "Flare", "Moonbeam", "Helium", "ICP", "Icon", "Injective", "IOTA", "IoTex", "Iris", "Kava", "Kadena", "Klaytn", "Komodo", "Kusama", "Lisk", "Terra", "Mina", "Moonriver", "Nano", "Near", "Neo3", "Oasys", "One", "Ontology", "Osmosis", "Polymesh", "QTUM", "Oasis", "Thorchain", "Ravencoin", "Siacoin", "Shiden", "Songbird", "Stratis", "Stacks", "SUI", "zkSync", "Theta", "Tomo", "VeChain", "Waves", "Wax", "WEMIX", "WaltonChain", "Chia", "Tezos", "Zcoin", "Celestia", "Neutron", "Avalanche_P", "Sei", "Avalanche_X", "Aztec", "Bittensor", "Casper", "Deso", "Juno", "PocketNetwork", "Ronin", "Vara", "XPLA", "Archway", "Axelar", "Dymension", "Starknet", "Orai", "Lukso", "bitsCrunch", "Reef", "ImmutablezkEVM", "BaseProtocol", "ArbitrumNova", "Canto", "MetisDAO", "Aptos", "Bitcoin Cash", "Binance Smart Chain", "Ethereum Classic", "Avalanche C-Chain", "Bitcoin Gold", "Binance Native", "Cronos Native", "Ethereum Pow", "Fetch AI", "Avalanche-P", "Avalanche-X", "Pocket Network", "Immutable zkEVM", "Base Protocol", "Arbitrum Nova"]>>>;
|
|
@@ -3462,9 +3462,9 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3462
3462
|
name?: string | null | undefined;
|
|
3463
3463
|
}>, "many">>>;
|
|
3464
3464
|
}, "strip", z.ZodTypeAny, {
|
|
3465
|
-
statusCode: number;
|
|
3466
3465
|
type?: number | null | undefined;
|
|
3467
3466
|
identifier?: string | null | undefined;
|
|
3467
|
+
statusCode?: number | null | undefined;
|
|
3468
3468
|
balance?: number | null | undefined;
|
|
3469
3469
|
blockchain?: number | null | undefined;
|
|
3470
3470
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -3506,9 +3506,9 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3506
3506
|
name?: string | null | undefined;
|
|
3507
3507
|
}[] | null | undefined;
|
|
3508
3508
|
}, {
|
|
3509
|
-
statusCode: number;
|
|
3510
3509
|
type?: number | null | undefined;
|
|
3511
3510
|
identifier?: string | null | undefined;
|
|
3511
|
+
statusCode?: number | null | undefined;
|
|
3512
3512
|
balance?: number | null | undefined;
|
|
3513
3513
|
blockchain?: number | null | undefined;
|
|
3514
3514
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -3588,9 +3588,9 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3588
3588
|
}, "strip", z.ZodTypeAny, {
|
|
3589
3589
|
type: "merkleScience";
|
|
3590
3590
|
data: {
|
|
3591
|
-
statusCode: number;
|
|
3592
3591
|
type?: number | null | undefined;
|
|
3593
3592
|
identifier?: string | null | undefined;
|
|
3593
|
+
statusCode?: number | null | undefined;
|
|
3594
3594
|
balance?: number | null | undefined;
|
|
3595
3595
|
blockchain?: number | null | undefined;
|
|
3596
3596
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -3644,9 +3644,9 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3644
3644
|
}, {
|
|
3645
3645
|
type: "merkleScience";
|
|
3646
3646
|
data: {
|
|
3647
|
-
statusCode: number;
|
|
3648
3647
|
type?: number | null | undefined;
|
|
3649
3648
|
identifier?: string | null | undefined;
|
|
3649
|
+
statusCode?: number | null | undefined;
|
|
3650
3650
|
balance?: number | null | undefined;
|
|
3651
3651
|
blockchain?: number | null | undefined;
|
|
3652
3652
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -3890,7 +3890,7 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3890
3890
|
fees?: number | null | undefined;
|
|
3891
3891
|
} | null | undefined;
|
|
3892
3892
|
}>, z.ZodObject<{
|
|
3893
|
-
statusCode: z.ZodNumber
|
|
3893
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3894
3894
|
error: z.ZodObject<{
|
|
3895
3895
|
error: z.ZodString;
|
|
3896
3896
|
message: z.ZodString;
|
|
@@ -3910,14 +3910,14 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3910
3910
|
error: string;
|
|
3911
3911
|
data?: string | null | undefined;
|
|
3912
3912
|
};
|
|
3913
|
-
statusCode
|
|
3913
|
+
statusCode?: number | null | undefined;
|
|
3914
3914
|
}, {
|
|
3915
3915
|
error: {
|
|
3916
3916
|
message: string;
|
|
3917
3917
|
error: string;
|
|
3918
3918
|
data?: string | null | undefined;
|
|
3919
3919
|
};
|
|
3920
|
-
statusCode
|
|
3920
|
+
statusCode?: number | null | undefined;
|
|
3921
3921
|
}>]>;
|
|
3922
3922
|
}, "strip", z.ZodTypeAny, {
|
|
3923
3923
|
type: "chainalysis";
|
|
@@ -3967,7 +3967,7 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
3967
3967
|
error: string;
|
|
3968
3968
|
data?: string | null | undefined;
|
|
3969
3969
|
};
|
|
3970
|
-
statusCode
|
|
3970
|
+
statusCode?: number | null | undefined;
|
|
3971
3971
|
};
|
|
3972
3972
|
}, {
|
|
3973
3973
|
type: "chainalysis";
|
|
@@ -4017,7 +4017,7 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
|
|
|
4017
4017
|
error: string;
|
|
4018
4018
|
data?: string | null | undefined;
|
|
4019
4019
|
};
|
|
4020
|
-
statusCode
|
|
4020
|
+
statusCode?: number | null | undefined;
|
|
4021
4021
|
};
|
|
4022
4022
|
}>, z.ZodObject<{
|
|
4023
4023
|
type: z.ZodEnum<["integratedIpqualityscore", "ipQualityScore"]>;
|
|
@@ -9379,7 +9379,7 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9379
9379
|
}>, z.ZodObject<{
|
|
9380
9380
|
type: z.ZodEnum<["merkleScience"]>;
|
|
9381
9381
|
data: z.ZodUnion<[z.ZodObject<{
|
|
9382
|
-
statusCode: z.ZodNumber
|
|
9382
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
9383
9383
|
identifier: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
9384
9384
|
blockchain: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
9385
9385
|
blockchain_verbose: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Bitcoin", "Ethereum", "Litecoin", "BitcoinCash", "Ripple", "Dogecoin", "Zilliqa", "BinanceSmartChain", "Polygon", "Tron", "Cardano", "Polkadot", "Stellar", "Hedera", "Cronos", "Optimism", "Arbitrum", "Fantom", "Monero", "Cosmos", "Zcash", "EthereumClassic", "Dash", "Solana", "AvalancheC_Chain", "Verge", "BitcoinGold", "Algorand", "Acala", "Akash", "Arweave", "Ardor", "Ark", "Astar", "Band", "BinanceNative", "Celo", "Chiliz", "Nervos", "CronosNative", "Digibyte", "Multiversx", "Enjin", "Eos", "EthereumPow", "FetchAI", "Filecoin", "Flow", "Flare", "Moonbeam", "Helium", "ICP", "Icon", "Injective", "IOTA", "IoTex", "Iris", "Kava", "Kadena", "Klaytn", "Komodo", "Kusama", "Lisk", "Terra", "Mina", "Moonriver", "Nano", "Near", "Neo3", "Oasys", "One", "Ontology", "Osmosis", "Polymesh", "QTUM", "Oasis", "Thorchain", "Ravencoin", "Siacoin", "Shiden", "Songbird", "Stratis", "Stacks", "SUI", "zkSync", "Theta", "Tomo", "VeChain", "Waves", "Wax", "WEMIX", "WaltonChain", "Chia", "Tezos", "Zcoin", "Celestia", "Neutron", "Avalanche_P", "Sei", "Avalanche_X", "Aztec", "Bittensor", "Casper", "Deso", "Juno", "PocketNetwork", "Ronin", "Vara", "XPLA", "Archway", "Axelar", "Dymension", "Starknet", "Orai", "Lukso", "bitsCrunch", "Reef", "ImmutablezkEVM", "BaseProtocol", "ArbitrumNova", "Canto", "MetisDAO", "Aptos", "Bitcoin Cash", "Binance Smart Chain", "Ethereum Classic", "Avalanche C-Chain", "Bitcoin Gold", "Binance Native", "Cronos Native", "Ethereum Pow", "Fetch AI", "Avalanche-P", "Avalanche-X", "Pocket Network", "Immutable zkEVM", "Base Protocol", "Arbitrum Nova"]>>>;
|
|
@@ -9479,9 +9479,9 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9479
9479
|
name?: string | null | undefined;
|
|
9480
9480
|
}>, "many">>>;
|
|
9481
9481
|
}, "strip", z.ZodTypeAny, {
|
|
9482
|
-
statusCode: number;
|
|
9483
9482
|
type?: number | null | undefined;
|
|
9484
9483
|
identifier?: string | null | undefined;
|
|
9484
|
+
statusCode?: number | null | undefined;
|
|
9485
9485
|
balance?: number | null | undefined;
|
|
9486
9486
|
blockchain?: number | null | undefined;
|
|
9487
9487
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -9523,9 +9523,9 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9523
9523
|
name?: string | null | undefined;
|
|
9524
9524
|
}[] | null | undefined;
|
|
9525
9525
|
}, {
|
|
9526
|
-
statusCode: number;
|
|
9527
9526
|
type?: number | null | undefined;
|
|
9528
9527
|
identifier?: string | null | undefined;
|
|
9528
|
+
statusCode?: number | null | undefined;
|
|
9529
9529
|
balance?: number | null | undefined;
|
|
9530
9530
|
blockchain?: number | null | undefined;
|
|
9531
9531
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -9605,9 +9605,9 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9605
9605
|
}, "strip", z.ZodTypeAny, {
|
|
9606
9606
|
type: "merkleScience";
|
|
9607
9607
|
data: {
|
|
9608
|
-
statusCode: number;
|
|
9609
9608
|
type?: number | null | undefined;
|
|
9610
9609
|
identifier?: string | null | undefined;
|
|
9610
|
+
statusCode?: number | null | undefined;
|
|
9611
9611
|
balance?: number | null | undefined;
|
|
9612
9612
|
blockchain?: number | null | undefined;
|
|
9613
9613
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -9661,9 +9661,9 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9661
9661
|
}, {
|
|
9662
9662
|
type: "merkleScience";
|
|
9663
9663
|
data: {
|
|
9664
|
-
statusCode: number;
|
|
9665
9664
|
type?: number | null | undefined;
|
|
9666
9665
|
identifier?: string | null | undefined;
|
|
9666
|
+
statusCode?: number | null | undefined;
|
|
9667
9667
|
balance?: number | null | undefined;
|
|
9668
9668
|
blockchain?: number | null | undefined;
|
|
9669
9669
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -9907,7 +9907,7 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9907
9907
|
fees?: number | null | undefined;
|
|
9908
9908
|
} | null | undefined;
|
|
9909
9909
|
}>, z.ZodObject<{
|
|
9910
|
-
statusCode: z.ZodNumber
|
|
9910
|
+
statusCode: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
9911
9911
|
error: z.ZodObject<{
|
|
9912
9912
|
error: z.ZodString;
|
|
9913
9913
|
message: z.ZodString;
|
|
@@ -9927,14 +9927,14 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9927
9927
|
error: string;
|
|
9928
9928
|
data?: string | null | undefined;
|
|
9929
9929
|
};
|
|
9930
|
-
statusCode
|
|
9930
|
+
statusCode?: number | null | undefined;
|
|
9931
9931
|
}, {
|
|
9932
9932
|
error: {
|
|
9933
9933
|
message: string;
|
|
9934
9934
|
error: string;
|
|
9935
9935
|
data?: string | null | undefined;
|
|
9936
9936
|
};
|
|
9937
|
-
statusCode
|
|
9937
|
+
statusCode?: number | null | undefined;
|
|
9938
9938
|
}>]>;
|
|
9939
9939
|
}, "strip", z.ZodTypeAny, {
|
|
9940
9940
|
type: "chainalysis";
|
|
@@ -9984,7 +9984,7 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
9984
9984
|
error: string;
|
|
9985
9985
|
data?: string | null | undefined;
|
|
9986
9986
|
};
|
|
9987
|
-
statusCode
|
|
9987
|
+
statusCode?: number | null | undefined;
|
|
9988
9988
|
};
|
|
9989
9989
|
}, {
|
|
9990
9990
|
type: "chainalysis";
|
|
@@ -10034,7 +10034,7 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
10034
10034
|
error: string;
|
|
10035
10035
|
data?: string | null | undefined;
|
|
10036
10036
|
};
|
|
10037
|
-
statusCode
|
|
10037
|
+
statusCode?: number | null | undefined;
|
|
10038
10038
|
};
|
|
10039
10039
|
}>, z.ZodObject<{
|
|
10040
10040
|
type: z.ZodEnum<["integratedIpqualityscore", "ipQualityScore"]>;
|
|
@@ -12357,9 +12357,9 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
12357
12357
|
} | {
|
|
12358
12358
|
type: "merkleScience";
|
|
12359
12359
|
data: {
|
|
12360
|
-
statusCode: number;
|
|
12361
12360
|
type?: number | null | undefined;
|
|
12362
12361
|
identifier?: string | null | undefined;
|
|
12362
|
+
statusCode?: number | null | undefined;
|
|
12363
12363
|
balance?: number | null | undefined;
|
|
12364
12364
|
blockchain?: number | null | undefined;
|
|
12365
12365
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -12458,7 +12458,7 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
12458
12458
|
error: string;
|
|
12459
12459
|
data?: string | null | undefined;
|
|
12460
12460
|
};
|
|
12461
|
-
statusCode
|
|
12461
|
+
statusCode?: number | null | undefined;
|
|
12462
12462
|
};
|
|
12463
12463
|
} | {
|
|
12464
12464
|
type: "ipQualityScore" | "integratedIpqualityscore";
|
|
@@ -13021,9 +13021,9 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
13021
13021
|
} | {
|
|
13022
13022
|
type: "merkleScience";
|
|
13023
13023
|
data: {
|
|
13024
|
-
statusCode: number;
|
|
13025
13024
|
type?: number | null | undefined;
|
|
13026
13025
|
identifier?: string | null | undefined;
|
|
13026
|
+
statusCode?: number | null | undefined;
|
|
13027
13027
|
balance?: number | null | undefined;
|
|
13028
13028
|
blockchain?: number | null | undefined;
|
|
13029
13029
|
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "Bitcoin" | "Ethereum" | "Litecoin" | "BitcoinCash" | "Ripple" | "Dogecoin" | "Zilliqa" | "BinanceSmartChain" | "Tron" | "Stellar" | "Hedera" | "Cronos" | "Fantom" | "Monero" | "Zcash" | "EthereumClassic" | "Dash" | "AvalancheC_Chain" | "Verge" | "BitcoinGold" | "Algorand" | "Acala" | "Akash" | "Arweave" | "Ardor" | "Ark" | "Astar" | "Band" | "BinanceNative" | "Celo" | "Chiliz" | "Nervos" | "CronosNative" | "Digibyte" | "Multiversx" | "Enjin" | "Eos" | "EthereumPow" | "FetchAI" | "Filecoin" | "Flow" | "Flare" | "Helium" | "ICP" | "Icon" | "Injective" | "IOTA" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "QTUM" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WEMIX" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "XPLA" | "Archway" | "Axelar" | "Dymension" | "Orai" | "Lukso" | "bitsCrunch" | "Reef" | "ImmutablezkEVM" | "BaseProtocol" | "ArbitrumNova" | "Canto" | "MetisDAO" | "Bitcoin Cash" | "Binance Smart Chain" | "Ethereum Classic" | "Avalanche C-Chain" | "Bitcoin Gold" | "Binance Native" | "Cronos Native" | "Ethereum Pow" | "Fetch AI" | "Avalanche-P" | "Avalanche-X" | "Pocket Network" | "Immutable zkEVM" | "Base Protocol" | "Arbitrum Nova" | null | undefined;
|
|
@@ -13122,7 +13122,7 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
|
|
|
13122
13122
|
error: string;
|
|
13123
13123
|
data?: string | null | undefined;
|
|
13124
13124
|
};
|
|
13125
|
-
statusCode
|
|
13125
|
+
statusCode?: number | null | undefined;
|
|
13126
13126
|
};
|
|
13127
13127
|
} | {
|
|
13128
13128
|
type: "ipQualityScore" | "integratedIpqualityscore";
|