@nexeraid/identity-schemas 2.19.0-dev → 2.20.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-4c3e4546.cjs.prod.js → CoinMarketCap.schema-1ec7c78f.cjs.prod.js} +1 -0
- package/dist/{CoinMarketCap.schema-6a95d9c7.cjs.dev.js → CoinMarketCap.schema-59131b87.cjs.dev.js} +1 -0
- package/dist/{CoinMarketCap.schema-9679e27d.esm.js → CoinMarketCap.schema-632995b3.esm.js} +1 -0
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +9 -0
- package/dist/declarations/src/providers/kyc-sessions.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 +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +1 -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-4c3e4546.cjs.prod.js → CoinMarketCap.schema-1ec7c78f.cjs.prod.js}
RENAMED
|
@@ -2298,6 +2298,7 @@ var SelectKycSession = zod.z.object({
|
|
|
2298
2298
|
status: KycSessionStatus.nullish(),
|
|
2299
2299
|
ip: zod.z.string().nullish(),
|
|
2300
2300
|
notificationEmail: zod.z.string().nullish(),
|
|
2301
|
+
isBeneficiary: zod.z.coerce["boolean"]().nullish(),
|
|
2301
2302
|
createdAt: zod.z.coerce.date(),
|
|
2302
2303
|
updatedAt: zod.z.coerce.date(),
|
|
2303
2304
|
scenarioExecutions: identityApi_schema.SdkVerificationOutput.nullish(),
|
package/dist/{CoinMarketCap.schema-6a95d9c7.cjs.dev.js → CoinMarketCap.schema-59131b87.cjs.dev.js}
RENAMED
|
@@ -2298,6 +2298,7 @@ var SelectKycSession = zod.z.object({
|
|
|
2298
2298
|
status: KycSessionStatus.nullish(),
|
|
2299
2299
|
ip: zod.z.string().nullish(),
|
|
2300
2300
|
notificationEmail: zod.z.string().nullish(),
|
|
2301
|
+
isBeneficiary: zod.z.coerce["boolean"]().nullish(),
|
|
2301
2302
|
createdAt: zod.z.coerce.date(),
|
|
2302
2303
|
updatedAt: zod.z.coerce.date(),
|
|
2303
2304
|
scenarioExecutions: identityApi_schema.SdkVerificationOutput.nullish(),
|
|
@@ -2296,6 +2296,7 @@ var SelectKycSession = z.object({
|
|
|
2296
2296
|
status: KycSessionStatus.nullish(),
|
|
2297
2297
|
ip: z.string().nullish(),
|
|
2298
2298
|
notificationEmail: z.string().nullish(),
|
|
2299
|
+
isBeneficiary: z.coerce["boolean"]().nullish(),
|
|
2299
2300
|
createdAt: z.coerce.date(),
|
|
2300
2301
|
updatedAt: z.coerce.date(),
|
|
2301
2302
|
scenarioExecutions: SdkVerificationOutput.nullish(),
|
|
@@ -36,6 +36,7 @@ export declare const SelectKycSession: z.ZodObject<{
|
|
|
36
36
|
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
37
37
|
ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
38
38
|
notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
39
|
+
isBeneficiary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
39
40
|
createdAt: z.ZodDate;
|
|
40
41
|
updatedAt: z.ZodDate;
|
|
41
42
|
scenarioExecutions: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -161,6 +162,7 @@ export declare const SelectKycSession: z.ZodObject<{
|
|
|
161
162
|
sandboxMode?: boolean | null | undefined;
|
|
162
163
|
sandboxSimulated?: boolean | null | undefined;
|
|
163
164
|
notificationEmail?: string | null | undefined;
|
|
165
|
+
isBeneficiary?: boolean | null | undefined;
|
|
164
166
|
scenarioExecutions?: {
|
|
165
167
|
status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
|
|
166
168
|
customerId?: string | undefined;
|
|
@@ -198,6 +200,7 @@ export declare const SelectKycSession: z.ZodObject<{
|
|
|
198
200
|
sandboxMode?: boolean | null | undefined;
|
|
199
201
|
sandboxSimulated?: boolean | null | undefined;
|
|
200
202
|
notificationEmail?: string | null | undefined;
|
|
203
|
+
isBeneficiary?: boolean | null | undefined;
|
|
201
204
|
scenarioExecutions?: {
|
|
202
205
|
status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
|
|
203
206
|
customerId?: string | undefined;
|
|
@@ -261,6 +264,7 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
261
264
|
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
262
265
|
ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
263
266
|
notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
267
|
+
isBeneficiary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
264
268
|
createdAt: z.ZodDate;
|
|
265
269
|
updatedAt: z.ZodDate;
|
|
266
270
|
scenarioExecutions: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -424,6 +428,7 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
424
428
|
sandboxMode?: boolean | null | undefined;
|
|
425
429
|
sandboxSimulated?: boolean | null | undefined;
|
|
426
430
|
notificationEmail?: string | null | undefined;
|
|
431
|
+
isBeneficiary?: boolean | null | undefined;
|
|
427
432
|
scenarioExecutions?: {
|
|
428
433
|
status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
|
|
429
434
|
customerId?: string | undefined;
|
|
@@ -473,6 +478,7 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
473
478
|
sandboxMode?: boolean | null | undefined;
|
|
474
479
|
sandboxSimulated?: boolean | null | undefined;
|
|
475
480
|
notificationEmail?: string | null | undefined;
|
|
481
|
+
isBeneficiary?: boolean | null | undefined;
|
|
476
482
|
scenarioExecutions?: {
|
|
477
483
|
status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
|
|
478
484
|
customerId?: string | undefined;
|
|
@@ -719,6 +725,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
719
725
|
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
720
726
|
ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
721
727
|
notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
728
|
+
isBeneficiary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
722
729
|
createdAt: z.ZodDate;
|
|
723
730
|
updatedAt: z.ZodDate;
|
|
724
731
|
scenarioExecutions: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -899,6 +906,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
899
906
|
sandboxMode?: boolean | null | undefined;
|
|
900
907
|
sandboxSimulated?: boolean | null | undefined;
|
|
901
908
|
notificationEmail?: string | null | undefined;
|
|
909
|
+
isBeneficiary?: boolean | null | undefined;
|
|
902
910
|
scenarioExecutions?: {
|
|
903
911
|
status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
|
|
904
912
|
customerId?: string | undefined;
|
|
@@ -954,6 +962,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
954
962
|
sandboxMode?: boolean | null | undefined;
|
|
955
963
|
sandboxSimulated?: boolean | null | undefined;
|
|
956
964
|
notificationEmail?: string | null | undefined;
|
|
965
|
+
isBeneficiary?: boolean | null | undefined;
|
|
957
966
|
scenarioExecutions?: {
|
|
958
967
|
status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
|
|
959
968
|
customerId?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kyc-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyc-sessions.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAoBxB,eAAO,MAAM,cAAc,oIAQjB,CAAC;AACX,eAAO,MAAM,OAAO,sIAAyB,CAAC;AAC9C,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,CAAC;AAE9C,eAAO,MAAM,WAAW,iEAKd,CAAC;AACX,eAAO,MAAM,SAAS,mEAAsB,CAAC;AAC7C,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,oBAAoB,iIAQvB,CAAC;AACX,eAAO,MAAM,gBAAgB,mIAA+B,CAAC;AAC7D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;EAIpC,CAAC;AACH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"kyc-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyc-sessions.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-59131b87.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-57fbeead.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
@@ -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-1ec7c78f.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-5b5d60ea.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
@@ -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, ds as CoinMarketCapApiResponse, dt as CoinMarketCapFiatId, dr 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-
|
|
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, ds as CoinMarketCapApiResponse, dt as CoinMarketCapFiatId, dr 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-632995b3.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-59131b87.cjs.dev.js');
|
|
8
8
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
9
9
|
var transaction_schema = require('../../dist/transaction.schema-46e46364.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-1ec7c78f.cjs.prod.js');
|
|
8
8
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
9
9
|
var transaction_schema = require('../../dist/transaction.schema-c960b86e.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-632995b3.esm.js';
|
|
4
4
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
5
|
import { g as TransactionTypes, m as TransactionReviewStatuses } from '../../dist/transaction.schema-252bebd5.esm.js';
|
|
6
6
|
import 'nanoid';
|