@nexeraid/identity-schemas 2.23.0-dev → 2.24.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-59131b87.cjs.dev.js → CoinMarketCap.schema-11069418.cjs.dev.js} +5 -4
- package/dist/{CoinMarketCap.schema-1ec7c78f.cjs.prod.js → CoinMarketCap.schema-b0cc2a78.cjs.prod.js} +5 -4
- package/dist/{CoinMarketCap.schema-632995b3.esm.js → CoinMarketCap.schema-e7be5940.esm.js} +5 -5
- package/dist/declarations/src/providers/coin-market-cap/CoinMarketCap.schema.d.ts +33 -22
- package/dist/declarations/src/providers/coin-market-cap/CoinMarketCap.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.js +2 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +1 -1
package/dist/{CoinMarketCap.schema-59131b87.cjs.dev.js → CoinMarketCap.schema-11069418.cjs.dev.js}
RENAMED
|
@@ -2527,11 +2527,11 @@ var CoinMarketCapRequest = zod.z.object({
|
|
|
2527
2527
|
convert_id: zod.z.string(),
|
|
2528
2528
|
time: zod.z.coerce.date()
|
|
2529
2529
|
});
|
|
2530
|
-
var
|
|
2530
|
+
var CoinMarketCapQuote = zod.z.object({
|
|
2531
2531
|
price: zod.z.number(),
|
|
2532
2532
|
last_updated: zod.z.coerce.date()
|
|
2533
2533
|
});
|
|
2534
|
-
var CoinMarketCapQuotes = zod.z.object(identityApi_schema._defineProperty(identityApi_schema._defineProperty(identityApi_schema._defineProperty({}, CoinMarketCapFiatId.USD,
|
|
2534
|
+
var CoinMarketCapQuotes = zod.z.object(identityApi_schema._defineProperty(identityApi_schema._defineProperty(identityApi_schema._defineProperty({}, CoinMarketCapFiatId.USD, CoinMarketCapQuote.optional()), CoinMarketCapFiatId.EUR, CoinMarketCapQuote.optional()), CoinMarketCapFiatId.GBP, CoinMarketCapQuote.optional()));
|
|
2535
2535
|
var Result = zod.z.object({
|
|
2536
2536
|
id: zod.z.number(),
|
|
2537
2537
|
name: zod.z.string(),
|
|
@@ -2543,10 +2543,10 @@ var Result = zod.z.object({
|
|
|
2543
2543
|
var Status = zod.z.object({
|
|
2544
2544
|
timestamp: zod.z.coerce.date(),
|
|
2545
2545
|
error_code: zod.z.number(),
|
|
2546
|
-
error_message: zod.z.string(),
|
|
2546
|
+
error_message: zod.z.string().nullish(),
|
|
2547
2547
|
elapsed: zod.z.number(),
|
|
2548
2548
|
credit_count: zod.z.number(),
|
|
2549
|
-
notice: zod.z.string().
|
|
2549
|
+
notice: zod.z.string().nullish()
|
|
2550
2550
|
});
|
|
2551
2551
|
var CoinMarketCapApiResponse = zod.z.object({
|
|
2552
2552
|
data: Result.optional(),
|
|
@@ -2598,6 +2598,7 @@ exports.CoerceDateUTC = CoerceDateUTC;
|
|
|
2598
2598
|
exports.Coin = Coin;
|
|
2599
2599
|
exports.CoinMarketCapApiResponse = CoinMarketCapApiResponse;
|
|
2600
2600
|
exports.CoinMarketCapFiatId = CoinMarketCapFiatId;
|
|
2601
|
+
exports.CoinMarketCapQuote = CoinMarketCapQuote;
|
|
2601
2602
|
exports.CoinMarketCapQuotes = CoinMarketCapQuotes;
|
|
2602
2603
|
exports.CoinMarketCapRequest = CoinMarketCapRequest;
|
|
2603
2604
|
exports.CompanyDocumentMetaData = CompanyDocumentMetaData;
|
package/dist/{CoinMarketCap.schema-1ec7c78f.cjs.prod.js → CoinMarketCap.schema-b0cc2a78.cjs.prod.js}
RENAMED
|
@@ -2527,11 +2527,11 @@ var CoinMarketCapRequest = zod.z.object({
|
|
|
2527
2527
|
convert_id: zod.z.string(),
|
|
2528
2528
|
time: zod.z.coerce.date()
|
|
2529
2529
|
});
|
|
2530
|
-
var
|
|
2530
|
+
var CoinMarketCapQuote = zod.z.object({
|
|
2531
2531
|
price: zod.z.number(),
|
|
2532
2532
|
last_updated: zod.z.coerce.date()
|
|
2533
2533
|
});
|
|
2534
|
-
var CoinMarketCapQuotes = zod.z.object(identityApi_schema._defineProperty(identityApi_schema._defineProperty(identityApi_schema._defineProperty({}, CoinMarketCapFiatId.USD,
|
|
2534
|
+
var CoinMarketCapQuotes = zod.z.object(identityApi_schema._defineProperty(identityApi_schema._defineProperty(identityApi_schema._defineProperty({}, CoinMarketCapFiatId.USD, CoinMarketCapQuote.optional()), CoinMarketCapFiatId.EUR, CoinMarketCapQuote.optional()), CoinMarketCapFiatId.GBP, CoinMarketCapQuote.optional()));
|
|
2535
2535
|
var Result = zod.z.object({
|
|
2536
2536
|
id: zod.z.number(),
|
|
2537
2537
|
name: zod.z.string(),
|
|
@@ -2543,10 +2543,10 @@ var Result = zod.z.object({
|
|
|
2543
2543
|
var Status = zod.z.object({
|
|
2544
2544
|
timestamp: zod.z.coerce.date(),
|
|
2545
2545
|
error_code: zod.z.number(),
|
|
2546
|
-
error_message: zod.z.string(),
|
|
2546
|
+
error_message: zod.z.string().nullish(),
|
|
2547
2547
|
elapsed: zod.z.number(),
|
|
2548
2548
|
credit_count: zod.z.number(),
|
|
2549
|
-
notice: zod.z.string().
|
|
2549
|
+
notice: zod.z.string().nullish()
|
|
2550
2550
|
});
|
|
2551
2551
|
var CoinMarketCapApiResponse = zod.z.object({
|
|
2552
2552
|
data: Result.optional(),
|
|
@@ -2598,6 +2598,7 @@ exports.CoerceDateUTC = CoerceDateUTC;
|
|
|
2598
2598
|
exports.Coin = Coin;
|
|
2599
2599
|
exports.CoinMarketCapApiResponse = CoinMarketCapApiResponse;
|
|
2600
2600
|
exports.CoinMarketCapFiatId = CoinMarketCapFiatId;
|
|
2601
|
+
exports.CoinMarketCapQuote = CoinMarketCapQuote;
|
|
2601
2602
|
exports.CoinMarketCapQuotes = CoinMarketCapQuotes;
|
|
2602
2603
|
exports.CoinMarketCapRequest = CoinMarketCapRequest;
|
|
2603
2604
|
exports.CompanyDocumentMetaData = CompanyDocumentMetaData;
|
|
@@ -2525,11 +2525,11 @@ var CoinMarketCapRequest = z.object({
|
|
|
2525
2525
|
convert_id: z.string(),
|
|
2526
2526
|
time: z.coerce.date()
|
|
2527
2527
|
});
|
|
2528
|
-
var
|
|
2528
|
+
var CoinMarketCapQuote = z.object({
|
|
2529
2529
|
price: z.number(),
|
|
2530
2530
|
last_updated: z.coerce.date()
|
|
2531
2531
|
});
|
|
2532
|
-
var CoinMarketCapQuotes = z.object(_defineProperty(_defineProperty(_defineProperty({}, CoinMarketCapFiatId.USD,
|
|
2532
|
+
var CoinMarketCapQuotes = z.object(_defineProperty(_defineProperty(_defineProperty({}, CoinMarketCapFiatId.USD, CoinMarketCapQuote.optional()), CoinMarketCapFiatId.EUR, CoinMarketCapQuote.optional()), CoinMarketCapFiatId.GBP, CoinMarketCapQuote.optional()));
|
|
2533
2533
|
var Result = z.object({
|
|
2534
2534
|
id: z.number(),
|
|
2535
2535
|
name: z.string(),
|
|
@@ -2541,14 +2541,14 @@ var Result = z.object({
|
|
|
2541
2541
|
var Status = z.object({
|
|
2542
2542
|
timestamp: z.coerce.date(),
|
|
2543
2543
|
error_code: z.number(),
|
|
2544
|
-
error_message: z.string(),
|
|
2544
|
+
error_message: z.string().nullish(),
|
|
2545
2545
|
elapsed: z.number(),
|
|
2546
2546
|
credit_count: z.number(),
|
|
2547
|
-
notice: z.string().
|
|
2547
|
+
notice: z.string().nullish()
|
|
2548
2548
|
});
|
|
2549
2549
|
var CoinMarketCapApiResponse = z.object({
|
|
2550
2550
|
data: Result.optional(),
|
|
2551
2551
|
status: Status
|
|
2552
2552
|
});
|
|
2553
2553
|
|
|
2554
|
-
export { LivenessMetadata as $, ANALYSIS_TYPES as A, BitRankVerifiedResponse as B, ChainalysisRiskAssessmentResponse as C, Status$2 as D, EmailVerificationAnalysisResponse as E, WebhookPayload as F, Session as G, SessionWithoutSteps as H, IpQualityServiceAnalysisResponse as I, StepTypes as J, StepType as K, ReasonCodes as L, MergedProviders as M, NestedSession as N, OBJECT_TYPES as O, PhoneVerificationAnalysisResponse as P, ReasonCode as Q, RiskSeverity as R, ScoringAnalysisResponse as S, File as T, DocumentIdTypes as U, DocumentIdType as V, WorkflowsScoringAnalysisRequest as W, DocumentIdMetadata as X, ProofOfAddressDocumentTypes as Y, ProofOfAddressDocumentType as Z, ProofOfAddressMetadata as _, MerkleAddressResponse as a, ComplyAdvantageSearchRequests as a$, PhoneMetadata as a0, EmailMetadata as a1, AMLMetadata as a2, Step as a3, SynapsSessionEvent as a4, SynapsStepEvent as a5, typeToHumanReadable as a6, SynapsSessionRequest as a7, SESSION_NOT_FOUND as a8, UNKNOWN_ERROR as a9, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as aA, ComplyAdvantageNationalityFieldSources as aB, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aC, ComplyAdvantageCountryFieldSources as aD, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as aE, ComplyAdvantageDateOfBirthFieldSources as aF, CreateSearchInput as aG, MatchStatuses as aH, MatchStatus as aI, RiskLevels as aJ, RiskLevel as aK, UpdateSearchInput as aL, UpdateSearchEntitiesInput as aM, ComplyAdvantageUser as aN, MatchTypeDetail as aO, ComplyAdvantageMedia as aP, ComplyAdvantageSearchDataResponseHit as aQ, ComplyAdvantageSearchDataResponse as aR, ComplyAdvantageSearchSuccessResponse as aS, ComplyAdvantageSearchErrorResponse as aT, ComplyAdvantageKeyInformation as aU, ComplyAdvantageAmlItemSource as aV, ComplyAdvantageAmlFullListing as aW, ComplyAdvantageSearchEntitiesDataResponse as aX, ComplyAdvantageSearchEntitiesSuccessResponse as aY, ComplyAdvantageSearchEntitiesResponse as aZ, ComplyAdvantageSearchRequest as a_, RESULT_PARSER_ERROR as aa, SynapsSessionErrorResponse as ab, SynapsSessionResponse as ac, SynapsStepRequest as ad, STEP_NOT_FOUND as ae, SynapsStepErrorResponse as af, SynapsStepResponse as ag, CoerceDateUTC as ah, SEARCH_FILTER_SANCTION_TYPE as ai, SearchFilterSanctionType as aj, SEARCH_FILTER_PEP_TYPE as ak, SearchFilterPepType as al, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as am, SearchFilterAdverseMediaType as an, HIGH_RISK_TYPES as ao, MEDIUM_RISK_TYPES as ap, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as aq, ComplyAdvantageResponseMatchType as ar, mappingMatchTypeToLabel as as, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as at, ComplyAdvantageReponseMatchStatus as au, SEARCH_FILTER_TYPES as av, SearchFilterType as aw, SearchEntityTypes as ax, SearchEntityType as ay, SearchFilters as az, ComplyAdvantageSearchResponse as b, BeneficiaryType as b$, ComplyAdvantageUpdateSearchRequest as b0, ComplyAdvantageUpdateSearchEntitiesRequest as b1, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as b2, ComplyAdvantageUpdateSearchEntitiesResponse as b3, ComplyAdvantageMonitorSearchDataResponse as b4, ComplyAdvantageMonitorSearchSuccessResponse as b5, ComplyAdvantageMonitorSearchResponse as b6, ComplyAdvantageMonitoredSearchUpdate as b7, ProviderWithoutConfig as b8, IdentityProviderOptions as b9, GetProvidersResponse as bA, GetProviderResponse as bB, CreateProviderInput as bC, CreateProviderResponse as bD, UpdateProviderInput as bE, UpdateProviderResponse as bF, ToggleProviderInput as bG, DeleteProviderInput as bH, DeleteProviderResponse as bI, WEBHOOK_TYPES as bJ, WebhookType as bK, ApplicantMemberOfSchema as bL, SumSubWebhookSchema as bM, BaseApplicantActionSchema as bN, SUMSUB_STEPS as bO, SumSubStep as bP, SUMSUB_APPLICANT_TYPES as bQ, SumSubApplicantType as bR, SUMSUB_REVIEW_ANSWERS as bS, SumSubReviewAnswer as bT, SUMSUB_REVIEW_REJECT_TYPES as bU, SumSubReviewRejectType as bV, SumSubAddress as bW, SumSubApplicantInfo as bX, INDIVIDUAL_BENEFICIARY_RELATIONS as bY, IndividualBeneficiaryRelation as bZ, BENEFICIARY_TYPES as b_, IdentityProviders as ba, DataProviderOptions as bb, DataProviders as bc, MerkleScienceConfig as bd, ChainalysisConfig as be, ScorechainConfig as bf, WorkflowsScorechainConfig as bg, IpQualityConfig as bh, BigConfig as bi, ProviderIntegrationTypeOptions as bj, ProviderIntegrationType as bk, BaseProvider as bl, NexeraIdSSIDProvider as bm, NexeraIdKYBProvider as bn, BigProvider as bo, ScorechainProvider as bp, MerkleScienceProvider as bq, ChainalysisProvider as br, IpqualityscoreProvider as bs, ComplyAdvantageProviderConfigTypes as bt, ComplyAdvantageProviderConfigFilters as bu, ComplyAdvantageProviderConfigElement as bv, ComplyAdvantageProvider as bw, SynapsProvider as bx, ProviderData as by, ProviderDataProject as bz, AnalysisType as c, KYB_RESULTS as c$, BeneficiaryCompanyCustomerClaims as c0, BeneficiaryCompanyCustomerClaimsArray as c1, SumSubCompanyApplicantInfo as c2, SUMSUB_WEBHOOK_INTERNAL_STATUS as c3, SumsubWebhookInternalStatus as c4, SUMSUB_REVIEW_STATUSES as c5, SumSubReviewStatus as c6, SUMSUB_DOC_TYPES as c7, SumSubDocType as c8, SUMSUB_FLOW_LEVEL as c9, SumsubKybSessionFlowSectionItem as cA, SumsubKybSessionFlowSection as cB, SumSubSimilarApplicantsSchema as cC, SUMSUB_REVIEW_REJECT_LABELS as cD, SumSubReviewRejectLabel as cE, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cF, KYC_STEP_TYPES as cG, KycStep as cH, KYC_RESULTS as cI, KycResult as cJ, KYC_SESSION_STATUSES as cK, KycSessionStatus as cL, EmailVerificationResponse as cM, SelectKycSession as cN, SelectKycSessionStep as cO, GetKycSessionInput as cP, GetKycSessionResponse as cQ, UpdateKycSessionOutput as cR, VideoKycMetaData as cS, ProofOfResidenceMetaData as cT, ProofOfResidenceDocumentType as cU, GetCredentialsOutput as cV, CustomerContactInformationOutput as cW, CredentialMetadata as cX, GetKycSessionResponseWithCredentialsMetadata as cY, KYB_STEP_TYPES as cZ, KybStep as c_, SumSubFlowLevel as ca, SumSubRequiredIdDoc as cb, SumSubReviewResultSchema as cc, SumSubImageReviewResultSchema as cd, SumsubApplicantTypes as ce, SumsubApplicantType as cf, SumSubIndividualApplicantSchema as cg, SumSubCompanyApplicantSchema as ch, SumSubImageId as ci, SUMSUB_COMPANY_BENEFICIARY_GROUP as cj, SumsubCompanyBeneficiaryGroup as ck, SumsubStepStatus as cl, SumSubVerificationStepSchema as cm, SumSubApplicantVerificationStepSchema as cn, SUMSUB_MEDIA_CONTENT_TYPES as co, SumSubMediaContentType as cp, DocumentMetadataSchema as cq, SumSubApplicantReviewStatusSchema as cr, SumSubApplicantResetSchema as cs, SumSubGenerateExternalWebSdkLinkSchema as ct, SumsubVideoCallData as cu, SumsubKycDataSchema as cv, SumsubKybDataSchema as cw, SumSubApplicantSchema as cx, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cy, SumsubKybSessionFlowSectionStatus as cz, ObjectType as d, KybResult as d0, KYB_SESSION_STATUSES as d1, KybSessionStatus as d2, CompanyDocumentMetaData as d3, BeneficiaryVerificationStatus as d4, BeneficiaryVerificationStatusArray as d5, SelectKybSession as d6, GetKybSessionInput as d7, GetKybSessionResponse as d8, UpdateKybSessionOutput as d9, CustomerDocumentMetaData as da, CustomerStatusResults as db, MerkleBlockChainTypes as dc, MerkleBlockChainNames as dd, MerkleBlockChainCodes as de, MerkleAddressRequest as df, MerkleAddressApiResponse as dg, MerkleAddressApiError as dh, ChainalysisRequest as di, ChainalysisRegisterApiResponse as dj, ChainalysisRiskLevel as dk, ChainalysisErrorCodes as dl, ChainalysisRiskAssessmentApiResponse as dm, ChainalysisApiError as dn, ChainalysisRegisterResponse as dp, CoinMarketCapRequest as dq,
|
|
2554
|
+
export { LivenessMetadata as $, ANALYSIS_TYPES as A, BitRankVerifiedResponse as B, ChainalysisRiskAssessmentResponse as C, Status$2 as D, EmailVerificationAnalysisResponse as E, WebhookPayload as F, Session as G, SessionWithoutSteps as H, IpQualityServiceAnalysisResponse as I, StepTypes as J, StepType as K, ReasonCodes as L, MergedProviders as M, NestedSession as N, OBJECT_TYPES as O, PhoneVerificationAnalysisResponse as P, ReasonCode as Q, RiskSeverity as R, ScoringAnalysisResponse as S, File as T, DocumentIdTypes as U, DocumentIdType as V, WorkflowsScoringAnalysisRequest as W, DocumentIdMetadata as X, ProofOfAddressDocumentTypes as Y, ProofOfAddressDocumentType as Z, ProofOfAddressMetadata as _, MerkleAddressResponse as a, ComplyAdvantageSearchRequests as a$, PhoneMetadata as a0, EmailMetadata as a1, AMLMetadata as a2, Step as a3, SynapsSessionEvent as a4, SynapsStepEvent as a5, typeToHumanReadable as a6, SynapsSessionRequest as a7, SESSION_NOT_FOUND as a8, UNKNOWN_ERROR as a9, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as aA, ComplyAdvantageNationalityFieldSources as aB, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aC, ComplyAdvantageCountryFieldSources as aD, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as aE, ComplyAdvantageDateOfBirthFieldSources as aF, CreateSearchInput as aG, MatchStatuses as aH, MatchStatus as aI, RiskLevels as aJ, RiskLevel as aK, UpdateSearchInput as aL, UpdateSearchEntitiesInput as aM, ComplyAdvantageUser as aN, MatchTypeDetail as aO, ComplyAdvantageMedia as aP, ComplyAdvantageSearchDataResponseHit as aQ, ComplyAdvantageSearchDataResponse as aR, ComplyAdvantageSearchSuccessResponse as aS, ComplyAdvantageSearchErrorResponse as aT, ComplyAdvantageKeyInformation as aU, ComplyAdvantageAmlItemSource as aV, ComplyAdvantageAmlFullListing as aW, ComplyAdvantageSearchEntitiesDataResponse as aX, ComplyAdvantageSearchEntitiesSuccessResponse as aY, ComplyAdvantageSearchEntitiesResponse as aZ, ComplyAdvantageSearchRequest as a_, RESULT_PARSER_ERROR as aa, SynapsSessionErrorResponse as ab, SynapsSessionResponse as ac, SynapsStepRequest as ad, STEP_NOT_FOUND as ae, SynapsStepErrorResponse as af, SynapsStepResponse as ag, CoerceDateUTC as ah, SEARCH_FILTER_SANCTION_TYPE as ai, SearchFilterSanctionType as aj, SEARCH_FILTER_PEP_TYPE as ak, SearchFilterPepType as al, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as am, SearchFilterAdverseMediaType as an, HIGH_RISK_TYPES as ao, MEDIUM_RISK_TYPES as ap, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as aq, ComplyAdvantageResponseMatchType as ar, mappingMatchTypeToLabel as as, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as at, ComplyAdvantageReponseMatchStatus as au, SEARCH_FILTER_TYPES as av, SearchFilterType as aw, SearchEntityTypes as ax, SearchEntityType as ay, SearchFilters as az, ComplyAdvantageSearchResponse as b, BeneficiaryType as b$, ComplyAdvantageUpdateSearchRequest as b0, ComplyAdvantageUpdateSearchEntitiesRequest as b1, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as b2, ComplyAdvantageUpdateSearchEntitiesResponse as b3, ComplyAdvantageMonitorSearchDataResponse as b4, ComplyAdvantageMonitorSearchSuccessResponse as b5, ComplyAdvantageMonitorSearchResponse as b6, ComplyAdvantageMonitoredSearchUpdate as b7, ProviderWithoutConfig as b8, IdentityProviderOptions as b9, GetProvidersResponse as bA, GetProviderResponse as bB, CreateProviderInput as bC, CreateProviderResponse as bD, UpdateProviderInput as bE, UpdateProviderResponse as bF, ToggleProviderInput as bG, DeleteProviderInput as bH, DeleteProviderResponse as bI, WEBHOOK_TYPES as bJ, WebhookType as bK, ApplicantMemberOfSchema as bL, SumSubWebhookSchema as bM, BaseApplicantActionSchema as bN, SUMSUB_STEPS as bO, SumSubStep as bP, SUMSUB_APPLICANT_TYPES as bQ, SumSubApplicantType as bR, SUMSUB_REVIEW_ANSWERS as bS, SumSubReviewAnswer as bT, SUMSUB_REVIEW_REJECT_TYPES as bU, SumSubReviewRejectType as bV, SumSubAddress as bW, SumSubApplicantInfo as bX, INDIVIDUAL_BENEFICIARY_RELATIONS as bY, IndividualBeneficiaryRelation as bZ, BENEFICIARY_TYPES as b_, IdentityProviders as ba, DataProviderOptions as bb, DataProviders as bc, MerkleScienceConfig as bd, ChainalysisConfig as be, ScorechainConfig as bf, WorkflowsScorechainConfig as bg, IpQualityConfig as bh, BigConfig as bi, ProviderIntegrationTypeOptions as bj, ProviderIntegrationType as bk, BaseProvider as bl, NexeraIdSSIDProvider as bm, NexeraIdKYBProvider as bn, BigProvider as bo, ScorechainProvider as bp, MerkleScienceProvider as bq, ChainalysisProvider as br, IpqualityscoreProvider as bs, ComplyAdvantageProviderConfigTypes as bt, ComplyAdvantageProviderConfigFilters as bu, ComplyAdvantageProviderConfigElement as bv, ComplyAdvantageProvider as bw, SynapsProvider as bx, ProviderData as by, ProviderDataProject as bz, AnalysisType as c, KYB_RESULTS as c$, BeneficiaryCompanyCustomerClaims as c0, BeneficiaryCompanyCustomerClaimsArray as c1, SumSubCompanyApplicantInfo as c2, SUMSUB_WEBHOOK_INTERNAL_STATUS as c3, SumsubWebhookInternalStatus as c4, SUMSUB_REVIEW_STATUSES as c5, SumSubReviewStatus as c6, SUMSUB_DOC_TYPES as c7, SumSubDocType as c8, SUMSUB_FLOW_LEVEL as c9, SumsubKybSessionFlowSectionItem as cA, SumsubKybSessionFlowSection as cB, SumSubSimilarApplicantsSchema as cC, SUMSUB_REVIEW_REJECT_LABELS as cD, SumSubReviewRejectLabel as cE, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cF, KYC_STEP_TYPES as cG, KycStep as cH, KYC_RESULTS as cI, KycResult as cJ, KYC_SESSION_STATUSES as cK, KycSessionStatus as cL, EmailVerificationResponse as cM, SelectKycSession as cN, SelectKycSessionStep as cO, GetKycSessionInput as cP, GetKycSessionResponse as cQ, UpdateKycSessionOutput as cR, VideoKycMetaData as cS, ProofOfResidenceMetaData as cT, ProofOfResidenceDocumentType as cU, GetCredentialsOutput as cV, CustomerContactInformationOutput as cW, CredentialMetadata as cX, GetKycSessionResponseWithCredentialsMetadata as cY, KYB_STEP_TYPES as cZ, KybStep as c_, SumSubFlowLevel as ca, SumSubRequiredIdDoc as cb, SumSubReviewResultSchema as cc, SumSubImageReviewResultSchema as cd, SumsubApplicantTypes as ce, SumsubApplicantType as cf, SumSubIndividualApplicantSchema as cg, SumSubCompanyApplicantSchema as ch, SumSubImageId as ci, SUMSUB_COMPANY_BENEFICIARY_GROUP as cj, SumsubCompanyBeneficiaryGroup as ck, SumsubStepStatus as cl, SumSubVerificationStepSchema as cm, SumSubApplicantVerificationStepSchema as cn, SUMSUB_MEDIA_CONTENT_TYPES as co, SumSubMediaContentType as cp, DocumentMetadataSchema as cq, SumSubApplicantReviewStatusSchema as cr, SumSubApplicantResetSchema as cs, SumSubGenerateExternalWebSdkLinkSchema as ct, SumsubVideoCallData as cu, SumsubKycDataSchema as cv, SumsubKybDataSchema as cw, SumSubApplicantSchema as cx, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cy, SumsubKybSessionFlowSectionStatus as cz, ObjectType as d, KybResult as d0, KYB_SESSION_STATUSES as d1, KybSessionStatus as d2, CompanyDocumentMetaData as d3, BeneficiaryVerificationStatus as d4, BeneficiaryVerificationStatusArray as d5, SelectKybSession as d6, GetKybSessionInput as d7, GetKybSessionResponse as d8, UpdateKybSessionOutput as d9, CustomerDocumentMetaData as da, CustomerStatusResults as db, MerkleBlockChainTypes as dc, MerkleBlockChainNames as dd, MerkleBlockChainCodes as de, MerkleAddressRequest as df, MerkleAddressApiResponse as dg, MerkleAddressApiError as dh, ChainalysisRequest as di, ChainalysisRegisterApiResponse as dj, ChainalysisRiskLevel as dk, ChainalysisErrorCodes as dl, ChainalysisRiskAssessmentApiResponse as dm, ChainalysisApiError as dn, ChainalysisRegisterResponse as dp, CoinMarketCapRequest as dq, CoinMarketCapQuote as dr, CoinMarketCapQuotes as ds, CoinMarketCapApiResponse as dt, CoinMarketCapFiatId as du, BLOCKCHAIN_TYPES as e, Blockchain as f, Coin as g, ScorechainErrorResponse as h, ScorechainError as i, ScorechainAnalysis as j, ScoringAnalysisRequest as k, IpQualityAnalysisRequest as l, IpQualityAnalysisResponse as m, IpQualityServiceAnalysis as n, IpQualityServiceErrorResponse as o, BigCryptoChain as p, BigPropertiesLiteral as q, BigProperties as r, BigProperty as s, RequestProperty as t, BigCSErrorCodes as u, BitRankRequest as v, BitRankVerified as w, BitRankVerifiedErrorResponse as x, BitRankVerifiedError as y, Statuses as z };
|
|
@@ -16,8 +16,19 @@ export declare const CoinMarketCapRequest: z.ZodObject<{
|
|
|
16
16
|
convert_id: string;
|
|
17
17
|
}>;
|
|
18
18
|
export type CoinMarketCapRequest = z.infer<typeof CoinMarketCapRequest>;
|
|
19
|
+
export declare const CoinMarketCapQuote: z.ZodObject<{
|
|
20
|
+
price: z.ZodNumber;
|
|
21
|
+
last_updated: z.ZodDate;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
price: number;
|
|
24
|
+
last_updated: Date;
|
|
25
|
+
}, {
|
|
26
|
+
price: number;
|
|
27
|
+
last_updated: Date;
|
|
28
|
+
}>;
|
|
29
|
+
export type CoinMarketCapQuote = z.infer<typeof CoinMarketCapQuote>;
|
|
19
30
|
export declare const CoinMarketCapQuotes: z.ZodObject<{
|
|
20
|
-
[x: string]: z.ZodObject<{
|
|
31
|
+
[x: string]: z.ZodOptional<z.ZodObject<{
|
|
21
32
|
price: z.ZodNumber;
|
|
22
33
|
last_updated: z.ZodDate;
|
|
23
34
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -26,17 +37,17 @@ export declare const CoinMarketCapQuotes: z.ZodObject<{
|
|
|
26
37
|
}, {
|
|
27
38
|
price: number;
|
|
28
39
|
last_updated: Date;
|
|
29
|
-
}
|
|
40
|
+
}>>;
|
|
30
41
|
}, "strip", z.ZodTypeAny, {
|
|
31
42
|
[x: string]: {
|
|
32
43
|
price: number;
|
|
33
44
|
last_updated: Date;
|
|
34
|
-
};
|
|
45
|
+
} | undefined;
|
|
35
46
|
}, {
|
|
36
47
|
[x: string]: {
|
|
37
48
|
price: number;
|
|
38
49
|
last_updated: Date;
|
|
39
|
-
};
|
|
50
|
+
} | undefined;
|
|
40
51
|
}>;
|
|
41
52
|
export type CoinMarketCapQuotes = z.infer<typeof CoinMarketCapQuotes>;
|
|
42
53
|
export declare const CoinMarketCapApiResponse: z.ZodObject<{
|
|
@@ -47,7 +58,7 @@ export declare const CoinMarketCapApiResponse: z.ZodObject<{
|
|
|
47
58
|
amount: z.ZodNumber;
|
|
48
59
|
last_updated: z.ZodDate;
|
|
49
60
|
quote: z.ZodObject<{
|
|
50
|
-
[x: string]: z.ZodObject<{
|
|
61
|
+
[x: string]: z.ZodOptional<z.ZodObject<{
|
|
51
62
|
price: z.ZodNumber;
|
|
52
63
|
last_updated: z.ZodDate;
|
|
53
64
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -56,17 +67,17 @@ export declare const CoinMarketCapApiResponse: z.ZodObject<{
|
|
|
56
67
|
}, {
|
|
57
68
|
price: number;
|
|
58
69
|
last_updated: Date;
|
|
59
|
-
}
|
|
70
|
+
}>>;
|
|
60
71
|
}, "strip", z.ZodTypeAny, {
|
|
61
72
|
[x: string]: {
|
|
62
73
|
price: number;
|
|
63
74
|
last_updated: Date;
|
|
64
|
-
};
|
|
75
|
+
} | undefined;
|
|
65
76
|
}, {
|
|
66
77
|
[x: string]: {
|
|
67
78
|
price: number;
|
|
68
79
|
last_updated: Date;
|
|
69
|
-
};
|
|
80
|
+
} | undefined;
|
|
70
81
|
}>;
|
|
71
82
|
}, "strip", z.ZodTypeAny, {
|
|
72
83
|
symbol: string;
|
|
@@ -78,7 +89,7 @@ export declare const CoinMarketCapApiResponse: z.ZodObject<{
|
|
|
78
89
|
[x: string]: {
|
|
79
90
|
price: number;
|
|
80
91
|
last_updated: Date;
|
|
81
|
-
};
|
|
92
|
+
} | undefined;
|
|
82
93
|
};
|
|
83
94
|
}, {
|
|
84
95
|
symbol: string;
|
|
@@ -90,39 +101,39 @@ export declare const CoinMarketCapApiResponse: z.ZodObject<{
|
|
|
90
101
|
[x: string]: {
|
|
91
102
|
price: number;
|
|
92
103
|
last_updated: Date;
|
|
93
|
-
};
|
|
104
|
+
} | undefined;
|
|
94
105
|
};
|
|
95
106
|
}>>;
|
|
96
107
|
status: z.ZodObject<{
|
|
97
108
|
timestamp: z.ZodDate;
|
|
98
109
|
error_code: z.ZodNumber;
|
|
99
|
-
error_message: z.ZodString
|
|
110
|
+
error_message: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
100
111
|
elapsed: z.ZodNumber;
|
|
101
112
|
credit_count: z.ZodNumber;
|
|
102
|
-
notice: z.ZodOptional<z.ZodString
|
|
113
|
+
notice: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
103
114
|
}, "strip", z.ZodTypeAny, {
|
|
104
115
|
timestamp: Date;
|
|
105
116
|
error_code: number;
|
|
106
|
-
error_message: string;
|
|
107
117
|
elapsed: number;
|
|
108
118
|
credit_count: number;
|
|
109
|
-
|
|
119
|
+
error_message?: string | null | undefined;
|
|
120
|
+
notice?: string | null | undefined;
|
|
110
121
|
}, {
|
|
111
122
|
timestamp: Date;
|
|
112
123
|
error_code: number;
|
|
113
|
-
error_message: string;
|
|
114
124
|
elapsed: number;
|
|
115
125
|
credit_count: number;
|
|
116
|
-
|
|
126
|
+
error_message?: string | null | undefined;
|
|
127
|
+
notice?: string | null | undefined;
|
|
117
128
|
}>;
|
|
118
129
|
}, "strip", z.ZodTypeAny, {
|
|
119
130
|
status: {
|
|
120
131
|
timestamp: Date;
|
|
121
132
|
error_code: number;
|
|
122
|
-
error_message: string;
|
|
123
133
|
elapsed: number;
|
|
124
134
|
credit_count: number;
|
|
125
|
-
|
|
135
|
+
error_message?: string | null | undefined;
|
|
136
|
+
notice?: string | null | undefined;
|
|
126
137
|
};
|
|
127
138
|
data?: {
|
|
128
139
|
symbol: string;
|
|
@@ -134,17 +145,17 @@ export declare const CoinMarketCapApiResponse: z.ZodObject<{
|
|
|
134
145
|
[x: string]: {
|
|
135
146
|
price: number;
|
|
136
147
|
last_updated: Date;
|
|
137
|
-
};
|
|
148
|
+
} | undefined;
|
|
138
149
|
};
|
|
139
150
|
} | undefined;
|
|
140
151
|
}, {
|
|
141
152
|
status: {
|
|
142
153
|
timestamp: Date;
|
|
143
154
|
error_code: number;
|
|
144
|
-
error_message: string;
|
|
145
155
|
elapsed: number;
|
|
146
156
|
credit_count: number;
|
|
147
|
-
|
|
157
|
+
error_message?: string | null | undefined;
|
|
158
|
+
notice?: string | null | undefined;
|
|
148
159
|
};
|
|
149
160
|
data?: {
|
|
150
161
|
symbol: string;
|
|
@@ -156,7 +167,7 @@ export declare const CoinMarketCapApiResponse: z.ZodObject<{
|
|
|
156
167
|
[x: string]: {
|
|
157
168
|
price: number;
|
|
158
169
|
last_updated: Date;
|
|
159
|
-
};
|
|
170
|
+
} | undefined;
|
|
160
171
|
};
|
|
161
172
|
} | undefined;
|
|
162
173
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"CoinMarketCap.schema.d.ts","sourceRoot":"../../../../../src/providers/coin-market-cap","sources":["CoinMarketCap.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAK/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"CoinMarketCap.schema.d.ts","sourceRoot":"../../../../../src/providers/coin-market-cap","sources":["CoinMarketCap.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAK/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;EAI9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAoBtE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC"}
|
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-11069418.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-57fbeead.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
@@ -9982,6 +9982,7 @@ exports.CoerceDateUTC = CoinMarketCap_schema.CoerceDateUTC;
|
|
|
9982
9982
|
exports.Coin = CoinMarketCap_schema.Coin;
|
|
9983
9983
|
exports.CoinMarketCapApiResponse = CoinMarketCap_schema.CoinMarketCapApiResponse;
|
|
9984
9984
|
exports.CoinMarketCapFiatId = CoinMarketCap_schema.CoinMarketCapFiatId;
|
|
9985
|
+
exports.CoinMarketCapQuote = CoinMarketCap_schema.CoinMarketCapQuote;
|
|
9985
9986
|
exports.CoinMarketCapQuotes = CoinMarketCap_schema.CoinMarketCapQuotes;
|
|
9986
9987
|
exports.CoinMarketCapRequest = CoinMarketCap_schema.CoinMarketCapRequest;
|
|
9987
9988
|
exports.CompanyDocumentMetaData = CoinMarketCap_schema.CompanyDocumentMetaData;
|
|
@@ -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-b0cc2a78.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-5b5d60ea.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
@@ -9982,6 +9982,7 @@ exports.CoerceDateUTC = CoinMarketCap_schema.CoerceDateUTC;
|
|
|
9982
9982
|
exports.Coin = CoinMarketCap_schema.Coin;
|
|
9983
9983
|
exports.CoinMarketCapApiResponse = CoinMarketCap_schema.CoinMarketCapApiResponse;
|
|
9984
9984
|
exports.CoinMarketCapFiatId = CoinMarketCap_schema.CoinMarketCapFiatId;
|
|
9985
|
+
exports.CoinMarketCapQuote = CoinMarketCap_schema.CoinMarketCapQuote;
|
|
9985
9986
|
exports.CoinMarketCapQuotes = CoinMarketCap_schema.CoinMarketCapQuotes;
|
|
9986
9987
|
exports.CoinMarketCapRequest = CoinMarketCap_schema.CoinMarketCapRequest;
|
|
9987
9988
|
exports.CompanyDocumentMetaData = CoinMarketCap_schema.CompanyDocumentMetaData;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bL as ApplicantMemberOfSchema, b_ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bN as BaseApplicantActionSchema, bl as BaseProvider, c0 as BeneficiaryCompanyCustomerClaims, c1 as BeneficiaryCompanyCustomerClaimsArray, b$ as BeneficiaryType, d4 as BeneficiaryVerificationStatus, d5 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bi as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bo as BigProvider, v as BitRankRequest, w as BitRankVerified, y as BitRankVerifiedError, x as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aC as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aE as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aA as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, aq as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dn as ChainalysisApiError, be as ChainalysisConfig, dl as ChainalysisErrorCodes, br as ChainalysisProvider, dj as ChainalysisRegisterApiResponse, dp as ChainalysisRegisterResponse, di as ChainalysisRequest, dm as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dk as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin,
|
|
1
|
+
export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bL as ApplicantMemberOfSchema, b_ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bN as BaseApplicantActionSchema, bl as BaseProvider, c0 as BeneficiaryCompanyCustomerClaims, c1 as BeneficiaryCompanyCustomerClaimsArray, b$ as BeneficiaryType, d4 as BeneficiaryVerificationStatus, d5 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bi as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bo as BigProvider, v as BitRankRequest, w as BitRankVerified, y as BitRankVerifiedError, x as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aC as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aE as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aA as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, aq as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dn as ChainalysisApiError, be as ChainalysisConfig, dl as ChainalysisErrorCodes, br as ChainalysisProvider, dj as ChainalysisRegisterApiResponse, dp as ChainalysisRegisterResponse, di as ChainalysisRequest, dm as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dk as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin, dt as CoinMarketCapApiResponse, du as CoinMarketCapFiatId, dr as CoinMarketCapQuote, ds as CoinMarketCapQuotes, dq as CoinMarketCapRequest, d3 as CompanyDocumentMetaData, aW as ComplyAdvantageAmlFullListing, aV as ComplyAdvantageAmlItemSource, aD as ComplyAdvantageCountryFieldSources, aF as ComplyAdvantageDateOfBirthFieldSources, aU as ComplyAdvantageKeyInformation, aP as ComplyAdvantageMedia, b4 as ComplyAdvantageMonitorSearchDataResponse, b6 as ComplyAdvantageMonitorSearchResponse, b5 as ComplyAdvantageMonitorSearchSuccessResponse, b7 as ComplyAdvantageMonitoredSearchUpdate, aB as ComplyAdvantageNationalityFieldSources, bw as ComplyAdvantageProvider, bv as ComplyAdvantageProviderConfigElement, bu as ComplyAdvantageProviderConfigFilters, bt as ComplyAdvantageProviderConfigTypes, au as ComplyAdvantageReponseMatchStatus, ar as ComplyAdvantageResponseMatchType, aR as ComplyAdvantageSearchDataResponse, aQ as ComplyAdvantageSearchDataResponseHit, aX as ComplyAdvantageSearchEntitiesDataResponse, aZ as ComplyAdvantageSearchEntitiesResponse, aY as ComplyAdvantageSearchEntitiesSuccessResponse, aT as ComplyAdvantageSearchErrorResponse, a_ as ComplyAdvantageSearchRequest, a$ as ComplyAdvantageSearchRequests, b as ComplyAdvantageSearchResponse, aS as ComplyAdvantageSearchSuccessResponse, b1 as ComplyAdvantageUpdateSearchEntitiesRequest, b3 as ComplyAdvantageUpdateSearchEntitiesResponse, b2 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, b0 as ComplyAdvantageUpdateSearchRequest, aN as ComplyAdvantageUser, bC as CreateProviderInput, bD as CreateProviderResponse, aG as CreateSearchInput, cX as CredentialMetadata, cW as CustomerContactInformationOutput, da as CustomerDocumentMetaData, db as CustomerStatusResults, bb as DataProviderOptions, bc as DataProviders, bH as DeleteProviderInput, bI as DeleteProviderResponse, X as DocumentIdMetadata, V as DocumentIdType, U as DocumentIdTypes, cq as DocumentMetadataSchema, a1 as EmailMetadata, E as EmailVerificationAnalysisResponse, cM as EmailVerificationResponse, T as File, cV as GetCredentialsOutput, d7 as GetKybSessionInput, d8 as GetKybSessionResponse, cP as GetKycSessionInput, cQ as GetKycSessionResponse, cY as GetKycSessionResponseWithCredentialsMetadata, bB as GetProviderResponse, bA as GetProvidersResponse, ao as HIGH_RISK_TYPES, bY as INDIVIDUAL_BENEFICIARY_RELATIONS, b9 as IdentityProviderOptions, ba as IdentityProviders, bZ as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bh as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bs as IpqualityscoreProvider, c$ as KYB_RESULTS, d1 as KYB_SESSION_STATUSES, cZ as KYB_STEP_TYPES, cI as KYC_RESULTS, cK as KYC_SESSION_STATUSES, cG as KYC_STEP_TYPES, d0 as KybResult, d2 as KybSessionStatus, c_ as KybStep, cJ as KycResult, cL as KycSessionStatus, cH as KycStep, $ as LivenessMetadata, ap as MEDIUM_RISK_TYPES, aI as MatchStatus, aH as MatchStatuses, aO as MatchTypeDetail, M as MergedProviders, dh as MerkleAddressApiError, dg as MerkleAddressApiResponse, df as MerkleAddressRequest, a as MerkleAddressResponse, de as MerkleBlockChainCodes, dd as MerkleBlockChainNames, dc as MerkleBlockChainTypes, bd as MerkleScienceConfig, bq as MerkleScienceProvider, N as NestedSession, bn as NexeraIdKYBProvider, bm as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, a0 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Z as ProofOfAddressDocumentType, Y as ProofOfAddressDocumentTypes, _ as ProofOfAddressMetadata, cU as ProofOfResidenceDocumentType, cT as ProofOfResidenceMetaData, by as ProviderData, bz as ProviderDataProject, bk as ProviderIntegrationType, bj as ProviderIntegrationTypeOptions, b8 as ProviderWithoutConfig, aa as RESULT_PARSER_ERROR, Q as ReasonCode, L as ReasonCodes, t as RequestProperty, aK as RiskLevel, aJ as RiskLevels, R as RiskSeverity, am as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, ak as SEARCH_FILTER_PEP_TYPE, ai as SEARCH_FILTER_SANCTION_TYPE, av as SEARCH_FILTER_TYPES, a8 as SESSION_NOT_FOUND, ae as STEP_NOT_FOUND, bQ as SUMSUB_APPLICANT_TYPES, cj as SUMSUB_COMPANY_BENEFICIARY_GROUP, c7 as SUMSUB_DOC_TYPES, c9 as SUMSUB_FLOW_LEVEL, cy as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, co as SUMSUB_MEDIA_CONTENT_TYPES, bS as SUMSUB_REVIEW_ANSWERS, cD as SUMSUB_REVIEW_REJECT_LABELS, cF as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bU as SUMSUB_REVIEW_REJECT_TYPES, c5 as SUMSUB_REVIEW_STATUSES, bO as SUMSUB_STEPS, c3 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bf as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bp as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ay as SearchEntityType, ax as SearchEntityTypes, an as SearchFilterAdverseMediaType, al as SearchFilterPepType, aj as SearchFilterSanctionType, aw as SearchFilterType, az as SearchFilters, d6 as SelectKybSession, cN as SelectKycSession, cO as SelectKycSessionStep, G as Session, H as SessionWithoutSteps, D as Status, z as Statuses, a3 as Step, K as StepType, J as StepTypes, bW as SumSubAddress, bX as SumSubApplicantInfo, cs as SumSubApplicantResetSchema, cr as SumSubApplicantReviewStatusSchema, cx as SumSubApplicantSchema, bR as SumSubApplicantType, cn as SumSubApplicantVerificationStepSchema, c2 as SumSubCompanyApplicantInfo, ch as SumSubCompanyApplicantSchema, c8 as SumSubDocType, ca as SumSubFlowLevel, ct as SumSubGenerateExternalWebSdkLinkSchema, ci as SumSubImageId, cd as SumSubImageReviewResultSchema, cg as SumSubIndividualApplicantSchema, cp as SumSubMediaContentType, cb as SumSubRequiredIdDoc, bT as SumSubReviewAnswer, cE as SumSubReviewRejectLabel, bV as SumSubReviewRejectType, cc as SumSubReviewResultSchema, c6 as SumSubReviewStatus, cC as SumSubSimilarApplicantsSchema, bP as SumSubStep, cm as SumSubVerificationStepSchema, bM as SumSubWebhookSchema, cf as SumsubApplicantType, ce as SumsubApplicantTypes, ck as SumsubCompanyBeneficiaryGroup, cw as SumsubKybDataSchema, cB as SumsubKybSessionFlowSection, cA as SumsubKybSessionFlowSectionItem, cz as SumsubKybSessionFlowSectionStatus, cv as SumsubKycDataSchema, cl as SumsubStepStatus, cu as SumsubVideoCallData, c4 as SumsubWebhookInternalStatus, bx as SynapsProvider, ab as SynapsSessionErrorResponse, a4 as SynapsSessionEvent, a7 as SynapsSessionRequest, ac as SynapsSessionResponse, af as SynapsStepErrorResponse, a5 as SynapsStepEvent, ad as SynapsStepRequest, ag as SynapsStepResponse, bG as ToggleProviderInput, a9 as UNKNOWN_ERROR, d9 as UpdateKybSessionOutput, cR as UpdateKycSessionOutput, bE as UpdateProviderInput, bF as UpdateProviderResponse, aM as UpdateSearchEntitiesInput, aL as UpdateSearchInput, cS as VideoKycMetaData, bJ as WEBHOOK_TYPES, F as WebhookPayload, bK as WebhookType, bg as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, as as mappingMatchTypeToLabel, a6 as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-e7be5940.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import '../../dist/identity-api.schema-1a005459.esm.js';
|
|
4
4
|
import 'nanoid';
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var identityApi_schema = require('../../dist/identity-api.schema-57fbeead.cjs.dev.js');
|
|
7
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
7
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-11069418.cjs.dev.js');
|
|
8
8
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
9
9
|
var transaction_schema = require('../../dist/transaction.schema-18ac4ec3.cjs.dev.js');
|
|
10
10
|
require('nanoid');
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var identityApi_schema = require('../../dist/identity-api.schema-5b5d60ea.cjs.prod.js');
|
|
7
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
7
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-b0cc2a78.cjs.prod.js');
|
|
8
8
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
9
9
|
var transaction_schema = require('../../dist/transaction.schema-9fc271c9.cjs.prod.js');
|
|
10
10
|
require('nanoid');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { aT as UuidString, e_ as ExternalCustomerId, b3 as RiskScoreType, b5 as CustomerType, bb as CustomerOnboardingLevel, bd as CustomerStatus, aX as ISO3CountryCode, as as BlockchainAddress, cK as RuleResultStatus, fh as GenericVerifiableCredentialSchema, fq as _toArray, fp as _toConsumableArray, aS as EnvironmentSchema } from '../../dist/identity-api.schema-1a005459.esm.js';
|
|
3
|
-
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/CoinMarketCap.schema-
|
|
3
|
+
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/CoinMarketCap.schema-e7be5940.esm.js';
|
|
4
4
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
5
|
import { g as TransactionTypes, m as TransactionReviewStatuses } from '../../dist/transaction.schema-c544a68e.esm.js';
|
|
6
6
|
import 'nanoid';
|