@nexeraid/identity-schemas 2.155.0-dev → 2.156.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-a36f0949.cjs.prod.cjs → CoinMarketCap.schema-c2b18378.cjs.prod.cjs} +14 -14
- package/dist/{CoinMarketCap.schema-a3d871f8.cjs.dev.cjs → CoinMarketCap.schema-e1c7831a.cjs.dev.cjs} +14 -14
- package/dist/{CoinMarketCap.schema-569d8d3f.esm.mjs → CoinMarketCap.schema-f93fe3c0.esm.mjs} +14 -14
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +108 -108
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +1 -1
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +1 -1
|
@@ -2125,29 +2125,29 @@ var SumSubSimilarApplicantsSchema = zod.z.object({
|
|
|
2125
2125
|
similarApplicants: zod.z.array(SumSubSimilarApplicantSchema).optional()
|
|
2126
2126
|
});
|
|
2127
2127
|
var SumSubImageIdDocDef = zod.z.object({
|
|
2128
|
-
country: zod.z.string(),
|
|
2129
|
-
idDocType: zod.z.string(),
|
|
2130
|
-
idDocSubType: zod.z.string()
|
|
2128
|
+
country: zod.z.string().optional(),
|
|
2129
|
+
idDocType: zod.z.string().optional(),
|
|
2130
|
+
idDocSubType: zod.z.string()
|
|
2131
2131
|
});
|
|
2132
2132
|
var SumSubImageFileMetadataResolution = zod.z.object({
|
|
2133
|
-
width: zod.z.number(),
|
|
2134
|
-
height: zod.z.number()
|
|
2133
|
+
width: zod.z.number().optional(),
|
|
2134
|
+
height: zod.z.number().optional()
|
|
2135
2135
|
});
|
|
2136
2136
|
var SumSubImageFileMetadata = zod.z.object({
|
|
2137
|
-
fileName: zod.z.string(),
|
|
2138
|
-
fileType: zod.z.string(),
|
|
2139
|
-
fileSize: zod.z.number(),
|
|
2137
|
+
fileName: zod.z.string().optional(),
|
|
2138
|
+
fileType: zod.z.string().optional(),
|
|
2139
|
+
fileSize: zod.z.number().optional(),
|
|
2140
2140
|
resolution: SumSubImageFileMetadataResolution.nullish()
|
|
2141
2141
|
});
|
|
2142
2142
|
var ApplicantImageItem = zod.z.object({
|
|
2143
2143
|
id: zod.z.string(),
|
|
2144
|
-
previewId: zod.z.string(),
|
|
2145
|
-
addedDate: zod.z.string(),
|
|
2146
|
-
fileMetadata: SumSubImageFileMetadata,
|
|
2144
|
+
previewId: zod.z.string().optional(),
|
|
2145
|
+
addedDate: zod.z.string().optional(),
|
|
2146
|
+
fileMetadata: SumSubImageFileMetadata.optional(),
|
|
2147
2147
|
idDocDef: SumSubImageIdDocDef,
|
|
2148
|
-
reviewResult: SumSubImageReviewResultSchema,
|
|
2149
|
-
attemptId: zod.z.string(),
|
|
2150
|
-
source: zod.z.string(),
|
|
2148
|
+
reviewResult: SumSubImageReviewResultSchema.optional(),
|
|
2149
|
+
attemptId: zod.z.string().optional(),
|
|
2150
|
+
source: zod.z.string().optional(),
|
|
2151
2151
|
deactivated: zod.z["boolean"]().optional()
|
|
2152
2152
|
});
|
|
2153
2153
|
var ApplicantImages = zod.z.object({
|
package/dist/{CoinMarketCap.schema-a3d871f8.cjs.dev.cjs → CoinMarketCap.schema-e1c7831a.cjs.dev.cjs}
RENAMED
|
@@ -2125,29 +2125,29 @@ var SumSubSimilarApplicantsSchema = zod.z.object({
|
|
|
2125
2125
|
similarApplicants: zod.z.array(SumSubSimilarApplicantSchema).optional()
|
|
2126
2126
|
});
|
|
2127
2127
|
var SumSubImageIdDocDef = zod.z.object({
|
|
2128
|
-
country: zod.z.string(),
|
|
2129
|
-
idDocType: zod.z.string(),
|
|
2130
|
-
idDocSubType: zod.z.string()
|
|
2128
|
+
country: zod.z.string().optional(),
|
|
2129
|
+
idDocType: zod.z.string().optional(),
|
|
2130
|
+
idDocSubType: zod.z.string()
|
|
2131
2131
|
});
|
|
2132
2132
|
var SumSubImageFileMetadataResolution = zod.z.object({
|
|
2133
|
-
width: zod.z.number(),
|
|
2134
|
-
height: zod.z.number()
|
|
2133
|
+
width: zod.z.number().optional(),
|
|
2134
|
+
height: zod.z.number().optional()
|
|
2135
2135
|
});
|
|
2136
2136
|
var SumSubImageFileMetadata = zod.z.object({
|
|
2137
|
-
fileName: zod.z.string(),
|
|
2138
|
-
fileType: zod.z.string(),
|
|
2139
|
-
fileSize: zod.z.number(),
|
|
2137
|
+
fileName: zod.z.string().optional(),
|
|
2138
|
+
fileType: zod.z.string().optional(),
|
|
2139
|
+
fileSize: zod.z.number().optional(),
|
|
2140
2140
|
resolution: SumSubImageFileMetadataResolution.nullish()
|
|
2141
2141
|
});
|
|
2142
2142
|
var ApplicantImageItem = zod.z.object({
|
|
2143
2143
|
id: zod.z.string(),
|
|
2144
|
-
previewId: zod.z.string(),
|
|
2145
|
-
addedDate: zod.z.string(),
|
|
2146
|
-
fileMetadata: SumSubImageFileMetadata,
|
|
2144
|
+
previewId: zod.z.string().optional(),
|
|
2145
|
+
addedDate: zod.z.string().optional(),
|
|
2146
|
+
fileMetadata: SumSubImageFileMetadata.optional(),
|
|
2147
2147
|
idDocDef: SumSubImageIdDocDef,
|
|
2148
|
-
reviewResult: SumSubImageReviewResultSchema,
|
|
2149
|
-
attemptId: zod.z.string(),
|
|
2150
|
-
source: zod.z.string(),
|
|
2148
|
+
reviewResult: SumSubImageReviewResultSchema.optional(),
|
|
2149
|
+
attemptId: zod.z.string().optional(),
|
|
2150
|
+
source: zod.z.string().optional(),
|
|
2151
2151
|
deactivated: zod.z["boolean"]().optional()
|
|
2152
2152
|
});
|
|
2153
2153
|
var ApplicantImages = zod.z.object({
|
package/dist/{CoinMarketCap.schema-569d8d3f.esm.mjs → CoinMarketCap.schema-f93fe3c0.esm.mjs}
RENAMED
|
@@ -2123,29 +2123,29 @@ var SumSubSimilarApplicantsSchema = z.object({
|
|
|
2123
2123
|
similarApplicants: z.array(SumSubSimilarApplicantSchema).optional()
|
|
2124
2124
|
});
|
|
2125
2125
|
var SumSubImageIdDocDef = z.object({
|
|
2126
|
-
country: z.string(),
|
|
2127
|
-
idDocType: z.string(),
|
|
2128
|
-
idDocSubType: z.string()
|
|
2126
|
+
country: z.string().optional(),
|
|
2127
|
+
idDocType: z.string().optional(),
|
|
2128
|
+
idDocSubType: z.string()
|
|
2129
2129
|
});
|
|
2130
2130
|
var SumSubImageFileMetadataResolution = z.object({
|
|
2131
|
-
width: z.number(),
|
|
2132
|
-
height: z.number()
|
|
2131
|
+
width: z.number().optional(),
|
|
2132
|
+
height: z.number().optional()
|
|
2133
2133
|
});
|
|
2134
2134
|
var SumSubImageFileMetadata = z.object({
|
|
2135
|
-
fileName: z.string(),
|
|
2136
|
-
fileType: z.string(),
|
|
2137
|
-
fileSize: z.number(),
|
|
2135
|
+
fileName: z.string().optional(),
|
|
2136
|
+
fileType: z.string().optional(),
|
|
2137
|
+
fileSize: z.number().optional(),
|
|
2138
2138
|
resolution: SumSubImageFileMetadataResolution.nullish()
|
|
2139
2139
|
});
|
|
2140
2140
|
var ApplicantImageItem = z.object({
|
|
2141
2141
|
id: z.string(),
|
|
2142
|
-
previewId: z.string(),
|
|
2143
|
-
addedDate: z.string(),
|
|
2144
|
-
fileMetadata: SumSubImageFileMetadata,
|
|
2142
|
+
previewId: z.string().optional(),
|
|
2143
|
+
addedDate: z.string().optional(),
|
|
2144
|
+
fileMetadata: SumSubImageFileMetadata.optional(),
|
|
2145
2145
|
idDocDef: SumSubImageIdDocDef,
|
|
2146
|
-
reviewResult: SumSubImageReviewResultSchema,
|
|
2147
|
-
attemptId: z.string(),
|
|
2148
|
-
source: z.string(),
|
|
2146
|
+
reviewResult: SumSubImageReviewResultSchema.optional(),
|
|
2147
|
+
attemptId: z.string().optional(),
|
|
2148
|
+
source: z.string().optional(),
|
|
2149
2149
|
deactivated: z["boolean"]().optional()
|
|
2150
2150
|
});
|
|
2151
2151
|
var ApplicantImages = z.object({
|
|
@@ -10316,53 +10316,53 @@ export type SumsubKycDataSchema = z.infer<typeof SumsubKycDataSchema>;
|
|
|
10316
10316
|
export declare const ApplicantImages: z.ZodObject<{
|
|
10317
10317
|
items: z.ZodArray<z.ZodObject<{
|
|
10318
10318
|
id: z.ZodString;
|
|
10319
|
-
previewId: z.ZodString
|
|
10320
|
-
addedDate: z.ZodString
|
|
10321
|
-
fileMetadata: z.ZodObject<{
|
|
10322
|
-
fileName: z.ZodString
|
|
10323
|
-
fileType: z.ZodString
|
|
10324
|
-
fileSize: z.ZodNumber
|
|
10319
|
+
previewId: z.ZodOptional<z.ZodString>;
|
|
10320
|
+
addedDate: z.ZodOptional<z.ZodString>;
|
|
10321
|
+
fileMetadata: z.ZodOptional<z.ZodObject<{
|
|
10322
|
+
fileName: z.ZodOptional<z.ZodString>;
|
|
10323
|
+
fileType: z.ZodOptional<z.ZodString>;
|
|
10324
|
+
fileSize: z.ZodOptional<z.ZodNumber>;
|
|
10325
10325
|
resolution: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10326
|
-
width: z.ZodNumber
|
|
10327
|
-
height: z.ZodNumber
|
|
10326
|
+
width: z.ZodOptional<z.ZodNumber>;
|
|
10327
|
+
height: z.ZodOptional<z.ZodNumber>;
|
|
10328
10328
|
}, "strip", z.ZodTypeAny, {
|
|
10329
|
-
width
|
|
10330
|
-
height
|
|
10329
|
+
width?: number | undefined;
|
|
10330
|
+
height?: number | undefined;
|
|
10331
10331
|
}, {
|
|
10332
|
-
width
|
|
10333
|
-
height
|
|
10332
|
+
width?: number | undefined;
|
|
10333
|
+
height?: number | undefined;
|
|
10334
10334
|
}>>>;
|
|
10335
10335
|
}, "strip", z.ZodTypeAny, {
|
|
10336
|
-
fileName
|
|
10337
|
-
fileType
|
|
10338
|
-
fileSize
|
|
10336
|
+
fileName?: string | undefined;
|
|
10337
|
+
fileType?: string | undefined;
|
|
10338
|
+
fileSize?: number | undefined;
|
|
10339
10339
|
resolution?: {
|
|
10340
|
-
width
|
|
10341
|
-
height
|
|
10340
|
+
width?: number | undefined;
|
|
10341
|
+
height?: number | undefined;
|
|
10342
10342
|
} | null | undefined;
|
|
10343
10343
|
}, {
|
|
10344
|
-
fileName
|
|
10345
|
-
fileType
|
|
10346
|
-
fileSize
|
|
10344
|
+
fileName?: string | undefined;
|
|
10345
|
+
fileType?: string | undefined;
|
|
10346
|
+
fileSize?: number | undefined;
|
|
10347
10347
|
resolution?: {
|
|
10348
|
-
width
|
|
10349
|
-
height
|
|
10348
|
+
width?: number | undefined;
|
|
10349
|
+
height?: number | undefined;
|
|
10350
10350
|
} | null | undefined;
|
|
10351
|
-
}
|
|
10351
|
+
}>>;
|
|
10352
10352
|
idDocDef: z.ZodObject<{
|
|
10353
|
-
country: z.ZodString
|
|
10354
|
-
idDocType: z.ZodString
|
|
10355
|
-
idDocSubType: z.
|
|
10353
|
+
country: z.ZodOptional<z.ZodString>;
|
|
10354
|
+
idDocType: z.ZodOptional<z.ZodString>;
|
|
10355
|
+
idDocSubType: z.ZodString;
|
|
10356
10356
|
}, "strip", z.ZodTypeAny, {
|
|
10357
|
-
|
|
10358
|
-
|
|
10359
|
-
|
|
10357
|
+
idDocSubType: string;
|
|
10358
|
+
country?: string | undefined;
|
|
10359
|
+
idDocType?: string | undefined;
|
|
10360
10360
|
}, {
|
|
10361
|
-
|
|
10362
|
-
|
|
10363
|
-
|
|
10361
|
+
idDocSubType: string;
|
|
10362
|
+
country?: string | undefined;
|
|
10363
|
+
idDocType?: string | undefined;
|
|
10364
10364
|
}>;
|
|
10365
|
-
reviewResult: z.ZodObject<{
|
|
10365
|
+
reviewResult: z.ZodOptional<z.ZodObject<{
|
|
10366
10366
|
reviewAnswer: z.ZodOptional<z.ZodEnum<["GREEN", "RED", "YELLOW"]>>;
|
|
10367
10367
|
moderationComment: z.ZodOptional<z.ZodString>;
|
|
10368
10368
|
clientComment: z.ZodOptional<z.ZodString>;
|
|
@@ -10380,127 +10380,127 @@ export declare const ApplicantImages: z.ZodObject<{
|
|
|
10380
10380
|
rejectLabels?: ("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" | "DIGITAL_DOCUMENT" | "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_BENEFICIAL_OWNERS" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_DIRECTORS" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "COMPANY_INCORRECT_DATA" | "UNSUITABLE_DOCUMENT" | "OUTDATED_DOCUMENT_VERSION" | "COMPANY_NOT_DEFINED_OWNERSHIP_STRUCTURE" | "COMPANY_INACTIVE_ENTITY" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "DB_DATA_NOT_FOUND" | "DB_DATA_MISMATCH" | "INCORRECT_SOCIAL_NUMBER")[] | undefined;
|
|
10381
10381
|
clientComment?: string | undefined;
|
|
10382
10382
|
moderationComment?: string | undefined;
|
|
10383
|
-
}
|
|
10384
|
-
attemptId: z.ZodString
|
|
10385
|
-
source: z.ZodString
|
|
10383
|
+
}>>;
|
|
10384
|
+
attemptId: z.ZodOptional<z.ZodString>;
|
|
10385
|
+
source: z.ZodOptional<z.ZodString>;
|
|
10386
10386
|
deactivated: z.ZodOptional<z.ZodBoolean>;
|
|
10387
10387
|
}, "strip", z.ZodTypeAny, {
|
|
10388
10388
|
id: string;
|
|
10389
|
-
|
|
10390
|
-
|
|
10389
|
+
idDocDef: {
|
|
10390
|
+
idDocSubType: string;
|
|
10391
|
+
country?: string | undefined;
|
|
10392
|
+
idDocType?: string | undefined;
|
|
10393
|
+
};
|
|
10394
|
+
source?: string | undefined;
|
|
10395
|
+
reviewResult?: {
|
|
10391
10396
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | undefined;
|
|
10392
10397
|
reviewRejectType?: "FINAL" | "RETRY" | undefined;
|
|
10393
10398
|
rejectLabels?: ("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" | "DIGITAL_DOCUMENT" | "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_BENEFICIAL_OWNERS" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_DIRECTORS" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "COMPANY_INCORRECT_DATA" | "UNSUITABLE_DOCUMENT" | "OUTDATED_DOCUMENT_VERSION" | "COMPANY_NOT_DEFINED_OWNERSHIP_STRUCTURE" | "COMPANY_INACTIVE_ENTITY" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "DB_DATA_NOT_FOUND" | "DB_DATA_MISMATCH" | "INCORRECT_SOCIAL_NUMBER")[] | undefined;
|
|
10394
10399
|
clientComment?: string | undefined;
|
|
10395
10400
|
moderationComment?: string | undefined;
|
|
10396
|
-
};
|
|
10397
|
-
attemptId
|
|
10398
|
-
previewId
|
|
10399
|
-
addedDate
|
|
10400
|
-
fileMetadata
|
|
10401
|
-
fileName
|
|
10402
|
-
fileType
|
|
10403
|
-
fileSize
|
|
10401
|
+
} | undefined;
|
|
10402
|
+
attemptId?: string | undefined;
|
|
10403
|
+
previewId?: string | undefined;
|
|
10404
|
+
addedDate?: string | undefined;
|
|
10405
|
+
fileMetadata?: {
|
|
10406
|
+
fileName?: string | undefined;
|
|
10407
|
+
fileType?: string | undefined;
|
|
10408
|
+
fileSize?: number | undefined;
|
|
10404
10409
|
resolution?: {
|
|
10405
|
-
width
|
|
10406
|
-
height
|
|
10410
|
+
width?: number | undefined;
|
|
10411
|
+
height?: number | undefined;
|
|
10407
10412
|
} | null | undefined;
|
|
10408
|
-
};
|
|
10409
|
-
idDocDef: {
|
|
10410
|
-
country: string;
|
|
10411
|
-
idDocType: string;
|
|
10412
|
-
idDocSubType?: string | null | undefined;
|
|
10413
|
-
};
|
|
10413
|
+
} | undefined;
|
|
10414
10414
|
deactivated?: boolean | undefined;
|
|
10415
10415
|
}, {
|
|
10416
10416
|
id: string;
|
|
10417
|
-
|
|
10418
|
-
|
|
10417
|
+
idDocDef: {
|
|
10418
|
+
idDocSubType: string;
|
|
10419
|
+
country?: string | undefined;
|
|
10420
|
+
idDocType?: string | undefined;
|
|
10421
|
+
};
|
|
10422
|
+
source?: string | undefined;
|
|
10423
|
+
reviewResult?: {
|
|
10419
10424
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | undefined;
|
|
10420
10425
|
reviewRejectType?: "FINAL" | "RETRY" | undefined;
|
|
10421
10426
|
rejectLabels?: ("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" | "DIGITAL_DOCUMENT" | "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_BENEFICIAL_OWNERS" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_DIRECTORS" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "COMPANY_INCORRECT_DATA" | "UNSUITABLE_DOCUMENT" | "OUTDATED_DOCUMENT_VERSION" | "COMPANY_NOT_DEFINED_OWNERSHIP_STRUCTURE" | "COMPANY_INACTIVE_ENTITY" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "DB_DATA_NOT_FOUND" | "DB_DATA_MISMATCH" | "INCORRECT_SOCIAL_NUMBER")[] | undefined;
|
|
10422
10427
|
clientComment?: string | undefined;
|
|
10423
10428
|
moderationComment?: string | undefined;
|
|
10424
|
-
};
|
|
10425
|
-
attemptId
|
|
10426
|
-
previewId
|
|
10427
|
-
addedDate
|
|
10428
|
-
fileMetadata
|
|
10429
|
-
fileName
|
|
10430
|
-
fileType
|
|
10431
|
-
fileSize
|
|
10429
|
+
} | undefined;
|
|
10430
|
+
attemptId?: string | undefined;
|
|
10431
|
+
previewId?: string | undefined;
|
|
10432
|
+
addedDate?: string | undefined;
|
|
10433
|
+
fileMetadata?: {
|
|
10434
|
+
fileName?: string | undefined;
|
|
10435
|
+
fileType?: string | undefined;
|
|
10436
|
+
fileSize?: number | undefined;
|
|
10432
10437
|
resolution?: {
|
|
10433
|
-
width
|
|
10434
|
-
height
|
|
10438
|
+
width?: number | undefined;
|
|
10439
|
+
height?: number | undefined;
|
|
10435
10440
|
} | null | undefined;
|
|
10436
|
-
};
|
|
10437
|
-
idDocDef: {
|
|
10438
|
-
country: string;
|
|
10439
|
-
idDocType: string;
|
|
10440
|
-
idDocSubType?: string | null | undefined;
|
|
10441
|
-
};
|
|
10441
|
+
} | undefined;
|
|
10442
10442
|
deactivated?: boolean | undefined;
|
|
10443
10443
|
}>, "many">;
|
|
10444
10444
|
totalItems: z.ZodNumber;
|
|
10445
10445
|
}, "strip", z.ZodTypeAny, {
|
|
10446
10446
|
items: {
|
|
10447
10447
|
id: string;
|
|
10448
|
-
|
|
10449
|
-
|
|
10448
|
+
idDocDef: {
|
|
10449
|
+
idDocSubType: string;
|
|
10450
|
+
country?: string | undefined;
|
|
10451
|
+
idDocType?: string | undefined;
|
|
10452
|
+
};
|
|
10453
|
+
source?: string | undefined;
|
|
10454
|
+
reviewResult?: {
|
|
10450
10455
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | undefined;
|
|
10451
10456
|
reviewRejectType?: "FINAL" | "RETRY" | undefined;
|
|
10452
10457
|
rejectLabels?: ("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" | "DIGITAL_DOCUMENT" | "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_BENEFICIAL_OWNERS" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_DIRECTORS" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "COMPANY_INCORRECT_DATA" | "UNSUITABLE_DOCUMENT" | "OUTDATED_DOCUMENT_VERSION" | "COMPANY_NOT_DEFINED_OWNERSHIP_STRUCTURE" | "COMPANY_INACTIVE_ENTITY" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "DB_DATA_NOT_FOUND" | "DB_DATA_MISMATCH" | "INCORRECT_SOCIAL_NUMBER")[] | undefined;
|
|
10453
10458
|
clientComment?: string | undefined;
|
|
10454
10459
|
moderationComment?: string | undefined;
|
|
10455
|
-
};
|
|
10456
|
-
attemptId
|
|
10457
|
-
previewId
|
|
10458
|
-
addedDate
|
|
10459
|
-
fileMetadata
|
|
10460
|
-
fileName
|
|
10461
|
-
fileType
|
|
10462
|
-
fileSize
|
|
10460
|
+
} | undefined;
|
|
10461
|
+
attemptId?: string | undefined;
|
|
10462
|
+
previewId?: string | undefined;
|
|
10463
|
+
addedDate?: string | undefined;
|
|
10464
|
+
fileMetadata?: {
|
|
10465
|
+
fileName?: string | undefined;
|
|
10466
|
+
fileType?: string | undefined;
|
|
10467
|
+
fileSize?: number | undefined;
|
|
10463
10468
|
resolution?: {
|
|
10464
|
-
width
|
|
10465
|
-
height
|
|
10469
|
+
width?: number | undefined;
|
|
10470
|
+
height?: number | undefined;
|
|
10466
10471
|
} | null | undefined;
|
|
10467
|
-
};
|
|
10468
|
-
idDocDef: {
|
|
10469
|
-
country: string;
|
|
10470
|
-
idDocType: string;
|
|
10471
|
-
idDocSubType?: string | null | undefined;
|
|
10472
|
-
};
|
|
10472
|
+
} | undefined;
|
|
10473
10473
|
deactivated?: boolean | undefined;
|
|
10474
10474
|
}[];
|
|
10475
10475
|
totalItems: number;
|
|
10476
10476
|
}, {
|
|
10477
10477
|
items: {
|
|
10478
10478
|
id: string;
|
|
10479
|
-
|
|
10480
|
-
|
|
10479
|
+
idDocDef: {
|
|
10480
|
+
idDocSubType: string;
|
|
10481
|
+
country?: string | undefined;
|
|
10482
|
+
idDocType?: string | undefined;
|
|
10483
|
+
};
|
|
10484
|
+
source?: string | undefined;
|
|
10485
|
+
reviewResult?: {
|
|
10481
10486
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | undefined;
|
|
10482
10487
|
reviewRejectType?: "FINAL" | "RETRY" | undefined;
|
|
10483
10488
|
rejectLabels?: ("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" | "DIGITAL_DOCUMENT" | "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_BENEFICIAL_OWNERS" | "COMPANY_NOT_VALIDATED_BENEFICIARIES" | "COMPANY_NOT_VALIDATED_DIRECTORS" | "COMPANY_NOT_DEFINED_REPRESENTATIVES" | "COMPANY_NOT_VALIDATED_REPRESENTATIVES" | "COMPANY_INCORRECT_DATA" | "UNSUITABLE_DOCUMENT" | "OUTDATED_DOCUMENT_VERSION" | "COMPANY_NOT_DEFINED_OWNERSHIP_STRUCTURE" | "COMPANY_INACTIVE_ENTITY" | "APPLICANT_INTERRUPTED_INTERVIEW" | "DOCUMENT_MISSING" | "UNSUITABLE_ENV" | "CONNECTION_INTERRUPTED" | "UNSUPPORTED_LANGUAGE" | "THIRD_PARTY_INVOLVED" | "CHECK_UNAVAILABLE" | "DB_DATA_NOT_FOUND" | "DB_DATA_MISMATCH" | "INCORRECT_SOCIAL_NUMBER")[] | undefined;
|
|
10484
10489
|
clientComment?: string | undefined;
|
|
10485
10490
|
moderationComment?: string | undefined;
|
|
10486
|
-
};
|
|
10487
|
-
attemptId
|
|
10488
|
-
previewId
|
|
10489
|
-
addedDate
|
|
10490
|
-
fileMetadata
|
|
10491
|
-
fileName
|
|
10492
|
-
fileType
|
|
10493
|
-
fileSize
|
|
10491
|
+
} | undefined;
|
|
10492
|
+
attemptId?: string | undefined;
|
|
10493
|
+
previewId?: string | undefined;
|
|
10494
|
+
addedDate?: string | undefined;
|
|
10495
|
+
fileMetadata?: {
|
|
10496
|
+
fileName?: string | undefined;
|
|
10497
|
+
fileType?: string | undefined;
|
|
10498
|
+
fileSize?: number | undefined;
|
|
10494
10499
|
resolution?: {
|
|
10495
|
-
width
|
|
10496
|
-
height
|
|
10500
|
+
width?: number | undefined;
|
|
10501
|
+
height?: number | undefined;
|
|
10497
10502
|
} | null | undefined;
|
|
10498
|
-
};
|
|
10499
|
-
idDocDef: {
|
|
10500
|
-
country: string;
|
|
10501
|
-
idDocType: string;
|
|
10502
|
-
idDocSubType?: string | null | undefined;
|
|
10503
|
-
};
|
|
10503
|
+
} | undefined;
|
|
10504
10504
|
deactivated?: boolean | undefined;
|
|
10505
10505
|
}[];
|
|
10506
10506
|
totalItems: number;
|
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-b3e91b84.cjs.dev.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-e1c7831a.cjs.dev.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var vault_schema = require('../../dist/vault.schema-516f8cf7.cjs.prod.cjs');
|
|
6
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
6
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-c2b18378.cjs.prod.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { fD as ANALYSIS_TYPES, fE as AnalysisType, fM as Coin, fR as EntityRiskDefaultsMap, fQ as EntityRiskDefaultsValues, fX as GetActiveBlockchains, fW as GetActiveBlockchainsRequest, fY as GetActiveBlockchainsResponse, f$ as GetAddressAnalysis, fZ as GetAddressAnalysisRequest, g0 as GetAddressAnalysisResponse, fI as NonMinimalScorechainBlockchain, fF as OBJECT_TYPES, fG as ObjectType, g2 as RawScorechainResult, fP as RiskExplanation, fN as RiskSeverity, fU as ScorechainAnalysis, fH as ScorechainBlockchain, fJ as ScorechainBlockchainToNamespace, f_ as ScorechainEntity, fO as ScorechainEntityType, fT as ScorechainError, fS as ScorechainErrorResponse, g3 as ScorechainRiskToRiskLevel, g5 as ScorechainWalletRiskLevel, g4 as ScorechainWalletRiskLevels, g1 as ScoringAnalysisApiRequest, fB as ScoringAnalysisRequest, fV as ScoringAnalysisResponse, fC as WorkflowsScoringAnalysisRequest, fL as compareRiskLevels, fK as getRiskLevelByRiskScore } from '../../dist/vault.schema-88946b11.esm.mjs';
|
|
2
|
-
export { K as AMLMetadata, cL as APPLICANT_CHECK_STATUSES, d0 as ApiErrorCommandResponse, c$ as ApiErrorResponse, d1 as ApiSuccessCommandResponse, cM as ApplicantCheckStatus, cx as ApplicantImages, bw as ApplicantMemberOfSchema, bN as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bP as BeneficiaryCompanyCustomerClaims, bQ as BeneficiaryCompanyCustomerClaimsArray, bO as BeneficiaryType, dc as BeneficiaryVerificationStatus, dd 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, d9 as COMPANY_DOCUMENT_STATUS, 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, dx as ChainalysisApiError, a$ as ChainalysisConfig, dv as ChainalysisErrorCodes, bc as ChainalysisProvider, dt as ChainalysisRegisterApiResponse, dy as ChainalysisRegisterResponse, ds as ChainalysisRequest, dw as ChainalysisRiskAssessmentApiResponse, dz as ChainalysisRiskAssessmentResponse, du as ChainalysisRiskLevel, a4 as CoerceDateUTC, dD as CoinMarketCapApiResponse, dE as CoinMarketCapFiatId, dB as CoinMarketCapQuote, dC as CoinMarketCapQuotes, dA as CoinMarketCapRequest, db as CompanyDocumentMetaData, da as CompanyDocumentStatus, 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, cX as CredentialMetadata, cW as CustomerContactInformationOutput, di as CustomerDocumentMetaData, dj as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cj as DocumentMetadataSchema, ck as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cJ as EmailVerificationResponse, F as File, cV as GetCredentialsOutput, df as GetKybSessionInput, dg as GetKybSessionResponse, cP as GetKycSessionInput, cQ as GetKycSessionResponse, cY as GetKycSessionResponseWithCredentialsMetadata, d2 as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cZ as IDImageMetaData, bL as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bM as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, d5 as KYB_RESULTS, d7 as KYB_SESSION_STATUSES, d3 as KYB_STEP_TYPES, b_ as KYC_DOC_SIDES, cF as KYC_RESULTS, cH as KYC_SESSION_STATUSES, cB as KYC_STEP_TYPES, d6 as KybResult, d8 as KybSessionStatus, d4 as KybStep, b$ as KycDocSide, cG as KycResult, cI as KycSessionStatus, cC as KycStep, cE as KycStepStatus, cD as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, dq as MerkleAddressApiError, dp as MerkleAddressApiResponse, dn as MerkleAddressRequest, dr as MerkleAddressResponse, dm as MerkleBlockChainCodes, dl as MerkleBlockChainName, dk 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, cU as ProofOfResidenceDocumentType, cT 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, cc as SUMSUB_COMPANY_BENEFICIARY_GROUP, bW as SUMSUB_DOC_TYPES, c0 as SUMSUB_FLOW_LEVEL, cs as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, bY as SUMSUB_KYC_DOC_TYPES, ch as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, cy as SUMSUB_REVIEW_REJECT_LABELS, cA as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bU as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bS 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, de as SelectKybSession, cN as SelectKycSession, cK as SelectKycSessionStep, cO as SelectKycSessionWithCompletedSteps, c_ as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bJ as SumSubAddress, bK as SumSubApplicantInfo, cm as SumSubApplicantResetSchema, cl as SumSubApplicantReviewStatusSchema, cr as SumSubApplicantSchema, bC as SumSubApplicantType, cg as SumSubApplicantVerificationStepSchema, bR as SumSubCompanyApplicantInfo, ca as SumSubCompanyApplicantSchema, bX as SumSubDocType, c1 as SumSubFlowLevel, cn as SumSubGenerateExternalWebSdkLinkSchema, cb as SumSubImageId, c5 as SumSubImageReviewResultSchema, c6 as SumSubImageStatus, c9 as SumSubIndividualApplicantSchema, bZ as SumSubKycDocType, ci as SumSubMediaContentType, c2 as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cz as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, c4 as SumSubReviewResultSchema, bV as SumSubReviewStatus, cw as SumSubSimilarApplicantsSchema, bA as SumSubStep, cf as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c8 as SumsubApplicantType, c7 as SumsubApplicantTypes, cd as SumsubCompanyBeneficiaryGroup, bI as SumsubCountryCode, cq as SumsubKybDataSchema, cv as SumsubKybSessionFlowSection, cu as SumsubKybSessionFlowSectionItem, ct as SumsubKybSessionFlowSectionStatus, cp as SumsubKycDataSchema, bH as SumsubReviewDecision, ce as SumsubStepStatus, co as SumsubVideoCallData, bT 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, dh as UpdateKybSessionOutput, cR as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c3 as UploadDocumentRequest, cS 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-
|
|
2
|
+
export { K as AMLMetadata, cL as APPLICANT_CHECK_STATUSES, d0 as ApiErrorCommandResponse, c$ as ApiErrorResponse, d1 as ApiSuccessCommandResponse, cM as ApplicantCheckStatus, cx as ApplicantImages, bw as ApplicantMemberOfSchema, bN as BENEFICIARY_TYPES, by as BaseApplicantActionSchema, b6 as BaseProvider, bP as BeneficiaryCompanyCustomerClaims, bQ as BeneficiaryCompanyCustomerClaimsArray, bO as BeneficiaryType, dc as BeneficiaryVerificationStatus, dd 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, d9 as COMPANY_DOCUMENT_STATUS, 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, dx as ChainalysisApiError, a$ as ChainalysisConfig, dv as ChainalysisErrorCodes, bc as ChainalysisProvider, dt as ChainalysisRegisterApiResponse, dy as ChainalysisRegisterResponse, ds as ChainalysisRequest, dw as ChainalysisRiskAssessmentApiResponse, dz as ChainalysisRiskAssessmentResponse, du as ChainalysisRiskLevel, a4 as CoerceDateUTC, dD as CoinMarketCapApiResponse, dE as CoinMarketCapFiatId, dB as CoinMarketCapQuote, dC as CoinMarketCapQuotes, dA as CoinMarketCapRequest, db as CompanyDocumentMetaData, da as CompanyDocumentStatus, 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, cX as CredentialMetadata, cW as CustomerContactInformationOutput, di as CustomerDocumentMetaData, dj as CustomerStatusResults, aZ as DataProvider, aY as DataProviderOptions, bs as DeleteProviderInput, bt as DeleteProviderResponse, y as DocumentIdMetadata, x as DocumentIdType, D as DocumentIdTypes, cj as DocumentMetadataSchema, ck as DocumentSubmitResponse, J as EmailMetadata, E as EmailVerificationAnalysisResponse, cJ as EmailVerificationResponse, F as File, cV as GetCredentialsOutput, df as GetKybSessionInput, dg as GetKybSessionResponse, cP as GetKycSessionInput, cQ as GetKycSessionResponse, cY as GetKycSessionResponseWithCredentialsMetadata, d2 as GetKycSessionsOutput, bm as GetProviderResponse, bl as GetProvidersResponse, ab as HIGH_RISK_TYPES, cZ as IDImageMetaData, bL as INDIVIDUAL_BENEFICIARY_RELATIONS, aX as IdentityProvider, aW as IdentityProviderOptions, bM as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b2 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bd as IpqualityscoreProvider, d5 as KYB_RESULTS, d7 as KYB_SESSION_STATUSES, d3 as KYB_STEP_TYPES, b_ as KYC_DOC_SIDES, cF as KYC_RESULTS, cH as KYC_SESSION_STATUSES, cB as KYC_STEP_TYPES, d6 as KybResult, d8 as KybSessionStatus, d4 as KybStep, b$ as KycDocSide, cG as KycResult, cI as KycSessionStatus, cC as KycStep, cE as KycStepStatus, cD as KycStepStatuses, L as LivenessMetadata, ac as MEDIUM_RISK_TYPES, av as MatchStatus, au as MatchStatuses, aB as MatchTypeDetail, M as MergedProviders, dq as MerkleAddressApiError, dp as MerkleAddressApiResponse, dn as MerkleAddressRequest, dr as MerkleAddressResponse, dm as MerkleBlockChainCodes, dl as MerkleBlockChainName, dk 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, cU as ProofOfResidenceDocumentType, cT 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, cc as SUMSUB_COMPANY_BENEFICIARY_GROUP, bW as SUMSUB_DOC_TYPES, c0 as SUMSUB_FLOW_LEVEL, cs as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, bY as SUMSUB_KYC_DOC_TYPES, ch as SUMSUB_MEDIA_CONTENT_TYPES, bD as SUMSUB_REVIEW_ANSWERS, cy as SUMSUB_REVIEW_REJECT_LABELS, cA as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bF as SUMSUB_REVIEW_REJECT_TYPES, bU as SUMSUB_REVIEW_STATUSES, bz as SUMSUB_STEPS, bS 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, de as SelectKybSession, cN as SelectKycSession, cK as SelectKycSessionStep, cO as SelectKycSessionWithCompletedSteps, c_ as SelfieImageMetaData, r as Session, s as SessionWithoutSteps, p as Status, S as Statuses, O as Step, u as StepType, t as StepTypes, bJ as SumSubAddress, bK as SumSubApplicantInfo, cm as SumSubApplicantResetSchema, cl as SumSubApplicantReviewStatusSchema, cr as SumSubApplicantSchema, bC as SumSubApplicantType, cg as SumSubApplicantVerificationStepSchema, bR as SumSubCompanyApplicantInfo, ca as SumSubCompanyApplicantSchema, bX as SumSubDocType, c1 as SumSubFlowLevel, cn as SumSubGenerateExternalWebSdkLinkSchema, cb as SumSubImageId, c5 as SumSubImageReviewResultSchema, c6 as SumSubImageStatus, c9 as SumSubIndividualApplicantSchema, bZ as SumSubKycDocType, ci as SumSubMediaContentType, c2 as SumSubRequiredIdDoc, bE as SumSubReviewAnswer, cz as SumSubReviewRejectLabel, bG as SumSubReviewRejectType, c4 as SumSubReviewResultSchema, bV as SumSubReviewStatus, cw as SumSubSimilarApplicantsSchema, bA as SumSubStep, cf as SumSubVerificationStepSchema, bx as SumSubWebhookSchema, c8 as SumsubApplicantType, c7 as SumsubApplicantTypes, cd as SumsubCompanyBeneficiaryGroup, bI as SumsubCountryCode, cq as SumsubKybDataSchema, cv as SumsubKybSessionFlowSection, cu as SumsubKybSessionFlowSectionItem, ct as SumsubKybSessionFlowSectionStatus, cp as SumsubKycDataSchema, bH as SumsubReviewDecision, ce as SumsubStepStatus, co as SumsubVideoCallData, bT 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, dh as UpdateKybSessionOutput, cR as UpdateKycSessionOutput, bp as UpdateProviderInput, bq as UpdateProviderResponse, az as UpdateSearchEntitiesInput, ay as UpdateSearchInput, c3 as UploadDocumentRequest, cS 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-f93fe3c0.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 zod = require('zod');
|
|
6
6
|
var vault_schema = require('../../dist/vault.schema-b3e91b84.cjs.dev.cjs');
|
|
7
7
|
var identityApi_schema = require('../../dist/identity-api.schema-65dd6440.cjs.dev.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-e1c7831a.cjs.dev.cjs');
|
|
9
9
|
var toArray = require('../../dist/toArray-37445ee3.cjs.dev.cjs');
|
|
10
10
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
11
11
|
require('nanoid');
|
|
@@ -5,7 +5,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var vault_schema = require('../../dist/vault.schema-516f8cf7.cjs.prod.cjs');
|
|
7
7
|
var identityApi_schema = require('../../dist/identity-api.schema-6c70e3aa.cjs.prod.cjs');
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-c2b18378.cjs.prod.cjs');
|
|
9
9
|
var toArray = require('../../dist/toArray-bcc5ef4d.cjs.prod.cjs');
|
|
10
10
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
11
11
|
require('nanoid');
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
2
|
import { aW as UuidString, dn as ExternalCustomerId, dl as WorkflowId, be as RiskScoreType, bg as CustomerType, bm as CustomerOnboardingLevel, bo as CustomerStatus, b2 as ISO3CountryCode, at as BlockchainAddress, dI as GenericVerifiableCredentialSchema, fp as WalletScreeningData, e5 as TransactionTypes, eb as TransactionReviewStatuses, fv as _toConsumableArray, aV as EnvironmentSchema } from '../../dist/vault.schema-88946b11.esm.mjs';
|
|
3
3
|
import { Y as RuleResultStatus } from '../../dist/identity-api.schema-362b1c56.esm.mjs';
|
|
4
|
-
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-
|
|
4
|
+
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-f93fe3c0.esm.mjs';
|
|
5
5
|
import { _ as _toArray } from '../../dist/toArray-f38f22ea.esm.mjs';
|
|
6
6
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
7
7
|
import 'nanoid';
|