@nexeraid/identity-schemas 1.12.24-dev → 1.12.25-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/{chainalysis.schema-a9079d73.cjs.prod.js → chainalysis.schema-1567fb68.cjs.prod.js} +1 -0
- package/dist/{chainalysis.schema-ab6cda47.cjs.dev.js → chainalysis.schema-34e4afef.cjs.dev.js} +1 -0
- package/dist/{chainalysis.schema-9e5926b9.esm.js → chainalysis.schema-d8de1e7c.esm.js} +1 -0
- package/dist/declarations/src/providers/kyb-sessions.schema.d.ts +6 -0
- package/dist/declarations/src/providers/kyb-sessions.schema.d.ts.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +1 -1
package/dist/{chainalysis.schema-a9079d73.cjs.prod.js → chainalysis.schema-1567fb68.cjs.prod.js}
RENAMED
|
@@ -2220,6 +2220,7 @@ var SelectKybSession = zod.z.object({
|
|
|
2220
2220
|
ip: zod.z.string().nullish(),
|
|
2221
2221
|
sandboxSimulated: zod.z.coerce["boolean"]().nullish(),
|
|
2222
2222
|
beneficiaries: BeneficiaryVerificationStatusArray.nullish(),
|
|
2223
|
+
workflowId: zod.z.string().nullable(),
|
|
2223
2224
|
createdAt: zod.z.coerce.date(),
|
|
2224
2225
|
updatedAt: zod.z.coerce.date()
|
|
2225
2226
|
// notificationEmail: z.string().nullish(),
|
package/dist/{chainalysis.schema-ab6cda47.cjs.dev.js → chainalysis.schema-34e4afef.cjs.dev.js}
RENAMED
|
@@ -2220,6 +2220,7 @@ var SelectKybSession = zod.z.object({
|
|
|
2220
2220
|
ip: zod.z.string().nullish(),
|
|
2221
2221
|
sandboxSimulated: zod.z.coerce["boolean"]().nullish(),
|
|
2222
2222
|
beneficiaries: BeneficiaryVerificationStatusArray.nullish(),
|
|
2223
|
+
workflowId: zod.z.string().nullable(),
|
|
2223
2224
|
createdAt: zod.z.coerce.date(),
|
|
2224
2225
|
updatedAt: zod.z.coerce.date()
|
|
2225
2226
|
// notificationEmail: z.string().nullish(),
|
|
@@ -2218,6 +2218,7 @@ var SelectKybSession = z.object({
|
|
|
2218
2218
|
ip: z.string().nullish(),
|
|
2219
2219
|
sandboxSimulated: z.coerce["boolean"]().nullish(),
|
|
2220
2220
|
beneficiaries: BeneficiaryVerificationStatusArray.nullish(),
|
|
2221
|
+
workflowId: z.string().nullable(),
|
|
2221
2222
|
createdAt: z.coerce.date(),
|
|
2222
2223
|
updatedAt: z.coerce.date()
|
|
2223
2224
|
// notificationEmail: z.string().nullish(),
|
|
@@ -144,6 +144,7 @@ export declare const SelectKybSession: z.ZodObject<{
|
|
|
144
144
|
type?: "shareholder" | "ubo" | "representative" | null | undefined;
|
|
145
145
|
calculatedResult?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
146
146
|
}>, "many">>>;
|
|
147
|
+
workflowId: z.ZodNullable<z.ZodString>;
|
|
147
148
|
createdAt: z.ZodDate;
|
|
148
149
|
updatedAt: z.ZodDate;
|
|
149
150
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151,6 +152,7 @@ export declare const SelectKybSession: z.ZodObject<{
|
|
|
151
152
|
createdAt: Date;
|
|
152
153
|
updatedAt: Date;
|
|
153
154
|
customerId: string;
|
|
155
|
+
workflowId: string | null;
|
|
154
156
|
cmsProjectId: string;
|
|
155
157
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
156
158
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
@@ -176,6 +178,7 @@ export declare const SelectKybSession: z.ZodObject<{
|
|
|
176
178
|
createdAt: Date;
|
|
177
179
|
updatedAt: Date;
|
|
178
180
|
customerId: string;
|
|
181
|
+
workflowId: string | null;
|
|
179
182
|
cmsProjectId: string;
|
|
180
183
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
181
184
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
@@ -248,6 +251,7 @@ export declare const GetKybSessionResponse: z.ZodObject<{
|
|
|
248
251
|
type?: "shareholder" | "ubo" | "representative" | null | undefined;
|
|
249
252
|
calculatedResult?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
250
253
|
}>, "many">>>;
|
|
254
|
+
workflowId: z.ZodNullable<z.ZodString>;
|
|
251
255
|
createdAt: z.ZodDate;
|
|
252
256
|
updatedAt: z.ZodDate;
|
|
253
257
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -255,6 +259,7 @@ export declare const GetKybSessionResponse: z.ZodObject<{
|
|
|
255
259
|
createdAt: Date;
|
|
256
260
|
updatedAt: Date;
|
|
257
261
|
customerId: string;
|
|
262
|
+
workflowId: string | null;
|
|
258
263
|
cmsProjectId: string;
|
|
259
264
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
260
265
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
@@ -280,6 +285,7 @@ export declare const GetKybSessionResponse: z.ZodObject<{
|
|
|
280
285
|
createdAt: Date;
|
|
281
286
|
updatedAt: Date;
|
|
282
287
|
customerId: string;
|
|
288
|
+
workflowId: string | null;
|
|
283
289
|
cmsProjectId: string;
|
|
284
290
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
285
291
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kyb-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyb-sessions.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,cAAc,sBAAuB,CAAC;AACnD,eAAO,MAAM,OAAO,wBAAyB,CAAC;AAC9C,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,CAAC;AAE9C,eAAO,MAAM,WAAW,iEAKd,CAAC;AACX,eAAO,MAAM,SAAS,mEAAsB,CAAC;AAC7C,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,oBAAoB,8CAIvB,CAAC;AACX,eAAO,MAAM,gBAAgB,gDAA+B,CAAC;AAC7D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAYhE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EASlC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUxC,CAAC;AAEH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CACjD,OAAO,6BAA6B,CACrC,CAAC;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAE9C,CAAC;AAEF,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CACtD,OAAO,kCAAkC,CAC1C,CAAC;AAEF,eAAO,MAAM,gBAAgB
|
|
1
|
+
{"version":3,"file":"kyb-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyb-sessions.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AASxB,eAAO,MAAM,cAAc,sBAAuB,CAAC;AACnD,eAAO,MAAM,OAAO,wBAAyB,CAAC;AAC9C,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,CAAC;AAE9C,eAAO,MAAM,WAAW,iEAKd,CAAC;AACX,eAAO,MAAM,SAAS,mEAAsB,CAAC;AAC7C,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,oBAAoB,8CAIvB,CAAC;AACX,eAAO,MAAM,gBAAgB,gDAA+B,CAAC;AAC7D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAYhE,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;EASlC,CAAC;AACH,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAE9E,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUxC,CAAC;AAEH,MAAM,MAAM,6BAA6B,GAAG,CAAC,CAAC,KAAK,CACjD,OAAO,6BAA6B,CACrC,CAAC;AAEF,eAAO,MAAM,kCAAkC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAE9C,CAAC;AAEF,MAAM,MAAM,kCAAkC,GAAG,CAAC,CAAC,KAAK,CACtD,OAAO,kCAAkC,CAC1C,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,kBAAkB;;;;;;EAE7B,CAAC;AASH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAAmB,CAAC;AACtD,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"}
|
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 chainalysis_schema = require('../../dist/chainalysis.schema-
|
|
5
|
+
var chainalysis_schema = require('../../dist/chainalysis.schema-34e4afef.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-8832ddec.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 chainalysis_schema = require('../../dist/chainalysis.schema-
|
|
5
|
+
var chainalysis_schema = require('../../dist/chainalysis.schema-1567fb68.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('../../dist/identity-api.schema-181d93d3.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a0 as AMLMetadata, A as ANALYSIS_TYPES, b as AnalysisType, bF as ApplicantMemberOfSchema, bU as BENEFICIARY_TYPES, d as BLOCKCHAIN_TYPES, bH as BaseApplicantActionSchema, bg as BaseProvider, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, cZ as BeneficiaryVerificationStatus, c_ as BeneficiaryVerificationStatusArray, bd as BigConfig, o as BigCryptoChain, q as BigProperties, p as BigPropertiesLiteral, r as BigProperty, bj as BigProvider, t as BitRankRequest, u as BitRankVerified, w as BitRankVerifiedError, v as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, e as Blockchain, aA as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aC as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, ay as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ar as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ao as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, df as ChainalysisApiError, dd as ChainalysisRegisterApiResponse, dg as ChainalysisRegisterResponse, db as ChainalysisRequest, di as ChainalysisResponse, de as ChainalysisRiskAssessmentApiResponse, dh as ChainalysisRiskAssessmentResponse, af as CoerceDateUTC, f as Coin, cY as CompanyDocumentMetaData, aU as ComplyAdvantageAmlFullListing, aT as ComplyAdvantageAmlItemSource, aB as ComplyAdvantageCountryFieldSources, aD as ComplyAdvantageDateOfBirthFieldSources, aS as ComplyAdvantageKeyInformation, aN as ComplyAdvantageMedia, b1 as ComplyAdvantageMonitorSearchDataResponse, b3 as ComplyAdvantageMonitorSearchResponse, b2 as ComplyAdvantageMonitorSearchSuccessResponse, b4 as ComplyAdvantageMonitoredSearchUpdate, az as ComplyAdvantageNationalityFieldSources, bq as ComplyAdvantageProvider, bp as ComplyAdvantageProviderConfigElement, bo as ComplyAdvantageProviderConfigFilters, bn as ComplyAdvantageProviderConfigTypes, as as ComplyAdvantageReponseMatchStatus, ap as ComplyAdvantageResponseMatchType, aP as ComplyAdvantageSearchDataResponse, aO as ComplyAdvantageSearchDataResponseHit, aV as ComplyAdvantageSearchEntitiesDataResponse, aX as ComplyAdvantageSearchEntitiesResponse, aW as ComplyAdvantageSearchEntitiesSuccessResponse, aR as ComplyAdvantageSearchErrorResponse, aY as ComplyAdvantageSearchRequest, C as ComplyAdvantageSearchResponse, aQ as ComplyAdvantageSearchSuccessResponse, a_ as ComplyAdvantageUpdateSearchEntitiesRequest, b0 as ComplyAdvantageUpdateSearchEntitiesResponse, a$ as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aZ as ComplyAdvantageUpdateSearchRequest, aL as ComplyAdvantageUser, bw as CreateProviderInput, bx as CreateProviderResponse, aE as CreateSearchInput, cQ as CredentialMetadata, cP as CustomerContactInformationOutput, d3 as CustomerDocumentMetaData, d4 as CustomerStatusResults, b7 as DataProviderOptions, b8 as DataProviders, bB as DeleteProviderInput, bC as DeleteProviderResponse, U as DocumentIdMetadata, T as DocumentIdType, Q as DocumentIdTypes, ck as DocumentMetadataSchema, $ as EmailMetadata, E as EmailVerificationAnalysisResponse, dc as EnhancedChainalysisRequest, L as File, cO as GetCredentialsOutput, d0 as GetKybSessionInput, d1 as GetKybSessionResponse, cI as GetKycSessionInput, cJ as GetKycSessionResponse, cR as GetKycSessionResponseWithCredentialsMetadata, bv as GetProviderResponse, bu as GetProvidersResponse, am as HIGH_RISK_TYPES, bS as INDIVIDUAL_BENEFICIARY_RELATIONS, b5 as IdentityProviderOptions, b6 as IdentityProviders, bT as IndividualBeneficiaryRelation, k as IpQualityAnalysisRequest, l as IpQualityAnalysisResponse, bc as IpQualityConfig, m as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, n as IpQualityServiceErrorResponse, bm as IpqualityscoreProvider, cU as KYB_RESULTS, cW as KYB_SESSION_STATUSES, cS as KYB_STEP_TYPES, cC as KYC_RESULTS, cE as KYC_SESSION_STATUSES, cA as KYC_STEP_TYPES, cV as KybResult, cX as KybSessionStatus, cT as KybStep, cD as KycResult, cF as KycSessionStatus, cB as KycStep, Z as LivenessMetadata, an as MEDIUM_RISK_TYPES, aG as MatchStatus, aF as MatchStatuses, aM as MatchTypeDetail, M as MergedProviders, da as MerkleAddressApiError, d9 as MerkleAddressApiResponse, d8 as MerkleAddressRequest, a as MerkleAddressResponse, d7 as MerkleBlockChainCodes, d6 as MerkleBlockChainNames, d5 as MerkleBlockChainTypes, b9 as MerkleScienceConfig, bl as MerkleScienceProvider, N as NestedSession, bi as NexeraIdKYBProvider, bh as NexeraIdSSIDProvider, O as OBJECT_TYPES, c as ObjectType, _ as PhoneMetadata, P as PhoneVerificationAnalysisResponse, X as ProofOfAddressDocumentType, V as ProofOfAddressDocumentTypes, Y as ProofOfAddressMetadata, cN as ProofOfResidenceDocumentType, cM as ProofOfResidenceMetaData, bs as ProviderData, bt as ProviderDataProject, bf as ProviderIntegrationType, be as ProviderIntegrationTypeOptions, a8 as RESULT_PARSER_ERROR, K as ReasonCode, J as ReasonCodes, s as RequestProperty, aI as RiskLevel, aH as RiskLevels, R as RiskSeverity, ak as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, ai as SEARCH_FILTER_PEP_TYPE, ag as SEARCH_FILTER_SANCTION_TYPE, at as SEARCH_FILTER_TYPES, a6 as SESSION_NOT_FOUND, ac as STEP_NOT_FOUND, bK as SUMSUB_APPLICANT_TYPES, cc as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c3 as SUMSUB_FLOW_LEVEL, cs as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, ci as SUMSUB_MEDIA_CONTENT_TYPES, bM as SUMSUB_REVIEW_ANSWERS, cx as SUMSUB_REVIEW_REJECT_LABELS, cz as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bO as SUMSUB_REVIEW_REJECT_TYPES, b$ as SUMSUB_REVIEW_STATUSES, bI as SUMSUB_STEPS, bZ as SUMSUB_WEBHOOK_INTERNAL_STATUS, i as ScorechainAnalysis, ba as ScorechainConfig, h as ScorechainError, g as ScorechainErrorResponse, bk as ScorechainProvider, j as ScoringAnalysisRequest, S as ScoringAnalysisResponse, aw as SearchEntityType, av as SearchEntityTypes, al as SearchFilterAdverseMediaType, aj as SearchFilterPepType, ah as SearchFilterSanctionType, au as SearchFilterType, ax as SearchFilters, c$ as SelectKybSession, cG as SelectKycSession, cH as SelectKycSessionStep, D as Session, F as SessionWithoutSteps, y as Status, x as Statuses, a1 as Step, H as StepType, G as StepTypes, bQ as SumSubAddress, bR as SumSubApplicantInfo, ch as SumSubApplicantModerationStatusSchema, cm as SumSubApplicantResetSchema, cl as SumSubApplicantReviewStatusSchema, cr as SumSubApplicantSchema, bL as SumSubApplicantType, cg as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ca as SumSubCompanyApplicantSchema, c2 as SumSubDocType, c4 as SumSubFlowLevel, cn as SumSubGenerateExternalWebSdkLinkSchema, cb as SumSubImageId, c6 as SumSubImageReviewResultSchema, c9 as SumSubIndividualApplicantSchema, cj as SumSubMediaContentType, bN as SumSubReviewAnswer, cy as SumSubReviewRejectLabel, bP as SumSubReviewRejectType, c5 as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cw as SumSubSimilarApplicantsSchema, bJ as SumSubStep, cf as SumSubVerificationStepSchema, bG as SumSubWebhookSchema, c8 as SumsubApplicantType, c7 as SumsubApplicantTypes, cd as SumsubCompanyBeneficiaryGroup, cq as SumsubKybDataSchema, cv as SumsubKybSessionFlowSection, cu as SumsubKybSessionFlowSectionItem, ct as SumsubKybSessionFlowSectionStatus, cp as SumsubKycDataSchema, ce as SumsubStepStatus, co as SumsubVideoCallData, b_ as SumsubWebhookInternalStatus, br as SynapsProvider, a9 as SynapsSessionErrorResponse, a2 as SynapsSessionEvent, a5 as SynapsSessionRequest, aa as SynapsSessionResponse, ad as SynapsStepErrorResponse, a3 as SynapsStepEvent, ab as SynapsStepRequest, ae as SynapsStepResponse, bA as ToggleProviderInput, a7 as UNKNOWN_ERROR, d2 as UpdateKybSessionOutput, cK as UpdateKycSessionOutput, by as UpdateProviderInput, bz as UpdateProviderResponse, aK as UpdateSearchEntitiesInput, aJ as UpdateSearchInput, cL as VideoKycMetaData, bD as WEBHOOK_TYPES, z as WebhookPayload, bE as WebhookType, bb as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, aq as mappingMatchTypeToLabel, a4 as typeToHumanReadable } from '../../dist/chainalysis.schema-
|
|
1
|
+
export { a0 as AMLMetadata, A as ANALYSIS_TYPES, b as AnalysisType, bF as ApplicantMemberOfSchema, bU as BENEFICIARY_TYPES, d as BLOCKCHAIN_TYPES, bH as BaseApplicantActionSchema, bg as BaseProvider, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, cZ as BeneficiaryVerificationStatus, c_ as BeneficiaryVerificationStatusArray, bd as BigConfig, o as BigCryptoChain, q as BigProperties, p as BigPropertiesLiteral, r as BigProperty, bj as BigProvider, t as BitRankRequest, u as BitRankVerified, w as BitRankVerifiedError, v as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, e as Blockchain, aA as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aC as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, ay as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ar as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ao as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, df as ChainalysisApiError, dd as ChainalysisRegisterApiResponse, dg as ChainalysisRegisterResponse, db as ChainalysisRequest, di as ChainalysisResponse, de as ChainalysisRiskAssessmentApiResponse, dh as ChainalysisRiskAssessmentResponse, af as CoerceDateUTC, f as Coin, cY as CompanyDocumentMetaData, aU as ComplyAdvantageAmlFullListing, aT as ComplyAdvantageAmlItemSource, aB as ComplyAdvantageCountryFieldSources, aD as ComplyAdvantageDateOfBirthFieldSources, aS as ComplyAdvantageKeyInformation, aN as ComplyAdvantageMedia, b1 as ComplyAdvantageMonitorSearchDataResponse, b3 as ComplyAdvantageMonitorSearchResponse, b2 as ComplyAdvantageMonitorSearchSuccessResponse, b4 as ComplyAdvantageMonitoredSearchUpdate, az as ComplyAdvantageNationalityFieldSources, bq as ComplyAdvantageProvider, bp as ComplyAdvantageProviderConfigElement, bo as ComplyAdvantageProviderConfigFilters, bn as ComplyAdvantageProviderConfigTypes, as as ComplyAdvantageReponseMatchStatus, ap as ComplyAdvantageResponseMatchType, aP as ComplyAdvantageSearchDataResponse, aO as ComplyAdvantageSearchDataResponseHit, aV as ComplyAdvantageSearchEntitiesDataResponse, aX as ComplyAdvantageSearchEntitiesResponse, aW as ComplyAdvantageSearchEntitiesSuccessResponse, aR as ComplyAdvantageSearchErrorResponse, aY as ComplyAdvantageSearchRequest, C as ComplyAdvantageSearchResponse, aQ as ComplyAdvantageSearchSuccessResponse, a_ as ComplyAdvantageUpdateSearchEntitiesRequest, b0 as ComplyAdvantageUpdateSearchEntitiesResponse, a$ as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aZ as ComplyAdvantageUpdateSearchRequest, aL as ComplyAdvantageUser, bw as CreateProviderInput, bx as CreateProviderResponse, aE as CreateSearchInput, cQ as CredentialMetadata, cP as CustomerContactInformationOutput, d3 as CustomerDocumentMetaData, d4 as CustomerStatusResults, b7 as DataProviderOptions, b8 as DataProviders, bB as DeleteProviderInput, bC as DeleteProviderResponse, U as DocumentIdMetadata, T as DocumentIdType, Q as DocumentIdTypes, ck as DocumentMetadataSchema, $ as EmailMetadata, E as EmailVerificationAnalysisResponse, dc as EnhancedChainalysisRequest, L as File, cO as GetCredentialsOutput, d0 as GetKybSessionInput, d1 as GetKybSessionResponse, cI as GetKycSessionInput, cJ as GetKycSessionResponse, cR as GetKycSessionResponseWithCredentialsMetadata, bv as GetProviderResponse, bu as GetProvidersResponse, am as HIGH_RISK_TYPES, bS as INDIVIDUAL_BENEFICIARY_RELATIONS, b5 as IdentityProviderOptions, b6 as IdentityProviders, bT as IndividualBeneficiaryRelation, k as IpQualityAnalysisRequest, l as IpQualityAnalysisResponse, bc as IpQualityConfig, m as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, n as IpQualityServiceErrorResponse, bm as IpqualityscoreProvider, cU as KYB_RESULTS, cW as KYB_SESSION_STATUSES, cS as KYB_STEP_TYPES, cC as KYC_RESULTS, cE as KYC_SESSION_STATUSES, cA as KYC_STEP_TYPES, cV as KybResult, cX as KybSessionStatus, cT as KybStep, cD as KycResult, cF as KycSessionStatus, cB as KycStep, Z as LivenessMetadata, an as MEDIUM_RISK_TYPES, aG as MatchStatus, aF as MatchStatuses, aM as MatchTypeDetail, M as MergedProviders, da as MerkleAddressApiError, d9 as MerkleAddressApiResponse, d8 as MerkleAddressRequest, a as MerkleAddressResponse, d7 as MerkleBlockChainCodes, d6 as MerkleBlockChainNames, d5 as MerkleBlockChainTypes, b9 as MerkleScienceConfig, bl as MerkleScienceProvider, N as NestedSession, bi as NexeraIdKYBProvider, bh as NexeraIdSSIDProvider, O as OBJECT_TYPES, c as ObjectType, _ as PhoneMetadata, P as PhoneVerificationAnalysisResponse, X as ProofOfAddressDocumentType, V as ProofOfAddressDocumentTypes, Y as ProofOfAddressMetadata, cN as ProofOfResidenceDocumentType, cM as ProofOfResidenceMetaData, bs as ProviderData, bt as ProviderDataProject, bf as ProviderIntegrationType, be as ProviderIntegrationTypeOptions, a8 as RESULT_PARSER_ERROR, K as ReasonCode, J as ReasonCodes, s as RequestProperty, aI as RiskLevel, aH as RiskLevels, R as RiskSeverity, ak as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, ai as SEARCH_FILTER_PEP_TYPE, ag as SEARCH_FILTER_SANCTION_TYPE, at as SEARCH_FILTER_TYPES, a6 as SESSION_NOT_FOUND, ac as STEP_NOT_FOUND, bK as SUMSUB_APPLICANT_TYPES, cc as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c3 as SUMSUB_FLOW_LEVEL, cs as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, ci as SUMSUB_MEDIA_CONTENT_TYPES, bM as SUMSUB_REVIEW_ANSWERS, cx as SUMSUB_REVIEW_REJECT_LABELS, cz as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bO as SUMSUB_REVIEW_REJECT_TYPES, b$ as SUMSUB_REVIEW_STATUSES, bI as SUMSUB_STEPS, bZ as SUMSUB_WEBHOOK_INTERNAL_STATUS, i as ScorechainAnalysis, ba as ScorechainConfig, h as ScorechainError, g as ScorechainErrorResponse, bk as ScorechainProvider, j as ScoringAnalysisRequest, S as ScoringAnalysisResponse, aw as SearchEntityType, av as SearchEntityTypes, al as SearchFilterAdverseMediaType, aj as SearchFilterPepType, ah as SearchFilterSanctionType, au as SearchFilterType, ax as SearchFilters, c$ as SelectKybSession, cG as SelectKycSession, cH as SelectKycSessionStep, D as Session, F as SessionWithoutSteps, y as Status, x as Statuses, a1 as Step, H as StepType, G as StepTypes, bQ as SumSubAddress, bR as SumSubApplicantInfo, ch as SumSubApplicantModerationStatusSchema, cm as SumSubApplicantResetSchema, cl as SumSubApplicantReviewStatusSchema, cr as SumSubApplicantSchema, bL as SumSubApplicantType, cg as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ca as SumSubCompanyApplicantSchema, c2 as SumSubDocType, c4 as SumSubFlowLevel, cn as SumSubGenerateExternalWebSdkLinkSchema, cb as SumSubImageId, c6 as SumSubImageReviewResultSchema, c9 as SumSubIndividualApplicantSchema, cj as SumSubMediaContentType, bN as SumSubReviewAnswer, cy as SumSubReviewRejectLabel, bP as SumSubReviewRejectType, c5 as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cw as SumSubSimilarApplicantsSchema, bJ as SumSubStep, cf as SumSubVerificationStepSchema, bG as SumSubWebhookSchema, c8 as SumsubApplicantType, c7 as SumsubApplicantTypes, cd as SumsubCompanyBeneficiaryGroup, cq as SumsubKybDataSchema, cv as SumsubKybSessionFlowSection, cu as SumsubKybSessionFlowSectionItem, ct as SumsubKybSessionFlowSectionStatus, cp as SumsubKycDataSchema, ce as SumsubStepStatus, co as SumsubVideoCallData, b_ as SumsubWebhookInternalStatus, br as SynapsProvider, a9 as SynapsSessionErrorResponse, a2 as SynapsSessionEvent, a5 as SynapsSessionRequest, aa as SynapsSessionResponse, ad as SynapsStepErrorResponse, a3 as SynapsStepEvent, ab as SynapsStepRequest, ae as SynapsStepResponse, bA as ToggleProviderInput, a7 as UNKNOWN_ERROR, d2 as UpdateKybSessionOutput, cK as UpdateKycSessionOutput, by as UpdateProviderInput, bz as UpdateProviderResponse, aK as UpdateSearchEntitiesInput, aJ as UpdateSearchInput, cL as VideoKycMetaData, bD as WEBHOOK_TYPES, z as WebhookPayload, bE as WebhookType, bb as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, aq as mappingMatchTypeToLabel, a4 as typeToHumanReadable } from '../../dist/chainalysis.schema-d8de1e7c.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import '../../dist/identity-api.schema-2df73bbd.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-8832ddec.cjs.dev.js');
|
|
7
|
-
var chainalysis_schema = require('../../dist/chainalysis.schema-
|
|
7
|
+
var chainalysis_schema = require('../../dist/chainalysis.schema-34e4afef.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-181d93d3.cjs.prod.js');
|
|
7
|
-
var chainalysis_schema = require('../../dist/chainalysis.schema-
|
|
7
|
+
var chainalysis_schema = require('../../dist/chainalysis.schema-1567fb68.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, dy as ExternalCustomerId, aq as RiskScoreType, as as CustomerType, ay as CustomerOnboardingLevel, aA as CustomerStatus, ai as ISO3CountryCode, a2 as BlockchainAddress, bC as RuleResultStatus, dR as GenericVerifiableCredentialSchema, d_ as _toArray, dZ as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-2df73bbd.esm.js';
|
|
3
|
-
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse } from '../../dist/chainalysis.schema-
|
|
3
|
+
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse } from '../../dist/chainalysis.schema-d8de1e7c.esm.js';
|
|
4
4
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|