@nexeraid/identity-schemas 2.96.0-dev → 2.98.0-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{CoinMarketCap.schema-44ff5368.esm.mjs → CoinMarketCap.schema-6141ba93.esm.mjs} +1 -1
- package/dist/{CoinMarketCap.schema-7ab2b55d.cjs.prod.cjs → CoinMarketCap.schema-f176b6e7.cjs.prod.cjs} +1 -1
- package/dist/{CoinMarketCap.schema-dbb1bad9.cjs.dev.cjs → CoinMarketCap.schema-f4085f83.cjs.dev.cjs} +1 -1
- package/dist/declarations/src/identity/app-requests.schema.d.ts +32 -32
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +8 -8
- package/dist/declarations/src/identity/kyc.schema.d.ts +8 -8
- package/dist/declarations/src/identity/scenario.schema.d.ts +28 -24
- package/dist/declarations/src/identity/scenario.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +32 -32
- package/dist/declarations/src/tag.schema.d.ts +1 -0
- package/dist/declarations/src/tag.schema.d.ts.map +1 -1
- package/dist/{identity-api.schema-c443e003.cjs.prod.cjs → identity-api.schema-11bbb3f3.cjs.prod.cjs} +2 -0
- package/dist/{identity-api.schema-40228e5a.esm.mjs → identity-api.schema-7f88a50d.esm.mjs} +2 -0
- package/dist/{identity-api.schema-0c600ac8.cjs.dev.cjs → identity-api.schema-e36b538f.cjs.dev.cjs} +2 -0
- package/dist/nexeraid-identity-schemas.cjs.dev.cjs +12 -2
- package/dist/nexeraid-identity-schemas.cjs.prod.cjs +12 -2
- package/dist/nexeraid-identity-schemas.esm.mjs +13 -4
- package/dist/package.json +1 -1
- package/dist/{tfhe-utilities-2df4f424.cjs.prod.cjs → tfhe-utilities-0c6a2490.cjs.prod.cjs} +1 -1
- package/dist/{tfhe-utilities-b3f85eb3.esm.mjs → tfhe-utilities-3f572e70.esm.mjs} +1 -1
- package/dist/{tfhe-utilities-1f6e78b0.cjs.dev.cjs → tfhe-utilities-bf816d6c.cjs.dev.cjs} +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +2 -2
|
@@ -4,8 +4,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('./vault.schema-cb19adc8.cjs.prod.cjs');
|
|
6
6
|
var zod = require('zod');
|
|
7
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
8
|
-
var tfheUtilities = require('./tfhe-utilities-
|
|
7
|
+
var identityApi_schema = require('./identity-api.schema-11bbb3f3.cjs.prod.cjs');
|
|
8
|
+
var tfheUtilities = require('./tfhe-utilities-0c6a2490.cjs.prod.cjs');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
require('decimal.js');
|
|
11
11
|
|
|
@@ -93,6 +93,15 @@ var getTagTypeFromEntityType = function getTagTypeFromEntityType(entityType) {
|
|
|
93
93
|
var _ENTITY_TYPE_TAG_MAPP;
|
|
94
94
|
return (_ENTITY_TYPE_TAG_MAPP = ENTITY_TYPE_TAG_MAPPING[entityType]) !== null && _ENTITY_TYPE_TAG_MAPP !== void 0 ? _ENTITY_TYPE_TAG_MAPP : "individual";
|
|
95
95
|
};
|
|
96
|
+
var WORKFLOW_TYPE_TO_TAG_TYPE = {
|
|
97
|
+
KYC: "individual",
|
|
98
|
+
KYB: "company",
|
|
99
|
+
KYT: "transaction",
|
|
100
|
+
CustomerScreening: "individual",
|
|
101
|
+
ZKP: "individual",
|
|
102
|
+
TFHE: "individual",
|
|
103
|
+
SigGating: "transaction"
|
|
104
|
+
};
|
|
96
105
|
|
|
97
106
|
var AWS_WEBHOOK_TYPES = ["SubscriptionConfirmation", "Notification"];
|
|
98
107
|
var AwsWebhookTypes = zod.z["enum"](AWS_WEBHOOK_TYPES);
|
|
@@ -660,4 +669,5 @@ exports.Tag = Tag;
|
|
|
660
669
|
exports.TagTitle = TagTitle;
|
|
661
670
|
exports.TypeTag = TypeTag;
|
|
662
671
|
exports.TypeTags = TypeTags;
|
|
672
|
+
exports.WORKFLOW_TYPE_TO_TAG_TYPE = WORKFLOW_TYPE_TO_TAG_TYPE;
|
|
663
673
|
exports.getTagTypeFromEntityType = getTagTypeFromEntityType;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
export { U as ACTIVE_APTOS_CHAIN_IDS, K as ACTIVE_BITCOIN_CHAIN_IDS, a4 as ACTIVE_CARDANO_CHAIN_IDS, k as ACTIVE_COSMOS_CHAIN_IDS, A as ACTIVE_EVM_CHAIN_VALUES, _ as ACTIVE_POLKADOT_CHAIN_IDS, D as ACTIVE_SOLANA_CHAIN_IDS, q as ACTIVE_TEZOS_CHAIN_IDS, a$ as ALPHA_2_COUNTRIES, R as APTOS_CHAIN_IDS, O as APTOS_CHAIN_NAMES, Q as APTOS_CHAIN_NAMES_LIST, cj as ActionId, bW as ActionPrefix, d0 as AdditionalCustomerInformationParams, a9 as AddressSchema, cK as AiAgentId, c1 as AiAgentPrefix, cJ as AiDocumentId, c0 as AiDocumentPrefix, cH as AiExecutionId, b_ as AiExecutionPrefix, cI as AiExecutionStepId, b$ as AiExecutionStepPrefix, cQ as AiMessageId, c5 as AiMessagePrefix, cL as AiStepId, c2 as AiStepPrefix, b0 as Alpha2Country, e9 as AmlResults, cd as AppId, bw as AppPrefix, ac as AptosAddress, V as AptosChainId, aE as AptosSignature, J as BITCOIN_CHAIN_IDS, H as BITCOIN_CHAIN_NAMES, I as BITCOIN_CHAIN_NAMES_LIST, au as BLOCKCHAIN_NAMESPACES, aC as BLOCKCHAIN_NAMESPACE_TO_ADDRESS_URL, aB as BLOCKCHAIN_NAMESPACE_TO_NAME, aA as BLOCKCHAIN_NAME_TO_NAMESPACE, bl as BasicCustomerContactInformation, aq as BitcoinAddress, am as BitcoinBech32Address, L as BitcoinChainId, ak as BitcoinP2PKHAddress, al as BitcoinP2SHAddress, ap as BitcoinTestnetBech32Address, an as BitcoinTestnetP2PKHAddress, ao as BitcoinTestnetP2SHAddress, ar as BlockchainAddress, B as BlockchainId, av as BlockchainNamespace, aN as BlockchainSignature, a3 as CARDANO_CHAIN_IDS, a1 as CARDANO_CHAIN_NAMES, a2 as CARDANO_CHAIN_NAMES_LIST, j as COSMOS_CHAIN_IDS, C as COSMOS_CHAIN_NAMES, i as COSMOS_CHAIN_NAMES_LIST, bm as CUSTOMERS_CHARTS, bq as CUSTOMER_AUTOMATION_REASONS, bo as CUSTOMER_TABLE_COLUMNS, aj as CardanoAddress, a5 as CardanoChainId, aM as CardanoSignature, ce as ChallengeId, bx as ChallengePrefix, cO as ChatId, c3 as ChatPrefix, af as CosmosAddress, l as CosmosChainId, aH as CosmosSignature, b3 as CountryName, aZ as CryptoCode, aY as CryptoCodes, aX as CurrencyCode, aW as CurrencyCodes, d4 as CustomerId, bi as CustomerOnboardingLevel, bh as CustomerOnboardingLevels, br as CustomerPersonalInformation, cg as CustomerScreeningId, bz as CustomerScreeningPrefix, bk as CustomerStatus, bj as CustomerStatuses, bp as CustomerTableColumn, bc as CustomerType, bb as CustomerTypes, bn as CustomersChartType, e5 as DEFAULT_FIAT_CURRENCY, ay as DISPLAYED_BLOCKCHAIN_NAMESPACES, ee as DataLinkTypeZodSchema, ec as DataLinkVersionZodSchema, ea as DetectedDuplicates, az as DisplayedBlockchainNamespace, aD as EIP155Signature, aQ as ENVS, E as EVM_BLOCK_TIME, f as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, aI as EdSignature, cb as EmailId, bu as EmailPrefix, aR as EnvironmentSchema, g as EvmChainId, d5 as ExternalCustomerId, cR as FLOW_TYPES, cS as FlowType, aO as FunctionCallData, et as GenericVaultDataLinkZodSchema, es as GenericVaultEmbeddedLinkZodSchema, eq as GenericVaultPointerLinkZodSchema, er as GenericVaultSearchLinkZodSchema, dq as GenericVerifiableCredentialSchema, at as HexadecimalSchema, dS as HumanReadableTransactionReviewStatus, dR as HumanReadableTransactionReviewStatuses, dU as HumanReadableTransactionStatusMapping, dw as ID3CredentialSchema, db as ID3CredentialSubjectSchema, cV as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, cX as IDENTITY_DOCUMENT_OPTIONS, dt as IDImageCredentialSchema, dm as IDImageCredentialSubjectSchema, ds as IDInformationCredentialSchema, dl as IDInformationCredentialSubjectSchema, dr as IDInformationTfheCredentialSchema, dk as IDInformationTfheCredentialSubjectSchema, dx as IDScanCredentialSchema, dc as IDScanCredentialSubjectSchema, dy as IDScanPassportCredentialSchema, dd as IDScanPassportCredentialSubjectSchema, dz as IDScanSelfieCredentialSchema, de as IDScanSelfieCredentialSubjectSchema, a_ as ISO3CountryCode, c$ as Identifier, d7 as IdentityAppV2Web2JWT, d6 as IdentityAppV2Web3JWT, cW as IdentityDocumentCountryListOption, cY as IdentityDocumentOptionsType, ca as IdentityId, bt as IdentityPrefix, d8 as IdentityWidgetAccessToken_NEW, d9 as IdentityWidgetSessionToken, cx as InstitutionExtractedInfosId, bQ as InstitutionExtractedInfosPrefix, cw as InstitutionId, bP as InstitutionPrefix, aV as IpAddress, bg as KybOnboardingLevel, bf as KybOnboardingLevels, be as KycOnboardingLevel, bd as KycOnboardingLevels, cA as ListId, bT as ListPrefix, cN as MemberId, cP as MessageId, c4 as MessagePrefix, ck as MetaAlertId, bD as MetaAlertPrefix, v as NEXERA_ACTIVE_STARKNET_CHAIN_IDS, M as NEXERA_APTOS_CHAINS, G as NEXERA_BITCOIN_CHAINS, a0 as NEXERA_CARDANO_CHAINS, h as NEXERA_COSMOS_CHAINS, a as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAINS_ID, b as NEXERA_EVM_CHAIN_NAMES, c as NEXERA_EVM_CHAIN_NAMES_LIST, W as NEXERA_POLKADOT_CHAINS, w as NEXERA_SOLANA_CHAINS, s as NEXERA_STARKNET_CHAINS, u as NEXERA_STARKNET_CHAIN_IDS, t as NEXERA_STARKNET_CHAIN_NAMES, m as NEXERA_TEZOS_CHAINS, p as NEXERA_TEZOS_CHAIN_IDS, n as NEXERA_TEZOS_CHAIN_NAMES, o as NEXERA_TEZOS_CHAIN_NAMES_LIST, e as NexeraEvmChains, N as NonTestnetBlockchainId, dE as OLD_AMLScreeningsResultsCredentialSchema, dj as OLD_AMLScreeningsResultsCredentialSubjectSchema, dA as OLD_IDImageCredentialSchema, df as OLD_IDImageCredentialSubjectSchema, dB as OLD_IDInformationCredentialSchema, dg as OLD_IDInformationCredentialSubjectSchema, dC as OLD_ProofOfResidenceCredentialSchema, dh as OLD_ProofOfResidenceCredentialSubjectSchema, dD as OLD_SelfieImageCredentialSchema, di as OLD_SelfieImageCredentialSubjectSchema, d1 as OrganizationId, aT as OtpCode, aK as P2Signature, cZ as PERSONAL_INFORMATION_FIELDS, Z as POLKADOT_CHAIN_IDS, X as POLKADOT_CHAIN_NAMES, Y as POLKADOT_CHAIN_NAMES_LIST, P as POLYGON_NETWORK_NAMES, aU as PUBLIC_SERVICES_SCHEMA_MAP, e0 as PaymentType, d$ as PaymentTypes, c_ as PersonalInformationFieldsIdentityDocuments, ae as PolkadotAddress, $ as PolkadotChainId, aG as PolkadotSignature, r as PolygonNetworkNames, a7 as PrivateKey, dv as ProofOfResidenceCredentialSchema, dp as ProofOfResidenceCredentialSubjectSchema, a8 as PublicKey, cC as QueryGroupId, bV as QueryGroupPrefix, cB as QueryId, bU as QueryPrefix, ba as RiskScoreType, b9 as RiskScoreTypes, z as SOLANA_CHAIN_IDS, x as SOLANA_CHAIN_NAMES, y as SOLANA_CHAIN_NAMES_LIST, aw as SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH, cz as ScenarioId, bS as ScenarioPrefix, cD as ScorechainAnalysisId, bC as ScorechainAnalysisPrefix, b7 as ScorechainCountry, eu as ScorechainEntityRecord, du as SelfieImageCredentialSchema, dn as SelfieImageCredentialSubjectSchema, ef as Separator, ch as SigGatingId, bA as SigGatingPrefix, F as SolanaChainId, aJ as SpSignature, cG as SsssChunkId, bZ as SsssChunkPrefix, cF as SsssShareId, bY as SsssSharePrefix, ad as StarknetAddress, S as StarknetChainId, aF as StarknetSignature, c9 as StorageId, bs as StoragePrefix, as as String0x, ax as SupportedBlockchainNamespaceForSignatureAuth, e6 as TRANSACTIONS_STATS_CURRENCIES, dF as TRANSACTION_CHARTS, dH as TRANSACTION_TABLE_COLUMNS, ci as TagId, bB as TagPrefix, cl as TagsToEntityId, bE as TagsToEntityPrefix, cf as TestId, by as TestPrefix, ai as TezosAddress, T as TezosChainId, ah as TezosContractAddress, aP as TezosEntrypointName, ag as TezosImplicitAddress, aL as TezosSignature, co as TransactionActivityId, bH as TransactionActivityPrefix, cm as TransactionAddressesId, bF as TransactionAddressesPrefix, cy as TransactionAmountId, bR as TransactionAmountPrefix, e4 as TransactionAmountsFieldName, e3 as TransactionAmountsFieldNames, dY as TransactionCurrencyCode, dX as TransactionCurrencyCodes, e8 as TransactionDataEventObject, dW as TransactionDirection, dV as TransactionDirections, ct as TransactionExtractedInfosId, bM as TransactionExtractedInfosPrefix, cp as TransactionFeesId, bI as TransactionFeesPrefix, cn as TransactionId, cs as TransactionInfosId, bL as TransactionInfosPrefix, cv as TransactionMethodExtractedInfosId, bO as TransactionMethodExtractedInfosPrefix, cu as TransactionMethodsId, bN as TransactionMethodsPrefix, cr as TransactionPartiesId, bK as TransactionPartiesPrefix, e2 as TransactionPartiesType, e1 as TransactionPartiesTypes, bG as TransactionPrefix, d_ as TransactionProvider, dZ as TransactionProviders, cq as TransactionReviewId, bJ as TransactionReviewPrefix, dQ as TransactionReviewStatus, dP as TransactionReviewStatuses, dO as TransactionRiskLevel, dN as TransactionRiskLevels, e7 as TransactionStatsCurrency, dT as TransactionStatusMapping, dI as TransactionTableColumn, dK as TransactionType, dM as TransactionTypeWithAll, dJ as TransactionTypes, dL as TransactionTypesWithAll, dG as TransactionsChartType, aa as TxHash, aS as UuidString, ej as VaultJsonSchemas, ep as VaultMetadataLinkZodSchema, en as VaultPointerKeyMapZodSchema, eo as VaultQueryMapZodSchema, el as VaultSchemaIdZodSchema, em as VaultSchemaPathsZodSchema, ek as VaultZodSchema, cU as VerificationMode, cT as VerificationModes, cc as WalletId, bv as WalletPrefix, ev as WalletScreeningData, ex as WalletScreeningProvider, ew as WalletScreeningProviders, da as Web2CreateSessionParams, d3 as WorkflowId, cE as WorkflowSessionAttributeId, bX as WorkflowSessionAttributePrefix, c6 as WorkflowSessionId, d2 as WorkspaceId, ed as allDataLinkTypes, eb as allDataLinkVersions, b2 as countryISO2toISO3Mapping, b1 as countryISO3toISO2Mapping, c7 as createBrandedSchemaId, c8 as createBrandedSchemaIdWithParams, cM as generateId, eg as generateZodObjectPaths, a6 as isValidAddress, b4 as isoCountriesNameFromISO2, b5 as isoCountriesNameFromISO3, b6 as parseISO3CountryCode, eh as resolvePathOnDataSchema, ei as resolvePathOnMapSchema, b8 as scorechainCountriesNameFromISO2, ab as shortBlockchainAddress } from './vault.schema-b3910f8d.esm.mjs';
|
|
2
2
|
import { z } from 'zod';
|
|
3
|
-
import { C as CredentialTypes } from './identity-api.schema-
|
|
4
|
-
export { v as ACTION_STATUSES, t as ACTION_TRIGGERS, b1 as ARRAY_OPERATORS, aL as AUTHORIZATION_REQUEST_MESSAGE_TYPES, A as AVAILABLE_FLOWS, a4 as AbbreviatedWorkflowScenario, a2 as Action, w as ActionStatus, u as ActionTrigger, s as ActionType, x as ActionValue, bf as AllCredentialValues, bV as AllScenarioExecutionAuthorizationData, bN as AnyTxAuthDataSignatureResponse, bQ as AnyTxAuthInputJsSdk, bG as ApiTezosTxAuthInput, bC as ApiTxAuthInput, b2 as ArrayOperator, aT as AuthQrCodeData, ap as AuthSession, aq as AuthSessionData, aO as AuthorizationRequestMessage, aN as AuthorizationRequestMessageType, aM as AuthorizationRequestMessageTypes, aR as AuthorizationResponseMessage, n as AvailableFlow, b7 as BOOLEAN_OPERATORS, M as BackwardsCompatibleScenarioType, L as BackwardsCompatibleScenarioTypes, N as BaseQueryResponse, b8 as BooleanOperator, aI as CIRCUIT_IDS, bq as ChallengeQuerySchema, ar as ChallengeResponse, aJ as CircuitId, b as CloseScreenNotification, a7 as ComplianceImplementationStepsInput, bU as CreateAuthRequestProps, a6 as CreateTemplateScenario, c4 as CredentialMediaType, b$ as CredentialNames, aS as CredentialQrCodeData, b_ as CredentialSchemas, c2 as CredentialType, C as CredentialTypes, b9 as DATE_OPERATORS, D as DataAvailableOnStart, ba as DateOperator, bO as Eip155TxAuthInputJsSdk, U as ExecuteQueryResponse, bM as ExtendedTezosTxAuthDataSignatureResponse, bK as ExtendedTezosTxAuthInput, bL as ExtendedTxAuthDataSignatureResponse, bJ as ExtendedTxAuthInput, ao as GenerateWalletChallengeRequest, a9 as GetCredentialsRequest, aa as GetCredentialsResponse, au as GetCustomerStatusRequest, az as GetCustomerStatusResponse, bI as GetTezosTxAuthDataSignatureResponse, bE as GetTxAuthDataSignatureResponse, ai as GetTxAuthSigRequest, ak as GetTxAuthSigRequestTezos, aj as GetTxAuthSigResponse, al as GetTxAuthSigResponseTezos, aC as HostMessage, am as HostRequestMessage, H as HostResponseMessage, be as IDInformationTfhe, aA as IdentityAppMessage, aD as IdentityMessage, i as IdentityNotificationMessage, m as IdentityRequestMessage, an as IdentityResponseMessage, av as IdentitySdkMessage, aw as IdentitySdkMessageWithIdentifier, aB as IdentityWallet, j as InitialDataRequest, o as InitialDataResponse, I as IsVerifiedNotification, ag as IsVerifiedRequest, ah as IsVerifiedResponse, K as KycCompletionData, c as KycCompletionNotification, aG as MediaType, aH as MediaTypePID, b5 as NUMERIC_OPERATORS, c0 as NexeraCredentialType, b6 as NumericOperator, br as OLD_CHALLENGE_QUERY_OPERATORS, bs as OLD_ChallengeQueryOperator, bv as OLD_ChallengeQueryOperatorToOperator, bn as OLD_ChallengeQuerySchema, bx as OLD_QueryCredentialType, bw as OLD_QueryCredentialTypes, aZ as OPERATORS, g as OcvSdkInitialized, O as OffChainScenarioExecutionData, Q as OffChainZKPRuleResult, d as OnChainScenarioExecutionData, a_ as Operator, bt as OperatorMappings, bu as OperatorToOLD_ChallengeQueryOperator, bm as PartialQueryConfigSimplified, P as PolygonIdInitialized, ac as PolygonIdRequest, ab as PolygonIdRequestData, ae as PolygonIdResponse, ad as PolygonIdResponseData, bT as PrivacyPreservingMonitoring, aP as ProofData, aX as QUERY_LOGIC_OPERATOR, aU as QrCodeLinkWithSchemaType, bg as QueriesOptions, bj as QueryConfigSimplified, bi as QueryConfigTfhe, bp as QueryCredentialType, bo as QueryCredentialTypes, bk as QueryGroupConfigSimplified, aY as QueryLogicOperator, bh as QueryType, aE as RequiredDataRowSchema, aF as RequiredVerificationData, V as RuleEngineResponse, R as RuleEngineScenarioExecutionData, bl as RuleResultQueryConfig, Y as RuleResultStatus, Z as RuleResultStatusLabels, X as RuleResultStatuses, r as SCENARIO_ACTION_TYPES, bW as SCENARIO_AUTHORIZATION_STATUSES, b3 as STRING_OPERATORS, bb as SUPPORTED_TYPES, a3 as Scenario, S as ScenarioAuthorizationData, bX as ScenarioAuthorizationStatus, e as ScenarioExecutionData, f as ScenarioExecutionNotification, W as ScenarioExecutionResponse, E as ScenarioMode, B as ScenarioModes, J as ScenarioSchema, G as ScenarioStatus, F as ScenarioStatuses, z as ScenarioType, y as ScenarioTypes, _ as SdkVerificationOutput, a as SdkVerificationResponseSchema, l as SendTransactionRequest, k as SignatureRequest, p as SignatureResponse, a8 as SimplifiedCredential, h as StartCompletedNotification, af as StartFlowRequest, b4 as StringOperator, bc as SupportedType, bd as SupportedTypes, a5 as TemplateScenario, bF as TezosTxAuthInput, bP as TezosTxAuthInputJsSdk, bH as TezosTxSignatureResponse, T as TransactionData, q as TransactionResponse, ay as TxAuthDataSignatureGatingError, at as TxAuthDataSignatureGatingRequest, ax as TxAuthDataSignatureResponse, bB as TxAuthInput, bD as TxSignatureResponse, c3 as VerifiableCredential, a1 as VerificationOutput, a0 as VerificationSessionStatus, $ as VerificationSessionStatuses, bZ as VerifyWalletChallengeRequest, as as WalletSignResponse, bY as WalletSignatureResponse, a$ as ZKPOperator, bR as ZKPRequest, bS as ZKPRequestFromZKVerifier, aK as ZeroKnowledgeProofRequest, aQ as ZeroKnowledgeProofResponse, c1 as getCredentialName, bz as getOldCredentialPath, by as getOldCredentialType, bA as oldCredentialPathToDataLink, b0 as operatorDisplayMap, aV as parseIden3Message, aW as parseSessionIdFromUrl } from './identity-api.schema-
|
|
5
|
-
export { s as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from './tfhe-utilities-
|
|
3
|
+
import { C as CredentialTypes } from './identity-api.schema-7f88a50d.esm.mjs';
|
|
4
|
+
export { v as ACTION_STATUSES, t as ACTION_TRIGGERS, b1 as ARRAY_OPERATORS, aL as AUTHORIZATION_REQUEST_MESSAGE_TYPES, A as AVAILABLE_FLOWS, a4 as AbbreviatedWorkflowScenario, a2 as Action, w as ActionStatus, u as ActionTrigger, s as ActionType, x as ActionValue, bf as AllCredentialValues, bV as AllScenarioExecutionAuthorizationData, bN as AnyTxAuthDataSignatureResponse, bQ as AnyTxAuthInputJsSdk, bG as ApiTezosTxAuthInput, bC as ApiTxAuthInput, b2 as ArrayOperator, aT as AuthQrCodeData, ap as AuthSession, aq as AuthSessionData, aO as AuthorizationRequestMessage, aN as AuthorizationRequestMessageType, aM as AuthorizationRequestMessageTypes, aR as AuthorizationResponseMessage, n as AvailableFlow, b7 as BOOLEAN_OPERATORS, M as BackwardsCompatibleScenarioType, L as BackwardsCompatibleScenarioTypes, N as BaseQueryResponse, b8 as BooleanOperator, aI as CIRCUIT_IDS, bq as ChallengeQuerySchema, ar as ChallengeResponse, aJ as CircuitId, b as CloseScreenNotification, a7 as ComplianceImplementationStepsInput, bU as CreateAuthRequestProps, a6 as CreateTemplateScenario, c4 as CredentialMediaType, b$ as CredentialNames, aS as CredentialQrCodeData, b_ as CredentialSchemas, c2 as CredentialType, C as CredentialTypes, b9 as DATE_OPERATORS, D as DataAvailableOnStart, ba as DateOperator, bO as Eip155TxAuthInputJsSdk, U as ExecuteQueryResponse, bM as ExtendedTezosTxAuthDataSignatureResponse, bK as ExtendedTezosTxAuthInput, bL as ExtendedTxAuthDataSignatureResponse, bJ as ExtendedTxAuthInput, ao as GenerateWalletChallengeRequest, a9 as GetCredentialsRequest, aa as GetCredentialsResponse, au as GetCustomerStatusRequest, az as GetCustomerStatusResponse, bI as GetTezosTxAuthDataSignatureResponse, bE as GetTxAuthDataSignatureResponse, ai as GetTxAuthSigRequest, ak as GetTxAuthSigRequestTezos, aj as GetTxAuthSigResponse, al as GetTxAuthSigResponseTezos, aC as HostMessage, am as HostRequestMessage, H as HostResponseMessage, be as IDInformationTfhe, aA as IdentityAppMessage, aD as IdentityMessage, i as IdentityNotificationMessage, m as IdentityRequestMessage, an as IdentityResponseMessage, av as IdentitySdkMessage, aw as IdentitySdkMessageWithIdentifier, aB as IdentityWallet, j as InitialDataRequest, o as InitialDataResponse, I as IsVerifiedNotification, ag as IsVerifiedRequest, ah as IsVerifiedResponse, K as KycCompletionData, c as KycCompletionNotification, aG as MediaType, aH as MediaTypePID, b5 as NUMERIC_OPERATORS, c0 as NexeraCredentialType, b6 as NumericOperator, br as OLD_CHALLENGE_QUERY_OPERATORS, bs as OLD_ChallengeQueryOperator, bv as OLD_ChallengeQueryOperatorToOperator, bn as OLD_ChallengeQuerySchema, bx as OLD_QueryCredentialType, bw as OLD_QueryCredentialTypes, aZ as OPERATORS, g as OcvSdkInitialized, O as OffChainScenarioExecutionData, Q as OffChainZKPRuleResult, d as OnChainScenarioExecutionData, a_ as Operator, bt as OperatorMappings, bu as OperatorToOLD_ChallengeQueryOperator, bm as PartialQueryConfigSimplified, P as PolygonIdInitialized, ac as PolygonIdRequest, ab as PolygonIdRequestData, ae as PolygonIdResponse, ad as PolygonIdResponseData, bT as PrivacyPreservingMonitoring, aP as ProofData, aX as QUERY_LOGIC_OPERATOR, aU as QrCodeLinkWithSchemaType, bg as QueriesOptions, bj as QueryConfigSimplified, bi as QueryConfigTfhe, bp as QueryCredentialType, bo as QueryCredentialTypes, bk as QueryGroupConfigSimplified, aY as QueryLogicOperator, bh as QueryType, aE as RequiredDataRowSchema, aF as RequiredVerificationData, V as RuleEngineResponse, R as RuleEngineScenarioExecutionData, bl as RuleResultQueryConfig, Y as RuleResultStatus, Z as RuleResultStatusLabels, X as RuleResultStatuses, r as SCENARIO_ACTION_TYPES, bW as SCENARIO_AUTHORIZATION_STATUSES, b3 as STRING_OPERATORS, bb as SUPPORTED_TYPES, a3 as Scenario, S as ScenarioAuthorizationData, bX as ScenarioAuthorizationStatus, e as ScenarioExecutionData, f as ScenarioExecutionNotification, W as ScenarioExecutionResponse, E as ScenarioMode, B as ScenarioModes, J as ScenarioSchema, G as ScenarioStatus, F as ScenarioStatuses, z as ScenarioType, y as ScenarioTypes, _ as SdkVerificationOutput, a as SdkVerificationResponseSchema, l as SendTransactionRequest, k as SignatureRequest, p as SignatureResponse, a8 as SimplifiedCredential, h as StartCompletedNotification, af as StartFlowRequest, b4 as StringOperator, bc as SupportedType, bd as SupportedTypes, a5 as TemplateScenario, bF as TezosTxAuthInput, bP as TezosTxAuthInputJsSdk, bH as TezosTxSignatureResponse, T as TransactionData, q as TransactionResponse, ay as TxAuthDataSignatureGatingError, at as TxAuthDataSignatureGatingRequest, ax as TxAuthDataSignatureResponse, bB as TxAuthInput, bD as TxSignatureResponse, c3 as VerifiableCredential, a1 as VerificationOutput, a0 as VerificationSessionStatus, $ as VerificationSessionStatuses, bZ as VerifyWalletChallengeRequest, as as WalletSignResponse, bY as WalletSignatureResponse, a$ as ZKPOperator, bR as ZKPRequest, bS as ZKPRequestFromZKVerifier, aK as ZeroKnowledgeProofRequest, aQ as ZeroKnowledgeProofResponse, c1 as getCredentialName, bz as getOldCredentialPath, by as getOldCredentialType, bA as oldCredentialPathToDataLink, b0 as operatorDisplayMap, aV as parseIden3Message, aW as parseSessionIdFromUrl } from './identity-api.schema-7f88a50d.esm.mjs';
|
|
5
|
+
export { s as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from './tfhe-utilities-3f572e70.esm.mjs';
|
|
6
6
|
import 'nanoid';
|
|
7
7
|
import 'decimal.js';
|
|
8
8
|
|
|
@@ -90,6 +90,15 @@ var getTagTypeFromEntityType = function getTagTypeFromEntityType(entityType) {
|
|
|
90
90
|
var _ENTITY_TYPE_TAG_MAPP;
|
|
91
91
|
return (_ENTITY_TYPE_TAG_MAPP = ENTITY_TYPE_TAG_MAPPING[entityType]) !== null && _ENTITY_TYPE_TAG_MAPP !== void 0 ? _ENTITY_TYPE_TAG_MAPP : "individual";
|
|
92
92
|
};
|
|
93
|
+
var WORKFLOW_TYPE_TO_TAG_TYPE = {
|
|
94
|
+
KYC: "individual",
|
|
95
|
+
KYB: "company",
|
|
96
|
+
KYT: "transaction",
|
|
97
|
+
CustomerScreening: "individual",
|
|
98
|
+
ZKP: "individual",
|
|
99
|
+
TFHE: "individual",
|
|
100
|
+
SigGating: "transaction"
|
|
101
|
+
};
|
|
93
102
|
|
|
94
103
|
var AWS_WEBHOOK_TYPES = ["SubscriptionConfirmation", "Notification"];
|
|
95
104
|
var AwsWebhookTypes = z["enum"](AWS_WEBHOOK_TYPES);
|
|
@@ -107,4 +116,4 @@ var AwsWebhookInput = z.object({
|
|
|
107
116
|
SubscribeURL: z.string().nullish()
|
|
108
117
|
});
|
|
109
118
|
|
|
110
|
-
export { AWS_WEBHOOK_TYPES, AwsWebhookInput, AwsWebhookTypes, DownloadableKycSchema, EncryptedKycKey, EncryptedVerifiableCredentialDataSchema, EncryptedVerifiableCredentialSchema, ImageUploadResponseSchema, MAX_MEDIA_FILE_SIZE, MediaDataSchema, Tag, TagTitle, TypeTag, TypeTags, getTagTypeFromEntityType };
|
|
119
|
+
export { AWS_WEBHOOK_TYPES, AwsWebhookInput, AwsWebhookTypes, DownloadableKycSchema, EncryptedKycKey, EncryptedVerifiableCredentialDataSchema, EncryptedVerifiableCredentialSchema, ImageUploadResponseSchema, MAX_MEDIA_FILE_SIZE, MediaDataSchema, Tag, TagTitle, TypeTag, TypeTags, WORKFLOW_TYPE_TO_TAG_TYPE, getTagTypeFromEntityType };
|
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var vault_schema = require('./vault.schema-cb19adc8.cjs.prod.cjs');
|
|
4
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
4
|
+
var identityApi_schema = require('./identity-api.schema-11bbb3f3.cjs.prod.cjs');
|
|
5
5
|
|
|
6
6
|
var VC_JSON_SCHEMA_MAP = {
|
|
7
7
|
ProofOfResidence: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ez as _toConsumableArray } from './vault.schema-b3910f8d.esm.mjs';
|
|
2
|
-
import { bc as SupportedType, b5 as NUMERIC_OPERATORS, b1 as ARRAY_OPERATORS, b7 as BOOLEAN_OPERATORS, b3 as STRING_OPERATORS } from './identity-api.schema-
|
|
2
|
+
import { bc as SupportedType, b5 as NUMERIC_OPERATORS, b1 as ARRAY_OPERATORS, b7 as BOOLEAN_OPERATORS, b3 as STRING_OPERATORS } from './identity-api.schema-7f88a50d.esm.mjs';
|
|
3
3
|
|
|
4
4
|
var VC_JSON_SCHEMA_MAP = {
|
|
5
5
|
ProofOfResidence: {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var vault_schema = require('./vault.schema-21a24278.cjs.dev.cjs');
|
|
4
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
4
|
+
var identityApi_schema = require('./identity-api.schema-e36b538f.cjs.dev.cjs');
|
|
5
5
|
|
|
6
6
|
var VC_JSON_SCHEMA_MAP = {
|
|
7
7
|
ProofOfResidence: {
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-e36b538f.cjs.dev.cjs');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/vault.schema-21a24278.cjs.dev.cjs');
|
|
8
8
|
require('nanoid');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-11bbb3f3.cjs.prod.cjs');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/vault.schema-cb19adc8.cjs.prod.cjs');
|
|
8
8
|
require('nanoid');
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { v as ACTION_STATUSES, t as ACTION_TRIGGERS, b1 as ARRAY_OPERATORS, aL as AUTHORIZATION_REQUEST_MESSAGE_TYPES, A as AVAILABLE_FLOWS, a4 as AbbreviatedWorkflowScenario, a2 as Action, w as ActionStatus, u as ActionTrigger, s as ActionType, x as ActionValue, bf as AllCredentialValues, bV as AllScenarioExecutionAuthorizationData, bN as AnyTxAuthDataSignatureResponse, bQ as AnyTxAuthInputJsSdk, bG as ApiTezosTxAuthInput, bC as ApiTxAuthInput, b2 as ArrayOperator, aT as AuthQrCodeData, ap as AuthSession, aq as AuthSessionData, aO as AuthorizationRequestMessage, aN as AuthorizationRequestMessageType, aM as AuthorizationRequestMessageTypes, aR as AuthorizationResponseMessage, n as AvailableFlow, b7 as BOOLEAN_OPERATORS, M as BackwardsCompatibleScenarioType, L as BackwardsCompatibleScenarioTypes, N as BaseQueryResponse, b8 as BooleanOperator, aI as CIRCUIT_IDS, bq as ChallengeQuerySchema, ar as ChallengeResponse, aJ as CircuitId, b as CloseScreenNotification, a7 as ComplianceImplementationStepsInput, bU as CreateAuthRequestProps, a6 as CreateTemplateScenario, aS as CredentialQrCodeData, b9 as DATE_OPERATORS, D as DataAvailableOnStart, ba as DateOperator, bO as Eip155TxAuthInputJsSdk, U as ExecuteQueryResponse, bM as ExtendedTezosTxAuthDataSignatureResponse, bK as ExtendedTezosTxAuthInput, bL as ExtendedTxAuthDataSignatureResponse, bJ as ExtendedTxAuthInput, ao as GenerateWalletChallengeRequest, a9 as GetCredentialsRequest, aa as GetCredentialsResponse, au as GetCustomerStatusRequest, az as GetCustomerStatusResponse, bI as GetTezosTxAuthDataSignatureResponse, bE as GetTxAuthDataSignatureResponse, ai as GetTxAuthSigRequest, ak as GetTxAuthSigRequestTezos, aj as GetTxAuthSigResponse, al as GetTxAuthSigResponseTezos, aC as HostMessage, am as HostRequestMessage, H as HostResponseMessage, be as IDInformationTfhe, aA as IdentityAppMessage, aD as IdentityMessage, i as IdentityNotificationMessage, m as IdentityRequestMessage, an as IdentityResponseMessage, av as IdentitySdkMessage, aw as IdentitySdkMessageWithIdentifier, aB as IdentityWallet, j as InitialDataRequest, o as InitialDataResponse, I as IsVerifiedNotification, ag as IsVerifiedRequest, ah as IsVerifiedResponse, K as KycCompletionData, c as KycCompletionNotification, aG as MediaType, aH as MediaTypePID, b5 as NUMERIC_OPERATORS, b6 as NumericOperator, br as OLD_CHALLENGE_QUERY_OPERATORS, bs as OLD_ChallengeQueryOperator, bv as OLD_ChallengeQueryOperatorToOperator, bn as OLD_ChallengeQuerySchema, bx as OLD_QueryCredentialType, bw as OLD_QueryCredentialTypes, aZ as OPERATORS, g as OcvSdkInitialized, O as OffChainScenarioExecutionData, Q as OffChainZKPRuleResult, d as OnChainScenarioExecutionData, a_ as Operator, bt as OperatorMappings, bu as OperatorToOLD_ChallengeQueryOperator, bm as PartialQueryConfigSimplified, P as PolygonIdInitialized, ac as PolygonIdRequest, ab as PolygonIdRequestData, ae as PolygonIdResponse, ad as PolygonIdResponseData, bT as PrivacyPreservingMonitoring, aP as ProofData, aX as QUERY_LOGIC_OPERATOR, aU as QrCodeLinkWithSchemaType, bg as QueriesOptions, bj as QueryConfigSimplified, bi as QueryConfigTfhe, bp as QueryCredentialType, bo as QueryCredentialTypes, bk as QueryGroupConfigSimplified, aY as QueryLogicOperator, bh as QueryType, aE as RequiredDataRowSchema, aF as RequiredVerificationData, V as RuleEngineResponse, R as RuleEngineScenarioExecutionData, bl as RuleResultQueryConfig, Y as RuleResultStatus, Z as RuleResultStatusLabels, X as RuleResultStatuses, r as SCENARIO_ACTION_TYPES, bW as SCENARIO_AUTHORIZATION_STATUSES, b3 as STRING_OPERATORS, bb as SUPPORTED_TYPES, a3 as Scenario, S as ScenarioAuthorizationData, bX as ScenarioAuthorizationStatus, e as ScenarioExecutionData, f as ScenarioExecutionNotification, W as ScenarioExecutionResponse, E as ScenarioMode, B as ScenarioModes, J as ScenarioSchema, G as ScenarioStatus, F as ScenarioStatuses, z as ScenarioType, y as ScenarioTypes, _ as SdkVerificationOutput, a as SdkVerificationResponseSchema, l as SendTransactionRequest, k as SignatureRequest, p as SignatureResponse, a8 as SimplifiedCredential, h as StartCompletedNotification, af as StartFlowRequest, b4 as StringOperator, bc as SupportedType, bd as SupportedTypes, a5 as TemplateScenario, bF as TezosTxAuthInput, bP as TezosTxAuthInputJsSdk, bH as TezosTxSignatureResponse, T as TransactionData, q as TransactionResponse, ay as TxAuthDataSignatureGatingError, at as TxAuthDataSignatureGatingRequest, ax as TxAuthDataSignatureResponse, bB as TxAuthInput, bD as TxSignatureResponse, a1 as VerificationOutput, a0 as VerificationSessionStatus, $ as VerificationSessionStatuses, bZ as VerifyWalletChallengeRequest, as as WalletSignResponse, bY as WalletSignatureResponse, a$ as ZKPOperator, bR as ZKPRequest, bS as ZKPRequestFromZKVerifier, aK as ZeroKnowledgeProofRequest, aQ as ZeroKnowledgeProofResponse, bz as getOldCredentialPath, by as getOldCredentialType, bA as oldCredentialPathToDataLink, b0 as operatorDisplayMap, aV as parseIden3Message, aW as parseSessionIdFromUrl } from '../../dist/identity-api.schema-
|
|
1
|
+
export { v as ACTION_STATUSES, t as ACTION_TRIGGERS, b1 as ARRAY_OPERATORS, aL as AUTHORIZATION_REQUEST_MESSAGE_TYPES, A as AVAILABLE_FLOWS, a4 as AbbreviatedWorkflowScenario, a2 as Action, w as ActionStatus, u as ActionTrigger, s as ActionType, x as ActionValue, bf as AllCredentialValues, bV as AllScenarioExecutionAuthorizationData, bN as AnyTxAuthDataSignatureResponse, bQ as AnyTxAuthInputJsSdk, bG as ApiTezosTxAuthInput, bC as ApiTxAuthInput, b2 as ArrayOperator, aT as AuthQrCodeData, ap as AuthSession, aq as AuthSessionData, aO as AuthorizationRequestMessage, aN as AuthorizationRequestMessageType, aM as AuthorizationRequestMessageTypes, aR as AuthorizationResponseMessage, n as AvailableFlow, b7 as BOOLEAN_OPERATORS, M as BackwardsCompatibleScenarioType, L as BackwardsCompatibleScenarioTypes, N as BaseQueryResponse, b8 as BooleanOperator, aI as CIRCUIT_IDS, bq as ChallengeQuerySchema, ar as ChallengeResponse, aJ as CircuitId, b as CloseScreenNotification, a7 as ComplianceImplementationStepsInput, bU as CreateAuthRequestProps, a6 as CreateTemplateScenario, aS as CredentialQrCodeData, b9 as DATE_OPERATORS, D as DataAvailableOnStart, ba as DateOperator, bO as Eip155TxAuthInputJsSdk, U as ExecuteQueryResponse, bM as ExtendedTezosTxAuthDataSignatureResponse, bK as ExtendedTezosTxAuthInput, bL as ExtendedTxAuthDataSignatureResponse, bJ as ExtendedTxAuthInput, ao as GenerateWalletChallengeRequest, a9 as GetCredentialsRequest, aa as GetCredentialsResponse, au as GetCustomerStatusRequest, az as GetCustomerStatusResponse, bI as GetTezosTxAuthDataSignatureResponse, bE as GetTxAuthDataSignatureResponse, ai as GetTxAuthSigRequest, ak as GetTxAuthSigRequestTezos, aj as GetTxAuthSigResponse, al as GetTxAuthSigResponseTezos, aC as HostMessage, am as HostRequestMessage, H as HostResponseMessage, be as IDInformationTfhe, aA as IdentityAppMessage, aD as IdentityMessage, i as IdentityNotificationMessage, m as IdentityRequestMessage, an as IdentityResponseMessage, av as IdentitySdkMessage, aw as IdentitySdkMessageWithIdentifier, aB as IdentityWallet, j as InitialDataRequest, o as InitialDataResponse, I as IsVerifiedNotification, ag as IsVerifiedRequest, ah as IsVerifiedResponse, K as KycCompletionData, c as KycCompletionNotification, aG as MediaType, aH as MediaTypePID, b5 as NUMERIC_OPERATORS, b6 as NumericOperator, br as OLD_CHALLENGE_QUERY_OPERATORS, bs as OLD_ChallengeQueryOperator, bv as OLD_ChallengeQueryOperatorToOperator, bn as OLD_ChallengeQuerySchema, bx as OLD_QueryCredentialType, bw as OLD_QueryCredentialTypes, aZ as OPERATORS, g as OcvSdkInitialized, O as OffChainScenarioExecutionData, Q as OffChainZKPRuleResult, d as OnChainScenarioExecutionData, a_ as Operator, bt as OperatorMappings, bu as OperatorToOLD_ChallengeQueryOperator, bm as PartialQueryConfigSimplified, P as PolygonIdInitialized, ac as PolygonIdRequest, ab as PolygonIdRequestData, ae as PolygonIdResponse, ad as PolygonIdResponseData, bT as PrivacyPreservingMonitoring, aP as ProofData, aX as QUERY_LOGIC_OPERATOR, aU as QrCodeLinkWithSchemaType, bg as QueriesOptions, bj as QueryConfigSimplified, bi as QueryConfigTfhe, bp as QueryCredentialType, bo as QueryCredentialTypes, bk as QueryGroupConfigSimplified, aY as QueryLogicOperator, bh as QueryType, aE as RequiredDataRowSchema, aF as RequiredVerificationData, V as RuleEngineResponse, R as RuleEngineScenarioExecutionData, bl as RuleResultQueryConfig, Y as RuleResultStatus, Z as RuleResultStatusLabels, X as RuleResultStatuses, r as SCENARIO_ACTION_TYPES, bW as SCENARIO_AUTHORIZATION_STATUSES, b3 as STRING_OPERATORS, bb as SUPPORTED_TYPES, a3 as Scenario, S as ScenarioAuthorizationData, bX as ScenarioAuthorizationStatus, e as ScenarioExecutionData, f as ScenarioExecutionNotification, W as ScenarioExecutionResponse, E as ScenarioMode, B as ScenarioModes, J as ScenarioSchema, G as ScenarioStatus, F as ScenarioStatuses, z as ScenarioType, y as ScenarioTypes, _ as SdkVerificationOutput, a as SdkVerificationResponseSchema, l as SendTransactionRequest, k as SignatureRequest, p as SignatureResponse, a8 as SimplifiedCredential, h as StartCompletedNotification, af as StartFlowRequest, b4 as StringOperator, bc as SupportedType, bd as SupportedTypes, a5 as TemplateScenario, bF as TezosTxAuthInput, bP as TezosTxAuthInputJsSdk, bH as TezosTxSignatureResponse, T as TransactionData, q as TransactionResponse, ay as TxAuthDataSignatureGatingError, at as TxAuthDataSignatureGatingRequest, ax as TxAuthDataSignatureResponse, bB as TxAuthInput, bD as TxSignatureResponse, a1 as VerificationOutput, a0 as VerificationSessionStatus, $ as VerificationSessionStatuses, bZ as VerifyWalletChallengeRequest, as as WalletSignResponse, bY as WalletSignatureResponse, a$ as ZKPOperator, bR as ZKPRequest, bS as ZKPRequestFromZKVerifier, aK as ZeroKnowledgeProofRequest, aQ as ZeroKnowledgeProofResponse, bz as getOldCredentialPath, by as getOldCredentialType, bA as oldCredentialPathToDataLink, b0 as operatorDisplayMap, aV as parseIden3Message, aW as parseSessionIdFromUrl } from '../../dist/identity-api.schema-7f88a50d.esm.mjs';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import '../../dist/vault.schema-b3910f8d.esm.mjs';
|
|
4
4
|
import 'nanoid';
|
package/package.json
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-21a24278.cjs.dev.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f4085f83.cjs.dev.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
10
|
-
require('../../dist/identity-api.schema-
|
|
10
|
+
require('../../dist/identity-api.schema-e36b538f.cjs.dev.cjs');
|
|
11
11
|
|
|
12
12
|
var ALL_SCORECHAIN_BLOCKCHAIN = [{
|
|
13
13
|
id: "BITCOIN",
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-cb19adc8.cjs.prod.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f176b6e7.cjs.prod.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
10
|
-
require('../../dist/identity-api.schema-
|
|
10
|
+
require('../../dist/identity-api.schema-11bbb3f3.cjs.prod.cjs');
|
|
11
11
|
|
|
12
12
|
var ALL_SCORECHAIN_BLOCKCHAIN = [{
|
|
13
13
|
id: "BITCOIN",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export { eE as ANALYSIS_TYPES, eF as AnalysisType, eN as Coin, eS as EntityRiskDefaultsMap, eR as EntityRiskDefaultsValues, eY as GetActiveBlockchains, eX as GetActiveBlockchainsRequest, eZ as GetActiveBlockchainsResponse, f0 as GetAddressAnalysis, e_ as GetAddressAnalysisRequest, f1 as GetAddressAnalysisResponse, eJ as NonMinimalScorechainBlockchain, eG as OBJECT_TYPES, eH as ObjectType, f3 as RawScorechainResult, eQ as RiskExplanation, eO as RiskSeverity, eV as ScorechainAnalysis, eI as ScorechainBlockchain, eK as ScorechainBlockchainToNamespace, e$ as ScorechainEntity, eP as ScorechainEntityType, eU as ScorechainError, eT as ScorechainErrorResponse, f4 as ScorechainRiskToRiskLevel, f6 as ScorechainWalletRiskLevel, f5 as ScorechainWalletRiskLevels, f2 as ScoringAnalysisApiRequest, eB as ScoringAnalysisRequest, eW as ScoringAnalysisResponse, eC as WorkflowsScoringAnalysisRequest, eM as compareRiskLevels, eL as getRiskLevelByRiskScore } from '../../dist/vault.schema-b3910f8d.esm.mjs';
|
|
2
|
-
export { K as AMLMetadata, cQ as ApiErrorCommandResponse, cP as ApiErrorResponse, cR as ApiSuccessCommandResponse, bw as ApplicantMemberOfSchema, bL as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bN as BeneficiaryCompanyCustomerClaims, bO as BeneficiaryCompanyCustomerClaimsArray, bM as BeneficiaryType, c_ as BeneficiaryVerificationStatus, c$ as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b3 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, b9 as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, ap as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, ar as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, an as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ag as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ad as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, di as ChainalysisApiError, a$ as ChainalysisConfig, dg as ChainalysisErrorCodes, bc as ChainalysisProvider, de as ChainalysisRegisterApiResponse, dj as ChainalysisRegisterResponse, dd as ChainalysisRequest, dh as ChainalysisRiskAssessmentApiResponse, dk as ChainalysisRiskAssessmentResponse, df as ChainalysisRiskLevel, a4 as CoerceDateUTC, dp as CoinMarketCapApiResponse, dq as CoinMarketCapFiatId, dm as CoinMarketCapQuote, dn as CoinMarketCapQuotes, dl as CoinMarketCapRequest, cZ as CompanyDocumentMetaData, aH as ComplyAdvantageAmlFullListing, aG as ComplyAdvantageAmlItemSource, aq as ComplyAdvantageCountryFieldSources, as as ComplyAdvantageDateOfBirthFieldSources, aF as ComplyAdvantageKeyInformation, aC as ComplyAdvantageMedia, aR as ComplyAdvantageMonitorSearchDataResponse, aT as ComplyAdvantageMonitorSearchResponse, aS as ComplyAdvantageMonitorSearchSuccessResponse, aU as ComplyAdvantageMonitoredSearchUpdate, ao as ComplyAdvantageNationalityFieldSources, bh as ComplyAdvantageProvider, bg as ComplyAdvantageProviderConfigElement, bf as ComplyAdvantageProviderConfigFilters, be as ComplyAdvantageProviderConfigTypes, ah as ComplyAdvantageReponseMatchStatus, ae as ComplyAdvantageResponseMatchType, aE as ComplyAdvantageSearchDataResponse, aD as ComplyAdvantageSearchDataResponseHit, aI as ComplyAdvantageSearchEntitiesDataResponse, aK as ComplyAdvantageSearchEntitiesResponse, aJ as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aL as ComplyAdvantageSearchRequest, aM as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aO as ComplyAdvantageUpdateSearchEntitiesRequest, aQ as ComplyAdvantageUpdateSearchEntitiesResponse, aP as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aN as ComplyAdvantageUpdateSearchRequest, aA as ComplyAdvantageUser, bn as CreateProviderInput, bo as CreateProviderResponse, at as CreateSearchInput, cL as CredentialMetadata, cK as CustomerContactInformationOutput, d4 as CustomerDocumentMetaData, d5 as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cb as DocumentMetadataSchema, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cz as EmailVerificationResponse, F as File, cJ as GetCredentialsOutput, d1 as GetKybSessionInput, d2 as GetKybSessionResponse, cD as GetKycSessionInput, cE as GetKycSessionResponse, cM as GetKycSessionResponseWithCredentialsMetadata, cS as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cN as IDImageMetaData, bJ as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bK as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, cV as KYB_RESULTS, cX as KYB_SESSION_STATUSES, cT as KYB_STEP_TYPES, cv as KYC_RESULTS, cx as KYC_SESSION_STATUSES, cr as KYC_STEP_TYPES, cW as KybResult, cY as KybSessionStatus, cU as KybStep, cw as KycResult, cy as KycSessionStatus, cs as KycStep, cu as KycStepStatus, ct as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, db as MerkleAddressApiError, da as MerkleAddressApiResponse, d9 as MerkleAddressRequest, dc as MerkleAddressResponse, d8 as MerkleBlockChainCodes, d7 as MerkleBlockChainName, d6 as MerkleBlockChainTypes, a_ as MerkleScienceConfig, bb as MerkleScienceProvider, N as NestedSession, b8 as NexeraIdKYBProvider, b7 as NexeraIdSSIDProvider, H as PhoneMetadata, P as PhoneVerificationAnalysisResponse, A as ProofOfAddressDocumentType, z as ProofOfAddressDocumentTypes, G as ProofOfAddressMetadata, cI as ProofOfResidenceDocumentType, cH as ProofOfResidenceMetaData, bj as ProviderData, bk as ProviderDataProject, b5 as ProviderIntegrationType, b4 as ProviderIntegrationTypeOptions, aV as ProviderWithoutConfig, Z as RESULT_PARSER_ERROR, w as ReasonCode, v as ReasonCodes, R as RequestProperty, ax as RiskLevel, aw as RiskLevels, a9 as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a7 as SEARCH_FILTER_PEP_TYPE, a5 as SEARCH_FILTER_SANCTION_TYPE, ai as SEARCH_FILTER_TYPES, X as SESSION_NOT_FOUND, a1 as STEP_NOT_FOUND, bB as SUMSUB_APPLICANT_TYPES, c4 as SUMSUB_COMPANY_BENEFICIARY_GROUP, bU as SUMSUB_DOC_TYPES, bW as SUMSUB_FLOW_LEVEL, cj as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c9 as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, co as SUMSUB_REVIEW_REJECT_LABELS, cq as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bS as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bQ as SUMSUB_WEBHOOK_INTERNAL_STATUS, b0 as ScorechainConfig, ba as ScorechainProvider, al as SearchEntityType, ak as SearchEntityTypes, aa as SearchFilterAdverseMediaType, a8 as SearchFilterPepType, a6 as SearchFilterSanctionType, aj as SearchFilterType, am as SearchFilters, d0 as SelectKybSession, cB as SelectKycSession, cA as SelectKycSessionStep, cC as SelectKycSessionWithCompletedSteps, cO as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bH as SumSubAddress, bI as SumSubApplicantInfo, cd as SumSubApplicantResetSchema, cc as SumSubApplicantReviewStatusSchema, ci as SumSubApplicantSchema, bC as SumSubApplicantType, c8 as SumSubApplicantVerificationStepSchema, bP as SumSubCompanyApplicantInfo, c2 as SumSubCompanyApplicantSchema, bV as SumSubDocType, bX as SumSubFlowLevel, ce as SumSubGenerateExternalWebSdkLinkSchema, c3 as SumSubImageId, b_ as SumSubImageReviewResultSchema, c1 as SumSubIndividualApplicantSchema, ca as SumSubMediaContentType, bY as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cp as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, bZ as SumSubReviewResultSchema, bT as SumSubReviewStatus, cn as SumSubSimilarApplicantsSchema, bA as SumSubStep, c7 as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c0 as SumsubApplicantType, b$ as SumsubApplicantTypes, c5 as SumsubCompanyBeneficiaryGroup, ch as SumsubKybDataSchema, cm as SumsubKybSessionFlowSection, cl as SumsubKybSessionFlowSectionItem, ck as SumsubKybSessionFlowSectionStatus, cg as SumsubKycDataSchema, c6 as SumsubStepStatus, cf as SumsubVideoCallData, bR as SumsubWebhookInternalStatus, bi as SynapsProvider, _ as SynapsSessionErrorResponse, Q as SynapsSessionEvent, V as SynapsSessionRequest, $ as SynapsSessionResponse, a2 as SynapsStepErrorResponse, T as SynapsStepEvent, a0 as SynapsStepRequest, a3 as SynapsStepResponse, br as ToggleProviderInput, Y as UNKNOWN_ERROR, d3 as UpdateKybSessionOutput, cF as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, cG as VideoKycMetaData, bu as WEBHOOK_TYPES, q as WebhookPayload, bv as WebhookType, b1 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, af as mappingMatchTypeToLabel, U as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-
|
|
2
|
+
export { K as AMLMetadata, cQ as ApiErrorCommandResponse, cP as ApiErrorResponse, cR as ApiSuccessCommandResponse, bw as ApplicantMemberOfSchema, bL as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bN as BeneficiaryCompanyCustomerClaims, bO as BeneficiaryCompanyCustomerClaimsArray, bM as BeneficiaryType, c_ as BeneficiaryVerificationStatus, c$ as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b3 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, b9 as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, ap as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, ar as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, an as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ag as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ad as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, di as ChainalysisApiError, a$ as ChainalysisConfig, dg as ChainalysisErrorCodes, bc as ChainalysisProvider, de as ChainalysisRegisterApiResponse, dj as ChainalysisRegisterResponse, dd as ChainalysisRequest, dh as ChainalysisRiskAssessmentApiResponse, dk as ChainalysisRiskAssessmentResponse, df as ChainalysisRiskLevel, a4 as CoerceDateUTC, dp as CoinMarketCapApiResponse, dq as CoinMarketCapFiatId, dm as CoinMarketCapQuote, dn as CoinMarketCapQuotes, dl as CoinMarketCapRequest, cZ as CompanyDocumentMetaData, aH as ComplyAdvantageAmlFullListing, aG as ComplyAdvantageAmlItemSource, aq as ComplyAdvantageCountryFieldSources, as as ComplyAdvantageDateOfBirthFieldSources, aF as ComplyAdvantageKeyInformation, aC as ComplyAdvantageMedia, aR as ComplyAdvantageMonitorSearchDataResponse, aT as ComplyAdvantageMonitorSearchResponse, aS as ComplyAdvantageMonitorSearchSuccessResponse, aU as ComplyAdvantageMonitoredSearchUpdate, ao as ComplyAdvantageNationalityFieldSources, bh as ComplyAdvantageProvider, bg as ComplyAdvantageProviderConfigElement, bf as ComplyAdvantageProviderConfigFilters, be as ComplyAdvantageProviderConfigTypes, ah as ComplyAdvantageReponseMatchStatus, ae as ComplyAdvantageResponseMatchType, aE as ComplyAdvantageSearchDataResponse, aD as ComplyAdvantageSearchDataResponseHit, aI as ComplyAdvantageSearchEntitiesDataResponse, aK as ComplyAdvantageSearchEntitiesResponse, aJ as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aL as ComplyAdvantageSearchRequest, aM as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aO as ComplyAdvantageUpdateSearchEntitiesRequest, aQ as ComplyAdvantageUpdateSearchEntitiesResponse, aP as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aN as ComplyAdvantageUpdateSearchRequest, aA as ComplyAdvantageUser, bn as CreateProviderInput, bo as CreateProviderResponse, at as CreateSearchInput, cL as CredentialMetadata, cK as CustomerContactInformationOutput, d4 as CustomerDocumentMetaData, d5 as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cb as DocumentMetadataSchema, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cz as EmailVerificationResponse, F as File, cJ as GetCredentialsOutput, d1 as GetKybSessionInput, d2 as GetKybSessionResponse, cD as GetKycSessionInput, cE as GetKycSessionResponse, cM as GetKycSessionResponseWithCredentialsMetadata, cS as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cN as IDImageMetaData, bJ as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bK as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, cV as KYB_RESULTS, cX as KYB_SESSION_STATUSES, cT as KYB_STEP_TYPES, cv as KYC_RESULTS, cx as KYC_SESSION_STATUSES, cr as KYC_STEP_TYPES, cW as KybResult, cY as KybSessionStatus, cU as KybStep, cw as KycResult, cy as KycSessionStatus, cs as KycStep, cu as KycStepStatus, ct as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, db as MerkleAddressApiError, da as MerkleAddressApiResponse, d9 as MerkleAddressRequest, dc as MerkleAddressResponse, d8 as MerkleBlockChainCodes, d7 as MerkleBlockChainName, d6 as MerkleBlockChainTypes, a_ as MerkleScienceConfig, bb as MerkleScienceProvider, N as NestedSession, b8 as NexeraIdKYBProvider, b7 as NexeraIdSSIDProvider, H as PhoneMetadata, P as PhoneVerificationAnalysisResponse, A as ProofOfAddressDocumentType, z as ProofOfAddressDocumentTypes, G as ProofOfAddressMetadata, cI as ProofOfResidenceDocumentType, cH as ProofOfResidenceMetaData, bj as ProviderData, bk as ProviderDataProject, b5 as ProviderIntegrationType, b4 as ProviderIntegrationTypeOptions, aV as ProviderWithoutConfig, Z as RESULT_PARSER_ERROR, w as ReasonCode, v as ReasonCodes, R as RequestProperty, ax as RiskLevel, aw as RiskLevels, a9 as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a7 as SEARCH_FILTER_PEP_TYPE, a5 as SEARCH_FILTER_SANCTION_TYPE, ai as SEARCH_FILTER_TYPES, X as SESSION_NOT_FOUND, a1 as STEP_NOT_FOUND, bB as SUMSUB_APPLICANT_TYPES, c4 as SUMSUB_COMPANY_BENEFICIARY_GROUP, bU as SUMSUB_DOC_TYPES, bW as SUMSUB_FLOW_LEVEL, cj as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c9 as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, co as SUMSUB_REVIEW_REJECT_LABELS, cq as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bS as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bQ as SUMSUB_WEBHOOK_INTERNAL_STATUS, b0 as ScorechainConfig, ba as ScorechainProvider, al as SearchEntityType, ak as SearchEntityTypes, aa as SearchFilterAdverseMediaType, a8 as SearchFilterPepType, a6 as SearchFilterSanctionType, aj as SearchFilterType, am as SearchFilters, d0 as SelectKybSession, cB as SelectKycSession, cA as SelectKycSessionStep, cC as SelectKycSessionWithCompletedSteps, cO as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bH as SumSubAddress, bI as SumSubApplicantInfo, cd as SumSubApplicantResetSchema, cc as SumSubApplicantReviewStatusSchema, ci as SumSubApplicantSchema, bC as SumSubApplicantType, c8 as SumSubApplicantVerificationStepSchema, bP as SumSubCompanyApplicantInfo, c2 as SumSubCompanyApplicantSchema, bV as SumSubDocType, bX as SumSubFlowLevel, ce as SumSubGenerateExternalWebSdkLinkSchema, c3 as SumSubImageId, b_ as SumSubImageReviewResultSchema, c1 as SumSubIndividualApplicantSchema, ca as SumSubMediaContentType, bY as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cp as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, bZ as SumSubReviewResultSchema, bT as SumSubReviewStatus, cn as SumSubSimilarApplicantsSchema, bA as SumSubStep, c7 as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c0 as SumsubApplicantType, b$ as SumsubApplicantTypes, c5 as SumsubCompanyBeneficiaryGroup, ch as SumsubKybDataSchema, cm as SumsubKybSessionFlowSection, cl as SumsubKybSessionFlowSectionItem, ck as SumsubKybSessionFlowSectionStatus, cg as SumsubKycDataSchema, c6 as SumsubStepStatus, cf as SumsubVideoCallData, bR as SumsubWebhookInternalStatus, bi as SynapsProvider, _ as SynapsSessionErrorResponse, Q as SynapsSessionEvent, V as SynapsSessionRequest, $ as SynapsSessionResponse, a2 as SynapsStepErrorResponse, T as SynapsStepEvent, a0 as SynapsStepRequest, a3 as SynapsStepResponse, br as ToggleProviderInput, Y as UNKNOWN_ERROR, d3 as UpdateKybSessionOutput, cF as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, cG as VideoKycMetaData, bu as WEBHOOK_TYPES, q as WebhookPayload, bv as WebhookType, b1 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, af as mappingMatchTypeToLabel, U as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-6141ba93.esm.mjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'nanoid';
|
|
5
5
|
import 'decimal.js';
|
|
6
|
-
import '../../dist/identity-api.schema-
|
|
6
|
+
import '../../dist/identity-api.schema-7f88a50d.esm.mjs';
|
|
7
7
|
|
|
8
8
|
var ALL_SCORECHAIN_BLOCKCHAIN = [{
|
|
9
9
|
id: "BITCOIN",
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-21a24278.cjs.dev.cjs');
|
|
6
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
7
|
-
var tfheUtilities = require('../../dist/tfhe-utilities-
|
|
6
|
+
var identityApi_schema = require('../../dist/identity-api.schema-e36b538f.cjs.dev.cjs');
|
|
7
|
+
var tfheUtilities = require('../../dist/tfhe-utilities-bf816d6c.cjs.dev.cjs');
|
|
8
8
|
require('zod');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
require('decimal.js');
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-cb19adc8.cjs.prod.cjs');
|
|
6
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
7
|
-
var tfheUtilities = require('../../dist/tfhe-utilities-
|
|
6
|
+
var identityApi_schema = require('../../dist/identity-api.schema-11bbb3f3.cjs.prod.cjs');
|
|
7
|
+
var tfheUtilities = require('../../dist/tfhe-utilities-0c6a2490.cjs.prod.cjs');
|
|
8
8
|
require('zod');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
require('decimal.js');
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { b0 as Alpha2Country, dq as GenericVerifiableCredentialSchema, dw as ID3CredentialSchema, db as ID3CredentialSubjectSchema, dt as IDImageCredentialSchema, dm as IDImageCredentialSubjectSchema, ds as IDInformationCredentialSchema, dl as IDInformationCredentialSubjectSchema, dr as IDInformationTfheCredentialSchema, dk as IDInformationTfheCredentialSubjectSchema, dx as IDScanCredentialSchema, dc as IDScanCredentialSubjectSchema, dy as IDScanPassportCredentialSchema, dd as IDScanPassportCredentialSubjectSchema, dz as IDScanSelfieCredentialSchema, de as IDScanSelfieCredentialSubjectSchema, a_ as ISO3CountryCode, dE as OLD_AMLScreeningsResultsCredentialSchema, dj as OLD_AMLScreeningsResultsCredentialSubjectSchema, dA as OLD_IDImageCredentialSchema, df as OLD_IDImageCredentialSubjectSchema, dB as OLD_IDInformationCredentialSchema, dg as OLD_IDInformationCredentialSubjectSchema, dC as OLD_ProofOfResidenceCredentialSchema, dh as OLD_ProofOfResidenceCredentialSubjectSchema, dD as OLD_SelfieImageCredentialSchema, di as OLD_SelfieImageCredentialSubjectSchema, dv as ProofOfResidenceCredentialSchema, dp as ProofOfResidenceCredentialSubjectSchema, du as SelfieImageCredentialSchema, dn as SelfieImageCredentialSubjectSchema, b1 as countryISO3toISO2Mapping, b4 as isoCountriesNameFromISO2 } from '../../dist/vault.schema-b3910f8d.esm.mjs';
|
|
2
|
-
export { c4 as CredentialMediaType, b$ as CredentialNames, b_ as CredentialSchemas, c2 as CredentialType, C as CredentialTypes, c0 as NexeraCredentialType, c3 as VerifiableCredential, c1 as getCredentialName } from '../../dist/identity-api.schema-
|
|
3
|
-
export { s as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from '../../dist/tfhe-utilities-
|
|
2
|
+
export { c4 as CredentialMediaType, b$ as CredentialNames, b_ as CredentialSchemas, c2 as CredentialType, C as CredentialTypes, c0 as NexeraCredentialType, c3 as VerifiableCredential, c1 as getCredentialName } from '../../dist/identity-api.schema-7f88a50d.esm.mjs';
|
|
3
|
+
export { s as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from '../../dist/tfhe-utilities-3f572e70.esm.mjs';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
import 'decimal.js';
|
|
@@ -4,8 +4,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var vault_schema = require('../../dist/vault.schema-21a24278.cjs.dev.cjs');
|
|
7
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
7
|
+
var identityApi_schema = require('../../dist/identity-api.schema-e36b538f.cjs.dev.cjs');
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f4085f83.cjs.dev.cjs');
|
|
9
9
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
10
10
|
require('nanoid');
|
|
11
11
|
require('decimal.js');
|
|
@@ -4,8 +4,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var vault_schema = require('../../dist/vault.schema-cb19adc8.cjs.prod.cjs');
|
|
7
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
7
|
+
var identityApi_schema = require('../../dist/identity-api.schema-11bbb3f3.cjs.prod.cjs');
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f176b6e7.cjs.prod.cjs');
|
|
9
9
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
10
10
|
require('nanoid');
|
|
11
11
|
require('decimal.js');
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { aS as UuidString, d5 as ExternalCustomerId, ba as RiskScoreType, bc as CustomerType, bi as CustomerOnboardingLevel, bk as CustomerStatus, a_ as ISO3CountryCode, ar as BlockchainAddress, dq as GenericVerifiableCredentialSchema, ev as WalletScreeningData, dJ as TransactionTypes, dP as TransactionReviewStatuses, eA as _toArray, ez as _toConsumableArray, aR as EnvironmentSchema } from '../../dist/vault.schema-b3910f8d.esm.mjs';
|
|
3
|
-
import { Y as RuleResultStatus } from '../../dist/identity-api.schema-
|
|
4
|
-
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-
|
|
3
|
+
import { Y as RuleResultStatus } from '../../dist/identity-api.schema-7f88a50d.esm.mjs';
|
|
4
|
+
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-6141ba93.esm.mjs';
|
|
5
5
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
6
6
|
import 'nanoid';
|
|
7
7
|
import 'decimal.js';
|