@nexeraid/identity-schemas 2.3.1-dev → 2.3.3-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-82f2a821.esm.js → customers.schema-5f7640b6.esm.js} +7 -2
- package/dist/{customers.schema-57c68d34.cjs.dev.js → customers.schema-904fd7b4.cjs.dev.js} +7 -1
- package/dist/{customers.schema-06e46002.cjs.prod.js → customers.schema-bcab887a.cjs.prod.js} +7 -1
- package/dist/declarations/src/customer.schema.d.ts +2 -1
- package/dist/declarations/src/customer.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +47 -0
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-8df5dca3.cjs.dev.js → frontend-utilities.schema-16a62836.cjs.dev.js} +1 -1
- package/dist/{frontend-utilities.schema-44d390e0.esm.js → frontend-utilities.schema-2529281f.esm.js} +1 -1
- package/dist/{frontend-utilities.schema-3fb22d80.cjs.prod.js → frontend-utilities.schema-6b158a83.cjs.prod.js} +1 -1
- package/dist/{identity-api.schema-3a6aab4a.esm.js → identity-api.schema-01af1231.esm.js} +2 -1
- package/dist/{identity-api.schema-ae0888cb.cjs.prod.js → identity-api.schema-9137e5c5.cjs.dev.js} +2 -1
- package/dist/{identity-api.schema-6ec9e2e0.cjs.dev.js → identity-api.schema-da491c8f.cjs.prod.js} +2 -1
- package/dist/nexeraid-identity-schemas.cjs.dev.js +2 -2
- package/dist/nexeraid-identity-schemas.cjs.prod.js +2 -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 +3 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +3 -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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { a2 as BlockchainAddress, z as AddressSchema, ak as Alpha2Country, ae as UuidString, e0 as _toConsumableArray, e2 as _arrayWithHoles, e3 as _unsupportedIterableToArray, e4 as _nonIterableRest, ai as ISO3CountryCode, a5 as BlockchainNamespace, br as SdkVerificationOutput, aA as CustomerStatus, e5 as _defineProperty, dT as ProofOfResidenceCredentialSubjectSchema, ck as QrCodeLinkWithSchemaType, aB as BasicCustomerContactInformation, dZ as CredentialType } from './identity-api.schema-
|
|
2
|
+
import { a2 as BlockchainAddress, z as AddressSchema, ak as Alpha2Country, ae as UuidString, e0 as _toConsumableArray, e2 as _arrayWithHoles, e3 as _unsupportedIterableToArray, e4 as _nonIterableRest, ai as ISO3CountryCode, a5 as BlockchainNamespace, br as SdkVerificationOutput, aA as CustomerStatus, e5 as _defineProperty, dT as ProofOfResidenceCredentialSubjectSchema, ck as QrCodeLinkWithSchemaType, aB as BasicCustomerContactInformation, dZ as CredentialType } from './identity-api.schema-01af1231.esm.js';
|
|
3
3
|
|
|
4
4
|
// based on https://tech-doc.api.scorechain.com/
|
|
5
5
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2255,6 +2255,10 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2255
2255
|
"Closed" // when we close the session at the end of the flow
|
|
2256
2256
|
];
|
|
2257
2257
|
var KycSessionStatus = z["enum"](KYC_SESSION_STATUSES);
|
|
2258
|
+
var EmailVerificationResponse = z.object({
|
|
2259
|
+
email: z.string().email().nullish(),
|
|
2260
|
+
verified: z["boolean"]().nullish()
|
|
2261
|
+
});
|
|
2258
2262
|
var SelectKycSession = z.object({
|
|
2259
2263
|
id: UuidString,
|
|
2260
2264
|
customerId: UuidString,
|
|
@@ -2286,6 +2290,7 @@ var GetKycSessionInput = z.object({
|
|
|
2286
2290
|
});
|
|
2287
2291
|
var GetKycSessionResponse = SelectKycSession.extend({
|
|
2288
2292
|
stepsCompleted: z.array(SelectKycSessionStep),
|
|
2293
|
+
emailVerification: EmailVerificationResponse,
|
|
2289
2294
|
customerStatus: CustomerStatus.nullish(),
|
|
2290
2295
|
sumSubReviewResult: z.object(_defineProperty(_defineProperty({}, SumSubStep["enum"].IDENTITY, z.array(SumSubReviewRejectLabel)), SumSubStep["enum"].SELFIE, z.array(SumSubReviewRejectLabel))).nullish()
|
|
2291
2296
|
});
|
|
@@ -2395,4 +2400,4 @@ var UpdateKybSessionOutput = z.string();
|
|
|
2395
2400
|
var CustomerDocumentMetaData = z.union([CompanyDocumentMetaData, ProofOfResidenceMetaData, VideoKycMetaData]);
|
|
2396
2401
|
var CustomerStatusResults = z.union([KybResult, KycResult]);
|
|
2397
2402
|
|
|
2398
|
-
export { LivenessMetadata as $, ANALYSIS_TYPES as A, BitRankVerifiedResponse as B, ChainalysisRiskAssessmentResponse as C, Status$1 as D, EmailVerificationAnalysisResponse as E, WebhookPayload as F, Session as G, SessionWithoutSteps as H, IpQualityServiceAnalysisResponse as I, StepTypes as J, StepType as K, ReasonCodes as L, MergedProviders as M, NestedSession as N, OBJECT_TYPES as O, PhoneVerificationAnalysisResponse as P, ReasonCode as Q, RiskSeverity as R, ScoringAnalysisResponse as S, File as T, DocumentIdTypes as U, DocumentIdType as V, WorkflowsScoringAnalysisRequest as W, DocumentIdMetadata as X, ProofOfAddressDocumentTypes as Y, ProofOfAddressDocumentType as Z, ProofOfAddressMetadata as _, MerkleAddressResponse as a, ComplyAdvantageUpdateSearchRequest as a$, PhoneMetadata as a0, EmailMetadata as a1, AMLMetadata as a2, Step as a3, SynapsSessionEvent as a4, SynapsStepEvent as a5, typeToHumanReadable as a6, SynapsSessionRequest as a7, SESSION_NOT_FOUND as a8, UNKNOWN_ERROR as a9, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as aA, ComplyAdvantageNationalityFieldSources as aB, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aC, ComplyAdvantageCountryFieldSources as aD, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as aE, ComplyAdvantageDateOfBirthFieldSources as aF, CreateSearchInput as aG, MatchStatuses as aH, MatchStatus as aI, RiskLevels as aJ, RiskLevel as aK, UpdateSearchInput as aL, UpdateSearchEntitiesInput as aM, ComplyAdvantageUser as aN, MatchTypeDetail as aO, ComplyAdvantageMedia as aP, ComplyAdvantageSearchDataResponseHit as aQ, ComplyAdvantageSearchDataResponse as aR, ComplyAdvantageSearchSuccessResponse as aS, ComplyAdvantageSearchErrorResponse as aT, ComplyAdvantageKeyInformation as aU, ComplyAdvantageAmlItemSource as aV, ComplyAdvantageAmlFullListing as aW, ComplyAdvantageSearchEntitiesDataResponse as aX, ComplyAdvantageSearchEntitiesSuccessResponse as aY, ComplyAdvantageSearchEntitiesResponse as aZ, ComplyAdvantageSearchRequest as a_, RESULT_PARSER_ERROR as aa, SynapsSessionErrorResponse as ab, SynapsSessionResponse as ac, SynapsStepRequest as ad, STEP_NOT_FOUND as ae, SynapsStepErrorResponse as af, SynapsStepResponse as ag, CoerceDateUTC as ah, SEARCH_FILTER_SANCTION_TYPE as ai, SearchFilterSanctionType as aj, SEARCH_FILTER_PEP_TYPE as ak, SearchFilterPepType as al, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as am, SearchFilterAdverseMediaType as an, HIGH_RISK_TYPES as ao, MEDIUM_RISK_TYPES as ap, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as aq, ComplyAdvantageResponseMatchType as ar, mappingMatchTypeToLabel as as, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as at, ComplyAdvantageReponseMatchStatus as au, SEARCH_FILTER_TYPES as av, SearchFilterType as aw, SearchEntityTypes as ax, SearchEntityType as ay, SearchFilters as az, ComplyAdvantageSearchResponse as b, BeneficiaryCompanyCustomerClaims as b$, ComplyAdvantageUpdateSearchEntitiesRequest as b0, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as b1, ComplyAdvantageUpdateSearchEntitiesResponse as b2, ComplyAdvantageMonitorSearchDataResponse as b3, ComplyAdvantageMonitorSearchSuccessResponse as b4, ComplyAdvantageMonitorSearchResponse as b5, ComplyAdvantageMonitoredSearchUpdate as b6, ProviderWithoutConfig as b7, IdentityProviderOptions as b8, IdentityProviders as b9, GetProviderResponse as bA, CreateProviderInput as bB, CreateProviderResponse as bC, UpdateProviderInput as bD, UpdateProviderResponse as bE, ToggleProviderInput as bF, DeleteProviderInput as bG, DeleteProviderResponse as bH, WEBHOOK_TYPES as bI, WebhookType as bJ, ApplicantMemberOfSchema as bK, SumSubWebhookSchema as bL, BaseApplicantActionSchema as bM, SUMSUB_STEPS as bN, SumSubStep as bO, SUMSUB_APPLICANT_TYPES as bP, SumSubApplicantType as bQ, SUMSUB_REVIEW_ANSWERS as bR, SumSubReviewAnswer as bS, SUMSUB_REVIEW_REJECT_TYPES as bT, SumSubReviewRejectType as bU, SumSubAddress as bV, SumSubApplicantInfo as bW, INDIVIDUAL_BENEFICIARY_RELATIONS as bX, IndividualBeneficiaryRelation as bY, BENEFICIARY_TYPES as bZ, BeneficiaryType as b_, DataProviderOptions as ba, DataProviders as bb, MerkleScienceConfig as bc, ChainalysisConfig as bd, ScorechainConfig as be, WorkflowsScorechainConfig as bf, IpQualityConfig as bg, BigConfig as bh, ProviderIntegrationTypeOptions as bi, ProviderIntegrationType as bj, BaseProvider as bk, NexeraIdSSIDProvider as bl, NexeraIdKYBProvider as bm, BigProvider as bn, ScorechainProvider as bo, MerkleScienceProvider as bp, ChainalysisProvider as bq, IpqualityscoreProvider as br, ComplyAdvantageProviderConfigTypes as bs, ComplyAdvantageProviderConfigFilters as bt, ComplyAdvantageProviderConfigElement as bu, ComplyAdvantageProvider as bv, SynapsProvider as bw, ProviderData as bx, ProviderDataProject as by, GetProvidersResponse as bz, AnalysisType as c,
|
|
2403
|
+
export { LivenessMetadata as $, ANALYSIS_TYPES as A, BitRankVerifiedResponse as B, ChainalysisRiskAssessmentResponse as C, Status$1 as D, EmailVerificationAnalysisResponse as E, WebhookPayload as F, Session as G, SessionWithoutSteps as H, IpQualityServiceAnalysisResponse as I, StepTypes as J, StepType as K, ReasonCodes as L, MergedProviders as M, NestedSession as N, OBJECT_TYPES as O, PhoneVerificationAnalysisResponse as P, ReasonCode as Q, RiskSeverity as R, ScoringAnalysisResponse as S, File as T, DocumentIdTypes as U, DocumentIdType as V, WorkflowsScoringAnalysisRequest as W, DocumentIdMetadata as X, ProofOfAddressDocumentTypes as Y, ProofOfAddressDocumentType as Z, ProofOfAddressMetadata as _, MerkleAddressResponse as a, ComplyAdvantageUpdateSearchRequest as a$, PhoneMetadata as a0, EmailMetadata as a1, AMLMetadata as a2, Step as a3, SynapsSessionEvent as a4, SynapsStepEvent as a5, typeToHumanReadable as a6, SynapsSessionRequest as a7, SESSION_NOT_FOUND as a8, UNKNOWN_ERROR as a9, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as aA, ComplyAdvantageNationalityFieldSources as aB, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aC, ComplyAdvantageCountryFieldSources as aD, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as aE, ComplyAdvantageDateOfBirthFieldSources as aF, CreateSearchInput as aG, MatchStatuses as aH, MatchStatus as aI, RiskLevels as aJ, RiskLevel as aK, UpdateSearchInput as aL, UpdateSearchEntitiesInput as aM, ComplyAdvantageUser as aN, MatchTypeDetail as aO, ComplyAdvantageMedia as aP, ComplyAdvantageSearchDataResponseHit as aQ, ComplyAdvantageSearchDataResponse as aR, ComplyAdvantageSearchSuccessResponse as aS, ComplyAdvantageSearchErrorResponse as aT, ComplyAdvantageKeyInformation as aU, ComplyAdvantageAmlItemSource as aV, ComplyAdvantageAmlFullListing as aW, ComplyAdvantageSearchEntitiesDataResponse as aX, ComplyAdvantageSearchEntitiesSuccessResponse as aY, ComplyAdvantageSearchEntitiesResponse as aZ, ComplyAdvantageSearchRequest as a_, RESULT_PARSER_ERROR as aa, SynapsSessionErrorResponse as ab, SynapsSessionResponse as ac, SynapsStepRequest as ad, STEP_NOT_FOUND as ae, SynapsStepErrorResponse as af, SynapsStepResponse as ag, CoerceDateUTC as ah, SEARCH_FILTER_SANCTION_TYPE as ai, SearchFilterSanctionType as aj, SEARCH_FILTER_PEP_TYPE as ak, SearchFilterPepType as al, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as am, SearchFilterAdverseMediaType as an, HIGH_RISK_TYPES as ao, MEDIUM_RISK_TYPES as ap, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as aq, ComplyAdvantageResponseMatchType as ar, mappingMatchTypeToLabel as as, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as at, ComplyAdvantageReponseMatchStatus as au, SEARCH_FILTER_TYPES as av, SearchFilterType as aw, SearchEntityTypes as ax, SearchEntityType as ay, SearchFilters as az, ComplyAdvantageSearchResponse as b, BeneficiaryCompanyCustomerClaims as b$, ComplyAdvantageUpdateSearchEntitiesRequest as b0, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as b1, ComplyAdvantageUpdateSearchEntitiesResponse as b2, ComplyAdvantageMonitorSearchDataResponse as b3, ComplyAdvantageMonitorSearchSuccessResponse as b4, ComplyAdvantageMonitorSearchResponse as b5, ComplyAdvantageMonitoredSearchUpdate as b6, ProviderWithoutConfig as b7, IdentityProviderOptions as b8, IdentityProviders as b9, GetProviderResponse as bA, CreateProviderInput as bB, CreateProviderResponse as bC, UpdateProviderInput as bD, UpdateProviderResponse as bE, ToggleProviderInput as bF, DeleteProviderInput as bG, DeleteProviderResponse as bH, WEBHOOK_TYPES as bI, WebhookType as bJ, ApplicantMemberOfSchema as bK, SumSubWebhookSchema as bL, BaseApplicantActionSchema as bM, SUMSUB_STEPS as bN, SumSubStep as bO, SUMSUB_APPLICANT_TYPES as bP, SumSubApplicantType as bQ, SUMSUB_REVIEW_ANSWERS as bR, SumSubReviewAnswer as bS, SUMSUB_REVIEW_REJECT_TYPES as bT, SumSubReviewRejectType as bU, SumSubAddress as bV, SumSubApplicantInfo as bW, INDIVIDUAL_BENEFICIARY_RELATIONS as bX, IndividualBeneficiaryRelation as bY, BENEFICIARY_TYPES as bZ, BeneficiaryType as b_, DataProviderOptions as ba, DataProviders as bb, MerkleScienceConfig as bc, ChainalysisConfig as bd, ScorechainConfig as be, WorkflowsScorechainConfig as bf, IpQualityConfig as bg, BigConfig as bh, ProviderIntegrationTypeOptions as bi, ProviderIntegrationType as bj, BaseProvider as bk, NexeraIdSSIDProvider as bl, NexeraIdKYBProvider as bm, BigProvider as bn, ScorechainProvider as bo, MerkleScienceProvider as bp, ChainalysisProvider as bq, IpqualityscoreProvider as br, ComplyAdvantageProviderConfigTypes as bs, ComplyAdvantageProviderConfigFilters as bt, ComplyAdvantageProviderConfigElement as bu, ComplyAdvantageProvider as bv, SynapsProvider as bw, ProviderData as bx, ProviderDataProject as by, GetProvidersResponse as bz, AnalysisType as c, KYB_SESSION_STATUSES as c$, BeneficiaryCompanyCustomerClaimsArray as c0, SumSubCompanyApplicantInfo as c1, SUMSUB_WEBHOOK_INTERNAL_STATUS as c2, SumsubWebhookInternalStatus as c3, SUMSUB_REVIEW_STATUSES as c4, SumSubReviewStatus as c5, SUMSUB_DOC_TYPES as c6, SumSubDocType as c7, SUMSUB_FLOW_LEVEL as c8, SumSubFlowLevel as c9, SumSubSimilarApplicantsSchema as cA, SUMSUB_REVIEW_REJECT_LABELS as cB, SumSubReviewRejectLabel as cC, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cD, KYC_STEP_TYPES as cE, KycStep as cF, KYC_RESULTS as cG, KycResult as cH, KYC_SESSION_STATUSES as cI, KycSessionStatus as cJ, EmailVerificationResponse as cK, SelectKycSession as cL, SelectKycSessionStep as cM, GetKycSessionInput as cN, GetKycSessionResponse as cO, UpdateKycSessionOutput as cP, VideoKycMetaData as cQ, ProofOfResidenceMetaData as cR, ProofOfResidenceDocumentType as cS, GetCredentialsOutput as cT, CustomerContactInformationOutput as cU, CredentialMetadata as cV, GetKycSessionResponseWithCredentialsMetadata as cW, KYB_STEP_TYPES as cX, KybStep as cY, KYB_RESULTS as cZ, KybResult as c_, SumSubReviewResultSchema as ca, SumSubImageReviewResultSchema as cb, SumsubApplicantTypes as cc, SumsubApplicantType as cd, SumSubIndividualApplicantSchema as ce, SumSubCompanyApplicantSchema as cf, SumSubImageId as cg, SUMSUB_COMPANY_BENEFICIARY_GROUP as ch, SumsubCompanyBeneficiaryGroup as ci, SumsubStepStatus as cj, SumSubVerificationStepSchema as ck, SumSubApplicantVerificationStepSchema as cl, SUMSUB_MEDIA_CONTENT_TYPES as cm, SumSubMediaContentType as cn, DocumentMetadataSchema as co, SumSubApplicantReviewStatusSchema as cp, SumSubApplicantResetSchema as cq, SumSubGenerateExternalWebSdkLinkSchema as cr, SumsubVideoCallData as cs, SumsubKycDataSchema as ct, SumsubKybDataSchema as cu, SumSubApplicantSchema as cv, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cw, SumsubKybSessionFlowSectionStatus as cx, SumsubKybSessionFlowSectionItem as cy, SumsubKybSessionFlowSection as cz, ObjectType as d, KybSessionStatus as d0, CompanyDocumentMetaData as d1, BeneficiaryVerificationStatus as d2, BeneficiaryVerificationStatusArray as d3, SelectKybSession as d4, GetKybSessionInput as d5, GetKybSessionResponse as d6, UpdateKybSessionOutput as d7, CustomerDocumentMetaData as d8, CustomerStatusResults as d9, MerkleBlockChainTypes as da, MerkleBlockChainNames as db, MerkleBlockChainCodes as dc, MerkleAddressRequest as dd, MerkleAddressApiResponse as de, MerkleAddressApiError as df, ChainalysisRequest as dg, ChainalysisRegisterApiResponse as dh, ChainalysisRiskLevel as di, ChainalysisErrorCodes as dj, ChainalysisRiskAssessmentApiResponse as dk, ChainalysisApiError as dl, ChainalysisRegisterResponse as dm, BLOCKCHAIN_TYPES as e, Blockchain as f, Coin as g, ScorechainErrorResponse as h, ScorechainError as i, ScorechainAnalysis as j, ScoringAnalysisRequest as k, IpQualityAnalysisRequest as l, IpQualityAnalysisResponse as m, IpQualityServiceAnalysis as n, IpQualityServiceErrorResponse as o, BigCryptoChain as p, BigPropertiesLiteral as q, BigProperties as r, BigProperty as s, RequestProperty as t, BigCSErrorCodes as u, BitRankRequest as v, BitRankVerified as w, BitRankVerifiedErrorResponse as x, BitRankVerifiedError as y, Statuses as z };
|
|
@@ -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-9137e5c5.cjs.dev.js');
|
|
5
5
|
|
|
6
6
|
// based on https://tech-doc.api.scorechain.com/
|
|
7
7
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2257,6 +2257,10 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2257
2257
|
"Closed" // when we close the session at the end of the flow
|
|
2258
2258
|
];
|
|
2259
2259
|
var KycSessionStatus = zod.z["enum"](KYC_SESSION_STATUSES);
|
|
2260
|
+
var EmailVerificationResponse = zod.z.object({
|
|
2261
|
+
email: zod.z.string().email().nullish(),
|
|
2262
|
+
verified: zod.z["boolean"]().nullish()
|
|
2263
|
+
});
|
|
2260
2264
|
var SelectKycSession = zod.z.object({
|
|
2261
2265
|
id: identityApi_schema.UuidString,
|
|
2262
2266
|
customerId: identityApi_schema.UuidString,
|
|
@@ -2288,6 +2292,7 @@ var GetKycSessionInput = zod.z.object({
|
|
|
2288
2292
|
});
|
|
2289
2293
|
var GetKycSessionResponse = SelectKycSession.extend({
|
|
2290
2294
|
stepsCompleted: zod.z.array(SelectKycSessionStep),
|
|
2295
|
+
emailVerification: EmailVerificationResponse,
|
|
2291
2296
|
customerStatus: identityApi_schema.CustomerStatus.nullish(),
|
|
2292
2297
|
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()
|
|
2293
2298
|
});
|
|
@@ -2489,6 +2494,7 @@ exports.DocumentIdTypes = DocumentIdTypes;
|
|
|
2489
2494
|
exports.DocumentMetadataSchema = DocumentMetadataSchema;
|
|
2490
2495
|
exports.EmailMetadata = EmailMetadata;
|
|
2491
2496
|
exports.EmailVerificationAnalysisResponse = EmailVerificationAnalysisResponse;
|
|
2497
|
+
exports.EmailVerificationResponse = EmailVerificationResponse;
|
|
2492
2498
|
exports.File = File;
|
|
2493
2499
|
exports.GetCredentialsOutput = GetCredentialsOutput;
|
|
2494
2500
|
exports.GetKybSessionInput = GetKybSessionInput;
|
package/dist/{customers.schema-06e46002.cjs.prod.js → customers.schema-bcab887a.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-da491c8f.cjs.prod.js');
|
|
5
5
|
|
|
6
6
|
// based on https://tech-doc.api.scorechain.com/
|
|
7
7
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2257,6 +2257,10 @@ var KYC_SESSION_STATUSES = ["NotStarted",
|
|
|
2257
2257
|
"Closed" // when we close the session at the end of the flow
|
|
2258
2258
|
];
|
|
2259
2259
|
var KycSessionStatus = zod.z["enum"](KYC_SESSION_STATUSES);
|
|
2260
|
+
var EmailVerificationResponse = zod.z.object({
|
|
2261
|
+
email: zod.z.string().email().nullish(),
|
|
2262
|
+
verified: zod.z["boolean"]().nullish()
|
|
2263
|
+
});
|
|
2260
2264
|
var SelectKycSession = zod.z.object({
|
|
2261
2265
|
id: identityApi_schema.UuidString,
|
|
2262
2266
|
customerId: identityApi_schema.UuidString,
|
|
@@ -2288,6 +2292,7 @@ var GetKycSessionInput = zod.z.object({
|
|
|
2288
2292
|
});
|
|
2289
2293
|
var GetKycSessionResponse = SelectKycSession.extend({
|
|
2290
2294
|
stepsCompleted: zod.z.array(SelectKycSessionStep),
|
|
2295
|
+
emailVerification: EmailVerificationResponse,
|
|
2291
2296
|
customerStatus: identityApi_schema.CustomerStatus.nullish(),
|
|
2292
2297
|
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()
|
|
2293
2298
|
});
|
|
@@ -2489,6 +2494,7 @@ exports.DocumentIdTypes = DocumentIdTypes;
|
|
|
2489
2494
|
exports.DocumentMetadataSchema = DocumentMetadataSchema;
|
|
2490
2495
|
exports.EmailMetadata = EmailMetadata;
|
|
2491
2496
|
exports.EmailVerificationAnalysisResponse = EmailVerificationAnalysisResponse;
|
|
2497
|
+
exports.EmailVerificationResponse = EmailVerificationResponse;
|
|
2492
2498
|
exports.File = File;
|
|
2493
2499
|
exports.GetCredentialsOutput = GetCredentialsOutput;
|
|
2494
2500
|
exports.GetKybSessionInput = GetKybSessionInput;
|
|
@@ -15,7 +15,8 @@ export declare const CustomerOnboardingLevels: readonly ["Sign-up", "AML screeni
|
|
|
15
15
|
export declare const CustomerOnboardingLevel: z.ZodEnum<["Sign-up", "AML screening", "KYC", "Questionaire", "Onboarded", "Onboarding", "KYB", "Onboarded"]>;
|
|
16
16
|
export type CustomerOnboardingLevel = z.infer<typeof CustomerOnboardingLevel>;
|
|
17
17
|
export declare const CustomerStatuses: readonly ["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"];
|
|
18
|
-
/**
|
|
18
|
+
/**
|
|
19
|
+
* We changed the status names to be more user-friendly, that's why we need to preprocess the data
|
|
19
20
|
* “Closed” -> “Terminated”
|
|
20
21
|
* “Blocked” -> “Rejected”
|
|
21
22
|
* “Under Investigation” -> “To be reviewed”
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customer.schema.d.ts","sourceRoot":"../../../src","sources":["customer.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,cAAc,+CAAgD,CAAC;AAC5E,eAAO,MAAM,aAAa,iDAAyB,CAAC;AACpD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAG1D,eAAO,MAAM,aAAa,oCAAqC,CAAC;AAChE,eAAO,MAAM,YAAY,sCAAwB,CAAC;AAClD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAGxD,eAAO,MAAM,mBAAmB,2EAMtB,CAAC;AACX,eAAO,MAAM,kBAAkB,6EAA8B,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAGpE,eAAO,MAAM,mBAAmB,6CAA8C,CAAC;AAC/E,eAAO,MAAM,kBAAkB,+CAA8B,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,wBAAwB,6GAG3B,CAAC;AACX,eAAO,MAAM,uBAAuB,+GAAmC,CAAC;AACxE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG9E,eAAO,MAAM,gBAAgB,gHASnB,CAAC;AAEX
|
|
1
|
+
{"version":3,"file":"customer.schema.d.ts","sourceRoot":"../../../src","sources":["customer.schema.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,cAAc,+CAAgD,CAAC;AAC5E,eAAO,MAAM,aAAa,iDAAyB,CAAC;AACpD,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAG1D,eAAO,MAAM,aAAa,oCAAqC,CAAC;AAChE,eAAO,MAAM,YAAY,sCAAwB,CAAC;AAClD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAGxD,eAAO,MAAM,mBAAmB,2EAMtB,CAAC;AACX,eAAO,MAAM,kBAAkB,6EAA8B,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAGpE,eAAO,MAAM,mBAAmB,6CAA8C,CAAC;AAC/E,eAAO,MAAM,kBAAkB,+CAA8B,CAAC;AAC9D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,wBAAwB,6GAG3B,CAAC;AACX,eAAO,MAAM,uBAAuB,+GAAmC,CAAC;AACxE,MAAM,MAAM,uBAAuB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAG9E,eAAO,MAAM,gBAAgB,gHASnB,CAAC;AAEX;;;;;GAKG;AACH,eAAO,MAAM,cAAc,qPAWC,CAAC;AAE7B,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;AAE5D,eAAO,MAAM,+BAA+B;;;;;;;;;;;;;;;;;;EAQhC,CAAC;AAEb,MAAM,MAAM,+BAA+B,GAAG,CAAC,CAAC,KAAK,CACnD,OAAO,+BAA+B,CACvC,CAAC;AAEF,eAAO,MAAM,gBAAgB,gLAUnB,CAAC;AAEX,eAAO,MAAM,kBAAkB,kLAA2B,CAAC;AAC3D,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAEpE,eAAO,MAAM,sBAAsB,qJAUzB,CAAC;AAEX,eAAO,MAAM,mBAAmB,uJAAiC,CAAC;AAClE,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEtE,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CvC,CAAC"}
|
|
@@ -8,6 +8,17 @@ export type KycResult = z.infer<typeof KycResult>;
|
|
|
8
8
|
export declare const KYC_SESSION_STATUSES: readonly ["NotStarted", "Started", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"];
|
|
9
9
|
export declare const KycSessionStatus: z.ZodEnum<["NotStarted", "Started", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>;
|
|
10
10
|
export type KycSessionStatus = z.infer<typeof KycSessionStatus>;
|
|
11
|
+
export declare const EmailVerificationResponse: z.ZodObject<{
|
|
12
|
+
email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
13
|
+
verified: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
email?: string | null | undefined;
|
|
16
|
+
verified?: boolean | null | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
email?: string | null | undefined;
|
|
19
|
+
verified?: boolean | null | undefined;
|
|
20
|
+
}>;
|
|
21
|
+
export type EmailVerificationResponse = z.infer<typeof EmailVerificationResponse>;
|
|
11
22
|
export declare const SelectKycSession: z.ZodObject<{
|
|
12
23
|
id: z.ZodString;
|
|
13
24
|
customerId: z.ZodString;
|
|
@@ -373,6 +384,16 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
373
384
|
customerId: string;
|
|
374
385
|
kycSessionId: string;
|
|
375
386
|
}>, "many">;
|
|
387
|
+
emailVerification: 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
|
+
}>;
|
|
376
397
|
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>>>;
|
|
377
398
|
sumSubReviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
378
399
|
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">;
|
|
@@ -391,6 +412,10 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
391
412
|
customerId: string;
|
|
392
413
|
workflowId: string | null;
|
|
393
414
|
cmsProjectId: string;
|
|
415
|
+
emailVerification: {
|
|
416
|
+
email?: string | null | undefined;
|
|
417
|
+
verified?: boolean | null | undefined;
|
|
418
|
+
};
|
|
394
419
|
stepsCompleted: {
|
|
395
420
|
id: string;
|
|
396
421
|
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
@@ -440,6 +465,10 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
|
|
|
440
465
|
customerId: string;
|
|
441
466
|
workflowId: string | null;
|
|
442
467
|
cmsProjectId: string;
|
|
468
|
+
emailVerification: {
|
|
469
|
+
email?: string | null | undefined;
|
|
470
|
+
verified?: boolean | null | undefined;
|
|
471
|
+
};
|
|
443
472
|
stepsCompleted: {
|
|
444
473
|
id: string;
|
|
445
474
|
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
@@ -830,6 +859,16 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
830
859
|
customerId: string;
|
|
831
860
|
kycSessionId: string;
|
|
832
861
|
}>, "many">;
|
|
862
|
+
emailVerification: 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
|
+
}>;
|
|
833
872
|
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>>>;
|
|
834
873
|
sumSubReviewResult: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
835
874
|
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">;
|
|
@@ -861,6 +900,10 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
861
900
|
customerId: string;
|
|
862
901
|
workflowId: string | null;
|
|
863
902
|
cmsProjectId: string;
|
|
903
|
+
emailVerification: {
|
|
904
|
+
email?: string | null | undefined;
|
|
905
|
+
verified?: boolean | null | undefined;
|
|
906
|
+
};
|
|
864
907
|
stepsCompleted: {
|
|
865
908
|
id: string;
|
|
866
909
|
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
@@ -916,6 +959,10 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
|
|
|
916
959
|
customerId: string;
|
|
917
960
|
workflowId: string | null;
|
|
918
961
|
cmsProjectId: string;
|
|
962
|
+
emailVerification: {
|
|
963
|
+
email?: string | null | undefined;
|
|
964
|
+
verified?: boolean | null | undefined;
|
|
965
|
+
};
|
|
919
966
|
stepsCompleted: {
|
|
920
967
|
id: string;
|
|
921
968
|
type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "Identity" | "Liveness" | "ContactInfo";
|
|
@@ -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,+GAOjB,CAAC;AACX,eAAO,MAAM,OAAO,iHAAyB,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,gHAOvB,CAAC;AACX,eAAO,MAAM,gBAAgB,kHAA+B,CAAC;AAC7D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,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
|
|
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,+GAOjB,CAAC;AACX,eAAO,MAAM,OAAO,iHAAyB,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,gHAOvB,CAAC;AACX,eAAO,MAAM,gBAAgB,kHAA+B,CAAC;AAC7D,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAEhE,eAAO,MAAM,yBAAyB;;;;;;;;;EAGpC,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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUhC,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-44d390e0.esm.js → frontend-utilities.schema-2529281f.esm.js}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { cD as SupportedType, e0 as _toConsumableArray, cs as ARRAY_OPERATORS, cy as BOOLEAN_OPERATORS, cw as NUMERIC_OPERATORS, cu as STRING_OPERATORS } from './identity-api.schema-
|
|
1
|
+
import { cD as SupportedType, e0 as _toConsumableArray, cs as ARRAY_OPERATORS, cy as BOOLEAN_OPERATORS, cw as NUMERIC_OPERATORS, cu as STRING_OPERATORS } from './identity-api.schema-01af1231.esm.js';
|
|
2
2
|
|
|
3
3
|
var VC_JSON_SCHEMA_MAP = {
|
|
4
4
|
ProofOfResidence: {
|
|
@@ -2965,7 +2965,8 @@ var CustomerOnboardingLevel = z["enum"](CustomerOnboardingLevels);
|
|
|
2965
2965
|
// Customer Status
|
|
2966
2966
|
var CustomerStatuses = ["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"];
|
|
2967
2967
|
|
|
2968
|
-
/**
|
|
2968
|
+
/**
|
|
2969
|
+
* We changed the status names to be more user-friendly, that's why we need to preprocess the data
|
|
2969
2970
|
* “Closed” -> “Terminated”
|
|
2970
2971
|
* “Blocked” -> “Rejected”
|
|
2971
2972
|
* “Under Investigation” -> “To be reviewed”
|
package/dist/{identity-api.schema-ae0888cb.cjs.prod.js → identity-api.schema-9137e5c5.cjs.dev.js}
RENAMED
|
@@ -2967,7 +2967,8 @@ var CustomerOnboardingLevel = zod.z["enum"](CustomerOnboardingLevels);
|
|
|
2967
2967
|
// Customer Status
|
|
2968
2968
|
var CustomerStatuses = ["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"];
|
|
2969
2969
|
|
|
2970
|
-
/**
|
|
2970
|
+
/**
|
|
2971
|
+
* We changed the status names to be more user-friendly, that's why we need to preprocess the data
|
|
2971
2972
|
* “Closed” -> “Terminated”
|
|
2972
2973
|
* “Blocked” -> “Rejected”
|
|
2973
2974
|
* “Under Investigation” -> “To be reviewed”
|
package/dist/{identity-api.schema-6ec9e2e0.cjs.dev.js → identity-api.schema-da491c8f.cjs.prod.js}
RENAMED
|
@@ -2967,7 +2967,8 @@ var CustomerOnboardingLevel = zod.z["enum"](CustomerOnboardingLevels);
|
|
|
2967
2967
|
// Customer Status
|
|
2968
2968
|
var CustomerStatuses = ["Active", "Rejected", "Dormant", "To be reviewed", "Failed", "Escalated", "Terminated", "No status"];
|
|
2969
2969
|
|
|
2970
|
-
/**
|
|
2970
|
+
/**
|
|
2971
|
+
* We changed the status names to be more user-friendly, that's why we need to preprocess the data
|
|
2971
2972
|
* “Closed” -> “Terminated”
|
|
2972
2973
|
* “Blocked” -> “Rejected”
|
|
2973
2974
|
* “Under Investigation” -> “To be reviewed”
|
|
@@ -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-9137e5c5.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-16a62836.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -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-da491c8f.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-6b158a83.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -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, aj as ALPHA_2_COUNTRIES, cs as ARRAY_OPERATORS, cb as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b8 as AVAILABLE_FLOWS, dw as AdditionalCustomerInformationParams, z as AddressSchema, cn as AllCredentialAttributes, co as AllCredentialValues, da as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d4 as AnyTxAuthDataSignatureResponse, d1 as AnyTxAuthInput, aM as AppId, I as AptosAddress, J as AptosSignature, ct as ArrayOperator, cj as AuthQrCodeData, bW as AuthSession, ce as AuthorizationRequestMessage, cd as AuthorizationRequestMessageType, cc as AuthorizationRequestMessageTypes, ch as AuthorizationResponseMessage, b9 as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cy as BOOLEAN_OPERATORS, aB as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cz as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aC as CUSTOMERS_CHARTS, aG as CUSTOMER_AUTOMATION_REASONS, aE as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aN as ChallengeId, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d8 as CreateAuthRequestProps, cN as CreateQueryConfigurationInput, cO as CreateQueryConfigurationResponse, d9 as CreateZKProofRequestProps, d$ as CredentialMediaType, dW as CredentialNames, ci as CredentialQrCodeData, dV as CredentialSchemas, dZ as CredentialType, C as CredentialTypes, ay as CustomerOnboardingLevel, ax as CustomerOnboardingLevels, aA as CustomerStatus, az as CustomerStatuses, aF as CustomerTableColumn, as as CustomerType, ar as CustomerTypes, aD as CustomersChartType, cA as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, ba as DataAvailableOnStart, cB as DateOperator, cR as DeleteQueryConfigurationInput, cS 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, aK as EmailId, ad as EnvironmentSchema, h as EvmChainId, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d3 as ExtendedTezosTxAuthDataSignatureResponse, d0 as ExtendedTezosTxAuthInput, d2 as ExtendedTxAuthDataSignatureResponse, c$ as ExtendedTxAuthInput, dB as ExternalCustomerId, dk as FLOW_TYPES, dl as FlowType, G as FunctionCallData, bV as GenerateWalletChallengeRequest, dU as GenericVerifiableCredentialSchema, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, c_ as GetTezosTxAuthDataSignatureResponse, cX as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, dH as ID3CredentialSubjectSchema, dp as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, dr as IDENTITY_DOCUMENT_OPTIONS, dR as IDImageCredentialSubjectSchema, cF as IDInformation, dQ as IDInformationCredentialSubjectSchema, dI as IDScanCredentialSubjectSchema, dJ as IDScanPassportCredentialSubjectSchema, dK as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dv as Identifier, c3 as IdentityAppMessage, dD as IdentityAppV2Web2JWT, dC as IdentityAppV2Web3JWT, dq as IdentityDocumentCountryListOption, ds as IdentityDocumentOptionsType, aJ as IdentityId, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, dA as IdentityWidgetAccessToken, dE as IdentityWidgetAccessToken_NEW, dF as IdentityWidgetSessionToken, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aw as KybOnboardingLevel, av as KybOnboardingLevels, aT as KycCompletionData, aU as KycCompletionNotification, au as KycOnboardingLevel, at as KycOnboardingLevels, c8 as MediaType, c9 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, cw as NUMERIC_OPERATORS, dX as NexeraCredentialType, cM as NonParsedQueryConfiguration, cx as NumericOperator, dP as OLD_AMLScreeningsResultsCredentialSubjectSchema, dL as OLD_IDImageCredentialSubjectSchema, dM as OLD_IDInformationCredentialSubjectSchema, dN as OLD_ProofOfResidenceCredentialSubjectSchema, dO as OLD_SelfieImageCredentialSubjectSchema, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d7 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, dc as OnChainZKP, dd as OnChainZKPFromNexeraID, df as OnChainZKPPayload, de as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cp as Operator, bh as OperatorToChallengeQueryOperator, dx as OrganizationId, _ as P2Signature, dt as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cJ as PartialQueryConfigSimplified, du as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, db as ProjectAuthorizationData, cf as ProofData, dT as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, ck as QrCodeLinkWithSchemaType, cG as QueryConfig, cI as QueryConfigSimplified, cK as QueryConfigSimplifiedParsed, cL as QueryConfiguration, cU as QueryCredentialType, cT as QueryCredentialTypes, cH as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, aq as RiskScoreType, ap as RiskScoreTypes, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dg as SCENARIO_AUTHORIZATION_STATUSES, cu as STRING_OPERATORS, cC as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, dh as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, dS as SelfieImageCredentialSubjectSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b1 as StartCompletedNotification, bM as StartFlowRequest, aI as StorageId, w as String0x, cv as StringOperator, cD as SupportedType, cE as SupportedTypes, aO as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cY as TezosTxAuthInput, cZ as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cV as TxAuthInput, D as TxHash, cW as TxSignatureResponse, cP as UpdateQueryConfigurationInput, cQ as UpdateQueryConfigurationResponse, ae as UuidString, d_ as VerifiableCredential, dn as VerificationMode, dm as VerificationModes, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, dj as VerifyWalletChallengeRequest, aL as WalletId, bY as WalletSignResponse, di as WalletSignatureResponse, dG as Web2CreateSessionParams, dz as WorkflowId, dy as WorkspaceId, cq as ZKPOperator, d5 as ZKPRequest, d6 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cg as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, aH as createBrandedSchemaId, aP as generateId, dY as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, cr as operatorDisplayMap, ao as parseISO3CountryCode, cl as parseIden3Message, cm as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-
|
|
1
|
+
import { C as CredentialTypes } from './identity-api.schema-01af1231.esm.js';
|
|
2
|
+
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, cs as ARRAY_OPERATORS, cb as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b8 as AVAILABLE_FLOWS, dw as AdditionalCustomerInformationParams, z as AddressSchema, cn as AllCredentialAttributes, co as AllCredentialValues, da as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d4 as AnyTxAuthDataSignatureResponse, d1 as AnyTxAuthInput, aM as AppId, I as AptosAddress, J as AptosSignature, ct as ArrayOperator, cj as AuthQrCodeData, bW as AuthSession, ce as AuthorizationRequestMessage, cd as AuthorizationRequestMessageType, cc as AuthorizationRequestMessageTypes, ch as AuthorizationResponseMessage, b9 as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cy as BOOLEAN_OPERATORS, aB as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cz as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aC as CUSTOMERS_CHARTS, aG as CUSTOMER_AUTOMATION_REASONS, aE as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aN as ChallengeId, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d8 as CreateAuthRequestProps, cN as CreateQueryConfigurationInput, cO as CreateQueryConfigurationResponse, d9 as CreateZKProofRequestProps, d$ as CredentialMediaType, dW as CredentialNames, ci as CredentialQrCodeData, dV as CredentialSchemas, dZ as CredentialType, C as CredentialTypes, ay as CustomerOnboardingLevel, ax as CustomerOnboardingLevels, aA as CustomerStatus, az as CustomerStatuses, aF as CustomerTableColumn, as as CustomerType, ar as CustomerTypes, aD as CustomersChartType, cA as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, ba as DataAvailableOnStart, cB as DateOperator, cR as DeleteQueryConfigurationInput, cS 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, aK as EmailId, ad as EnvironmentSchema, h as EvmChainId, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d3 as ExtendedTezosTxAuthDataSignatureResponse, d0 as ExtendedTezosTxAuthInput, d2 as ExtendedTxAuthDataSignatureResponse, c$ as ExtendedTxAuthInput, dB as ExternalCustomerId, dk as FLOW_TYPES, dl as FlowType, G as FunctionCallData, bV as GenerateWalletChallengeRequest, dU as GenericVerifiableCredentialSchema, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, c_ as GetTezosTxAuthDataSignatureResponse, cX as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, dH as ID3CredentialSubjectSchema, dp as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, dr as IDENTITY_DOCUMENT_OPTIONS, dR as IDImageCredentialSubjectSchema, cF as IDInformation, dQ as IDInformationCredentialSubjectSchema, dI as IDScanCredentialSubjectSchema, dJ as IDScanPassportCredentialSubjectSchema, dK as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dv as Identifier, c3 as IdentityAppMessage, dD as IdentityAppV2Web2JWT, dC as IdentityAppV2Web3JWT, dq as IdentityDocumentCountryListOption, ds as IdentityDocumentOptionsType, aJ as IdentityId, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, dA as IdentityWidgetAccessToken, dE as IdentityWidgetAccessToken_NEW, dF as IdentityWidgetSessionToken, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aw as KybOnboardingLevel, av as KybOnboardingLevels, aT as KycCompletionData, aU as KycCompletionNotification, au as KycOnboardingLevel, at as KycOnboardingLevels, c8 as MediaType, c9 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, cw as NUMERIC_OPERATORS, dX as NexeraCredentialType, cM as NonParsedQueryConfiguration, cx as NumericOperator, dP as OLD_AMLScreeningsResultsCredentialSubjectSchema, dL as OLD_IDImageCredentialSubjectSchema, dM as OLD_IDInformationCredentialSubjectSchema, dN as OLD_ProofOfResidenceCredentialSubjectSchema, dO as OLD_SelfieImageCredentialSubjectSchema, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d7 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, dc as OnChainZKP, dd as OnChainZKPFromNexeraID, df as OnChainZKPPayload, de as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cp as Operator, bh as OperatorToChallengeQueryOperator, dx as OrganizationId, _ as P2Signature, dt as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cJ as PartialQueryConfigSimplified, du as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, db as ProjectAuthorizationData, cf as ProofData, dT as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, ck as QrCodeLinkWithSchemaType, cG as QueryConfig, cI as QueryConfigSimplified, cK as QueryConfigSimplifiedParsed, cL as QueryConfiguration, cU as QueryCredentialType, cT as QueryCredentialTypes, cH as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, aq as RiskScoreType, ap as RiskScoreTypes, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dg as SCENARIO_AUTHORIZATION_STATUSES, cu as STRING_OPERATORS, cC as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, dh as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, dS as SelfieImageCredentialSubjectSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b1 as StartCompletedNotification, bM as StartFlowRequest, aI as StorageId, w as String0x, cv as StringOperator, cD as SupportedType, cE as SupportedTypes, aO as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cY as TezosTxAuthInput, cZ as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cV as TxAuthInput, D as TxHash, cW as TxSignatureResponse, cP as UpdateQueryConfigurationInput, cQ as UpdateQueryConfigurationResponse, ae as UuidString, d_ as VerifiableCredential, dn as VerificationMode, dm as VerificationModes, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, dj as VerifyWalletChallengeRequest, aL as WalletId, bY as WalletSignResponse, di as WalletSignatureResponse, dG as Web2CreateSessionParams, dz as WorkflowId, dy as WorkspaceId, cq as ZKPOperator, d5 as ZKPRequest, d6 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cg as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, aH as createBrandedSchemaId, aP as generateId, dY as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, cr as operatorDisplayMap, ao as parseISO3CountryCode, cl as parseIden3Message, cm as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-01af1231.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-2529281f.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-9137e5c5.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-da491c8f.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export { cs as ARRAY_OPERATORS, cb as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b8 as AVAILABLE_FLOWS, cn as AllCredentialAttributes, co as AllCredentialValues, da as AllScenarioExecutionAuthorizationData, d4 as AnyTxAuthDataSignatureResponse, d1 as AnyTxAuthInput, ct as ArrayOperator, cj as AuthQrCodeData, bW as AuthSession, ce as AuthorizationRequestMessage, cd as AuthorizationRequestMessageType, cc as AuthorizationRequestMessageTypes, ch as AuthorizationResponseMessage, b9 as AvailableFlow, cy as BOOLEAN_OPERATORS, cz as BooleanOperator, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d8 as CreateAuthRequestProps, cN as CreateQueryConfigurationInput, cO as CreateQueryConfigurationResponse, d9 as CreateZKProofRequestProps, ci as CredentialQrCodeData, cA as DATE_OPERATORS, ba as DataAvailableOnStart, cB as DateOperator, cR as DeleteQueryConfigurationInput, cS as DeleteQueryConfigurationResponse, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d3 as ExtendedTezosTxAuthDataSignatureResponse, d0 as ExtendedTezosTxAuthInput, d2 as ExtendedTxAuthDataSignatureResponse, c$ as ExtendedTxAuthInput, bV as GenerateWalletChallengeRequest, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, c_ as GetTezosTxAuthDataSignatureResponse, cX as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, cF as IDInformation, c3 as IdentityAppMessage, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aT as KycCompletionData, aU as KycCompletionNotification, c8 as MediaType, c9 as MediaTypePID, cw as NUMERIC_OPERATORS, cM as NonParsedQueryConfiguration, cx as NumericOperator, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d7 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, dc as OnChainZKP, dd as OnChainZKPFromNexeraID, df as OnChainZKPPayload, de as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cp as Operator, bh as OperatorToChallengeQueryOperator, cJ as PartialQueryConfigSimplified, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, db as ProjectAuthorizationData, cf as ProofData, ck as QrCodeLinkWithSchemaType, cG as QueryConfig, cI as QueryConfigSimplified, cK as QueryConfigSimplifiedParsed, cL as QueryConfiguration, cU as QueryCredentialType, cT as QueryCredentialTypes, cH as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dg as SCENARIO_AUTHORIZATION_STATUSES, cu as STRING_OPERATORS, cC as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, dh as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, b1 as StartCompletedNotification, bM as StartFlowRequest, cv as StringOperator, cD as SupportedType, cE as SupportedTypes, cY as TezosTxAuthInput, cZ as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cV as TxAuthInput, cW as TxSignatureResponse, cP as UpdateQueryConfigurationInput, cQ as UpdateQueryConfigurationResponse, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, dj as VerifyWalletChallengeRequest, bY as WalletSignResponse, di as WalletSignatureResponse, cq as ZKPOperator, d5 as ZKPRequest, d6 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cg as ZeroKnowledgeProofResponse, cr as operatorDisplayMap, cl as parseIden3Message, cm as parseSessionIdFromUrl } from '../../dist/identity-api.schema-
|
|
1
|
+
export { cs as ARRAY_OPERATORS, cb as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b8 as AVAILABLE_FLOWS, cn as AllCredentialAttributes, co as AllCredentialValues, da as AllScenarioExecutionAuthorizationData, d4 as AnyTxAuthDataSignatureResponse, d1 as AnyTxAuthInput, ct as ArrayOperator, cj as AuthQrCodeData, bW as AuthSession, ce as AuthorizationRequestMessage, cd as AuthorizationRequestMessageType, cc as AuthorizationRequestMessageTypes, ch as AuthorizationResponseMessage, b9 as AvailableFlow, cy as BOOLEAN_OPERATORS, cz as BooleanOperator, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d8 as CreateAuthRequestProps, cN as CreateQueryConfigurationInput, cO as CreateQueryConfigurationResponse, d9 as CreateZKProofRequestProps, ci as CredentialQrCodeData, cA as DATE_OPERATORS, ba as DataAvailableOnStart, cB as DateOperator, cR as DeleteQueryConfigurationInput, cS as DeleteQueryConfigurationResponse, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d3 as ExtendedTezosTxAuthDataSignatureResponse, d0 as ExtendedTezosTxAuthInput, d2 as ExtendedTxAuthDataSignatureResponse, c$ as ExtendedTxAuthInput, bV as GenerateWalletChallengeRequest, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, c_ as GetTezosTxAuthDataSignatureResponse, cX as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, cF as IDInformation, c3 as IdentityAppMessage, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aT as KycCompletionData, aU as KycCompletionNotification, c8 as MediaType, c9 as MediaTypePID, cw as NUMERIC_OPERATORS, cM as NonParsedQueryConfiguration, cx as NumericOperator, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d7 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, dc as OnChainZKP, dd as OnChainZKPFromNexeraID, df as OnChainZKPPayload, de as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cp as Operator, bh as OperatorToChallengeQueryOperator, cJ as PartialQueryConfigSimplified, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, db as ProjectAuthorizationData, cf as ProofData, ck as QrCodeLinkWithSchemaType, cG as QueryConfig, cI as QueryConfigSimplified, cK as QueryConfigSimplifiedParsed, cL as QueryConfiguration, cU as QueryCredentialType, cT as QueryCredentialTypes, cH as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dg as SCENARIO_AUTHORIZATION_STATUSES, cu as STRING_OPERATORS, cC as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, dh as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, b1 as StartCompletedNotification, bM as StartFlowRequest, cv as StringOperator, cD as SupportedType, cE as SupportedTypes, cY as TezosTxAuthInput, cZ as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cV as TxAuthInput, cW as TxSignatureResponse, cP as UpdateQueryConfigurationInput, cQ as UpdateQueryConfigurationResponse, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, dj as VerifyWalletChallengeRequest, bY as WalletSignResponse, di as WalletSignatureResponse, cq as ZKPOperator, d5 as ZKPRequest, d6 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cg as ZeroKnowledgeProofResponse, cr as operatorDisplayMap, cl as parseIden3Message, cm as parseSessionIdFromUrl } from '../../dist/identity-api.schema-01af1231.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-904fd7b4.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/identity-api.schema-
|
|
7
|
+
require('../../dist/identity-api.schema-9137e5c5.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -101,6 +101,7 @@ exports.DocumentIdTypes = customers_schema.DocumentIdTypes;
|
|
|
101
101
|
exports.DocumentMetadataSchema = customers_schema.DocumentMetadataSchema;
|
|
102
102
|
exports.EmailMetadata = customers_schema.EmailMetadata;
|
|
103
103
|
exports.EmailVerificationAnalysisResponse = customers_schema.EmailVerificationAnalysisResponse;
|
|
104
|
+
exports.EmailVerificationResponse = customers_schema.EmailVerificationResponse;
|
|
104
105
|
exports.File = customers_schema.File;
|
|
105
106
|
exports.GetCredentialsOutput = customers_schema.GetCredentialsOutput;
|
|
106
107
|
exports.GetKybSessionInput = customers_schema.GetKybSessionInput;
|
|
@@ -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-bcab887a.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/identity-api.schema-
|
|
7
|
+
require('../../dist/identity-api.schema-da491c8f.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -101,6 +101,7 @@ exports.DocumentIdTypes = customers_schema.DocumentIdTypes;
|
|
|
101
101
|
exports.DocumentMetadataSchema = customers_schema.DocumentMetadataSchema;
|
|
102
102
|
exports.EmailMetadata = customers_schema.EmailMetadata;
|
|
103
103
|
exports.EmailVerificationAnalysisResponse = customers_schema.EmailVerificationAnalysisResponse;
|
|
104
|
+
exports.EmailVerificationResponse = customers_schema.EmailVerificationResponse;
|
|
104
105
|
exports.File = customers_schema.File;
|
|
105
106
|
exports.GetCredentialsOutput = customers_schema.GetCredentialsOutput;
|
|
106
107
|
exports.GetKybSessionInput = customers_schema.GetKybSessionInput;
|
|
@@ -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,
|
|
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-5f7640b6.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
|
-
import '../../dist/identity-api.schema-
|
|
3
|
+
import '../../dist/identity-api.schema-01af1231.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-9137e5c5.cjs.dev.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-16a62836.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-da491c8f.cjs.prod.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-6b158a83.cjs.prod.js');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ak as Alpha2Country, d$ as CredentialMediaType, dW as CredentialNames, dV as CredentialSchemas, dZ as CredentialType, C as CredentialTypes, dU as GenericVerifiableCredentialSchema, dH as ID3CredentialSubjectSchema, dR as IDImageCredentialSubjectSchema, dQ as IDInformationCredentialSubjectSchema, dI as IDScanCredentialSubjectSchema, dJ as IDScanPassportCredentialSubjectSchema, dK as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dX as NexeraCredentialType, dP as OLD_AMLScreeningsResultsCredentialSubjectSchema, dL as OLD_IDImageCredentialSubjectSchema, dM as OLD_IDInformationCredentialSubjectSchema, dN as OLD_ProofOfResidenceCredentialSubjectSchema, dO as OLD_SelfieImageCredentialSubjectSchema, dT as ProofOfResidenceCredentialSubjectSchema, dS as SelfieImageCredentialSubjectSchema, d_ as VerifiableCredential, al as countryISO3toISO2Mapping, dY as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-
|
|
2
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-
|
|
1
|
+
export { ak as Alpha2Country, d$ as CredentialMediaType, dW as CredentialNames, dV as CredentialSchemas, dZ as CredentialType, C as CredentialTypes, dU as GenericVerifiableCredentialSchema, dH as ID3CredentialSubjectSchema, dR as IDImageCredentialSubjectSchema, dQ as IDInformationCredentialSubjectSchema, dI as IDScanCredentialSubjectSchema, dJ as IDScanPassportCredentialSubjectSchema, dK as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dX as NexeraCredentialType, dP as OLD_AMLScreeningsResultsCredentialSubjectSchema, dL as OLD_IDImageCredentialSubjectSchema, dM as OLD_IDInformationCredentialSubjectSchema, dN as OLD_ProofOfResidenceCredentialSubjectSchema, dO as OLD_SelfieImageCredentialSubjectSchema, dT as ProofOfResidenceCredentialSubjectSchema, dS as SelfieImageCredentialSubjectSchema, d_ as VerifiableCredential, al as countryISO3toISO2Mapping, dY as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-01af1231.esm.js';
|
|
2
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-2529281f.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-9137e5c5.cjs.dev.js');
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-904fd7b4.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-da491c8f.cjs.prod.js');
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-bcab887a.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, dB as ExternalCustomerId, aq as RiskScoreType, as as CustomerType, ay as CustomerOnboardingLevel, aA as CustomerStatus, ai as ISO3CountryCode, a2 as BlockchainAddress, bC as RuleResultStatus, dU as GenericVerifiableCredentialSchema, e1 as _toArray, e0 as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-
|
|
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, dB as ExternalCustomerId, aq as RiskScoreType, as as CustomerType, ay as CustomerOnboardingLevel, aA as CustomerStatus, ai as ISO3CountryCode, a2 as BlockchainAddress, bC as RuleResultStatus, dU as GenericVerifiableCredentialSchema, e1 as _toArray, e0 as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-01af1231.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-5f7640b6.esm.js';
|
|
4
4
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|