Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nexeraid/identity-schemas

Package Overview
Dependencies
Maintainers
0
Versions
188
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexeraid/identity-schemas - npm Package Compare versions

Comparing version 2.16.0-staging to 2.17.0-dev

dist/customers.schema-25421d59.cjs.prod.js

121

dist/declarations/src/config.schema.d.ts
import { z } from "zod";
/**
* EIP155
*/
export declare const isValidAddress: (address: string) => boolean;
export declare const String0x: z.ZodEffects<z.ZodString, string, string>;
export type String0x = z.infer<typeof String0x>;
export type TxData = PrivateKey;
export declare const PrivateKey: z.ZodEffects<z.ZodString, string, string>;
export type PrivateKey = String0x;
export declare const PublicKey: z.ZodString;
export type PublicKey = z.infer<typeof PublicKey>;
/**
* Note: it might be nice to use String0x as the base object instead of z.string(),
* but this causes update-api to fail with the following error:
* TRPCError: [query.kyc.sumsub.getJourneyData] -
* Input parser key: "userAddress" must be ZodString, ZodNumber, ZodBoolean, ZodBigInt or ZodDate
*/
export declare const AddressSchema: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
export type Address = z.infer<typeof AddressSchema>;
export declare const TxHash: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
export type TxHash = z.infer<typeof TxHash>;
export declare const EIP155Signature: z.ZodEffects<z.ZodString, string, string>;
export type EIP155Signature = String0x;
export declare const FunctionCallData: z.ZodEffects<z.ZodString, string, string>;
export type FunctionCallData = String0x;
export declare const shortAddress: (address: BlockchainAddress) => BlockchainAddress;
/**
* Aptos
*/
export declare const AptosAddress: z.ZodEffects<z.ZodString, string, string>;
export type AptosAddress = z.infer<typeof AptosAddress>;
export declare const AptosSignature: z.ZodString;
export type AptosSignature = z.infer<typeof AptosSignature>;
/**
* Starknet
*/
export declare const StarknetAddress: z.ZodEffects<z.ZodString, string, string>;
export type StarknetAddress = z.infer<typeof StarknetAddress>;
export declare const StarknetSignature: z.ZodEffects<z.ZodString, string, string>;
export type StarknetSignature = z.infer<typeof StarknetSignature>;
/**
* Polkadot
*/
export declare const PolkadotAddress: z.ZodString;
export type PolkadotAddress = z.infer<typeof PolkadotAddress>;
export declare const PolkadotSignature: z.ZodEffects<z.ZodString, string, string>;
export type PolkadotSignature = z.infer<typeof PolkadotSignature>;
/**
* Cosmos
*/
export declare const CosmosAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>;
export type CosmosAddress = z.infer<typeof CosmosAddress>;
export declare const CosmosSignature: z.ZodEffects<z.ZodString, string, string>;
export type CosmosSignature = z.infer<typeof CosmosSignature>;
/**
* Tezos
*/
export declare const TezosImplicitAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
export type TezosImplicitAddress = z.infer<typeof TezosImplicitAddress>;
export declare const TezosContractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
export type TezosContractAddress = z.infer<typeof TezosContractAddress>;
export declare const TezosAddress: z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>;
export type TezosAddress = z.infer<typeof TezosAddress>;
export declare const TezosEntrypointName: z.ZodEffects<z.ZodString, `%${string}`, string>;
export type TezosEntrypointName = z.infer<typeof TezosEntrypointName>;
export declare const EdSignature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
export type EdSignature = z.infer<typeof EdSignature>;
export declare const SpSignature: z.ZodEffects<z.ZodString, `spsig${string}`, string>;
export type SpSignature = z.infer<typeof SpSignature>;
export declare const P2Signature: z.ZodEffects<z.ZodString, `p2sig${string}`, string>;
export type P2Signature = z.infer<typeof P2Signature>;
export declare const TezosSignature: z.ZodUnion<[z.ZodEffects<z.ZodString, `edsig${string}`, string>, z.ZodEffects<z.ZodString, `spsig${string}`, string>, z.ZodEffects<z.ZodString, `p2sig${string}`, string>]>;
export type TezosSignature = z.infer<typeof TezosSignature>;
/**
* Cardano
*/
export declare const CardanoAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>;
export type CardanoAddress = z.infer<typeof CardanoAddress>;
export declare const CardanoSignature: z.ZodEffects<z.ZodString, string, string>;
export type CardanoSignature = z.infer<typeof CardanoSignature>;
/**
* Chain agnostic schemas
*/
export declare const BlockchainAddress: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
export type BlockchainAddress = z.infer<typeof BlockchainAddress>;
export declare const BlockchainSignature: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `edsig${string}`, string>, z.ZodEffects<z.ZodString, `spsig${string}`, string>, z.ZodEffects<z.ZodString, `p2sig${string}`, string>]>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodString, string, string>]>;
export type BlockchainSignature = z.infer<typeof BlockchainSignature>;
export declare const BLOCKCHAIN_NAMESPACES: readonly ["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"];
export declare const BlockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
export type BlockchainNamespace = z.infer<typeof BlockchainNamespace>;
export declare const BLOCKCHAIN_NAMESPACES_NAMES: {
readonly tezos: "Tezos";
readonly eip155: "EVM";
readonly aptos: "Aptos";
readonly polkadot: "Polkadot";
readonly starknet: "Starknet";
readonly cosmos: "Cosmos";
readonly solana: "Solana";
readonly cardano: "Cardano";
};
export declare const DISPLAYED_LOCKCHAIN_NAMESPACES: readonly ["Tezos", "EVM", "Aptos", "Polkadot", "Starknet", "Cosmos", "Solana", "Cardano"];
export declare const DisplayedBlockchainNamespace: z.ZodEnum<["Tezos", "EVM", "Aptos", "Polkadot", "Starknet", "Cosmos", "Solana", "Cardano"]>;
export type DisplayedBlockchainNamespace = z.infer<typeof DisplayedBlockchainNamespace>;
export declare const BLOCKCHAIN_NAME_TO_NAMESPACE: Record<DisplayedBlockchainNamespace, BlockchainNamespace>;
export declare const BLOCKCHAIN_NAMESPACE_TO_NAME: Record<BlockchainNamespace, DisplayedBlockchainNamespace>;
export declare const ENVS: readonly ["cicd", "local", "test-dev-1", "test-dev-2", "test-dev-3", "dev", "stage", "prod"];

@@ -115,18 +10,2 @@ export declare const EnvironmentSchema: z.ZodEnum<["cicd", "local", "test-dev-1", "test-dev-2", "test-dev-3", "dev", "stage", "prod"]>;

/**
* Zod parse without throwing an error if the value is invalid
* Rather, it returns a object with optional error and data fields
*
* @param schema
* @param value
* @constructor
*/
export declare function ZodParse<T>(schema: z.ZodSchema<T>, value: unknown): {
data: z.infer<typeof schema>;
error: undefined;
} | {
error: z.ZodError<unknown>;
data: undefined;
};
export declare const shortBlockchainAddress: (address: BlockchainAddress) => string;
/**
* All public services

@@ -133,0 +12,0 @@ */

import { z } from "zod";
import { BlockchainId } from "../blockchain.schema.js";
import { BlockchainAddress, BlockchainNamespace, BlockchainSignature, PublicKey } from "../config.schema.js";
import { BlockchainAddress, BlockchainId, BlockchainSignature, PublicKey, SupportedBlockchainNamespaceForSignatureAuth } from "../blockchain/index.js";
export type WalletSignatureResponse = {

@@ -14,3 +13,3 @@ message: string;

address: BlockchainAddress;
namespace: BlockchainNamespace;
namespace: SupportedBlockchainNamespaceForSignatureAuth;
blockchainId?: BlockchainId;

@@ -17,0 +16,0 @@ };

174

dist/declarations/src/identity/txAuthData.schema.d.ts
import { z } from "zod";
export declare const TxAuthInput: z.ZodObject<{
chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET, unknown>;
chainId: z.ZodEnum<[import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>;
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;

@@ -13,3 +13,3 @@ contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;

userAddress: `0x${string}`;
chainId: import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -23,2 +23,3 @@ contractAddress: `0x${string}`;

userAddress: string;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -28,3 +29,2 @@ contractAddress: string;

args: unknown[];
chainId?: unknown;
blockExpiration?: number | undefined;

@@ -35,3 +35,3 @@ nonce?: number | undefined;

export declare const ApiTxAuthInput: z.ZodObject<z.objectUtil.extendShape<{
chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET, unknown>;
chainId: z.ZodEnum<[import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>;
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;

@@ -47,3 +47,3 @@ contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;

}>, "strip", z.ZodTypeAny, {
chainId: import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -57,2 +57,3 @@ contractAddress: `0x${string}`;

}, {
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -63,3 +64,2 @@ contractAddress: string;

userAddress?: string | undefined;
chainId?: unknown;
blockExpiration?: number | undefined;

@@ -107,3 +107,3 @@ nonce?: number | undefined;

export declare const TezosTxAuthInput: z.ZodObject<{
chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>;
chainID: z.ZodEnum<[import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;

@@ -120,3 +120,3 @@ functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;

args: string;
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;

@@ -129,9 +129,9 @@ nonce?: number | undefined;

args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;
nonce?: number | undefined;
chainID?: unknown;
}>;
export type TezosTxAuthInput = z.infer<typeof TezosTxAuthInput>;
export declare const ApiTezosTxAuthInput: z.ZodObject<z.objectUtil.extendShape<{
chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>;
chainID: z.ZodEnum<[import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;

@@ -149,3 +149,3 @@ functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;

args: string;
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
userAddress?: `tz${string}` | undefined;

@@ -158,6 +158,6 @@ blockExpiration?: number | undefined;

args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
userAddress?: string | undefined;
blockExpiration?: number | undefined;
nonce?: number | undefined;
chainID?: unknown;
}>;

@@ -200,3 +200,3 @@ export type ApiTezosTxAuthInput = z.infer<typeof ApiTezosTxAuthInput>;

export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{
chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET, unknown>;
chainId: z.ZodEnum<[import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>;
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;

@@ -211,3 +211,3 @@ contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;

userAddress: `0x${string}`;
chainId: import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -221,2 +221,3 @@ contractAddress: `0x${string}`;

userAddress: string;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -226,3 +227,2 @@ contractAddress: string;

args: unknown[];
chainId?: unknown;
blockExpiration?: number | undefined;

@@ -242,3 +242,3 @@ nonce?: number | undefined;

export declare const ExtendedTezosTxAuthInput: z.ZodIntersection<z.ZodObject<{
chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>;
chainID: z.ZodEnum<[import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;

@@ -255,3 +255,3 @@ functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;

args: string;
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;

@@ -264,5 +264,5 @@ nonce?: number | undefined;

args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;
nonce?: number | undefined;
chainID?: unknown;
}>, z.ZodObject<{

@@ -280,3 +280,3 @@ namespace: z.ZodLiteral<"tezos">;

export declare const AnyTxAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
chainId: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>, import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET, unknown>;
chainId: z.ZodEnum<[import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>;
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;

@@ -291,3 +291,3 @@ contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;

userAddress: `0x${string}`;
chainId: import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -301,2 +301,3 @@ contractAddress: `0x${string}`;

userAddress: string;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];

@@ -306,3 +307,2 @@ contractAddress: string;

args: unknown[];
chainId?: unknown;
blockExpiration?: number | undefined;

@@ -320,3 +320,3 @@ nonce?: number | undefined;

}>>, z.ZodIntersection<z.ZodObject<{
chainID: z.ZodEffects<z.ZodEnum<[import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>, import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS, unknown>;
chainID: z.ZodEnum<[import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;

@@ -333,3 +333,3 @@ functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;

args: string;
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;

@@ -342,5 +342,5 @@ nonce?: number | undefined;

args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;
nonce?: number | undefined;
chainID?: unknown;
}>, z.ZodObject<{

@@ -357,2 +357,128 @@ namespace: z.ZodLiteral<"tezos">;

export type AnyTxAuthInput = z.infer<typeof AnyTxAuthInput>;
export declare const AnyTxAuthInputJsSdk: z.ZodObject<{
workflowId: z.ZodString;
txAuthInput: z.ZodUnion<[z.ZodIntersection<z.ZodObject<{
chainId: z.ZodEnum<[import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON, import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB, import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM, import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA, import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET]>;
contractAbi: z.ZodArray<z.ZodRecord<z.ZodString, z.ZodUnknown>, "many">;
contractAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
functionName: z.ZodString;
args: z.ZodArray<z.ZodUnknown, "many">;
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
blockExpiration: z.ZodOptional<z.ZodNumber>;
nonce: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
userAddress: `0x${string}`;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];
contractAddress: `0x${string}`;
functionName: string;
args: unknown[];
blockExpiration?: number | undefined;
nonce?: number | undefined;
}, {
userAddress: string;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];
contractAddress: string;
functionName: string;
args: unknown[];
blockExpiration?: number | undefined;
nonce?: number | undefined;
}>, z.ZodObject<{
namespace: z.ZodLiteral<"eip155">;
userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;
}, "strip", z.ZodTypeAny, {
namespace: "eip155";
userAddress: `0x${string}`;
}, {
namespace: "eip155";
userAddress: string;
}>>, z.ZodIntersection<z.ZodObject<{
chainID: z.ZodEnum<[import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS, import("../blockchain/index.js").NEXERA_TEZOS_CHAINS.TEZOS_GHOSTNET]>;
contractAddress: z.ZodEffects<z.ZodString, `KT1${string}`, string>;
functionName: z.ZodEffects<z.ZodString, `%${string}`, string>;
args: z.ZodString;
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
blockExpiration: z.ZodOptional<z.ZodNumber>;
nonce: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
userAddress: `tz${string}`;
contractAddress: `KT1${string}`;
functionName: `%${string}`;
args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;
nonce?: number | undefined;
}, {
userAddress: string;
contractAddress: string;
functionName: string;
args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;
nonce?: number | undefined;
}>, z.ZodObject<{
namespace: z.ZodLiteral<"tezos">;
userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;
}, "strip", z.ZodTypeAny, {
namespace: "tezos";
userAddress: `tz${string}`;
}, {
namespace: "tezos";
userAddress: string;
}>>]>;
}, "strip", z.ZodTypeAny, {
workflowId: string;
txAuthInput: ({
userAddress: `0x${string}`;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];
contractAddress: `0x${string}`;
functionName: string;
args: unknown[];
blockExpiration?: number | undefined;
nonce?: number | undefined;
} & {
namespace: "eip155";
userAddress: `0x${string}`;
}) | ({
userAddress: `tz${string}`;
contractAddress: `KT1${string}`;
functionName: `%${string}`;
args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;
nonce?: number | undefined;
} & {
namespace: "tezos";
userAddress: `tz${string}`;
});
}, {
workflowId: string;
txAuthInput: ({
userAddress: string;
chainId: import("../blockchain/index.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain/index.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain/index.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain/index.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain/index.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET;
contractAbi: Record<string, unknown>[];
contractAddress: string;
functionName: string;
args: unknown[];
blockExpiration?: number | undefined;
nonce?: number | undefined;
} & {
namespace: "eip155";
userAddress: string;
}) | ({
userAddress: string;
contractAddress: string;
functionName: string;
args: string;
chainID: import("../blockchain/index.js").NEXERA_TEZOS_CHAINS;
blockExpiration?: number | undefined;
nonce?: number | undefined;
} & {
namespace: "tezos";
userAddress: string;
});
}>;
export type AnyTxAuthInputJsSdk = z.infer<typeof AnyTxAuthInputJsSdk>;
export declare const ExtendedTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{

@@ -359,0 +485,0 @@ isAuthorized: z.ZodLiteral<true>;

@@ -1,2 +0,2 @@

export * from "./blockchain.schema.js";
export * from "./blockchain/index.js";
export * from "./config.schema.js";

@@ -3,0 +3,0 @@ export * from "./currency.schema.js";

import { z } from "zod";
import { BlockchainAddress, BlockchainNamespace } from "./config.schema.js";
import { BlockchainAddress, BlockchainNamespace } from "./blockchain/index.js";
export declare const FLOW_TYPES: readonly ["web2", "web3"];

@@ -37,4 +37,4 @@ export declare const FlowType: z.ZodEnum<["web2", "web3"]>;

export declare const IdentityWidgetAccessToken: z.ZodObject<{
sub: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
sub: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano", "bitcoin"]>;
exp: z.ZodNumber;

@@ -53,3 +53,3 @@ projectId: z.ZodString;

sub: string;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -68,3 +68,3 @@ projectId: string;

sub: string;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -99,7 +99,7 @@ projectId: string;

flowType: z.ZodLiteral<"web3">;
blockchainAddress: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
blockchainAddress: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano", "bitcoin"]>;
}>, "strip", z.ZodTypeAny, {
sub: `identity_${string}`;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -119,3 +119,3 @@ organizationId: string;

sub: `identity_${string}`;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -200,7 +200,7 @@ organizationId: string;

flowType: z.ZodLiteral<"web3">;
blockchainAddress: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
blockchainAddress: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano", "bitcoin"]>;
}>, "strip", z.ZodTypeAny, {
sub: `identity_${string}`;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -220,3 +220,3 @@ organizationId: string;

sub: `identity_${string}`;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -294,4 +294,4 @@ organizationId: string;

export declare const IdentityWidgetSessionToken: z.ZodUnion<[z.ZodObject<{
sub: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
sub: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano", "bitcoin"]>;
exp: z.ZodNumber;

@@ -310,3 +310,3 @@ projectId: z.ZodString;

sub: string;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -325,3 +325,3 @@ projectId: string;

sub: string;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -353,7 +353,7 @@ projectId: string;

flowType: z.ZodLiteral<"web3">;
blockchainAddress: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
blockchainAddress: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>;
blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano", "bitcoin"]>;
}>, "strip", z.ZodTypeAny, {
sub: `identity_${string}`;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -373,3 +373,3 @@ organizationId: string;

sub: `identity_${string}`;
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
blockchainNamespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin";
exp: number;

@@ -376,0 +376,0 @@ organizationId: string;

@@ -107,3 +107,3 @@ import { z } from "zod";

customerId: z.ZodString;
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>>>;
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>>>;
cmsProjectId: z.ZodString;

@@ -215,3 +215,3 @@ result: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Passed", "ToBeManuallyChecked", "Rejected", "Retry"]>>>;

customerId: z.ZodString;
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>>>;
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>>>;
cmsProjectId: z.ZodString;

@@ -218,0 +218,0 @@ result: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Passed", "ToBeManuallyChecked", "Rejected", "Retry"]>>>;

@@ -279,3 +279,3 @@ import { z } from "zod";

blockchain?: number | null | undefined;
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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;
blockchain_verbose?: "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Moonriver" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Tezos" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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" | null | undefined;
customer_id?: string | null | undefined;

@@ -324,3 +324,3 @@ type_verbose?: string | null | undefined;

blockchain?: number | null | undefined;
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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;
blockchain_verbose?: "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Moonriver" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Tezos" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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" | null | undefined;
customer_id?: string | null | undefined;

@@ -506,3 +506,3 @@ type_verbose?: string | null | undefined;

blockchain?: number | null | undefined;
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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;
blockchain_verbose?: "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Moonriver" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Tezos" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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" | null | undefined;
customer_id?: string | null | undefined;

@@ -551,3 +551,3 @@ type_verbose?: string | null | undefined;

blockchain?: number | null | undefined;
blockchain_verbose?: "Polygon" | "Arbitrum" | "Optimism" | "Moonbeam" | "Moonriver" | "Tezos" | "Aptos" | "Polkadot" | "Starknet" | "Cosmos" | "Solana" | "Cardano" | "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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;
blockchain_verbose?: "ICP" | "IOTA" | "QTUM" | "WEMIX" | "XPLA" | "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" | "Icon" | "Injective" | "IoTex" | "Iris" | "Kava" | "Kadena" | "Klaytn" | "Komodo" | "Kusama" | "Lisk" | "Terra" | "Mina" | "Moonriver" | "Nano" | "Near" | "Neo3" | "Oasys" | "One" | "Ontology" | "Osmosis" | "Polymesh" | "Oasis" | "Thorchain" | "Ravencoin" | "Siacoin" | "Shiden" | "Songbird" | "Stratis" | "Stacks" | "SUI" | "zkSync" | "Theta" | "Tomo" | "VeChain" | "Waves" | "Wax" | "WaltonChain" | "Chia" | "Tezos" | "Zcoin" | "Celestia" | "Neutron" | "Avalanche_P" | "Sei" | "Avalanche_X" | "Aztec" | "Bittensor" | "Casper" | "Deso" | "Juno" | "PocketNetwork" | "Ronin" | "Vara" | "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" | null | undefined;
customer_id?: string | null | undefined;

@@ -554,0 +554,0 @@ type_verbose?: string | null | undefined;

@@ -5,3 +5,3 @@ import { z } from "zod";

externalCustomerId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>>>;
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>>>;
result: z.ZodEnum<["valid", "not-valid", "error", "unknown"]>;

@@ -8,0 +8,0 @@ executionId: z.ZodString;

@@ -5,6 +5,6 @@ 'use strict';

var identityApi_schema = require('./identity-api.schema-841bc821.cjs.dev.js');
var transaction_schema = require('./transaction.schema-fda3d623.cjs.dev.js');
var identityApi_schema = require('./identity-api.schema-de92d7dd.cjs.dev.js');
var transaction_schema = require('./transaction.schema-89adc4fb.cjs.dev.js');
var zod = require('zod');
var frontendUtilities_schema = require('./frontend-utilities.schema-b01c1889.cjs.dev.js');
var frontendUtilities_schema = require('./frontend-utilities.schema-5d184c4f.cjs.dev.js');
require('nanoid');

@@ -88,5 +88,5 @@

exports.ACTIVE_COSMOS_CHAIN_VALUES = identityApi_schema.ACTIVE_COSMOS_CHAIN_VALUES;
exports.ACTIVE_COSMOS_CHAIN_IDS = identityApi_schema.ACTIVE_COSMOS_CHAIN_IDS;
exports.ACTIVE_EVM_CHAIN_VALUES = identityApi_schema.ACTIVE_EVM_CHAIN_VALUES;
exports.ACTIVE_TEZOS_CHAIN_VALUES = identityApi_schema.ACTIVE_TEZOS_CHAIN_VALUES;
exports.ACTIVE_TEZOS_CHAIN_IDS = identityApi_schema.ACTIVE_TEZOS_CHAIN_IDS;
exports.ALPHA_2_COUNTRIES = identityApi_schema.ALPHA_2_COUNTRIES;

@@ -107,2 +107,3 @@ exports.ARRAY_OPERATORS = identityApi_schema.ARRAY_OPERATORS;

exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput;
exports.AnyTxAuthInputJsSdk = identityApi_schema.AnyTxAuthInputJsSdk;
exports.ApiTezosTxAuthInput = identityApi_schema.ApiTezosTxAuthInput;

@@ -130,2 +131,9 @@ exports.ApiTxAuthInput = identityApi_schema.ApiTxAuthInput;

exports.BasicCustomerContactInformation = identityApi_schema.BasicCustomerContactInformation;
exports.BitcoinAddress = identityApi_schema.BitcoinAddress;
exports.BitcoinBech32Address = identityApi_schema.BitcoinBech32Address;
exports.BitcoinP2PKHAddress = identityApi_schema.BitcoinP2PKHAddress;
exports.BitcoinP2SHAddress = identityApi_schema.BitcoinP2SHAddress;
exports.BitcoinTestnetBech32Address = identityApi_schema.BitcoinTestnetBech32Address;
exports.BitcoinTestnetP2PKHAddress = identityApi_schema.BitcoinTestnetP2PKHAddress;
exports.BitcoinTestnetP2SHAddress = identityApi_schema.BitcoinTestnetP2SHAddress;
exports.BlockchainAddress = identityApi_schema.BlockchainAddress;

@@ -138,5 +146,5 @@ exports.BlockchainId = identityApi_schema.BlockchainId;

exports.CIRCUIT_IDS = identityApi_schema.CIRCUIT_IDS;
exports.COSMOS_CHAIN_IDS = identityApi_schema.COSMOS_CHAIN_IDS;
exports.COSMOS_CHAIN_NAMES = identityApi_schema.COSMOS_CHAIN_NAMES;
exports.COSMOS_CHAIN_NAMES_LIST = identityApi_schema.COSMOS_CHAIN_NAMES_LIST;
exports.COSMOS_CHAIN_VALUES = identityApi_schema.COSMOS_CHAIN_VALUES;
exports.CUSTOMERS_CHARTS = identityApi_schema.CUSTOMERS_CHARTS;

@@ -181,3 +189,3 @@ exports.CUSTOMER_AUTOMATION_REASONS = identityApi_schema.CUSTOMER_AUTOMATION_REASONS;

exports.DATE_OPERATORS = identityApi_schema.DATE_OPERATORS;
exports.DISPLAYED_LOCKCHAIN_NAMESPACES = identityApi_schema.DISPLAYED_LOCKCHAIN_NAMESPACES;
exports.DISPLAYED_BLOCKCHAIN_NAMESPACES = identityApi_schema.DISPLAYED_BLOCKCHAIN_NAMESPACES;
exports.DataAvailableOnStart = identityApi_schema.DataAvailableOnStart;

@@ -218,2 +226,3 @@ exports.DateOperator = identityApi_schema.DateOperator;

exports.GetTxAuthSigResponseTezos = identityApi_schema.GetTxAuthSigResponseTezos;
exports.HexadecimalSchema = identityApi_schema.HexadecimalSchema;
exports.HostMessage = identityApi_schema.HostMessage;

@@ -271,4 +280,4 @@ exports.HostRequestMessage = identityApi_schema.HostRequestMessage;

exports.MemberId = identityApi_schema.MemberId;
exports.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES = identityApi_schema.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES;
exports.NEXERA_CHAIN_VALUES = identityApi_schema.NEXERA_CHAIN_VALUES;
exports.NEXERA_ACTIVE_STARKNET_CHAIN_IDS = identityApi_schema.NEXERA_ACTIVE_STARKNET_CHAIN_IDS;
exports.NEXERA_CHAIN_IDS = identityApi_schema.NEXERA_CHAIN_IDS;
exports.NEXERA_COSMOS_CHAINS = identityApi_schema.NEXERA_COSMOS_CHAINS;

@@ -280,8 +289,8 @@ exports.NEXERA_EVM_CHAINS = identityApi_schema.NEXERA_EVM_CHAINS;

exports.NEXERA_STARKNET_CHAINS = identityApi_schema.NEXERA_STARKNET_CHAINS;
exports.NEXERA_STARKNET_CHAIN_IDS = identityApi_schema.NEXERA_STARKNET_CHAIN_IDS;
exports.NEXERA_STARKNET_CHAIN_NAMES = identityApi_schema.NEXERA_STARKNET_CHAIN_NAMES;
exports.NEXERA_STARKNET_CHAIN_VALUES = identityApi_schema.NEXERA_STARKNET_CHAIN_VALUES;
exports.NEXERA_TEZOS_CHAINS = identityApi_schema.NEXERA_TEZOS_CHAINS;
exports.NEXERA_TEZOS_CHAIN_IDS = identityApi_schema.NEXERA_TEZOS_CHAIN_IDS;
exports.NEXERA_TEZOS_CHAIN_NAMES = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES;
exports.NEXERA_TEZOS_CHAIN_NAMES_LIST = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES_LIST;
exports.NEXERA_TEZOS_CHAIN_VALUES = identityApi_schema.NEXERA_TEZOS_CHAIN_VALUES;
exports.NUMERIC_OPERATORS = identityApi_schema.NUMERIC_OPERATORS;

@@ -347,2 +356,3 @@ exports.NexeraCredentialType = identityApi_schema.NexeraCredentialType;

exports.STRING_OPERATORS = identityApi_schema.STRING_OPERATORS;
exports.SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH = identityApi_schema.SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH;
exports.SUPPORTED_TYPES = identityApi_schema.SUPPORTED_TYPES;

@@ -376,2 +386,3 @@ exports.Scenario = identityApi_schema.Scenario;

exports.StringOperator = identityApi_schema.StringOperator;
exports.SupportedBlockchainNamespaceForSignatureAuth = identityApi_schema.SupportedBlockchainNamespaceForSignatureAuth;
exports.SupportedType = identityApi_schema.SupportedType;

@@ -441,3 +452,2 @@ exports.SupportedTypes = identityApi_schema.SupportedTypes;

exports.ZeroKnowledgeProofResponse = identityApi_schema.ZeroKnowledgeProofResponse;
exports.ZodParse = identityApi_schema.ZodParse;
exports.countryISO2toISO3Mapping = identityApi_schema.countryISO2toISO3Mapping;

@@ -454,3 +464,2 @@ exports.countryISO3toISO2Mapping = identityApi_schema.countryISO3toISO2Mapping;

exports.parseSessionIdFromUrl = identityApi_schema.parseSessionIdFromUrl;
exports.shortAddress = identityApi_schema.shortAddress;
exports.shortBlockchainAddress = identityApi_schema.shortBlockchainAddress;

@@ -457,0 +466,0 @@ exports.CryptoCode = transaction_schema.CryptoCode;

@@ -5,6 +5,6 @@ 'use strict';

var identityApi_schema = require('./identity-api.schema-2fb2ff78.cjs.prod.js');
var transaction_schema = require('./transaction.schema-2f3eb4e6.cjs.prod.js');
var identityApi_schema = require('./identity-api.schema-37706ef2.cjs.prod.js');
var transaction_schema = require('./transaction.schema-477a98f8.cjs.prod.js');
var zod = require('zod');
var frontendUtilities_schema = require('./frontend-utilities.schema-1a37ad51.cjs.prod.js');
var frontendUtilities_schema = require('./frontend-utilities.schema-cc8ceb46.cjs.prod.js');
require('nanoid');

@@ -88,5 +88,5 @@

exports.ACTIVE_COSMOS_CHAIN_VALUES = identityApi_schema.ACTIVE_COSMOS_CHAIN_VALUES;
exports.ACTIVE_COSMOS_CHAIN_IDS = identityApi_schema.ACTIVE_COSMOS_CHAIN_IDS;
exports.ACTIVE_EVM_CHAIN_VALUES = identityApi_schema.ACTIVE_EVM_CHAIN_VALUES;
exports.ACTIVE_TEZOS_CHAIN_VALUES = identityApi_schema.ACTIVE_TEZOS_CHAIN_VALUES;
exports.ACTIVE_TEZOS_CHAIN_IDS = identityApi_schema.ACTIVE_TEZOS_CHAIN_IDS;
exports.ALPHA_2_COUNTRIES = identityApi_schema.ALPHA_2_COUNTRIES;

@@ -107,2 +107,3 @@ exports.ARRAY_OPERATORS = identityApi_schema.ARRAY_OPERATORS;

exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput;
exports.AnyTxAuthInputJsSdk = identityApi_schema.AnyTxAuthInputJsSdk;
exports.ApiTezosTxAuthInput = identityApi_schema.ApiTezosTxAuthInput;

@@ -130,2 +131,9 @@ exports.ApiTxAuthInput = identityApi_schema.ApiTxAuthInput;

exports.BasicCustomerContactInformation = identityApi_schema.BasicCustomerContactInformation;
exports.BitcoinAddress = identityApi_schema.BitcoinAddress;
exports.BitcoinBech32Address = identityApi_schema.BitcoinBech32Address;
exports.BitcoinP2PKHAddress = identityApi_schema.BitcoinP2PKHAddress;
exports.BitcoinP2SHAddress = identityApi_schema.BitcoinP2SHAddress;
exports.BitcoinTestnetBech32Address = identityApi_schema.BitcoinTestnetBech32Address;
exports.BitcoinTestnetP2PKHAddress = identityApi_schema.BitcoinTestnetP2PKHAddress;
exports.BitcoinTestnetP2SHAddress = identityApi_schema.BitcoinTestnetP2SHAddress;
exports.BlockchainAddress = identityApi_schema.BlockchainAddress;

@@ -138,5 +146,5 @@ exports.BlockchainId = identityApi_schema.BlockchainId;

exports.CIRCUIT_IDS = identityApi_schema.CIRCUIT_IDS;
exports.COSMOS_CHAIN_IDS = identityApi_schema.COSMOS_CHAIN_IDS;
exports.COSMOS_CHAIN_NAMES = identityApi_schema.COSMOS_CHAIN_NAMES;
exports.COSMOS_CHAIN_NAMES_LIST = identityApi_schema.COSMOS_CHAIN_NAMES_LIST;
exports.COSMOS_CHAIN_VALUES = identityApi_schema.COSMOS_CHAIN_VALUES;
exports.CUSTOMERS_CHARTS = identityApi_schema.CUSTOMERS_CHARTS;

@@ -181,3 +189,3 @@ exports.CUSTOMER_AUTOMATION_REASONS = identityApi_schema.CUSTOMER_AUTOMATION_REASONS;

exports.DATE_OPERATORS = identityApi_schema.DATE_OPERATORS;
exports.DISPLAYED_LOCKCHAIN_NAMESPACES = identityApi_schema.DISPLAYED_LOCKCHAIN_NAMESPACES;
exports.DISPLAYED_BLOCKCHAIN_NAMESPACES = identityApi_schema.DISPLAYED_BLOCKCHAIN_NAMESPACES;
exports.DataAvailableOnStart = identityApi_schema.DataAvailableOnStart;

@@ -218,2 +226,3 @@ exports.DateOperator = identityApi_schema.DateOperator;

exports.GetTxAuthSigResponseTezos = identityApi_schema.GetTxAuthSigResponseTezos;
exports.HexadecimalSchema = identityApi_schema.HexadecimalSchema;
exports.HostMessage = identityApi_schema.HostMessage;

@@ -271,4 +280,4 @@ exports.HostRequestMessage = identityApi_schema.HostRequestMessage;

exports.MemberId = identityApi_schema.MemberId;
exports.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES = identityApi_schema.NEXERA_ACTIVE_STARKNET_CHAIN_VALUES;
exports.NEXERA_CHAIN_VALUES = identityApi_schema.NEXERA_CHAIN_VALUES;
exports.NEXERA_ACTIVE_STARKNET_CHAIN_IDS = identityApi_schema.NEXERA_ACTIVE_STARKNET_CHAIN_IDS;
exports.NEXERA_CHAIN_IDS = identityApi_schema.NEXERA_CHAIN_IDS;
exports.NEXERA_COSMOS_CHAINS = identityApi_schema.NEXERA_COSMOS_CHAINS;

@@ -280,8 +289,8 @@ exports.NEXERA_EVM_CHAINS = identityApi_schema.NEXERA_EVM_CHAINS;

exports.NEXERA_STARKNET_CHAINS = identityApi_schema.NEXERA_STARKNET_CHAINS;
exports.NEXERA_STARKNET_CHAIN_IDS = identityApi_schema.NEXERA_STARKNET_CHAIN_IDS;
exports.NEXERA_STARKNET_CHAIN_NAMES = identityApi_schema.NEXERA_STARKNET_CHAIN_NAMES;
exports.NEXERA_STARKNET_CHAIN_VALUES = identityApi_schema.NEXERA_STARKNET_CHAIN_VALUES;
exports.NEXERA_TEZOS_CHAINS = identityApi_schema.NEXERA_TEZOS_CHAINS;
exports.NEXERA_TEZOS_CHAIN_IDS = identityApi_schema.NEXERA_TEZOS_CHAIN_IDS;
exports.NEXERA_TEZOS_CHAIN_NAMES = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES;
exports.NEXERA_TEZOS_CHAIN_NAMES_LIST = identityApi_schema.NEXERA_TEZOS_CHAIN_NAMES_LIST;
exports.NEXERA_TEZOS_CHAIN_VALUES = identityApi_schema.NEXERA_TEZOS_CHAIN_VALUES;
exports.NUMERIC_OPERATORS = identityApi_schema.NUMERIC_OPERATORS;

@@ -347,2 +356,3 @@ exports.NexeraCredentialType = identityApi_schema.NexeraCredentialType;

exports.STRING_OPERATORS = identityApi_schema.STRING_OPERATORS;
exports.SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH = identityApi_schema.SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH;
exports.SUPPORTED_TYPES = identityApi_schema.SUPPORTED_TYPES;

@@ -376,2 +386,3 @@ exports.Scenario = identityApi_schema.Scenario;

exports.StringOperator = identityApi_schema.StringOperator;
exports.SupportedBlockchainNamespaceForSignatureAuth = identityApi_schema.SupportedBlockchainNamespaceForSignatureAuth;
exports.SupportedType = identityApi_schema.SupportedType;

@@ -441,3 +452,2 @@ exports.SupportedTypes = identityApi_schema.SupportedTypes;

exports.ZeroKnowledgeProofResponse = identityApi_schema.ZeroKnowledgeProofResponse;
exports.ZodParse = identityApi_schema.ZodParse;
exports.countryISO2toISO3Mapping = identityApi_schema.countryISO2toISO3Mapping;

@@ -454,3 +464,2 @@ exports.countryISO3toISO2Mapping = identityApi_schema.countryISO3toISO2Mapping;

exports.parseSessionIdFromUrl = identityApi_schema.parseSessionIdFromUrl;
exports.shortAddress = identityApi_schema.shortAddress;
exports.shortBlockchainAddress = identityApi_schema.shortBlockchainAddress;

@@ -457,0 +466,0 @@ exports.CryptoCode = transaction_schema.CryptoCode;

@@ -1,6 +0,6 @@

import { C as CredentialTypes } from './identity-api.schema-ee362a66.esm.js';
export { s as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, o as ACTIVE_TEZOS_CHAIN_VALUES, am as ALPHA_2_COUNTRIES, d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, bh as ActionId, b6 as ActionPrefix, ef as AdditionalCustomerInformationParams, F as AddressSchema, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, an as Alpha2Country, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, bc as AppId, aO as AppPrefix, K as AptosAddress, L as AptosSignature, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, a6 as BLOCKCHAIN_NAMESPACES, a8 as BLOCKCHAIN_NAMESPACES_NAMES, ac as BLOCKCHAIN_NAMESPACE_TO_NAME, ab as BLOCKCHAIN_NAME_TO_NAMESPACE, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, aE as BasicCustomerContactInformation, a4 as BlockchainAddress, B as BlockchainId, a7 as BlockchainNamespace, a5 as BlockchainSignature, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, p as COSMOS_CHAIN_NAMES, q as COSMOS_CHAIN_NAMES_LIST, r as COSMOS_CHAIN_VALUES, aF as CUSTOMERS_CHARTS, aJ as CUSTOMER_AUTOMATION_REASONS, aH as CUSTOMER_TABLE_COLUMNS, a2 as CardanoAddress, a3 as CardanoSignature, bd as ChallengeId, aP as ChallengePrefix, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, U as CosmosAddress, t as CosmosChainId, V as CosmosSignature, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, eL as CredentialMediaType, eG as CredentialNames, c_ as CredentialQrCodeData, eF as CredentialSchemas, eJ as CredentialType, C as CredentialTypes, ej as CustomerId, aB as CustomerOnboardingLevel, aA as CustomerOnboardingLevels, bf as CustomerScreeningId, aR as CustomerScreeningPrefix, aD as CustomerStatus, aC as CustomerStatuses, aI as CustomerTableColumn, av as CustomerType, au as CustomerTypes, aG as CustomersChartType, dh as DATE_OPERATORS, a9 as DISPLAYED_LOCKCHAIN_NAMESPACES, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, aa as DisplayedBlockchainNamespace, H as EIP155Signature, ad as ENVS, E as EVM_BLOCK_TIME, i as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, _ as EdSignature, ba as EmailId, aM as EmailPrefix, ae as EnvironmentSchema, j as EvmChainId, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, el as ExternalCustomerId, e4 as FLOW_TYPES, e5 as FlowType, I as FunctionCallData, cx as GenerateWalletChallengeRequest, eE as GenericVerifiableCredentialSchema, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, er as ID3CredentialSubjectSchema, e8 as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, ea as IDENTITY_DOCUMENT_OPTIONS, eB as IDImageCredentialSubjectSchema, dm as IDInformation, eA as IDInformationCredentialSubjectSchema, es as IDScanCredentialSubjectSchema, et as IDScanPassportCredentialSubjectSchema, eu as IDScanSelfieCredentialSubjectSchema, al as ISO3CountryCode, ee as Identifier, cI as IdentityAppMessage, en as IdentityAppV2Web2JWT, em as IdentityAppV2Web3JWT, e9 as IdentityDocumentCountryListOption, eb as IdentityDocumentOptionsType, b9 as IdentityId, cL as IdentityMessage, bN as IdentityNotificationMessage, aL as IdentityPrefix, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, ek as IdentityWidgetAccessToken, eo as IdentityWidgetAccessToken_NEW, ep as IdentityWidgetSessionToken, bO as InitialDataRequest, bW as InitialDataResponse, bt as InstitutionExtractedInfosId, b2 as InstitutionExtractedInfosPrefix, bs as InstitutionId, b1 as InstitutionPrefix, ak as IpAddress, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, az as KybOnboardingLevel, ay as KybOnboardingLevels, bC as KycCompletionData, bD as KycCompletionNotification, ax as KycOnboardingLevel, aw as KycOnboardingLevels, bv as ListId, b4 as ListPrefix, cO as MediaType, cP as MediaTypePID, by as MemberId, w as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, h as NEXERA_CHAIN_VALUES, d as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, a as NEXERA_EVM_CHAINS_ID, f as NEXERA_EVM_CHAIN_NAMES, g as NEXERA_EVM_CHAIN_NAMES_LIST, e as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_NAMES, v as NEXERA_STARKNET_CHAIN_VALUES, c as NEXERA_TEZOS_CHAINS, l as NEXERA_TEZOS_CHAIN_NAMES, m as NEXERA_TEZOS_CHAIN_NAMES_LIST, n as NEXERA_TEZOS_CHAIN_VALUES, dd as NUMERIC_OPERATORS, eH as NexeraCredentialType, b as NexeraEvmChains, du as NonParsedQueryConfiguration, de as NumericOperator, ez as OLD_AMLScreeningsResultsCredentialSubjectSchema, ev as OLD_IDImageCredentialSubjectSchema, ew as OLD_IDInformationCredentialSubjectSchema, ex as OLD_ProofOfResidenceCredentialSubjectSchema, ey as OLD_SelfieImageCredentialSubjectSchema, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, eg as OrganizationId, ag as OtpCode, a0 as P2Signature, ec as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, aj as PUBLIC_SERVICES_SCHEMA_MAP, dr as PartialQueryConfigSimplified, ed as PersonalInformationFieldsIdentityDocuments, Q as PolkadotAddress, R as PolkadotSignature, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, k as PolygonNetworkNames, z as PrivateKey, cX as ProofData, eD as ProofOfResidenceCredentialSubjectSchema, D as PublicKey, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, bw as QueryId, b5 as QueryPrefix, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, at as RiskScoreType, as as RiskScoreTypes, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, bu as ScenarioId, b3 as ScenarioPrefix, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, eC as SelfieImageCredentialSubjectSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, $ as SpSignature, M as StarknetAddress, S as StarknetChainId, O as StarknetSignature, bM as StartCompletedNotification, co as StartFlowRequest, b8 as StorageId, aK as StoragePrefix, y as String0x, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, bg as TagId, aS as TagPrefix, bi as TagsToTransactionReviewsId, aT as TagsToTransactionReviewsPrefix, ce as TemplateScenario, be as TestId, aQ as TestPrefix, Y as TezosAddress, T as TezosChainId, X as TezosContractAddress, Z as TezosEntrypointName, W as TezosImplicitAddress, a1 as TezosSignature, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bj as TransactionAddressesId, aU as TransactionAddressesPrefix, bQ as TransactionData, bp as TransactionExtractedInfosId, a_ as TransactionExtractedInfosPrefix, bl as TransactionFeesId, aW as TransactionFeesPrefix, bk as TransactionId, bo as TransactionInfosId, aZ as TransactionInfosPrefix, br as TransactionMethodExtractedInfosId, b0 as TransactionMethodExtractedInfosPrefix, bq as TransactionMethodsId, a$ as TransactionMethodsPrefix, bn as TransactionPartiesId, aY as TransactionPartiesPrefix, aV as TransactionPrefix, bY as TransactionResponse, bm as TransactionReviewId, aX as TransactionReviewPrefix, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, G as TxHash, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, af as UuidString, eK as VerifiableCredential, e7 as VerificationMode, e6 as VerificationModes, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, bb as WalletId, aN as WalletPrefix, cB as WalletSignResponse, e2 as WalletSignatureResponse, eq as Web2CreateSessionParams, ei as WorkflowId, eh as WorkspaceId, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, ah as ZodParse, ap as countryISO2toISO3Mapping, ao as countryISO3toISO2Mapping, b7 as createBrandedSchemaId, bx as generateId, eI as getCredentialName, x as isValidAddress, aq as isoCountriesNameFromISO2, d8 as operatorDisplayMap, ar as parseISO3CountryCode, d1 as parseIden3Message, d2 as parseSessionIdFromUrl, J as shortAddress, ai as shortBlockchainAddress } from './identity-api.schema-ee362a66.esm.js';
export { c as CryptoCode, b as CryptoCodes, a as CurrencyCode, C as CurrencyCodes, u as PaymentType, P as PaymentTypes, T as TRANSACTION_CHARTS, e as TRANSACTION_TABLE_COLUMNS, r as TransactionCurrencyCode, q as TransactionCurrencyCodes, p as TransactionDirection, o as TransactionDirections, w as TransactionPartiesType, v as TransactionPartiesTypes, t as TransactionProvider, s as TransactionProviders, n as TransactionReviewStatus, m as TransactionReviewStatuses, l as TransactionRiskLevel, k as TransactionRiskLevels, f as TransactionTableColumn, h as TransactionType, j as TransactionTypeWithAll, g as TransactionTypes, i as TransactionTypesWithAll, d as TransactionsChartType } from './transaction.schema-62a16b38.esm.js';
import { C as CredentialTypes } from './identity-api.schema-58351f1d.esm.js';
export { l as ACTIVE_COSMOS_CHAIN_IDS, A as ACTIVE_EVM_CHAIN_VALUES, r as ACTIVE_TEZOS_CHAIN_IDS, au as ALPHA_2_COUNTRIES, dh as ARRAY_OPERATORS, c$ as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b$ as AVAILABLE_FLOWS, cl as AbbreviatedWorkflowScenario, bp as ActionId, be as ActionPrefix, eo as AdditionalCustomerInformationParams, D as AddressSchema, db as AllCredentialAttributes, dc as AllCredentialValues, e8 as AllScenarioExecutionAuthorizationData, av as Alpha2Country, e3 as AnyTxAuthDataSignatureResponse, d$ as AnyTxAuthInput, e0 as AnyTxAuthInputJsSdk, dW as ApiTezosTxAuthInput, dS as ApiTxAuthInput, bk as AppId, aW as AppPrefix, H as AptosAddress, ab as AptosSignature, di as ArrayOperator, d7 as AuthQrCodeData, cG as AuthSession, cH as AuthSessionData, d2 as AuthorizationRequestMessage, d1 as AuthorizationRequestMessageType, d0 as AuthorizationRequestMessageTypes, d5 as AuthorizationResponseMessage, c0 as AvailableFlow, a1 as BLOCKCHAIN_NAMESPACES, a5 as BLOCKCHAIN_NAMESPACES_NAMES, a9 as BLOCKCHAIN_NAMESPACE_TO_NAME, a8 as BLOCKCHAIN_NAME_TO_NAMESPACE, dn as BOOLEAN_OPERATORS, c8 as BaseQueryResponse, aM as BasicCustomerContactInformation, Z as BitcoinAddress, V as BitcoinBech32Address, R as BitcoinP2PKHAddress, U as BitcoinP2SHAddress, Y as BitcoinTestnetBech32Address, W as BitcoinTestnetP2PKHAddress, X as BitcoinTestnetP2SHAddress, _ as BlockchainAddress, B as BlockchainId, a2 as BlockchainNamespace, ak as BlockchainSignature, dp as BooleanOperator, dM as CHALLENGE_QUERY_OPERATORS, cY as CIRCUIT_IDS, k as COSMOS_CHAIN_IDS, i as COSMOS_CHAIN_NAMES, j as COSMOS_CHAIN_NAMES_LIST, aN as CUSTOMERS_CHARTS, aR as CUSTOMER_AUTOMATION_REASONS, aP as CUSTOMER_TABLE_COLUMNS, Q as CardanoAddress, aj as CardanoSignature, bl as ChallengeId, aX as ChallengePrefix, dN as ChallengeQueryOperator, dQ as ChallengeQueryOperatorToOperator, dL as ChallengeQuerySchema, cI as ChallengeResponse, cZ as CircuitId, bJ as CloseScreenNotification, co as ComplianceImplementationStepsInput, K as CosmosAddress, m as CosmosChainId, ae as CosmosSignature, e7 as CreateAuthRequestProps, dD as CreateQueryConfigurationInput, dE as CreateQueryConfigurationResponse, cn as CreateTemplateScenario, eU as CredentialMediaType, eP as CredentialNames, d6 as CredentialQrCodeData, eO as CredentialSchemas, eS as CredentialType, C as CredentialTypes, es as CustomerId, aJ as CustomerOnboardingLevel, aI as CustomerOnboardingLevels, bn as CustomerScreeningId, aZ as CustomerScreeningPrefix, aL as CustomerStatus, aK as CustomerStatuses, aQ as CustomerTableColumn, aD as CustomerType, aC as CustomerTypes, aO as CustomersChartType, dq as DATE_OPERATORS, a6 as DISPLAYED_BLOCKCHAIN_NAMESPACES, c1 as DataAvailableOnStart, dr as DateOperator, dH as DeleteQueryConfigurationInput, dI as DeleteQueryConfigurationResponse, a7 as DisplayedBlockchainNamespace, aa as EIP155Signature, an as ENVS, E as EVM_BLOCK_TIME, f as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, af as EdSignature, bi as EmailId, aU as EmailPrefix, ao as EnvironmentSchema, g as EvmChainId, ca as ExecuteQueryResponse, e2 as ExtendedTezosTxAuthDataSignatureResponse, d_ as ExtendedTezosTxAuthInput, e1 as ExtendedTxAuthDataSignatureResponse, dZ as ExtendedTxAuthInput, eu as ExternalCustomerId, ed as FLOW_TYPES, ee as FlowType, al as FunctionCallData, cF as GenerateWalletChallengeRequest, eN as GenericVerifiableCredentialSchema, cq as GetCredentialsRequest, cr as GetCredentialsResponse, cL as GetCustomerStatusRequest, cP as GetCustomerStatusResponse, dY as GetTezosTxAuthDataSignatureResponse, dU as GetTxAuthDataSignatureResponse, cz as GetTxAuthSigRequest, cB as GetTxAuthSigRequestTezos, cA as GetTxAuthSigResponse, cC as GetTxAuthSigResponseTezos, a0 as HexadecimalSchema, cS as HostMessage, cD as HostRequestMessage, c5 as HostResponseMessage, eA as ID3CredentialSubjectSchema, eh as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, ej as IDENTITY_DOCUMENT_OPTIONS, eK as IDImageCredentialSubjectSchema, dv as IDInformation, eJ as IDInformationCredentialSubjectSchema, eB as IDScanCredentialSubjectSchema, eC as IDScanPassportCredentialSubjectSchema, eD as IDScanSelfieCredentialSubjectSchema, at as ISO3CountryCode, en as Identifier, cQ as IdentityAppMessage, ew as IdentityAppV2Web2JWT, ev as IdentityAppV2Web3JWT, ei as IdentityDocumentCountryListOption, ek as IdentityDocumentOptionsType, bh as IdentityId, cT as IdentityMessage, bV as IdentityNotificationMessage, aT as IdentityPrefix, b_ as IdentityRequestMessage, cE as IdentityResponseMessage, cM as IdentitySdkMessage, cN as IdentitySdkMessageWithIdentifier, cR as IdentityWallet, et as IdentityWidgetAccessToken, ex as IdentityWidgetAccessToken_NEW, ey as IdentityWidgetSessionToken, bW as InitialDataRequest, c2 as InitialDataResponse, bB as InstitutionExtractedInfosId, ba as InstitutionExtractedInfosPrefix, bA as InstitutionId, b9 as InstitutionPrefix, as as IpAddress, bR as IsVerifiedNotification, cx as IsVerifiedRequest, cy as IsVerifiedResponse, aH as KybOnboardingLevel, aG as KybOnboardingLevels, bK as KycCompletionData, bL as KycCompletionNotification, aF as KycOnboardingLevel, aE as KycOnboardingLevels, bD as ListId, bc as ListPrefix, cW as MediaType, cX as MediaTypePID, bG as MemberId, w as NEXERA_ACTIVE_STARKNET_CHAIN_IDS, b as NEXERA_CHAIN_IDS, h as NEXERA_COSMOS_CHAINS, c as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAINS_ID, N as NEXERA_EVM_CHAIN_NAMES, a as NEXERA_EVM_CHAIN_NAMES_LIST, t as NEXERA_STARKNET_CHAINS, v as NEXERA_STARKNET_CHAIN_IDS, u as NEXERA_STARKNET_CHAIN_NAMES, n as NEXERA_TEZOS_CHAINS, q as NEXERA_TEZOS_CHAIN_IDS, o as NEXERA_TEZOS_CHAIN_NAMES, p as NEXERA_TEZOS_CHAIN_NAMES_LIST, dl as NUMERIC_OPERATORS, eQ as NexeraCredentialType, e as NexeraEvmChains, dC as NonParsedQueryConfiguration, dm as NumericOperator, eI as OLD_AMLScreeningsResultsCredentialSubjectSchema, eE as OLD_IDImageCredentialSubjectSchema, eF as OLD_IDInformationCredentialSubjectSchema, eG as OLD_ProofOfResidenceCredentialSubjectSchema, eH as OLD_SelfieImageCredentialSubjectSchema, dd as OPERATORS, bT as OcvSdkInitialized, bN as OffChainScenarioExecutionData, e6 as OffChainZKP, c9 as OffChainZKPRuleResult, bO as OnChainScenarioExecutionData, de as Operator, dO as OperatorMappings, dP as OperatorToChallengeQueryOperator, ep as OrganizationId, aq as OtpCode, ah as P2Signature, el as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ar as PUBLIC_SERVICES_SCHEMA_MAP, dz as PartialQueryConfigSimplified, em as PersonalInformationFieldsIdentityDocuments, J as PolkadotAddress, ad as PolkadotSignature, bS as PolygonIdInitialized, ct as PolygonIdRequest, cs as PolygonIdRequestData, cv as PolygonIdResponse, cu as PolygonIdResponseData, s as PolygonNetworkNames, y as PrivateKey, d3 as ProofData, eM as ProofOfResidenceCredentialSubjectSchema, z as PublicKey, d8 as QrCodeLinkWithSchemaType, dw as QueryConfig, dy as QueryConfigSimplified, dA as QueryConfigSimplifiedParsed, dB as QueryConfiguration, dK as QueryCredentialType, dJ as QueryCredentialTypes, bE as QueryId, bd as QueryPrefix, dx as QueryType, cU as RequiredDataRowSchema, cV as RequiredVerificationData, aB as RiskScoreType, aA as RiskScoreTypes, cb as RuleEngineResponse, bM as RuleEngineScenarioExecutionData, ce as RuleResultStatus, cf as RuleResultStatusLabels, cd as RuleResultStatuses, e9 as SCENARIO_AUTHORIZATION_STATUSES, dj as STRING_OPERATORS, a3 as SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH, ds as SUPPORTED_TYPES, ck as Scenario, bH as ScenarioAuthorizationData, ea as ScenarioAuthorizationStatus, bP as ScenarioExecutionData, bQ as ScenarioExecutionNotification, cc as ScenarioExecutionResponse, bC as ScenarioId, bb as ScenarioPrefix, c7 as ScenarioType, c6 as ScenarioTypes, cg as SdkVerificationOutput, bI as SdkVerificationResponseSchema, eL as SelfieImageCredentialSubjectSchema, bZ as SendTransactionRequest, bX as SignatureRequest, c3 as SignatureResponse, cp as SimplifiedCredential, ag as SpSignature, I as StarknetAddress, S as StarknetChainId, ac as StarknetSignature, bU as StartCompletedNotification, cw as StartFlowRequest, bg as StorageId, aS as StoragePrefix, $ as String0x, dk as StringOperator, a4 as SupportedBlockchainNamespaceForSignatureAuth, dt as SupportedType, du as SupportedTypes, bo as TagId, a_ as TagPrefix, bq as TagsToTransactionReviewsId, a$ as TagsToTransactionReviewsPrefix, cm as TemplateScenario, bm as TestId, aY as TestPrefix, O as TezosAddress, T as TezosChainId, M as TezosContractAddress, am as TezosEntrypointName, L as TezosImplicitAddress, ai as TezosSignature, dV as TezosTxAuthInput, dX as TezosTxSignatureResponse, br as TransactionAddressesId, b0 as TransactionAddressesPrefix, bY as TransactionData, bx as TransactionExtractedInfosId, b6 as TransactionExtractedInfosPrefix, bt as TransactionFeesId, b2 as TransactionFeesPrefix, bs as TransactionId, bw as TransactionInfosId, b5 as TransactionInfosPrefix, bz as TransactionMethodExtractedInfosId, b8 as TransactionMethodExtractedInfosPrefix, by as TransactionMethodsId, b7 as TransactionMethodsPrefix, bv as TransactionPartiesId, b4 as TransactionPartiesPrefix, b1 as TransactionPrefix, c4 as TransactionResponse, bu as TransactionReviewId, b3 as TransactionReviewPrefix, cK as TxAuthDataSignatureGatingRequest, cO as TxAuthDataSignatureResponse, dR as TxAuthInput, F as TxHash, dT as TxSignatureResponse, dF as UpdateQueryConfigurationInput, dG as UpdateQueryConfigurationResponse, ap as UuidString, eT as VerifiableCredential, eg as VerificationMode, ef as VerificationModes, cj as VerificationOutput, ci as VerificationSessionStatus, ch as VerificationSessionStatuses, ec as VerifyWalletChallengeRequest, bj as WalletId, aV as WalletPrefix, cJ as WalletSignResponse, eb as WalletSignatureResponse, ez as Web2CreateSessionParams, er as WorkflowId, eq as WorkspaceId, df as ZKPOperator, e4 as ZKPRequest, e5 as ZKPRequestFromZKVerifier, c_ as ZeroKnowledgeProofRequest, d4 as ZeroKnowledgeProofResponse, ax as countryISO2toISO3Mapping, aw as countryISO3toISO2Mapping, bf as createBrandedSchemaId, bF as generateId, eR as getCredentialName, x as isValidAddress, ay as isoCountriesNameFromISO2, dg as operatorDisplayMap, az as parseISO3CountryCode, d9 as parseIden3Message, da as parseSessionIdFromUrl, G as shortBlockchainAddress } from './identity-api.schema-58351f1d.esm.js';
export { c as CryptoCode, b as CryptoCodes, a as CurrencyCode, C as CurrencyCodes, u as PaymentType, P as PaymentTypes, T as TRANSACTION_CHARTS, e as TRANSACTION_TABLE_COLUMNS, r as TransactionCurrencyCode, q as TransactionCurrencyCodes, p as TransactionDirection, o as TransactionDirections, w as TransactionPartiesType, v as TransactionPartiesTypes, t as TransactionProvider, s as TransactionProviders, n as TransactionReviewStatus, m as TransactionReviewStatuses, l as TransactionRiskLevel, k as TransactionRiskLevels, f as TransactionTableColumn, h as TransactionType, j as TransactionTypeWithAll, g as TransactionTypes, i as TransactionTypesWithAll, d as TransactionsChartType } from './transaction.schema-0ee693c4.esm.js';
import { z } from 'zod';
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-5587da47.esm.js';
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-730f3456.esm.js';
import 'nanoid';

@@ -7,0 +7,0 @@

{
"name": "@nexeraid/identity-schemas",
"version": "2.16.0-staging",
"version": "2.17.0-dev",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [],

@@ -5,3 +5,3 @@ 'use strict';

var identityApi_schema = require('../../dist/identity-api.schema-841bc821.cjs.dev.js');
var identityApi_schema = require('../../dist/identity-api.schema-de92d7dd.cjs.dev.js');
require('zod');

@@ -21,2 +21,3 @@ require('nanoid');

exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput;
exports.AnyTxAuthInputJsSdk = identityApi_schema.AnyTxAuthInputJsSdk;
exports.ApiTezosTxAuthInput = identityApi_schema.ApiTezosTxAuthInput;

@@ -23,0 +24,0 @@ exports.ApiTxAuthInput = identityApi_schema.ApiTxAuthInput;

@@ -5,3 +5,3 @@ 'use strict';

var identityApi_schema = require('../../dist/identity-api.schema-2fb2ff78.cjs.prod.js');
var identityApi_schema = require('../../dist/identity-api.schema-37706ef2.cjs.prod.js');
require('zod');

@@ -21,2 +21,3 @@ require('nanoid');

exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput;
exports.AnyTxAuthInputJsSdk = identityApi_schema.AnyTxAuthInputJsSdk;
exports.ApiTezosTxAuthInput = identityApi_schema.ApiTezosTxAuthInput;

@@ -23,0 +24,0 @@ exports.ApiTxAuthInput = identityApi_schema.ApiTxAuthInput;

@@ -1,3 +0,3 @@

export { d9 as ARRAY_OPERATORS, cT as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bT as AVAILABLE_FLOWS, cd as AbbreviatedWorkflowScenario, d3 as AllCredentialAttributes, d4 as AllCredentialValues, d$ as AllScenarioExecutionAuthorizationData, dW as AnyTxAuthDataSignatureResponse, dT as AnyTxAuthInput, dO as ApiTezosTxAuthInput, dK as ApiTxAuthInput, da as ArrayOperator, c$ as AuthQrCodeData, cy as AuthSession, cz as AuthSessionData, cW as AuthorizationRequestMessage, cV as AuthorizationRequestMessageType, cU as AuthorizationRequestMessageTypes, cZ as AuthorizationResponseMessage, bU as AvailableFlow, df as BOOLEAN_OPERATORS, c0 as BaseQueryResponse, dg as BooleanOperator, dE as CHALLENGE_QUERY_OPERATORS, cQ as CIRCUIT_IDS, dF as ChallengeQueryOperator, dI as ChallengeQueryOperatorToOperator, dD as ChallengeQuerySchema, cA as ChallengeResponse, cR as CircuitId, bB as CloseScreenNotification, cg as ComplianceImplementationStepsInput, d_ as CreateAuthRequestProps, dv as CreateQueryConfigurationInput, dw as CreateQueryConfigurationResponse, cf as CreateTemplateScenario, c_ as CredentialQrCodeData, dh as DATE_OPERATORS, bV as DataAvailableOnStart, di as DateOperator, dz as DeleteQueryConfigurationInput, dA as DeleteQueryConfigurationResponse, c2 as ExecuteQueryResponse, dV as ExtendedTezosTxAuthDataSignatureResponse, dS as ExtendedTezosTxAuthInput, dU as ExtendedTxAuthDataSignatureResponse, dR as ExtendedTxAuthInput, cx as GenerateWalletChallengeRequest, ci as GetCredentialsRequest, cj as GetCredentialsResponse, cD as GetCustomerStatusRequest, cH as GetCustomerStatusResponse, dQ as GetTezosTxAuthDataSignatureResponse, dM as GetTxAuthDataSignatureResponse, cr as GetTxAuthSigRequest, ct as GetTxAuthSigRequestTezos, cs as GetTxAuthSigResponse, cu as GetTxAuthSigResponseTezos, cK as HostMessage, cv as HostRequestMessage, bZ as HostResponseMessage, dm as IDInformation, cI as IdentityAppMessage, cL as IdentityMessage, bN as IdentityNotificationMessage, bS as IdentityRequestMessage, cw as IdentityResponseMessage, cE as IdentitySdkMessage, cF as IdentitySdkMessageWithIdentifier, cJ as IdentityWallet, bO as InitialDataRequest, bW as InitialDataResponse, bJ as IsVerifiedNotification, cp as IsVerifiedRequest, cq as IsVerifiedResponse, bC as KycCompletionData, bD as KycCompletionNotification, cO as MediaType, cP as MediaTypePID, dd as NUMERIC_OPERATORS, du as NonParsedQueryConfiguration, de as NumericOperator, d5 as OPERATORS, bL as OcvSdkInitialized, bF as OffChainScenarioExecutionData, dZ as OffChainZKP, c1 as OffChainZKPRuleResult, bG as OnChainScenarioExecutionData, d6 as Operator, dG as OperatorMappings, dH as OperatorToChallengeQueryOperator, dr as PartialQueryConfigSimplified, bK as PolygonIdInitialized, cl as PolygonIdRequest, ck as PolygonIdRequestData, cn as PolygonIdResponse, cm as PolygonIdResponseData, cX as ProofData, d0 as QrCodeLinkWithSchemaType, dn as QueryConfig, dq as QueryConfigSimplified, ds as QueryConfigSimplifiedParsed, dt as QueryConfiguration, dC as QueryCredentialType, dB as QueryCredentialTypes, dp as QueryType, cM as RequiredDataRowSchema, cN as RequiredVerificationData, c3 as RuleEngineResponse, bE as RuleEngineScenarioExecutionData, c6 as RuleResultStatus, c7 as RuleResultStatusLabels, c5 as RuleResultStatuses, e0 as SCENARIO_AUTHORIZATION_STATUSES, db as STRING_OPERATORS, dj as SUPPORTED_TYPES, cc as Scenario, bz as ScenarioAuthorizationData, e1 as ScenarioAuthorizationStatus, bH as ScenarioExecutionData, bI as ScenarioExecutionNotification, c4 as ScenarioExecutionResponse, b$ as ScenarioType, b_ as ScenarioTypes, c8 as SdkVerificationOutput, bA as SdkVerificationResponseSchema, bR as SendTransactionRequest, bP as SignatureRequest, bX as SignatureResponse, ch as SimplifiedCredential, bM as StartCompletedNotification, co as StartFlowRequest, dc as StringOperator, dk as SupportedType, dl as SupportedTypes, ce as TemplateScenario, dN as TezosTxAuthInput, dP as TezosTxSignatureResponse, bQ as TransactionData, bY as TransactionResponse, cC as TxAuthDataSignatureGatingRequest, cG as TxAuthDataSignatureResponse, dJ as TxAuthInput, dL as TxSignatureResponse, dx as UpdateQueryConfigurationInput, dy as UpdateQueryConfigurationResponse, cb as VerificationOutput, ca as VerificationSessionStatus, c9 as VerificationSessionStatuses, e3 as VerifyWalletChallengeRequest, cB as WalletSignResponse, e2 as WalletSignatureResponse, d7 as ZKPOperator, dX as ZKPRequest, dY as ZKPRequestFromZKVerifier, cS as ZeroKnowledgeProofRequest, cY as ZeroKnowledgeProofResponse, d8 as operatorDisplayMap, d1 as parseIden3Message, d2 as parseSessionIdFromUrl } from '../../dist/identity-api.schema-ee362a66.esm.js';
export { dh as ARRAY_OPERATORS, c$ as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b$ as AVAILABLE_FLOWS, cl as AbbreviatedWorkflowScenario, db as AllCredentialAttributes, dc as AllCredentialValues, e8 as AllScenarioExecutionAuthorizationData, e3 as AnyTxAuthDataSignatureResponse, d$ as AnyTxAuthInput, e0 as AnyTxAuthInputJsSdk, dW as ApiTezosTxAuthInput, dS as ApiTxAuthInput, di as ArrayOperator, d7 as AuthQrCodeData, cG as AuthSession, cH as AuthSessionData, d2 as AuthorizationRequestMessage, d1 as AuthorizationRequestMessageType, d0 as AuthorizationRequestMessageTypes, d5 as AuthorizationResponseMessage, c0 as AvailableFlow, dn as BOOLEAN_OPERATORS, c8 as BaseQueryResponse, dp as BooleanOperator, dM as CHALLENGE_QUERY_OPERATORS, cY as CIRCUIT_IDS, dN as ChallengeQueryOperator, dQ as ChallengeQueryOperatorToOperator, dL as ChallengeQuerySchema, cI as ChallengeResponse, cZ as CircuitId, bJ as CloseScreenNotification, co as ComplianceImplementationStepsInput, e7 as CreateAuthRequestProps, dD as CreateQueryConfigurationInput, dE as CreateQueryConfigurationResponse, cn as CreateTemplateScenario, d6 as CredentialQrCodeData, dq as DATE_OPERATORS, c1 as DataAvailableOnStart, dr as DateOperator, dH as DeleteQueryConfigurationInput, dI as DeleteQueryConfigurationResponse, ca as ExecuteQueryResponse, e2 as ExtendedTezosTxAuthDataSignatureResponse, d_ as ExtendedTezosTxAuthInput, e1 as ExtendedTxAuthDataSignatureResponse, dZ as ExtendedTxAuthInput, cF as GenerateWalletChallengeRequest, cq as GetCredentialsRequest, cr as GetCredentialsResponse, cL as GetCustomerStatusRequest, cP as GetCustomerStatusResponse, dY as GetTezosTxAuthDataSignatureResponse, dU as GetTxAuthDataSignatureResponse, cz as GetTxAuthSigRequest, cB as GetTxAuthSigRequestTezos, cA as GetTxAuthSigResponse, cC as GetTxAuthSigResponseTezos, cS as HostMessage, cD as HostRequestMessage, c5 as HostResponseMessage, dv as IDInformation, cQ as IdentityAppMessage, cT as IdentityMessage, bV as IdentityNotificationMessage, b_ as IdentityRequestMessage, cE as IdentityResponseMessage, cM as IdentitySdkMessage, cN as IdentitySdkMessageWithIdentifier, cR as IdentityWallet, bW as InitialDataRequest, c2 as InitialDataResponse, bR as IsVerifiedNotification, cx as IsVerifiedRequest, cy as IsVerifiedResponse, bK as KycCompletionData, bL as KycCompletionNotification, cW as MediaType, cX as MediaTypePID, dl as NUMERIC_OPERATORS, dC as NonParsedQueryConfiguration, dm as NumericOperator, dd as OPERATORS, bT as OcvSdkInitialized, bN as OffChainScenarioExecutionData, e6 as OffChainZKP, c9 as OffChainZKPRuleResult, bO as OnChainScenarioExecutionData, de as Operator, dO as OperatorMappings, dP as OperatorToChallengeQueryOperator, dz as PartialQueryConfigSimplified, bS as PolygonIdInitialized, ct as PolygonIdRequest, cs as PolygonIdRequestData, cv as PolygonIdResponse, cu as PolygonIdResponseData, d3 as ProofData, d8 as QrCodeLinkWithSchemaType, dw as QueryConfig, dy as QueryConfigSimplified, dA as QueryConfigSimplifiedParsed, dB as QueryConfiguration, dK as QueryCredentialType, dJ as QueryCredentialTypes, dx as QueryType, cU as RequiredDataRowSchema, cV as RequiredVerificationData, cb as RuleEngineResponse, bM as RuleEngineScenarioExecutionData, ce as RuleResultStatus, cf as RuleResultStatusLabels, cd as RuleResultStatuses, e9 as SCENARIO_AUTHORIZATION_STATUSES, dj as STRING_OPERATORS, ds as SUPPORTED_TYPES, ck as Scenario, bH as ScenarioAuthorizationData, ea as ScenarioAuthorizationStatus, bP as ScenarioExecutionData, bQ as ScenarioExecutionNotification, cc as ScenarioExecutionResponse, c7 as ScenarioType, c6 as ScenarioTypes, cg as SdkVerificationOutput, bI as SdkVerificationResponseSchema, bZ as SendTransactionRequest, bX as SignatureRequest, c3 as SignatureResponse, cp as SimplifiedCredential, bU as StartCompletedNotification, cw as StartFlowRequest, dk as StringOperator, dt as SupportedType, du as SupportedTypes, cm as TemplateScenario, dV as TezosTxAuthInput, dX as TezosTxSignatureResponse, bY as TransactionData, c4 as TransactionResponse, cK as TxAuthDataSignatureGatingRequest, cO as TxAuthDataSignatureResponse, dR as TxAuthInput, dT as TxSignatureResponse, dF as UpdateQueryConfigurationInput, dG as UpdateQueryConfigurationResponse, cj as VerificationOutput, ci as VerificationSessionStatus, ch as VerificationSessionStatuses, ec as VerifyWalletChallengeRequest, cJ as WalletSignResponse, eb as WalletSignatureResponse, df as ZKPOperator, e4 as ZKPRequest, e5 as ZKPRequestFromZKVerifier, c_ as ZeroKnowledgeProofRequest, d4 as ZeroKnowledgeProofResponse, dg as operatorDisplayMap, d9 as parseIden3Message, da as parseSessionIdFromUrl } from '../../dist/identity-api.schema-58351f1d.esm.js';
import 'zod';
import 'nanoid';
{
"name": "@nexeraid/identity-schemas",
"version": "2.16.0-staging",
"version": "2.17.0-dev",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [],

@@ -5,5 +5,5 @@ 'use strict';

var customers_schema = require('../../dist/customers.schema-a23a7d7d.cjs.dev.js');
var customers_schema = require('../../dist/customers.schema-39009ab1.cjs.dev.js');
require('zod');
require('../../dist/identity-api.schema-841bc821.cjs.dev.js');
require('../../dist/identity-api.schema-de92d7dd.cjs.dev.js');
require('nanoid');

@@ -10,0 +10,0 @@

@@ -5,5 +5,5 @@ 'use strict';

var customers_schema = require('../../dist/customers.schema-f2cbacca.cjs.prod.js');
var customers_schema = require('../../dist/customers.schema-25421d59.cjs.prod.js');
require('zod');
require('../../dist/identity-api.schema-2fb2ff78.cjs.prod.js');
require('../../dist/identity-api.schema-37706ef2.cjs.prod.js');
require('nanoid');

@@ -10,0 +10,0 @@

@@ -1,4 +0,4 @@

export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bL as ApplicantMemberOfSchema, b_ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bN as BaseApplicantActionSchema, bl as BaseProvider, c0 as BeneficiaryCompanyCustomerClaims, c1 as BeneficiaryCompanyCustomerClaimsArray, b$ as BeneficiaryType, d4 as BeneficiaryVerificationStatus, d5 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bi as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bo as BigProvider, v as BitRankRequest, w as BitRankVerified, y as BitRankVerifiedError, x as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aC as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aE as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aA as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, aq as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dn as ChainalysisApiError, be as ChainalysisConfig, dl as ChainalysisErrorCodes, br as ChainalysisProvider, dj as ChainalysisRegisterApiResponse, dp as ChainalysisRegisterResponse, di as ChainalysisRequest, dm as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dk as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin, d3 as CompanyDocumentMetaData, aW as ComplyAdvantageAmlFullListing, aV as ComplyAdvantageAmlItemSource, aD as ComplyAdvantageCountryFieldSources, aF as ComplyAdvantageDateOfBirthFieldSources, aU as ComplyAdvantageKeyInformation, aP as ComplyAdvantageMedia, b4 as ComplyAdvantageMonitorSearchDataResponse, b6 as ComplyAdvantageMonitorSearchResponse, b5 as ComplyAdvantageMonitorSearchSuccessResponse, b7 as ComplyAdvantageMonitoredSearchUpdate, aB as ComplyAdvantageNationalityFieldSources, bw as ComplyAdvantageProvider, bv as ComplyAdvantageProviderConfigElement, bu as ComplyAdvantageProviderConfigFilters, bt as ComplyAdvantageProviderConfigTypes, au as ComplyAdvantageReponseMatchStatus, ar as ComplyAdvantageResponseMatchType, aR as ComplyAdvantageSearchDataResponse, aQ as ComplyAdvantageSearchDataResponseHit, aX as ComplyAdvantageSearchEntitiesDataResponse, aZ as ComplyAdvantageSearchEntitiesResponse, aY as ComplyAdvantageSearchEntitiesSuccessResponse, aT as ComplyAdvantageSearchErrorResponse, a_ as ComplyAdvantageSearchRequest, a$ as ComplyAdvantageSearchRequests, b as ComplyAdvantageSearchResponse, aS as ComplyAdvantageSearchSuccessResponse, b1 as ComplyAdvantageUpdateSearchEntitiesRequest, b3 as ComplyAdvantageUpdateSearchEntitiesResponse, b2 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, b0 as ComplyAdvantageUpdateSearchRequest, aN as ComplyAdvantageUser, bC as CreateProviderInput, bD as CreateProviderResponse, aG as CreateSearchInput, cX as CredentialMetadata, cW as CustomerContactInformationOutput, da as CustomerDocumentMetaData, db as CustomerStatusResults, bb as DataProviderOptions, bc as DataProviders, bH as DeleteProviderInput, bI as DeleteProviderResponse, X as DocumentIdMetadata, V as DocumentIdType, U as DocumentIdTypes, cq as DocumentMetadataSchema, a1 as EmailMetadata, E as EmailVerificationAnalysisResponse, cM as EmailVerificationResponse, T as File, cV as GetCredentialsOutput, d7 as GetKybSessionInput, d8 as GetKybSessionResponse, cP as GetKycSessionInput, cQ as GetKycSessionResponse, cY as GetKycSessionResponseWithCredentialsMetadata, bB as GetProviderResponse, bA as GetProvidersResponse, ao as HIGH_RISK_TYPES, bY as INDIVIDUAL_BENEFICIARY_RELATIONS, b9 as IdentityProviderOptions, ba as IdentityProviders, bZ as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bh as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bs as IpqualityscoreProvider, c$ as KYB_RESULTS, d1 as KYB_SESSION_STATUSES, cZ as KYB_STEP_TYPES, cI as KYC_RESULTS, cK as KYC_SESSION_STATUSES, cG as KYC_STEP_TYPES, d0 as KybResult, d2 as KybSessionStatus, c_ as KybStep, cJ as KycResult, cL as KycSessionStatus, cH as KycStep, $ as LivenessMetadata, ap as MEDIUM_RISK_TYPES, aI as MatchStatus, aH as MatchStatuses, aO as MatchTypeDetail, M as MergedProviders, dh as MerkleAddressApiError, dg as MerkleAddressApiResponse, df as MerkleAddressRequest, a as MerkleAddressResponse, de as MerkleBlockChainCodes, dd as MerkleBlockChainNames, dc as MerkleBlockChainTypes, bd as MerkleScienceConfig, bq as MerkleScienceProvider, N as NestedSession, bn as NexeraIdKYBProvider, bm as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, a0 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Z as ProofOfAddressDocumentType, Y as ProofOfAddressDocumentTypes, _ as ProofOfAddressMetadata, cU as ProofOfResidenceDocumentType, cT as ProofOfResidenceMetaData, by as ProviderData, bz as ProviderDataProject, bk as ProviderIntegrationType, bj as ProviderIntegrationTypeOptions, b8 as ProviderWithoutConfig, aa as RESULT_PARSER_ERROR, Q as ReasonCode, L as ReasonCodes, t as RequestProperty, aK as RiskLevel, aJ as RiskLevels, R as RiskSeverity, am as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, ak as SEARCH_FILTER_PEP_TYPE, ai as SEARCH_FILTER_SANCTION_TYPE, av as SEARCH_FILTER_TYPES, a8 as SESSION_NOT_FOUND, ae as STEP_NOT_FOUND, bQ as SUMSUB_APPLICANT_TYPES, cj as SUMSUB_COMPANY_BENEFICIARY_GROUP, c7 as SUMSUB_DOC_TYPES, c9 as SUMSUB_FLOW_LEVEL, cy as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, co as SUMSUB_MEDIA_CONTENT_TYPES, bS as SUMSUB_REVIEW_ANSWERS, cD as SUMSUB_REVIEW_REJECT_LABELS, cF as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bU as SUMSUB_REVIEW_REJECT_TYPES, c5 as SUMSUB_REVIEW_STATUSES, bO as SUMSUB_STEPS, c3 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bf as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bp as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ay as SearchEntityType, ax as SearchEntityTypes, an as SearchFilterAdverseMediaType, al as SearchFilterPepType, aj as SearchFilterSanctionType, aw as SearchFilterType, az as SearchFilters, d6 as SelectKybSession, cN as SelectKycSession, cO as SelectKycSessionStep, G as Session, H as SessionWithoutSteps, D as Status, z as Statuses, a3 as Step, K as StepType, J as StepTypes, bW as SumSubAddress, bX as SumSubApplicantInfo, cs as SumSubApplicantResetSchema, cr as SumSubApplicantReviewStatusSchema, cx as SumSubApplicantSchema, bR as SumSubApplicantType, cn as SumSubApplicantVerificationStepSchema, c2 as SumSubCompanyApplicantInfo, ch as SumSubCompanyApplicantSchema, c8 as SumSubDocType, ca as SumSubFlowLevel, ct as SumSubGenerateExternalWebSdkLinkSchema, ci as SumSubImageId, cd as SumSubImageReviewResultSchema, cg as SumSubIndividualApplicantSchema, cp as SumSubMediaContentType, cb as SumSubRequiredIdDoc, bT as SumSubReviewAnswer, cE as SumSubReviewRejectLabel, bV as SumSubReviewRejectType, cc as SumSubReviewResultSchema, c6 as SumSubReviewStatus, cC as SumSubSimilarApplicantsSchema, bP as SumSubStep, cm as SumSubVerificationStepSchema, bM as SumSubWebhookSchema, cf as SumsubApplicantType, ce as SumsubApplicantTypes, ck as SumsubCompanyBeneficiaryGroup, cw as SumsubKybDataSchema, cB as SumsubKybSessionFlowSection, cA as SumsubKybSessionFlowSectionItem, cz as SumsubKybSessionFlowSectionStatus, cv as SumsubKycDataSchema, cl as SumsubStepStatus, cu as SumsubVideoCallData, c4 as SumsubWebhookInternalStatus, bx as SynapsProvider, ab as SynapsSessionErrorResponse, a4 as SynapsSessionEvent, a7 as SynapsSessionRequest, ac as SynapsSessionResponse, af as SynapsStepErrorResponse, a5 as SynapsStepEvent, ad as SynapsStepRequest, ag as SynapsStepResponse, bG as ToggleProviderInput, a9 as UNKNOWN_ERROR, d9 as UpdateKybSessionOutput, cR as UpdateKycSessionOutput, bE as UpdateProviderInput, bF as UpdateProviderResponse, aM as UpdateSearchEntitiesInput, aL as UpdateSearchInput, cS as VideoKycMetaData, bJ as WEBHOOK_TYPES, F as WebhookPayload, bK as WebhookType, bg as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, as as mappingMatchTypeToLabel, a6 as typeToHumanReadable } from '../../dist/customers.schema-bc9ea241.esm.js';
export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bL as ApplicantMemberOfSchema, b_ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bN as BaseApplicantActionSchema, bl as BaseProvider, c0 as BeneficiaryCompanyCustomerClaims, c1 as BeneficiaryCompanyCustomerClaimsArray, b$ as BeneficiaryType, d4 as BeneficiaryVerificationStatus, d5 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bi as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bo as BigProvider, v as BitRankRequest, w as BitRankVerified, y as BitRankVerifiedError, x as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aC as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aE as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aA as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, aq as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dn as ChainalysisApiError, be as ChainalysisConfig, dl as ChainalysisErrorCodes, br as ChainalysisProvider, dj as ChainalysisRegisterApiResponse, dp as ChainalysisRegisterResponse, di as ChainalysisRequest, dm as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dk as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin, d3 as CompanyDocumentMetaData, aW as ComplyAdvantageAmlFullListing, aV as ComplyAdvantageAmlItemSource, aD as ComplyAdvantageCountryFieldSources, aF as ComplyAdvantageDateOfBirthFieldSources, aU as ComplyAdvantageKeyInformation, aP as ComplyAdvantageMedia, b4 as ComplyAdvantageMonitorSearchDataResponse, b6 as ComplyAdvantageMonitorSearchResponse, b5 as ComplyAdvantageMonitorSearchSuccessResponse, b7 as ComplyAdvantageMonitoredSearchUpdate, aB as ComplyAdvantageNationalityFieldSources, bw as ComplyAdvantageProvider, bv as ComplyAdvantageProviderConfigElement, bu as ComplyAdvantageProviderConfigFilters, bt as ComplyAdvantageProviderConfigTypes, au as ComplyAdvantageReponseMatchStatus, ar as ComplyAdvantageResponseMatchType, aR as ComplyAdvantageSearchDataResponse, aQ as ComplyAdvantageSearchDataResponseHit, aX as ComplyAdvantageSearchEntitiesDataResponse, aZ as ComplyAdvantageSearchEntitiesResponse, aY as ComplyAdvantageSearchEntitiesSuccessResponse, aT as ComplyAdvantageSearchErrorResponse, a_ as ComplyAdvantageSearchRequest, a$ as ComplyAdvantageSearchRequests, b as ComplyAdvantageSearchResponse, aS as ComplyAdvantageSearchSuccessResponse, b1 as ComplyAdvantageUpdateSearchEntitiesRequest, b3 as ComplyAdvantageUpdateSearchEntitiesResponse, b2 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, b0 as ComplyAdvantageUpdateSearchRequest, aN as ComplyAdvantageUser, bC as CreateProviderInput, bD as CreateProviderResponse, aG as CreateSearchInput, cX as CredentialMetadata, cW as CustomerContactInformationOutput, da as CustomerDocumentMetaData, db as CustomerStatusResults, bb as DataProviderOptions, bc as DataProviders, bH as DeleteProviderInput, bI as DeleteProviderResponse, X as DocumentIdMetadata, V as DocumentIdType, U as DocumentIdTypes, cq as DocumentMetadataSchema, a1 as EmailMetadata, E as EmailVerificationAnalysisResponse, cM as EmailVerificationResponse, T as File, cV as GetCredentialsOutput, d7 as GetKybSessionInput, d8 as GetKybSessionResponse, cP as GetKycSessionInput, cQ as GetKycSessionResponse, cY as GetKycSessionResponseWithCredentialsMetadata, bB as GetProviderResponse, bA as GetProvidersResponse, ao as HIGH_RISK_TYPES, bY as INDIVIDUAL_BENEFICIARY_RELATIONS, b9 as IdentityProviderOptions, ba as IdentityProviders, bZ as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bh as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bs as IpqualityscoreProvider, c$ as KYB_RESULTS, d1 as KYB_SESSION_STATUSES, cZ as KYB_STEP_TYPES, cI as KYC_RESULTS, cK as KYC_SESSION_STATUSES, cG as KYC_STEP_TYPES, d0 as KybResult, d2 as KybSessionStatus, c_ as KybStep, cJ as KycResult, cL as KycSessionStatus, cH as KycStep, $ as LivenessMetadata, ap as MEDIUM_RISK_TYPES, aI as MatchStatus, aH as MatchStatuses, aO as MatchTypeDetail, M as MergedProviders, dh as MerkleAddressApiError, dg as MerkleAddressApiResponse, df as MerkleAddressRequest, a as MerkleAddressResponse, de as MerkleBlockChainCodes, dd as MerkleBlockChainNames, dc as MerkleBlockChainTypes, bd as MerkleScienceConfig, bq as MerkleScienceProvider, N as NestedSession, bn as NexeraIdKYBProvider, bm as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, a0 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Z as ProofOfAddressDocumentType, Y as ProofOfAddressDocumentTypes, _ as ProofOfAddressMetadata, cU as ProofOfResidenceDocumentType, cT as ProofOfResidenceMetaData, by as ProviderData, bz as ProviderDataProject, bk as ProviderIntegrationType, bj as ProviderIntegrationTypeOptions, b8 as ProviderWithoutConfig, aa as RESULT_PARSER_ERROR, Q as ReasonCode, L as ReasonCodes, t as RequestProperty, aK as RiskLevel, aJ as RiskLevels, R as RiskSeverity, am as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, ak as SEARCH_FILTER_PEP_TYPE, ai as SEARCH_FILTER_SANCTION_TYPE, av as SEARCH_FILTER_TYPES, a8 as SESSION_NOT_FOUND, ae as STEP_NOT_FOUND, bQ as SUMSUB_APPLICANT_TYPES, cj as SUMSUB_COMPANY_BENEFICIARY_GROUP, c7 as SUMSUB_DOC_TYPES, c9 as SUMSUB_FLOW_LEVEL, cy as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, co as SUMSUB_MEDIA_CONTENT_TYPES, bS as SUMSUB_REVIEW_ANSWERS, cD as SUMSUB_REVIEW_REJECT_LABELS, cF as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bU as SUMSUB_REVIEW_REJECT_TYPES, c5 as SUMSUB_REVIEW_STATUSES, bO as SUMSUB_STEPS, c3 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bf as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bp as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ay as SearchEntityType, ax as SearchEntityTypes, an as SearchFilterAdverseMediaType, al as SearchFilterPepType, aj as SearchFilterSanctionType, aw as SearchFilterType, az as SearchFilters, d6 as SelectKybSession, cN as SelectKycSession, cO as SelectKycSessionStep, G as Session, H as SessionWithoutSteps, D as Status, z as Statuses, a3 as Step, K as StepType, J as StepTypes, bW as SumSubAddress, bX as SumSubApplicantInfo, cs as SumSubApplicantResetSchema, cr as SumSubApplicantReviewStatusSchema, cx as SumSubApplicantSchema, bR as SumSubApplicantType, cn as SumSubApplicantVerificationStepSchema, c2 as SumSubCompanyApplicantInfo, ch as SumSubCompanyApplicantSchema, c8 as SumSubDocType, ca as SumSubFlowLevel, ct as SumSubGenerateExternalWebSdkLinkSchema, ci as SumSubImageId, cd as SumSubImageReviewResultSchema, cg as SumSubIndividualApplicantSchema, cp as SumSubMediaContentType, cb as SumSubRequiredIdDoc, bT as SumSubReviewAnswer, cE as SumSubReviewRejectLabel, bV as SumSubReviewRejectType, cc as SumSubReviewResultSchema, c6 as SumSubReviewStatus, cC as SumSubSimilarApplicantsSchema, bP as SumSubStep, cm as SumSubVerificationStepSchema, bM as SumSubWebhookSchema, cf as SumsubApplicantType, ce as SumsubApplicantTypes, ck as SumsubCompanyBeneficiaryGroup, cw as SumsubKybDataSchema, cB as SumsubKybSessionFlowSection, cA as SumsubKybSessionFlowSectionItem, cz as SumsubKybSessionFlowSectionStatus, cv as SumsubKycDataSchema, cl as SumsubStepStatus, cu as SumsubVideoCallData, c4 as SumsubWebhookInternalStatus, bx as SynapsProvider, ab as SynapsSessionErrorResponse, a4 as SynapsSessionEvent, a7 as SynapsSessionRequest, ac as SynapsSessionResponse, af as SynapsStepErrorResponse, a5 as SynapsStepEvent, ad as SynapsStepRequest, ag as SynapsStepResponse, bG as ToggleProviderInput, a9 as UNKNOWN_ERROR, d9 as UpdateKybSessionOutput, cR as UpdateKycSessionOutput, bE as UpdateProviderInput, bF as UpdateProviderResponse, aM as UpdateSearchEntitiesInput, aL as UpdateSearchInput, cS as VideoKycMetaData, bJ as WEBHOOK_TYPES, F as WebhookPayload, bK as WebhookType, bg as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, as as mappingMatchTypeToLabel, a6 as typeToHumanReadable } from '../../dist/customers.schema-acfd9335.esm.js';
import 'zod';
import '../../dist/identity-api.schema-ee362a66.esm.js';
import '../../dist/identity-api.schema-58351f1d.esm.js';
import 'nanoid';

@@ -5,4 +5,4 @@ 'use strict';

var identityApi_schema = require('../../dist/identity-api.schema-841bc821.cjs.dev.js');
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-b01c1889.cjs.dev.js');
var identityApi_schema = require('../../dist/identity-api.schema-de92d7dd.cjs.dev.js');
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-5d184c4f.cjs.dev.js');
require('zod');

@@ -9,0 +9,0 @@ require('nanoid');

@@ -5,4 +5,4 @@ 'use strict';

var identityApi_schema = require('../../dist/identity-api.schema-2fb2ff78.cjs.prod.js');
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-1a37ad51.cjs.prod.js');
var identityApi_schema = require('../../dist/identity-api.schema-37706ef2.cjs.prod.js');
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-cc8ceb46.cjs.prod.js');
require('zod');

@@ -9,0 +9,0 @@ require('nanoid');

@@ -1,4 +0,4 @@

export { an as Alpha2Country, eL as CredentialMediaType, eG as CredentialNames, eF as CredentialSchemas, eJ as CredentialType, C as CredentialTypes, eE as GenericVerifiableCredentialSchema, er as ID3CredentialSubjectSchema, eB as IDImageCredentialSubjectSchema, eA as IDInformationCredentialSubjectSchema, es as IDScanCredentialSubjectSchema, et as IDScanPassportCredentialSubjectSchema, eu as IDScanSelfieCredentialSubjectSchema, al as ISO3CountryCode, eH as NexeraCredentialType, ez as OLD_AMLScreeningsResultsCredentialSubjectSchema, ev as OLD_IDImageCredentialSubjectSchema, ew as OLD_IDInformationCredentialSubjectSchema, ex as OLD_ProofOfResidenceCredentialSubjectSchema, ey as OLD_SelfieImageCredentialSubjectSchema, eD as ProofOfResidenceCredentialSubjectSchema, eC as SelfieImageCredentialSubjectSchema, eK as VerifiableCredential, ao as countryISO3toISO2Mapping, eI as getCredentialName, aq as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-ee362a66.esm.js';
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-5587da47.esm.js';
export { av as Alpha2Country, eU as CredentialMediaType, eP as CredentialNames, eO as CredentialSchemas, eS as CredentialType, C as CredentialTypes, eN as GenericVerifiableCredentialSchema, eA as ID3CredentialSubjectSchema, eK as IDImageCredentialSubjectSchema, eJ as IDInformationCredentialSubjectSchema, eB as IDScanCredentialSubjectSchema, eC as IDScanPassportCredentialSubjectSchema, eD as IDScanSelfieCredentialSubjectSchema, at as ISO3CountryCode, eQ as NexeraCredentialType, eI as OLD_AMLScreeningsResultsCredentialSubjectSchema, eE as OLD_IDImageCredentialSubjectSchema, eF as OLD_IDInformationCredentialSubjectSchema, eG as OLD_ProofOfResidenceCredentialSubjectSchema, eH as OLD_SelfieImageCredentialSubjectSchema, eM as ProofOfResidenceCredentialSubjectSchema, eL as SelfieImageCredentialSubjectSchema, eT as VerifiableCredential, aw as countryISO3toISO2Mapping, eR as getCredentialName, ay as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-58351f1d.esm.js';
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-730f3456.esm.js';
import 'zod';
import 'nanoid';

@@ -6,6 +6,6 @@ 'use strict';

var zod = require('zod');
var identityApi_schema = require('../../dist/identity-api.schema-841bc821.cjs.dev.js');
var customers_schema = require('../../dist/customers.schema-a23a7d7d.cjs.dev.js');
var identityApi_schema = require('../../dist/identity-api.schema-de92d7dd.cjs.dev.js');
var customers_schema = require('../../dist/customers.schema-39009ab1.cjs.dev.js');
var zodToJsonSchema = require('zod-to-json-schema');
var transaction_schema = require('../../dist/transaction.schema-fda3d623.cjs.dev.js');
var transaction_schema = require('../../dist/transaction.schema-89adc4fb.cjs.dev.js');
require('nanoid');

@@ -12,0 +12,0 @@

@@ -6,6 +6,6 @@ 'use strict';

var zod = require('zod');
var identityApi_schema = require('../../dist/identity-api.schema-2fb2ff78.cjs.prod.js');
var customers_schema = require('../../dist/customers.schema-f2cbacca.cjs.prod.js');
var identityApi_schema = require('../../dist/identity-api.schema-37706ef2.cjs.prod.js');
var customers_schema = require('../../dist/customers.schema-25421d59.cjs.prod.js');
var zodToJsonSchema = require('zod-to-json-schema');
var transaction_schema = require('../../dist/transaction.schema-2f3eb4e6.cjs.prod.js');
var transaction_schema = require('../../dist/transaction.schema-477a98f8.cjs.prod.js');
require('nanoid');

@@ -12,0 +12,0 @@

import { z } from 'zod';
import { af as UuidString, el as ExternalCustomerId, at as RiskScoreType, av as CustomerType, aB as CustomerOnboardingLevel, aD as CustomerStatus, al as ISO3CountryCode, a4 as BlockchainAddress, c6 as RuleResultStatus, eE as GenericVerifiableCredentialSchema, eN as _toArray, eM as _toConsumableArray, ae as EnvironmentSchema } from '../../dist/identity-api.schema-ee362a66.esm.js';
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/customers.schema-bc9ea241.esm.js';
import { ap as UuidString, eu as ExternalCustomerId, aB as RiskScoreType, aD as CustomerType, aJ as CustomerOnboardingLevel, aL as CustomerStatus, at as ISO3CountryCode, _ as BlockchainAddress, ce as RuleResultStatus, eN as GenericVerifiableCredentialSchema, eW as _toArray, eV as _toConsumableArray, ao as EnvironmentSchema } from '../../dist/identity-api.schema-58351f1d.esm.js';
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/customers.schema-acfd9335.esm.js';
import { zodToJsonSchema } from 'zod-to-json-schema';
import { g as TransactionTypes, m as TransactionReviewStatuses } from '../../dist/transaction.schema-62a16b38.esm.js';
import { g as TransactionTypes, m as TransactionReviewStatuses } from '../../dist/transaction.schema-0ee693c4.esm.js';
import 'nanoid';

@@ -7,0 +7,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc