@nexeraid/identity-schemas
Advanced tools
Comparing version 2.3.14-dev to 2.3.15-dev
@@ -31,2 +31,33 @@ import { z } from "zod"; | ||
export type TxAuthInput = z.infer<typeof TxAuthInput>; | ||
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>; | ||
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>; | ||
}, { | ||
userAddress: z.ZodOptional<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; | ||
contractAbi: Record<string, unknown>[]; | ||
contractAddress: `0x${string}`; | ||
functionName: string; | ||
args: unknown[]; | ||
userAddress?: `0x${string}` | undefined; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}, { | ||
contractAbi: Record<string, unknown>[]; | ||
contractAddress: string; | ||
functionName: string; | ||
args: unknown[]; | ||
userAddress?: string | undefined; | ||
chainId?: unknown; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}>; | ||
export type ApiTxAuthInput = z.infer<typeof ApiTxAuthInput>; | ||
export declare const TxSignatureResponse: z.ZodObject<{ | ||
@@ -95,2 +126,30 @@ signature: z.ZodEffects<z.ZodString, string, string>; | ||
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>; | ||
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>; | ||
}, { | ||
userAddress: z.ZodOptional<z.ZodEffects<z.ZodString, `tz${string}`, string>>; | ||
}>, "strip", z.ZodTypeAny, { | ||
contractAddress: `KT1${string}`; | ||
functionName: `%${string}`; | ||
args: string; | ||
chainID: import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS; | ||
userAddress?: `tz${string}` | undefined; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
}, { | ||
contractAddress: string; | ||
functionName: string; | ||
args: string; | ||
userAddress?: string | undefined; | ||
blockExpiration?: number | undefined; | ||
nonce?: number | undefined; | ||
chainID?: unknown; | ||
}>; | ||
export type ApiTezosTxAuthInput = z.infer<typeof ApiTezosTxAuthInput>; | ||
export declare const TezosTxSignatureResponse: z.ZodObject<{ | ||
@@ -97,0 +156,0 @@ signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>; |
@@ -1,5 +0,5 @@ | ||
import { C as CredentialTypes } from './identity-api.schema-c98a388a.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, ak as ALPHA_2_COUNTRIES, cF as ARRAY_OPERATORS, co as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bj as AVAILABLE_FLOWS, dJ as AdditionalCustomerInformationParams, z as AddressSchema, cA as AllCredentialAttributes, cB as AllCredentialValues, dn as AllScenarioExecutionAuthorizationData, al as Alpha2Country, dh as AnyTxAuthDataSignatureResponse, de as AnyTxAuthInput, aN as AppId, I as AptosAddress, J as AptosSignature, cG as ArrayOperator, cw as AuthQrCodeData, c5 as AuthSession, c6 as AuthSessionData, cr as AuthorizationRequestMessage, cq as AuthorizationRequestMessageType, cp as AuthorizationRequestMessageTypes, cu as AuthorizationResponseMessage, bk as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cL as BOOLEAN_OPERATORS, aC as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cM as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aD as CUSTOMERS_CHARTS, aH as CUSTOMER_AUTOMATION_REASONS, aF as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aO as ChallengeId, br as ChallengeQueryOperator, bt as ChallengeQueryOperatorToOperator, bq as ChallengeQueryOperators, bu as ChallengeQuerySchema, c7 as ChallengeResponse, b1 as CloseScreenNotification, bP as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, dl as CreateAuthRequestProps, c_ as CreateQueryConfigurationInput, c$ as CreateQueryConfigurationResponse, dm as CreateZKProofRequestProps, ec as CredentialMediaType, e7 as CredentialNames, cv as CredentialQrCodeData, e6 as CredentialSchemas, ea as CredentialType, C as CredentialTypes, az as CustomerOnboardingLevel, ay as CustomerOnboardingLevels, aB as CustomerStatus, aA as CustomerStatuses, aG as CustomerTableColumn, at as CustomerType, as as CustomerTypes, aE as CustomersChartType, cN as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bl as DataAvailableOnStart, cO as DateOperator, d2 as DeleteQueryConfigurationInput, d3 as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, aL as EmailId, ad as EnvironmentSchema, h as EvmChainId, bw as ExecuteChallengeQueryConfig, bv as ExecuteChallengeQueryInput, by as ExecuteChallengeQueryResponse, dg as ExtendedTezosTxAuthDataSignatureResponse, dd as ExtendedTezosTxAuthInput, df as ExtendedTxAuthDataSignatureResponse, dc as ExtendedTxAuthInput, dO as ExternalCustomerId, dy as FLOW_TYPES, dz as FlowType, G as FunctionCallData, c4 as GenerateWalletChallengeRequest, e5 as GenericVerifiableCredentialSchema, bR as GetCredentialsRequest, bS as GetCredentialsResponse, ca as GetCustomerStatusRequest, ce as GetCustomerStatusResponse, db as GetTezosTxAuthDataSignatureResponse, d8 as GetTxAuthDataSignatureResponse, b_ as GetTxAuthSigRequest, c0 as GetTxAuthSigRequestTezos, b$ as GetTxAuthSigResponse, c1 as GetTxAuthSigResponseTezos, ch as HostMessage, c2 as HostRequestMessage, bp as HostResponseMessage, dU as ID3CredentialSubjectSchema, dC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, dE as IDENTITY_DOCUMENT_OPTIONS, e2 as IDImageCredentialSubjectSchema, cS as IDInformation, e1 as IDInformationCredentialSubjectSchema, dV as IDScanCredentialSubjectSchema, dW as IDScanPassportCredentialSubjectSchema, dX as IDScanSelfieCredentialSubjectSchema, aj as ISO3CountryCode, dI as Identifier, cf as IdentityAppMessage, dQ as IdentityAppV2Web2JWT, dP as IdentityAppV2Web3JWT, dD as IdentityDocumentCountryListOption, dF as IdentityDocumentOptionsType, aK as IdentityId, ci as IdentityMessage, bd as IdentityNotificationMessage, bi as IdentityRequestMessage, c3 as IdentityResponseMessage, cb as IdentitySdkMessage, cc as IdentitySdkMessageWithIdentifier, cg as IdentityWallet, dN as IdentityWidgetAccessToken, dR as IdentityWidgetAccessToken_NEW, dS as IdentityWidgetSessionToken, be as InitialDataRequest, bm as InitialDataResponse, aZ as InstitutionExtractedInfosId, aY as InstitutionId, b9 as IsVerifiedNotification, bY as IsVerifiedRequest, bZ as IsVerifiedResponse, ax as KybOnboardingLevel, aw as KybOnboardingLevels, b2 as KycCompletionData, b3 as KycCompletionNotification, av as KycOnboardingLevel, au as KycOnboardingLevels, cl as MediaType, cm as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, cJ as NUMERIC_OPERATORS, e8 as NexeraCredentialType, cZ as NonParsedQueryConfiguration, cK as NumericOperator, e0 as OLD_AMLScreeningsResultsCredentialSubjectSchema, dY as OLD_IDImageCredentialSubjectSchema, dZ as OLD_IDInformationCredentialSubjectSchema, d_ as OLD_ProofOfResidenceCredentialSubjectSchema, d$ as OLD_SelfieImageCredentialSubjectSchema, bz as OPAChallengeQuery, bb as OcvSdkInitialized, b5 as OffChainScenarioExecutionData, dk as OffChainZKP, bB as OffChainZKPRuleResult, bA as OnChainRuleResult, b6 as OnChainScenarioExecutionData, dq as OnChainZKP, dr as OnChainZKPFromNexeraID, dt as OnChainZKPPayload, ds as OnChainZKPScenarioFromCms, bx as OpaChallengeQueryResponse, cC as Operator, bs as OperatorToChallengeQueryOperator, dK as OrganizationId, af as OtpCode, _ as P2Signature, dG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ai as PUBLIC_SERVICES_SCHEMA_MAP, cW as PartialQueryConfigSimplified, dH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, ba as PolygonIdInitialized, bU as PolygonIdRequest, bT as PolygonIdRequestData, bW as PolygonIdResponse, bV as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, dp as ProjectAuthorizationData, cs as ProofData, e4 as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, cx as QrCodeLinkWithSchemaType, cT as QueryConfig, cV as QueryConfigSimplified, cX as QueryConfigSimplifiedParsed, cY as QueryConfiguration, d5 as QueryCredentialType, d4 as QueryCredentialTypes, cU as QueryType, cj as RequiredDataRowSchema, ck as RequiredVerificationData, ar as RiskScoreType, aq as RiskScoreTypes, bK as RuleEngineResponse, b4 as RuleEngineScenarioExecutionData, bN as RuleResultStatus, bO as RuleResultStatusLabels, bM as RuleResultStatuses, du as SCENARIO_AUTHORIZATION_STATUSES, cH as STRING_OPERATORS, cP as SUPPORTED_TYPES, a$ as ScenarioAuthorizationData, dv as ScenarioAuthorizationStatus, b7 as ScenarioExecutionData, b8 as ScenarioExecutionNotification, bL as ScenarioExecutionResponse, bJ as ScenarioStatus, bI as ScenarioStatuses, bH as ScenarioType, bG as ScenarioTypes, bC as SdkVerificationOutput, b0 as SdkVerificationResponseSchema, e3 as SelfieImageCredentialSubjectSchema, bh as SendTransactionRequest, bf as SignatureRequest, bn as SignatureResponse, bQ as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, bc as StartCompletedNotification, bX as StartFlowRequest, aJ as StorageId, w as String0x, cI as StringOperator, cQ as SupportedType, cR as SupportedTypes, aQ as TagId, aP as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, d9 as TezosTxAuthInput, da as TezosTxSignatureResponse, bg as TransactionData, aV as TransactionExtractedInfosId, aR as TransactionId, aU as TransactionInfosId, aX as TransactionMethodExtractedInfosId, aW as TransactionMethodsId, aT as TransactionPartiesId, bo as TransactionResponse, aS as TransactionReviewId, c9 as TxAuthDataSignatureGatingRequest, cd as TxAuthDataSignatureResponse, d6 as TxAuthInput, D as TxHash, d7 as TxSignatureResponse, d0 as UpdateQueryConfigurationInput, d1 as UpdateQueryConfigurationResponse, ae as UuidString, eb as VerifiableCredential, dB as VerificationMode, dA as VerificationModes, bF as VerificationOutput, bE as VerificationSessionStatus, bD as VerificationSessionStatuses, dx as VerifyWalletChallengeRequest, aM as WalletId, c8 as WalletSignResponse, dw as WalletSignatureResponse, dT as Web2CreateSessionParams, dM as WorkflowId, dL as WorkspaceId, cD as ZKPOperator, di as ZKPRequest, dj as ZKPRequestFromZKVerifier, cn as ZeroKnowledgeProofRequest, ct as ZeroKnowledgeProofResponse, ag as ZodParse, ab as coerceBoolean, an as countryISO2toISO3Mapping, am as countryISO3toISO2Mapping, aI as createBrandedSchemaId, a_ as generateId, e9 as getCredentialName, v as isValidAddress, ao as isoCountriesNameFromISO2, cE as operatorDisplayMap, ap as parseISO3CountryCode, cy as parseIden3Message, cz as parseSessionIdFromUrl, H as shortAddress, ah as shortBlockchainAddress } from './identity-api.schema-c98a388a.esm.js'; | ||
import { C as CredentialTypes } from './identity-api.schema-7abfa17b.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, ak as ALPHA_2_COUNTRIES, cF as ARRAY_OPERATORS, co as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bj as AVAILABLE_FLOWS, dL as AdditionalCustomerInformationParams, z as AddressSchema, cA as AllCredentialAttributes, cB as AllCredentialValues, dq as AllScenarioExecutionAuthorizationData, al as Alpha2Country, dj as AnyTxAuthDataSignatureResponse, dg as AnyTxAuthInput, db as ApiTezosTxAuthInput, d7 as ApiTxAuthInput, aN as AppId, I as AptosAddress, J as AptosSignature, cG as ArrayOperator, cw as AuthQrCodeData, c5 as AuthSession, c6 as AuthSessionData, cr as AuthorizationRequestMessage, cq as AuthorizationRequestMessageType, cp as AuthorizationRequestMessageTypes, cu as AuthorizationResponseMessage, bk as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cL as BOOLEAN_OPERATORS, aC as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cM as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aD as CUSTOMERS_CHARTS, aH as CUSTOMER_AUTOMATION_REASONS, aF as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aO as ChallengeId, br as ChallengeQueryOperator, bt as ChallengeQueryOperatorToOperator, bq as ChallengeQueryOperators, bu as ChallengeQuerySchema, c7 as ChallengeResponse, b1 as CloseScreenNotification, bP as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, dn as CreateAuthRequestProps, c_ as CreateQueryConfigurationInput, c$ as CreateQueryConfigurationResponse, dp as CreateZKProofRequestProps, ee as CredentialMediaType, e9 as CredentialNames, cv as CredentialQrCodeData, e8 as CredentialSchemas, ec as CredentialType, C as CredentialTypes, az as CustomerOnboardingLevel, ay as CustomerOnboardingLevels, aB as CustomerStatus, aA as CustomerStatuses, aG as CustomerTableColumn, at as CustomerType, as as CustomerTypes, aE as CustomersChartType, cN as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bl as DataAvailableOnStart, cO as DateOperator, d2 as DeleteQueryConfigurationInput, d3 as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, aL as EmailId, ad as EnvironmentSchema, h as EvmChainId, bw as ExecuteChallengeQueryConfig, bv as ExecuteChallengeQueryInput, by as ExecuteChallengeQueryResponse, di as ExtendedTezosTxAuthDataSignatureResponse, df as ExtendedTezosTxAuthInput, dh as ExtendedTxAuthDataSignatureResponse, de as ExtendedTxAuthInput, dQ as ExternalCustomerId, dA as FLOW_TYPES, dB as FlowType, G as FunctionCallData, c4 as GenerateWalletChallengeRequest, e7 as GenericVerifiableCredentialSchema, bR as GetCredentialsRequest, bS as GetCredentialsResponse, ca as GetCustomerStatusRequest, ce as GetCustomerStatusResponse, dd as GetTezosTxAuthDataSignatureResponse, d9 as GetTxAuthDataSignatureResponse, b_ as GetTxAuthSigRequest, c0 as GetTxAuthSigRequestTezos, b$ as GetTxAuthSigResponse, c1 as GetTxAuthSigResponseTezos, ch as HostMessage, c2 as HostRequestMessage, bp as HostResponseMessage, dW as ID3CredentialSubjectSchema, dE as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, dG as IDENTITY_DOCUMENT_OPTIONS, e4 as IDImageCredentialSubjectSchema, cS as IDInformation, e3 as IDInformationCredentialSubjectSchema, dX as IDScanCredentialSubjectSchema, dY as IDScanPassportCredentialSubjectSchema, dZ as IDScanSelfieCredentialSubjectSchema, aj as ISO3CountryCode, dK as Identifier, cf as IdentityAppMessage, dS as IdentityAppV2Web2JWT, dR as IdentityAppV2Web3JWT, dF as IdentityDocumentCountryListOption, dH as IdentityDocumentOptionsType, aK as IdentityId, ci as IdentityMessage, bd as IdentityNotificationMessage, bi as IdentityRequestMessage, c3 as IdentityResponseMessage, cb as IdentitySdkMessage, cc as IdentitySdkMessageWithIdentifier, cg as IdentityWallet, dP as IdentityWidgetAccessToken, dT as IdentityWidgetAccessToken_NEW, dU as IdentityWidgetSessionToken, be as InitialDataRequest, bm as InitialDataResponse, aZ as InstitutionExtractedInfosId, aY as InstitutionId, b9 as IsVerifiedNotification, bY as IsVerifiedRequest, bZ as IsVerifiedResponse, ax as KybOnboardingLevel, aw as KybOnboardingLevels, b2 as KycCompletionData, b3 as KycCompletionNotification, av as KycOnboardingLevel, au as KycOnboardingLevels, cl as MediaType, cm as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, cJ as NUMERIC_OPERATORS, ea as NexeraCredentialType, cZ as NonParsedQueryConfiguration, cK as NumericOperator, e2 as OLD_AMLScreeningsResultsCredentialSubjectSchema, d_ as OLD_IDImageCredentialSubjectSchema, d$ as OLD_IDInformationCredentialSubjectSchema, e0 as OLD_ProofOfResidenceCredentialSubjectSchema, e1 as OLD_SelfieImageCredentialSubjectSchema, bz as OPAChallengeQuery, bb as OcvSdkInitialized, b5 as OffChainScenarioExecutionData, dm as OffChainZKP, bB as OffChainZKPRuleResult, bA as OnChainRuleResult, b6 as OnChainScenarioExecutionData, ds as OnChainZKP, dt as OnChainZKPFromNexeraID, dv as OnChainZKPPayload, du as OnChainZKPScenarioFromCms, bx as OpaChallengeQueryResponse, cC as Operator, bs as OperatorToChallengeQueryOperator, dM as OrganizationId, af as OtpCode, _ as P2Signature, dI as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ai as PUBLIC_SERVICES_SCHEMA_MAP, cW as PartialQueryConfigSimplified, dJ as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, ba as PolygonIdInitialized, bU as PolygonIdRequest, bT as PolygonIdRequestData, bW as PolygonIdResponse, bV as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, dr as ProjectAuthorizationData, cs as ProofData, e6 as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, cx as QrCodeLinkWithSchemaType, cT as QueryConfig, cV as QueryConfigSimplified, cX as QueryConfigSimplifiedParsed, cY as QueryConfiguration, d5 as QueryCredentialType, d4 as QueryCredentialTypes, cU as QueryType, cj as RequiredDataRowSchema, ck as RequiredVerificationData, ar as RiskScoreType, aq as RiskScoreTypes, bK as RuleEngineResponse, b4 as RuleEngineScenarioExecutionData, bN as RuleResultStatus, bO as RuleResultStatusLabels, bM as RuleResultStatuses, dw as SCENARIO_AUTHORIZATION_STATUSES, cH as STRING_OPERATORS, cP as SUPPORTED_TYPES, a$ as ScenarioAuthorizationData, dx as ScenarioAuthorizationStatus, b7 as ScenarioExecutionData, b8 as ScenarioExecutionNotification, bL as ScenarioExecutionResponse, bJ as ScenarioStatus, bI as ScenarioStatuses, bH as ScenarioType, bG as ScenarioTypes, bC as SdkVerificationOutput, b0 as SdkVerificationResponseSchema, e5 as SelfieImageCredentialSubjectSchema, bh as SendTransactionRequest, bf as SignatureRequest, bn as SignatureResponse, bQ as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, bc as StartCompletedNotification, bX as StartFlowRequest, aJ as StorageId, w as String0x, cI as StringOperator, cQ as SupportedType, cR as SupportedTypes, aQ as TagId, aP as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, da as TezosTxAuthInput, dc as TezosTxSignatureResponse, bg as TransactionData, aV as TransactionExtractedInfosId, aR as TransactionId, aU as TransactionInfosId, aX as TransactionMethodExtractedInfosId, aW as TransactionMethodsId, aT as TransactionPartiesId, bo as TransactionResponse, aS as TransactionReviewId, c9 as TxAuthDataSignatureGatingRequest, cd as TxAuthDataSignatureResponse, d6 as TxAuthInput, D as TxHash, d8 as TxSignatureResponse, d0 as UpdateQueryConfigurationInput, d1 as UpdateQueryConfigurationResponse, ae as UuidString, ed as VerifiableCredential, dD as VerificationMode, dC as VerificationModes, bF as VerificationOutput, bE as VerificationSessionStatus, bD as VerificationSessionStatuses, dz as VerifyWalletChallengeRequest, aM as WalletId, c8 as WalletSignResponse, dy as WalletSignatureResponse, dV as Web2CreateSessionParams, dO as WorkflowId, dN as WorkspaceId, cD as ZKPOperator, dk as ZKPRequest, dl as ZKPRequestFromZKVerifier, cn as ZeroKnowledgeProofRequest, ct as ZeroKnowledgeProofResponse, ag as ZodParse, ab as coerceBoolean, an as countryISO2toISO3Mapping, am as countryISO3toISO2Mapping, aI as createBrandedSchemaId, a_ as generateId, eb as getCredentialName, v as isValidAddress, ao as isoCountriesNameFromISO2, cE as operatorDisplayMap, ap as parseISO3CountryCode, cy as parseIden3Message, cz as parseSessionIdFromUrl, H as shortAddress, ah as shortBlockchainAddress } from './identity-api.schema-7abfa17b.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-63208941.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-1124e753.esm.js'; | ||
import 'nanoid'; | ||
@@ -6,0 +6,0 @@ |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "2.3.14", | ||
"version": "2.3.15", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-eb77924e.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-d3cab299.cjs.dev.js'); | ||
require('zod'); | ||
@@ -20,2 +20,4 @@ require('nanoid'); | ||
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput; | ||
exports.ApiTezosTxAuthInput = identityApi_schema.ApiTezosTxAuthInput; | ||
exports.ApiTxAuthInput = identityApi_schema.ApiTxAuthInput; | ||
exports.ArrayOperator = identityApi_schema.ArrayOperator; | ||
@@ -22,0 +24,0 @@ exports.AuthQrCodeData = identityApi_schema.AuthQrCodeData; |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-1e40f969.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-c9ba1a36.cjs.prod.js'); | ||
require('zod'); | ||
@@ -20,2 +20,4 @@ require('nanoid'); | ||
exports.AnyTxAuthInput = identityApi_schema.AnyTxAuthInput; | ||
exports.ApiTezosTxAuthInput = identityApi_schema.ApiTezosTxAuthInput; | ||
exports.ApiTxAuthInput = identityApi_schema.ApiTxAuthInput; | ||
exports.ArrayOperator = identityApi_schema.ArrayOperator; | ||
@@ -22,0 +24,0 @@ exports.AuthQrCodeData = identityApi_schema.AuthQrCodeData; |
@@ -1,3 +0,3 @@ | ||
export { cF as ARRAY_OPERATORS, co as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bj as AVAILABLE_FLOWS, cA as AllCredentialAttributes, cB as AllCredentialValues, dn as AllScenarioExecutionAuthorizationData, dh as AnyTxAuthDataSignatureResponse, de as AnyTxAuthInput, cG as ArrayOperator, cw as AuthQrCodeData, c5 as AuthSession, c6 as AuthSessionData, cr as AuthorizationRequestMessage, cq as AuthorizationRequestMessageType, cp as AuthorizationRequestMessageTypes, cu as AuthorizationResponseMessage, bk as AvailableFlow, cL as BOOLEAN_OPERATORS, cM as BooleanOperator, br as ChallengeQueryOperator, bt as ChallengeQueryOperatorToOperator, bq as ChallengeQueryOperators, bu as ChallengeQuerySchema, c7 as ChallengeResponse, b1 as CloseScreenNotification, bP as ComplianceImplementationStepsInput, dl as CreateAuthRequestProps, c_ as CreateQueryConfigurationInput, c$ as CreateQueryConfigurationResponse, dm as CreateZKProofRequestProps, cv as CredentialQrCodeData, cN as DATE_OPERATORS, bl as DataAvailableOnStart, cO as DateOperator, d2 as DeleteQueryConfigurationInput, d3 as DeleteQueryConfigurationResponse, bw as ExecuteChallengeQueryConfig, bv as ExecuteChallengeQueryInput, by as ExecuteChallengeQueryResponse, dg as ExtendedTezosTxAuthDataSignatureResponse, dd as ExtendedTezosTxAuthInput, df as ExtendedTxAuthDataSignatureResponse, dc as ExtendedTxAuthInput, c4 as GenerateWalletChallengeRequest, bR as GetCredentialsRequest, bS as GetCredentialsResponse, ca as GetCustomerStatusRequest, ce as GetCustomerStatusResponse, db as GetTezosTxAuthDataSignatureResponse, d8 as GetTxAuthDataSignatureResponse, b_ as GetTxAuthSigRequest, c0 as GetTxAuthSigRequestTezos, b$ as GetTxAuthSigResponse, c1 as GetTxAuthSigResponseTezos, ch as HostMessage, c2 as HostRequestMessage, bp as HostResponseMessage, cS as IDInformation, cf as IdentityAppMessage, ci as IdentityMessage, bd as IdentityNotificationMessage, bi as IdentityRequestMessage, c3 as IdentityResponseMessage, cb as IdentitySdkMessage, cc as IdentitySdkMessageWithIdentifier, cg as IdentityWallet, be as InitialDataRequest, bm as InitialDataResponse, b9 as IsVerifiedNotification, bY as IsVerifiedRequest, bZ as IsVerifiedResponse, b2 as KycCompletionData, b3 as KycCompletionNotification, cl as MediaType, cm as MediaTypePID, cJ as NUMERIC_OPERATORS, cZ as NonParsedQueryConfiguration, cK as NumericOperator, bz as OPAChallengeQuery, bb as OcvSdkInitialized, b5 as OffChainScenarioExecutionData, dk as OffChainZKP, bB as OffChainZKPRuleResult, bA as OnChainRuleResult, b6 as OnChainScenarioExecutionData, dq as OnChainZKP, dr as OnChainZKPFromNexeraID, dt as OnChainZKPPayload, ds as OnChainZKPScenarioFromCms, bx as OpaChallengeQueryResponse, cC as Operator, bs as OperatorToChallengeQueryOperator, cW as PartialQueryConfigSimplified, ba as PolygonIdInitialized, bU as PolygonIdRequest, bT as PolygonIdRequestData, bW as PolygonIdResponse, bV as PolygonIdResponseData, dp as ProjectAuthorizationData, cs as ProofData, cx as QrCodeLinkWithSchemaType, cT as QueryConfig, cV as QueryConfigSimplified, cX as QueryConfigSimplifiedParsed, cY as QueryConfiguration, d5 as QueryCredentialType, d4 as QueryCredentialTypes, cU as QueryType, cj as RequiredDataRowSchema, ck as RequiredVerificationData, bK as RuleEngineResponse, b4 as RuleEngineScenarioExecutionData, bN as RuleResultStatus, bO as RuleResultStatusLabels, bM as RuleResultStatuses, du as SCENARIO_AUTHORIZATION_STATUSES, cH as STRING_OPERATORS, cP as SUPPORTED_TYPES, a$ as ScenarioAuthorizationData, dv as ScenarioAuthorizationStatus, b7 as ScenarioExecutionData, b8 as ScenarioExecutionNotification, bL as ScenarioExecutionResponse, bJ as ScenarioStatus, bI as ScenarioStatuses, bH as ScenarioType, bG as ScenarioTypes, bC as SdkVerificationOutput, b0 as SdkVerificationResponseSchema, bh as SendTransactionRequest, bf as SignatureRequest, bn as SignatureResponse, bQ as SimplifiedCredential, bc as StartCompletedNotification, bX as StartFlowRequest, cI as StringOperator, cQ as SupportedType, cR as SupportedTypes, d9 as TezosTxAuthInput, da as TezosTxSignatureResponse, bg as TransactionData, bo as TransactionResponse, c9 as TxAuthDataSignatureGatingRequest, cd as TxAuthDataSignatureResponse, d6 as TxAuthInput, d7 as TxSignatureResponse, d0 as UpdateQueryConfigurationInput, d1 as UpdateQueryConfigurationResponse, bF as VerificationOutput, bE as VerificationSessionStatus, bD as VerificationSessionStatuses, dx as VerifyWalletChallengeRequest, c8 as WalletSignResponse, dw as WalletSignatureResponse, cD as ZKPOperator, di as ZKPRequest, dj as ZKPRequestFromZKVerifier, cn as ZeroKnowledgeProofRequest, ct as ZeroKnowledgeProofResponse, cE as operatorDisplayMap, cy as parseIden3Message, cz as parseSessionIdFromUrl } from '../../dist/identity-api.schema-c98a388a.esm.js'; | ||
export { cF as ARRAY_OPERATORS, co as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bj as AVAILABLE_FLOWS, cA as AllCredentialAttributes, cB as AllCredentialValues, dq as AllScenarioExecutionAuthorizationData, dj as AnyTxAuthDataSignatureResponse, dg as AnyTxAuthInput, db as ApiTezosTxAuthInput, d7 as ApiTxAuthInput, cG as ArrayOperator, cw as AuthQrCodeData, c5 as AuthSession, c6 as AuthSessionData, cr as AuthorizationRequestMessage, cq as AuthorizationRequestMessageType, cp as AuthorizationRequestMessageTypes, cu as AuthorizationResponseMessage, bk as AvailableFlow, cL as BOOLEAN_OPERATORS, cM as BooleanOperator, br as ChallengeQueryOperator, bt as ChallengeQueryOperatorToOperator, bq as ChallengeQueryOperators, bu as ChallengeQuerySchema, c7 as ChallengeResponse, b1 as CloseScreenNotification, bP as ComplianceImplementationStepsInput, dn as CreateAuthRequestProps, c_ as CreateQueryConfigurationInput, c$ as CreateQueryConfigurationResponse, dp as CreateZKProofRequestProps, cv as CredentialQrCodeData, cN as DATE_OPERATORS, bl as DataAvailableOnStart, cO as DateOperator, d2 as DeleteQueryConfigurationInput, d3 as DeleteQueryConfigurationResponse, bw as ExecuteChallengeQueryConfig, bv as ExecuteChallengeQueryInput, by as ExecuteChallengeQueryResponse, di as ExtendedTezosTxAuthDataSignatureResponse, df as ExtendedTezosTxAuthInput, dh as ExtendedTxAuthDataSignatureResponse, de as ExtendedTxAuthInput, c4 as GenerateWalletChallengeRequest, bR as GetCredentialsRequest, bS as GetCredentialsResponse, ca as GetCustomerStatusRequest, ce as GetCustomerStatusResponse, dd as GetTezosTxAuthDataSignatureResponse, d9 as GetTxAuthDataSignatureResponse, b_ as GetTxAuthSigRequest, c0 as GetTxAuthSigRequestTezos, b$ as GetTxAuthSigResponse, c1 as GetTxAuthSigResponseTezos, ch as HostMessage, c2 as HostRequestMessage, bp as HostResponseMessage, cS as IDInformation, cf as IdentityAppMessage, ci as IdentityMessage, bd as IdentityNotificationMessage, bi as IdentityRequestMessage, c3 as IdentityResponseMessage, cb as IdentitySdkMessage, cc as IdentitySdkMessageWithIdentifier, cg as IdentityWallet, be as InitialDataRequest, bm as InitialDataResponse, b9 as IsVerifiedNotification, bY as IsVerifiedRequest, bZ as IsVerifiedResponse, b2 as KycCompletionData, b3 as KycCompletionNotification, cl as MediaType, cm as MediaTypePID, cJ as NUMERIC_OPERATORS, cZ as NonParsedQueryConfiguration, cK as NumericOperator, bz as OPAChallengeQuery, bb as OcvSdkInitialized, b5 as OffChainScenarioExecutionData, dm as OffChainZKP, bB as OffChainZKPRuleResult, bA as OnChainRuleResult, b6 as OnChainScenarioExecutionData, ds as OnChainZKP, dt as OnChainZKPFromNexeraID, dv as OnChainZKPPayload, du as OnChainZKPScenarioFromCms, bx as OpaChallengeQueryResponse, cC as Operator, bs as OperatorToChallengeQueryOperator, cW as PartialQueryConfigSimplified, ba as PolygonIdInitialized, bU as PolygonIdRequest, bT as PolygonIdRequestData, bW as PolygonIdResponse, bV as PolygonIdResponseData, dr as ProjectAuthorizationData, cs as ProofData, cx as QrCodeLinkWithSchemaType, cT as QueryConfig, cV as QueryConfigSimplified, cX as QueryConfigSimplifiedParsed, cY as QueryConfiguration, d5 as QueryCredentialType, d4 as QueryCredentialTypes, cU as QueryType, cj as RequiredDataRowSchema, ck as RequiredVerificationData, bK as RuleEngineResponse, b4 as RuleEngineScenarioExecutionData, bN as RuleResultStatus, bO as RuleResultStatusLabels, bM as RuleResultStatuses, dw as SCENARIO_AUTHORIZATION_STATUSES, cH as STRING_OPERATORS, cP as SUPPORTED_TYPES, a$ as ScenarioAuthorizationData, dx as ScenarioAuthorizationStatus, b7 as ScenarioExecutionData, b8 as ScenarioExecutionNotification, bL as ScenarioExecutionResponse, bJ as ScenarioStatus, bI as ScenarioStatuses, bH as ScenarioType, bG as ScenarioTypes, bC as SdkVerificationOutput, b0 as SdkVerificationResponseSchema, bh as SendTransactionRequest, bf as SignatureRequest, bn as SignatureResponse, bQ as SimplifiedCredential, bc as StartCompletedNotification, bX as StartFlowRequest, cI as StringOperator, cQ as SupportedType, cR as SupportedTypes, da as TezosTxAuthInput, dc as TezosTxSignatureResponse, bg as TransactionData, bo as TransactionResponse, c9 as TxAuthDataSignatureGatingRequest, cd as TxAuthDataSignatureResponse, d6 as TxAuthInput, d8 as TxSignatureResponse, d0 as UpdateQueryConfigurationInput, d1 as UpdateQueryConfigurationResponse, bF as VerificationOutput, bE as VerificationSessionStatus, bD as VerificationSessionStatuses, dz as VerifyWalletChallengeRequest, c8 as WalletSignResponse, dy as WalletSignatureResponse, cD as ZKPOperator, dk as ZKPRequest, dl as ZKPRequestFromZKVerifier, cn as ZeroKnowledgeProofRequest, ct as ZeroKnowledgeProofResponse, cE as operatorDisplayMap, cy as parseIden3Message, cz as parseSessionIdFromUrl } from '../../dist/identity-api.schema-7abfa17b.esm.js'; | ||
import 'zod'; | ||
import 'nanoid'; |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "2.3.14-dev", | ||
"version": "2.3.15-dev", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var customers_schema = require('../../dist/customers.schema-e6bad99e.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-15015660.cjs.dev.js'); | ||
require('zod'); | ||
require('../../dist/identity-api.schema-eb77924e.cjs.dev.js'); | ||
require('../../dist/identity-api.schema-d3cab299.cjs.dev.js'); | ||
require('nanoid'); | ||
@@ -10,0 +10,0 @@ |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var customers_schema = require('../../dist/customers.schema-a089e7aa.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-13b1a044.cjs.prod.js'); | ||
require('zod'); | ||
require('../../dist/identity-api.schema-1e40f969.cjs.prod.js'); | ||
require('../../dist/identity-api.schema-c9ba1a36.cjs.prod.js'); | ||
require('nanoid'); | ||
@@ -10,0 +10,0 @@ |
@@ -1,4 +0,4 @@ | ||
export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bK as ApplicantMemberOfSchema, bZ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bM as BaseApplicantActionSchema, bk as BaseProvider, b$ as BeneficiaryCompanyCustomerClaims, c0 as BeneficiaryCompanyCustomerClaimsArray, b_ as BeneficiaryType, d3 as BeneficiaryVerificationStatus, d4 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bh as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bn 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, dm as ChainalysisApiError, bd as ChainalysisConfig, dk as ChainalysisErrorCodes, bq as ChainalysisProvider, di as ChainalysisRegisterApiResponse, dn as ChainalysisRegisterResponse, dh as ChainalysisRequest, dl as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dj as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin, d2 as CompanyDocumentMetaData, aW as ComplyAdvantageAmlFullListing, aV as ComplyAdvantageAmlItemSource, aD as ComplyAdvantageCountryFieldSources, aF as ComplyAdvantageDateOfBirthFieldSources, aU as ComplyAdvantageKeyInformation, aP as ComplyAdvantageMedia, b3 as ComplyAdvantageMonitorSearchDataResponse, b5 as ComplyAdvantageMonitorSearchResponse, b4 as ComplyAdvantageMonitorSearchSuccessResponse, b6 as ComplyAdvantageMonitoredSearchUpdate, aB as ComplyAdvantageNationalityFieldSources, bv as ComplyAdvantageProvider, bu as ComplyAdvantageProviderConfigElement, bt as ComplyAdvantageProviderConfigFilters, bs 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, b as ComplyAdvantageSearchResponse, aS as ComplyAdvantageSearchSuccessResponse, b0 as ComplyAdvantageUpdateSearchEntitiesRequest, b2 as ComplyAdvantageUpdateSearchEntitiesResponse, b1 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a$ as ComplyAdvantageUpdateSearchRequest, aN as ComplyAdvantageUser, bB as CreateProviderInput, bC as CreateProviderResponse, aG as CreateSearchInput, cW as CredentialMetadata, cV as CustomerContactInformationOutput, d9 as CustomerDocumentMetaData, da as CustomerStatusResults, ba as DataProviderOptions, bb as DataProviders, bG as DeleteProviderInput, bH as DeleteProviderResponse, X as DocumentIdMetadata, V as DocumentIdType, U as DocumentIdTypes, cp as DocumentMetadataSchema, a1 as EmailMetadata, E as EmailVerificationAnalysisResponse, cL as EmailVerificationResponse, T as File, cU as GetCredentialsOutput, d6 as GetKybSessionInput, d7 as GetKybSessionResponse, cO as GetKycSessionInput, cP as GetKycSessionResponse, cX as GetKycSessionResponseWithCredentialsMetadata, bA as GetProviderResponse, bz as GetProvidersResponse, ao as HIGH_RISK_TYPES, bX as INDIVIDUAL_BENEFICIARY_RELATIONS, b8 as IdentityProviderOptions, b9 as IdentityProviders, bY as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bg as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, br as IpqualityscoreProvider, c_ as KYB_RESULTS, d0 as KYB_SESSION_STATUSES, cY as KYB_STEP_TYPES, cH as KYC_RESULTS, cJ as KYC_SESSION_STATUSES, cF as KYC_STEP_TYPES, c$ as KybResult, d1 as KybSessionStatus, cZ as KybStep, cI as KycResult, cK as KycSessionStatus, cG as KycStep, $ as LivenessMetadata, ap as MEDIUM_RISK_TYPES, aI as MatchStatus, aH as MatchStatuses, aO as MatchTypeDetail, M as MergedProviders, dg as MerkleAddressApiError, df as MerkleAddressApiResponse, de as MerkleAddressRequest, a as MerkleAddressResponse, dd as MerkleBlockChainCodes, dc as MerkleBlockChainNames, db as MerkleBlockChainTypes, bc as MerkleScienceConfig, bp as MerkleScienceProvider, N as NestedSession, bm as NexeraIdKYBProvider, bl as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, a0 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Z as ProofOfAddressDocumentType, Y as ProofOfAddressDocumentTypes, _ as ProofOfAddressMetadata, cT as ProofOfResidenceDocumentType, cS as ProofOfResidenceMetaData, bx as ProviderData, by as ProviderDataProject, bj as ProviderIntegrationType, bi as ProviderIntegrationTypeOptions, b7 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, bP as SUMSUB_APPLICANT_TYPES, ci as SUMSUB_COMPANY_BENEFICIARY_GROUP, c6 as SUMSUB_DOC_TYPES, c8 as SUMSUB_FLOW_LEVEL, cx as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cn as SUMSUB_MEDIA_CONTENT_TYPES, bR as SUMSUB_REVIEW_ANSWERS, cC as SUMSUB_REVIEW_REJECT_LABELS, cE as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bT as SUMSUB_REVIEW_REJECT_TYPES, c4 as SUMSUB_REVIEW_STATUSES, bN as SUMSUB_STEPS, c2 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, be as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bo 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, d5 as SelectKybSession, cM as SelectKycSession, cN as SelectKycSessionStep, G as Session, H as SessionWithoutSteps, D as Status, z as Statuses, a3 as Step, K as StepType, J as StepTypes, bV as SumSubAddress, bW as SumSubApplicantInfo, cr as SumSubApplicantResetSchema, cq as SumSubApplicantReviewStatusSchema, cw as SumSubApplicantSchema, bQ as SumSubApplicantType, cm as SumSubApplicantVerificationStepSchema, c1 as SumSubCompanyApplicantInfo, cg as SumSubCompanyApplicantSchema, c7 as SumSubDocType, c9 as SumSubFlowLevel, cs as SumSubGenerateExternalWebSdkLinkSchema, ch as SumSubImageId, cc as SumSubImageReviewResultSchema, cf as SumSubIndividualApplicantSchema, co as SumSubMediaContentType, ca as SumSubRequiredIdDoc, bS as SumSubReviewAnswer, cD as SumSubReviewRejectLabel, bU as SumSubReviewRejectType, cb as SumSubReviewResultSchema, c5 as SumSubReviewStatus, cB as SumSubSimilarApplicantsSchema, bO as SumSubStep, cl as SumSubVerificationStepSchema, bL as SumSubWebhookSchema, ce as SumsubApplicantType, cd as SumsubApplicantTypes, cj as SumsubCompanyBeneficiaryGroup, cv as SumsubKybDataSchema, cA as SumsubKybSessionFlowSection, cz as SumsubKybSessionFlowSectionItem, cy as SumsubKybSessionFlowSectionStatus, cu as SumsubKycDataSchema, ck as SumsubStepStatus, ct as SumsubVideoCallData, c3 as SumsubWebhookInternalStatus, bw 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, bF as ToggleProviderInput, a9 as UNKNOWN_ERROR, d8 as UpdateKybSessionOutput, cQ as UpdateKycSessionOutput, bD as UpdateProviderInput, bE as UpdateProviderResponse, aM as UpdateSearchEntitiesInput, aL as UpdateSearchInput, cR as VideoKycMetaData, bI as WEBHOOK_TYPES, F as WebhookPayload, bJ as WebhookType, bf as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, as as mappingMatchTypeToLabel, a6 as typeToHumanReadable } from '../../dist/customers.schema-e53cff10.esm.js'; | ||
export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bK as ApplicantMemberOfSchema, bZ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bM as BaseApplicantActionSchema, bk as BaseProvider, b$ as BeneficiaryCompanyCustomerClaims, c0 as BeneficiaryCompanyCustomerClaimsArray, b_ as BeneficiaryType, d3 as BeneficiaryVerificationStatus, d4 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bh as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bn 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, dm as ChainalysisApiError, bd as ChainalysisConfig, dk as ChainalysisErrorCodes, bq as ChainalysisProvider, di as ChainalysisRegisterApiResponse, dn as ChainalysisRegisterResponse, dh as ChainalysisRequest, dl as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dj as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin, d2 as CompanyDocumentMetaData, aW as ComplyAdvantageAmlFullListing, aV as ComplyAdvantageAmlItemSource, aD as ComplyAdvantageCountryFieldSources, aF as ComplyAdvantageDateOfBirthFieldSources, aU as ComplyAdvantageKeyInformation, aP as ComplyAdvantageMedia, b3 as ComplyAdvantageMonitorSearchDataResponse, b5 as ComplyAdvantageMonitorSearchResponse, b4 as ComplyAdvantageMonitorSearchSuccessResponse, b6 as ComplyAdvantageMonitoredSearchUpdate, aB as ComplyAdvantageNationalityFieldSources, bv as ComplyAdvantageProvider, bu as ComplyAdvantageProviderConfigElement, bt as ComplyAdvantageProviderConfigFilters, bs 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, b as ComplyAdvantageSearchResponse, aS as ComplyAdvantageSearchSuccessResponse, b0 as ComplyAdvantageUpdateSearchEntitiesRequest, b2 as ComplyAdvantageUpdateSearchEntitiesResponse, b1 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a$ as ComplyAdvantageUpdateSearchRequest, aN as ComplyAdvantageUser, bB as CreateProviderInput, bC as CreateProviderResponse, aG as CreateSearchInput, cW as CredentialMetadata, cV as CustomerContactInformationOutput, d9 as CustomerDocumentMetaData, da as CustomerStatusResults, ba as DataProviderOptions, bb as DataProviders, bG as DeleteProviderInput, bH as DeleteProviderResponse, X as DocumentIdMetadata, V as DocumentIdType, U as DocumentIdTypes, cp as DocumentMetadataSchema, a1 as EmailMetadata, E as EmailVerificationAnalysisResponse, cL as EmailVerificationResponse, T as File, cU as GetCredentialsOutput, d6 as GetKybSessionInput, d7 as GetKybSessionResponse, cO as GetKycSessionInput, cP as GetKycSessionResponse, cX as GetKycSessionResponseWithCredentialsMetadata, bA as GetProviderResponse, bz as GetProvidersResponse, ao as HIGH_RISK_TYPES, bX as INDIVIDUAL_BENEFICIARY_RELATIONS, b8 as IdentityProviderOptions, b9 as IdentityProviders, bY as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bg as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, br as IpqualityscoreProvider, c_ as KYB_RESULTS, d0 as KYB_SESSION_STATUSES, cY as KYB_STEP_TYPES, cH as KYC_RESULTS, cJ as KYC_SESSION_STATUSES, cF as KYC_STEP_TYPES, c$ as KybResult, d1 as KybSessionStatus, cZ as KybStep, cI as KycResult, cK as KycSessionStatus, cG as KycStep, $ as LivenessMetadata, ap as MEDIUM_RISK_TYPES, aI as MatchStatus, aH as MatchStatuses, aO as MatchTypeDetail, M as MergedProviders, dg as MerkleAddressApiError, df as MerkleAddressApiResponse, de as MerkleAddressRequest, a as MerkleAddressResponse, dd as MerkleBlockChainCodes, dc as MerkleBlockChainNames, db as MerkleBlockChainTypes, bc as MerkleScienceConfig, bp as MerkleScienceProvider, N as NestedSession, bm as NexeraIdKYBProvider, bl as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, a0 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Z as ProofOfAddressDocumentType, Y as ProofOfAddressDocumentTypes, _ as ProofOfAddressMetadata, cT as ProofOfResidenceDocumentType, cS as ProofOfResidenceMetaData, bx as ProviderData, by as ProviderDataProject, bj as ProviderIntegrationType, bi as ProviderIntegrationTypeOptions, b7 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, bP as SUMSUB_APPLICANT_TYPES, ci as SUMSUB_COMPANY_BENEFICIARY_GROUP, c6 as SUMSUB_DOC_TYPES, c8 as SUMSUB_FLOW_LEVEL, cx as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cn as SUMSUB_MEDIA_CONTENT_TYPES, bR as SUMSUB_REVIEW_ANSWERS, cC as SUMSUB_REVIEW_REJECT_LABELS, cE as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bT as SUMSUB_REVIEW_REJECT_TYPES, c4 as SUMSUB_REVIEW_STATUSES, bN as SUMSUB_STEPS, c2 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, be as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bo 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, d5 as SelectKybSession, cM as SelectKycSession, cN as SelectKycSessionStep, G as Session, H as SessionWithoutSteps, D as Status, z as Statuses, a3 as Step, K as StepType, J as StepTypes, bV as SumSubAddress, bW as SumSubApplicantInfo, cr as SumSubApplicantResetSchema, cq as SumSubApplicantReviewStatusSchema, cw as SumSubApplicantSchema, bQ as SumSubApplicantType, cm as SumSubApplicantVerificationStepSchema, c1 as SumSubCompanyApplicantInfo, cg as SumSubCompanyApplicantSchema, c7 as SumSubDocType, c9 as SumSubFlowLevel, cs as SumSubGenerateExternalWebSdkLinkSchema, ch as SumSubImageId, cc as SumSubImageReviewResultSchema, cf as SumSubIndividualApplicantSchema, co as SumSubMediaContentType, ca as SumSubRequiredIdDoc, bS as SumSubReviewAnswer, cD as SumSubReviewRejectLabel, bU as SumSubReviewRejectType, cb as SumSubReviewResultSchema, c5 as SumSubReviewStatus, cB as SumSubSimilarApplicantsSchema, bO as SumSubStep, cl as SumSubVerificationStepSchema, bL as SumSubWebhookSchema, ce as SumsubApplicantType, cd as SumsubApplicantTypes, cj as SumsubCompanyBeneficiaryGroup, cv as SumsubKybDataSchema, cA as SumsubKybSessionFlowSection, cz as SumsubKybSessionFlowSectionItem, cy as SumsubKybSessionFlowSectionStatus, cu as SumsubKycDataSchema, ck as SumsubStepStatus, ct as SumsubVideoCallData, c3 as SumsubWebhookInternalStatus, bw 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, bF as ToggleProviderInput, a9 as UNKNOWN_ERROR, d8 as UpdateKybSessionOutput, cQ as UpdateKycSessionOutput, bD as UpdateProviderInput, bE as UpdateProviderResponse, aM as UpdateSearchEntitiesInput, aL as UpdateSearchInput, cR as VideoKycMetaData, bI as WEBHOOK_TYPES, F as WebhookPayload, bJ as WebhookType, bf as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, as as mappingMatchTypeToLabel, a6 as typeToHumanReadable } from '../../dist/customers.schema-ed9aee9d.esm.js'; | ||
import 'zod'; | ||
import '../../dist/identity-api.schema-c98a388a.esm.js'; | ||
import '../../dist/identity-api.schema-7abfa17b.esm.js'; | ||
import 'nanoid'; |
@@ -5,4 +5,4 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-eb77924e.cjs.dev.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-98b0096f.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-d3cab299.cjs.dev.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-dd6842f2.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-1e40f969.cjs.prod.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-d9510248.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-c9ba1a36.cjs.prod.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-07f13382.cjs.prod.js'); | ||
require('zod'); | ||
@@ -9,0 +9,0 @@ require('nanoid'); |
@@ -1,4 +0,4 @@ | ||
export { al as Alpha2Country, ec as CredentialMediaType, e7 as CredentialNames, e6 as CredentialSchemas, ea as CredentialType, C as CredentialTypes, e5 as GenericVerifiableCredentialSchema, dU as ID3CredentialSubjectSchema, e2 as IDImageCredentialSubjectSchema, e1 as IDInformationCredentialSubjectSchema, dV as IDScanCredentialSubjectSchema, dW as IDScanPassportCredentialSubjectSchema, dX as IDScanSelfieCredentialSubjectSchema, aj as ISO3CountryCode, e8 as NexeraCredentialType, e0 as OLD_AMLScreeningsResultsCredentialSubjectSchema, dY as OLD_IDImageCredentialSubjectSchema, dZ as OLD_IDInformationCredentialSubjectSchema, d_ as OLD_ProofOfResidenceCredentialSubjectSchema, d$ as OLD_SelfieImageCredentialSubjectSchema, e4 as ProofOfResidenceCredentialSubjectSchema, e3 as SelfieImageCredentialSubjectSchema, eb as VerifiableCredential, am as countryISO3toISO2Mapping, e9 as getCredentialName, ao as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-c98a388a.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-63208941.esm.js'; | ||
export { al as Alpha2Country, ee as CredentialMediaType, e9 as CredentialNames, e8 as CredentialSchemas, ec as CredentialType, C as CredentialTypes, e7 as GenericVerifiableCredentialSchema, dW as ID3CredentialSubjectSchema, e4 as IDImageCredentialSubjectSchema, e3 as IDInformationCredentialSubjectSchema, dX as IDScanCredentialSubjectSchema, dY as IDScanPassportCredentialSubjectSchema, dZ as IDScanSelfieCredentialSubjectSchema, aj as ISO3CountryCode, ea as NexeraCredentialType, e2 as OLD_AMLScreeningsResultsCredentialSubjectSchema, d_ as OLD_IDImageCredentialSubjectSchema, d$ as OLD_IDInformationCredentialSubjectSchema, e0 as OLD_ProofOfResidenceCredentialSubjectSchema, e1 as OLD_SelfieImageCredentialSubjectSchema, e6 as ProofOfResidenceCredentialSubjectSchema, e5 as SelfieImageCredentialSubjectSchema, ed as VerifiableCredential, am as countryISO3toISO2Mapping, eb as getCredentialName, ao as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-7abfa17b.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-1124e753.esm.js'; | ||
import 'zod'; | ||
import 'nanoid'; |
@@ -6,4 +6,4 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-eb77924e.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-e6bad99e.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-d3cab299.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-15015660.cjs.dev.js'); | ||
var zodToJsonSchema = require('zod-to-json-schema'); | ||
@@ -10,0 +10,0 @@ require('nanoid'); |
@@ -6,4 +6,4 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-1e40f969.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-a089e7aa.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-c9ba1a36.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-13b1a044.cjs.prod.js'); | ||
var zodToJsonSchema = require('zod-to-json-schema'); | ||
@@ -10,0 +10,0 @@ require('nanoid'); |
import { z } from 'zod'; | ||
import { ae as UuidString, dO as ExternalCustomerId, ar as RiskScoreType, at as CustomerType, az as CustomerOnboardingLevel, aB as CustomerStatus, aj as ISO3CountryCode, a2 as BlockchainAddress, bN as RuleResultStatus, e5 as GenericVerifiableCredentialSchema, ee as _toArray, ed as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-c98a388a.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-e53cff10.esm.js'; | ||
import { ae as UuidString, dQ as ExternalCustomerId, ar as RiskScoreType, at as CustomerType, az as CustomerOnboardingLevel, aB as CustomerStatus, aj as ISO3CountryCode, a2 as BlockchainAddress, bN as RuleResultStatus, e7 as GenericVerifiableCredentialSchema, eg as _toArray, ef as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-7abfa17b.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-ed9aee9d.esm.js'; | ||
import { zodToJsonSchema } from 'zod-to-json-schema'; | ||
@@ -5,0 +5,0 @@ import 'nanoid'; |
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 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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13968637
124302