@nexeraid/identity-schemas 2.1.3-dev → 2.1.4-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/{customers.schema-f25b1ebc.cjs.prod.js → customers.schema-01909f69.cjs.prod.js} +3 -1
- package/dist/{customers.schema-adbbef6a.cjs.dev.js → customers.schema-1cd3be9b.cjs.dev.js} +3 -1
- package/dist/{customers.schema-63c16de2.esm.js → customers.schema-e8da0526.esm.js} +3 -1
- package/dist/declarations/src/providers/sumsub/sumsub-webhooks.schema.d.ts +3 -0
- package/dist/declarations/src/providers/sumsub/sumsub-webhooks.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/{customers.schema-f25b1ebc.cjs.prod.js → customers.schema-01909f69.cjs.prod.js}
RENAMED
|
@@ -2145,7 +2145,9 @@ var SumSubWebhookSchema = zod.z.object({
|
|
|
2145
2145
|
clientId: zod.z.string(),
|
|
2146
2146
|
videoIdentReviewStatus: zod.z.string().nullish(),
|
|
2147
2147
|
// when type is "videoIdentStatusChanged"
|
|
2148
|
-
applicantMemberOf: ApplicantMemberOfSchema.nullish()
|
|
2148
|
+
applicantMemberOf: ApplicantMemberOfSchema.nullish(),
|
|
2149
|
+
// for beneficiaries related to companies
|
|
2150
|
+
sessionId: zod.z.string().nullish() //KYC/KYB session id
|
|
2149
2151
|
});
|
|
2150
2152
|
var BaseApplicantActionSchema = zod.z.object({
|
|
2151
2153
|
applicantId: zod.z.string(),
|
|
@@ -2145,7 +2145,9 @@ var SumSubWebhookSchema = zod.z.object({
|
|
|
2145
2145
|
clientId: zod.z.string(),
|
|
2146
2146
|
videoIdentReviewStatus: zod.z.string().nullish(),
|
|
2147
2147
|
// when type is "videoIdentStatusChanged"
|
|
2148
|
-
applicantMemberOf: ApplicantMemberOfSchema.nullish()
|
|
2148
|
+
applicantMemberOf: ApplicantMemberOfSchema.nullish(),
|
|
2149
|
+
// for beneficiaries related to companies
|
|
2150
|
+
sessionId: zod.z.string().nullish() //KYC/KYB session id
|
|
2149
2151
|
});
|
|
2150
2152
|
var BaseApplicantActionSchema = zod.z.object({
|
|
2151
2153
|
applicantId: zod.z.string(),
|
|
@@ -2143,7 +2143,9 @@ var SumSubWebhookSchema = z.object({
|
|
|
2143
2143
|
clientId: z.string(),
|
|
2144
2144
|
videoIdentReviewStatus: z.string().nullish(),
|
|
2145
2145
|
// when type is "videoIdentStatusChanged"
|
|
2146
|
-
applicantMemberOf: ApplicantMemberOfSchema.nullish()
|
|
2146
|
+
applicantMemberOf: ApplicantMemberOfSchema.nullish(),
|
|
2147
|
+
// for beneficiaries related to companies
|
|
2148
|
+
sessionId: z.string().nullish() //KYC/KYB session id
|
|
2147
2149
|
});
|
|
2148
2150
|
var BaseApplicantActionSchema = z.object({
|
|
2149
2151
|
applicantId: z.string(),
|
|
@@ -56,6 +56,7 @@ export declare const SumSubWebhookSchema: z.ZodObject<{
|
|
|
56
56
|
}, {
|
|
57
57
|
applicantId: string;
|
|
58
58
|
}>, "many">>>;
|
|
59
|
+
sessionId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
59
60
|
}, "strip", z.ZodTypeAny, {
|
|
60
61
|
type: "applicantReviewed" | "applicantCreated" | "applicantPending" | "applicantOnHold" | "applicantPersonalInfoChanged" | "applicantPrechecked" | "applicantDeleted" | "applicantLevelChanged" | "videoIdentStatusChanged" | "applicantReset" | "applicantActionPending" | "applicantActionReviewed" | "applicantActionOnHold" | "applicantTravelRuleStatusChanged" | "applicantWorkflowCompleted" | "applicantTagsChanged";
|
|
61
62
|
externalUserId: string;
|
|
@@ -67,6 +68,7 @@ export declare const SumSubWebhookSchema: z.ZodObject<{
|
|
|
67
68
|
sandboxMode: boolean;
|
|
68
69
|
reviewStatus: "pending" | "init" | "prechecked" | "queued" | "completed" | "onHold";
|
|
69
70
|
clientId: string;
|
|
71
|
+
sessionId?: string | null | undefined;
|
|
70
72
|
reviewResult?: {
|
|
71
73
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | undefined;
|
|
72
74
|
reviewRejectType?: "FINAL" | "RETRY" | undefined;
|
|
@@ -92,6 +94,7 @@ export declare const SumSubWebhookSchema: z.ZodObject<{
|
|
|
92
94
|
sandboxMode: boolean;
|
|
93
95
|
reviewStatus: "pending" | "init" | "prechecked" | "queued" | "completed" | "onHold";
|
|
94
96
|
clientId: string;
|
|
97
|
+
sessionId?: string | null | undefined;
|
|
95
98
|
reviewResult?: {
|
|
96
99
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | undefined;
|
|
97
100
|
reviewRejectType?: "FINAL" | "RETRY" | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sumsub-webhooks.schema.d.ts","sourceRoot":"../../../../../src/providers/sumsub","sources":["sumsub-webhooks.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,aAAa,oZAiBhB,CAAC;AAEX,eAAO,MAAM,WAAW,sZAAwB,CAAC;AACjD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,uBAAuB;;;;;;WAEnC,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"sumsub-webhooks.schema.d.ts","sourceRoot":"../../../../../src/providers/sumsub","sources":["sumsub-webhooks.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,aAAa,oZAiBhB,CAAC;AAEX,eAAO,MAAM,WAAW,sZAAwB,CAAC;AACjD,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEtD,eAAO,MAAM,uBAAuB;;;;;;WAEnC,CAAC;AAEF,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAgB9B,CAAC;AAEH,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAapC,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 customers_schema = require('../../dist/customers.schema-
|
|
5
|
+
var customers_schema = require('../../dist/customers.schema-1cd3be9b.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-7379e297.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 customers_schema = require('../../dist/customers.schema-
|
|
5
|
+
var customers_schema = require('../../dist/customers.schema-01909f69.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-1085a213.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a1 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bJ as ApplicantMemberOfSchema, bY as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bL as BaseApplicantActionSchema, bj as BaseProvider, b_ as BeneficiaryCompanyCustomerClaims, b$ as BeneficiaryCompanyCustomerClaimsArray, bZ as BeneficiaryType, d0 as BeneficiaryVerificationStatus, d1 as BeneficiaryVerificationStatusArray, bg as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bm as BigProvider, u as BitRankRequest, v as BitRankVerified, x as BitRankVerifiedError, w as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aB as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aD as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, az as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ap as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dj as ChainalysisApiError, bc as ChainalysisConfig, bp as ChainalysisProvider, dg as ChainalysisRegisterApiResponse, dk as ChainalysisRegisterResponse, de as ChainalysisRequest, di as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dh as ChainalysisRiskLevel, ag as CoerceDateUTC, g as Coin, c$ as CompanyDocumentMetaData, aV as ComplyAdvantageAmlFullListing, aU as ComplyAdvantageAmlItemSource, aC as ComplyAdvantageCountryFieldSources, aE as ComplyAdvantageDateOfBirthFieldSources, aT as ComplyAdvantageKeyInformation, aO as ComplyAdvantageMedia, b2 as ComplyAdvantageMonitorSearchDataResponse, b4 as ComplyAdvantageMonitorSearchResponse, b3 as ComplyAdvantageMonitorSearchSuccessResponse, b5 as ComplyAdvantageMonitoredSearchUpdate, aA as ComplyAdvantageNationalityFieldSources, bu as ComplyAdvantageProvider, bt as ComplyAdvantageProviderConfigElement, bs as ComplyAdvantageProviderConfigFilters, br as ComplyAdvantageProviderConfigTypes, at as ComplyAdvantageReponseMatchStatus, aq as ComplyAdvantageResponseMatchType, aQ as ComplyAdvantageSearchDataResponse, aP as ComplyAdvantageSearchDataResponseHit, aW as ComplyAdvantageSearchEntitiesDataResponse, aY as ComplyAdvantageSearchEntitiesResponse, aX as ComplyAdvantageSearchEntitiesSuccessResponse, aS as ComplyAdvantageSearchErrorResponse, aZ as ComplyAdvantageSearchRequest, b as ComplyAdvantageSearchResponse, aR as ComplyAdvantageSearchSuccessResponse, a$ as ComplyAdvantageUpdateSearchEntitiesRequest, b1 as ComplyAdvantageUpdateSearchEntitiesResponse, b0 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a_ as ComplyAdvantageUpdateSearchRequest, aM as ComplyAdvantageUser, bA as CreateProviderInput, bB as CreateProviderResponse, aF as CreateSearchInput, cT as CredentialMetadata, cS as CustomerContactInformationOutput, d6 as CustomerDocumentMetaData, d7 as CustomerStatusResults, b9 as DataProviderOptions, ba as DataProviders, bF as DeleteProviderInput, bG as DeleteProviderResponse, V as DocumentIdMetadata, U as DocumentIdType, T as DocumentIdTypes, cn as DocumentMetadataSchema, a0 as EmailMetadata, E as EmailVerificationAnalysisResponse, df as EnhancedChainalysisRequest, Q as File, cR as GetCredentialsOutput, d3 as GetKybSessionInput, d4 as GetKybSessionResponse, cL as GetKycSessionInput, cM as GetKycSessionResponse, cU as GetKycSessionResponseWithCredentialsMetadata, bz as GetProviderResponse, by as GetProvidersResponse, an as HIGH_RISK_TYPES, bW as INDIVIDUAL_BENEFICIARY_RELATIONS, b7 as IdentityProviderOptions, b8 as IdentityProviders, bX as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bf as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bq as IpqualityscoreProvider, cX as KYB_RESULTS, cZ as KYB_SESSION_STATUSES, cV as KYB_STEP_TYPES, cF as KYC_RESULTS, cH as KYC_SESSION_STATUSES, cD as KYC_STEP_TYPES, cY as KybResult, c_ as KybSessionStatus, cW as KybStep, cG as KycResult, cI as KycSessionStatus, cE as KycStep, _ as LivenessMetadata, ao as MEDIUM_RISK_TYPES, aH as MatchStatus, aG as MatchStatuses, aN as MatchTypeDetail, M as MergedProviders, dd as MerkleAddressApiError, dc as MerkleAddressApiResponse, db as MerkleAddressRequest, a as MerkleAddressResponse, da as MerkleBlockChainCodes, d9 as MerkleBlockChainNames, d8 as MerkleBlockChainTypes, bb as MerkleScienceConfig, bo as MerkleScienceProvider, N as NestedSession, bl as NexeraIdKYBProvider, bk as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, $ as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Y as ProofOfAddressDocumentType, X as ProofOfAddressDocumentTypes, Z as ProofOfAddressMetadata, cQ as ProofOfResidenceDocumentType, cP as ProofOfResidenceMetaData, bw as ProviderData, bx as ProviderDataProject, bi as ProviderIntegrationType, bh as ProviderIntegrationTypeOptions, b6 as ProviderWithoutConfig, a9 as RESULT_PARSER_ERROR, L as ReasonCode, K as ReasonCodes, t as RequestProperty, aJ as RiskLevel, aI as RiskLevels, R as RiskSeverity, al as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, aj as SEARCH_FILTER_PEP_TYPE, ah as SEARCH_FILTER_SANCTION_TYPE, au as SEARCH_FILTER_TYPES, a7 as SESSION_NOT_FOUND, ad as STEP_NOT_FOUND, bO as SUMSUB_APPLICANT_TYPES, cg as SUMSUB_COMPANY_BENEFICIARY_GROUP, c5 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cv as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cl as SUMSUB_MEDIA_CONTENT_TYPES, bQ as SUMSUB_REVIEW_ANSWERS, cA as SUMSUB_REVIEW_REJECT_LABELS, cC as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bS as SUMSUB_REVIEW_REJECT_TYPES, c3 as SUMSUB_REVIEW_STATUSES, bM as SUMSUB_STEPS, c1 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bd as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bn as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ax as SearchEntityType, aw as SearchEntityTypes, am as SearchFilterAdverseMediaType, ak as SearchFilterPepType, ai as SearchFilterSanctionType, av as SearchFilterType, ay as SearchFilters, d2 as SelectKybSession, cJ as SelectKycSession, cK as SelectKycSessionStep, F as Session, G as SessionWithoutSteps, z as Status, y as Statuses, a2 as Step, J as StepType, H as StepTypes, bU as SumSubAddress, bV as SumSubApplicantInfo, cp as SumSubApplicantResetSchema, co as SumSubApplicantReviewStatusSchema, cu as SumSubApplicantSchema, bP as SumSubApplicantType, ck as SumSubApplicantVerificationStepSchema, c0 as SumSubCompanyApplicantInfo, ce as SumSubCompanyApplicantSchema, c6 as SumSubDocType, c8 as SumSubFlowLevel, cq as SumSubGenerateExternalWebSdkLinkSchema, cf as SumSubImageId, ca as SumSubImageReviewResultSchema, cd as SumSubIndividualApplicantSchema, cm as SumSubMediaContentType, bR as SumSubReviewAnswer, cB as SumSubReviewRejectLabel, bT as SumSubReviewRejectType, c9 as SumSubReviewResultSchema, c4 as SumSubReviewStatus, cz as SumSubSimilarApplicantsSchema, bN as SumSubStep, cj as SumSubVerificationStepSchema, bK as SumSubWebhookSchema, cc as SumsubApplicantType, cb as SumsubApplicantTypes, ch as SumsubCompanyBeneficiaryGroup, ct as SumsubKybDataSchema, cy as SumsubKybSessionFlowSection, cx as SumsubKybSessionFlowSectionItem, cw as SumsubKybSessionFlowSectionStatus, cs as SumsubKycDataSchema, ci as SumsubStepStatus, cr as SumsubVideoCallData, c2 as SumsubWebhookInternalStatus, bv as SynapsProvider, aa as SynapsSessionErrorResponse, a3 as SynapsSessionEvent, a6 as SynapsSessionRequest, ab as SynapsSessionResponse, ae as SynapsStepErrorResponse, a4 as SynapsStepEvent, ac as SynapsStepRequest, af as SynapsStepResponse, bE as ToggleProviderInput, a8 as UNKNOWN_ERROR, d5 as UpdateKybSessionOutput, cN as UpdateKycSessionOutput, bC as UpdateProviderInput, bD as UpdateProviderResponse, aL as UpdateSearchEntitiesInput, aK as UpdateSearchInput, cO as VideoKycMetaData, bH as WEBHOOK_TYPES, D as WebhookPayload, bI as WebhookType, be as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, ar as mappingMatchTypeToLabel, a5 as typeToHumanReadable } from '../../dist/customers.schema-
|
|
1
|
+
export { a1 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bJ as ApplicantMemberOfSchema, bY as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bL as BaseApplicantActionSchema, bj as BaseProvider, b_ as BeneficiaryCompanyCustomerClaims, b$ as BeneficiaryCompanyCustomerClaimsArray, bZ as BeneficiaryType, d0 as BeneficiaryVerificationStatus, d1 as BeneficiaryVerificationStatusArray, bg as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bm as BigProvider, u as BitRankRequest, v as BitRankVerified, x as BitRankVerifiedError, w as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aB as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aD as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, az as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ap as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dj as ChainalysisApiError, bc as ChainalysisConfig, bp as ChainalysisProvider, dg as ChainalysisRegisterApiResponse, dk as ChainalysisRegisterResponse, de as ChainalysisRequest, di as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dh as ChainalysisRiskLevel, ag as CoerceDateUTC, g as Coin, c$ as CompanyDocumentMetaData, aV as ComplyAdvantageAmlFullListing, aU as ComplyAdvantageAmlItemSource, aC as ComplyAdvantageCountryFieldSources, aE as ComplyAdvantageDateOfBirthFieldSources, aT as ComplyAdvantageKeyInformation, aO as ComplyAdvantageMedia, b2 as ComplyAdvantageMonitorSearchDataResponse, b4 as ComplyAdvantageMonitorSearchResponse, b3 as ComplyAdvantageMonitorSearchSuccessResponse, b5 as ComplyAdvantageMonitoredSearchUpdate, aA as ComplyAdvantageNationalityFieldSources, bu as ComplyAdvantageProvider, bt as ComplyAdvantageProviderConfigElement, bs as ComplyAdvantageProviderConfigFilters, br as ComplyAdvantageProviderConfigTypes, at as ComplyAdvantageReponseMatchStatus, aq as ComplyAdvantageResponseMatchType, aQ as ComplyAdvantageSearchDataResponse, aP as ComplyAdvantageSearchDataResponseHit, aW as ComplyAdvantageSearchEntitiesDataResponse, aY as ComplyAdvantageSearchEntitiesResponse, aX as ComplyAdvantageSearchEntitiesSuccessResponse, aS as ComplyAdvantageSearchErrorResponse, aZ as ComplyAdvantageSearchRequest, b as ComplyAdvantageSearchResponse, aR as ComplyAdvantageSearchSuccessResponse, a$ as ComplyAdvantageUpdateSearchEntitiesRequest, b1 as ComplyAdvantageUpdateSearchEntitiesResponse, b0 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a_ as ComplyAdvantageUpdateSearchRequest, aM as ComplyAdvantageUser, bA as CreateProviderInput, bB as CreateProviderResponse, aF as CreateSearchInput, cT as CredentialMetadata, cS as CustomerContactInformationOutput, d6 as CustomerDocumentMetaData, d7 as CustomerStatusResults, b9 as DataProviderOptions, ba as DataProviders, bF as DeleteProviderInput, bG as DeleteProviderResponse, V as DocumentIdMetadata, U as DocumentIdType, T as DocumentIdTypes, cn as DocumentMetadataSchema, a0 as EmailMetadata, E as EmailVerificationAnalysisResponse, df as EnhancedChainalysisRequest, Q as File, cR as GetCredentialsOutput, d3 as GetKybSessionInput, d4 as GetKybSessionResponse, cL as GetKycSessionInput, cM as GetKycSessionResponse, cU as GetKycSessionResponseWithCredentialsMetadata, bz as GetProviderResponse, by as GetProvidersResponse, an as HIGH_RISK_TYPES, bW as INDIVIDUAL_BENEFICIARY_RELATIONS, b7 as IdentityProviderOptions, b8 as IdentityProviders, bX as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bf as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bq as IpqualityscoreProvider, cX as KYB_RESULTS, cZ as KYB_SESSION_STATUSES, cV as KYB_STEP_TYPES, cF as KYC_RESULTS, cH as KYC_SESSION_STATUSES, cD as KYC_STEP_TYPES, cY as KybResult, c_ as KybSessionStatus, cW as KybStep, cG as KycResult, cI as KycSessionStatus, cE as KycStep, _ as LivenessMetadata, ao as MEDIUM_RISK_TYPES, aH as MatchStatus, aG as MatchStatuses, aN as MatchTypeDetail, M as MergedProviders, dd as MerkleAddressApiError, dc as MerkleAddressApiResponse, db as MerkleAddressRequest, a as MerkleAddressResponse, da as MerkleBlockChainCodes, d9 as MerkleBlockChainNames, d8 as MerkleBlockChainTypes, bb as MerkleScienceConfig, bo as MerkleScienceProvider, N as NestedSession, bl as NexeraIdKYBProvider, bk as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, $ as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Y as ProofOfAddressDocumentType, X as ProofOfAddressDocumentTypes, Z as ProofOfAddressMetadata, cQ as ProofOfResidenceDocumentType, cP as ProofOfResidenceMetaData, bw as ProviderData, bx as ProviderDataProject, bi as ProviderIntegrationType, bh as ProviderIntegrationTypeOptions, b6 as ProviderWithoutConfig, a9 as RESULT_PARSER_ERROR, L as ReasonCode, K as ReasonCodes, t as RequestProperty, aJ as RiskLevel, aI as RiskLevels, R as RiskSeverity, al as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, aj as SEARCH_FILTER_PEP_TYPE, ah as SEARCH_FILTER_SANCTION_TYPE, au as SEARCH_FILTER_TYPES, a7 as SESSION_NOT_FOUND, ad as STEP_NOT_FOUND, bO as SUMSUB_APPLICANT_TYPES, cg as SUMSUB_COMPANY_BENEFICIARY_GROUP, c5 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cv as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cl as SUMSUB_MEDIA_CONTENT_TYPES, bQ as SUMSUB_REVIEW_ANSWERS, cA as SUMSUB_REVIEW_REJECT_LABELS, cC as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bS as SUMSUB_REVIEW_REJECT_TYPES, c3 as SUMSUB_REVIEW_STATUSES, bM as SUMSUB_STEPS, c1 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bd as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bn as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ax as SearchEntityType, aw as SearchEntityTypes, am as SearchFilterAdverseMediaType, ak as SearchFilterPepType, ai as SearchFilterSanctionType, av as SearchFilterType, ay as SearchFilters, d2 as SelectKybSession, cJ as SelectKycSession, cK as SelectKycSessionStep, F as Session, G as SessionWithoutSteps, z as Status, y as Statuses, a2 as Step, J as StepType, H as StepTypes, bU as SumSubAddress, bV as SumSubApplicantInfo, cp as SumSubApplicantResetSchema, co as SumSubApplicantReviewStatusSchema, cu as SumSubApplicantSchema, bP as SumSubApplicantType, ck as SumSubApplicantVerificationStepSchema, c0 as SumSubCompanyApplicantInfo, ce as SumSubCompanyApplicantSchema, c6 as SumSubDocType, c8 as SumSubFlowLevel, cq as SumSubGenerateExternalWebSdkLinkSchema, cf as SumSubImageId, ca as SumSubImageReviewResultSchema, cd as SumSubIndividualApplicantSchema, cm as SumSubMediaContentType, bR as SumSubReviewAnswer, cB as SumSubReviewRejectLabel, bT as SumSubReviewRejectType, c9 as SumSubReviewResultSchema, c4 as SumSubReviewStatus, cz as SumSubSimilarApplicantsSchema, bN as SumSubStep, cj as SumSubVerificationStepSchema, bK as SumSubWebhookSchema, cc as SumsubApplicantType, cb as SumsubApplicantTypes, ch as SumsubCompanyBeneficiaryGroup, ct as SumsubKybDataSchema, cy as SumsubKybSessionFlowSection, cx as SumsubKybSessionFlowSectionItem, cw as SumsubKybSessionFlowSectionStatus, cs as SumsubKycDataSchema, ci as SumsubStepStatus, cr as SumsubVideoCallData, c2 as SumsubWebhookInternalStatus, bv as SynapsProvider, aa as SynapsSessionErrorResponse, a3 as SynapsSessionEvent, a6 as SynapsSessionRequest, ab as SynapsSessionResponse, ae as SynapsStepErrorResponse, a4 as SynapsStepEvent, ac as SynapsStepRequest, af as SynapsStepResponse, bE as ToggleProviderInput, a8 as UNKNOWN_ERROR, d5 as UpdateKybSessionOutput, cN as UpdateKycSessionOutput, bC as UpdateProviderInput, bD as UpdateProviderResponse, aL as UpdateSearchEntitiesInput, aK as UpdateSearchInput, cO as VideoKycMetaData, bH as WEBHOOK_TYPES, D as WebhookPayload, bI as WebhookType, be as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, ar as mappingMatchTypeToLabel, a5 as typeToHumanReadable } from '../../dist/customers.schema-e8da0526.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import '../../dist/identity-api.schema-87fedc5e.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-7379e297.cjs.dev.js');
|
|
7
|
-
var customers_schema = require('../../dist/customers.schema-
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-1cd3be9b.cjs.dev.js');
|
|
8
8
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
|
|
@@ -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-1085a213.cjs.prod.js');
|
|
7
|
-
var customers_schema = require('../../dist/customers.schema-
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-01909f69.cjs.prod.js');
|
|
8
8
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { ae as UuidString, dB as ExternalCustomerId, aq as RiskScoreType, as as CustomerType, ay as CustomerOnboardingLevel, aA as CustomerStatus, ai as ISO3CountryCode, a2 as BlockchainAddress, bC as RuleResultStatus, dU as GenericVerifiableCredentialSchema, e1 as _toArray, e0 as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-87fedc5e.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/customers.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/customers.schema-e8da0526.esm.js';
|
|
4
4
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|