@nexeraid/identity-schemas 1.12.33-dev → 1.12.35-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-39aad52f.cjs.dev.js → customers.schema-5229257c.cjs.dev.js} +1 -20
- package/dist/{customers.schema-c59a8e5c.esm.js → customers.schema-a71ef077.esm.js} +2 -20
- package/dist/{customers.schema-be11d402.cjs.prod.js → customers.schema-c3a8f1f6.cjs.prod.js} +1 -20
- package/dist/declarations/src/config.schema.d.ts +2 -2
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +0 -122
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-5239df4e.cjs.prod.js → frontend-utilities.schema-044a120d.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-73f1407c.esm.js → frontend-utilities.schema-1d720c72.esm.js} +1 -1
- package/dist/{frontend-utilities.schema-3dccbb75.cjs.dev.js → frontend-utilities.schema-34efb3cc.cjs.dev.js} +1 -1
- package/dist/{identity-api.schema-112c9451.cjs.prod.js → identity-api.schema-4b9402f3.cjs.prod.js} +2 -2
- package/dist/{identity-api.schema-9e804414.cjs.dev.js → identity-api.schema-d9938374.cjs.dev.js} +2 -2
- package/dist/{identity-api.schema-f94d4413.esm.js → identity-api.schema-d9e8afc5.esm.js} +2 -2
- 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 +2 -3
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -3
- 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,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-d9938374.cjs.dev.js');
|
|
5
5
|
|
|
6
6
|
// based on https://tech-doc.api.scorechain.com/
|
|
7
7
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2027,24 +2027,6 @@ var SumSubVerificationStepSchema = zod.z.object({
|
|
|
2027
2027
|
stepStatuses: zod.z.array(SumsubStepStatus).nullish()
|
|
2028
2028
|
});
|
|
2029
2029
|
var SumSubApplicantVerificationStepSchema = zod.z.record(SumSubStep, SumSubVerificationStepSchema.nullish()).nullish();
|
|
2030
|
-
var SumSubApplicantModerationStatusSchema = zod.z.object({
|
|
2031
|
-
list: zod.z.object({
|
|
2032
|
-
totalItems: zod.z.number(),
|
|
2033
|
-
items: zod.z.array(zod.z.object({
|
|
2034
|
-
id: zod.z.string(),
|
|
2035
|
-
applicantId: zod.z.string(),
|
|
2036
|
-
key: zod.z.string(),
|
|
2037
|
-
imagesStates: zod.z.record(zod.z.string(), zod.z.object({
|
|
2038
|
-
state: zod.z.record(zod.z.string(), zod.z.object({
|
|
2039
|
-
value: zod.z["boolean"]().optional()
|
|
2040
|
-
}))
|
|
2041
|
-
})).nullish().describe("Structure contains imageId and buttonId which indicate rejection reason"),
|
|
2042
|
-
applicantState: zod.z.record(zod.z.string(), zod.z.object({
|
|
2043
|
-
value: zod.z["boolean"]().optional()
|
|
2044
|
-
})).nullish().describe("Structure contains buttonId which indicate rejection reason of applicant data or applicant itself")
|
|
2045
|
-
}))
|
|
2046
|
-
})
|
|
2047
|
-
});
|
|
2048
2030
|
var SUMSUB_MEDIA_CONTENT_TYPES = ["image/jpeg", "image/png", "application/pdf", "video/mp4", "video/webm", "video/quicktime"];
|
|
2049
2031
|
var SumSubMediaContentType = zod.z["enum"](SUMSUB_MEDIA_CONTENT_TYPES);
|
|
2050
2032
|
var DocumentMetadataSchema = zod.z.object({
|
|
@@ -2537,7 +2519,6 @@ exports.StepType = StepType;
|
|
|
2537
2519
|
exports.StepTypes = StepTypes;
|
|
2538
2520
|
exports.SumSubAddress = SumSubAddress;
|
|
2539
2521
|
exports.SumSubApplicantInfo = SumSubApplicantInfo;
|
|
2540
|
-
exports.SumSubApplicantModerationStatusSchema = SumSubApplicantModerationStatusSchema;
|
|
2541
2522
|
exports.SumSubApplicantResetSchema = SumSubApplicantResetSchema;
|
|
2542
2523
|
exports.SumSubApplicantReviewStatusSchema = SumSubApplicantReviewStatusSchema;
|
|
2543
2524
|
exports.SumSubApplicantSchema = SumSubApplicantSchema;
|
|
@@ -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, ai as ISO3CountryCode, a5 as BlockchainNamespace, br as SdkVerificationOutput, aA as CustomerStatus, e2 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, ai as ISO3CountryCode, a5 as BlockchainNamespace, br as SdkVerificationOutput, aA as CustomerStatus, e2 as _defineProperty, dT as ProofOfResidenceCredentialSubjectSchema, ck as QrCodeLinkWithSchemaType, aB as BasicCustomerContactInformation, dZ as CredentialType } from './identity-api.schema-d9e8afc5.esm.js';
|
|
3
3
|
|
|
4
4
|
// based on https://tech-doc.api.scorechain.com/
|
|
5
5
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2025,24 +2025,6 @@ var SumSubVerificationStepSchema = z.object({
|
|
|
2025
2025
|
stepStatuses: z.array(SumsubStepStatus).nullish()
|
|
2026
2026
|
});
|
|
2027
2027
|
var SumSubApplicantVerificationStepSchema = z.record(SumSubStep, SumSubVerificationStepSchema.nullish()).nullish();
|
|
2028
|
-
var SumSubApplicantModerationStatusSchema = z.object({
|
|
2029
|
-
list: z.object({
|
|
2030
|
-
totalItems: z.number(),
|
|
2031
|
-
items: z.array(z.object({
|
|
2032
|
-
id: z.string(),
|
|
2033
|
-
applicantId: z.string(),
|
|
2034
|
-
key: z.string(),
|
|
2035
|
-
imagesStates: z.record(z.string(), z.object({
|
|
2036
|
-
state: z.record(z.string(), z.object({
|
|
2037
|
-
value: z["boolean"]().optional()
|
|
2038
|
-
}))
|
|
2039
|
-
})).nullish().describe("Structure contains imageId and buttonId which indicate rejection reason"),
|
|
2040
|
-
applicantState: z.record(z.string(), z.object({
|
|
2041
|
-
value: z["boolean"]().optional()
|
|
2042
|
-
})).nullish().describe("Structure contains buttonId which indicate rejection reason of applicant data or applicant itself")
|
|
2043
|
-
}))
|
|
2044
|
-
})
|
|
2045
|
-
});
|
|
2046
2028
|
var SUMSUB_MEDIA_CONTENT_TYPES = ["image/jpeg", "image/png", "application/pdf", "video/mp4", "video/webm", "video/quicktime"];
|
|
2047
2029
|
var SumSubMediaContentType = z["enum"](SUMSUB_MEDIA_CONTENT_TYPES);
|
|
2048
2030
|
var DocumentMetadataSchema = z.object({
|
|
@@ -2327,4 +2309,4 @@ var UpdateKybSessionOutput = z.string();
|
|
|
2327
2309
|
var CustomerDocumentMetaData = z.union([CompanyDocumentMetaData, ProofOfResidenceMetaData, VideoKycMetaData]);
|
|
2328
2310
|
var CustomerStatusResults = z.union([KybResult, KycResult]);
|
|
2329
2311
|
|
|
2330
|
-
export { PhoneMetadata as $, ANALYSIS_TYPES as A, BitRankVerifiedResponse as B, ChainalysisRiskAssessmentResponse as C, WebhookPayload as D, EmailVerificationAnalysisResponse as E, Session as F, SessionWithoutSteps as G, StepTypes as H, IpQualityServiceAnalysisResponse as I, StepType as J, ReasonCodes as K, ReasonCode as L, MergedProviders as M, NestedSession as N, OBJECT_TYPES as O, PhoneVerificationAnalysisResponse as P, File as Q, RiskSeverity as R, ScoringAnalysisResponse as S, DocumentIdTypes as T, DocumentIdType as U, DocumentIdMetadata as V, WorkflowsScoringAnalysisRequest as W, ProofOfAddressDocumentTypes as X, ProofOfAddressDocumentType as Y, ProofOfAddressMetadata as Z, LivenessMetadata as _, MerkleAddressResponse as a, ComplyAdvantageUpdateSearchEntitiesRequest as a$, EmailMetadata as a0, AMLMetadata as a1, Step as a2, SynapsSessionEvent as a3, SynapsStepEvent as a4, typeToHumanReadable as a5, SynapsSessionRequest as a6, SESSION_NOT_FOUND as a7, UNKNOWN_ERROR as a8, RESULT_PARSER_ERROR as a9, ComplyAdvantageNationalityFieldSources as aA, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aB, ComplyAdvantageCountryFieldSources as aC, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as aD, ComplyAdvantageDateOfBirthFieldSources as aE, CreateSearchInput as aF, MatchStatuses as aG, MatchStatus as aH, RiskLevels as aI, RiskLevel as aJ, UpdateSearchInput as aK, UpdateSearchEntitiesInput as aL, ComplyAdvantageUser as aM, MatchTypeDetail as aN, ComplyAdvantageMedia as aO, ComplyAdvantageSearchDataResponseHit as aP, ComplyAdvantageSearchDataResponse as aQ, ComplyAdvantageSearchSuccessResponse as aR, ComplyAdvantageSearchErrorResponse as aS, ComplyAdvantageKeyInformation as aT, ComplyAdvantageAmlItemSource as aU, ComplyAdvantageAmlFullListing as aV, ComplyAdvantageSearchEntitiesDataResponse as aW, ComplyAdvantageSearchEntitiesSuccessResponse as aX, ComplyAdvantageSearchEntitiesResponse as aY, ComplyAdvantageSearchRequest as aZ, ComplyAdvantageUpdateSearchRequest as a_, SynapsSessionErrorResponse as aa, SynapsSessionResponse as ab, SynapsStepRequest as ac, STEP_NOT_FOUND as ad, SynapsStepErrorResponse as ae, SynapsStepResponse as af, CoerceDateUTC as ag, SEARCH_FILTER_SANCTION_TYPE as ah, SearchFilterSanctionType as ai, SEARCH_FILTER_PEP_TYPE as aj, SearchFilterPepType as ak, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as al, SearchFilterAdverseMediaType as am, HIGH_RISK_TYPES as an, MEDIUM_RISK_TYPES as ao, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as ap, ComplyAdvantageResponseMatchType as aq, mappingMatchTypeToLabel as ar, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as as, ComplyAdvantageReponseMatchStatus as at, SEARCH_FILTER_TYPES as au, SearchFilterType as av, SearchEntityTypes as aw, SearchEntityType as ax, SearchFilters as ay, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as az, ComplyAdvantageSearchResponse as b, BeneficiaryCompanyCustomerClaimsArray as b$, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as b0, ComplyAdvantageUpdateSearchEntitiesResponse as b1, ComplyAdvantageMonitorSearchDataResponse as b2, ComplyAdvantageMonitorSearchSuccessResponse as b3, ComplyAdvantageMonitorSearchResponse as b4, ComplyAdvantageMonitoredSearchUpdate as b5, ProviderWithoutConfig as b6, IdentityProviderOptions as b7, IdentityProviders as b8, DataProviderOptions as b9, CreateProviderInput as bA, CreateProviderResponse as bB, UpdateProviderInput as bC, UpdateProviderResponse as bD, ToggleProviderInput as bE, DeleteProviderInput as bF, DeleteProviderResponse as bG, WEBHOOK_TYPES as bH, WebhookType as bI, ApplicantMemberOfSchema as bJ, SumSubWebhookSchema as bK, BaseApplicantActionSchema as bL, SUMSUB_STEPS as bM, SumSubStep as bN, SUMSUB_APPLICANT_TYPES as bO, SumSubApplicantType as bP, SUMSUB_REVIEW_ANSWERS as bQ, SumSubReviewAnswer as bR, SUMSUB_REVIEW_REJECT_TYPES as bS, SumSubReviewRejectType as bT, SumSubAddress as bU, SumSubApplicantInfo as bV, INDIVIDUAL_BENEFICIARY_RELATIONS as bW, IndividualBeneficiaryRelation as bX, BENEFICIARY_TYPES as bY, BeneficiaryType as bZ, BeneficiaryCompanyCustomerClaims as b_, DataProviders as ba, MerkleScienceConfig as bb, ChainalysisConfig as bc, ScorechainConfig as bd, WorkflowsScorechainConfig as be, IpQualityConfig as bf, BigConfig as bg, ProviderIntegrationTypeOptions as bh, ProviderIntegrationType as bi, BaseProvider as bj, NexeraIdSSIDProvider as bk, NexeraIdKYBProvider as bl, BigProvider as bm, ScorechainProvider as bn, MerkleScienceProvider as bo, ChainalysisProvider as bp, IpqualityscoreProvider as bq, ComplyAdvantageProviderConfigTypes as br, ComplyAdvantageProviderConfigFilters as bs, ComplyAdvantageProviderConfigElement as bt, ComplyAdvantageProvider as bu, SynapsProvider as bv, ProviderData as bw, ProviderDataProject as bx, GetProvidersResponse as by, GetProviderResponse as bz, AnalysisType as c,
|
|
2312
|
+
export { PhoneMetadata as $, ANALYSIS_TYPES as A, BitRankVerifiedResponse as B, ChainalysisRiskAssessmentResponse as C, WebhookPayload as D, EmailVerificationAnalysisResponse as E, Session as F, SessionWithoutSteps as G, StepTypes as H, IpQualityServiceAnalysisResponse as I, StepType as J, ReasonCodes as K, ReasonCode as L, MergedProviders as M, NestedSession as N, OBJECT_TYPES as O, PhoneVerificationAnalysisResponse as P, File as Q, RiskSeverity as R, ScoringAnalysisResponse as S, DocumentIdTypes as T, DocumentIdType as U, DocumentIdMetadata as V, WorkflowsScoringAnalysisRequest as W, ProofOfAddressDocumentTypes as X, ProofOfAddressDocumentType as Y, ProofOfAddressMetadata as Z, LivenessMetadata as _, MerkleAddressResponse as a, ComplyAdvantageUpdateSearchEntitiesRequest as a$, EmailMetadata as a0, AMLMetadata as a1, Step as a2, SynapsSessionEvent as a3, SynapsStepEvent as a4, typeToHumanReadable as a5, SynapsSessionRequest as a6, SESSION_NOT_FOUND as a7, UNKNOWN_ERROR as a8, RESULT_PARSER_ERROR as a9, ComplyAdvantageNationalityFieldSources as aA, COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES as aB, ComplyAdvantageCountryFieldSources as aC, COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES as aD, ComplyAdvantageDateOfBirthFieldSources as aE, CreateSearchInput as aF, MatchStatuses as aG, MatchStatus as aH, RiskLevels as aI, RiskLevel as aJ, UpdateSearchInput as aK, UpdateSearchEntitiesInput as aL, ComplyAdvantageUser as aM, MatchTypeDetail as aN, ComplyAdvantageMedia as aO, ComplyAdvantageSearchDataResponseHit as aP, ComplyAdvantageSearchDataResponse as aQ, ComplyAdvantageSearchSuccessResponse as aR, ComplyAdvantageSearchErrorResponse as aS, ComplyAdvantageKeyInformation as aT, ComplyAdvantageAmlItemSource as aU, ComplyAdvantageAmlFullListing as aV, ComplyAdvantageSearchEntitiesDataResponse as aW, ComplyAdvantageSearchEntitiesSuccessResponse as aX, ComplyAdvantageSearchEntitiesResponse as aY, ComplyAdvantageSearchRequest as aZ, ComplyAdvantageUpdateSearchRequest as a_, SynapsSessionErrorResponse as aa, SynapsSessionResponse as ab, SynapsStepRequest as ac, STEP_NOT_FOUND as ad, SynapsStepErrorResponse as ae, SynapsStepResponse as af, CoerceDateUTC as ag, SEARCH_FILTER_SANCTION_TYPE as ah, SearchFilterSanctionType as ai, SEARCH_FILTER_PEP_TYPE as aj, SearchFilterPepType as ak, SEARCH_FILTER_ADVERSE_MEDIA_TYPE as al, SearchFilterAdverseMediaType as am, HIGH_RISK_TYPES as an, MEDIUM_RISK_TYPES as ao, COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE as ap, ComplyAdvantageResponseMatchType as aq, mappingMatchTypeToLabel as ar, COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS as as, ComplyAdvantageReponseMatchStatus as at, SEARCH_FILTER_TYPES as au, SearchFilterType as av, SearchEntityTypes as aw, SearchEntityType as ax, SearchFilters as ay, COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES as az, ComplyAdvantageSearchResponse as b, BeneficiaryCompanyCustomerClaimsArray as b$, ComplyAdvantageUpdateSearchEntitiesSuccessResponse as b0, ComplyAdvantageUpdateSearchEntitiesResponse as b1, ComplyAdvantageMonitorSearchDataResponse as b2, ComplyAdvantageMonitorSearchSuccessResponse as b3, ComplyAdvantageMonitorSearchResponse as b4, ComplyAdvantageMonitoredSearchUpdate as b5, ProviderWithoutConfig as b6, IdentityProviderOptions as b7, IdentityProviders as b8, DataProviderOptions as b9, CreateProviderInput as bA, CreateProviderResponse as bB, UpdateProviderInput as bC, UpdateProviderResponse as bD, ToggleProviderInput as bE, DeleteProviderInput as bF, DeleteProviderResponse as bG, WEBHOOK_TYPES as bH, WebhookType as bI, ApplicantMemberOfSchema as bJ, SumSubWebhookSchema as bK, BaseApplicantActionSchema as bL, SUMSUB_STEPS as bM, SumSubStep as bN, SUMSUB_APPLICANT_TYPES as bO, SumSubApplicantType as bP, SUMSUB_REVIEW_ANSWERS as bQ, SumSubReviewAnswer as bR, SUMSUB_REVIEW_REJECT_TYPES as bS, SumSubReviewRejectType as bT, SumSubAddress as bU, SumSubApplicantInfo as bV, INDIVIDUAL_BENEFICIARY_RELATIONS as bW, IndividualBeneficiaryRelation as bX, BENEFICIARY_TYPES as bY, BeneficiaryType as bZ, BeneficiaryCompanyCustomerClaims as b_, DataProviders as ba, MerkleScienceConfig as bb, ChainalysisConfig as bc, ScorechainConfig as bd, WorkflowsScorechainConfig as be, IpQualityConfig as bf, BigConfig as bg, ProviderIntegrationTypeOptions as bh, ProviderIntegrationType as bi, BaseProvider as bj, NexeraIdSSIDProvider as bk, NexeraIdKYBProvider as bl, BigProvider as bm, ScorechainProvider as bn, MerkleScienceProvider as bo, ChainalysisProvider as bp, IpqualityscoreProvider as bq, ComplyAdvantageProviderConfigTypes as br, ComplyAdvantageProviderConfigFilters as bs, ComplyAdvantageProviderConfigElement as bt, ComplyAdvantageProvider as bu, SynapsProvider as bv, ProviderData as bw, ProviderDataProject as bx, GetProvidersResponse as by, GetProviderResponse as bz, AnalysisType as c, CompanyDocumentMetaData as c$, SumSubCompanyApplicantInfo as c0, SUMSUB_WEBHOOK_INTERNAL_STATUS as c1, SumsubWebhookInternalStatus as c2, SUMSUB_REVIEW_STATUSES as c3, SumSubReviewStatus as c4, SUMSUB_DOC_TYPES as c5, SumSubDocType as c6, SUMSUB_FLOW_LEVEL as c7, SumSubFlowLevel as c8, SumSubReviewResultSchema as c9, SUMSUB_REVIEW_REJECT_LABELS as cA, SumSubReviewRejectLabel as cB, SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION as cC, KYC_STEP_TYPES as cD, KycStep as cE, KYC_RESULTS as cF, KycResult as cG, KYC_SESSION_STATUSES as cH, KycSessionStatus as cI, SelectKycSession as cJ, SelectKycSessionStep as cK, GetKycSessionInput as cL, GetKycSessionResponse as cM, UpdateKycSessionOutput as cN, VideoKycMetaData as cO, ProofOfResidenceMetaData as cP, ProofOfResidenceDocumentType as cQ, GetCredentialsOutput as cR, CustomerContactInformationOutput as cS, CredentialMetadata as cT, GetKycSessionResponseWithCredentialsMetadata as cU, KYB_STEP_TYPES as cV, KybStep as cW, KYB_RESULTS as cX, KybResult as cY, KYB_SESSION_STATUSES as cZ, KybSessionStatus as c_, SumSubImageReviewResultSchema as ca, SumsubApplicantTypes as cb, SumsubApplicantType as cc, SumSubIndividualApplicantSchema as cd, SumSubCompanyApplicantSchema as ce, SumSubImageId as cf, SUMSUB_COMPANY_BENEFICIARY_GROUP as cg, SumsubCompanyBeneficiaryGroup as ch, SumsubStepStatus as ci, SumSubVerificationStepSchema as cj, SumSubApplicantVerificationStepSchema as ck, SUMSUB_MEDIA_CONTENT_TYPES as cl, SumSubMediaContentType as cm, DocumentMetadataSchema as cn, SumSubApplicantReviewStatusSchema as co, SumSubApplicantResetSchema as cp, SumSubGenerateExternalWebSdkLinkSchema as cq, SumsubVideoCallData as cr, SumsubKycDataSchema as cs, SumsubKybDataSchema as ct, SumSubApplicantSchema as cu, SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS as cv, SumsubKybSessionFlowSectionStatus as cw, SumsubKybSessionFlowSectionItem as cx, SumsubKybSessionFlowSection as cy, SumSubSimilarApplicantsSchema as cz, ObjectType as d, BeneficiaryVerificationStatus as d0, BeneficiaryVerificationStatusArray as d1, SelectKybSession as d2, GetKybSessionInput as d3, GetKybSessionResponse as d4, UpdateKybSessionOutput as d5, CustomerDocumentMetaData as d6, CustomerStatusResults as d7, MerkleBlockChainTypes as d8, MerkleBlockChainNames as d9, MerkleBlockChainCodes as da, MerkleAddressRequest as db, MerkleAddressApiResponse as dc, MerkleAddressApiError as dd, ChainalysisRequest as de, EnhancedChainalysisRequest as df, ChainalysisRegisterApiResponse as dg, ChainalysisRiskLevel as dh, ChainalysisRiskAssessmentApiResponse as di, ChainalysisApiError as dj, ChainalysisRegisterResponse as dk, 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, BitRankRequest as u, BitRankVerified as v, BitRankVerifiedErrorResponse as w, BitRankVerifiedError as x, Statuses as y, Status$1 as z };
|
package/dist/{customers.schema-be11d402.cjs.prod.js → customers.schema-c3a8f1f6.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-4b9402f3.cjs.prod.js');
|
|
5
5
|
|
|
6
6
|
// based on https://tech-doc.api.scorechain.com/
|
|
7
7
|
var ANALYSIS_TYPES = ["ASSIGNED", "INCOMING", "OUTGOING", "FULL"];
|
|
@@ -2027,24 +2027,6 @@ var SumSubVerificationStepSchema = zod.z.object({
|
|
|
2027
2027
|
stepStatuses: zod.z.array(SumsubStepStatus).nullish()
|
|
2028
2028
|
});
|
|
2029
2029
|
var SumSubApplicantVerificationStepSchema = zod.z.record(SumSubStep, SumSubVerificationStepSchema.nullish()).nullish();
|
|
2030
|
-
var SumSubApplicantModerationStatusSchema = zod.z.object({
|
|
2031
|
-
list: zod.z.object({
|
|
2032
|
-
totalItems: zod.z.number(),
|
|
2033
|
-
items: zod.z.array(zod.z.object({
|
|
2034
|
-
id: zod.z.string(),
|
|
2035
|
-
applicantId: zod.z.string(),
|
|
2036
|
-
key: zod.z.string(),
|
|
2037
|
-
imagesStates: zod.z.record(zod.z.string(), zod.z.object({
|
|
2038
|
-
state: zod.z.record(zod.z.string(), zod.z.object({
|
|
2039
|
-
value: zod.z["boolean"]().optional()
|
|
2040
|
-
}))
|
|
2041
|
-
})).nullish().describe("Structure contains imageId and buttonId which indicate rejection reason"),
|
|
2042
|
-
applicantState: zod.z.record(zod.z.string(), zod.z.object({
|
|
2043
|
-
value: zod.z["boolean"]().optional()
|
|
2044
|
-
})).nullish().describe("Structure contains buttonId which indicate rejection reason of applicant data or applicant itself")
|
|
2045
|
-
}))
|
|
2046
|
-
})
|
|
2047
|
-
});
|
|
2048
2030
|
var SUMSUB_MEDIA_CONTENT_TYPES = ["image/jpeg", "image/png", "application/pdf", "video/mp4", "video/webm", "video/quicktime"];
|
|
2049
2031
|
var SumSubMediaContentType = zod.z["enum"](SUMSUB_MEDIA_CONTENT_TYPES);
|
|
2050
2032
|
var DocumentMetadataSchema = zod.z.object({
|
|
@@ -2537,7 +2519,6 @@ exports.StepType = StepType;
|
|
|
2537
2519
|
exports.StepTypes = StepTypes;
|
|
2538
2520
|
exports.SumSubAddress = SumSubAddress;
|
|
2539
2521
|
exports.SumSubApplicantInfo = SumSubApplicantInfo;
|
|
2540
|
-
exports.SumSubApplicantModerationStatusSchema = SumSubApplicantModerationStatusSchema;
|
|
2541
2522
|
exports.SumSubApplicantResetSchema = SumSubApplicantResetSchema;
|
|
2542
2523
|
exports.SumSubApplicantReviewStatusSchema = SumSubApplicantReviewStatusSchema;
|
|
2543
2524
|
exports.SumSubApplicantSchema = SumSubApplicantSchema;
|
|
@@ -132,8 +132,8 @@ export declare const PUBLIC_SERVICES_SCHEMA_MAP: {
|
|
|
132
132
|
readonly local: "http://localhost:3001";
|
|
133
133
|
readonly "test-dev-1": "https://api-test-dev-1.nexera.id";
|
|
134
134
|
readonly "test-dev-2": "https://api-test-dev-2.nexera.id";
|
|
135
|
-
readonly dev: "https://api-dev.
|
|
136
|
-
readonly stage: "https://api-staging.
|
|
135
|
+
readonly dev: "https://api-dev.compilot.ai";
|
|
136
|
+
readonly stage: "https://api-staging.compilot.ai";
|
|
137
137
|
readonly prod: "https://api.nexera.id";
|
|
138
138
|
};
|
|
139
139
|
readonly identity_api: {
|
|
@@ -1370,128 +1370,6 @@ export declare const SumSubApplicantVerificationStepSchema: z.ZodOptional<z.ZodN
|
|
|
1370
1370
|
}[] | null | undefined;
|
|
1371
1371
|
}[] | null | undefined;
|
|
1372
1372
|
}>>>>>>;
|
|
1373
|
-
export declare const SumSubApplicantModerationStatusSchema: z.ZodObject<{
|
|
1374
|
-
list: z.ZodObject<{
|
|
1375
|
-
totalItems: z.ZodNumber;
|
|
1376
|
-
items: z.ZodArray<z.ZodObject<{
|
|
1377
|
-
id: z.ZodString;
|
|
1378
|
-
applicantId: z.ZodString;
|
|
1379
|
-
key: z.ZodString;
|
|
1380
|
-
imagesStates: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1381
|
-
state: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1382
|
-
value: z.ZodOptional<z.ZodBoolean>;
|
|
1383
|
-
}, "strip", z.ZodTypeAny, {
|
|
1384
|
-
value?: boolean | undefined;
|
|
1385
|
-
}, {
|
|
1386
|
-
value?: boolean | undefined;
|
|
1387
|
-
}>>;
|
|
1388
|
-
}, "strip", z.ZodTypeAny, {
|
|
1389
|
-
state: Record<string, {
|
|
1390
|
-
value?: boolean | undefined;
|
|
1391
|
-
}>;
|
|
1392
|
-
}, {
|
|
1393
|
-
state: Record<string, {
|
|
1394
|
-
value?: boolean | undefined;
|
|
1395
|
-
}>;
|
|
1396
|
-
}>>>>;
|
|
1397
|
-
applicantState: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1398
|
-
value: z.ZodOptional<z.ZodBoolean>;
|
|
1399
|
-
}, "strip", z.ZodTypeAny, {
|
|
1400
|
-
value?: boolean | undefined;
|
|
1401
|
-
}, {
|
|
1402
|
-
value?: boolean | undefined;
|
|
1403
|
-
}>>>>;
|
|
1404
|
-
}, "strip", z.ZodTypeAny, {
|
|
1405
|
-
id: string;
|
|
1406
|
-
key: string;
|
|
1407
|
-
applicantId: string;
|
|
1408
|
-
imagesStates?: Record<string, {
|
|
1409
|
-
state: Record<string, {
|
|
1410
|
-
value?: boolean | undefined;
|
|
1411
|
-
}>;
|
|
1412
|
-
}> | null | undefined;
|
|
1413
|
-
applicantState?: Record<string, {
|
|
1414
|
-
value?: boolean | undefined;
|
|
1415
|
-
}> | null | undefined;
|
|
1416
|
-
}, {
|
|
1417
|
-
id: string;
|
|
1418
|
-
key: string;
|
|
1419
|
-
applicantId: string;
|
|
1420
|
-
imagesStates?: Record<string, {
|
|
1421
|
-
state: Record<string, {
|
|
1422
|
-
value?: boolean | undefined;
|
|
1423
|
-
}>;
|
|
1424
|
-
}> | null | undefined;
|
|
1425
|
-
applicantState?: Record<string, {
|
|
1426
|
-
value?: boolean | undefined;
|
|
1427
|
-
}> | null | undefined;
|
|
1428
|
-
}>, "many">;
|
|
1429
|
-
}, "strip", z.ZodTypeAny, {
|
|
1430
|
-
totalItems: number;
|
|
1431
|
-
items: {
|
|
1432
|
-
id: string;
|
|
1433
|
-
key: string;
|
|
1434
|
-
applicantId: string;
|
|
1435
|
-
imagesStates?: Record<string, {
|
|
1436
|
-
state: Record<string, {
|
|
1437
|
-
value?: boolean | undefined;
|
|
1438
|
-
}>;
|
|
1439
|
-
}> | null | undefined;
|
|
1440
|
-
applicantState?: Record<string, {
|
|
1441
|
-
value?: boolean | undefined;
|
|
1442
|
-
}> | null | undefined;
|
|
1443
|
-
}[];
|
|
1444
|
-
}, {
|
|
1445
|
-
totalItems: number;
|
|
1446
|
-
items: {
|
|
1447
|
-
id: string;
|
|
1448
|
-
key: string;
|
|
1449
|
-
applicantId: string;
|
|
1450
|
-
imagesStates?: Record<string, {
|
|
1451
|
-
state: Record<string, {
|
|
1452
|
-
value?: boolean | undefined;
|
|
1453
|
-
}>;
|
|
1454
|
-
}> | null | undefined;
|
|
1455
|
-
applicantState?: Record<string, {
|
|
1456
|
-
value?: boolean | undefined;
|
|
1457
|
-
}> | null | undefined;
|
|
1458
|
-
}[];
|
|
1459
|
-
}>;
|
|
1460
|
-
}, "strip", z.ZodTypeAny, {
|
|
1461
|
-
list: {
|
|
1462
|
-
totalItems: number;
|
|
1463
|
-
items: {
|
|
1464
|
-
id: string;
|
|
1465
|
-
key: string;
|
|
1466
|
-
applicantId: string;
|
|
1467
|
-
imagesStates?: Record<string, {
|
|
1468
|
-
state: Record<string, {
|
|
1469
|
-
value?: boolean | undefined;
|
|
1470
|
-
}>;
|
|
1471
|
-
}> | null | undefined;
|
|
1472
|
-
applicantState?: Record<string, {
|
|
1473
|
-
value?: boolean | undefined;
|
|
1474
|
-
}> | null | undefined;
|
|
1475
|
-
}[];
|
|
1476
|
-
};
|
|
1477
|
-
}, {
|
|
1478
|
-
list: {
|
|
1479
|
-
totalItems: number;
|
|
1480
|
-
items: {
|
|
1481
|
-
id: string;
|
|
1482
|
-
key: string;
|
|
1483
|
-
applicantId: string;
|
|
1484
|
-
imagesStates?: Record<string, {
|
|
1485
|
-
state: Record<string, {
|
|
1486
|
-
value?: boolean | undefined;
|
|
1487
|
-
}>;
|
|
1488
|
-
}> | null | undefined;
|
|
1489
|
-
applicantState?: Record<string, {
|
|
1490
|
-
value?: boolean | undefined;
|
|
1491
|
-
}> | null | undefined;
|
|
1492
|
-
}[];
|
|
1493
|
-
};
|
|
1494
|
-
}>;
|
|
1495
1373
|
export declare const SUMSUB_MEDIA_CONTENT_TYPES: readonly ["image/jpeg", "image/png", "application/pdf", "video/mp4", "video/webm", "video/quicktime"];
|
|
1496
1374
|
export declare const SumSubMediaContentType: z.ZodEnum<["image/jpeg", "image/png", "application/pdf", "video/mp4", "video/webm", "video/quicktime"]>;
|
|
1497
1375
|
export type SumSubMediaContentType = z.infer<typeof SumSubMediaContentType>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sumsub-applicant.schema.d.ts","sourceRoot":"../../../../../src/providers/sumsub","sources":["sumsub-applicant.schema.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"sumsub-applicant.schema.d.ts","sourceRoot":"../../../../../src/providers/sumsub","sources":["sumsub-applicant.schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUhC,CAAC;AAEH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExC,CAAC;AAEH,MAAM,MAAM,4BAA4B,GAAG,CAAC,CAAC,KAAK,CAChD,OAAO,4BAA4B,CACpC,CAAC;AAEF,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
package/dist/{frontend-utilities.schema-73f1407c.esm.js → frontend-utilities.schema-1d720c72.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-d9e8afc5.esm.js';
|
|
2
2
|
|
|
3
3
|
var VC_JSON_SCHEMA_MAP = {
|
|
4
4
|
ProofOfResidence: {
|
package/dist/{identity-api.schema-112c9451.cjs.prod.js → identity-api.schema-4b9402f3.cjs.prod.js}
RENAMED
|
@@ -328,8 +328,8 @@ var PUBLIC_SERVICES_SCHEMA_MAP = {
|
|
|
328
328
|
local: "http://localhost:3001",
|
|
329
329
|
"test-dev-1": "https://api-test-dev-1.nexera.id",
|
|
330
330
|
"test-dev-2": "https://api-test-dev-2.nexera.id",
|
|
331
|
-
dev: "https://api-dev.
|
|
332
|
-
stage: "https://api-staging.
|
|
331
|
+
dev: "https://api-dev.compilot.ai",
|
|
332
|
+
stage: "https://api-staging.compilot.ai",
|
|
333
333
|
prod: "https://api.nexera.id"
|
|
334
334
|
},
|
|
335
335
|
identity_api: {
|
package/dist/{identity-api.schema-9e804414.cjs.dev.js → identity-api.schema-d9938374.cjs.dev.js}
RENAMED
|
@@ -328,8 +328,8 @@ var PUBLIC_SERVICES_SCHEMA_MAP = {
|
|
|
328
328
|
local: "http://localhost:3001",
|
|
329
329
|
"test-dev-1": "https://api-test-dev-1.nexera.id",
|
|
330
330
|
"test-dev-2": "https://api-test-dev-2.nexera.id",
|
|
331
|
-
dev: "https://api-dev.
|
|
332
|
-
stage: "https://api-staging.
|
|
331
|
+
dev: "https://api-dev.compilot.ai",
|
|
332
|
+
stage: "https://api-staging.compilot.ai",
|
|
333
333
|
prod: "https://api.nexera.id"
|
|
334
334
|
},
|
|
335
335
|
identity_api: {
|
|
@@ -326,8 +326,8 @@ var PUBLIC_SERVICES_SCHEMA_MAP = {
|
|
|
326
326
|
local: "http://localhost:3001",
|
|
327
327
|
"test-dev-1": "https://api-test-dev-1.nexera.id",
|
|
328
328
|
"test-dev-2": "https://api-test-dev-2.nexera.id",
|
|
329
|
-
dev: "https://api-dev.
|
|
330
|
-
stage: "https://api-staging.
|
|
329
|
+
dev: "https://api-dev.compilot.ai",
|
|
330
|
+
stage: "https://api-staging.compilot.ai",
|
|
331
331
|
prod: "https://api.nexera.id"
|
|
332
332
|
},
|
|
333
333
|
identity_api: {
|
|
@@ -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-d9938374.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-34efb3cc.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-4b9402f3.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-044a120d.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, 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, bV as WalletChallengeRequest, aL as WalletId, bY as WalletSignResponse, dj as WalletSignatureData, 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-d9e8afc5.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, 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, bV as WalletChallengeRequest, aL as WalletId, bY as WalletSignResponse, dj as WalletSignatureData, 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-d9e8afc5.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-1d720c72.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-d9938374.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-4b9402f3.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, 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, bV as WalletChallengeRequest, bY as WalletSignResponse, dj as WalletSignatureData, 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, 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, bV as WalletChallengeRequest, bY as WalletSignResponse, dj as WalletSignatureData, 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-d9e8afc5.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-5229257c.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/identity-api.schema-
|
|
7
|
+
require('../../dist/identity-api.schema-d9938374.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -217,7 +217,6 @@ exports.StepType = customers_schema.StepType;
|
|
|
217
217
|
exports.StepTypes = customers_schema.StepTypes;
|
|
218
218
|
exports.SumSubAddress = customers_schema.SumSubAddress;
|
|
219
219
|
exports.SumSubApplicantInfo = customers_schema.SumSubApplicantInfo;
|
|
220
|
-
exports.SumSubApplicantModerationStatusSchema = customers_schema.SumSubApplicantModerationStatusSchema;
|
|
221
220
|
exports.SumSubApplicantResetSchema = customers_schema.SumSubApplicantResetSchema;
|
|
222
221
|
exports.SumSubApplicantReviewStatusSchema = customers_schema.SumSubApplicantReviewStatusSchema;
|
|
223
222
|
exports.SumSubApplicantSchema = customers_schema.SumSubApplicantSchema;
|
|
@@ -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-c3a8f1f6.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/identity-api.schema-
|
|
7
|
+
require('../../dist/identity-api.schema-4b9402f3.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
|
|
@@ -217,7 +217,6 @@ exports.StepType = customers_schema.StepType;
|
|
|
217
217
|
exports.StepTypes = customers_schema.StepTypes;
|
|
218
218
|
exports.SumSubAddress = customers_schema.SumSubAddress;
|
|
219
219
|
exports.SumSubApplicantInfo = customers_schema.SumSubApplicantInfo;
|
|
220
|
-
exports.SumSubApplicantModerationStatusSchema = customers_schema.SumSubApplicantModerationStatusSchema;
|
|
221
220
|
exports.SumSubApplicantResetSchema = customers_schema.SumSubApplicantResetSchema;
|
|
222
221
|
exports.SumSubApplicantReviewStatusSchema = customers_schema.SumSubApplicantReviewStatusSchema;
|
|
223
222
|
exports.SumSubApplicantSchema = customers_schema.SumSubApplicantSchema;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { a1 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bJ as ApplicantMemberOfSchema, bY as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bL as BaseApplicantActionSchema, bj as BaseProvider, b_ as BeneficiaryCompanyCustomerClaims, b$ as BeneficiaryCompanyCustomerClaimsArray, bZ as BeneficiaryType,
|
|
1
|
+
export { a1 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bJ as ApplicantMemberOfSchema, bY as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bL as BaseApplicantActionSchema, bj as BaseProvider, b_ as BeneficiaryCompanyCustomerClaims, b$ as BeneficiaryCompanyCustomerClaimsArray, bZ as BeneficiaryType, d0 as BeneficiaryVerificationStatus, d1 as BeneficiaryVerificationStatusArray, bg as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bm as BigProvider, u as BitRankRequest, v as BitRankVerified, x as BitRankVerifiedError, w as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aB as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aD as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, az as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ap as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dj as ChainalysisApiError, bc as ChainalysisConfig, bp as ChainalysisProvider, dg as ChainalysisRegisterApiResponse, dk as ChainalysisRegisterResponse, de as ChainalysisRequest, di as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, dh as ChainalysisRiskLevel, ag as CoerceDateUTC, g as Coin, c$ as CompanyDocumentMetaData, aV as ComplyAdvantageAmlFullListing, aU as ComplyAdvantageAmlItemSource, aC as ComplyAdvantageCountryFieldSources, aE as ComplyAdvantageDateOfBirthFieldSources, aT as ComplyAdvantageKeyInformation, aO as ComplyAdvantageMedia, b2 as ComplyAdvantageMonitorSearchDataResponse, b4 as ComplyAdvantageMonitorSearchResponse, b3 as ComplyAdvantageMonitorSearchSuccessResponse, b5 as ComplyAdvantageMonitoredSearchUpdate, aA as ComplyAdvantageNationalityFieldSources, bu as ComplyAdvantageProvider, bt as ComplyAdvantageProviderConfigElement, bs as ComplyAdvantageProviderConfigFilters, br as ComplyAdvantageProviderConfigTypes, at as ComplyAdvantageReponseMatchStatus, aq as ComplyAdvantageResponseMatchType, aQ as ComplyAdvantageSearchDataResponse, aP as ComplyAdvantageSearchDataResponseHit, aW as ComplyAdvantageSearchEntitiesDataResponse, aY as ComplyAdvantageSearchEntitiesResponse, aX as ComplyAdvantageSearchEntitiesSuccessResponse, aS as ComplyAdvantageSearchErrorResponse, aZ as ComplyAdvantageSearchRequest, b as ComplyAdvantageSearchResponse, aR as ComplyAdvantageSearchSuccessResponse, a$ as ComplyAdvantageUpdateSearchEntitiesRequest, b1 as ComplyAdvantageUpdateSearchEntitiesResponse, b0 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a_ as ComplyAdvantageUpdateSearchRequest, aM as ComplyAdvantageUser, bA as CreateProviderInput, bB as CreateProviderResponse, aF as CreateSearchInput, cT as CredentialMetadata, cS as CustomerContactInformationOutput, d6 as CustomerDocumentMetaData, d7 as CustomerStatusResults, b9 as DataProviderOptions, ba as DataProviders, bF as DeleteProviderInput, bG as DeleteProviderResponse, V as DocumentIdMetadata, U as DocumentIdType, T as DocumentIdTypes, cn as DocumentMetadataSchema, a0 as EmailMetadata, E as EmailVerificationAnalysisResponse, df as EnhancedChainalysisRequest, Q as File, cR as GetCredentialsOutput, d3 as GetKybSessionInput, d4 as GetKybSessionResponse, cL as GetKycSessionInput, cM as GetKycSessionResponse, cU as GetKycSessionResponseWithCredentialsMetadata, bz as GetProviderResponse, by as GetProvidersResponse, an as HIGH_RISK_TYPES, bW as INDIVIDUAL_BENEFICIARY_RELATIONS, b7 as IdentityProviderOptions, b8 as IdentityProviders, bX as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bf as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bq as IpqualityscoreProvider, cX as KYB_RESULTS, cZ as KYB_SESSION_STATUSES, cV as KYB_STEP_TYPES, cF as KYC_RESULTS, cH as KYC_SESSION_STATUSES, cD as KYC_STEP_TYPES, cY as KybResult, c_ as KybSessionStatus, cW as KybStep, cG as KycResult, cI as KycSessionStatus, cE as KycStep, _ as LivenessMetadata, ao as MEDIUM_RISK_TYPES, aH as MatchStatus, aG as MatchStatuses, aN as MatchTypeDetail, M as MergedProviders, dd as MerkleAddressApiError, dc as MerkleAddressApiResponse, db as MerkleAddressRequest, a as MerkleAddressResponse, da as MerkleBlockChainCodes, d9 as MerkleBlockChainNames, d8 as MerkleBlockChainTypes, bb as MerkleScienceConfig, bo as MerkleScienceProvider, N as NestedSession, bl as NexeraIdKYBProvider, bk as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, $ as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Y as ProofOfAddressDocumentType, X as ProofOfAddressDocumentTypes, Z as ProofOfAddressMetadata, cQ as ProofOfResidenceDocumentType, cP as ProofOfResidenceMetaData, bw as ProviderData, bx as ProviderDataProject, bi as ProviderIntegrationType, bh as ProviderIntegrationTypeOptions, b6 as ProviderWithoutConfig, a9 as RESULT_PARSER_ERROR, L as ReasonCode, K as ReasonCodes, t as RequestProperty, aJ as RiskLevel, aI as RiskLevels, R as RiskSeverity, al as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, aj as SEARCH_FILTER_PEP_TYPE, ah as SEARCH_FILTER_SANCTION_TYPE, au as SEARCH_FILTER_TYPES, a7 as SESSION_NOT_FOUND, ad as STEP_NOT_FOUND, bO as SUMSUB_APPLICANT_TYPES, cg as SUMSUB_COMPANY_BENEFICIARY_GROUP, c5 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cv as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cl as SUMSUB_MEDIA_CONTENT_TYPES, bQ as SUMSUB_REVIEW_ANSWERS, cA as SUMSUB_REVIEW_REJECT_LABELS, cC as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bS as SUMSUB_REVIEW_REJECT_TYPES, c3 as SUMSUB_REVIEW_STATUSES, bM as SUMSUB_STEPS, c1 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bd as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bn as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ax as SearchEntityType, aw as SearchEntityTypes, am as SearchFilterAdverseMediaType, ak as SearchFilterPepType, ai as SearchFilterSanctionType, av as SearchFilterType, ay as SearchFilters, d2 as SelectKybSession, cJ as SelectKycSession, cK as SelectKycSessionStep, F as Session, G as SessionWithoutSteps, z as Status, y as Statuses, a2 as Step, J as StepType, H as StepTypes, bU as SumSubAddress, bV as SumSubApplicantInfo, cp as SumSubApplicantResetSchema, co as SumSubApplicantReviewStatusSchema, cu as SumSubApplicantSchema, bP as SumSubApplicantType, ck as SumSubApplicantVerificationStepSchema, c0 as SumSubCompanyApplicantInfo, ce as SumSubCompanyApplicantSchema, c6 as SumSubDocType, c8 as SumSubFlowLevel, cq as SumSubGenerateExternalWebSdkLinkSchema, cf as SumSubImageId, ca as SumSubImageReviewResultSchema, cd as SumSubIndividualApplicantSchema, cm as SumSubMediaContentType, bR as SumSubReviewAnswer, cB as SumSubReviewRejectLabel, bT as SumSubReviewRejectType, c9 as SumSubReviewResultSchema, c4 as SumSubReviewStatus, cz as SumSubSimilarApplicantsSchema, bN as SumSubStep, cj as SumSubVerificationStepSchema, bK as SumSubWebhookSchema, cc as SumsubApplicantType, cb as SumsubApplicantTypes, ch as SumsubCompanyBeneficiaryGroup, ct as SumsubKybDataSchema, cy as SumsubKybSessionFlowSection, cx as SumsubKybSessionFlowSectionItem, cw as SumsubKybSessionFlowSectionStatus, cs as SumsubKycDataSchema, ci as SumsubStepStatus, cr as SumsubVideoCallData, c2 as SumsubWebhookInternalStatus, bv as SynapsProvider, aa as SynapsSessionErrorResponse, a3 as SynapsSessionEvent, a6 as SynapsSessionRequest, ab as SynapsSessionResponse, ae as SynapsStepErrorResponse, a4 as SynapsStepEvent, ac as SynapsStepRequest, af as SynapsStepResponse, bE as ToggleProviderInput, a8 as UNKNOWN_ERROR, d5 as UpdateKybSessionOutput, cN as UpdateKycSessionOutput, bC as UpdateProviderInput, bD as UpdateProviderResponse, aL as UpdateSearchEntitiesInput, aK as UpdateSearchInput, cO as VideoKycMetaData, bH as WEBHOOK_TYPES, D as WebhookPayload, bI as WebhookType, be as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, ar as mappingMatchTypeToLabel, a5 as typeToHumanReadable } from '../../dist/customers.schema-a71ef077.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
|
-
import '../../dist/identity-api.schema-
|
|
3
|
+
import '../../dist/identity-api.schema-d9e8afc5.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-d9938374.cjs.dev.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-34efb3cc.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-4b9402f3.cjs.prod.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-044a120d.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-d9e8afc5.esm.js';
|
|
2
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-1d720c72.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-d9938374.cjs.dev.js');
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-5229257c.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-4b9402f3.cjs.prod.js');
|
|
7
|
+
var customers_schema = require('../../dist/customers.schema-c3a8f1f6.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-d9e8afc5.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-a71ef077.esm.js';
|
|
4
4
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|