@nexeraid/identity-schemas 2.3.5-dev → 2.3.7-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{customers.schema-ded5d3c7.cjs.prod.js → customers.schema-1acdda1a.cjs.prod.js} +7 -5
- package/dist/{customers.schema-afc69ee2.esm.js → customers.schema-37608679.esm.js} +7 -5
- package/dist/{customers.schema-2bc7fd03.cjs.dev.js → customers.schema-e40f7e9a.cjs.dev.js} +7 -5
- package/dist/declarations/src/config.schema.d.ts +2 -0
- package/dist/declarations/src/config.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +35 -68
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-16a62836.cjs.dev.js → frontend-utilities.schema-248cbc44.cjs.dev.js} +1 -1
- package/dist/{frontend-utilities.schema-6b158a83.cjs.prod.js → frontend-utilities.schema-995d3ffd.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-2529281f.esm.js → frontend-utilities.schema-e82b28c5.esm.js} +1 -1
- package/dist/{identity-api.schema-01af1231.esm.js → identity-api.schema-74e951be.esm.js} +2 -1
- package/dist/{identity-api.schema-da491c8f.cjs.prod.js → identity-api.schema-7bb2255e.cjs.prod.js} +2 -0
- package/dist/{identity-api.schema-9137e5c5.cjs.dev.js → identity-api.schema-df9e231d.cjs.dev.js} +2 -0
- package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -2
- package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -2
- package/dist/nexeraid-identity-schemas.esm.js +3 -3
- package/dist/package.json +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +2 -2
package/dist/{customers.schema-ded5d3c7.cjs.prod.js → customers.schema-1acdda1a.cjs.prod.js}
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var zod = require('zod');
|
|
4
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
4
|
+
var identityApi_schema = require('./identity-api.schema-7bb2255e.cjs.prod.js');
|
|
5
5
|
|
|
6
6
|
// based on https://tech-doc.api.scorechain.com/
|
|
7
7
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2238,7 +2238,7 @@ var BaseApplicantActionSchema = zod.z.object({
|
|
|
2238
2238
|
reviewResult: SumSubReviewResultSchema
|
|
2239
2239
|
});
|
|
2240
2240
|
|
|
2241
|
-
var KYC_STEP_TYPES = ["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
2241
|
+
var KYC_STEP_TYPES = ["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
2242
2242
|
var KycStep = zod.z["enum"](KYC_STEP_TYPES);
|
|
2243
2243
|
var KYC_RESULTS = ["Passed", "ToBeManuallyChecked",
|
|
2244
2244
|
// use in case applicantReviewed event comes without reviewResult.reviewAnswer
|
|
@@ -2248,6 +2248,8 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2248
2248
|
// when we ask for current session and it does not exists
|
|
2249
2249
|
"Started",
|
|
2250
2250
|
// when we receive applicantCreated event
|
|
2251
|
+
"EmailVerified",
|
|
2252
|
+
// when otp code is verified
|
|
2251
2253
|
"UserDataSubmitted",
|
|
2252
2254
|
// when we receive applicantPending event
|
|
2253
2255
|
"VerificationChecked",
|
|
@@ -2258,8 +2260,9 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2258
2260
|
];
|
|
2259
2261
|
var KycSessionStatus = zod.z["enum"](KYC_SESSION_STATUSES);
|
|
2260
2262
|
var EmailVerificationResponse = zod.z.object({
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
+
emailVerificationId: zod.z.string().uuid(),
|
|
2264
|
+
email: zod.z.string().email(),
|
|
2265
|
+
verified: zod.z["boolean"]()
|
|
2263
2266
|
});
|
|
2264
2267
|
var SelectKycSession = zod.z.object({
|
|
2265
2268
|
id: identityApi_schema.UuidString,
|
|
@@ -2292,7 +2295,6 @@ var GetKycSessionInput = zod.z.object({
|
|
|
2292
2295
|
});
|
|
2293
2296
|
var GetKycSessionResponse = SelectKycSession.extend({
|
|
2294
2297
|
stepsCompleted: zod.z.array(SelectKycSessionStep),
|
|
2295
|
-
emailVerification: EmailVerificationResponse.optional(),
|
|
2296
2298
|
customerStatus: identityApi_schema.CustomerStatus.nullish(),
|
|
2297
2299
|
sumSubReviewResult: zod.z.object(identityApi_schema._defineProperty(identityApi_schema._defineProperty({}, SumSubStep["enum"].IDENTITY, zod.z.array(SumSubReviewRejectLabel)), SumSubStep["enum"].SELFIE, zod.z.array(SumSubReviewRejectLabel))).nullish()
|
|
2298
2300
|
});
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { a2 as BlockchainAddress, z as AddressSchema,
|
|
2
|
+
import { a2 as BlockchainAddress, z as AddressSchema, al as Alpha2Country, ae as UuidString, e1 as _toConsumableArray, e3 as _arrayWithHoles, e4 as _unsupportedIterableToArray, e5 as _nonIterableRest, aj as ISO3CountryCode, a5 as BlockchainNamespace, bs as SdkVerificationOutput, aB as CustomerStatus, e6 as _defineProperty, dU as ProofOfResidenceCredentialSubjectSchema, cl as QrCodeLinkWithSchemaType, aC as BasicCustomerContactInformation, d_ as CredentialType } from './identity-api.schema-74e951be.esm.js';
|
|
3
3
|
|
|
4
4
|
// based on https://tech-doc.api.scorechain.com/
|
|
5
5
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2236,7 +2236,7 @@ var BaseApplicantActionSchema = z.object({
|
|
|
2236
2236
|
reviewResult: SumSubReviewResultSchema
|
|
2237
2237
|
});
|
|
2238
2238
|
|
|
2239
|
-
var KYC_STEP_TYPES = ["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
2239
|
+
var KYC_STEP_TYPES = ["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
2240
2240
|
var KycStep = z["enum"](KYC_STEP_TYPES);
|
|
2241
2241
|
var KYC_RESULTS = ["Passed", "ToBeManuallyChecked",
|
|
2242
2242
|
// use in case applicantReviewed event comes without reviewResult.reviewAnswer
|
|
@@ -2246,6 +2246,8 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2246
2246
|
// when we ask for current session and it does not exists
|
|
2247
2247
|
"Started",
|
|
2248
2248
|
// when we receive applicantCreated event
|
|
2249
|
+
"EmailVerified",
|
|
2250
|
+
// when otp code is verified
|
|
2249
2251
|
"UserDataSubmitted",
|
|
2250
2252
|
// when we receive applicantPending event
|
|
2251
2253
|
"VerificationChecked",
|
|
@@ -2256,8 +2258,9 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2256
2258
|
];
|
|
2257
2259
|
var KycSessionStatus = z["enum"](KYC_SESSION_STATUSES);
|
|
2258
2260
|
var EmailVerificationResponse = z.object({
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
+
emailVerificationId: z.string().uuid(),
|
|
2262
|
+
email: z.string().email(),
|
|
2263
|
+
verified: z["boolean"]()
|
|
2261
2264
|
});
|
|
2262
2265
|
var SelectKycSession = z.object({
|
|
2263
2266
|
id: UuidString,
|
|
@@ -2290,7 +2293,6 @@ var GetKycSessionInput = z.object({
|
|
|
2290
2293
|
});
|
|
2291
2294
|
var GetKycSessionResponse = SelectKycSession.extend({
|
|
2292
2295
|
stepsCompleted: z.array(SelectKycSessionStep),
|
|
2293
|
-
emailVerification: EmailVerificationResponse.optional(),
|
|
2294
2296
|
customerStatus: CustomerStatus.nullish(),
|
|
2295
2297
|
sumSubReviewResult: z.object(_defineProperty(_defineProperty({}, SumSubStep["enum"].IDENTITY, z.array(SumSubReviewRejectLabel)), SumSubStep["enum"].SELFIE, z.array(SumSubReviewRejectLabel))).nullish()
|
|
2296
2298
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var zod = require('zod');
|
|
4
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
4
|
+
var identityApi_schema = require('./identity-api.schema-df9e231d.cjs.dev.js');
|
|
5
5
|
|
|
6
6
|
// based on https://tech-doc.api.scorechain.com/
|
|
7
7
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2238,7 +2238,7 @@ var BaseApplicantActionSchema = zod.z.object({
|
|
|
2238
2238
|
reviewResult: SumSubReviewResultSchema
|
|
2239
2239
|
});
|
|
2240
2240
|
|
|
2241
|
-
var KYC_STEP_TYPES = ["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
2241
|
+
var KYC_STEP_TYPES = ["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
2242
2242
|
var KycStep = zod.z["enum"](KYC_STEP_TYPES);
|
|
2243
2243
|
var KYC_RESULTS = ["Passed", "ToBeManuallyChecked",
|
|
2244
2244
|
// use in case applicantReviewed event comes without reviewResult.reviewAnswer
|
|
@@ -2248,6 +2248,8 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2248
2248
|
// when we ask for current session and it does not exists
|
|
2249
2249
|
"Started",
|
|
2250
2250
|
// when we receive applicantCreated event
|
|
2251
|
+
"EmailVerified",
|
|
2252
|
+
// when otp code is verified
|
|
2251
2253
|
"UserDataSubmitted",
|
|
2252
2254
|
// when we receive applicantPending event
|
|
2253
2255
|
"VerificationChecked",
|
|
@@ -2258,8 +2260,9 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2258
2260
|
];
|
|
2259
2261
|
var KycSessionStatus = zod.z["enum"](KYC_SESSION_STATUSES);
|
|
2260
2262
|
var EmailVerificationResponse = zod.z.object({
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
+
emailVerificationId: zod.z.string().uuid(),
|
|
2264
|
+
email: zod.z.string().email(),
|
|
2265
|
+
verified: zod.z["boolean"]()
|
|
2263
2266
|
});
|
|
2264
2267
|
var SelectKycSession = zod.z.object({
|
|
2265
2268
|
id: identityApi_schema.UuidString,
|
|
@@ -2292,7 +2295,6 @@ var GetKycSessionInput = zod.z.object({
|
|
|
2292
2295
|
});
|
|
2293
2296
|
var GetKycSessionResponse = SelectKycSession.extend({
|
|
2294
2297
|
stepsCompleted: zod.z.array(SelectKycSessionStep),
|
|
2295
|
-
emailVerification: EmailVerificationResponse.optional(),
|
|
2296
2298
|
customerStatus: identityApi_schema.CustomerStatus.nullish(),
|
|
2297
2299
|
sumSubReviewResult: zod.z.object(identityApi_schema._defineProperty(identityApi_schema._defineProperty({}, SumSubStep["enum"].IDENTITY, zod.z.array(SumSubReviewRejectLabel)), SumSubStep["enum"].SELFIE, zod.z.array(SumSubReviewRejectLabel))).nullish()
|
|
2298
2300
|
});
|
|
@@ -110,6 +110,8 @@ export declare const EnvironmentSchema: z.ZodEnum<["cicd", "local", "test-dev-1"
|
|
|
110
110
|
export type Environment = z.infer<typeof EnvironmentSchema>;
|
|
111
111
|
export declare const UuidString: z.ZodString;
|
|
112
112
|
export type UuidString = z.infer<typeof UuidString>;
|
|
113
|
+
export declare const OtpCode: z.ZodString;
|
|
114
|
+
export type OtpCode = z.infer<typeof OtpCode>;
|
|
113
115
|
/**
|
|
114
116
|
* Zod parse without throwing an error if the value is invalid
|
|
115
117
|
* Rather, it returns a object with optional error and data fields
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.schema.d.ts","sourceRoot":"../../../src","sources":["config.schema.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"config.schema.d.ts","sourceRoot":"../../../src","sources":["config.schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,22 +1,25 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const KYC_STEP_TYPES: readonly ["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
3
|
-
export declare const KycStep: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
2
|
+
export declare const KYC_STEP_TYPES: readonly ["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
|
|
3
|
+
export declare const KycStep: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
4
4
|
export type KycStep = z.infer<typeof KycStep>;
|
|
5
5
|
export declare const KYC_RESULTS: readonly ["Passed", "ToBeManuallyChecked", "Rejected", "Retry"];
|
|
6
6
|
export declare const KycResult: z.ZodEnum<["Passed", "ToBeManuallyChecked", "Rejected", "Retry"]>;
|
|
7
7
|
export type KycResult = z.infer<typeof KycResult>;
|
|
8
|
-
export declare const KYC_SESSION_STATUSES: readonly ["NotStarted", "Started", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"];
|
|
9
|
-
export declare const KycSessionStatus: z.ZodEnum<["NotStarted", "Started", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>;
|
|
8
|
+
export declare const KYC_SESSION_STATUSES: readonly ["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"];
|
|
9
|
+
export declare const KycSessionStatus: z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>;
|
|
10
10
|
export type KycSessionStatus = z.infer<typeof KycSessionStatus>;
|
|
11
11
|
export declare const EmailVerificationResponse: z.ZodObject<{
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
emailVerificationId: z.ZodString;
|
|
13
|
+
email: z.ZodString;
|
|
14
|
+
verified: z.ZodBoolean;
|
|
14
15
|
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
email
|
|
16
|
-
|
|
16
|
+
email: string;
|
|
17
|
+
emailVerificationId: string;
|
|
18
|
+
verified: boolean;
|
|
17
19
|
}, {
|
|
18
|
-
email
|
|
19
|
-
|
|
20
|
+
email: string;
|
|
21
|
+
emailVerificationId: string;
|
|
22
|
+
verified: boolean;
|
|
20
23
|
}>;
|
|
21
24
|
export type EmailVerificationResponse = z.infer<typeof EmailVerificationResponse>;
|
|
22
25
|
export declare const SelectKycSession: z.ZodObject<{
|
|
@@ -30,7 +33,7 @@ export declare const SelectKycSession: z.ZodObject<{
|
|
|
30
33
|
reviewAnswer: z.ZodOptional<z.ZodNullable<z.ZodEnum<["GREEN", "RED", "YELLOW"]>>>;
|
|
31
34
|
reviewRejectType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FINAL", "RETRY"]>>>;
|
|
32
35
|
sandboxMode: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
33
|
-
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
36
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
34
37
|
ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
35
38
|
notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
36
39
|
createdAt: z.ZodDate;
|
|
@@ -149,7 +152,7 @@ export declare const SelectKycSession: z.ZodObject<{
|
|
|
149
152
|
cmsProjectId: string;
|
|
150
153
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
151
154
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
152
|
-
status?: "Closed" | "Started" | "NotStarted" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
155
|
+
status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
153
156
|
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
154
157
|
address?: string | null | undefined;
|
|
155
158
|
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | null | undefined;
|
|
@@ -186,7 +189,7 @@ export declare const SelectKycSession: z.ZodObject<{
|
|
|
186
189
|
cmsProjectId: string;
|
|
187
190
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
188
191
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
189
|
-
status?: "Closed" | "Started" | "NotStarted" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
192
|
+
status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
190
193
|
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
191
194
|
address?: string | null | undefined;
|
|
192
195
|
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | null | undefined;
|
|
@@ -218,19 +221,19 @@ export declare const SelectKycSession: z.ZodObject<{
|
|
|
218
221
|
export type SelectKycSession = z.infer<typeof SelectKycSession>;
|
|
219
222
|
export declare const SelectKycSessionStep: z.ZodObject<{
|
|
220
223
|
id: z.ZodString;
|
|
221
|
-
type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
224
|
+
type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
222
225
|
customerId: z.ZodString;
|
|
223
226
|
kycSessionId: z.ZodString;
|
|
224
227
|
createdAt: z.ZodDate;
|
|
225
228
|
}, "strip", z.ZodTypeAny, {
|
|
226
229
|
id: string;
|
|
227
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
230
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
228
231
|
createdAt: Date;
|
|
229
232
|
customerId: string;
|
|
230
233
|
kycSessionId: string;
|
|
231
234
|
}, {
|
|
232
235
|
id: string;
|
|
233
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
236
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
234
237
|
createdAt: Date;
|
|
235
238
|
customerId: string;
|
|
236
239
|
kycSessionId: string;
|
|
@@ -254,7 +257,7 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
254
257
|
reviewAnswer: z.ZodOptional<z.ZodNullable<z.ZodEnum<["GREEN", "RED", "YELLOW"]>>>;
|
|
255
258
|
reviewRejectType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FINAL", "RETRY"]>>>;
|
|
256
259
|
sandboxMode: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
257
|
-
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
260
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
258
261
|
ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
259
262
|
notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
260
263
|
createdAt: z.ZodDate;
|
|
@@ -367,33 +370,23 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
367
370
|
}, {
|
|
368
371
|
stepsCompleted: z.ZodArray<z.ZodObject<{
|
|
369
372
|
id: z.ZodString;
|
|
370
|
-
type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
373
|
+
type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
371
374
|
customerId: z.ZodString;
|
|
372
375
|
kycSessionId: z.ZodString;
|
|
373
376
|
createdAt: z.ZodDate;
|
|
374
377
|
}, "strip", z.ZodTypeAny, {
|
|
375
378
|
id: string;
|
|
376
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
379
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
377
380
|
createdAt: Date;
|
|
378
381
|
customerId: string;
|
|
379
382
|
kycSessionId: string;
|
|
380
383
|
}, {
|
|
381
384
|
id: string;
|
|
382
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
385
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
383
386
|
createdAt: Date;
|
|
384
387
|
customerId: string;
|
|
385
388
|
kycSessionId: string;
|
|
386
389
|
}>, "many">;
|
|
387
|
-
emailVerification: z.ZodOptional<z.ZodObject<{
|
|
388
|
-
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
389
|
-
verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
390
|
-
}, "strip", z.ZodTypeAny, {
|
|
391
|
-
email?: string | null | undefined;
|
|
392
|
-
verified?: boolean | null | undefined;
|
|
393
|
-
}, {
|
|
394
|
-
email?: string | null | undefined;
|
|
395
|
-
verified?: boolean | null | undefined;
|
|
396
|
-
}>>;
|
|
397
390
|
customerStatus: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEnum<["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"]>, "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status", unknown>>>;
|
|
398
391
|
sumSubReviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
399
392
|
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">;
|
|
@@ -414,21 +407,17 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
414
407
|
cmsProjectId: string;
|
|
415
408
|
stepsCompleted: {
|
|
416
409
|
id: string;
|
|
417
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
410
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
418
411
|
createdAt: Date;
|
|
419
412
|
customerId: string;
|
|
420
413
|
kycSessionId: string;
|
|
421
414
|
}[];
|
|
422
415
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
423
416
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
424
|
-
status?: "Closed" | "Started" | "NotStarted" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
417
|
+
status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
425
418
|
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
426
419
|
address?: string | null | undefined;
|
|
427
420
|
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | null | undefined;
|
|
428
|
-
emailVerification?: {
|
|
429
|
-
email?: string | null | undefined;
|
|
430
|
-
verified?: boolean | null | undefined;
|
|
431
|
-
} | undefined;
|
|
432
421
|
ip?: string | null | undefined;
|
|
433
422
|
sandboxMode?: boolean | null | undefined;
|
|
434
423
|
sandboxSimulated?: boolean | null | undefined;
|
|
@@ -467,21 +456,17 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
467
456
|
cmsProjectId: string;
|
|
468
457
|
stepsCompleted: {
|
|
469
458
|
id: string;
|
|
470
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
459
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
471
460
|
createdAt: Date;
|
|
472
461
|
customerId: string;
|
|
473
462
|
kycSessionId: string;
|
|
474
463
|
}[];
|
|
475
464
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
476
465
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
477
|
-
status?: "Closed" | "Started" | "NotStarted" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
466
|
+
status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
478
467
|
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
479
468
|
address?: string | null | undefined;
|
|
480
469
|
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | null | undefined;
|
|
481
|
-
emailVerification?: {
|
|
482
|
-
email?: string | null | undefined;
|
|
483
|
-
verified?: boolean | null | undefined;
|
|
484
|
-
} | undefined;
|
|
485
470
|
ip?: string | null | undefined;
|
|
486
471
|
sandboxMode?: boolean | null | undefined;
|
|
487
472
|
sandboxSimulated?: boolean | null | undefined;
|
|
@@ -729,7 +714,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
729
714
|
reviewAnswer: z.ZodOptional<z.ZodNullable<z.ZodEnum<["GREEN", "RED", "YELLOW"]>>>;
|
|
730
715
|
reviewRejectType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FINAL", "RETRY"]>>>;
|
|
731
716
|
sandboxMode: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
732
|
-
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
717
|
+
status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
|
|
733
718
|
ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
734
719
|
notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
735
720
|
createdAt: z.ZodDate;
|
|
@@ -842,33 +827,23 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
842
827
|
}, {
|
|
843
828
|
stepsCompleted: z.ZodArray<z.ZodObject<{
|
|
844
829
|
id: z.ZodString;
|
|
845
|
-
type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
830
|
+
type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
|
|
846
831
|
customerId: z.ZodString;
|
|
847
832
|
kycSessionId: z.ZodString;
|
|
848
833
|
createdAt: z.ZodDate;
|
|
849
834
|
}, "strip", z.ZodTypeAny, {
|
|
850
835
|
id: string;
|
|
851
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
836
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
852
837
|
createdAt: Date;
|
|
853
838
|
customerId: string;
|
|
854
839
|
kycSessionId: string;
|
|
855
840
|
}, {
|
|
856
841
|
id: string;
|
|
857
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
842
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
858
843
|
createdAt: Date;
|
|
859
844
|
customerId: string;
|
|
860
845
|
kycSessionId: string;
|
|
861
846
|
}>, "many">;
|
|
862
|
-
emailVerification: z.ZodOptional<z.ZodObject<{
|
|
863
|
-
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
864
|
-
verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
865
|
-
}, "strip", z.ZodTypeAny, {
|
|
866
|
-
email?: string | null | undefined;
|
|
867
|
-
verified?: boolean | null | undefined;
|
|
868
|
-
}, {
|
|
869
|
-
email?: string | null | undefined;
|
|
870
|
-
verified?: boolean | null | undefined;
|
|
871
|
-
}>>;
|
|
872
847
|
customerStatus: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodEnum<["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"]>, "Active" | "Rejected" | "Dormant" | "To be reviewed" | "Failed" | "Escalated" | "Terminated" | "No status", unknown>>>;
|
|
873
848
|
sumSubReviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
874
849
|
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">;
|
|
@@ -902,7 +877,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
902
877
|
cmsProjectId: string;
|
|
903
878
|
stepsCompleted: {
|
|
904
879
|
id: string;
|
|
905
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
880
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
906
881
|
createdAt: Date;
|
|
907
882
|
customerId: string;
|
|
908
883
|
kycSessionId: string;
|
|
@@ -913,14 +888,10 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
913
888
|
}[];
|
|
914
889
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
915
890
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
916
|
-
status?: "Closed" | "Started" | "NotStarted" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
891
|
+
status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
917
892
|
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
918
893
|
address?: string | null | undefined;
|
|
919
894
|
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | null | undefined;
|
|
920
|
-
emailVerification?: {
|
|
921
|
-
email?: string | null | undefined;
|
|
922
|
-
verified?: boolean | null | undefined;
|
|
923
|
-
} | undefined;
|
|
924
895
|
ip?: string | null | undefined;
|
|
925
896
|
sandboxMode?: boolean | null | undefined;
|
|
926
897
|
sandboxSimulated?: boolean | null | undefined;
|
|
@@ -961,7 +932,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
961
932
|
cmsProjectId: string;
|
|
962
933
|
stepsCompleted: {
|
|
963
934
|
id: string;
|
|
964
|
-
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
935
|
+
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
|
|
965
936
|
createdAt: Date;
|
|
966
937
|
customerId: string;
|
|
967
938
|
kycSessionId: string;
|
|
@@ -972,14 +943,10 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
972
943
|
}[];
|
|
973
944
|
reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
|
|
974
945
|
reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
|
|
975
|
-
status?: "Closed" | "Started" | "NotStarted" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
946
|
+
status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
|
|
976
947
|
result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
|
|
977
948
|
address?: string | null | undefined;
|
|
978
949
|
blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | null | undefined;
|
|
979
|
-
emailVerification?: {
|
|
980
|
-
email?: string | null | undefined;
|
|
981
|
-
verified?: boolean | null | undefined;
|
|
982
|
-
} | undefined;
|
|
983
950
|
ip?: string | null | undefined;
|
|
984
951
|
sandboxMode?: boolean | null | undefined;
|
|
985
952
|
sandboxSimulated?: boolean | null | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"kyc-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyc-sessions.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAuBxB,eAAO,MAAM,cAAc
|
|
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;AAuBxB,eAAO,MAAM,cAAc,oIAQjB,CAAC;AACX,eAAO,MAAM,OAAO,sIAAyB,CAAC;AAC9C,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,OAAO,CAAC,CAAC;AAE9C,eAAO,MAAM,WAAW,iEAKd,CAAC;AACX,eAAO,MAAM,SAAS,mEAAsB,CAAC;AAC7C,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,SAAS,CAAC,CAAC;AAElD,eAAO,MAAM,oBAAoB,iIAQvB,CAAC;AACX,eAAO,MAAM,gBAAgB,mIAA+B,CAAC;AAC7D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,yBAAyB;;;;;;;;;;;;EAIpC,CAAC;AACH,MAAM,MAAM,yBAAyB,GAAG,CAAC,CAAC,KAAK,CAC7C,OAAO,yBAAyB,CACjC,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkB3B,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;EAM/B,CAAC;AACH,MAAM,MAAM,oBAAoB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAExE,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"}
|
package/dist/{frontend-utilities.schema-2529281f.esm.js → frontend-utilities.schema-e82b28c5.esm.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { cE as SupportedType, e1 as _toConsumableArray, ct as ARRAY_OPERATORS, cz as BOOLEAN_OPERATORS, cx as NUMERIC_OPERATORS, cv as STRING_OPERATORS } from './identity-api.schema-74e951be.esm.js';
|
|
2
2
|
|
|
3
3
|
var VC_JSON_SCHEMA_MAP = {
|
|
4
4
|
ProofOfResidence: {
|
|
@@ -295,6 +295,7 @@ var coerceBoolean = z["enum"](["0", "1", "true", "false"])["catch"]("false").tra
|
|
|
295
295
|
var ENVS = ["cicd", "local", "test-dev-1", "test-dev-2", "dev", "stage", "prod"];
|
|
296
296
|
var EnvironmentSchema = z["enum"](ENVS);
|
|
297
297
|
var UuidString = z.string().uuid();
|
|
298
|
+
var OtpCode = z.string().regex(/^\d{6}$/, "OtpCode must be a 6-digit number");
|
|
298
299
|
/**
|
|
299
300
|
* Zod parse without throwing an error if the value is invalid
|
|
300
301
|
* Rather, it returns a object with optional error and data fields
|
|
@@ -3254,4 +3255,4 @@ var VerifyWalletChallengeRequest = WalletSignatureResponse.and(z.object({
|
|
|
3254
3255
|
blockchainId: BlockchainId.optional()
|
|
3255
3256
|
}));
|
|
3256
3257
|
|
|
3257
|
-
export { TezosSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TxHash as D, EVM_BLOCK_TIME as E, EIP155Signature as F, FunctionCallData as G, shortAddress as H, AptosAddress as I, AptosSignature as J, StarknetAddress as K, StarknetSignature as L, PolkadotAddress as M, NEXERA_EVM_CHAINS as N, PolkadotSignature as O, POLYGON_NETWORK_NAMES as P, CosmosAddress as Q, CosmosSignature as R, StarknetChainId as S, TezosChainId as T, TezosImplicitAddress as U, TezosContractAddress as V, TezosAddress as W, TezosEntrypointName as X, EdSignature as Y, SpSignature as Z, P2Signature as _, NEXERA_TEZOS_CHAINS as a,
|
|
3258
|
+
export { TezosSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TxHash as D, EVM_BLOCK_TIME as E, EIP155Signature as F, FunctionCallData as G, shortAddress as H, AptosAddress as I, AptosSignature as J, StarknetAddress as K, StarknetSignature as L, PolkadotAddress as M, NEXERA_EVM_CHAINS as N, PolkadotSignature as O, POLYGON_NETWORK_NAMES as P, CosmosAddress as Q, CosmosSignature as R, StarknetChainId as S, TezosChainId as T, TezosImplicitAddress as U, TezosContractAddress as V, TezosAddress as W, TezosEntrypointName as X, EdSignature as Y, SpSignature as Z, P2Signature as _, NEXERA_TEZOS_CHAINS as a, IsVerifiedNotification as a$, CardanoAddress as a0, CardanoSignature as a1, BlockchainAddress as a2, BlockchainSignature as a3, BLOCKCHAIN_NAMESPACES as a4, BlockchainNamespace as a5, BLOCKCHAIN_NAMESPACES_NAMES as a6, DISPLAYED_LOCKCHAIN_NAMESPACES as a7, DisplayedBlockchainNamespace as a8, BLOCKCHAIN_NAME_TO_NAMESPACE as a9, CustomerStatuses as aA, CustomerStatus as aB, BasicCustomerContactInformation as aC, CUSTOMERS_CHARTS as aD, CustomersChartType as aE, CUSTOMER_TABLE_COLUMNS as aF, CustomerTableColumn as aG, CUSTOMER_AUTOMATION_REASONS as aH, createBrandedSchemaId as aI, StorageId as aJ, IdentityId as aK, EmailId as aL, WalletId as aM, AppId as aN, ChallengeId as aO, TestId as aP, generateId as aQ, ScenarioAuthorizationData as aR, SdkVerificationResponseSchema as aS, CloseScreenNotification as aT, KycCompletionData as aU, KycCompletionNotification as aV, RuleEngineScenarioExecutionData as aW, OffChainScenarioExecutionData as aX, OnChainScenarioExecutionData as aY, ScenarioExecutionData as aZ, ScenarioExecutionNotification as a_, BLOCKCHAIN_NAMESPACE_TO_NAME as aa, coerceBoolean as ab, ENVS as ac, EnvironmentSchema as ad, UuidString as ae, OtpCode as af, ZodParse as ag, shortBlockchainAddress as ah, PUBLIC_SERVICES_SCHEMA_MAP as ai, ISO3CountryCode as aj, ALPHA_2_COUNTRIES as ak, Alpha2Country as al, countryISO3toISO2Mapping as am, countryISO2toISO3Mapping as an, isoCountriesNameFromISO2 as ao, parseISO3CountryCode as ap, RiskScoreTypes as aq, RiskScoreType as ar, CustomerTypes as as, CustomerType as at, KycOnboardingLevels as au, KycOnboardingLevel as av, KybOnboardingLevels as aw, KybOnboardingLevel as ax, CustomerOnboardingLevels as ay, CustomerOnboardingLevel as az, NEXERA_COSMOS_CHAINS as b, GetCustomerStatusRequest as b$, PolygonIdInitialized as b0, OcvSdkInitialized as b1, StartCompletedNotification as b2, IdentityNotificationMessage as b3, InitialDataRequest as b4, SignatureRequest as b5, TransactionData as b6, SendTransactionRequest as b7, IdentityRequestMessage as b8, AVAILABLE_FLOWS as b9, RuleEngineResponse as bA, ScenarioExecutionResponse as bB, RuleResultStatuses as bC, RuleResultStatus as bD, RuleResultStatusLabels as bE, ComplianceImplementationStepsInput as bF, SimplifiedCredential as bG, GetCredentialsRequest as bH, GetCredentialsResponse as bI, PolygonIdRequestData as bJ, PolygonIdRequest as bK, PolygonIdResponseData as bL, PolygonIdResponse as bM, StartFlowRequest as bN, IsVerifiedRequest as bO, IsVerifiedResponse as bP, GetTxAuthSigRequest as bQ, GetTxAuthSigResponse as bR, GetTxAuthSigRequestTezos as bS, GetTxAuthSigResponseTezos as bT, HostRequestMessage as bU, IdentityResponseMessage as bV, GenerateWalletChallengeRequest as bW, AuthSession as bX, ChallengeResponse as bY, WalletSignResponse as bZ, TxAuthDataSignatureGatingRequest as b_, AvailableFlow as ba, DataAvailableOnStart as bb, InitialDataResponse as bc, SignatureResponse as bd, TransactionResponse as be, HostResponseMessage as bf, ChallengeQueryOperators as bg, ChallengeQueryOperator as bh, OperatorToChallengeQueryOperator as bi, ChallengeQueryOperatorToOperator as bj, ChallengeQuerySchema as bk, ExecuteChallengeQueryInput as bl, ExecuteChallengeQueryConfig as bm, OpaChallengeQueryResponse as bn, ExecuteChallengeQueryResponse as bo, OPAChallengeQuery as bp, OnChainRuleResult as bq, OffChainZKPRuleResult as br, SdkVerificationOutput as bs, VerificationSessionStatuses as bt, VerificationSessionStatus as bu, VerificationOutput as bv, ScenarioTypes as bw, ScenarioType as bx, ScenarioStatuses as by, ScenarioStatus as bz, NEXERA_STARKNET_CHAINS as c, GetTezosTxAuthDataSignatureResponse as c$, IdentitySdkMessage as c0, IdentitySdkMessageWithIdentifier as c1, TxAuthDataSignatureResponse as c2, GetCustomerStatusResponse as c3, IdentityAppMessage as c4, HostMessage as c5, IdentityMessage as c6, RequiredDataRowSchema as c7, RequiredVerificationData as c8, MediaType as c9, BooleanOperator as cA, DATE_OPERATORS as cB, DateOperator as cC, SUPPORTED_TYPES as cD, SupportedType as cE, SupportedTypes as cF, IDInformation as cG, QueryConfig as cH, QueryType as cI, QueryConfigSimplified as cJ, PartialQueryConfigSimplified as cK, QueryConfigSimplifiedParsed as cL, QueryConfiguration as cM, NonParsedQueryConfiguration as cN, CreateQueryConfigurationInput as cO, CreateQueryConfigurationResponse as cP, UpdateQueryConfigurationInput as cQ, UpdateQueryConfigurationResponse as cR, DeleteQueryConfigurationInput as cS, DeleteQueryConfigurationResponse as cT, QueryCredentialTypes as cU, QueryCredentialType as cV, TxAuthInput as cW, TxSignatureResponse as cX, GetTxAuthDataSignatureResponse as cY, TezosTxAuthInput as cZ, TezosTxSignatureResponse as c_, MediaTypePID as ca, ZeroKnowledgeProofRequest as cb, AUTHORIZATION_REQUEST_MESSAGE_TYPES as cc, AuthorizationRequestMessageTypes as cd, AuthorizationRequestMessageType as ce, AuthorizationRequestMessage as cf, ProofData as cg, ZeroKnowledgeProofResponse as ch, AuthorizationResponseMessage as ci, CredentialQrCodeData as cj, AuthQrCodeData as ck, QrCodeLinkWithSchemaType as cl, parseIden3Message as cm, parseSessionIdFromUrl as cn, AllCredentialAttributes as co, AllCredentialValues as cp, Operator as cq, ZKPOperator as cr, operatorDisplayMap as cs, ARRAY_OPERATORS as ct, ArrayOperator as cu, STRING_OPERATORS as cv, StringOperator as cw, NUMERIC_OPERATORS as cx, NumericOperator as cy, BOOLEAN_OPERATORS as cz, NEXERA_EVM_CHAIN_NAMES as d, VerifiableCredential as d$, ExtendedTxAuthInput as d0, ExtendedTezosTxAuthInput as d1, AnyTxAuthInput as d2, ExtendedTxAuthDataSignatureResponse as d3, ExtendedTezosTxAuthDataSignatureResponse as d4, AnyTxAuthDataSignatureResponse as d5, ZKPRequest as d6, ZKPRequestFromZKVerifier as d7, OffChainZKP as d8, CreateAuthRequestProps as d9, WorkflowId as dA, IdentityWidgetAccessToken as dB, ExternalCustomerId as dC, IdentityAppV2Web3JWT as dD, IdentityAppV2Web2JWT as dE, IdentityWidgetAccessToken_NEW as dF, IdentityWidgetSessionToken as dG, Web2CreateSessionParams as dH, ID3CredentialSubjectSchema as dI, IDScanCredentialSubjectSchema as dJ, IDScanPassportCredentialSubjectSchema as dK, IDScanSelfieCredentialSubjectSchema as dL, OLD_IDImageCredentialSubjectSchema as dM, OLD_IDInformationCredentialSubjectSchema as dN, OLD_ProofOfResidenceCredentialSubjectSchema as dO, OLD_SelfieImageCredentialSubjectSchema as dP, OLD_AMLScreeningsResultsCredentialSubjectSchema as dQ, IDInformationCredentialSubjectSchema as dR, IDImageCredentialSubjectSchema as dS, SelfieImageCredentialSubjectSchema as dT, ProofOfResidenceCredentialSubjectSchema as dU, GenericVerifiableCredentialSchema as dV, CredentialSchemas as dW, CredentialNames as dX, NexeraCredentialType as dY, getCredentialName as dZ, CredentialType as d_, CreateZKProofRequestProps as da, AllScenarioExecutionAuthorizationData as db, ProjectAuthorizationData as dc, OnChainZKP as dd, OnChainZKPFromNexeraID as de, OnChainZKPScenarioFromCms as df, OnChainZKPPayload as dg, SCENARIO_AUTHORIZATION_STATUSES as dh, ScenarioAuthorizationStatus as di, WalletSignatureResponse as dj, VerifyWalletChallengeRequest as dk, FLOW_TYPES as dl, FlowType as dm, VerificationModes as dn, VerificationMode as dp, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as dq, IdentityDocumentCountryListOption as dr, IDENTITY_DOCUMENT_OPTIONS as ds, IdentityDocumentOptionsType as dt, PERSONAL_INFORMATION_FIELDS as du, PersonalInformationFieldsIdentityDocuments as dv, Identifier as dw, AdditionalCustomerInformationParams as dx, OrganizationId as dy, WorkspaceId as dz, NEXERA_EVM_CHAIN_NAMES_LIST as e, CredentialMediaType as e0, _toConsumableArray as e1, _toArray as e2, _arrayWithHoles as e3, _unsupportedIterableToArray as e4, _nonIterableRest as e5, _defineProperty as e6, NEXERA_CHAIN_VALUES as f, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as g, EvmChainId as h, PolygonNetworkNames as i, NEXERA_TEZOS_CHAIN_NAMES as j, NEXERA_TEZOS_CHAIN_NAMES_LIST as k, NEXERA_TEZOS_CHAIN_VALUES as l, ACTIVE_TEZOS_CHAIN_VALUES as m, COSMOS_CHAIN_NAMES as n, COSMOS_CHAIN_NAMES_LIST as o, COSMOS_CHAIN_VALUES as p, ACTIVE_COSMOS_CHAIN_VALUES as q, CosmosChainId as r, NEXERA_STARKNET_CHAIN_NAMES as s, NEXERA_STARKNET_CHAIN_VALUES as t, NEXERA_ACTIVE_STARKNET_CHAIN_VALUES as u, isValidAddress as v, String0x as w, PrivateKey as x, PublicKey as y, AddressSchema as z };
|
package/dist/{identity-api.schema-da491c8f.cjs.prod.js → identity-api.schema-7bb2255e.cjs.prod.js}
RENAMED
|
@@ -297,6 +297,7 @@ var coerceBoolean = zod.z["enum"](["0", "1", "true", "false"])["catch"]("false")
|
|
|
297
297
|
var ENVS = ["cicd", "local", "test-dev-1", "test-dev-2", "dev", "stage", "prod"];
|
|
298
298
|
var EnvironmentSchema = zod.z["enum"](ENVS);
|
|
299
299
|
var UuidString = zod.z.string().uuid();
|
|
300
|
+
var OtpCode = zod.z.string().regex(/^\d{6}$/, "OtpCode must be a 6-digit number");
|
|
300
301
|
/**
|
|
301
302
|
* Zod parse without throwing an error if the value is invalid
|
|
302
303
|
* Rather, it returns a object with optional error and data fields
|
|
@@ -3447,6 +3448,7 @@ exports.OpaChallengeQueryResponse = OpaChallengeQueryResponse;
|
|
|
3447
3448
|
exports.Operator = Operator;
|
|
3448
3449
|
exports.OperatorToChallengeQueryOperator = OperatorToChallengeQueryOperator;
|
|
3449
3450
|
exports.OrganizationId = OrganizationId;
|
|
3451
|
+
exports.OtpCode = OtpCode;
|
|
3450
3452
|
exports.P2Signature = P2Signature;
|
|
3451
3453
|
exports.PERSONAL_INFORMATION_FIELDS = PERSONAL_INFORMATION_FIELDS;
|
|
3452
3454
|
exports.POLYGON_NETWORK_NAMES = POLYGON_NETWORK_NAMES;
|
package/dist/{identity-api.schema-9137e5c5.cjs.dev.js → identity-api.schema-df9e231d.cjs.dev.js}
RENAMED
|
@@ -297,6 +297,7 @@ var coerceBoolean = zod.z["enum"](["0", "1", "true", "false"])["catch"]("false")
|
|
|
297
297
|
var ENVS = ["cicd", "local", "test-dev-1", "test-dev-2", "dev", "stage", "prod"];
|
|
298
298
|
var EnvironmentSchema = zod.z["enum"](ENVS);
|
|
299
299
|
var UuidString = zod.z.string().uuid();
|
|
300
|
+
var OtpCode = zod.z.string().regex(/^\d{6}$/, "OtpCode must be a 6-digit number");
|
|
300
301
|
/**
|
|
301
302
|
* Zod parse without throwing an error if the value is invalid
|
|
302
303
|
* Rather, it returns a object with optional error and data fields
|
|
@@ -3447,6 +3448,7 @@ exports.OpaChallengeQueryResponse = OpaChallengeQueryResponse;
|
|
|
3447
3448
|
exports.Operator = Operator;
|
|
3448
3449
|
exports.OperatorToChallengeQueryOperator = OperatorToChallengeQueryOperator;
|
|
3449
3450
|
exports.OrganizationId = OrganizationId;
|
|
3451
|
+
exports.OtpCode = OtpCode;
|
|
3450
3452
|
exports.P2Signature = P2Signature;
|
|
3451
3453
|
exports.PERSONAL_INFORMATION_FIELDS = PERSONAL_INFORMATION_FIELDS;
|
|
3452
3454
|
exports.POLYGON_NETWORK_NAMES = POLYGON_NETWORK_NAMES;
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('./identity-api.schema-df9e231d.cjs.dev.js');
|
|
6
6
|
var zod = require('zod');
|
|
7
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-248cbc44.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -262,6 +262,7 @@ exports.OpaChallengeQueryResponse = identityApi_schema.OpaChallengeQueryResponse
|
|
|
262
262
|
exports.Operator = identityApi_schema.Operator;
|
|
263
263
|
exports.OperatorToChallengeQueryOperator = identityApi_schema.OperatorToChallengeQueryOperator;
|
|
264
264
|
exports.OrganizationId = identityApi_schema.OrganizationId;
|
|
265
|
+
exports.OtpCode = identityApi_schema.OtpCode;
|
|
265
266
|
exports.P2Signature = identityApi_schema.P2Signature;
|
|
266
267
|
exports.PERSONAL_INFORMATION_FIELDS = identityApi_schema.PERSONAL_INFORMATION_FIELDS;
|
|
267
268
|
exports.POLYGON_NETWORK_NAMES = identityApi_schema.POLYGON_NETWORK_NAMES;
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('./identity-api.schema-7bb2255e.cjs.prod.js');
|
|
6
6
|
var zod = require('zod');
|
|
7
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-995d3ffd.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -262,6 +262,7 @@ exports.OpaChallengeQueryResponse = identityApi_schema.OpaChallengeQueryResponse
|
|
|
262
262
|
exports.Operator = identityApi_schema.Operator;
|
|
263
263
|
exports.OperatorToChallengeQueryOperator = identityApi_schema.OperatorToChallengeQueryOperator;
|
|
264
264
|
exports.OrganizationId = identityApi_schema.OrganizationId;
|
|
265
|
+
exports.OtpCode = identityApi_schema.OtpCode;
|
|
265
266
|
exports.P2Signature = identityApi_schema.P2Signature;
|
|
266
267
|
exports.PERSONAL_INFORMATION_FIELDS = identityApi_schema.PERSONAL_INFORMATION_FIELDS;
|
|
267
268
|
exports.POLYGON_NETWORK_NAMES = identityApi_schema.POLYGON_NETWORK_NAMES;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { C as CredentialTypes } from './identity-api.schema-
|
|
2
|
-
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES,
|
|
1
|
+
import { C as CredentialTypes } from './identity-api.schema-74e951be.esm.js';
|
|
2
|
+
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, ak as ALPHA_2_COUNTRIES, ct as ARRAY_OPERATORS, cc as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b9 as AVAILABLE_FLOWS, dx as AdditionalCustomerInformationParams, z as AddressSchema, co as AllCredentialAttributes, cp as AllCredentialValues, db as AllScenarioExecutionAuthorizationData, al as Alpha2Country, d5 as AnyTxAuthDataSignatureResponse, d2 as AnyTxAuthInput, aN as AppId, I as AptosAddress, J as AptosSignature, cu as ArrayOperator, ck as AuthQrCodeData, bX as AuthSession, cf as AuthorizationRequestMessage, ce as AuthorizationRequestMessageType, cd as AuthorizationRequestMessageTypes, ci as AuthorizationResponseMessage, ba as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cz as BOOLEAN_OPERATORS, aC as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cA as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aD as CUSTOMERS_CHARTS, aH as CUSTOMER_AUTOMATION_REASONS, aF as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aO as ChallengeId, bh as ChallengeQueryOperator, bj as ChallengeQueryOperatorToOperator, bg as ChallengeQueryOperators, bk as ChallengeQuerySchema, bY as ChallengeResponse, aT as CloseScreenNotification, bF as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d9 as CreateAuthRequestProps, cO as CreateQueryConfigurationInput, cP as CreateQueryConfigurationResponse, da as CreateZKProofRequestProps, e0 as CredentialMediaType, dX as CredentialNames, cj as CredentialQrCodeData, dW as CredentialSchemas, d_ as CredentialType, C as CredentialTypes, az as CustomerOnboardingLevel, ay as CustomerOnboardingLevels, aB as CustomerStatus, aA as CustomerStatuses, aG as CustomerTableColumn, at as CustomerType, as as CustomerTypes, aE as CustomersChartType, cB as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bb as DataAvailableOnStart, cC as DateOperator, cS as DeleteQueryConfigurationInput, cT as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, aL as EmailId, ad as EnvironmentSchema, h as EvmChainId, bm as ExecuteChallengeQueryConfig, bl as ExecuteChallengeQueryInput, bo as ExecuteChallengeQueryResponse, d4 as ExtendedTezosTxAuthDataSignatureResponse, d1 as ExtendedTezosTxAuthInput, d3 as ExtendedTxAuthDataSignatureResponse, d0 as ExtendedTxAuthInput, dC as ExternalCustomerId, dl as FLOW_TYPES, dm as FlowType, G as FunctionCallData, bW as GenerateWalletChallengeRequest, dV as GenericVerifiableCredentialSchema, bH as GetCredentialsRequest, bI as GetCredentialsResponse, b$ as GetCustomerStatusRequest, c3 as GetCustomerStatusResponse, c$ as GetTezosTxAuthDataSignatureResponse, cY as GetTxAuthDataSignatureResponse, bQ as GetTxAuthSigRequest, bS as GetTxAuthSigRequestTezos, bR as GetTxAuthSigResponse, bT as GetTxAuthSigResponseTezos, c5 as HostMessage, bU as HostRequestMessage, bf as HostResponseMessage, dI as ID3CredentialSubjectSchema, dq as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, ds as IDENTITY_DOCUMENT_OPTIONS, dS as IDImageCredentialSubjectSchema, cG as IDInformation, dR as IDInformationCredentialSubjectSchema, dJ as IDScanCredentialSubjectSchema, dK as IDScanPassportCredentialSubjectSchema, dL as IDScanSelfieCredentialSubjectSchema, aj as ISO3CountryCode, dw as Identifier, c4 as IdentityAppMessage, dE as IdentityAppV2Web2JWT, dD as IdentityAppV2Web3JWT, dr as IdentityDocumentCountryListOption, dt as IdentityDocumentOptionsType, aK as IdentityId, c6 as IdentityMessage, b3 as IdentityNotificationMessage, b8 as IdentityRequestMessage, bV as IdentityResponseMessage, c0 as IdentitySdkMessage, c1 as IdentitySdkMessageWithIdentifier, dB as IdentityWidgetAccessToken, dF as IdentityWidgetAccessToken_NEW, dG as IdentityWidgetSessionToken, b4 as InitialDataRequest, bc as InitialDataResponse, a$ as IsVerifiedNotification, bO as IsVerifiedRequest, bP as IsVerifiedResponse, ax as KybOnboardingLevel, aw as KybOnboardingLevels, aU as KycCompletionData, aV as KycCompletionNotification, av as KycOnboardingLevel, au as KycOnboardingLevels, c9 as MediaType, ca as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, cx as NUMERIC_OPERATORS, dY as NexeraCredentialType, cN as NonParsedQueryConfiguration, cy as NumericOperator, dQ as OLD_AMLScreeningsResultsCredentialSubjectSchema, dM as OLD_IDImageCredentialSubjectSchema, dN as OLD_IDInformationCredentialSubjectSchema, dO as OLD_ProofOfResidenceCredentialSubjectSchema, dP as OLD_SelfieImageCredentialSubjectSchema, bp as OPAChallengeQuery, b1 as OcvSdkInitialized, aX as OffChainScenarioExecutionData, d8 as OffChainZKP, br as OffChainZKPRuleResult, bq as OnChainRuleResult, aY as OnChainScenarioExecutionData, dd as OnChainZKP, de as OnChainZKPFromNexeraID, dg as OnChainZKPPayload, df as OnChainZKPScenarioFromCms, bn as OpaChallengeQueryResponse, cq as Operator, bi as OperatorToChallengeQueryOperator, dy as OrganizationId, af as OtpCode, _ as P2Signature, du as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ai as PUBLIC_SERVICES_SCHEMA_MAP, cK as PartialQueryConfigSimplified, dv as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b0 as PolygonIdInitialized, bK as PolygonIdRequest, bJ as PolygonIdRequestData, bM as PolygonIdResponse, bL as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, dc as ProjectAuthorizationData, cg as ProofData, dU as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, cl as QrCodeLinkWithSchemaType, cH as QueryConfig, cJ as QueryConfigSimplified, cL as QueryConfigSimplifiedParsed, cM as QueryConfiguration, cV as QueryCredentialType, cU as QueryCredentialTypes, cI as QueryType, c7 as RequiredDataRowSchema, c8 as RequiredVerificationData, ar as RiskScoreType, aq as RiskScoreTypes, bA as RuleEngineResponse, aW as RuleEngineScenarioExecutionData, bD as RuleResultStatus, bE as RuleResultStatusLabels, bC as RuleResultStatuses, dh as SCENARIO_AUTHORIZATION_STATUSES, cv as STRING_OPERATORS, cD as SUPPORTED_TYPES, aR as ScenarioAuthorizationData, di as ScenarioAuthorizationStatus, aZ as ScenarioExecutionData, a_ as ScenarioExecutionNotification, bB as ScenarioExecutionResponse, bz as ScenarioStatus, by as ScenarioStatuses, bx as ScenarioType, bw as ScenarioTypes, bs as SdkVerificationOutput, aS as SdkVerificationResponseSchema, dT as SelfieImageCredentialSubjectSchema, b7 as SendTransactionRequest, b5 as SignatureRequest, bd as SignatureResponse, bG as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b2 as StartCompletedNotification, bN as StartFlowRequest, aJ as StorageId, w as String0x, cw as StringOperator, cE as SupportedType, cF as SupportedTypes, aP as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cZ as TezosTxAuthInput, c_ as TezosTxSignatureResponse, b6 as TransactionData, be as TransactionResponse, b_ as TxAuthDataSignatureGatingRequest, c2 as TxAuthDataSignatureResponse, cW as TxAuthInput, D as TxHash, cX as TxSignatureResponse, cQ as UpdateQueryConfigurationInput, cR as UpdateQueryConfigurationResponse, ae as UuidString, d$ as VerifiableCredential, dp as VerificationMode, dn as VerificationModes, bv as VerificationOutput, bu as VerificationSessionStatus, bt as VerificationSessionStatuses, dk as VerifyWalletChallengeRequest, aM as WalletId, bZ as WalletSignResponse, dj as WalletSignatureResponse, dH as Web2CreateSessionParams, dA as WorkflowId, dz as WorkspaceId, cr as ZKPOperator, d6 as ZKPRequest, d7 as ZKPRequestFromZKVerifier, cb as ZeroKnowledgeProofRequest, ch as ZeroKnowledgeProofResponse, ag as ZodParse, ab as coerceBoolean, an as countryISO2toISO3Mapping, am as countryISO3toISO2Mapping, aI as createBrandedSchemaId, aQ as generateId, dZ as getCredentialName, v as isValidAddress, ao as isoCountriesNameFromISO2, cs as operatorDisplayMap, ap as parseISO3CountryCode, cm as parseIden3Message, cn as parseSessionIdFromUrl, H as shortAddress, ah as shortBlockchainAddress } from './identity-api.schema-74e951be.esm.js';
|
|
3
3
|
import { z } from 'zod';
|
|
4
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-
|
|
4
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-e82b28c5.esm.js';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|
|
7
7
|
var decodeUint8Array = function decodeUint8Array(data) {
|
package/dist/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-df9e231d.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-7bb2255e.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { ct as ARRAY_OPERATORS, cc as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b9 as AVAILABLE_FLOWS, co as AllCredentialAttributes, cp as AllCredentialValues, db as AllScenarioExecutionAuthorizationData, d5 as AnyTxAuthDataSignatureResponse, d2 as AnyTxAuthInput, cu as ArrayOperator, ck as AuthQrCodeData, bX as AuthSession, cf as AuthorizationRequestMessage, ce as AuthorizationRequestMessageType, cd as AuthorizationRequestMessageTypes, ci as AuthorizationResponseMessage, ba as AvailableFlow, cz as BOOLEAN_OPERATORS, cA as BooleanOperator, bh as ChallengeQueryOperator, bj as ChallengeQueryOperatorToOperator, bg as ChallengeQueryOperators, bk as ChallengeQuerySchema, bY as ChallengeResponse, aT as CloseScreenNotification, bF as ComplianceImplementationStepsInput, d9 as CreateAuthRequestProps, cO as CreateQueryConfigurationInput, cP as CreateQueryConfigurationResponse, da as CreateZKProofRequestProps, cj as CredentialQrCodeData, cB as DATE_OPERATORS, bb as DataAvailableOnStart, cC as DateOperator, cS as DeleteQueryConfigurationInput, cT as DeleteQueryConfigurationResponse, bm as ExecuteChallengeQueryConfig, bl as ExecuteChallengeQueryInput, bo as ExecuteChallengeQueryResponse, d4 as ExtendedTezosTxAuthDataSignatureResponse, d1 as ExtendedTezosTxAuthInput, d3 as ExtendedTxAuthDataSignatureResponse, d0 as ExtendedTxAuthInput, bW as GenerateWalletChallengeRequest, bH as GetCredentialsRequest, bI as GetCredentialsResponse, b$ as GetCustomerStatusRequest, c3 as GetCustomerStatusResponse, c$ as GetTezosTxAuthDataSignatureResponse, cY as GetTxAuthDataSignatureResponse, bQ as GetTxAuthSigRequest, bS as GetTxAuthSigRequestTezos, bR as GetTxAuthSigResponse, bT as GetTxAuthSigResponseTezos, c5 as HostMessage, bU as HostRequestMessage, bf as HostResponseMessage, cG as IDInformation, c4 as IdentityAppMessage, c6 as IdentityMessage, b3 as IdentityNotificationMessage, b8 as IdentityRequestMessage, bV as IdentityResponseMessage, c0 as IdentitySdkMessage, c1 as IdentitySdkMessageWithIdentifier, b4 as InitialDataRequest, bc as InitialDataResponse, a$ as IsVerifiedNotification, bO as IsVerifiedRequest, bP as IsVerifiedResponse, aU as KycCompletionData, aV as KycCompletionNotification, c9 as MediaType, ca as MediaTypePID, cx as NUMERIC_OPERATORS, cN as NonParsedQueryConfiguration, cy as NumericOperator, bp as OPAChallengeQuery, b1 as OcvSdkInitialized, aX as OffChainScenarioExecutionData, d8 as OffChainZKP, br as OffChainZKPRuleResult, bq as OnChainRuleResult, aY as OnChainScenarioExecutionData, dd as OnChainZKP, de as OnChainZKPFromNexeraID, dg as OnChainZKPPayload, df as OnChainZKPScenarioFromCms, bn as OpaChallengeQueryResponse, cq as Operator, bi as OperatorToChallengeQueryOperator, cK as PartialQueryConfigSimplified, b0 as PolygonIdInitialized, bK as PolygonIdRequest, bJ as PolygonIdRequestData, bM as PolygonIdResponse, bL as PolygonIdResponseData, dc as ProjectAuthorizationData, cg as ProofData, cl as QrCodeLinkWithSchemaType, cH as QueryConfig, cJ as QueryConfigSimplified, cL as QueryConfigSimplifiedParsed, cM as QueryConfiguration, cV as QueryCredentialType, cU as QueryCredentialTypes, cI as QueryType, c7 as RequiredDataRowSchema, c8 as RequiredVerificationData, bA as RuleEngineResponse, aW as RuleEngineScenarioExecutionData, bD as RuleResultStatus, bE as RuleResultStatusLabels, bC as RuleResultStatuses, dh as SCENARIO_AUTHORIZATION_STATUSES, cv as STRING_OPERATORS, cD as SUPPORTED_TYPES, aR as ScenarioAuthorizationData, di as ScenarioAuthorizationStatus, aZ as ScenarioExecutionData, a_ as ScenarioExecutionNotification, bB as ScenarioExecutionResponse, bz as ScenarioStatus, by as ScenarioStatuses, bx as ScenarioType, bw as ScenarioTypes, bs as SdkVerificationOutput, aS as SdkVerificationResponseSchema, b7 as SendTransactionRequest, b5 as SignatureRequest, bd as SignatureResponse, bG as SimplifiedCredential, b2 as StartCompletedNotification, bN as StartFlowRequest, cw as StringOperator, cE as SupportedType, cF as SupportedTypes, cZ as TezosTxAuthInput, c_ as TezosTxSignatureResponse, b6 as TransactionData, be as TransactionResponse, b_ as TxAuthDataSignatureGatingRequest, c2 as TxAuthDataSignatureResponse, cW as TxAuthInput, cX as TxSignatureResponse, cQ as UpdateQueryConfigurationInput, cR as UpdateQueryConfigurationResponse, bv as VerificationOutput, bu as VerificationSessionStatus, bt as VerificationSessionStatuses, dk as VerifyWalletChallengeRequest, bZ as WalletSignResponse, dj as WalletSignatureResponse, cr as ZKPOperator, d6 as ZKPRequest, d7 as ZKPRequestFromZKVerifier, cb as ZeroKnowledgeProofRequest, ch as ZeroKnowledgeProofResponse, cs as operatorDisplayMap, cm as parseIden3Message, cn as parseSessionIdFromUrl } from '../../dist/identity-api.schema-74e951be.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import 'nanoid';
|
package/package.json
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var customers_schema = require('../../dist/customers.schema-
|
|
5
|
+
var customers_schema = require('../../dist/customers.schema-e40f7e9a.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/identity-api.schema-
|
|
7
|
+
require('../../dist/identity-api.schema-df9e231d.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var customers_schema = require('../../dist/customers.schema-
|
|
5
|
+
var customers_schema = require('../../dist/customers.schema-1acdda1a.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/identity-api.schema-
|
|
7
|
+
require('../../dist/identity-api.schema-7bb2255e.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bK as ApplicantMemberOfSchema, bZ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bM as BaseApplicantActionSchema, bk as BaseProvider, b$ as BeneficiaryCompanyCustomerClaims, c0 as BeneficiaryCompanyCustomerClaimsArray, b_ as BeneficiaryType, d2 as BeneficiaryVerificationStatus, d3 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bh as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bn as BigProvider, v as BitRankRequest, w as BitRankVerified, y as BitRankVerifiedError, x as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aC as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aE as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aA as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, aq as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dl as ChainalysisApiError, bd as ChainalysisConfig, dj as ChainalysisErrorCodes, bq as ChainalysisProvider, dh as ChainalysisRegisterApiResponse, dm as ChainalysisRegisterResponse, dg as ChainalysisRequest, dk as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, di as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin, d1 as CompanyDocumentMetaData, aW as ComplyAdvantageAmlFullListing, aV as ComplyAdvantageAmlItemSource, aD as ComplyAdvantageCountryFieldSources, aF as ComplyAdvantageDateOfBirthFieldSources, aU as ComplyAdvantageKeyInformation, aP as ComplyAdvantageMedia, b3 as ComplyAdvantageMonitorSearchDataResponse, b5 as ComplyAdvantageMonitorSearchResponse, b4 as ComplyAdvantageMonitorSearchSuccessResponse, b6 as ComplyAdvantageMonitoredSearchUpdate, aB as ComplyAdvantageNationalityFieldSources, bv as ComplyAdvantageProvider, bu as ComplyAdvantageProviderConfigElement, bt as ComplyAdvantageProviderConfigFilters, bs as ComplyAdvantageProviderConfigTypes, au as ComplyAdvantageReponseMatchStatus, ar as ComplyAdvantageResponseMatchType, aR as ComplyAdvantageSearchDataResponse, aQ as ComplyAdvantageSearchDataResponseHit, aX as ComplyAdvantageSearchEntitiesDataResponse, aZ as ComplyAdvantageSearchEntitiesResponse, aY as ComplyAdvantageSearchEntitiesSuccessResponse, aT as ComplyAdvantageSearchErrorResponse, a_ as ComplyAdvantageSearchRequest, b as ComplyAdvantageSearchResponse, aS as ComplyAdvantageSearchSuccessResponse, b0 as ComplyAdvantageUpdateSearchEntitiesRequest, b2 as ComplyAdvantageUpdateSearchEntitiesResponse, b1 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a$ as ComplyAdvantageUpdateSearchRequest, aN as ComplyAdvantageUser, bB as CreateProviderInput, bC as CreateProviderResponse, aG as CreateSearchInput, cV as CredentialMetadata, cU as CustomerContactInformationOutput, d8 as CustomerDocumentMetaData, d9 as CustomerStatusResults, ba as DataProviderOptions, bb as DataProviders, bG as DeleteProviderInput, bH as DeleteProviderResponse, X as DocumentIdMetadata, V as DocumentIdType, U as DocumentIdTypes, co as DocumentMetadataSchema, a1 as EmailMetadata, E as EmailVerificationAnalysisResponse, cK as EmailVerificationResponse, T as File, cT as GetCredentialsOutput, d5 as GetKybSessionInput, d6 as GetKybSessionResponse, cN as GetKycSessionInput, cO as GetKycSessionResponse, cW as GetKycSessionResponseWithCredentialsMetadata, bA as GetProviderResponse, bz as GetProvidersResponse, ao as HIGH_RISK_TYPES, bX as INDIVIDUAL_BENEFICIARY_RELATIONS, b8 as IdentityProviderOptions, b9 as IdentityProviders, bY as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bg as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, br as IpqualityscoreProvider, cZ as KYB_RESULTS, c$ as KYB_SESSION_STATUSES, cX as KYB_STEP_TYPES, cG as KYC_RESULTS, cI as KYC_SESSION_STATUSES, cE as KYC_STEP_TYPES, c_ as KybResult, d0 as KybSessionStatus, cY as KybStep, cH as KycResult, cJ as KycSessionStatus, cF as KycStep, $ as LivenessMetadata, ap as MEDIUM_RISK_TYPES, aI as MatchStatus, aH as MatchStatuses, aO as MatchTypeDetail, M as MergedProviders, df as MerkleAddressApiError, de as MerkleAddressApiResponse, dd as MerkleAddressRequest, a as MerkleAddressResponse, dc as MerkleBlockChainCodes, db as MerkleBlockChainNames, da as MerkleBlockChainTypes, bc as MerkleScienceConfig, bp as MerkleScienceProvider, N as NestedSession, bm as NexeraIdKYBProvider, bl as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, a0 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Z as ProofOfAddressDocumentType, Y as ProofOfAddressDocumentTypes, _ as ProofOfAddressMetadata, cS as ProofOfResidenceDocumentType, cR as ProofOfResidenceMetaData, bx as ProviderData, by as ProviderDataProject, bj as ProviderIntegrationType, bi as ProviderIntegrationTypeOptions, b7 as ProviderWithoutConfig, aa as RESULT_PARSER_ERROR, Q as ReasonCode, L as ReasonCodes, t as RequestProperty, aK as RiskLevel, aJ as RiskLevels, R as RiskSeverity, am as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, ak as SEARCH_FILTER_PEP_TYPE, ai as SEARCH_FILTER_SANCTION_TYPE, av as SEARCH_FILTER_TYPES, a8 as SESSION_NOT_FOUND, ae as STEP_NOT_FOUND, bP as SUMSUB_APPLICANT_TYPES, ch as SUMSUB_COMPANY_BENEFICIARY_GROUP, c6 as SUMSUB_DOC_TYPES, c8 as SUMSUB_FLOW_LEVEL, cw as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cm as SUMSUB_MEDIA_CONTENT_TYPES, bR as SUMSUB_REVIEW_ANSWERS, cB as SUMSUB_REVIEW_REJECT_LABELS, cD as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bT as SUMSUB_REVIEW_REJECT_TYPES, c4 as SUMSUB_REVIEW_STATUSES, bN as SUMSUB_STEPS, c2 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, be as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bo as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ay as SearchEntityType, ax as SearchEntityTypes, an as SearchFilterAdverseMediaType, al as SearchFilterPepType, aj as SearchFilterSanctionType, aw as SearchFilterType, az as SearchFilters, d4 as SelectKybSession, cL as SelectKycSession, cM as SelectKycSessionStep, G as Session, H as SessionWithoutSteps, D as Status, z as Statuses, a3 as Step, K as StepType, J as StepTypes, bV as SumSubAddress, bW as SumSubApplicantInfo, cq as SumSubApplicantResetSchema, cp as SumSubApplicantReviewStatusSchema, cv as SumSubApplicantSchema, bQ as SumSubApplicantType, cl as SumSubApplicantVerificationStepSchema, c1 as SumSubCompanyApplicantInfo, cf as SumSubCompanyApplicantSchema, c7 as SumSubDocType, c9 as SumSubFlowLevel, cr as SumSubGenerateExternalWebSdkLinkSchema, cg as SumSubImageId, cb as SumSubImageReviewResultSchema, ce as SumSubIndividualApplicantSchema, cn as SumSubMediaContentType, bS as SumSubReviewAnswer, cC as SumSubReviewRejectLabel, bU as SumSubReviewRejectType, ca as SumSubReviewResultSchema, c5 as SumSubReviewStatus, cA as SumSubSimilarApplicantsSchema, bO as SumSubStep, ck as SumSubVerificationStepSchema, bL as SumSubWebhookSchema, cd as SumsubApplicantType, cc as SumsubApplicantTypes, ci as SumsubCompanyBeneficiaryGroup, cu as SumsubKybDataSchema, cz as SumsubKybSessionFlowSection, cy as SumsubKybSessionFlowSectionItem, cx as SumsubKybSessionFlowSectionStatus, ct as SumsubKycDataSchema, cj as SumsubStepStatus, cs as SumsubVideoCallData, c3 as SumsubWebhookInternalStatus, bw as SynapsProvider, ab as SynapsSessionErrorResponse, a4 as SynapsSessionEvent, a7 as SynapsSessionRequest, ac as SynapsSessionResponse, af as SynapsStepErrorResponse, a5 as SynapsStepEvent, ad as SynapsStepRequest, ag as SynapsStepResponse, bF as ToggleProviderInput, a9 as UNKNOWN_ERROR, d7 as UpdateKybSessionOutput, cP as UpdateKycSessionOutput, bD as UpdateProviderInput, bE as UpdateProviderResponse, aM as UpdateSearchEntitiesInput, aL as UpdateSearchInput, cQ as VideoKycMetaData, bI as WEBHOOK_TYPES, F as WebhookPayload, bJ as WebhookType, bf as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, as as mappingMatchTypeToLabel, a6 as typeToHumanReadable } from '../../dist/customers.schema-
|
|
1
|
+
export { a2 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bK as ApplicantMemberOfSchema, bZ as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bM as BaseApplicantActionSchema, bk as BaseProvider, b$ as BeneficiaryCompanyCustomerClaims, c0 as BeneficiaryCompanyCustomerClaimsArray, b_ as BeneficiaryType, d2 as BeneficiaryVerificationStatus, d3 as BeneficiaryVerificationStatusArray, u as BigCSErrorCodes, bh as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bn as BigProvider, v as BitRankRequest, w as BitRankVerified, y as BitRankVerifiedError, x as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aC as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aE as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, aA as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, at as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, aq as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dl as ChainalysisApiError, bd as ChainalysisConfig, dj as ChainalysisErrorCodes, bq as ChainalysisProvider, dh as ChainalysisRegisterApiResponse, dm as ChainalysisRegisterResponse, dg as ChainalysisRequest, dk as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, di as ChainalysisRiskLevel, ah as CoerceDateUTC, g as Coin, d1 as CompanyDocumentMetaData, aW as ComplyAdvantageAmlFullListing, aV as ComplyAdvantageAmlItemSource, aD as ComplyAdvantageCountryFieldSources, aF as ComplyAdvantageDateOfBirthFieldSources, aU as ComplyAdvantageKeyInformation, aP as ComplyAdvantageMedia, b3 as ComplyAdvantageMonitorSearchDataResponse, b5 as ComplyAdvantageMonitorSearchResponse, b4 as ComplyAdvantageMonitorSearchSuccessResponse, b6 as ComplyAdvantageMonitoredSearchUpdate, aB as ComplyAdvantageNationalityFieldSources, bv as ComplyAdvantageProvider, bu as ComplyAdvantageProviderConfigElement, bt as ComplyAdvantageProviderConfigFilters, bs as ComplyAdvantageProviderConfigTypes, au as ComplyAdvantageReponseMatchStatus, ar as ComplyAdvantageResponseMatchType, aR as ComplyAdvantageSearchDataResponse, aQ as ComplyAdvantageSearchDataResponseHit, aX as ComplyAdvantageSearchEntitiesDataResponse, aZ as ComplyAdvantageSearchEntitiesResponse, aY as ComplyAdvantageSearchEntitiesSuccessResponse, aT as ComplyAdvantageSearchErrorResponse, a_ as ComplyAdvantageSearchRequest, b as ComplyAdvantageSearchResponse, aS as ComplyAdvantageSearchSuccessResponse, b0 as ComplyAdvantageUpdateSearchEntitiesRequest, b2 as ComplyAdvantageUpdateSearchEntitiesResponse, b1 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a$ as ComplyAdvantageUpdateSearchRequest, aN as ComplyAdvantageUser, bB as CreateProviderInput, bC as CreateProviderResponse, aG as CreateSearchInput, cV as CredentialMetadata, cU as CustomerContactInformationOutput, d8 as CustomerDocumentMetaData, d9 as CustomerStatusResults, ba as DataProviderOptions, bb as DataProviders, bG as DeleteProviderInput, bH as DeleteProviderResponse, X as DocumentIdMetadata, V as DocumentIdType, U as DocumentIdTypes, co as DocumentMetadataSchema, a1 as EmailMetadata, E as EmailVerificationAnalysisResponse, cK as EmailVerificationResponse, T as File, cT as GetCredentialsOutput, d5 as GetKybSessionInput, d6 as GetKybSessionResponse, cN as GetKycSessionInput, cO as GetKycSessionResponse, cW as GetKycSessionResponseWithCredentialsMetadata, bA as GetProviderResponse, bz as GetProvidersResponse, ao as HIGH_RISK_TYPES, bX as INDIVIDUAL_BENEFICIARY_RELATIONS, b8 as IdentityProviderOptions, b9 as IdentityProviders, bY as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bg as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, br as IpqualityscoreProvider, cZ as KYB_RESULTS, c$ as KYB_SESSION_STATUSES, cX as KYB_STEP_TYPES, cG as KYC_RESULTS, cI as KYC_SESSION_STATUSES, cE as KYC_STEP_TYPES, c_ as KybResult, d0 as KybSessionStatus, cY as KybStep, cH as KycResult, cJ as KycSessionStatus, cF as KycStep, $ as LivenessMetadata, ap as MEDIUM_RISK_TYPES, aI as MatchStatus, aH as MatchStatuses, aO as MatchTypeDetail, M as MergedProviders, df as MerkleAddressApiError, de as MerkleAddressApiResponse, dd as MerkleAddressRequest, a as MerkleAddressResponse, dc as MerkleBlockChainCodes, db as MerkleBlockChainNames, da as MerkleBlockChainTypes, bc as MerkleScienceConfig, bp as MerkleScienceProvider, N as NestedSession, bm as NexeraIdKYBProvider, bl as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, a0 as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Z as ProofOfAddressDocumentType, Y as ProofOfAddressDocumentTypes, _ as ProofOfAddressMetadata, cS as ProofOfResidenceDocumentType, cR as ProofOfResidenceMetaData, bx as ProviderData, by as ProviderDataProject, bj as ProviderIntegrationType, bi as ProviderIntegrationTypeOptions, b7 as ProviderWithoutConfig, aa as RESULT_PARSER_ERROR, Q as ReasonCode, L as ReasonCodes, t as RequestProperty, aK as RiskLevel, aJ as RiskLevels, R as RiskSeverity, am as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, ak as SEARCH_FILTER_PEP_TYPE, ai as SEARCH_FILTER_SANCTION_TYPE, av as SEARCH_FILTER_TYPES, a8 as SESSION_NOT_FOUND, ae as STEP_NOT_FOUND, bP as SUMSUB_APPLICANT_TYPES, ch as SUMSUB_COMPANY_BENEFICIARY_GROUP, c6 as SUMSUB_DOC_TYPES, c8 as SUMSUB_FLOW_LEVEL, cw as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cm as SUMSUB_MEDIA_CONTENT_TYPES, bR as SUMSUB_REVIEW_ANSWERS, cB as SUMSUB_REVIEW_REJECT_LABELS, cD as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bT as SUMSUB_REVIEW_REJECT_TYPES, c4 as SUMSUB_REVIEW_STATUSES, bN as SUMSUB_STEPS, c2 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, be as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bo as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ay as SearchEntityType, ax as SearchEntityTypes, an as SearchFilterAdverseMediaType, al as SearchFilterPepType, aj as SearchFilterSanctionType, aw as SearchFilterType, az as SearchFilters, d4 as SelectKybSession, cL as SelectKycSession, cM as SelectKycSessionStep, G as Session, H as SessionWithoutSteps, D as Status, z as Statuses, a3 as Step, K as StepType, J as StepTypes, bV as SumSubAddress, bW as SumSubApplicantInfo, cq as SumSubApplicantResetSchema, cp as SumSubApplicantReviewStatusSchema, cv as SumSubApplicantSchema, bQ as SumSubApplicantType, cl as SumSubApplicantVerificationStepSchema, c1 as SumSubCompanyApplicantInfo, cf as SumSubCompanyApplicantSchema, c7 as SumSubDocType, c9 as SumSubFlowLevel, cr as SumSubGenerateExternalWebSdkLinkSchema, cg as SumSubImageId, cb as SumSubImageReviewResultSchema, ce as SumSubIndividualApplicantSchema, cn as SumSubMediaContentType, bS as SumSubReviewAnswer, cC as SumSubReviewRejectLabel, bU as SumSubReviewRejectType, ca as SumSubReviewResultSchema, c5 as SumSubReviewStatus, cA as SumSubSimilarApplicantsSchema, bO as SumSubStep, ck as SumSubVerificationStepSchema, bL as SumSubWebhookSchema, cd as SumsubApplicantType, cc as SumsubApplicantTypes, ci as SumsubCompanyBeneficiaryGroup, cu as SumsubKybDataSchema, cz as SumsubKybSessionFlowSection, cy as SumsubKybSessionFlowSectionItem, cx as SumsubKybSessionFlowSectionStatus, ct as SumsubKycDataSchema, cj as SumsubStepStatus, cs as SumsubVideoCallData, c3 as SumsubWebhookInternalStatus, bw as SynapsProvider, ab as SynapsSessionErrorResponse, a4 as SynapsSessionEvent, a7 as SynapsSessionRequest, ac as SynapsSessionResponse, af as SynapsStepErrorResponse, a5 as SynapsStepEvent, ad as SynapsStepRequest, ag as SynapsStepResponse, bF as ToggleProviderInput, a9 as UNKNOWN_ERROR, d7 as UpdateKybSessionOutput, cP as UpdateKycSessionOutput, bD as UpdateProviderInput, bE as UpdateProviderResponse, aM as UpdateSearchEntitiesInput, aL as UpdateSearchInput, cQ as VideoKycMetaData, bI as WEBHOOK_TYPES, F as WebhookPayload, bJ as WebhookType, bf as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, as as mappingMatchTypeToLabel, a6 as typeToHumanReadable } from '../../dist/customers.schema-37608679.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
|
-
import '../../dist/identity-api.schema-
|
|
3
|
+
import '../../dist/identity-api.schema-74e951be.esm.js';
|
|
4
4
|
import 'nanoid';
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
6
|
-
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-df9e231d.cjs.dev.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-248cbc44.cjs.dev.js');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
6
|
-
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-7bb2255e.cjs.prod.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-995d3ffd.cjs.prod.js');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-
|
|
1
|
+
export { al as Alpha2Country, e0 as CredentialMediaType, dX as CredentialNames, dW as CredentialSchemas, d_ as CredentialType, C as CredentialTypes, dV as GenericVerifiableCredentialSchema, dI as ID3CredentialSubjectSchema, dS as IDImageCredentialSubjectSchema, dR as IDInformationCredentialSubjectSchema, dJ as IDScanCredentialSubjectSchema, dK as IDScanPassportCredentialSubjectSchema, dL as IDScanSelfieCredentialSubjectSchema, aj as ISO3CountryCode, dY as NexeraCredentialType, dQ as OLD_AMLScreeningsResultsCredentialSubjectSchema, dM as OLD_IDImageCredentialSubjectSchema, dN as OLD_IDInformationCredentialSubjectSchema, dO as OLD_ProofOfResidenceCredentialSubjectSchema, dP as OLD_SelfieImageCredentialSubjectSchema, dU as ProofOfResidenceCredentialSubjectSchema, dT as SelfieImageCredentialSubjectSchema, d$ as VerifiableCredential, am as countryISO3toISO2Mapping, dZ as getCredentialName, ao as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-74e951be.esm.js';
|
|
2
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-e82b28c5.esm.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'nanoid';
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
7
|
-
var customers_schema = require('../../dist/customers.schema-
|
|
6
|
+
var identityApi_schema = require('../../dist/identity-api.schema-df9e231d.cjs.dev.js');
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-e40f7e9a.cjs.dev.js');
|
|
8
8
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
7
|
-
var customers_schema = require('../../dist/customers.schema-
|
|
6
|
+
var identityApi_schema = require('../../dist/identity-api.schema-7bb2255e.cjs.prod.js');
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-1acdda1a.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
|
-
import { ae as UuidString,
|
|
3
|
-
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/customers.schema-
|
|
2
|
+
import { ae as UuidString, dC as ExternalCustomerId, ar as RiskScoreType, at as CustomerType, az as CustomerOnboardingLevel, aB as CustomerStatus, aj as ISO3CountryCode, a2 as BlockchainAddress, bD as RuleResultStatus, dV as GenericVerifiableCredentialSchema, e2 as _toArray, e1 as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-74e951be.esm.js';
|
|
3
|
+
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/customers.schema-37608679.esm.js';
|
|
4
4
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|