@nexeraid/identity-schemas 2.83.0-dev → 2.85.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-130ae6f8.cjs.dev.cjs → CoinMarketCap.schema-21780389.cjs.dev.cjs} +24 -0
- package/dist/{CoinMarketCap.schema-0ab0f865.esm.mjs → CoinMarketCap.schema-a75dc387.esm.mjs} +21 -1
- package/dist/{CoinMarketCap.schema-34f57bfd.cjs.prod.cjs → CoinMarketCap.schema-f1ad1be0.cjs.prod.cjs} +24 -0
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +539 -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.cjs +5 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +5 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +2 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +2 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +2 -1
package/dist/{CoinMarketCap.schema-130ae6f8.cjs.dev.cjs → CoinMarketCap.schema-21780389.cjs.dev.cjs}
RENAMED
|
@@ -2193,6 +2193,26 @@ var SelfieImageMetaData = zod.z.object({
|
|
|
2193
2193
|
reviewStatus: SumSubReviewAnswer,
|
|
2194
2194
|
verificationMode: vault_schema.VerificationMode
|
|
2195
2195
|
});
|
|
2196
|
+
var ApiErrorResponse = zod.z.object({
|
|
2197
|
+
code: zod.z.string(),
|
|
2198
|
+
message: zod.z.string(),
|
|
2199
|
+
details: zod.z.record(zod.z.any()).optional()
|
|
2200
|
+
});
|
|
2201
|
+
var ApiErrorCommandResponse = zod.z.object({
|
|
2202
|
+
isOk: zod.z.literal(false),
|
|
2203
|
+
data: ApiErrorResponse,
|
|
2204
|
+
timestamp: zod.z.string(),
|
|
2205
|
+
requestId: zod.z.string().optional()
|
|
2206
|
+
});
|
|
2207
|
+
var ApiSuccessCommandResponse = function ApiSuccessCommandResponse(dataSchema) {
|
|
2208
|
+
return zod.z.object({
|
|
2209
|
+
isOk: zod.z.literal(true),
|
|
2210
|
+
data: dataSchema,
|
|
2211
|
+
timestamp: zod.z.string(),
|
|
2212
|
+
requestId: zod.z.string().optional()
|
|
2213
|
+
});
|
|
2214
|
+
};
|
|
2215
|
+
var GetKycSessionStatusOutput = zod.z.discriminatedUnion("isOk", [ApiErrorCommandResponse, ApiSuccessCommandResponse(zod.z.array(GetKycSessionResponseWithCredentialsMetadata))]);
|
|
2196
2216
|
|
|
2197
2217
|
var KYB_STEP_TYPES = ["Started"];
|
|
2198
2218
|
var KybStep = zod.z["enum"](KYB_STEP_TYPES);
|
|
@@ -2394,6 +2414,9 @@ var CoinMarketCapApiResponse = zod.z.object({
|
|
|
2394
2414
|
});
|
|
2395
2415
|
|
|
2396
2416
|
exports.AMLMetadata = AMLMetadata;
|
|
2417
|
+
exports.ApiErrorCommandResponse = ApiErrorCommandResponse;
|
|
2418
|
+
exports.ApiErrorResponse = ApiErrorResponse;
|
|
2419
|
+
exports.ApiSuccessCommandResponse = ApiSuccessCommandResponse;
|
|
2397
2420
|
exports.ApplicantMemberOfSchema = ApplicantMemberOfSchema;
|
|
2398
2421
|
exports.BENEFICIARY_TYPES = BENEFICIARY_TYPES;
|
|
2399
2422
|
exports.BaseApplicantActionSchema = BaseApplicantActionSchema;
|
|
@@ -2494,6 +2517,7 @@ exports.GetKybSessionResponse = GetKybSessionResponse;
|
|
|
2494
2517
|
exports.GetKycSessionInput = GetKycSessionInput;
|
|
2495
2518
|
exports.GetKycSessionResponse = GetKycSessionResponse;
|
|
2496
2519
|
exports.GetKycSessionResponseWithCredentialsMetadata = GetKycSessionResponseWithCredentialsMetadata;
|
|
2520
|
+
exports.GetKycSessionStatusOutput = GetKycSessionStatusOutput;
|
|
2497
2521
|
exports.GetProviderResponse = GetProviderResponse;
|
|
2498
2522
|
exports.GetProvidersResponse = GetProvidersResponse;
|
|
2499
2523
|
exports.HIGH_RISK_TYPES = HIGH_RISK_TYPES;
|
package/dist/{CoinMarketCap.schema-0ab0f865.esm.mjs → CoinMarketCap.schema-a75dc387.esm.mjs}
RENAMED
|
@@ -2191,6 +2191,26 @@ var SelfieImageMetaData = z.object({
|
|
|
2191
2191
|
reviewStatus: SumSubReviewAnswer,
|
|
2192
2192
|
verificationMode: VerificationMode
|
|
2193
2193
|
});
|
|
2194
|
+
var ApiErrorResponse = z.object({
|
|
2195
|
+
code: z.string(),
|
|
2196
|
+
message: z.string(),
|
|
2197
|
+
details: z.record(z.any()).optional()
|
|
2198
|
+
});
|
|
2199
|
+
var ApiErrorCommandResponse = z.object({
|
|
2200
|
+
isOk: z.literal(false),
|
|
2201
|
+
data: ApiErrorResponse,
|
|
2202
|
+
timestamp: z.string(),
|
|
2203
|
+
requestId: z.string().optional()
|
|
2204
|
+
});
|
|
2205
|
+
var ApiSuccessCommandResponse = function ApiSuccessCommandResponse(dataSchema) {
|
|
2206
|
+
return z.object({
|
|
2207
|
+
isOk: z.literal(true),
|
|
2208
|
+
data: dataSchema,
|
|
2209
|
+
timestamp: z.string(),
|
|
2210
|
+
requestId: z.string().optional()
|
|
2211
|
+
});
|
|
2212
|
+
};
|
|
2213
|
+
var GetKycSessionStatusOutput = z.discriminatedUnion("isOk", [ApiErrorCommandResponse, ApiSuccessCommandResponse(z.array(GetKycSessionResponseWithCredentialsMetadata))]);
|
|
2194
2214
|
|
|
2195
2215
|
var KYB_STEP_TYPES = ["Started"];
|
|
2196
2216
|
var KybStep = z["enum"](KYB_STEP_TYPES);
|
|
@@ -2391,4 +2411,4 @@ var CoinMarketCapApiResponse = z.object({
|
|
|
2391
2411
|
status: Status
|
|
2392
2412
|
});
|
|
2393
2413
|
|
|
2394
|
-
export { SynapsSessionResponse as $, ProofOfAddressDocumentType as A, BigCryptoChain as B, ComplyAdvantageSearchResponse as C, DocumentIdTypes as D, EmailVerificationAnalysisResponse as E, File as F, ProofOfAddressMetadata as G, PhoneMetadata as H, IpQualityServiceAnalysisResponse as I, EmailMetadata as J, AMLMetadata as K, LivenessMetadata as L, MergedProviders as M, NestedSession as N, Step as O, PhoneVerificationAnalysisResponse as P, SynapsSessionEvent as Q, RequestProperty as R, Statuses as S, SynapsStepEvent as T, typeToHumanReadable as U, SynapsSessionRequest as V, WrappedIpQualityServiceErrorResponse as W, SESSION_NOT_FOUND as X, UNKNOWN_ERROR as Y, RESULT_PARSER_ERROR as Z, SynapsSessionErrorResponse as _, ComplyAdvantageSearchErrorResponse as a, ChainalysisConfig as a$, SynapsStepRequest as a0, STEP_NOT_FOUND as a1, SynapsStepErrorResponse as a2, SynapsStepResponse as a3, CoerceDateUTC as a4, SEARCH_FILTER_SANCTION_TYPE as a5, SearchFilterSanctionType as a6, SEARCH_FILTER_PEP_TYPE as a7, SearchFilterPepType as a8, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as a9, ComplyAdvantageUser as aA, MatchTypeDetail as aB, ComplyAdvantageMedia as aC, ComplyAdvantageSearchDataResponseHit as aD, ComplyAdvantageSearchDataResponse as aE, ComplyAdvantageKeyInformation as aF, ComplyAdvantageAmlItemSource as aG, ComplyAdvantageAmlFullListing as aH, ComplyAdvantageSearchEntitiesDataResponse as aI, ComplyAdvantageSearchEntitiesSuccessResponse as aJ, ComplyAdvantageSearchEntitiesResponse as aK, ComplyAdvantageSearchRequest as aL, ComplyAdvantageSearchRequests as aM, ComplyAdvantageUpdateSearchRequest as aN, ComplyAdvantageUpdateSearchEntitiesRequest as aO, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as aP, ComplyAdvantageUpdateSearchEntitiesResponse as aQ, ComplyAdvantageMonitorSearchDataResponse as aR, ComplyAdvantageMonitorSearchSuccessResponse as aS, ComplyAdvantageMonitorSearchResponse as aT, ComplyAdvantageMonitoredSearchUpdate as aU, ProviderWithoutConfig as aV, IdentityProviderOptions as aW, IdentityProvider as aX, DataProviderOptions as aY, DataProvider as aZ, MerkleScienceConfig as a_, SearchFilterAdverseMediaType as aa, HIGH_RISK_TYPES as ab, MEDIUM_RISK_TYPES as ac, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as ad, ComplyAdvantageResponseMatchType as ae, mappingMatchTypeToLabel as af, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as ag, ComplyAdvantageReponseMatchStatus as ah, SEARCH_FILTER_TYPES as ai, SearchFilterType as aj, SearchEntityTypes as ak, SearchEntityType as al, SearchFilters as am, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as an, ComplyAdvantageNationalityFieldSources as ao, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as ap, ComplyAdvantageCountryFieldSources as aq, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as ar, ComplyAdvantageDateOfBirthFieldSources as as, CreateSearchInput as at, MatchStatuses as au, MatchStatus as av, RiskLevels as aw, RiskLevel as ax, UpdateSearchInput as ay, UpdateSearchEntitiesInput as az, ComplyAdvantageSearchSuccessResponse as b, SumsubApplicantTypes as b$, ScorechainConfig as b0, WorkflowsScorechainConfig as b1, IpQualityConfig as b2, BigConfig as b3, ProviderIntegrationTypeOptions as b4, ProviderIntegrationType as b5, BaseProvider as b6, NexeraIdSSIDProvider as b7, NexeraIdKYBProvider as b8, BigProvider as b9, SumSubStep as bA, SUMSUB_APPLICANT_TYPES as bB, SumSubApplicantType as bC, SUMSUB_REVIEW_ANSWERS as bD, SumSubReviewAnswer as bE, SUMSUB_REVIEW_REJECT_TYPES as bF, SumSubReviewRejectType as bG, SumSubAddress as bH, SumSubApplicantInfo as bI, INDIVIDUAL_BENEFICIARY_RELATIONS as bJ, IndividualBeneficiaryRelation as bK, BENEFICIARY_TYPES as bL, BeneficiaryType as bM, BeneficiaryCompanyCustomerClaims as bN, BeneficiaryCompanyCustomerClaimsArray as bO, SumSubCompanyApplicantInfo as bP, SUMSUB_WEBHOOK_INTERNAL_STATUS as bQ, SumsubWebhookInternalStatus as bR, SUMSUB_REVIEW_STATUSES as bS, SumSubReviewStatus as bT, SUMSUB_DOC_TYPES as bU, SumSubDocType as bV, SUMSUB_FLOW_LEVEL as bW, SumSubFlowLevel as bX, SumSubRequiredIdDoc as bY, SumSubReviewResultSchema as bZ, SumSubImageReviewResultSchema as b_, ScorechainProvider as ba, MerkleScienceProvider as bb, ChainalysisProvider as bc, IpqualityscoreProvider as bd, ComplyAdvantageProviderConfigTypes as be, ComplyAdvantageProviderConfigFilters as bf, ComplyAdvantageProviderConfigElement as bg, ComplyAdvantageProvider as bh, SynapsProvider as bi, ProviderData as bj, ProviderDataProject as bk, GetProvidersResponse as bl, GetProviderResponse as bm, CreateProviderInput as bn, CreateProviderResponse as bo, UpdateProviderInput as bp, UpdateProviderResponse as bq, ToggleProviderInput as br, DeleteProviderInput as bs, DeleteProviderResponse as bt, WEBHOOK_TYPES as bu, WebhookType as bv, ApplicantMemberOfSchema as bw, SumSubWebhookSchema as bx, BaseApplicantActionSchema as by, SUMSUB_STEPS as bz, IpQualityAnalysisRequest as c,
|
|
2414
|
+
export { SynapsSessionResponse as $, ProofOfAddressDocumentType as A, BigCryptoChain as B, ComplyAdvantageSearchResponse as C, DocumentIdTypes as D, EmailVerificationAnalysisResponse as E, File as F, ProofOfAddressMetadata as G, PhoneMetadata as H, IpQualityServiceAnalysisResponse as I, EmailMetadata as J, AMLMetadata as K, LivenessMetadata as L, MergedProviders as M, NestedSession as N, Step as O, PhoneVerificationAnalysisResponse as P, SynapsSessionEvent as Q, RequestProperty as R, Statuses as S, SynapsStepEvent as T, typeToHumanReadable as U, SynapsSessionRequest as V, WrappedIpQualityServiceErrorResponse as W, SESSION_NOT_FOUND as X, UNKNOWN_ERROR as Y, RESULT_PARSER_ERROR as Z, SynapsSessionErrorResponse as _, ComplyAdvantageSearchErrorResponse as a, ChainalysisConfig as a$, SynapsStepRequest as a0, STEP_NOT_FOUND as a1, SynapsStepErrorResponse as a2, SynapsStepResponse as a3, CoerceDateUTC as a4, SEARCH_FILTER_SANCTION_TYPE as a5, SearchFilterSanctionType as a6, SEARCH_FILTER_PEP_TYPE as a7, SearchFilterPepType as a8, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as a9, ComplyAdvantageUser as aA, MatchTypeDetail as aB, ComplyAdvantageMedia as aC, ComplyAdvantageSearchDataResponseHit as aD, ComplyAdvantageSearchDataResponse as aE, ComplyAdvantageKeyInformation as aF, ComplyAdvantageAmlItemSource as aG, ComplyAdvantageAmlFullListing as aH, ComplyAdvantageSearchEntitiesDataResponse as aI, ComplyAdvantageSearchEntitiesSuccessResponse as aJ, ComplyAdvantageSearchEntitiesResponse as aK, ComplyAdvantageSearchRequest as aL, ComplyAdvantageSearchRequests as aM, ComplyAdvantageUpdateSearchRequest as aN, ComplyAdvantageUpdateSearchEntitiesRequest as aO, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as aP, ComplyAdvantageUpdateSearchEntitiesResponse as aQ, ComplyAdvantageMonitorSearchDataResponse as aR, ComplyAdvantageMonitorSearchSuccessResponse as aS, ComplyAdvantageMonitorSearchResponse as aT, ComplyAdvantageMonitoredSearchUpdate as aU, ProviderWithoutConfig as aV, IdentityProviderOptions as aW, IdentityProvider as aX, DataProviderOptions as aY, DataProvider as aZ, MerkleScienceConfig as a_, SearchFilterAdverseMediaType as aa, HIGH_RISK_TYPES as ab, MEDIUM_RISK_TYPES as ac, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as ad, ComplyAdvantageResponseMatchType as ae, mappingMatchTypeToLabel as af, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as ag, ComplyAdvantageReponseMatchStatus as ah, SEARCH_FILTER_TYPES as ai, SearchFilterType as aj, SearchEntityTypes as ak, SearchEntityType as al, SearchFilters as am, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as an, ComplyAdvantageNationalityFieldSources as ao, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as ap, ComplyAdvantageCountryFieldSources as aq, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as ar, ComplyAdvantageDateOfBirthFieldSources as as, CreateSearchInput as at, MatchStatuses as au, MatchStatus as av, RiskLevels as aw, RiskLevel as ax, UpdateSearchInput as ay, UpdateSearchEntitiesInput as az, ComplyAdvantageSearchSuccessResponse as b, SumsubApplicantTypes as b$, ScorechainConfig as b0, WorkflowsScorechainConfig as b1, IpQualityConfig as b2, BigConfig as b3, ProviderIntegrationTypeOptions as b4, ProviderIntegrationType as b5, BaseProvider as b6, NexeraIdSSIDProvider as b7, NexeraIdKYBProvider as b8, BigProvider as b9, SumSubStep as bA, SUMSUB_APPLICANT_TYPES as bB, SumSubApplicantType as bC, SUMSUB_REVIEW_ANSWERS as bD, SumSubReviewAnswer as bE, SUMSUB_REVIEW_REJECT_TYPES as bF, SumSubReviewRejectType as bG, SumSubAddress as bH, SumSubApplicantInfo as bI, INDIVIDUAL_BENEFICIARY_RELATIONS as bJ, IndividualBeneficiaryRelation as bK, BENEFICIARY_TYPES as bL, BeneficiaryType as bM, BeneficiaryCompanyCustomerClaims as bN, BeneficiaryCompanyCustomerClaimsArray as bO, SumSubCompanyApplicantInfo as bP, SUMSUB_WEBHOOK_INTERNAL_STATUS as bQ, SumsubWebhookInternalStatus as bR, SUMSUB_REVIEW_STATUSES as bS, SumSubReviewStatus as bT, SUMSUB_DOC_TYPES as bU, SumSubDocType as bV, SUMSUB_FLOW_LEVEL as bW, SumSubFlowLevel as bX, SumSubRequiredIdDoc as bY, SumSubReviewResultSchema as bZ, SumSubImageReviewResultSchema as b_, ScorechainProvider as ba, MerkleScienceProvider as bb, ChainalysisProvider as bc, IpqualityscoreProvider as bd, ComplyAdvantageProviderConfigTypes as be, ComplyAdvantageProviderConfigFilters as bf, ComplyAdvantageProviderConfigElement as bg, ComplyAdvantageProvider as bh, SynapsProvider as bi, ProviderData as bj, ProviderDataProject as bk, GetProvidersResponse as bl, GetProviderResponse as bm, CreateProviderInput as bn, CreateProviderResponse as bo, UpdateProviderInput as bp, UpdateProviderResponse as bq, ToggleProviderInput as br, DeleteProviderInput as bs, DeleteProviderResponse as bt, WEBHOOK_TYPES as bu, WebhookType as bv, ApplicantMemberOfSchema as bw, SumSubWebhookSchema as bx, BaseApplicantActionSchema as by, SUMSUB_STEPS as bz, IpQualityAnalysisRequest as c, BeneficiaryVerificationStatusArray as c$, SumsubApplicantType as c0, SumSubIndividualApplicantSchema as c1, SumSubCompanyApplicantSchema as c2, SumSubImageId as c3, SUMSUB_COMPANY_BENEFICIARY_GROUP as c4, SumsubCompanyBeneficiaryGroup as c5, SumsubStepStatus as c6, SumSubVerificationStepSchema as c7, SumSubApplicantVerificationStepSchema as c8, SUMSUB_MEDIA_CONTENT_TYPES as c9, SelectKycSessionStep as cA, SelectKycSession as cB, SelectKycSessionWithCompletedSteps as cC, GetKycSessionInput as cD, GetKycSessionResponse as cE, UpdateKycSessionOutput as cF, VideoKycMetaData as cG, ProofOfResidenceMetaData as cH, ProofOfResidenceDocumentType as cI, GetCredentialsOutput as cJ, CustomerContactInformationOutput as cK, CredentialMetadata as cL, GetKycSessionResponseWithCredentialsMetadata as cM, IDImageMetaData as cN, SelfieImageMetaData as cO, ApiErrorResponse as cP, ApiErrorCommandResponse as cQ, ApiSuccessCommandResponse as cR, GetKycSessionStatusOutput as cS, KYB_STEP_TYPES as cT, KybStep as cU, KYB_RESULTS as cV, KybResult as cW, KYB_SESSION_STATUSES as cX, KybSessionStatus as cY, CompanyDocumentMetaData as cZ, BeneficiaryVerificationStatus as c_, SumSubMediaContentType as ca, DocumentMetadataSchema as cb, SumSubApplicantReviewStatusSchema as cc, SumSubApplicantResetSchema as cd, SumSubGenerateExternalWebSdkLinkSchema as ce, SumsubVideoCallData as cf, SumsubKycDataSchema as cg, SumsubKybDataSchema as ch, SumSubApplicantSchema as ci, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cj, SumsubKybSessionFlowSectionStatus as ck, SumsubKybSessionFlowSectionItem as cl, SumsubKybSessionFlowSection as cm, SumSubSimilarApplicantsSchema as cn, SUMSUB_REVIEW_REJECT_LABELS as co, SumSubReviewRejectLabel as cp, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cq, KYC_STEP_TYPES as cr, KycStep as cs, KycStepStatuses as ct, KycStepStatus as cu, KYC_RESULTS as cv, KycResult as cw, KYC_SESSION_STATUSES as cx, KycSessionStatus as cy, EmailVerificationResponse as cz, IpQualityAnalysisResponse as d, SelectKybSession as d0, GetKybSessionInput as d1, GetKybSessionResponse as d2, UpdateKybSessionOutput as d3, CustomerDocumentMetaData as d4, CustomerStatusResults as d5, MerkleBlockChainTypes as d6, MerkleBlockChainName as d7, MerkleBlockChainCodes as d8, MerkleAddressRequest as d9, MerkleAddressApiResponse as da, MerkleAddressApiError as db, MerkleAddressResponse as dc, ChainalysisRequest as dd, ChainalysisRegisterApiResponse as de, ChainalysisRiskLevel as df, ChainalysisErrorCodes as dg, ChainalysisRiskAssessmentApiResponse as dh, ChainalysisApiError as di, ChainalysisRegisterResponse as dj, ChainalysisRiskAssessmentResponse as dk, CoinMarketCapRequest as dl, CoinMarketCapQuote as dm, CoinMarketCapQuotes as dn, CoinMarketCapApiResponse as dp, CoinMarketCapFiatId as dq, IpQualityServiceAnalysis as e, IpQualityServiceErrorResponse as f, BigPropertiesLiteral as g, BigProperties as h, BigProperty as i, BigCSErrorCodes as j, BitRankRequest as k, BitRankVerified as l, BitRankVerifiedErrorResponse as m, BitRankVerifiedError as n, BitRankVerifiedResponse as o, Status$2 as p, WebhookPayload as q, Session as r, SessionWithoutSteps as s, StepTypes as t, StepType as u, ReasonCodes as v, ReasonCode as w, DocumentIdType as x, DocumentIdMetadata as y, ProofOfAddressDocumentTypes as z };
|
|
@@ -2193,6 +2193,26 @@ var SelfieImageMetaData = zod.z.object({
|
|
|
2193
2193
|
reviewStatus: SumSubReviewAnswer,
|
|
2194
2194
|
verificationMode: vault_schema.VerificationMode
|
|
2195
2195
|
});
|
|
2196
|
+
var ApiErrorResponse = zod.z.object({
|
|
2197
|
+
code: zod.z.string(),
|
|
2198
|
+
message: zod.z.string(),
|
|
2199
|
+
details: zod.z.record(zod.z.any()).optional()
|
|
2200
|
+
});
|
|
2201
|
+
var ApiErrorCommandResponse = zod.z.object({
|
|
2202
|
+
isOk: zod.z.literal(false),
|
|
2203
|
+
data: ApiErrorResponse,
|
|
2204
|
+
timestamp: zod.z.string(),
|
|
2205
|
+
requestId: zod.z.string().optional()
|
|
2206
|
+
});
|
|
2207
|
+
var ApiSuccessCommandResponse = function ApiSuccessCommandResponse(dataSchema) {
|
|
2208
|
+
return zod.z.object({
|
|
2209
|
+
isOk: zod.z.literal(true),
|
|
2210
|
+
data: dataSchema,
|
|
2211
|
+
timestamp: zod.z.string(),
|
|
2212
|
+
requestId: zod.z.string().optional()
|
|
2213
|
+
});
|
|
2214
|
+
};
|
|
2215
|
+
var GetKycSessionStatusOutput = zod.z.discriminatedUnion("isOk", [ApiErrorCommandResponse, ApiSuccessCommandResponse(zod.z.array(GetKycSessionResponseWithCredentialsMetadata))]);
|
|
2196
2216
|
|
|
2197
2217
|
var KYB_STEP_TYPES = ["Started"];
|
|
2198
2218
|
var KybStep = zod.z["enum"](KYB_STEP_TYPES);
|
|
@@ -2394,6 +2414,9 @@ var CoinMarketCapApiResponse = zod.z.object({
|
|
|
2394
2414
|
});
|
|
2395
2415
|
|
|
2396
2416
|
exports.AMLMetadata = AMLMetadata;
|
|
2417
|
+
exports.ApiErrorCommandResponse = ApiErrorCommandResponse;
|
|
2418
|
+
exports.ApiErrorResponse = ApiErrorResponse;
|
|
2419
|
+
exports.ApiSuccessCommandResponse = ApiSuccessCommandResponse;
|
|
2397
2420
|
exports.ApplicantMemberOfSchema = ApplicantMemberOfSchema;
|
|
2398
2421
|
exports.BENEFICIARY_TYPES = BENEFICIARY_TYPES;
|
|
2399
2422
|
exports.BaseApplicantActionSchema = BaseApplicantActionSchema;
|
|
@@ -2494,6 +2517,7 @@ exports.GetKybSessionResponse = GetKybSessionResponse;
|
|
|
2494
2517
|
exports.GetKycSessionInput = GetKycSessionInput;
|
|
2495
2518
|
exports.GetKycSessionResponse = GetKycSessionResponse;
|
|
2496
2519
|
exports.GetKycSessionResponseWithCredentialsMetadata = GetKycSessionResponseWithCredentialsMetadata;
|
|
2520
|
+
exports.GetKycSessionStatusOutput = GetKycSessionStatusOutput;
|
|
2497
2521
|
exports.GetProviderResponse = GetProviderResponse;
|
|
2498
2522
|
exports.GetProvidersResponse = GetProvidersResponse;
|
|
2499
2523
|
exports.HIGH_RISK_TYPES = HIGH_RISK_TYPES;
|
|
@@ -1315,4 +1315,543 @@ export declare const SelfieImageMetaData: z.ZodObject<{
|
|
|
1315
1315
|
credentialId: string;
|
|
1316
1316
|
}>;
|
|
1317
1317
|
export type SelfieImageMetaData = z.infer<typeof SelfieImageMetaData>;
|
|
1318
|
+
export declare const ApiErrorResponse: z.ZodObject<{
|
|
1319
|
+
code: z.ZodString;
|
|
1320
|
+
message: z.ZodString;
|
|
1321
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1322
|
+
}, "strip", z.ZodTypeAny, {
|
|
1323
|
+
code: string;
|
|
1324
|
+
message: string;
|
|
1325
|
+
details?: Record<string, any> | undefined;
|
|
1326
|
+
}, {
|
|
1327
|
+
code: string;
|
|
1328
|
+
message: string;
|
|
1329
|
+
details?: Record<string, any> | undefined;
|
|
1330
|
+
}>;
|
|
1331
|
+
export type ApiErrorResponse = z.infer<typeof ApiErrorResponse>;
|
|
1332
|
+
export declare const ApiErrorCommandResponse: z.ZodObject<{
|
|
1333
|
+
isOk: z.ZodLiteral<false>;
|
|
1334
|
+
data: z.ZodObject<{
|
|
1335
|
+
code: z.ZodString;
|
|
1336
|
+
message: z.ZodString;
|
|
1337
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1338
|
+
}, "strip", z.ZodTypeAny, {
|
|
1339
|
+
code: string;
|
|
1340
|
+
message: string;
|
|
1341
|
+
details?: Record<string, any> | undefined;
|
|
1342
|
+
}, {
|
|
1343
|
+
code: string;
|
|
1344
|
+
message: string;
|
|
1345
|
+
details?: Record<string, any> | undefined;
|
|
1346
|
+
}>;
|
|
1347
|
+
timestamp: z.ZodString;
|
|
1348
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1349
|
+
}, "strip", z.ZodTypeAny, {
|
|
1350
|
+
data: {
|
|
1351
|
+
code: string;
|
|
1352
|
+
message: string;
|
|
1353
|
+
details?: Record<string, any> | undefined;
|
|
1354
|
+
};
|
|
1355
|
+
timestamp: string;
|
|
1356
|
+
isOk: false;
|
|
1357
|
+
requestId?: string | undefined;
|
|
1358
|
+
}, {
|
|
1359
|
+
data: {
|
|
1360
|
+
code: string;
|
|
1361
|
+
message: string;
|
|
1362
|
+
details?: Record<string, any> | undefined;
|
|
1363
|
+
};
|
|
1364
|
+
timestamp: string;
|
|
1365
|
+
isOk: false;
|
|
1366
|
+
requestId?: string | undefined;
|
|
1367
|
+
}>;
|
|
1368
|
+
export declare const ApiSuccessCommandResponse: <T extends z.ZodType>(dataSchema: T) => z.ZodObject<{
|
|
1369
|
+
isOk: z.ZodLiteral<true>;
|
|
1370
|
+
data: T;
|
|
1371
|
+
timestamp: z.ZodString;
|
|
1372
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1373
|
+
}, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
|
|
1374
|
+
isOk: z.ZodLiteral<true>;
|
|
1375
|
+
data: T;
|
|
1376
|
+
timestamp: z.ZodString;
|
|
1377
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1378
|
+
}>, any> extends infer T_1 ? { [k in keyof T_1]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<{
|
|
1379
|
+
isOk: z.ZodLiteral<true>;
|
|
1380
|
+
data: T;
|
|
1381
|
+
timestamp: z.ZodString;
|
|
1382
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1383
|
+
}>, any>[k]; } : never, z.baseObjectInputType<{
|
|
1384
|
+
isOk: z.ZodLiteral<true>;
|
|
1385
|
+
data: T;
|
|
1386
|
+
timestamp: z.ZodString;
|
|
1387
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1388
|
+
}> extends infer T_2 ? { [k_1 in keyof T_2]: z.baseObjectInputType<{
|
|
1389
|
+
isOk: z.ZodLiteral<true>;
|
|
1390
|
+
data: T;
|
|
1391
|
+
timestamp: z.ZodString;
|
|
1392
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1393
|
+
}>[k_1]; } : never>;
|
|
1394
|
+
export declare const GetKycSessionStatusOutput: z.ZodDiscriminatedUnion<"isOk", [z.ZodObject<{
|
|
1395
|
+
isOk: z.ZodLiteral<false>;
|
|
1396
|
+
data: z.ZodObject<{
|
|
1397
|
+
code: z.ZodString;
|
|
1398
|
+
message: z.ZodString;
|
|
1399
|
+
details: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
1400
|
+
}, "strip", z.ZodTypeAny, {
|
|
1401
|
+
code: string;
|
|
1402
|
+
message: string;
|
|
1403
|
+
details?: Record<string, any> | undefined;
|
|
1404
|
+
}, {
|
|
1405
|
+
code: string;
|
|
1406
|
+
message: string;
|
|
1407
|
+
details?: Record<string, any> | undefined;
|
|
1408
|
+
}>;
|
|
1409
|
+
timestamp: z.ZodString;
|
|
1410
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1411
|
+
}, "strip", z.ZodTypeAny, {
|
|
1412
|
+
data: {
|
|
1413
|
+
code: string;
|
|
1414
|
+
message: string;
|
|
1415
|
+
details?: Record<string, any> | undefined;
|
|
1416
|
+
};
|
|
1417
|
+
timestamp: string;
|
|
1418
|
+
isOk: false;
|
|
1419
|
+
requestId?: string | undefined;
|
|
1420
|
+
}, {
|
|
1421
|
+
data: {
|
|
1422
|
+
code: string;
|
|
1423
|
+
message: string;
|
|
1424
|
+
details?: Record<string, any> | undefined;
|
|
1425
|
+
};
|
|
1426
|
+
timestamp: string;
|
|
1427
|
+
isOk: false;
|
|
1428
|
+
requestId?: string | undefined;
|
|
1429
|
+
}>, z.ZodObject<{
|
|
1430
|
+
isOk: z.ZodLiteral<true>;
|
|
1431
|
+
data: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1432
|
+
id: z.ZodString;
|
|
1433
|
+
customerId: z.ZodString;
|
|
1434
|
+
identityId: z.ZodOptional<z.ZodNullable<z.ZodType<`identity_${string}`, z.ZodTypeDef, `identity_${string}`>>>;
|
|
1435
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>>>;
|
|
1436
|
+
blockchainNamespace: z.ZodOptional<z.ZodNullable<z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano", "bip122", "xrpl", "dash", "tron", "avax"]>>>;
|
|
1437
|
+
sandboxSimulated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1438
|
+
cmsProjectId: z.ZodString;
|
|
1439
|
+
result: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Passed", "ToBeManuallyChecked", "Rejected", "Retry"]>>>;
|
|
1440
|
+
reviewAnswer: z.ZodOptional<z.ZodNullable<z.ZodEnum<["GREEN", "RED", "YELLOW"]>>>;
|
|
1441
|
+
reviewRejectType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FINAL", "RETRY"]>>>;
|
|
1442
|
+
sandboxMode: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1443
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
1444
|
+
ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1445
|
+
notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1446
|
+
isBeneficiary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1447
|
+
createdAt: z.ZodDate;
|
|
1448
|
+
updatedAt: z.ZodDate;
|
|
1449
|
+
scenarioExecutions: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1450
|
+
customerId: z.ZodOptional<z.ZodString>;
|
|
1451
|
+
scenarioExecutionId: z.ZodOptional<z.ZodString>;
|
|
1452
|
+
status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "skipped", "error", "unknown"]>>;
|
|
1453
|
+
results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
1454
|
+
objectType: z.ZodEnum<["PrivacyPreservingMonitoring", "IndividualMonitoring", "TransactionMonitoring", "TFHE", "OffChainZKP", "ChallengeQuery"]>;
|
|
1455
|
+
objectId: z.ZodString;
|
|
1456
|
+
name: z.ZodString;
|
|
1457
|
+
address: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>>>;
|
|
1458
|
+
result: z.ZodObject<z.objectUtil.extendShape<{
|
|
1459
|
+
result: z.ZodObject<{
|
|
1460
|
+
is_valid: z.ZodBoolean;
|
|
1461
|
+
reasons: z.ZodArray<z.ZodString, "many">;
|
|
1462
|
+
}, "strip", z.ZodTypeAny, {
|
|
1463
|
+
is_valid: boolean;
|
|
1464
|
+
reasons: string[];
|
|
1465
|
+
}, {
|
|
1466
|
+
is_valid: boolean;
|
|
1467
|
+
reasons: string[];
|
|
1468
|
+
}>;
|
|
1469
|
+
}, {
|
|
1470
|
+
executionId: z.ZodString;
|
|
1471
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1472
|
+
result: {
|
|
1473
|
+
is_valid: boolean;
|
|
1474
|
+
reasons: string[];
|
|
1475
|
+
};
|
|
1476
|
+
executionId: string;
|
|
1477
|
+
}, {
|
|
1478
|
+
result: {
|
|
1479
|
+
is_valid: boolean;
|
|
1480
|
+
reasons: string[];
|
|
1481
|
+
};
|
|
1482
|
+
executionId: string;
|
|
1483
|
+
}>;
|
|
1484
|
+
executionId: z.ZodString;
|
|
1485
|
+
scenarioId: z.ZodString;
|
|
1486
|
+
}, "strip", z.ZodTypeAny, {
|
|
1487
|
+
name: string;
|
|
1488
|
+
result: {
|
|
1489
|
+
result: {
|
|
1490
|
+
is_valid: boolean;
|
|
1491
|
+
reasons: string[];
|
|
1492
|
+
};
|
|
1493
|
+
executionId: string;
|
|
1494
|
+
};
|
|
1495
|
+
executionId: string;
|
|
1496
|
+
scenarioId: string;
|
|
1497
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1498
|
+
objectId: string;
|
|
1499
|
+
address?: string | null | undefined;
|
|
1500
|
+
}, {
|
|
1501
|
+
name: string;
|
|
1502
|
+
result: {
|
|
1503
|
+
result: {
|
|
1504
|
+
is_valid: boolean;
|
|
1505
|
+
reasons: string[];
|
|
1506
|
+
};
|
|
1507
|
+
executionId: string;
|
|
1508
|
+
};
|
|
1509
|
+
executionId: string;
|
|
1510
|
+
scenarioId: string;
|
|
1511
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1512
|
+
objectId: string;
|
|
1513
|
+
address?: string | null | undefined;
|
|
1514
|
+
}>, "many">, "many">>;
|
|
1515
|
+
}, "strip", z.ZodTypeAny, {
|
|
1516
|
+
status?: "valid" | "unknown" | "not-valid" | "skipped" | "error" | undefined;
|
|
1517
|
+
customerId?: string | undefined;
|
|
1518
|
+
scenarioExecutionId?: string | undefined;
|
|
1519
|
+
results?: {
|
|
1520
|
+
name: string;
|
|
1521
|
+
result: {
|
|
1522
|
+
result: {
|
|
1523
|
+
is_valid: boolean;
|
|
1524
|
+
reasons: string[];
|
|
1525
|
+
};
|
|
1526
|
+
executionId: string;
|
|
1527
|
+
};
|
|
1528
|
+
executionId: string;
|
|
1529
|
+
scenarioId: string;
|
|
1530
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1531
|
+
objectId: string;
|
|
1532
|
+
address?: string | null | undefined;
|
|
1533
|
+
}[][] | undefined;
|
|
1534
|
+
}, {
|
|
1535
|
+
status?: "valid" | "unknown" | "not-valid" | "skipped" | "error" | undefined;
|
|
1536
|
+
customerId?: string | undefined;
|
|
1537
|
+
scenarioExecutionId?: string | undefined;
|
|
1538
|
+
results?: {
|
|
1539
|
+
name: string;
|
|
1540
|
+
result: {
|
|
1541
|
+
result: {
|
|
1542
|
+
is_valid: boolean;
|
|
1543
|
+
reasons: string[];
|
|
1544
|
+
};
|
|
1545
|
+
executionId: string;
|
|
1546
|
+
};
|
|
1547
|
+
executionId: string;
|
|
1548
|
+
scenarioId: string;
|
|
1549
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1550
|
+
objectId: string;
|
|
1551
|
+
address?: string | null | undefined;
|
|
1552
|
+
}[][] | undefined;
|
|
1553
|
+
}>>>;
|
|
1554
|
+
workflowId: z.ZodNullable<z.ZodString>;
|
|
1555
|
+
workflowSessionId: z.ZodNullable<z.ZodString>;
|
|
1556
|
+
workspaceId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1557
|
+
organizationId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1558
|
+
}, {
|
|
1559
|
+
stepsCompleted: z.ZodArray<z.ZodObject<{
|
|
1560
|
+
id: z.ZodString;
|
|
1561
|
+
type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo", "CredentialsClaimed"]>;
|
|
1562
|
+
customerId: z.ZodString;
|
|
1563
|
+
kycSessionId: z.ZodString;
|
|
1564
|
+
createdAt: z.ZodDate;
|
|
1565
|
+
}, "strip", z.ZodTypeAny, {
|
|
1566
|
+
id: string;
|
|
1567
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
|
|
1568
|
+
createdAt: Date;
|
|
1569
|
+
customerId: string;
|
|
1570
|
+
kycSessionId: string;
|
|
1571
|
+
}, {
|
|
1572
|
+
id: string;
|
|
1573
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
|
|
1574
|
+
createdAt: Date;
|
|
1575
|
+
customerId: string;
|
|
1576
|
+
kycSessionId: string;
|
|
1577
|
+
}>, "many">;
|
|
1578
|
+
customerStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"]>>>;
|
|
1579
|
+
sumSubReviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1580
|
+
IDENTITY: z.ZodArray<z.ZodEnum<["FORGERY", "DOCUMENT_TEMPLATE", "LOW_QUALITY", "SPAM", "NOT_DOCUMENT", "SELFIE_MISMATCH", "ID_INVALID", "FOREIGNER", "DUPLICATE", "BAD_AVATAR", "WRONG_USER_REGION", "INCOMPLETE_DOCUMENT", "BLACKLIST", "BLOCKLIST", "UNSATISFACTORY_PHOTOS", "DOCUMENT_PAGE_MISSING", "DOCUMENT_DAMAGED", "REGULATIONS_VIOLATIONS", "INCONSISTENT_PROFILE", "PROBLEMATIC_APPLICANT_DATA", "ADDITIONAL_DOCUMENT_REQUIRED", "AGE_REQUIREMENT_MISMATCH", "EXPERIENCE_REQUIREMENT_MISMATCH", "CRIMINAL", "WRONG_ADDRESS", "GRAPHIC_EDITOR", "DOCUMENT_DEPRIVED", "COMPROMISED_PERSONS", "PEP", "ADVERSE_MEDIA", "FRAUDULENT_PATTERNS", "SANCTIONS", "NOT_ALL_CHECKS_COMPLETED", "FRONT_SIDE_MISSING", "BACK_SIDE_MISSING", "SCREENSHOTS", "BLACK_AND_WHITE", "INCOMPATIBLE_LANGUAGE", "EXPIRATION_DATE", "UNFILLED_ID", "BAD_SELFIE", "BAD_VIDEO_SELFIE", "BAD_FACE_MATCHING", "BAD_PROOF_OF_IDENTITY", "BAD_PROOF_OF_ADDRESS", "BAD_PROOF_OF_PAYMENT", "SELFIE_WITH_PAPER", "FRAUDULENT_LIVENESS", "OTHER", "REQUESTED_DATA_MISMATCH", "OK", "COMPANY_NOT_DEFINED_STRUCTURE", "COMPANY_NOT_DEFINED_BENEFICIARIES", "COMPANY_NOT_VALIDATED_BENEFICIARIES", "COMPANY_NOT_DEFINED_REPRESENTATIVES", "COMPANY_NOT_VALIDATED_REPRESENTATIVES", "APPLICANT_INTERRUPTED_INTERVIEW", "DOCUMENT_MISSING", "UNSUITABLE_ENV", "CONNECTION_INTERRUPTED", "UNSUPPORTED_LANGUAGE", "THIRD_PARTY_INVOLVED", "CHECK_UNAVAILABLE", "INCORRECT_SOCIAL_NUMBER"]>, "many">;
|
|
1581
|
+
SELFIE: z.ZodArray<z.ZodEnum<["FORGERY", "DOCUMENT_TEMPLATE", "LOW_QUALITY", "SPAM", "NOT_DOCUMENT", "SELFIE_MISMATCH", "ID_INVALID", "FOREIGNER", "DUPLICATE", "BAD_AVATAR", "WRONG_USER_REGION", "INCOMPLETE_DOCUMENT", "BLACKLIST", "BLOCKLIST", "UNSATISFACTORY_PHOTOS", "DOCUMENT_PAGE_MISSING", "DOCUMENT_DAMAGED", "REGULATIONS_VIOLATIONS", "INCONSISTENT_PROFILE", "PROBLEMATIC_APPLICANT_DATA", "ADDITIONAL_DOCUMENT_REQUIRED", "AGE_REQUIREMENT_MISMATCH", "EXPERIENCE_REQUIREMENT_MISMATCH", "CRIMINAL", "WRONG_ADDRESS", "GRAPHIC_EDITOR", "DOCUMENT_DEPRIVED", "COMPROMISED_PERSONS", "PEP", "ADVERSE_MEDIA", "FRAUDULENT_PATTERNS", "SANCTIONS", "NOT_ALL_CHECKS_COMPLETED", "FRONT_SIDE_MISSING", "BACK_SIDE_MISSING", "SCREENSHOTS", "BLACK_AND_WHITE", "INCOMPATIBLE_LANGUAGE", "EXPIRATION_DATE", "UNFILLED_ID", "BAD_SELFIE", "BAD_VIDEO_SELFIE", "BAD_FACE_MATCHING", "BAD_PROOF_OF_IDENTITY", "BAD_PROOF_OF_ADDRESS", "BAD_PROOF_OF_PAYMENT", "SELFIE_WITH_PAPER", "FRAUDULENT_LIVENESS", "OTHER", "REQUESTED_DATA_MISMATCH", "OK", "COMPANY_NOT_DEFINED_STRUCTURE", "COMPANY_NOT_DEFINED_BENEFICIARIES", "COMPANY_NOT_VALIDATED_BENEFICIARIES", "COMPANY_NOT_DEFINED_REPRESENTATIVES", "COMPANY_NOT_VALIDATED_REPRESENTATIVES", "APPLICANT_INTERRUPTED_INTERVIEW", "DOCUMENT_MISSING", "UNSUITABLE_ENV", "CONNECTION_INTERRUPTED", "UNSUPPORTED_LANGUAGE", "THIRD_PARTY_INVOLVED", "CHECK_UNAVAILABLE", "INCORRECT_SOCIAL_NUMBER"]>, "many">;
|
|
1582
|
+
}, "strip", z.ZodTypeAny, {
|
|
1583
|
+
SELFIE: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1584
|
+
IDENTITY: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1585
|
+
}, {
|
|
1586
|
+
SELFIE: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1587
|
+
IDENTITY: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1588
|
+
}>>>;
|
|
1589
|
+
}>, {
|
|
1590
|
+
credentialsMetadata: z.ZodArray<z.ZodObject<{
|
|
1591
|
+
type: z.ZodPipeline<z.ZodEffects<z.ZodString, string, string>, z.ZodEnum<["AMLScreeningsResults", "ProofOfResidence", "SelfieImage", "IDImage", "IDInformation", "IDInformationTfhe", "ID3", "IDScan", "IDScanSelfie", "IDScanPassport"]>>;
|
|
1592
|
+
imageId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1593
|
+
}, "strip", z.ZodTypeAny, {
|
|
1594
|
+
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "IDInformationTfhe" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
1595
|
+
imageId?: number | null | undefined;
|
|
1596
|
+
}, {
|
|
1597
|
+
type: string;
|
|
1598
|
+
imageId?: number | null | undefined;
|
|
1599
|
+
}>, "many">;
|
|
1600
|
+
applicantName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1601
|
+
applicationDate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1602
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1603
|
+
id: string;
|
|
1604
|
+
createdAt: Date;
|
|
1605
|
+
updatedAt: Date;
|
|
1606
|
+
customerId: string;
|
|
1607
|
+
workflowId: string | null;
|
|
1608
|
+
workflowSessionId: string | null;
|
|
1609
|
+
cmsProjectId: string;
|
|
1610
|
+
stepsCompleted: {
|
|
1611
|
+
id: string;
|
|
1612
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
|
|
1613
|
+
createdAt: Date;
|
|
1614
|
+
customerId: string;
|
|
1615
|
+
kycSessionId: string;
|
|
1616
|
+
}[];
|
|
1617
|
+
credentialsMetadata: {
|
|
1618
|
+
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "IDInformationTfhe" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
1619
|
+
imageId?: number | null | undefined;
|
|
1620
|
+
}[];
|
|
1621
|
+
status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
|
|
1622
|
+
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
1623
|
+
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
1624
|
+
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
1625
|
+
address?: string | null | undefined;
|
|
1626
|
+
organizationId?: string | null | undefined;
|
|
1627
|
+
workspaceId?: string | null | undefined;
|
|
1628
|
+
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bip122" | "xrpl" | "dash" | "tron" | "avax" | null | undefined;
|
|
1629
|
+
identityId?: `identity_${string}` | null | undefined;
|
|
1630
|
+
ip?: string | null | undefined;
|
|
1631
|
+
sandboxMode?: boolean | null | undefined;
|
|
1632
|
+
sandboxSimulated?: boolean | null | undefined;
|
|
1633
|
+
notificationEmail?: string | null | undefined;
|
|
1634
|
+
isBeneficiary?: boolean | null | undefined;
|
|
1635
|
+
scenarioExecutions?: {
|
|
1636
|
+
status?: "valid" | "unknown" | "not-valid" | "skipped" | "error" | undefined;
|
|
1637
|
+
customerId?: string | undefined;
|
|
1638
|
+
scenarioExecutionId?: string | undefined;
|
|
1639
|
+
results?: {
|
|
1640
|
+
name: string;
|
|
1641
|
+
result: {
|
|
1642
|
+
result: {
|
|
1643
|
+
is_valid: boolean;
|
|
1644
|
+
reasons: string[];
|
|
1645
|
+
};
|
|
1646
|
+
executionId: string;
|
|
1647
|
+
};
|
|
1648
|
+
executionId: string;
|
|
1649
|
+
scenarioId: string;
|
|
1650
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1651
|
+
objectId: string;
|
|
1652
|
+
address?: string | null | undefined;
|
|
1653
|
+
}[][] | undefined;
|
|
1654
|
+
} | null | undefined;
|
|
1655
|
+
customerStatus?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
1656
|
+
sumSubReviewResult?: {
|
|
1657
|
+
SELFIE: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1658
|
+
IDENTITY: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1659
|
+
} | null | undefined;
|
|
1660
|
+
applicantName?: string | null | undefined;
|
|
1661
|
+
applicationDate?: string | null | undefined;
|
|
1662
|
+
}, {
|
|
1663
|
+
id: string;
|
|
1664
|
+
createdAt: Date;
|
|
1665
|
+
updatedAt: Date;
|
|
1666
|
+
customerId: string;
|
|
1667
|
+
workflowId: string | null;
|
|
1668
|
+
workflowSessionId: string | null;
|
|
1669
|
+
cmsProjectId: string;
|
|
1670
|
+
stepsCompleted: {
|
|
1671
|
+
id: string;
|
|
1672
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
|
|
1673
|
+
createdAt: Date;
|
|
1674
|
+
customerId: string;
|
|
1675
|
+
kycSessionId: string;
|
|
1676
|
+
}[];
|
|
1677
|
+
credentialsMetadata: {
|
|
1678
|
+
type: string;
|
|
1679
|
+
imageId?: number | null | undefined;
|
|
1680
|
+
}[];
|
|
1681
|
+
status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
|
|
1682
|
+
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
1683
|
+
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
1684
|
+
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
1685
|
+
address?: string | null | undefined;
|
|
1686
|
+
organizationId?: string | null | undefined;
|
|
1687
|
+
workspaceId?: string | null | undefined;
|
|
1688
|
+
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bip122" | "xrpl" | "dash" | "tron" | "avax" | null | undefined;
|
|
1689
|
+
identityId?: `identity_${string}` | null | undefined;
|
|
1690
|
+
ip?: string | null | undefined;
|
|
1691
|
+
sandboxMode?: boolean | null | undefined;
|
|
1692
|
+
sandboxSimulated?: boolean | null | undefined;
|
|
1693
|
+
notificationEmail?: string | null | undefined;
|
|
1694
|
+
isBeneficiary?: boolean | null | undefined;
|
|
1695
|
+
scenarioExecutions?: {
|
|
1696
|
+
status?: "valid" | "unknown" | "not-valid" | "skipped" | "error" | undefined;
|
|
1697
|
+
customerId?: string | undefined;
|
|
1698
|
+
scenarioExecutionId?: string | undefined;
|
|
1699
|
+
results?: {
|
|
1700
|
+
name: string;
|
|
1701
|
+
result: {
|
|
1702
|
+
result: {
|
|
1703
|
+
is_valid: boolean;
|
|
1704
|
+
reasons: string[];
|
|
1705
|
+
};
|
|
1706
|
+
executionId: string;
|
|
1707
|
+
};
|
|
1708
|
+
executionId: string;
|
|
1709
|
+
scenarioId: string;
|
|
1710
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1711
|
+
objectId: string;
|
|
1712
|
+
address?: string | null | undefined;
|
|
1713
|
+
}[][] | undefined;
|
|
1714
|
+
} | null | undefined;
|
|
1715
|
+
customerStatus?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
1716
|
+
sumSubReviewResult?: {
|
|
1717
|
+
SELFIE: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1718
|
+
IDENTITY: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1719
|
+
} | null | undefined;
|
|
1720
|
+
applicantName?: string | null | undefined;
|
|
1721
|
+
applicationDate?: string | null | undefined;
|
|
1722
|
+
}>, "many">;
|
|
1723
|
+
timestamp: z.ZodString;
|
|
1724
|
+
requestId: z.ZodOptional<z.ZodString>;
|
|
1725
|
+
}, "strip", z.ZodTypeAny, {
|
|
1726
|
+
data: {
|
|
1727
|
+
id: string;
|
|
1728
|
+
createdAt: Date;
|
|
1729
|
+
updatedAt: Date;
|
|
1730
|
+
customerId: string;
|
|
1731
|
+
workflowId: string | null;
|
|
1732
|
+
workflowSessionId: string | null;
|
|
1733
|
+
cmsProjectId: string;
|
|
1734
|
+
stepsCompleted: {
|
|
1735
|
+
id: string;
|
|
1736
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
|
|
1737
|
+
createdAt: Date;
|
|
1738
|
+
customerId: string;
|
|
1739
|
+
kycSessionId: string;
|
|
1740
|
+
}[];
|
|
1741
|
+
credentialsMetadata: {
|
|
1742
|
+
type: "AMLScreeningsResults" | "ProofOfResidence" | "SelfieImage" | "IDImage" | "IDInformation" | "IDInformationTfhe" | "ID3" | "IDScan" | "IDScanSelfie" | "IDScanPassport";
|
|
1743
|
+
imageId?: number | null | undefined;
|
|
1744
|
+
}[];
|
|
1745
|
+
status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
|
|
1746
|
+
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
1747
|
+
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
1748
|
+
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
1749
|
+
address?: string | null | undefined;
|
|
1750
|
+
organizationId?: string | null | undefined;
|
|
1751
|
+
workspaceId?: string | null | undefined;
|
|
1752
|
+
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bip122" | "xrpl" | "dash" | "tron" | "avax" | null | undefined;
|
|
1753
|
+
identityId?: `identity_${string}` | null | undefined;
|
|
1754
|
+
ip?: string | null | undefined;
|
|
1755
|
+
sandboxMode?: boolean | null | undefined;
|
|
1756
|
+
sandboxSimulated?: boolean | null | undefined;
|
|
1757
|
+
notificationEmail?: string | null | undefined;
|
|
1758
|
+
isBeneficiary?: boolean | null | undefined;
|
|
1759
|
+
scenarioExecutions?: {
|
|
1760
|
+
status?: "valid" | "unknown" | "not-valid" | "skipped" | "error" | undefined;
|
|
1761
|
+
customerId?: string | undefined;
|
|
1762
|
+
scenarioExecutionId?: string | undefined;
|
|
1763
|
+
results?: {
|
|
1764
|
+
name: string;
|
|
1765
|
+
result: {
|
|
1766
|
+
result: {
|
|
1767
|
+
is_valid: boolean;
|
|
1768
|
+
reasons: string[];
|
|
1769
|
+
};
|
|
1770
|
+
executionId: string;
|
|
1771
|
+
};
|
|
1772
|
+
executionId: string;
|
|
1773
|
+
scenarioId: string;
|
|
1774
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1775
|
+
objectId: string;
|
|
1776
|
+
address?: string | null | undefined;
|
|
1777
|
+
}[][] | undefined;
|
|
1778
|
+
} | null | undefined;
|
|
1779
|
+
customerStatus?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
1780
|
+
sumSubReviewResult?: {
|
|
1781
|
+
SELFIE: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1782
|
+
IDENTITY: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1783
|
+
} | null | undefined;
|
|
1784
|
+
applicantName?: string | null | undefined;
|
|
1785
|
+
applicationDate?: string | null | undefined;
|
|
1786
|
+
}[];
|
|
1787
|
+
timestamp: string;
|
|
1788
|
+
isOk: true;
|
|
1789
|
+
requestId?: string | undefined;
|
|
1790
|
+
}, {
|
|
1791
|
+
data: {
|
|
1792
|
+
id: string;
|
|
1793
|
+
createdAt: Date;
|
|
1794
|
+
updatedAt: Date;
|
|
1795
|
+
customerId: string;
|
|
1796
|
+
workflowId: string | null;
|
|
1797
|
+
workflowSessionId: string | null;
|
|
1798
|
+
cmsProjectId: string;
|
|
1799
|
+
stepsCompleted: {
|
|
1800
|
+
id: string;
|
|
1801
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
|
|
1802
|
+
createdAt: Date;
|
|
1803
|
+
customerId: string;
|
|
1804
|
+
kycSessionId: string;
|
|
1805
|
+
}[];
|
|
1806
|
+
credentialsMetadata: {
|
|
1807
|
+
type: string;
|
|
1808
|
+
imageId?: number | null | undefined;
|
|
1809
|
+
}[];
|
|
1810
|
+
status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
|
|
1811
|
+
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
1812
|
+
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
1813
|
+
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
1814
|
+
address?: string | null | undefined;
|
|
1815
|
+
organizationId?: string | null | undefined;
|
|
1816
|
+
workspaceId?: string | null | undefined;
|
|
1817
|
+
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bip122" | "xrpl" | "dash" | "tron" | "avax" | null | undefined;
|
|
1818
|
+
identityId?: `identity_${string}` | null | undefined;
|
|
1819
|
+
ip?: string | null | undefined;
|
|
1820
|
+
sandboxMode?: boolean | null | undefined;
|
|
1821
|
+
sandboxSimulated?: boolean | null | undefined;
|
|
1822
|
+
notificationEmail?: string | null | undefined;
|
|
1823
|
+
isBeneficiary?: boolean | null | undefined;
|
|
1824
|
+
scenarioExecutions?: {
|
|
1825
|
+
status?: "valid" | "unknown" | "not-valid" | "skipped" | "error" | undefined;
|
|
1826
|
+
customerId?: string | undefined;
|
|
1827
|
+
scenarioExecutionId?: string | undefined;
|
|
1828
|
+
results?: {
|
|
1829
|
+
name: string;
|
|
1830
|
+
result: {
|
|
1831
|
+
result: {
|
|
1832
|
+
is_valid: boolean;
|
|
1833
|
+
reasons: string[];
|
|
1834
|
+
};
|
|
1835
|
+
executionId: string;
|
|
1836
|
+
};
|
|
1837
|
+
executionId: string;
|
|
1838
|
+
scenarioId: string;
|
|
1839
|
+
objectType: "PrivacyPreservingMonitoring" | "IndividualMonitoring" | "TransactionMonitoring" | "TFHE" | "OffChainZKP" | "ChallengeQuery";
|
|
1840
|
+
objectId: string;
|
|
1841
|
+
address?: string | null | undefined;
|
|
1842
|
+
}[][] | undefined;
|
|
1843
|
+
} | null | undefined;
|
|
1844
|
+
customerStatus?: "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status" | null | undefined;
|
|
1845
|
+
sumSubReviewResult?: {
|
|
1846
|
+
SELFIE: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1847
|
+
IDENTITY: ("FORGERY" | "DOCUMENT_TEMPLATE" | "LOW_QUALITY" | "SPAM" | "NOT_DOCUMENT" | "SELFIE_MISMATCH" | "ID_INVALID" | "FOREIGNER" | "DUPLICATE" | "BAD_AVATAR" | "WRONG_USER_REGION" | "INCOMPLETE_DOCUMENT" | "BLACKLIST" | "BLOCKLIST" | "UNSATISFACTORY_PHOTOS" | "DOCUMENT_PAGE_MISSING" | "DOCUMENT_DAMAGED" | "REGULATIONS_VIOLATIONS" | "INCONSISTENT_PROFILE" | "PROBLEMATIC_APPLICANT_DATA" | "ADDITIONAL_DOCUMENT_REQUIRED" | "AGE_REQUIREMENT_MISMATCH" | "EXPERIENCE_REQUIREMENT_MISMATCH" | "CRIMINAL" | "WRONG_ADDRESS" | "GRAPHIC_EDITOR" | "DOCUMENT_DEPRIVED" | "COMPROMISED_PERSONS" | "PEP" | "ADVERSE_MEDIA" | "FRAUDULENT_PATTERNS" | "SANCTIONS" | "NOT_ALL_CHECKS_COMPLETED" | "FRONT_SIDE_MISSING" | "BACK_SIDE_MISSING" | "SCREENSHOTS" | "BLACK_AND_WHITE" | "INCOMPATIBLE_LANGUAGE" | "EXPIRATION_DATE" | "UNFILLED_ID" | "BAD_SELFIE" | "BAD_VIDEO_SELFIE" | "BAD_FACE_MATCHING" | "BAD_PROOF_OF_IDENTITY" | "BAD_PROOF_OF_ADDRESS" | "BAD_PROOF_OF_PAYMENT" | "SELFIE_WITH_PAPER" | "FRAUDULENT_LIVENESS" | "OTHER" | "REQUESTED_DATA_MISMATCH" | "OK" | "COMPANY_NOT_DEFINED_STRUCTURE" | "COMPANY_NOT_DEFINED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "INCORRECT_SOCIAL_NUMBER")[];
|
|
1848
|
+
} | null | undefined;
|
|
1849
|
+
applicantName?: string | null | undefined;
|
|
1850
|
+
applicationDate?: string | null | undefined;
|
|
1851
|
+
}[];
|
|
1852
|
+
timestamp: string;
|
|
1853
|
+
isOk: true;
|
|
1854
|
+
requestId?: string | undefined;
|
|
1855
|
+
}>]>;
|
|
1856
|
+
export type GetKycSessionStatusOutput = z.infer<typeof GetKycSessionStatusOutput>;
|
|
1318
1857
|
//# sourceMappingURL=kyc-sessions.schema.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kyc-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyc-sessions.schema.ts"],"names":[],"mappings":"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"}
|
|
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;AA0BxB,eAAO,MAAM,cAAc,0JASjB,CAAC;AACX,eAAO,MAAM,OAAO,4JAAyB,CAAC;AAC9C,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,CAAC;AAE9C,eAAO,MAAM,eAAe,8DAKlB,CAAC;AACX,eAAO,MAAM,aAAa,gEAA0B,CAAC;AACrD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAE1D,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,oBAAoB;;;;;;;;;;;;;;;;;;EAM/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAuB3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE7C,CAAC;AACH,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CACtD,OAAO,kCAAkC,CAC1C,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;EAE7B,CAAC;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShC,CAAC;AACH,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAE1E,eAAO,MAAM,sBAAsB,aAAa,CAAC;AACjD,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAE5E,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIjC,CAAC;AAEL,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAEhF,eAAO,MAAM,4BAA4B,kGACI,CAAC;AAC9C,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAK/B,CAAC;AAEH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM3C,CAAC;AAEH,MAAM,MAAM,gCAAgC,GAAG,CAAC,CAAC,KAAK,CACpD,OAAO,gCAAgC,CACxC,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,4CAA4C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKrD,CAAC;AACL,MAAM,MAAM,4CAA4C,GAAG,CAAC,CAAC,KAAK,CAChE,OAAO,4CAA4C,CACpD,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;EA0B1B,CAAC;AACH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAE9D,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;EAK9B,CAAC;AACH,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAI3B,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKlC,CAAC;AAEH,eAAO,MAAM,yBAAyB,GAAI,CAAC,SAAS,CAAC,CAAC,OAAO,cAAc,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;mBAMxE,CAAC;AAEL,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAKpC,CAAC;AAEH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,yBAAyB,CACjC,CAAC"}
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-b879e107.cjs.dev.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-21780389.cjs.dev.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
@@ -11272,6 +11272,9 @@ exports.WorkflowsScoringAnalysisRequest = vault_schema.WorkflowsScoringAnalysisR
|
|
|
11272
11272
|
exports.compareRiskLevels = vault_schema.compareRiskLevels;
|
|
11273
11273
|
exports.getRiskLevelByRiskScore = vault_schema.getRiskLevelByRiskScore;
|
|
11274
11274
|
exports.AMLMetadata = CoinMarketCap_schema.AMLMetadata;
|
|
11275
|
+
exports.ApiErrorCommandResponse = CoinMarketCap_schema.ApiErrorCommandResponse;
|
|
11276
|
+
exports.ApiErrorResponse = CoinMarketCap_schema.ApiErrorResponse;
|
|
11277
|
+
exports.ApiSuccessCommandResponse = CoinMarketCap_schema.ApiSuccessCommandResponse;
|
|
11275
11278
|
exports.ApplicantMemberOfSchema = CoinMarketCap_schema.ApplicantMemberOfSchema;
|
|
11276
11279
|
exports.BENEFICIARY_TYPES = CoinMarketCap_schema.BENEFICIARY_TYPES;
|
|
11277
11280
|
exports.BaseApplicantActionSchema = CoinMarketCap_schema.BaseApplicantActionSchema;
|
|
@@ -11372,6 +11375,7 @@ exports.GetKybSessionResponse = CoinMarketCap_schema.GetKybSessionResponse;
|
|
|
11372
11375
|
exports.GetKycSessionInput = CoinMarketCap_schema.GetKycSessionInput;
|
|
11373
11376
|
exports.GetKycSessionResponse = CoinMarketCap_schema.GetKycSessionResponse;
|
|
11374
11377
|
exports.GetKycSessionResponseWithCredentialsMetadata = CoinMarketCap_schema.GetKycSessionResponseWithCredentialsMetadata;
|
|
11378
|
+
exports.GetKycSessionStatusOutput = CoinMarketCap_schema.GetKycSessionStatusOutput;
|
|
11375
11379
|
exports.GetProviderResponse = CoinMarketCap_schema.GetProviderResponse;
|
|
11376
11380
|
exports.GetProvidersResponse = CoinMarketCap_schema.GetProvidersResponse;
|
|
11377
11381
|
exports.HIGH_RISK_TYPES = CoinMarketCap_schema.HIGH_RISK_TYPES;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-ba3a058a.cjs.prod.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f1ad1be0.cjs.prod.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
@@ -11272,6 +11272,9 @@ exports.WorkflowsScoringAnalysisRequest = vault_schema.WorkflowsScoringAnalysisR
|
|
|
11272
11272
|
exports.compareRiskLevels = vault_schema.compareRiskLevels;
|
|
11273
11273
|
exports.getRiskLevelByRiskScore = vault_schema.getRiskLevelByRiskScore;
|
|
11274
11274
|
exports.AMLMetadata = CoinMarketCap_schema.AMLMetadata;
|
|
11275
|
+
exports.ApiErrorCommandResponse = CoinMarketCap_schema.ApiErrorCommandResponse;
|
|
11276
|
+
exports.ApiErrorResponse = CoinMarketCap_schema.ApiErrorResponse;
|
|
11277
|
+
exports.ApiSuccessCommandResponse = CoinMarketCap_schema.ApiSuccessCommandResponse;
|
|
11275
11278
|
exports.ApplicantMemberOfSchema = CoinMarketCap_schema.ApplicantMemberOfSchema;
|
|
11276
11279
|
exports.BENEFICIARY_TYPES = CoinMarketCap_schema.BENEFICIARY_TYPES;
|
|
11277
11280
|
exports.BaseApplicantActionSchema = CoinMarketCap_schema.BaseApplicantActionSchema;
|
|
@@ -11372,6 +11375,7 @@ exports.GetKybSessionResponse = CoinMarketCap_schema.GetKybSessionResponse;
|
|
|
11372
11375
|
exports.GetKycSessionInput = CoinMarketCap_schema.GetKycSessionInput;
|
|
11373
11376
|
exports.GetKycSessionResponse = CoinMarketCap_schema.GetKycSessionResponse;
|
|
11374
11377
|
exports.GetKycSessionResponseWithCredentialsMetadata = CoinMarketCap_schema.GetKycSessionResponseWithCredentialsMetadata;
|
|
11378
|
+
exports.GetKycSessionStatusOutput = CoinMarketCap_schema.GetKycSessionStatusOutput;
|
|
11375
11379
|
exports.GetProviderResponse = CoinMarketCap_schema.GetProviderResponse;
|
|
11376
11380
|
exports.GetProvidersResponse = CoinMarketCap_schema.GetProvidersResponse;
|
|
11377
11381
|
exports.HIGH_RISK_TYPES = CoinMarketCap_schema.HIGH_RISK_TYPES;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { ej as ANALYSIS_TYPES, ek as AnalysisType, eu as Coin, ez as EntityRiskDefaultsMap, ey as EntityRiskDefaultsValues, eG as GetActiveBlockchains, eF as GetActiveBlockchainsRequest, eH as GetActiveBlockchainsResponse, eK as GetAddressAnalysis, eI as GetAddressAnalysisRequest, eL as GetAddressAnalysisResponse, eo as NonMinimalScorechainBlockchain, el as OBJECT_TYPES, em as ObjectType, eM as RawScorechainResult, ex as RiskExplanation, ev as RiskSeverity, eC as ScorechainAnalysis, en as ScorechainBlockchain, ep as ScorechainBlockchainToNamespace, eJ as ScorechainEntity, ew as ScorechainEntityType, eB as ScorechainError, eA as ScorechainErrorResponse, eN as ScorechainRiskToRiskLevel, er as ScorechainWalletRiskLevel, eq as ScorechainWalletRiskLevels, eE as ScoringAnalysisApiRequest, eg as ScoringAnalysisRequest, eD as ScoringAnalysisResponse, eh as WorkflowsScoringAnalysisRequest, et as compareRiskLevels, es as getRiskLevelByRiskScore } from '../../dist/vault.schema-3e68499e.esm.mjs';
|
|
2
|
-
export { K as AMLMetadata, bw as ApplicantMemberOfSchema, bL as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bN as BeneficiaryCompanyCustomerClaims, bO as BeneficiaryCompanyCustomerClaimsArray, bM as BeneficiaryType,
|
|
2
|
+
export { K as AMLMetadata, cQ as ApiErrorCommandResponse, cP as ApiErrorResponse, cR as ApiSuccessCommandResponse, bw as ApplicantMemberOfSchema, bL as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bN as BeneficiaryCompanyCustomerClaims, bO as BeneficiaryCompanyCustomerClaimsArray, bM as BeneficiaryType, c_ as BeneficiaryVerificationStatus, c$ as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b3 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, b9 as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, ap as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, ar as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, an as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ag as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ad as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, di as ChainalysisApiError, a$ as ChainalysisConfig, dg as ChainalysisErrorCodes, bc as ChainalysisProvider, de as ChainalysisRegisterApiResponse, dj as ChainalysisRegisterResponse, dd as ChainalysisRequest, dh as ChainalysisRiskAssessmentApiResponse, dk as ChainalysisRiskAssessmentResponse, df as ChainalysisRiskLevel, a4 as CoerceDateUTC, dp as CoinMarketCapApiResponse, dq as CoinMarketCapFiatId, dm as CoinMarketCapQuote, dn as CoinMarketCapQuotes, dl as CoinMarketCapRequest, cZ as CompanyDocumentMetaData, aH as ComplyAdvantageAmlFullListing, aG as ComplyAdvantageAmlItemSource, aq as ComplyAdvantageCountryFieldSources, as as ComplyAdvantageDateOfBirthFieldSources, aF as ComplyAdvantageKeyInformation, aC as ComplyAdvantageMedia, aR as ComplyAdvantageMonitorSearchDataResponse, aT as ComplyAdvantageMonitorSearchResponse, aS as ComplyAdvantageMonitorSearchSuccessResponse, aU as ComplyAdvantageMonitoredSearchUpdate, ao as ComplyAdvantageNationalityFieldSources, bh as ComplyAdvantageProvider, bg as ComplyAdvantageProviderConfigElement, bf as ComplyAdvantageProviderConfigFilters, be as ComplyAdvantageProviderConfigTypes, ah as ComplyAdvantageReponseMatchStatus, ae as ComplyAdvantageResponseMatchType, aE as ComplyAdvantageSearchDataResponse, aD as ComplyAdvantageSearchDataResponseHit, aI as ComplyAdvantageSearchEntitiesDataResponse, aK as ComplyAdvantageSearchEntitiesResponse, aJ as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aL as ComplyAdvantageSearchRequest, aM as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aO as ComplyAdvantageUpdateSearchEntitiesRequest, aQ as ComplyAdvantageUpdateSearchEntitiesResponse, aP as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aN as ComplyAdvantageUpdateSearchRequest, aA as ComplyAdvantageUser, bn as CreateProviderInput, bo as CreateProviderResponse, at as CreateSearchInput, cL as CredentialMetadata, cK as CustomerContactInformationOutput, d4 as CustomerDocumentMetaData, d5 as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cb as DocumentMetadataSchema, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cz as EmailVerificationResponse, F as File, cJ as GetCredentialsOutput, d1 as GetKybSessionInput, d2 as GetKybSessionResponse, cD as GetKycSessionInput, cE as GetKycSessionResponse, cM as GetKycSessionResponseWithCredentialsMetadata, cS as GetKycSessionStatusOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cN as IDImageMetaData, bJ as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bK as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, cV as KYB_RESULTS, cX as KYB_SESSION_STATUSES, cT as KYB_STEP_TYPES, cv as KYC_RESULTS, cx as KYC_SESSION_STATUSES, cr as KYC_STEP_TYPES, cW as KybResult, cY as KybSessionStatus, cU as KybStep, cw as KycResult, cy as KycSessionStatus, cs as KycStep, cu as KycStepStatus, ct as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, db as MerkleAddressApiError, da as MerkleAddressApiResponse, d9 as MerkleAddressRequest, dc as MerkleAddressResponse, d8 as MerkleBlockChainCodes, d7 as MerkleBlockChainName, d6 as MerkleBlockChainTypes, a_ as MerkleScienceConfig, bb as MerkleScienceProvider, N as NestedSession, b8 as NexeraIdKYBProvider, b7 as NexeraIdSSIDProvider, H as PhoneMetadata, P as PhoneVerificationAnalysisResponse, A as ProofOfAddressDocumentType, z as ProofOfAddressDocumentTypes, G as ProofOfAddressMetadata, cI as ProofOfResidenceDocumentType, cH as ProofOfResidenceMetaData, bj as ProviderData, bk as ProviderDataProject, b5 as ProviderIntegrationType, b4 as ProviderIntegrationTypeOptions, aV as ProviderWithoutConfig, Z as RESULT_PARSER_ERROR, w as ReasonCode, v as ReasonCodes, R as RequestProperty, ax as RiskLevel, aw as RiskLevels, a9 as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a7 as SEARCH_FILTER_PEP_TYPE, a5 as SEARCH_FILTER_SANCTION_TYPE, ai as SEARCH_FILTER_TYPES, X as SESSION_NOT_FOUND, a1 as STEP_NOT_FOUND, bB as SUMSUB_APPLICANT_TYPES, c4 as SUMSUB_COMPANY_BENEFICIARY_GROUP, bU as SUMSUB_DOC_TYPES, bW as SUMSUB_FLOW_LEVEL, cj as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c9 as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, co as SUMSUB_REVIEW_REJECT_LABELS, cq as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bS as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bQ as SUMSUB_WEBHOOK_INTERNAL_STATUS, b0 as ScorechainConfig, ba as ScorechainProvider, al as SearchEntityType, ak as SearchEntityTypes, aa as SearchFilterAdverseMediaType, a8 as SearchFilterPepType, a6 as SearchFilterSanctionType, aj as SearchFilterType, am as SearchFilters, d0 as SelectKybSession, cB as SelectKycSession, cA as SelectKycSessionStep, cC as SelectKycSessionWithCompletedSteps, cO as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bH as SumSubAddress, bI as SumSubApplicantInfo, cd as SumSubApplicantResetSchema, cc as SumSubApplicantReviewStatusSchema, ci as SumSubApplicantSchema, bC as SumSubApplicantType, c8 as SumSubApplicantVerificationStepSchema, bP as SumSubCompanyApplicantInfo, c2 as SumSubCompanyApplicantSchema, bV as SumSubDocType, bX as SumSubFlowLevel, ce as SumSubGenerateExternalWebSdkLinkSchema, c3 as SumSubImageId, b_ as SumSubImageReviewResultSchema, c1 as SumSubIndividualApplicantSchema, ca as SumSubMediaContentType, bY as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cp as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, bZ as SumSubReviewResultSchema, bT as SumSubReviewStatus, cn as SumSubSimilarApplicantsSchema, bA as SumSubStep, c7 as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c0 as SumsubApplicantType, b$ as SumsubApplicantTypes, c5 as SumsubCompanyBeneficiaryGroup, ch as SumsubKybDataSchema, cm as SumsubKybSessionFlowSection, cl as SumsubKybSessionFlowSectionItem, ck as SumsubKybSessionFlowSectionStatus, cg as SumsubKycDataSchema, c6 as SumsubStepStatus, cf as SumsubVideoCallData, bR as SumsubWebhookInternalStatus, bi as SynapsProvider, _ as SynapsSessionErrorResponse, Q as SynapsSessionEvent, V as SynapsSessionRequest, $ as SynapsSessionResponse, a2 as SynapsStepErrorResponse, T as SynapsStepEvent, a0 as SynapsStepRequest, a3 as SynapsStepResponse, br as ToggleProviderInput, Y as UNKNOWN_ERROR, d3 as UpdateKybSessionOutput, cF as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, cG as VideoKycMetaData, bu as WEBHOOK_TYPES, q as WebhookPayload, bv as WebhookType, b1 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, af as mappingMatchTypeToLabel, U as typeToHumanReadable } from '../../dist/CoinMarketCap.schema-a75dc387.esm.mjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'nanoid';
|
|
5
5
|
import 'decimal.js';
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var identityApi_schema = require('../../dist/identity-api.schema-8c8827a8.cjs.dev.cjs');
|
|
6
6
|
var zod = require('zod');
|
|
7
7
|
var vault_schema = require('../../dist/vault.schema-b879e107.cjs.dev.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-21780389.cjs.dev.cjs');
|
|
9
9
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
10
10
|
require('nanoid');
|
|
11
11
|
require('decimal.js');
|
|
@@ -32,6 +32,7 @@ var CustomerWebhookPayload = zod.z.object({
|
|
|
32
32
|
createdBy: zod.z.string(),
|
|
33
33
|
updatedBy: zod.z.string(),
|
|
34
34
|
id: zod.z.string(),
|
|
35
|
+
// webhook id itself... an id of the webhook event that was sent.. TODO probably we should make named ID like we do with others
|
|
35
36
|
riskScore: identityApi_schema.RiskScoreType.nullish(),
|
|
36
37
|
type: identityApi_schema.CustomerType.nullish(),
|
|
37
38
|
onboardingLevel: identityApi_schema.CustomerOnboardingLevel.nullish(),
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var identityApi_schema = require('../../dist/identity-api.schema-c1a397aa.cjs.prod.cjs');
|
|
6
6
|
var zod = require('zod');
|
|
7
7
|
var vault_schema = require('../../dist/vault.schema-ba3a058a.cjs.prod.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-f1ad1be0.cjs.prod.cjs');
|
|
9
9
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
10
10
|
require('nanoid');
|
|
11
11
|
require('decimal.js');
|
|
@@ -32,6 +32,7 @@ var CustomerWebhookPayload = zod.z.object({
|
|
|
32
32
|
createdBy: zod.z.string(),
|
|
33
33
|
updatedBy: zod.z.string(),
|
|
34
34
|
id: zod.z.string(),
|
|
35
|
+
// webhook id itself... an id of the webhook event that was sent.. TODO probably we should make named ID like we do with others
|
|
35
36
|
riskScore: identityApi_schema.RiskScoreType.nullish(),
|
|
36
37
|
type: identityApi_schema.CustomerType.nullish(),
|
|
37
38
|
onboardingLevel: identityApi_schema.CustomerOnboardingLevel.nullish(),
|
|
@@ -2,7 +2,7 @@ import { cn as AlertSeverity, co as AlertCategory, cp as AlertType, cq as AlertS
|
|
|
2
2
|
export { cv as ALERT_CHART_TYPES, cx as ALERT_TABLE_COLUMNS, cu as AlertCategories, co as AlertCategory, cw as AlertChartType, ct as AlertSeverities, cn as AlertSeverity, cq as AlertStatus, cr as AlertStatuses, cy as AlertTableColumn, cp as AlertType, cs as AlertTypes, cA as DuplicateData, cz as UserInfoForDuplicate } from '../../dist/identity-api.schema-413be7b9.esm.mjs';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import { aS as UuidString, cM as ExternalCustomerId, a_ as ISO3CountryCode, ar as BlockchainAddress, d4 as GenericVerifiableCredentialSchema, ea as WalletScreeningData, dn as TransactionTypes, du as TransactionReviewStatuses, ef as _toArray, ee as _toConsumableArray, aR as EnvironmentSchema } from '../../dist/vault.schema-3e68499e.esm.mjs';
|
|
5
|
-
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-
|
|
5
|
+
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-a75dc387.esm.mjs';
|
|
6
6
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
7
7
|
import 'nanoid';
|
|
8
8
|
import 'decimal.js';
|
|
@@ -29,6 +29,7 @@ var CustomerWebhookPayload = z.object({
|
|
|
29
29
|
createdBy: z.string(),
|
|
30
30
|
updatedBy: z.string(),
|
|
31
31
|
id: z.string(),
|
|
32
|
+
// webhook id itself... an id of the webhook event that was sent.. TODO probably we should make named ID like we do with others
|
|
32
33
|
riskScore: RiskScoreType.nullish(),
|
|
33
34
|
type: CustomerType.nullish(),
|
|
34
35
|
onboardingLevel: CustomerOnboardingLevel.nullish(),
|