@nexeraid/identity-schemas 2.56.0-dev → 2.57.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-173aa463.cjs.dev.cjs → CoinMarketCap.schema-2c5a080b.cjs.dev.cjs} +1 -1
- package/dist/{CoinMarketCap.schema-d948d405.esm.mjs → CoinMarketCap.schema-7916723e.esm.mjs} +2 -2
- package/dist/{CoinMarketCap.schema-7ee858a0.cjs.prod.cjs → CoinMarketCap.schema-b6c55501.cjs.prod.cjs} +1 -1
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts +2 -2
- package/dist/declarations/src/providers/big/BIGBitRankVerifiedScore.schema.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +1 -1
package/dist/{CoinMarketCap.schema-173aa463.cjs.dev.cjs → CoinMarketCap.schema-2c5a080b.cjs.dev.cjs}
RENAMED
|
@@ -356,7 +356,7 @@ var BigCSErrorCodes = new Map([["INVALID_ADDRESS", "INVALID_PARAMETER_BLOCKCHAIN
|
|
|
356
356
|
*/
|
|
357
357
|
var BitRankRequest = zod.z.object({
|
|
358
358
|
crypto: BigCryptoChain["default"]("eth").nullish(),
|
|
359
|
-
address:
|
|
359
|
+
address: zod.z.string().nullish(),
|
|
360
360
|
properties: zod.z.array(RequestProperty).describe("Optional query parameter to specify properties to include in the response.").nullish()["default"]([{
|
|
361
361
|
property: "score"
|
|
362
362
|
}, {
|
package/dist/{CoinMarketCap.schema-d948d405.esm.mjs → CoinMarketCap.schema-7916723e.esm.mjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { d as Alpha2Country, aV as _toConsumableArray, I as ISO3CountryCode, aX as _slicedToArray, v as CustomerStatus, T as ProofOfResidenceCredentialSubjectSchema, B as BasicCustomerContactInformation } from './vault.schema-3d206920.esm.mjs';
|
|
3
|
-
import { as as BlockchainAddress,
|
|
3
|
+
import { as as BlockchainAddress, aT as UuidString, aw as BlockchainNamespace, cF as SdkVerificationOutput, br as WorkflowSessionId, f0 as _defineProperty, dz as QrCodeLinkWithSchemaType, eZ as CredentialType } from './identity-api.schema-4f972705.esm.mjs';
|
|
4
4
|
|
|
5
5
|
// based on https://tech-doc.api.scorechain.com/
|
|
6
6
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -354,7 +354,7 @@ var BigCSErrorCodes = new Map([["INVALID_ADDRESS", "INVALID_PARAMETER_BLOCKCHAIN
|
|
|
354
354
|
*/
|
|
355
355
|
var BitRankRequest = z.object({
|
|
356
356
|
crypto: BigCryptoChain["default"]("eth").nullish(),
|
|
357
|
-
address:
|
|
357
|
+
address: z.string().nullish(),
|
|
358
358
|
properties: z.array(RequestProperty).describe("Optional query parameter to specify properties to include in the response.").nullish()["default"]([{
|
|
359
359
|
property: "score"
|
|
360
360
|
}, {
|
|
@@ -356,7 +356,7 @@ var BigCSErrorCodes = new Map([["INVALID_ADDRESS", "INVALID_PARAMETER_BLOCKCHAIN
|
|
|
356
356
|
*/
|
|
357
357
|
var BitRankRequest = zod.z.object({
|
|
358
358
|
crypto: BigCryptoChain["default"]("eth").nullish(),
|
|
359
|
-
address:
|
|
359
|
+
address: zod.z.string().nullish(),
|
|
360
360
|
properties: zod.z.array(RequestProperty).describe("Optional query parameter to specify properties to include in the response.").nullish()["default"]([{
|
|
361
361
|
property: "score"
|
|
362
362
|
}, {
|
|
@@ -28,7 +28,7 @@ export declare const BigCSErrorCodes: Map<string, string>;
|
|
|
28
28
|
*/
|
|
29
29
|
export declare const BitRankRequest: z.ZodObject<{
|
|
30
30
|
crypto: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<["btc", "eth", "ltc", "bch", "xrp", "xlm", "sys", "xdc", "doge", "dash", "zec", "trx", "etc", "bsc"]>>>>;
|
|
31
|
-
address: z.ZodOptional<z.ZodNullable<z.
|
|
31
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
32
32
|
properties: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
33
33
|
property: z.ZodEnum<["score", "entities", "flags", "currency", "new_address", "flags_with_category", "cluster", "first_seen_receiving", "first_seen_sending", "last_seen_receiving", "last_seen_sending", "received_amount", "sent_amount", "number_of_transactions", "received_transactions", "sent_transactions", "balance", "balance_fiat", "bitrank_counterparty_exposure", "entity_counterparty_exposure", "flag_counterparty_exposure"]>;
|
|
34
34
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -42,7 +42,7 @@ export declare const BitRankRequest: z.ZodObject<{
|
|
|
42
42
|
properties: {
|
|
43
43
|
property: "score" | "currency" | "new_address" | "entities" | "flags" | "flags_with_category" | "cluster" | "first_seen_receiving" | "first_seen_sending" | "last_seen_receiving" | "last_seen_sending" | "received_amount" | "sent_amount" | "number_of_transactions" | "received_transactions" | "sent_transactions" | "balance" | "balance_fiat" | "bitrank_counterparty_exposure" | "entity_counterparty_exposure" | "flag_counterparty_exposure";
|
|
44
44
|
}[] | null;
|
|
45
|
-
address?:
|
|
45
|
+
address?: string | null | undefined;
|
|
46
46
|
crypto?: "btc" | "eth" | "ltc" | "bch" | "xrp" | "xlm" | "sys" | "xdc" | "doge" | "dash" | "zec" | "trx" | "etc" | "bsc" | null | undefined;
|
|
47
47
|
label?: string | null | undefined;
|
|
48
48
|
transactionsPerPage?: number | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BIGBitRankVerifiedScore.schema.d.ts","sourceRoot":"../../../../../src/providers/big","sources":["BIGBitRankVerifiedScore.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"BIGBitRankVerifiedScore.schema.d.ts","sourceRoot":"../../../../../src/providers/big","sources":["BIGBitRankVerifiedScore.schema.ts"],"names":[],"mappings":"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"}
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
5
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-2c5a080b.cjs.dev.cjs');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/vault.schema-a005010c.cjs.dev.cjs');
|
|
8
8
|
require('decimal.js');
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
5
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-b6c55501.cjs.prod.cjs');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/vault.schema-52d8cae3.cjs.prod.cjs');
|
|
8
8
|
require('decimal.js');
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a5 as AMLMetadata, A as ANALYSIS_TYPES, e as AnalysisType, bM as ApplicantMemberOfSchema, b$ as BENEFICIARY_TYPES, g as BLOCKCHAIN_TYPES, bO as BaseApplicantActionSchema, bm as BaseProvider, c1 as BeneficiaryCompanyCustomerClaims, c2 as BeneficiaryCompanyCustomerClaimsArray, c0 as BeneficiaryType, d8 as BeneficiaryVerificationStatus, d9 as BeneficiaryVerificationStatusArray, x as BigCSErrorCodes, bj as BigConfig, s as BigCryptoChain, u as BigProperties, t as BigPropertiesLiteral, v as BigProperty, bp as BigProvider, y as BitRankRequest, z as BitRankVerified, F as BitRankVerifiedError, D as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, h as Blockchain, aF as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aH as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aD as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, aw as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, ds as ChainalysisApiError, bf as ChainalysisConfig, dq as ChainalysisErrorCodes, bs as ChainalysisProvider, dn as ChainalysisRegisterApiResponse, dt as ChainalysisRegisterResponse, dm as ChainalysisRequest, dr as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dp as ChainalysisRiskLevel, ak as CoerceDateUTC, i as Coin, dx as CoinMarketCapApiResponse, dy as CoinMarketCapFiatId, dv as CoinMarketCapQuote, dw as CoinMarketCapQuotes, du as CoinMarketCapRequest, d7 as CompanyDocumentMetaData, aX as ComplyAdvantageAmlFullListing, aW as ComplyAdvantageAmlItemSource, aG as ComplyAdvantageCountryFieldSources, aI as ComplyAdvantageDateOfBirthFieldSources, aV as ComplyAdvantageKeyInformation, aS as ComplyAdvantageMedia, b5 as ComplyAdvantageMonitorSearchDataResponse, b7 as ComplyAdvantageMonitorSearchResponse, b6 as ComplyAdvantageMonitorSearchSuccessResponse, b8 as ComplyAdvantageMonitoredSearchUpdate, aE as ComplyAdvantageNationalityFieldSources, bx as ComplyAdvantageProvider, bw as ComplyAdvantageProviderConfigElement, bv as ComplyAdvantageProviderConfigFilters, bu as ComplyAdvantageProviderConfigTypes, ax as ComplyAdvantageReponseMatchStatus, au as ComplyAdvantageResponseMatchType, aU as ComplyAdvantageSearchDataResponse, aT as ComplyAdvantageSearchDataResponseHit, aY as ComplyAdvantageSearchEntitiesDataResponse, a_ as ComplyAdvantageSearchEntitiesResponse, aZ as ComplyAdvantageSearchEntitiesSuccessResponse, c as ComplyAdvantageSearchErrorResponse, a$ as ComplyAdvantageSearchRequest, b0 as ComplyAdvantageSearchRequests, b as ComplyAdvantageSearchResponse, d as ComplyAdvantageSearchSuccessResponse, b2 as ComplyAdvantageUpdateSearchEntitiesRequest, b4 as ComplyAdvantageUpdateSearchEntitiesResponse, b3 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, b1 as ComplyAdvantageUpdateSearchRequest, aQ as ComplyAdvantageUser, bD as CreateProviderInput, bE as CreateProviderResponse, aJ as CreateSearchInput, c$ as CredentialMetadata, c_ as CustomerContactInformationOutput, de as CustomerDocumentMetaData, df as CustomerStatusResults, bd as DataProvider, bc as DataProviderOptions, bI as DeleteProviderInput, bJ as DeleteProviderResponse, _ as DocumentIdMetadata, Z as DocumentIdType, Y as DocumentIdTypes, cr as DocumentMetadataSchema, a4 as EmailMetadata, E as EmailVerificationAnalysisResponse, cP as EmailVerificationResponse, X as File, cZ as GetCredentialsOutput, db as GetKybSessionInput, dc as GetKybSessionResponse, cT as GetKycSessionInput, cU as GetKycSessionResponse, d0 as GetKycSessionResponseWithCredentialsMetadata, bC as GetProviderResponse, bB as GetProvidersResponse, ar as HIGH_RISK_TYPES, bZ as INDIVIDUAL_BENEFICIARY_RELATIONS, bb as IdentityProvider, ba as IdentityProviderOptions, b_ as IndividualBeneficiaryRelation, n as IpQualityAnalysisRequest, o as IpQualityAnalysisResponse, bi as IpQualityConfig, p as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, q as IpQualityServiceErrorResponse, bt as IpqualityscoreProvider, d3 as KYB_RESULTS, d5 as KYB_SESSION_STATUSES, d1 as KYB_STEP_TYPES, cL as KYC_RESULTS, cN as KYC_SESSION_STATUSES, cH as KYC_STEP_TYPES, d4 as KybResult, d6 as KybSessionStatus, d2 as KybStep, cM as KycResult, cO as KycSessionStatus, cI as KycStep, cK as KycStepStatus, cJ as KycStepStatuses, a2 as LivenessMetadata, as as MEDIUM_RISK_TYPES, aL as MatchStatus, aK as MatchStatuses, aR as MatchTypeDetail, M as MergedProviders, dl as MerkleAddressApiError, dk as MerkleAddressApiResponse, dj as MerkleAddressRequest, a as MerkleAddressResponse, di as MerkleBlockChainCodes, dh as MerkleBlockChainName, dg as MerkleBlockChainTypes, be as MerkleScienceConfig, br as MerkleScienceProvider, N as NestedSession, bo as NexeraIdKYBProvider, bn as NexeraIdSSIDProvider, O as OBJECT_TYPES, f as ObjectType, a3 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, a0 as ProofOfAddressDocumentType, $ as ProofOfAddressDocumentTypes, a1 as ProofOfAddressMetadata, cY as ProofOfResidenceDocumentType, cX as ProofOfResidenceMetaData, bz as ProviderData, bA as ProviderDataProject, bl as ProviderIntegrationType, bk as ProviderIntegrationTypeOptions, b9 as ProviderWithoutConfig, ad as RESULT_PARSER_ERROR, V as ReasonCode, U as ReasonCodes, w as RequestProperty, aN as RiskLevel, aM as RiskLevels, R as RiskSeverity, ap as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, an as SEARCH_FILTER_PEP_TYPE, al as SEARCH_FILTER_SANCTION_TYPE, ay as SEARCH_FILTER_TYPES, ab as SESSION_NOT_FOUND, ah as STEP_NOT_FOUND, bR as SUMSUB_APPLICANT_TYPES, ck as SUMSUB_COMPANY_BENEFICIARY_GROUP, c8 as SUMSUB_DOC_TYPES, ca as SUMSUB_FLOW_LEVEL, cz as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cp as SUMSUB_MEDIA_CONTENT_TYPES, bT as SUMSUB_REVIEW_ANSWERS, cE as SUMSUB_REVIEW_REJECT_LABELS, cG as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bV as SUMSUB_REVIEW_REJECT_TYPES, c6 as SUMSUB_REVIEW_STATUSES, bP as SUMSUB_STEPS, c4 as SUMSUB_WEBHOOK_INTERNAL_STATUS, l as ScorechainAnalysis, bg as ScorechainConfig, k as ScorechainError, j as ScorechainErrorResponse, bq as ScorechainProvider, m as ScoringAnalysisRequest, S as ScoringAnalysisResponse, aB as SearchEntityType, aA as SearchEntityTypes, aq as SearchFilterAdverseMediaType, ao as SearchFilterPepType, am as SearchFilterSanctionType, az as SearchFilterType, aC as SearchFilters, da as SelectKybSession, cR as SelectKycSession, cQ as SelectKycSessionStep, cS as SelectKycSessionWithCompletedSteps, K as Session, L as SessionWithoutSteps, H as Status, G as Statuses, a6 as Step, T as StepType, Q as StepTypes, bX as SumSubAddress, bY as SumSubApplicantInfo, ct as SumSubApplicantResetSchema, cs as SumSubApplicantReviewStatusSchema, cy as SumSubApplicantSchema, bS as SumSubApplicantType, co as SumSubApplicantVerificationStepSchema, c3 as SumSubCompanyApplicantInfo, ci as SumSubCompanyApplicantSchema, c9 as SumSubDocType, cb as SumSubFlowLevel, cu as SumSubGenerateExternalWebSdkLinkSchema, cj as SumSubImageId, ce as SumSubImageReviewResultSchema, ch as SumSubIndividualApplicantSchema, cq as SumSubMediaContentType, cc as SumSubRequiredIdDoc, bU as SumSubReviewAnswer, cF as SumSubReviewRejectLabel, bW as SumSubReviewRejectType, cd as SumSubReviewResultSchema, c7 as SumSubReviewStatus, cD as SumSubSimilarApplicantsSchema, bQ as SumSubStep, cn as SumSubVerificationStepSchema, bN as SumSubWebhookSchema, cg as SumsubApplicantType, cf as SumsubApplicantTypes, cl as SumsubCompanyBeneficiaryGroup, cx as SumsubKybDataSchema, cC as SumsubKybSessionFlowSection, cB as SumsubKybSessionFlowSectionItem, cA as SumsubKybSessionFlowSectionStatus, cw as SumsubKycDataSchema, cm as SumsubStepStatus, cv as SumsubVideoCallData, c5 as SumsubWebhookInternalStatus, by as SynapsProvider, ae as SynapsSessionErrorResponse, a7 as SynapsSessionEvent, aa as SynapsSessionRequest, af as SynapsSessionResponse, ai as SynapsStepErrorResponse, a8 as SynapsStepEvent, ag as SynapsStepRequest, aj as SynapsStepResponse, bH as ToggleProviderInput, ac as UNKNOWN_ERROR, dd as UpdateKybSessionOutput, cV as UpdateKycSessionOutput, bF as UpdateProviderInput, bG as UpdateProviderResponse, aP as UpdateSearchEntitiesInput, aO as UpdateSearchInput, cW as VideoKycMetaData, bK as WEBHOOK_TYPES, J as WebhookPayload, bL as WebhookType, bh as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, r as WrappedIpQualityServiceErrorResponse, av as mappingMatchTypeToLabel, a9 as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-
|
|
1
|
+
export { a5 as AMLMetadata, A as ANALYSIS_TYPES, e as AnalysisType, bM as ApplicantMemberOfSchema, b$ as BENEFICIARY_TYPES, g as BLOCKCHAIN_TYPES, bO as BaseApplicantActionSchema, bm as BaseProvider, c1 as BeneficiaryCompanyCustomerClaims, c2 as BeneficiaryCompanyCustomerClaimsArray, c0 as BeneficiaryType, d8 as BeneficiaryVerificationStatus, d9 as BeneficiaryVerificationStatusArray, x as BigCSErrorCodes, bj as BigConfig, s as BigCryptoChain, u as BigProperties, t as BigPropertiesLiteral, v as BigProperty, bp as BigProvider, y as BitRankRequest, z as BitRankVerified, F as BitRankVerifiedError, D as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, h as Blockchain, aF as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aH as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aD as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, aw as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, ds as ChainalysisApiError, bf as ChainalysisConfig, dq as ChainalysisErrorCodes, bs as ChainalysisProvider, dn as ChainalysisRegisterApiResponse, dt as ChainalysisRegisterResponse, dm as ChainalysisRequest, dr as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dp as ChainalysisRiskLevel, ak as CoerceDateUTC, i as Coin, dx as CoinMarketCapApiResponse, dy as CoinMarketCapFiatId, dv as CoinMarketCapQuote, dw as CoinMarketCapQuotes, du as CoinMarketCapRequest, d7 as CompanyDocumentMetaData, aX as ComplyAdvantageAmlFullListing, aW as ComplyAdvantageAmlItemSource, aG as ComplyAdvantageCountryFieldSources, aI as ComplyAdvantageDateOfBirthFieldSources, aV as ComplyAdvantageKeyInformation, aS as ComplyAdvantageMedia, b5 as ComplyAdvantageMonitorSearchDataResponse, b7 as ComplyAdvantageMonitorSearchResponse, b6 as ComplyAdvantageMonitorSearchSuccessResponse, b8 as ComplyAdvantageMonitoredSearchUpdate, aE as ComplyAdvantageNationalityFieldSources, bx as ComplyAdvantageProvider, bw as ComplyAdvantageProviderConfigElement, bv as ComplyAdvantageProviderConfigFilters, bu as ComplyAdvantageProviderConfigTypes, ax as ComplyAdvantageReponseMatchStatus, au as ComplyAdvantageResponseMatchType, aU as ComplyAdvantageSearchDataResponse, aT as ComplyAdvantageSearchDataResponseHit, aY as ComplyAdvantageSearchEntitiesDataResponse, a_ as ComplyAdvantageSearchEntitiesResponse, aZ as ComplyAdvantageSearchEntitiesSuccessResponse, c as ComplyAdvantageSearchErrorResponse, a$ as ComplyAdvantageSearchRequest, b0 as ComplyAdvantageSearchRequests, b as ComplyAdvantageSearchResponse, d as ComplyAdvantageSearchSuccessResponse, b2 as ComplyAdvantageUpdateSearchEntitiesRequest, b4 as ComplyAdvantageUpdateSearchEntitiesResponse, b3 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, b1 as ComplyAdvantageUpdateSearchRequest, aQ as ComplyAdvantageUser, bD as CreateProviderInput, bE as CreateProviderResponse, aJ as CreateSearchInput, c$ as CredentialMetadata, c_ as CustomerContactInformationOutput, de as CustomerDocumentMetaData, df as CustomerStatusResults, bd as DataProvider, bc as DataProviderOptions, bI as DeleteProviderInput, bJ as DeleteProviderResponse, _ as DocumentIdMetadata, Z as DocumentIdType, Y as DocumentIdTypes, cr as DocumentMetadataSchema, a4 as EmailMetadata, E as EmailVerificationAnalysisResponse, cP as EmailVerificationResponse, X as File, cZ as GetCredentialsOutput, db as GetKybSessionInput, dc as GetKybSessionResponse, cT as GetKycSessionInput, cU as GetKycSessionResponse, d0 as GetKycSessionResponseWithCredentialsMetadata, bC as GetProviderResponse, bB as GetProvidersResponse, ar as HIGH_RISK_TYPES, bZ as INDIVIDUAL_BENEFICIARY_RELATIONS, bb as IdentityProvider, ba as IdentityProviderOptions, b_ as IndividualBeneficiaryRelation, n as IpQualityAnalysisRequest, o as IpQualityAnalysisResponse, bi as IpQualityConfig, p as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, q as IpQualityServiceErrorResponse, bt as IpqualityscoreProvider, d3 as KYB_RESULTS, d5 as KYB_SESSION_STATUSES, d1 as KYB_STEP_TYPES, cL as KYC_RESULTS, cN as KYC_SESSION_STATUSES, cH as KYC_STEP_TYPES, d4 as KybResult, d6 as KybSessionStatus, d2 as KybStep, cM as KycResult, cO as KycSessionStatus, cI as KycStep, cK as KycStepStatus, cJ as KycStepStatuses, a2 as LivenessMetadata, as as MEDIUM_RISK_TYPES, aL as MatchStatus, aK as MatchStatuses, aR as MatchTypeDetail, M as MergedProviders, dl as MerkleAddressApiError, dk as MerkleAddressApiResponse, dj as MerkleAddressRequest, a as MerkleAddressResponse, di as MerkleBlockChainCodes, dh as MerkleBlockChainName, dg as MerkleBlockChainTypes, be as MerkleScienceConfig, br as MerkleScienceProvider, N as NestedSession, bo as NexeraIdKYBProvider, bn as NexeraIdSSIDProvider, O as OBJECT_TYPES, f as ObjectType, a3 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, a0 as ProofOfAddressDocumentType, $ as ProofOfAddressDocumentTypes, a1 as ProofOfAddressMetadata, cY as ProofOfResidenceDocumentType, cX as ProofOfResidenceMetaData, bz as ProviderData, bA as ProviderDataProject, bl as ProviderIntegrationType, bk as ProviderIntegrationTypeOptions, b9 as ProviderWithoutConfig, ad as RESULT_PARSER_ERROR, V as ReasonCode, U as ReasonCodes, w as RequestProperty, aN as RiskLevel, aM as RiskLevels, R as RiskSeverity, ap as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, an as SEARCH_FILTER_PEP_TYPE, al as SEARCH_FILTER_SANCTION_TYPE, ay as SEARCH_FILTER_TYPES, ab as SESSION_NOT_FOUND, ah as STEP_NOT_FOUND, bR as SUMSUB_APPLICANT_TYPES, ck as SUMSUB_COMPANY_BENEFICIARY_GROUP, c8 as SUMSUB_DOC_TYPES, ca as SUMSUB_FLOW_LEVEL, cz as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cp as SUMSUB_MEDIA_CONTENT_TYPES, bT as SUMSUB_REVIEW_ANSWERS, cE as SUMSUB_REVIEW_REJECT_LABELS, cG as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bV as SUMSUB_REVIEW_REJECT_TYPES, c6 as SUMSUB_REVIEW_STATUSES, bP as SUMSUB_STEPS, c4 as SUMSUB_WEBHOOK_INTERNAL_STATUS, l as ScorechainAnalysis, bg as ScorechainConfig, k as ScorechainError, j as ScorechainErrorResponse, bq as ScorechainProvider, m as ScoringAnalysisRequest, S as ScoringAnalysisResponse, aB as SearchEntityType, aA as SearchEntityTypes, aq as SearchFilterAdverseMediaType, ao as SearchFilterPepType, am as SearchFilterSanctionType, az as SearchFilterType, aC as SearchFilters, da as SelectKybSession, cR as SelectKycSession, cQ as SelectKycSessionStep, cS as SelectKycSessionWithCompletedSteps, K as Session, L as SessionWithoutSteps, H as Status, G as Statuses, a6 as Step, T as StepType, Q as StepTypes, bX as SumSubAddress, bY as SumSubApplicantInfo, ct as SumSubApplicantResetSchema, cs as SumSubApplicantReviewStatusSchema, cy as SumSubApplicantSchema, bS as SumSubApplicantType, co as SumSubApplicantVerificationStepSchema, c3 as SumSubCompanyApplicantInfo, ci as SumSubCompanyApplicantSchema, c9 as SumSubDocType, cb as SumSubFlowLevel, cu as SumSubGenerateExternalWebSdkLinkSchema, cj as SumSubImageId, ce as SumSubImageReviewResultSchema, ch as SumSubIndividualApplicantSchema, cq as SumSubMediaContentType, cc as SumSubRequiredIdDoc, bU as SumSubReviewAnswer, cF as SumSubReviewRejectLabel, bW as SumSubReviewRejectType, cd as SumSubReviewResultSchema, c7 as SumSubReviewStatus, cD as SumSubSimilarApplicantsSchema, bQ as SumSubStep, cn as SumSubVerificationStepSchema, bN as SumSubWebhookSchema, cg as SumsubApplicantType, cf as SumsubApplicantTypes, cl as SumsubCompanyBeneficiaryGroup, cx as SumsubKybDataSchema, cC as SumsubKybSessionFlowSection, cB as SumsubKybSessionFlowSectionItem, cA as SumsubKybSessionFlowSectionStatus, cw as SumsubKycDataSchema, cm as SumsubStepStatus, cv as SumsubVideoCallData, c5 as SumsubWebhookInternalStatus, by as SynapsProvider, ae as SynapsSessionErrorResponse, a7 as SynapsSessionEvent, aa as SynapsSessionRequest, af as SynapsSessionResponse, ai as SynapsStepErrorResponse, a8 as SynapsStepEvent, ag as SynapsStepRequest, aj as SynapsStepResponse, bH as ToggleProviderInput, ac as UNKNOWN_ERROR, dd as UpdateKybSessionOutput, cV as UpdateKycSessionOutput, bF as UpdateProviderInput, bG as UpdateProviderResponse, aP as UpdateSearchEntitiesInput, aO as UpdateSearchInput, cW as VideoKycMetaData, bK as WEBHOOK_TYPES, J as WebhookPayload, bL as WebhookType, bh as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, r as WrappedIpQualityServiceErrorResponse, av as mappingMatchTypeToLabel, a9 as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-7916723e.esm.mjs';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import '../../dist/vault.schema-3d206920.esm.mjs';
|
|
4
4
|
import 'decimal.js';
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var identityApi_schema = require('../../dist/identity-api.schema-03d64782.cjs.dev.cjs');
|
|
7
7
|
var vault_schema = require('../../dist/vault.schema-a005010c.cjs.dev.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-2c5a080b.cjs.dev.cjs');
|
|
9
9
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
10
10
|
require('nanoid');
|
|
11
11
|
require('decimal.js');
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var identityApi_schema = require('../../dist/identity-api.schema-af9b6b85.cjs.prod.cjs');
|
|
7
7
|
var vault_schema = require('../../dist/vault.schema-52d8cae3.cjs.prod.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-b6c55501.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 { aT as UuidString, eP as ExternalCustomerId, as as BlockchainAddress, cD as RuleResultStatus, aS as EnvironmentSchema } from '../../dist/identity-api.schema-4f972705.esm.mjs';
|
|
3
3
|
import { g as RiskScoreType, n as CustomerType, t as CustomerOnboardingLevel, v as CustomerStatus, I as ISO3CountryCode, U as GenericVerifiableCredentialSchema, ab as TransactionTypes, ah as TransactionReviewStatuses, aW as _toArray, aV as _toConsumableArray } from '../../dist/vault.schema-3d206920.esm.mjs';
|
|
4
|
-
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse, c as ComplyAdvantageSearchErrorResponse, d as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-
|
|
4
|
+
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse, c as ComplyAdvantageSearchErrorResponse, d as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-7916723e.esm.mjs';
|
|
5
5
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
6
6
|
import 'nanoid';
|
|
7
7
|
import 'decimal.js';
|