@nexeraid/identity-schemas
Advanced tools
Comparing version 2.3.23-staging to 2.3.24-dev
import { z } from "zod"; | ||
export type StorageId = `storage_${string}`; | ||
export type IdentityId = `identity_${string}`; | ||
export type EmailId = `email_${string}`; | ||
export type WalletId = `wallet_${string}`; | ||
export type AppId = `app_${string}`; | ||
export type ChallengeId = `challenge_${string}`; | ||
export type TestId = `test_${string}`; | ||
export type CustomerScreeningId = `customer_screening_${string}`; | ||
export type TagId = `tag_${string}`; | ||
export type TransactionId = `transaction_${string}`; | ||
export type TransactionReviewId = `transaction_review_${string}`; | ||
export type TransactionPartiesId = `transaction_parties_${string}`; | ||
export type TransactionInfosId = `transaction_infos_${string}`; | ||
export type TransactionExtractedInfosId = `transaction_extracted_infos_${string}`; | ||
export type TransactionMethodsId = `transaction_methods_${string}`; | ||
export type TransactionMethodExtractedInfosId = `transaction_method_extracted_infos_${string}`; | ||
export type InstitutionId = `institution_${string}`; | ||
export type InstitutionExtractedInfosId = `institution_extracted_infos_${string}`; | ||
export declare const StoragePrefix = "storage"; | ||
export declare const IdentityPrefix = "identity"; | ||
export declare const EmailPrefix = "email"; | ||
export declare const WalletPrefix = "wallet"; | ||
export declare const AppPrefix = "app"; | ||
export declare const ChallengePrefix = "challenge"; | ||
export declare const TestPrefix = "test"; | ||
export declare const CustomerScreeningPrefix = "cstscr"; | ||
export declare const TagPrefix = "tag"; | ||
export declare const TransactionPrefix = "tx"; | ||
export declare const TransactionReviewPrefix = "txrev"; | ||
export declare const TransactionPartiesPrefix = "txpar"; | ||
export declare const TransactionInfosPrefix = "txi"; | ||
export declare const TransactionExtractedInfosPrefix = "txei"; | ||
export declare const TransactionMethodsPrefix = "txm"; | ||
export declare const TransactionMethodExtractedInfosPrefix = "txmei"; | ||
export declare const InstitutionPrefix = "ins"; | ||
export declare const InstitutionExtractedInfosPrefix = "insei"; | ||
export type StoragePrefix = typeof StoragePrefix; | ||
export type IdentityPrefix = typeof IdentityPrefix; | ||
export type EmailPrefix = typeof EmailPrefix; | ||
export type WalletPrefix = typeof WalletPrefix; | ||
export type AppPrefix = typeof AppPrefix; | ||
export type ChallengePrefix = typeof ChallengePrefix; | ||
export type TestPrefix = typeof TestPrefix; | ||
export type CustomerScreeningPrefix = typeof CustomerScreeningPrefix; | ||
export type TagPrefix = typeof TagPrefix; | ||
export type TransactionPrefix = typeof TransactionPrefix; | ||
export type TransactionReviewPrefix = typeof TransactionReviewPrefix; | ||
export type TransactionPartiesPrefix = typeof TransactionPartiesPrefix; | ||
export type TransactionInfosPrefix = typeof TransactionInfosPrefix; | ||
export type TransactionExtractedInfosPrefix = typeof TransactionExtractedInfosPrefix; | ||
export type TransactionMethodsPrefix = typeof TransactionMethodsPrefix; | ||
export type TransactionMethodExtractedInfosPrefix = typeof TransactionMethodExtractedInfosPrefix; | ||
export type InstitutionPrefix = typeof InstitutionPrefix; | ||
export type InstitutionExtractedInfosPrefix = typeof InstitutionExtractedInfosPrefix; | ||
export type StorageId = `${StoragePrefix}_${string}`; | ||
export type IdentityId = `${IdentityPrefix}_${string}`; | ||
export type EmailId = `${EmailPrefix}_${string}`; | ||
export type WalletId = `${WalletPrefix}_${string}`; | ||
export type AppId = `${AppPrefix}_${string}`; | ||
export type ChallengeId = `${ChallengePrefix}_${string}`; | ||
export type TestId = `${TestPrefix}_${string}`; | ||
export type CustomerScreeningId = `${CustomerScreeningPrefix}_${string}`; | ||
export type TagId = `${TagPrefix}_${string}`; | ||
export type TransactionId = `${TransactionPrefix}_${string}`; | ||
export type TransactionReviewId = `${TransactionReviewPrefix}_${string}`; | ||
export type TransactionPartiesId = `${TransactionPartiesPrefix}_${string}`; | ||
export type TransactionInfosId = `${TransactionInfosPrefix}_${string}`; | ||
export type TransactionExtractedInfosId = `${TransactionExtractedInfosPrefix}_${string}`; | ||
export type TransactionMethodsId = `${TransactionMethodsPrefix}_${string}`; | ||
export type TransactionMethodExtractedInfosId = `${TransactionMethodExtractedInfosPrefix}_${string}`; | ||
export type InstitutionId = `${InstitutionPrefix}_${string}`; | ||
export type InstitutionExtractedInfosId = `${InstitutionExtractedInfosPrefix}_${string}`; | ||
export declare const createBrandedSchemaId: <T extends string>(brand: StorageId | IdentityId | EmailId | WalletId | AppId | ChallengeId | TestId | CustomerScreeningId | TagId | TransactionId | TransactionReviewId | TransactionPartiesId | TransactionInfosId | TransactionExtractedInfosId | TransactionMethodsId | TransactionMethodExtractedInfosId | InstitutionId | InstitutionExtractedInfosId) => z.ZodType<T, z.ZodTypeDef, T>; | ||
@@ -28,14 +64,14 @@ export declare const StorageId: z.ZodType<`storage_${string}`, z.ZodTypeDef, `storage_${string}`>; | ||
export declare const TestId: z.ZodType<`test_${string}`, z.ZodTypeDef, `test_${string}`>; | ||
export declare const CustomerScreeningId: z.ZodType<`customer_screening_${string}`, z.ZodTypeDef, `customer_screening_${string}`>; | ||
export declare const CustomerScreeningId: z.ZodType<`cstscr_${string}`, z.ZodTypeDef, `cstscr_${string}`>; | ||
export declare const TagId: z.ZodType<`tag_${string}`, z.ZodTypeDef, `tag_${string}`>; | ||
export declare const TransactionId: z.ZodType<`transaction_${string}`, z.ZodTypeDef, `transaction_${string}`>; | ||
export declare const TransactionReviewId: z.ZodType<`transaction_review_${string}`, z.ZodTypeDef, `transaction_review_${string}`>; | ||
export declare const TransactionPartiesId: z.ZodType<`transaction_parties_${string}`, z.ZodTypeDef, `transaction_parties_${string}`>; | ||
export declare const TransactionInfosId: z.ZodType<`transaction_infos_${string}`, z.ZodTypeDef, `transaction_infos_${string}`>; | ||
export declare const TransactionExtractedInfosId: z.ZodType<`transaction_extracted_infos_${string}`, z.ZodTypeDef, `transaction_extracted_infos_${string}`>; | ||
export declare const TransactionMethodsId: z.ZodType<`transaction_methods_${string}`, z.ZodTypeDef, `transaction_methods_${string}`>; | ||
export declare const TransactionMethodExtractedInfosId: z.ZodType<`transaction_method_extracted_infos_${string}`, z.ZodTypeDef, `transaction_method_extracted_infos_${string}`>; | ||
export declare const InstitutionId: z.ZodType<`institution_${string}`, z.ZodTypeDef, `institution_${string}`>; | ||
export declare const InstitutionExtractedInfosId: z.ZodType<`institution_extracted_infos_${string}`, z.ZodTypeDef, `institution_extracted_infos_${string}`>; | ||
export declare const generateId: <T extends string>(type: "storage" | "identity" | "email" | "wallet" | "app" | "challenge" | "test" | "customer_screening" | "tag" | "transaction" | "transaction_review" | "transaction_parties" | "transaction_infos" | "transaction_extracted_infos" | "transaction_methods_" | "transaction_method_extracted_infos_" | "institution" | "institution_extracted_infos") => `${T}_${string}`; | ||
export declare const TransactionId: z.ZodType<`tx_${string}`, z.ZodTypeDef, `tx_${string}`>; | ||
export declare const TransactionReviewId: z.ZodType<`txrev_${string}`, z.ZodTypeDef, `txrev_${string}`>; | ||
export declare const TransactionPartiesId: z.ZodType<`txpar_${string}`, z.ZodTypeDef, `txpar_${string}`>; | ||
export declare const TransactionInfosId: z.ZodType<`txi_${string}`, z.ZodTypeDef, `txi_${string}`>; | ||
export declare const TransactionExtractedInfosId: z.ZodType<`txei_${string}`, z.ZodTypeDef, `txei_${string}`>; | ||
export declare const TransactionMethodsId: z.ZodType<`txm_${string}`, z.ZodTypeDef, `txm_${string}`>; | ||
export declare const TransactionMethodExtractedInfosId: z.ZodType<`txmei_${string}`, z.ZodTypeDef, `txmei_${string}`>; | ||
export declare const InstitutionId: z.ZodType<`ins_${string}`, z.ZodTypeDef, `ins_${string}`>; | ||
export declare const InstitutionExtractedInfosId: z.ZodType<`insei_${string}`, z.ZodTypeDef, `insei_${string}`>; | ||
export declare const generateId: <T extends string>(type: StoragePrefix | IdentityPrefix | EmailPrefix | WalletPrefix | AppPrefix | ChallengePrefix | TestPrefix | CustomerScreeningPrefix | TagPrefix | TransactionPrefix | TransactionReviewPrefix | TransactionPartiesPrefix | TransactionInfosPrefix | TransactionExtractedInfosPrefix | TransactionMethodsPrefix | TransactionMethodExtractedInfosPrefix | InstitutionPrefix | InstitutionExtractedInfosPrefix) => `${T}_${string}`; | ||
//# sourceMappingURL=identity-ids.schema.d.ts.map |
@@ -7,2 +7,3 @@ export * from "./alert.schema.js"; | ||
export * from "./svix.webhooks.schema.js"; | ||
export * from "./tms.webhooks.schema.js"; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -1,2 +0,2 @@ | ||
export * from "./declarations/src/index"; | ||
export * from "./declarations/src/index.js"; | ||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmV4ZXJhaWQtaWRlbnRpdHktc2NoZW1hcy5janMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4vZGVjbGFyYXRpb25zL3NyYy9pbmRleC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBIn0= |
@@ -1,5 +0,6 @@ | ||
import { C as CredentialTypes } from './identity-api.schema-2a4cdb96.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, al as ALPHA_2_COUNTRIES, cJ as ARRAY_OPERATORS, cs as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bl as AVAILABLE_FLOWS, dP as AdditionalCustomerInformationParams, z as AddressSchema, cE as AllCredentialAttributes, cF as AllCredentialValues, du as AllScenarioExecutionAuthorizationData, am as Alpha2Country, dn as AnyTxAuthDataSignatureResponse, dk as AnyTxAuthInput, df as ApiTezosTxAuthInput, db as ApiTxAuthInput, aO as AppId, I as AptosAddress, J as AptosSignature, cK as ArrayOperator, cA as AuthQrCodeData, c7 as AuthSession, c8 as AuthSessionData, cv as AuthorizationRequestMessage, cu as AuthorizationRequestMessageType, ct as AuthorizationRequestMessageTypes, cy as AuthorizationResponseMessage, bm as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cP as BOOLEAN_OPERATORS, aD as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cQ as BooleanOperator, cp as CIRCUIT_IDS, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aE as CUSTOMERS_CHARTS, aI as CUSTOMER_AUTOMATION_REASONS, aG as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aP as ChallengeId, bt as ChallengeQueryOperator, bv as ChallengeQueryOperatorToOperator, bs as ChallengeQueryOperators, bw as ChallengeQuerySchema, c9 as ChallengeResponse, cq as CircuitId, b3 as CloseScreenNotification, bR as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, ds as CreateAuthRequestProps, d2 as CreateQueryConfigurationInput, d3 as CreateQueryConfigurationResponse, dt as CreateZKProofRequestProps, ei as CredentialMediaType, ed as CredentialNames, cz as CredentialQrCodeData, ec as CredentialSchemas, eg as CredentialType, C as CredentialTypes, aA as CustomerOnboardingLevel, az as CustomerOnboardingLevels, aR as CustomerScreeningId, aC as CustomerStatus, aB as CustomerStatuses, aH as CustomerTableColumn, au as CustomerType, at as CustomerTypes, aF as CustomersChartType, cR as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bn as DataAvailableOnStart, cS as DateOperator, d6 as DeleteQueryConfigurationInput, d7 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, aM as EmailId, ad as EnvironmentSchema, h as EvmChainId, by as ExecuteChallengeQueryConfig, bx as ExecuteChallengeQueryInput, bA as ExecuteChallengeQueryResponse, dm as ExtendedTezosTxAuthDataSignatureResponse, dj as ExtendedTezosTxAuthInput, dl as ExtendedTxAuthDataSignatureResponse, di as ExtendedTxAuthInput, dU as ExternalCustomerId, dE as FLOW_TYPES, dF as FlowType, G as FunctionCallData, c6 as GenerateWalletChallengeRequest, eb as GenericVerifiableCredentialSchema, bT as GetCredentialsRequest, bU as GetCredentialsResponse, cc as GetCustomerStatusRequest, cg as GetCustomerStatusResponse, dh as GetTezosTxAuthDataSignatureResponse, dd as GetTxAuthDataSignatureResponse, c0 as GetTxAuthSigRequest, c2 as GetTxAuthSigRequestTezos, c1 as GetTxAuthSigResponse, c3 as GetTxAuthSigResponseTezos, cj as HostMessage, c4 as HostRequestMessage, br as HostResponseMessage, d_ as ID3CredentialSubjectSchema, dI as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, dK as IDENTITY_DOCUMENT_OPTIONS, e8 as IDImageCredentialSubjectSchema, cW as IDInformation, e7 as IDInformationCredentialSubjectSchema, d$ as IDScanCredentialSubjectSchema, e0 as IDScanPassportCredentialSubjectSchema, e1 as IDScanSelfieCredentialSubjectSchema, ak as ISO3CountryCode, dO as Identifier, ch as IdentityAppMessage, dW as IdentityAppV2Web2JWT, dV as IdentityAppV2Web3JWT, dJ as IdentityDocumentCountryListOption, dL as IdentityDocumentOptionsType, aL as IdentityId, ck as IdentityMessage, bf as IdentityNotificationMessage, bk as IdentityRequestMessage, c5 as IdentityResponseMessage, cd as IdentitySdkMessage, ce as IdentitySdkMessageWithIdentifier, ci as IdentityWallet, dT as IdentityWidgetAccessToken, dX as IdentityWidgetAccessToken_NEW, dY as IdentityWidgetSessionToken, bg as InitialDataRequest, bo as InitialDataResponse, a$ as InstitutionExtractedInfosId, a_ as InstitutionId, aj as IpAddress, bb as IsVerifiedNotification, b_ as IsVerifiedRequest, b$ as IsVerifiedResponse, ay as KybOnboardingLevel, ax as KybOnboardingLevels, b4 as KycCompletionData, b5 as KycCompletionNotification, aw as KycOnboardingLevel, av as KycOnboardingLevels, cn as MediaType, co 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, cN as NUMERIC_OPERATORS, ee as NexeraCredentialType, d1 as NonParsedQueryConfiguration, cO as NumericOperator, e6 as OLD_AMLScreeningsResultsCredentialSubjectSchema, e2 as OLD_IDImageCredentialSubjectSchema, e3 as OLD_IDInformationCredentialSubjectSchema, e4 as OLD_ProofOfResidenceCredentialSubjectSchema, e5 as OLD_SelfieImageCredentialSubjectSchema, bB as OPAChallengeQuery, bd as OcvSdkInitialized, b7 as OffChainScenarioExecutionData, dr as OffChainZKP, bD as OffChainZKPRuleResult, bC as OnChainRuleResult, b8 as OnChainScenarioExecutionData, dw as OnChainZKP, dx as OnChainZKPFromNexeraID, dz as OnChainZKPPayload, dy as OnChainZKPScenarioFromCms, bz as OpaChallengeQueryResponse, cG as Operator, bu as OperatorToChallengeQueryOperator, dQ as OrganizationId, af as OtpCode, _ as P2Signature, dM as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ai as PUBLIC_SERVICES_SCHEMA_MAP, c_ as PartialQueryConfigSimplified, dN as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, bc as PolygonIdInitialized, bW as PolygonIdRequest, bV as PolygonIdRequestData, bY as PolygonIdResponse, bX as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, dv as ProjectAuthorizationData, cw as ProofData, ea as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, cB as QrCodeLinkWithSchemaType, cX as QueryConfig, cZ as QueryConfigSimplified, c$ as QueryConfigSimplifiedParsed, d0 as QueryConfiguration, d9 as QueryCredentialType, d8 as QueryCredentialTypes, cY as QueryType, cl as RequiredDataRowSchema, cm as RequiredVerificationData, as as RiskScoreType, ar as RiskScoreTypes, bM as RuleEngineResponse, b6 as RuleEngineScenarioExecutionData, bP as RuleResultStatus, bQ as RuleResultStatusLabels, bO as RuleResultStatuses, dA as SCENARIO_AUTHORIZATION_STATUSES, cL as STRING_OPERATORS, cT as SUPPORTED_TYPES, b1 as ScenarioAuthorizationData, dB as ScenarioAuthorizationStatus, b9 as ScenarioExecutionData, ba as ScenarioExecutionNotification, bN as ScenarioExecutionResponse, bL as ScenarioStatus, bK as ScenarioStatuses, bJ as ScenarioType, bI as ScenarioTypes, bE as SdkVerificationOutput, b2 as SdkVerificationResponseSchema, e9 as SelfieImageCredentialSubjectSchema, bj as SendTransactionRequest, bh as SignatureRequest, bp as SignatureResponse, bS as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, be as StartCompletedNotification, bZ as StartFlowRequest, aK as StorageId, w as String0x, cM as StringOperator, cU as SupportedType, cV as SupportedTypes, aS as TagId, aQ as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, de as TezosTxAuthInput, dg as TezosTxSignatureResponse, bi as TransactionData, aX as TransactionExtractedInfosId, aT as TransactionId, aW as TransactionInfosId, aZ as TransactionMethodExtractedInfosId, aY as TransactionMethodsId, aV as TransactionPartiesId, bq as TransactionResponse, aU as TransactionReviewId, cb as TxAuthDataSignatureGatingRequest, cf as TxAuthDataSignatureResponse, da as TxAuthInput, D as TxHash, dc as TxSignatureResponse, d4 as UpdateQueryConfigurationInput, d5 as UpdateQueryConfigurationResponse, ae as UuidString, eh as VerifiableCredential, dH as VerificationMode, dG as VerificationModes, bH as VerificationOutput, bG as VerificationSessionStatus, bF as VerificationSessionStatuses, dD as VerifyWalletChallengeRequest, aN as WalletId, ca as WalletSignResponse, dC as WalletSignatureResponse, dZ as Web2CreateSessionParams, dS as WorkflowId, dR as WorkspaceId, cH as ZKPOperator, dp as ZKPRequest, dq as ZKPRequestFromZKVerifier, cr as ZeroKnowledgeProofRequest, cx as ZeroKnowledgeProofResponse, ag as ZodParse, ab as coerceBoolean, ao as countryISO2toISO3Mapping, an as countryISO3toISO2Mapping, aJ as createBrandedSchemaId, b0 as generateId, ef as getCredentialName, v as isValidAddress, ap as isoCountriesNameFromISO2, cI as operatorDisplayMap, aq as parseISO3CountryCode, cC as parseIden3Message, cD as parseSessionIdFromUrl, H as shortAddress, ah as shortBlockchainAddress } from './identity-api.schema-2a4cdb96.esm.js'; | ||
import { C as CredentialTypes } from './identity-api.schema-68a83f54.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, al as ALPHA_2_COUNTRIES, c$ as ARRAY_OPERATORS, cK as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bD as AVAILABLE_FLOWS, e5 as AdditionalCustomerInformationParams, z as AddressSchema, cW as AllCredentialAttributes, cX as AllCredentialValues, dM as AllScenarioExecutionAuthorizationData, am as Alpha2Country, dG as AnyTxAuthDataSignatureResponse, dD as AnyTxAuthInput, dy as ApiTezosTxAuthInput, du as ApiTxAuthInput, b4 as AppId, aN as AppPrefix, I as AptosAddress, J as AptosSignature, d0 as ArrayOperator, cS as AuthQrCodeData, cp as AuthSession, cq as AuthSessionData, cN as AuthorizationRequestMessage, cM as AuthorizationRequestMessageType, cL as AuthorizationRequestMessageTypes, cQ as AuthorizationResponseMessage, bE as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, d5 as BOOLEAN_OPERATORS, aD as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, d6 as BooleanOperator, cH as CIRCUIT_IDS, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aE as CUSTOMERS_CHARTS, aI as CUSTOMER_AUTOMATION_REASONS, aG as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, b5 as ChallengeId, aO as ChallengePrefix, bL as ChallengeQueryOperator, bN as ChallengeQueryOperatorToOperator, bK as ChallengeQueryOperators, bO as ChallengeQuerySchema, cr as ChallengeResponse, cI as CircuitId, bl as CloseScreenNotification, c7 as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, dK as CreateAuthRequestProps, dk as CreateQueryConfigurationInput, dl as CreateQueryConfigurationResponse, dL as CreateZKProofRequestProps, eA as CredentialMediaType, ev as CredentialNames, cR as CredentialQrCodeData, eu as CredentialSchemas, ey as CredentialType, C as CredentialTypes, aA as CustomerOnboardingLevel, az as CustomerOnboardingLevels, b7 as CustomerScreeningId, aQ as CustomerScreeningPrefix, aC as CustomerStatus, aB as CustomerStatuses, aH as CustomerTableColumn, au as CustomerType, at as CustomerTypes, aF as CustomersChartType, d7 as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bF as DataAvailableOnStart, d8 as DateOperator, dp as DeleteQueryConfigurationInput, dq 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, b2 as EmailId, aL as EmailPrefix, ad as EnvironmentSchema, h as EvmChainId, bQ as ExecuteChallengeQueryConfig, bP as ExecuteChallengeQueryInput, bS as ExecuteChallengeQueryResponse, dF as ExtendedTezosTxAuthDataSignatureResponse, dC as ExtendedTezosTxAuthInput, dE as ExtendedTxAuthDataSignatureResponse, dB as ExtendedTxAuthInput, ea as ExternalCustomerId, dW as FLOW_TYPES, dX as FlowType, G as FunctionCallData, co as GenerateWalletChallengeRequest, et as GenericVerifiableCredentialSchema, c9 as GetCredentialsRequest, ca as GetCredentialsResponse, cu as GetCustomerStatusRequest, cy as GetCustomerStatusResponse, dA as GetTezosTxAuthDataSignatureResponse, dw as GetTxAuthDataSignatureResponse, ci as GetTxAuthSigRequest, ck as GetTxAuthSigRequestTezos, cj as GetTxAuthSigResponse, cl as GetTxAuthSigResponseTezos, cB as HostMessage, cm as HostRequestMessage, bJ as HostResponseMessage, eg as ID3CredentialSubjectSchema, d_ as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, e0 as IDENTITY_DOCUMENT_OPTIONS, eq as IDImageCredentialSubjectSchema, dc as IDInformation, ep as IDInformationCredentialSubjectSchema, eh as IDScanCredentialSubjectSchema, ei as IDScanPassportCredentialSubjectSchema, ej as IDScanSelfieCredentialSubjectSchema, ak as ISO3CountryCode, e4 as Identifier, cz as IdentityAppMessage, ec as IdentityAppV2Web2JWT, eb as IdentityAppV2Web3JWT, d$ as IdentityDocumentCountryListOption, e1 as IdentityDocumentOptionsType, b1 as IdentityId, cC as IdentityMessage, bx as IdentityNotificationMessage, aK as IdentityPrefix, bC as IdentityRequestMessage, cn as IdentityResponseMessage, cv as IdentitySdkMessage, cw as IdentitySdkMessageWithIdentifier, cA as IdentityWallet, e9 as IdentityWidgetAccessToken, ed as IdentityWidgetAccessToken_NEW, ee as IdentityWidgetSessionToken, by as InitialDataRequest, bG as InitialDataResponse, bh as InstitutionExtractedInfosId, a_ as InstitutionExtractedInfosPrefix, bg as InstitutionId, aZ as InstitutionPrefix, aj as IpAddress, bt as IsVerifiedNotification, cg as IsVerifiedRequest, ch as IsVerifiedResponse, ay as KybOnboardingLevel, ax as KybOnboardingLevels, bm as KycCompletionData, bn as KycCompletionNotification, aw as KycOnboardingLevel, av as KycOnboardingLevels, cF as MediaType, cG 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, d3 as NUMERIC_OPERATORS, ew as NexeraCredentialType, dj as NonParsedQueryConfiguration, d4 as NumericOperator, eo as OLD_AMLScreeningsResultsCredentialSubjectSchema, ek as OLD_IDImageCredentialSubjectSchema, el as OLD_IDInformationCredentialSubjectSchema, em as OLD_ProofOfResidenceCredentialSubjectSchema, en as OLD_SelfieImageCredentialSubjectSchema, bT as OPAChallengeQuery, bv as OcvSdkInitialized, bp as OffChainScenarioExecutionData, dJ as OffChainZKP, bV as OffChainZKPRuleResult, bU as OnChainRuleResult, bq as OnChainScenarioExecutionData, dO as OnChainZKP, dP as OnChainZKPFromNexeraID, dR as OnChainZKPPayload, dQ as OnChainZKPScenarioFromCms, bR as OpaChallengeQueryResponse, cY as Operator, bM as OperatorToChallengeQueryOperator, e6 as OrganizationId, af as OtpCode, _ as P2Signature, e2 as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ai as PUBLIC_SERVICES_SCHEMA_MAP, dg as PartialQueryConfigSimplified, e3 as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, bu as PolygonIdInitialized, cc as PolygonIdRequest, cb as PolygonIdRequestData, ce as PolygonIdResponse, cd as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, dN as ProjectAuthorizationData, cO as ProofData, es as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, cT as QrCodeLinkWithSchemaType, dd as QueryConfig, df as QueryConfigSimplified, dh as QueryConfigSimplifiedParsed, di as QueryConfiguration, ds as QueryCredentialType, dr as QueryCredentialTypes, de as QueryType, cD as RequiredDataRowSchema, cE as RequiredVerificationData, as as RiskScoreType, ar as RiskScoreTypes, c2 as RuleEngineResponse, bo as RuleEngineScenarioExecutionData, c5 as RuleResultStatus, c6 as RuleResultStatusLabels, c4 as RuleResultStatuses, dS as SCENARIO_AUTHORIZATION_STATUSES, d1 as STRING_OPERATORS, d9 as SUPPORTED_TYPES, bj as ScenarioAuthorizationData, dT as ScenarioAuthorizationStatus, br as ScenarioExecutionData, bs as ScenarioExecutionNotification, c3 as ScenarioExecutionResponse, c1 as ScenarioStatus, c0 as ScenarioStatuses, b$ as ScenarioType, b_ as ScenarioTypes, bW as SdkVerificationOutput, bk as SdkVerificationResponseSchema, er as SelfieImageCredentialSubjectSchema, bB as SendTransactionRequest, bz as SignatureRequest, bH as SignatureResponse, c8 as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, bw as StartCompletedNotification, cf as StartFlowRequest, b0 as StorageId, aJ as StoragePrefix, w as String0x, d2 as StringOperator, da as SupportedType, db as SupportedTypes, b8 as TagId, aR as TagPrefix, b6 as TestId, aP as TestPrefix, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, dx as TezosTxAuthInput, dz as TezosTxSignatureResponse, bA as TransactionData, bd as TransactionExtractedInfosId, aW as TransactionExtractedInfosPrefix, b9 as TransactionId, bc as TransactionInfosId, aV as TransactionInfosPrefix, bf as TransactionMethodExtractedInfosId, aY as TransactionMethodExtractedInfosPrefix, be as TransactionMethodsId, aX as TransactionMethodsPrefix, bb as TransactionPartiesId, aU as TransactionPartiesPrefix, aS as TransactionPrefix, bI as TransactionResponse, ba as TransactionReviewId, aT as TransactionReviewPrefix, ct as TxAuthDataSignatureGatingRequest, cx as TxAuthDataSignatureResponse, dt as TxAuthInput, D as TxHash, dv as TxSignatureResponse, dm as UpdateQueryConfigurationInput, dn as UpdateQueryConfigurationResponse, ae as UuidString, ez as VerifiableCredential, dZ as VerificationMode, dY as VerificationModes, bZ as VerificationOutput, bY as VerificationSessionStatus, bX as VerificationSessionStatuses, dV as VerifyWalletChallengeRequest, b3 as WalletId, aM as WalletPrefix, cs as WalletSignResponse, dU as WalletSignatureResponse, ef as Web2CreateSessionParams, e8 as WorkflowId, e7 as WorkspaceId, cZ as ZKPOperator, dH as ZKPRequest, dI as ZKPRequestFromZKVerifier, cJ as ZeroKnowledgeProofRequest, cP as ZeroKnowledgeProofResponse, ag as ZodParse, ab as coerceBoolean, ao as countryISO2toISO3Mapping, an as countryISO3toISO2Mapping, a$ as createBrandedSchemaId, bi as generateId, ex as getCredentialName, v as isValidAddress, ap as isoCountriesNameFromISO2, c_ as operatorDisplayMap, aq as parseISO3CountryCode, cU as parseIden3Message, cV as parseSessionIdFromUrl, H as shortAddress, ah as shortBlockchainAddress } from './identity-api.schema-68a83f54.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-e16f9289.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-02fc8336.esm.js'; | ||
export { j as PaymentType, P as PaymentTypes, g as TransactionDirection, f as TransactionDirections, l as TransactionPartiesType, k as TransactionPartiesTypes, i as TransactionProvider, h as TransactionProviders, e as TransactionReviewStatus, d as TransactionReviewStatuses, c as TransactionRiskLevel, b as TransactionRiskLevels, a as TransactionType, T as TransactionTypes } from './transaction.schema-fb699c40.esm.js'; | ||
import 'nanoid'; | ||
@@ -90,24 +91,2 @@ | ||
// Transaction Type | ||
var TransactionTypes = ["crypto", "fiat"]; | ||
var TransactionType = z["enum"](TransactionTypes); | ||
// Transaction Risk level | ||
var TransactionRiskLevels = ["Low", "Medium", "High"]; | ||
var TransactionRiskLevel = z["enum"](TransactionRiskLevels); | ||
// TransactionReview Status | ||
var TransactionReviewStatuses = ["approved", "review", "blocked"]; | ||
var TransactionReviewStatus = z["enum"](TransactionReviewStatuses); | ||
// TransactionInfos Direction | ||
var TransactionDirections = ["IN", "OUT"]; | ||
var TransactionDirection = z["enum"](TransactionDirections); | ||
// TransactionExtractedInfos Providers | ||
var TransactionProviders = ["sumsub"]; | ||
var TransactionProvider = z["enum"](TransactionProviders); | ||
// PaymentMethods Type | ||
var PaymentTypes = ["card", "account", "crypto"]; | ||
var PaymentType = z["enum"](PaymentTypes); | ||
// TransactionParties Type | ||
var TransactionPartiesTypes = ["individual", "company", "smart-contract"]; | ||
var TransactionPartiesType = z["enum"](TransactionPartiesTypes); | ||
export { CryptoCode, CryptoCodes, CurrencyCode, CurrencyCodes, DownloadableKycSchema, EncryptedKycKey, EncryptedVerifiableCredentialDataSchema, EncryptedVerifiableCredentialSchema, ImageUploadResponseSchema, MAX_MEDIA_FILE_SIZE, MediaDataSchema, PaymentType, PaymentTypes, Tag, TransactionDirection, TransactionDirections, TransactionPartiesType, TransactionPartiesTypes, TransactionProvider, TransactionProviders, TransactionReviewStatus, TransactionReviewStatuses, TransactionRiskLevel, TransactionRiskLevels, TransactionType, TransactionTypes, TypeTag, TypeTags }; | ||
export { CryptoCode, CryptoCodes, CurrencyCode, CurrencyCodes, DownloadableKycSchema, EncryptedKycKey, EncryptedVerifiableCredentialDataSchema, EncryptedVerifiableCredentialSchema, ImageUploadResponseSchema, MAX_MEDIA_FILE_SIZE, MediaDataSchema, Tag, TypeTag, TypeTags }; |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "2.3.23", | ||
"version": "2.3.24", | ||
"description": "", | ||
@@ -83,3 +83,3 @@ "keywords": [], | ||
"json-schema-to-zod": "^2.4.1", | ||
"typescript": "^5.6.2" | ||
"typescript": "^5.6.3" | ||
}, | ||
@@ -86,0 +86,0 @@ "preconstruct": { |
@@ -1,2 +0,2 @@ | ||
export * from "../../dist/declarations/src/identity/index"; | ||
export * from "../../dist/declarations/src/identity/index.js"; | ||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmV4ZXJhaWQtaWRlbnRpdHktc2NoZW1hcy1pZGVudGl0eS5janMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2Rpc3QvZGVjbGFyYXRpb25zL3NyYy9pZGVudGl0eS9pbmRleC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBIn0= |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-04a016a1.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-bbb2c243.cjs.dev.js'); | ||
require('zod'); | ||
@@ -8,0 +8,0 @@ require('nanoid'); |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-00c99eb6.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-2de31155.cjs.prod.js'); | ||
require('zod'); | ||
@@ -8,0 +8,0 @@ require('nanoid'); |
@@ -1,3 +0,3 @@ | ||
export { cJ as ARRAY_OPERATORS, cs as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bl as AVAILABLE_FLOWS, cE as AllCredentialAttributes, cF as AllCredentialValues, du as AllScenarioExecutionAuthorizationData, dn as AnyTxAuthDataSignatureResponse, dk as AnyTxAuthInput, df as ApiTezosTxAuthInput, db as ApiTxAuthInput, cK as ArrayOperator, cA as AuthQrCodeData, c7 as AuthSession, c8 as AuthSessionData, cv as AuthorizationRequestMessage, cu as AuthorizationRequestMessageType, ct as AuthorizationRequestMessageTypes, cy as AuthorizationResponseMessage, bm as AvailableFlow, cP as BOOLEAN_OPERATORS, cQ as BooleanOperator, cp as CIRCUIT_IDS, bt as ChallengeQueryOperator, bv as ChallengeQueryOperatorToOperator, bs as ChallengeQueryOperators, bw as ChallengeQuerySchema, c9 as ChallengeResponse, cq as CircuitId, b3 as CloseScreenNotification, bR as ComplianceImplementationStepsInput, ds as CreateAuthRequestProps, d2 as CreateQueryConfigurationInput, d3 as CreateQueryConfigurationResponse, dt as CreateZKProofRequestProps, cz as CredentialQrCodeData, cR as DATE_OPERATORS, bn as DataAvailableOnStart, cS as DateOperator, d6 as DeleteQueryConfigurationInput, d7 as DeleteQueryConfigurationResponse, by as ExecuteChallengeQueryConfig, bx as ExecuteChallengeQueryInput, bA as ExecuteChallengeQueryResponse, dm as ExtendedTezosTxAuthDataSignatureResponse, dj as ExtendedTezosTxAuthInput, dl as ExtendedTxAuthDataSignatureResponse, di as ExtendedTxAuthInput, c6 as GenerateWalletChallengeRequest, bT as GetCredentialsRequest, bU as GetCredentialsResponse, cc as GetCustomerStatusRequest, cg as GetCustomerStatusResponse, dh as GetTezosTxAuthDataSignatureResponse, dd as GetTxAuthDataSignatureResponse, c0 as GetTxAuthSigRequest, c2 as GetTxAuthSigRequestTezos, c1 as GetTxAuthSigResponse, c3 as GetTxAuthSigResponseTezos, cj as HostMessage, c4 as HostRequestMessage, br as HostResponseMessage, cW as IDInformation, ch as IdentityAppMessage, ck as IdentityMessage, bf as IdentityNotificationMessage, bk as IdentityRequestMessage, c5 as IdentityResponseMessage, cd as IdentitySdkMessage, ce as IdentitySdkMessageWithIdentifier, ci as IdentityWallet, bg as InitialDataRequest, bo as InitialDataResponse, bb as IsVerifiedNotification, b_ as IsVerifiedRequest, b$ as IsVerifiedResponse, b4 as KycCompletionData, b5 as KycCompletionNotification, cn as MediaType, co as MediaTypePID, cN as NUMERIC_OPERATORS, d1 as NonParsedQueryConfiguration, cO as NumericOperator, bB as OPAChallengeQuery, bd as OcvSdkInitialized, b7 as OffChainScenarioExecutionData, dr as OffChainZKP, bD as OffChainZKPRuleResult, bC as OnChainRuleResult, b8 as OnChainScenarioExecutionData, dw as OnChainZKP, dx as OnChainZKPFromNexeraID, dz as OnChainZKPPayload, dy as OnChainZKPScenarioFromCms, bz as OpaChallengeQueryResponse, cG as Operator, bu as OperatorToChallengeQueryOperator, c_ as PartialQueryConfigSimplified, bc as PolygonIdInitialized, bW as PolygonIdRequest, bV as PolygonIdRequestData, bY as PolygonIdResponse, bX as PolygonIdResponseData, dv as ProjectAuthorizationData, cw as ProofData, cB as QrCodeLinkWithSchemaType, cX as QueryConfig, cZ as QueryConfigSimplified, c$ as QueryConfigSimplifiedParsed, d0 as QueryConfiguration, d9 as QueryCredentialType, d8 as QueryCredentialTypes, cY as QueryType, cl as RequiredDataRowSchema, cm as RequiredVerificationData, bM as RuleEngineResponse, b6 as RuleEngineScenarioExecutionData, bP as RuleResultStatus, bQ as RuleResultStatusLabels, bO as RuleResultStatuses, dA as SCENARIO_AUTHORIZATION_STATUSES, cL as STRING_OPERATORS, cT as SUPPORTED_TYPES, b1 as ScenarioAuthorizationData, dB as ScenarioAuthorizationStatus, b9 as ScenarioExecutionData, ba as ScenarioExecutionNotification, bN as ScenarioExecutionResponse, bL as ScenarioStatus, bK as ScenarioStatuses, bJ as ScenarioType, bI as ScenarioTypes, bE as SdkVerificationOutput, b2 as SdkVerificationResponseSchema, bj as SendTransactionRequest, bh as SignatureRequest, bp as SignatureResponse, bS as SimplifiedCredential, be as StartCompletedNotification, bZ as StartFlowRequest, cM as StringOperator, cU as SupportedType, cV as SupportedTypes, de as TezosTxAuthInput, dg as TezosTxSignatureResponse, bi as TransactionData, bq as TransactionResponse, cb as TxAuthDataSignatureGatingRequest, cf as TxAuthDataSignatureResponse, da as TxAuthInput, dc as TxSignatureResponse, d4 as UpdateQueryConfigurationInput, d5 as UpdateQueryConfigurationResponse, bH as VerificationOutput, bG as VerificationSessionStatus, bF as VerificationSessionStatuses, dD as VerifyWalletChallengeRequest, ca as WalletSignResponse, dC as WalletSignatureResponse, cH as ZKPOperator, dp as ZKPRequest, dq as ZKPRequestFromZKVerifier, cr as ZeroKnowledgeProofRequest, cx as ZeroKnowledgeProofResponse, cI as operatorDisplayMap, cC as parseIden3Message, cD as parseSessionIdFromUrl } from '../../dist/identity-api.schema-2a4cdb96.esm.js'; | ||
export { c$ as ARRAY_OPERATORS, cK as AUTHORIZATION_REQUEST_MESSAGE_TYPES, bD as AVAILABLE_FLOWS, cW as AllCredentialAttributes, cX as AllCredentialValues, dM as AllScenarioExecutionAuthorizationData, dG as AnyTxAuthDataSignatureResponse, dD as AnyTxAuthInput, dy as ApiTezosTxAuthInput, du as ApiTxAuthInput, d0 as ArrayOperator, cS as AuthQrCodeData, cp as AuthSession, cq as AuthSessionData, cN as AuthorizationRequestMessage, cM as AuthorizationRequestMessageType, cL as AuthorizationRequestMessageTypes, cQ as AuthorizationResponseMessage, bE as AvailableFlow, d5 as BOOLEAN_OPERATORS, d6 as BooleanOperator, cH as CIRCUIT_IDS, bL as ChallengeQueryOperator, bN as ChallengeQueryOperatorToOperator, bK as ChallengeQueryOperators, bO as ChallengeQuerySchema, cr as ChallengeResponse, cI as CircuitId, bl as CloseScreenNotification, c7 as ComplianceImplementationStepsInput, dK as CreateAuthRequestProps, dk as CreateQueryConfigurationInput, dl as CreateQueryConfigurationResponse, dL as CreateZKProofRequestProps, cR as CredentialQrCodeData, d7 as DATE_OPERATORS, bF as DataAvailableOnStart, d8 as DateOperator, dp as DeleteQueryConfigurationInput, dq as DeleteQueryConfigurationResponse, bQ as ExecuteChallengeQueryConfig, bP as ExecuteChallengeQueryInput, bS as ExecuteChallengeQueryResponse, dF as ExtendedTezosTxAuthDataSignatureResponse, dC as ExtendedTezosTxAuthInput, dE as ExtendedTxAuthDataSignatureResponse, dB as ExtendedTxAuthInput, co as GenerateWalletChallengeRequest, c9 as GetCredentialsRequest, ca as GetCredentialsResponse, cu as GetCustomerStatusRequest, cy as GetCustomerStatusResponse, dA as GetTezosTxAuthDataSignatureResponse, dw as GetTxAuthDataSignatureResponse, ci as GetTxAuthSigRequest, ck as GetTxAuthSigRequestTezos, cj as GetTxAuthSigResponse, cl as GetTxAuthSigResponseTezos, cB as HostMessage, cm as HostRequestMessage, bJ as HostResponseMessage, dc as IDInformation, cz as IdentityAppMessage, cC as IdentityMessage, bx as IdentityNotificationMessage, bC as IdentityRequestMessage, cn as IdentityResponseMessage, cv as IdentitySdkMessage, cw as IdentitySdkMessageWithIdentifier, cA as IdentityWallet, by as InitialDataRequest, bG as InitialDataResponse, bt as IsVerifiedNotification, cg as IsVerifiedRequest, ch as IsVerifiedResponse, bm as KycCompletionData, bn as KycCompletionNotification, cF as MediaType, cG as MediaTypePID, d3 as NUMERIC_OPERATORS, dj as NonParsedQueryConfiguration, d4 as NumericOperator, bT as OPAChallengeQuery, bv as OcvSdkInitialized, bp as OffChainScenarioExecutionData, dJ as OffChainZKP, bV as OffChainZKPRuleResult, bU as OnChainRuleResult, bq as OnChainScenarioExecutionData, dO as OnChainZKP, dP as OnChainZKPFromNexeraID, dR as OnChainZKPPayload, dQ as OnChainZKPScenarioFromCms, bR as OpaChallengeQueryResponse, cY as Operator, bM as OperatorToChallengeQueryOperator, dg as PartialQueryConfigSimplified, bu as PolygonIdInitialized, cc as PolygonIdRequest, cb as PolygonIdRequestData, ce as PolygonIdResponse, cd as PolygonIdResponseData, dN as ProjectAuthorizationData, cO as ProofData, cT as QrCodeLinkWithSchemaType, dd as QueryConfig, df as QueryConfigSimplified, dh as QueryConfigSimplifiedParsed, di as QueryConfiguration, ds as QueryCredentialType, dr as QueryCredentialTypes, de as QueryType, cD as RequiredDataRowSchema, cE as RequiredVerificationData, c2 as RuleEngineResponse, bo as RuleEngineScenarioExecutionData, c5 as RuleResultStatus, c6 as RuleResultStatusLabels, c4 as RuleResultStatuses, dS as SCENARIO_AUTHORIZATION_STATUSES, d1 as STRING_OPERATORS, d9 as SUPPORTED_TYPES, bj as ScenarioAuthorizationData, dT as ScenarioAuthorizationStatus, br as ScenarioExecutionData, bs as ScenarioExecutionNotification, c3 as ScenarioExecutionResponse, c1 as ScenarioStatus, c0 as ScenarioStatuses, b$ as ScenarioType, b_ as ScenarioTypes, bW as SdkVerificationOutput, bk as SdkVerificationResponseSchema, bB as SendTransactionRequest, bz as SignatureRequest, bH as SignatureResponse, c8 as SimplifiedCredential, bw as StartCompletedNotification, cf as StartFlowRequest, d2 as StringOperator, da as SupportedType, db as SupportedTypes, dx as TezosTxAuthInput, dz as TezosTxSignatureResponse, bA as TransactionData, bI as TransactionResponse, ct as TxAuthDataSignatureGatingRequest, cx as TxAuthDataSignatureResponse, dt as TxAuthInput, dv as TxSignatureResponse, dm as UpdateQueryConfigurationInput, dn as UpdateQueryConfigurationResponse, bZ as VerificationOutput, bY as VerificationSessionStatus, bX as VerificationSessionStatuses, dV as VerifyWalletChallengeRequest, cs as WalletSignResponse, dU as WalletSignatureResponse, cZ as ZKPOperator, dH as ZKPRequest, dI as ZKPRequestFromZKVerifier, cJ as ZeroKnowledgeProofRequest, cP as ZeroKnowledgeProofResponse, c_ as operatorDisplayMap, cU as parseIden3Message, cV as parseSessionIdFromUrl } from '../../dist/identity-api.schema-68a83f54.esm.js'; | ||
import 'zod'; | ||
import 'nanoid'; |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "2.3.23-staging", | ||
"version": "2.3.24-dev", | ||
"description": "", | ||
@@ -60,3 +60,3 @@ "keywords": [], | ||
"json-schema-to-zod": "^2.4.1", | ||
"typescript": "^5.6.2", | ||
"typescript": "^5.6.3", | ||
"@unblokttechnology/eslint-config": "0.1.1" | ||
@@ -63,0 +63,0 @@ }, |
@@ -1,2 +0,2 @@ | ||
export * from "../../dist/declarations/src/providers/index"; | ||
export * from "../../dist/declarations/src/providers/index.js"; | ||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmV4ZXJhaWQtaWRlbnRpdHktc2NoZW1hcy1wcm92aWRlcnMuY2pzLmQudHMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi9kaXN0L2RlY2xhcmF0aW9ucy9zcmMvcHJvdmlkZXJzL2luZGV4LmQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEifQ== |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var customers_schema = require('../../dist/customers.schema-56ca4b11.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-cc3df18f.cjs.dev.js'); | ||
require('zod'); | ||
require('../../dist/identity-api.schema-04a016a1.cjs.dev.js'); | ||
require('../../dist/identity-api.schema-bbb2c243.cjs.dev.js'); | ||
require('nanoid'); | ||
@@ -10,0 +10,0 @@ |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var customers_schema = require('../../dist/customers.schema-c6702f96.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-f0d472b1.cjs.prod.js'); | ||
require('zod'); | ||
require('../../dist/identity-api.schema-00c99eb6.cjs.prod.js'); | ||
require('../../dist/identity-api.schema-2de31155.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-f7da825d.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-0306abb6.esm.js'; | ||
import 'zod'; | ||
import '../../dist/identity-api.schema-2a4cdb96.esm.js'; | ||
import '../../dist/identity-api.schema-68a83f54.esm.js'; | ||
import 'nanoid'; |
@@ -1,2 +0,2 @@ | ||
export * from "../../dist/declarations/src/verifiable-credentials/index"; | ||
export * from "../../dist/declarations/src/verifiable-credentials/index.js"; | ||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmV4ZXJhaWQtaWRlbnRpdHktc2NoZW1hcy12ZXJpZmlhYmxlLWNyZWRlbnRpYWxzLmNqcy5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vZGlzdC9kZWNsYXJhdGlvbnMvc3JjL3ZlcmlmaWFibGUtY3JlZGVudGlhbHMvaW5kZXguZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSJ9 |
@@ -5,4 +5,4 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-04a016a1.cjs.dev.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-3fd03e9f.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-bbb2c243.cjs.dev.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-0be040b7.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-00c99eb6.cjs.prod.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-bb63f894.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-2de31155.cjs.prod.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-cd88e673.cjs.prod.js'); | ||
require('zod'); | ||
@@ -9,0 +9,0 @@ require('nanoid'); |
@@ -1,4 +0,4 @@ | ||
export { am as Alpha2Country, ei as CredentialMediaType, ed as CredentialNames, ec as CredentialSchemas, eg as CredentialType, C as CredentialTypes, eb as GenericVerifiableCredentialSchema, d_ as ID3CredentialSubjectSchema, e8 as IDImageCredentialSubjectSchema, e7 as IDInformationCredentialSubjectSchema, d$ as IDScanCredentialSubjectSchema, e0 as IDScanPassportCredentialSubjectSchema, e1 as IDScanSelfieCredentialSubjectSchema, ak as ISO3CountryCode, ee as NexeraCredentialType, e6 as OLD_AMLScreeningsResultsCredentialSubjectSchema, e2 as OLD_IDImageCredentialSubjectSchema, e3 as OLD_IDInformationCredentialSubjectSchema, e4 as OLD_ProofOfResidenceCredentialSubjectSchema, e5 as OLD_SelfieImageCredentialSubjectSchema, ea as ProofOfResidenceCredentialSubjectSchema, e9 as SelfieImageCredentialSubjectSchema, eh as VerifiableCredential, an as countryISO3toISO2Mapping, ef as getCredentialName, ap as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-2a4cdb96.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-e16f9289.esm.js'; | ||
export { am as Alpha2Country, eA as CredentialMediaType, ev as CredentialNames, eu as CredentialSchemas, ey as CredentialType, C as CredentialTypes, et as GenericVerifiableCredentialSchema, eg as ID3CredentialSubjectSchema, eq as IDImageCredentialSubjectSchema, ep as IDInformationCredentialSubjectSchema, eh as IDScanCredentialSubjectSchema, ei as IDScanPassportCredentialSubjectSchema, ej as IDScanSelfieCredentialSubjectSchema, ak as ISO3CountryCode, ew as NexeraCredentialType, eo as OLD_AMLScreeningsResultsCredentialSubjectSchema, ek as OLD_IDImageCredentialSubjectSchema, el as OLD_IDInformationCredentialSubjectSchema, em as OLD_ProofOfResidenceCredentialSubjectSchema, en as OLD_SelfieImageCredentialSubjectSchema, es as ProofOfResidenceCredentialSubjectSchema, er as SelfieImageCredentialSubjectSchema, ez as VerifiableCredential, an as countryISO3toISO2Mapping, ex as getCredentialName, ap as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-68a83f54.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-02fc8336.esm.js'; | ||
import 'zod'; | ||
import 'nanoid'; |
@@ -1,2 +0,2 @@ | ||
export * from "../../dist/declarations/src/webhooks/index"; | ||
export * from "../../dist/declarations/src/webhooks/index.js"; | ||
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmV4ZXJhaWQtaWRlbnRpdHktc2NoZW1hcy13ZWJob29rcy5janMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uL2Rpc3QvZGVjbGFyYXRpb25zL3NyYy93ZWJob29rcy9pbmRleC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBIn0= |
@@ -6,5 +6,6 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-04a016a1.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-56ca4b11.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-bbb2c243.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-cc3df18f.cjs.dev.js'); | ||
var zodToJsonSchema = require('zod-to-json-schema'); | ||
var transaction_schema = require('../../dist/transaction.schema-2141e819.cjs.dev.js'); | ||
require('nanoid'); | ||
@@ -195,5 +196,21 @@ | ||
var WebhookEventTypes = ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]; | ||
var TMSWebhookPayload = zod.z.object({ | ||
id: zod.z.string(), | ||
customerId: identityApi_schema.UuidString, | ||
externalTransactionId: zod.z.string(), | ||
transactionDate: zod.z.coerce.date().nullable(), | ||
transactionType: zod.z["enum"](transaction_schema.TransactionTypes), | ||
transactionSubType: zod.z.string().nullable(), | ||
transactionReview: zod.z.string().nullable(), | ||
transactionInfo: zod.z.string(), | ||
transactionExtractedInfo: zod.z.string().nullable(), | ||
originator: zod.z.string(), | ||
beneficiary: zod.z.string(), | ||
createdAt: zod.z.coerce.date(), | ||
updatedAt: zod.z.coerce.date().nullable() | ||
}); | ||
var WebhookEventTypes = ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]; | ||
var WebhookEventType = zod.z["enum"](WebhookEventTypes); | ||
var WebhookEventTypesForm = ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted"]; | ||
var WebhookEventTypesForm = ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted", "webhooks.tmsCreated", "webhooks.tmsUpdated", "webhooks.tmsDeleted"]; | ||
var WebhookEventTypeForm = zod.z["enum"](WebhookEventTypesForm); | ||
@@ -259,2 +276,17 @@ var AttemptsStatus = { | ||
schemas: zod.z.record(zod.z.unknown()) | ||
}), zod.z.object({ | ||
name: zod.z.literal("tms.created"), | ||
description: zod.z.string(), | ||
archived: zod.z["boolean"](), | ||
schemas: zod.z.record(zod.z.unknown()) | ||
}), zod.z.object({ | ||
name: zod.z.literal("tms.updated"), | ||
description: zod.z.string(), | ||
archived: zod.z["boolean"](), | ||
schemas: zod.z.record(zod.z.unknown()) | ||
}), zod.z.object({ | ||
name: zod.z.literal("tms.deleted"), | ||
description: zod.z.string(), | ||
archived: zod.z["boolean"](), | ||
schemas: zod.z.record(zod.z.unknown()) | ||
})]); | ||
@@ -299,2 +331,14 @@ | ||
}); | ||
var TMSCreatedPayload = zod.z.object({ | ||
eventType: zod.z.literal("tms.created"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var TMSUpdatedPayload = zod.z.object({ | ||
eventType: zod.z.literal("tms.updated"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var TMSDeletedPayload = zod.z.object({ | ||
eventType: zod.z.literal("tms.deleted"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var WebhookScenariosEventPayload = SendScenarioPayload; | ||
@@ -304,3 +348,4 @@ var WebhookVerificationEventPayload = SendVerificationFlowPayload; | ||
var WebhookAlertEventPayload = zod.z.union([AlertCreatedPayload, AlertUpdatedPayload, AlertDeletedPayload]); | ||
var WebhookEventPayload = zod.z.union([WebhookScenariosEventPayload, WebhookVerificationEventPayload, WebhookCustomerEventPayload, WebhookAlertEventPayload]); | ||
var WebhookTMSEventPayload = zod.z.union([TMSCreatedPayload, TMSUpdatedPayload, TMSDeletedPayload]); | ||
var WebhookEventPayload = zod.z.union([WebhookScenariosEventPayload, WebhookVerificationEventPayload, WebhookCustomerEventPayload, WebhookAlertEventPayload, WebhookTMSEventPayload]); | ||
var AllNexeraEventTypes = zod.z.array(NexeraEventTypes); | ||
@@ -327,3 +372,6 @@ var NexeraSvixEnvironmentConfig = zod.z.object({ | ||
alertUpdated: zod.z["boolean"]().optional(), | ||
alertDeleted: zod.z["boolean"]().optional() | ||
alertDeleted: zod.z["boolean"]().optional(), | ||
tmsCreated: zod.z["boolean"]().optional(), | ||
tmsUpdated: zod.z["boolean"]().optional(), | ||
tmsDeleted: zod.z["boolean"]().optional() | ||
}).optional() | ||
@@ -340,3 +388,4 @@ }); | ||
description: zod.z.string(), | ||
webhooks: zod.z.array(WebhookCheckboxInformation) | ||
webhooks: zod.z.array(WebhookCheckboxInformation), | ||
type: zod.z.string().optional() | ||
}); | ||
@@ -466,2 +515,14 @@ var EndpointOut = zod.z.object({ | ||
}); | ||
var SendMessageForTMSCreatedInput = zod.z.object({ | ||
projectId: zod.z.string(), | ||
payload: TMSCreatedPayload | ||
}); | ||
var SendMessageForTMSUpdatedInput = zod.z.object({ | ||
projectId: zod.z.string(), | ||
payload: TMSUpdatedPayload | ||
}); | ||
var SendMessageForTMSDeletedInput = zod.z.object({ | ||
projectId: zod.z.string(), | ||
payload: TMSDeletedPayload | ||
}); | ||
@@ -598,2 +659,23 @@ /** | ||
} | ||
}, { | ||
name: "tms.created", | ||
description: "Transaction Created Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema.zodToJsonSchema(TMSCreatedPayload) | ||
} | ||
}, { | ||
name: "tms.updated", | ||
description: "Transaction Updated Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema.zodToJsonSchema(TMSUpdatedPayload) | ||
} | ||
}, { | ||
name: "tms.deleted", | ||
description: "Transaction Deleted Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema.zodToJsonSchema(TMSDeletedPayload) | ||
} | ||
}]; | ||
@@ -668,4 +750,11 @@ | ||
exports.SendMessageForSendVerificationFlowInput = SendMessageForSendVerificationFlowInput; | ||
exports.SendMessageForTMSCreatedInput = SendMessageForTMSCreatedInput; | ||
exports.SendMessageForTMSDeletedInput = SendMessageForTMSDeletedInput; | ||
exports.SendMessageForTMSUpdatedInput = SendMessageForTMSUpdatedInput; | ||
exports.SendScenarioPayload = SendScenarioPayload; | ||
exports.SendVerificationFlowPayload = SendVerificationFlowPayload; | ||
exports.TMSCreatedPayload = TMSCreatedPayload; | ||
exports.TMSDeletedPayload = TMSDeletedPayload; | ||
exports.TMSUpdatedPayload = TMSUpdatedPayload; | ||
exports.TMSWebhookPayload = TMSWebhookPayload; | ||
exports.UpdateEndpointInput = UpdateEndpointInput; | ||
@@ -685,2 +774,3 @@ exports.UpdateEndpointOutput = UpdateEndpointOutput; | ||
exports.WebhookScenariosEventPayload = WebhookScenariosEventPayload; | ||
exports.WebhookTMSEventPayload = WebhookTMSEventPayload; | ||
exports.WebhookVerificationEventPayload = WebhookVerificationEventPayload; |
@@ -6,5 +6,6 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-00c99eb6.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-c6702f96.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-2de31155.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-f0d472b1.cjs.prod.js'); | ||
var zodToJsonSchema = require('zod-to-json-schema'); | ||
var transaction_schema = require('../../dist/transaction.schema-7297e823.cjs.prod.js'); | ||
require('nanoid'); | ||
@@ -195,5 +196,21 @@ | ||
var WebhookEventTypes = ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]; | ||
var TMSWebhookPayload = zod.z.object({ | ||
id: zod.z.string(), | ||
customerId: identityApi_schema.UuidString, | ||
externalTransactionId: zod.z.string(), | ||
transactionDate: zod.z.coerce.date().nullable(), | ||
transactionType: zod.z["enum"](transaction_schema.TransactionTypes), | ||
transactionSubType: zod.z.string().nullable(), | ||
transactionReview: zod.z.string().nullable(), | ||
transactionInfo: zod.z.string(), | ||
transactionExtractedInfo: zod.z.string().nullable(), | ||
originator: zod.z.string(), | ||
beneficiary: zod.z.string(), | ||
createdAt: zod.z.coerce.date(), | ||
updatedAt: zod.z.coerce.date().nullable() | ||
}); | ||
var WebhookEventTypes = ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]; | ||
var WebhookEventType = zod.z["enum"](WebhookEventTypes); | ||
var WebhookEventTypesForm = ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted"]; | ||
var WebhookEventTypesForm = ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted", "webhooks.tmsCreated", "webhooks.tmsUpdated", "webhooks.tmsDeleted"]; | ||
var WebhookEventTypeForm = zod.z["enum"](WebhookEventTypesForm); | ||
@@ -259,2 +276,17 @@ var AttemptsStatus = { | ||
schemas: zod.z.record(zod.z.unknown()) | ||
}), zod.z.object({ | ||
name: zod.z.literal("tms.created"), | ||
description: zod.z.string(), | ||
archived: zod.z["boolean"](), | ||
schemas: zod.z.record(zod.z.unknown()) | ||
}), zod.z.object({ | ||
name: zod.z.literal("tms.updated"), | ||
description: zod.z.string(), | ||
archived: zod.z["boolean"](), | ||
schemas: zod.z.record(zod.z.unknown()) | ||
}), zod.z.object({ | ||
name: zod.z.literal("tms.deleted"), | ||
description: zod.z.string(), | ||
archived: zod.z["boolean"](), | ||
schemas: zod.z.record(zod.z.unknown()) | ||
})]); | ||
@@ -299,2 +331,14 @@ | ||
}); | ||
var TMSCreatedPayload = zod.z.object({ | ||
eventType: zod.z.literal("tms.created"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var TMSUpdatedPayload = zod.z.object({ | ||
eventType: zod.z.literal("tms.updated"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var TMSDeletedPayload = zod.z.object({ | ||
eventType: zod.z.literal("tms.deleted"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var WebhookScenariosEventPayload = SendScenarioPayload; | ||
@@ -304,3 +348,4 @@ var WebhookVerificationEventPayload = SendVerificationFlowPayload; | ||
var WebhookAlertEventPayload = zod.z.union([AlertCreatedPayload, AlertUpdatedPayload, AlertDeletedPayload]); | ||
var WebhookEventPayload = zod.z.union([WebhookScenariosEventPayload, WebhookVerificationEventPayload, WebhookCustomerEventPayload, WebhookAlertEventPayload]); | ||
var WebhookTMSEventPayload = zod.z.union([TMSCreatedPayload, TMSUpdatedPayload, TMSDeletedPayload]); | ||
var WebhookEventPayload = zod.z.union([WebhookScenariosEventPayload, WebhookVerificationEventPayload, WebhookCustomerEventPayload, WebhookAlertEventPayload, WebhookTMSEventPayload]); | ||
var AllNexeraEventTypes = zod.z.array(NexeraEventTypes); | ||
@@ -327,3 +372,6 @@ var NexeraSvixEnvironmentConfig = zod.z.object({ | ||
alertUpdated: zod.z["boolean"]().optional(), | ||
alertDeleted: zod.z["boolean"]().optional() | ||
alertDeleted: zod.z["boolean"]().optional(), | ||
tmsCreated: zod.z["boolean"]().optional(), | ||
tmsUpdated: zod.z["boolean"]().optional(), | ||
tmsDeleted: zod.z["boolean"]().optional() | ||
}).optional() | ||
@@ -340,3 +388,4 @@ }); | ||
description: zod.z.string(), | ||
webhooks: zod.z.array(WebhookCheckboxInformation) | ||
webhooks: zod.z.array(WebhookCheckboxInformation), | ||
type: zod.z.string().optional() | ||
}); | ||
@@ -466,2 +515,14 @@ var EndpointOut = zod.z.object({ | ||
}); | ||
var SendMessageForTMSCreatedInput = zod.z.object({ | ||
projectId: zod.z.string(), | ||
payload: TMSCreatedPayload | ||
}); | ||
var SendMessageForTMSUpdatedInput = zod.z.object({ | ||
projectId: zod.z.string(), | ||
payload: TMSUpdatedPayload | ||
}); | ||
var SendMessageForTMSDeletedInput = zod.z.object({ | ||
projectId: zod.z.string(), | ||
payload: TMSDeletedPayload | ||
}); | ||
@@ -598,2 +659,23 @@ /** | ||
} | ||
}, { | ||
name: "tms.created", | ||
description: "Transaction Created Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema.zodToJsonSchema(TMSCreatedPayload) | ||
} | ||
}, { | ||
name: "tms.updated", | ||
description: "Transaction Updated Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema.zodToJsonSchema(TMSUpdatedPayload) | ||
} | ||
}, { | ||
name: "tms.deleted", | ||
description: "Transaction Deleted Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema.zodToJsonSchema(TMSDeletedPayload) | ||
} | ||
}]; | ||
@@ -668,4 +750,11 @@ | ||
exports.SendMessageForSendVerificationFlowInput = SendMessageForSendVerificationFlowInput; | ||
exports.SendMessageForTMSCreatedInput = SendMessageForTMSCreatedInput; | ||
exports.SendMessageForTMSDeletedInput = SendMessageForTMSDeletedInput; | ||
exports.SendMessageForTMSUpdatedInput = SendMessageForTMSUpdatedInput; | ||
exports.SendScenarioPayload = SendScenarioPayload; | ||
exports.SendVerificationFlowPayload = SendVerificationFlowPayload; | ||
exports.TMSCreatedPayload = TMSCreatedPayload; | ||
exports.TMSDeletedPayload = TMSDeletedPayload; | ||
exports.TMSUpdatedPayload = TMSUpdatedPayload; | ||
exports.TMSWebhookPayload = TMSWebhookPayload; | ||
exports.UpdateEndpointInput = UpdateEndpointInput; | ||
@@ -685,2 +774,3 @@ exports.UpdateEndpointOutput = UpdateEndpointOutput; | ||
exports.WebhookScenariosEventPayload = WebhookScenariosEventPayload; | ||
exports.WebhookTMSEventPayload = WebhookTMSEventPayload; | ||
exports.WebhookVerificationEventPayload = WebhookVerificationEventPayload; |
import { z } from 'zod'; | ||
import { ae as UuidString, dU as ExternalCustomerId, as as RiskScoreType, au as CustomerType, aA as CustomerOnboardingLevel, aC as CustomerStatus, ak as ISO3CountryCode, a2 as BlockchainAddress, bP as RuleResultStatus, eb as GenericVerifiableCredentialSchema, ek as _toArray, ej as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-2a4cdb96.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-f7da825d.esm.js'; | ||
import { ae as UuidString, ea as ExternalCustomerId, as as RiskScoreType, au as CustomerType, aA as CustomerOnboardingLevel, aC as CustomerStatus, ak as ISO3CountryCode, a2 as BlockchainAddress, c5 as RuleResultStatus, et as GenericVerifiableCredentialSchema, eC as _toArray, eB as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-68a83f54.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-0306abb6.esm.js'; | ||
import { zodToJsonSchema } from 'zod-to-json-schema'; | ||
import { T as TransactionTypes } from '../../dist/transaction.schema-fb699c40.esm.js'; | ||
import 'nanoid'; | ||
@@ -190,5 +191,21 @@ | ||
var WebhookEventTypes = ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted"]; | ||
var TMSWebhookPayload = z.object({ | ||
id: z.string(), | ||
customerId: UuidString, | ||
externalTransactionId: z.string(), | ||
transactionDate: z.coerce.date().nullable(), | ||
transactionType: z["enum"](TransactionTypes), | ||
transactionSubType: z.string().nullable(), | ||
transactionReview: z.string().nullable(), | ||
transactionInfo: z.string(), | ||
transactionExtractedInfo: z.string().nullable(), | ||
originator: z.string(), | ||
beneficiary: z.string(), | ||
createdAt: z.coerce.date(), | ||
updatedAt: z.coerce.date().nullable() | ||
}); | ||
var WebhookEventTypes = ["send.scenario", "send.verification.flow", "customer.created", "customer.updated", "customer.deleted", "alert.created", "alert.updated", "alert.deleted", "tms.created", "tms.updated", "tms.deleted"]; | ||
var WebhookEventType = z["enum"](WebhookEventTypes); | ||
var WebhookEventTypesForm = ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted"]; | ||
var WebhookEventTypesForm = ["webhooks.sendScenario", "webhooks.sendVerificationFlow", "webhooks.customerCreated", "webhooks.customerUpdated", "webhooks.customerDeleted", "webhooks.alertCreated", "webhooks.alertUpdated", "webhooks.alertDeleted", "webhooks.tmsCreated", "webhooks.tmsUpdated", "webhooks.tmsDeleted"]; | ||
var WebhookEventTypeForm = z["enum"](WebhookEventTypesForm); | ||
@@ -254,2 +271,17 @@ var AttemptsStatus = { | ||
schemas: z.record(z.unknown()) | ||
}), z.object({ | ||
name: z.literal("tms.created"), | ||
description: z.string(), | ||
archived: z["boolean"](), | ||
schemas: z.record(z.unknown()) | ||
}), z.object({ | ||
name: z.literal("tms.updated"), | ||
description: z.string(), | ||
archived: z["boolean"](), | ||
schemas: z.record(z.unknown()) | ||
}), z.object({ | ||
name: z.literal("tms.deleted"), | ||
description: z.string(), | ||
archived: z["boolean"](), | ||
schemas: z.record(z.unknown()) | ||
})]); | ||
@@ -294,2 +326,14 @@ | ||
}); | ||
var TMSCreatedPayload = z.object({ | ||
eventType: z.literal("tms.created"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var TMSUpdatedPayload = z.object({ | ||
eventType: z.literal("tms.updated"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var TMSDeletedPayload = z.object({ | ||
eventType: z.literal("tms.deleted"), | ||
payload: TMSWebhookPayload | ||
}); | ||
var WebhookScenariosEventPayload = SendScenarioPayload; | ||
@@ -299,3 +343,4 @@ var WebhookVerificationEventPayload = SendVerificationFlowPayload; | ||
var WebhookAlertEventPayload = z.union([AlertCreatedPayload, AlertUpdatedPayload, AlertDeletedPayload]); | ||
var WebhookEventPayload = z.union([WebhookScenariosEventPayload, WebhookVerificationEventPayload, WebhookCustomerEventPayload, WebhookAlertEventPayload]); | ||
var WebhookTMSEventPayload = z.union([TMSCreatedPayload, TMSUpdatedPayload, TMSDeletedPayload]); | ||
var WebhookEventPayload = z.union([WebhookScenariosEventPayload, WebhookVerificationEventPayload, WebhookCustomerEventPayload, WebhookAlertEventPayload, WebhookTMSEventPayload]); | ||
var AllNexeraEventTypes = z.array(NexeraEventTypes); | ||
@@ -322,3 +367,6 @@ var NexeraSvixEnvironmentConfig = z.object({ | ||
alertUpdated: z["boolean"]().optional(), | ||
alertDeleted: z["boolean"]().optional() | ||
alertDeleted: z["boolean"]().optional(), | ||
tmsCreated: z["boolean"]().optional(), | ||
tmsUpdated: z["boolean"]().optional(), | ||
tmsDeleted: z["boolean"]().optional() | ||
}).optional() | ||
@@ -335,3 +383,4 @@ }); | ||
description: z.string(), | ||
webhooks: z.array(WebhookCheckboxInformation) | ||
webhooks: z.array(WebhookCheckboxInformation), | ||
type: z.string().optional() | ||
}); | ||
@@ -461,2 +510,14 @@ var EndpointOut = z.object({ | ||
}); | ||
var SendMessageForTMSCreatedInput = z.object({ | ||
projectId: z.string(), | ||
payload: TMSCreatedPayload | ||
}); | ||
var SendMessageForTMSUpdatedInput = z.object({ | ||
projectId: z.string(), | ||
payload: TMSUpdatedPayload | ||
}); | ||
var SendMessageForTMSDeletedInput = z.object({ | ||
projectId: z.string(), | ||
payload: TMSDeletedPayload | ||
}); | ||
@@ -593,4 +654,25 @@ /** | ||
} | ||
}, { | ||
name: "tms.created", | ||
description: "Transaction Created Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema(TMSCreatedPayload) | ||
} | ||
}, { | ||
name: "tms.updated", | ||
description: "Transaction Updated Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema(TMSUpdatedPayload) | ||
} | ||
}, { | ||
name: "tms.deleted", | ||
description: "Transaction Deleted Webhook", | ||
archived: false, | ||
schemas: { | ||
1: zodToJsonSchema(TMSDeletedPayload) | ||
} | ||
}]; | ||
export { ALERT_CHART_TYPES, ALERT_TABLE_COLUMNS, AlertCategories, AlertCategory, AlertChartType, AlertCreatedPayload, AlertDeletedPayload, AlertSeverities, AlertSeverity, AlertStatus, AlertStatuses, AlertTableColumn, AlertType, AlertTypes, AlertUpdatedPayload, AlertWebhookPayload, AllNexeraEventTypes, AttemptDataOut, AttemptsStatus, AttemptsStatusCode, AttemptsStatusCodes, AttemptsStatusKey, AttemptsStatusKeys, CUSTOMER_TOPICS, ConnectionHandlingWorkspaceInput, ConnectionHandlingWorkspaceOutput, CreateEndpointInput, CreateEndpointOutput, CustomerCreatedPayload, CustomerDeletedPayload, CustomerEvents, CustomerTopics, CustomerUpdatedPayload, CustomerWebhookPayload, DeleteEndpointInput, DeleteEndpointOutput, DuplicateData, EndpointCheckboxsCollapsiblesSchema, EndpointHandlingForm, EndpointOut, EventType, GetEndpointSecretInput, GetEndpointSecretOutput, GetMessagesInput, ListAttemptsByEndpointInput, ListAttemptsByMessageInput, ListAttemptsByMessageOutput, ListEndpointsInput, ListEventTypeOutput, ListMessagesInput, ListMessagesOutput, ListResponseEndpointOut, MessageDataOut, MessageDataOutExtended, NexeraSvixEnvironmentConfig, NexeraWebhookEvents, ResendWebhookInput, ScenarioWebhookPayloadSchema, SendExampleMessageInput, SendMessageForAlertCreatedInput, SendMessageForAlertDeletedInput, SendMessageForAlertUpdatedInput, SendMessageForCustomerCreatedInput, SendMessageForCustomerDeletedInput, SendMessageForCustomerUpdatedInput, SendMessageForSendScenarioInput, SendMessageForSendVerificationFlowInput, SendScenarioPayload, SendVerificationFlowPayload, UpdateEndpointInput, UpdateEndpointOutput, UserInfoForDuplicate, VerificationFlowChecksWebhookPayload, VerificationFlowResult, WebhookAlertEventPayload, WebhookCheckboxInformation, WebhookCustomerEventPayload, WebhookEventPayload, WebhookEventType, WebhookEventTypeForm, WebhookEventTypes, WebhookEventTypesForm, WebhookScenariosEventPayload, WebhookVerificationEventPayload }; | ||
export { ALERT_CHART_TYPES, ALERT_TABLE_COLUMNS, AlertCategories, AlertCategory, AlertChartType, AlertCreatedPayload, AlertDeletedPayload, AlertSeverities, AlertSeverity, AlertStatus, AlertStatuses, AlertTableColumn, AlertType, AlertTypes, AlertUpdatedPayload, AlertWebhookPayload, AllNexeraEventTypes, AttemptDataOut, AttemptsStatus, AttemptsStatusCode, AttemptsStatusCodes, AttemptsStatusKey, AttemptsStatusKeys, CUSTOMER_TOPICS, ConnectionHandlingWorkspaceInput, ConnectionHandlingWorkspaceOutput, CreateEndpointInput, CreateEndpointOutput, CustomerCreatedPayload, CustomerDeletedPayload, CustomerEvents, CustomerTopics, CustomerUpdatedPayload, CustomerWebhookPayload, DeleteEndpointInput, DeleteEndpointOutput, DuplicateData, EndpointCheckboxsCollapsiblesSchema, EndpointHandlingForm, EndpointOut, EventType, GetEndpointSecretInput, GetEndpointSecretOutput, GetMessagesInput, ListAttemptsByEndpointInput, ListAttemptsByMessageInput, ListAttemptsByMessageOutput, ListEndpointsInput, ListEventTypeOutput, ListMessagesInput, ListMessagesOutput, ListResponseEndpointOut, MessageDataOut, MessageDataOutExtended, NexeraSvixEnvironmentConfig, NexeraWebhookEvents, ResendWebhookInput, ScenarioWebhookPayloadSchema, SendExampleMessageInput, SendMessageForAlertCreatedInput, SendMessageForAlertDeletedInput, SendMessageForAlertUpdatedInput, SendMessageForCustomerCreatedInput, SendMessageForCustomerDeletedInput, SendMessageForCustomerUpdatedInput, SendMessageForSendScenarioInput, SendMessageForSendVerificationFlowInput, SendMessageForTMSCreatedInput, SendMessageForTMSDeletedInput, SendMessageForTMSUpdatedInput, SendScenarioPayload, SendVerificationFlowPayload, TMSCreatedPayload, TMSDeletedPayload, TMSUpdatedPayload, TMSWebhookPayload, UpdateEndpointInput, UpdateEndpointOutput, UserInfoForDuplicate, VerificationFlowChecksWebhookPayload, VerificationFlowResult, WebhookAlertEventPayload, WebhookCheckboxInformation, WebhookCustomerEventPayload, WebhookEventPayload, WebhookEventType, WebhookEventTypeForm, WebhookEventTypes, WebhookEventTypesForm, WebhookScenariosEventPayload, WebhookTMSEventPayload, WebhookVerificationEventPayload }; |
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 not supported yet
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
14087473
185
124890