@nexeraid/identity-schemas 2.231.0-dev → 2.233.0-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/declarations/src/config.schema.d.ts +5 -2
- package/dist/declarations/src/config.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity-ids.schema.d.ts +7 -1
- package/dist/declarations/src/identity-ids.schema.d.ts.map +1 -1
- package/dist/declarations/src/nexeraSSID.schema.d.ts +72 -0
- package/dist/declarations/src/nexeraSSID.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/kyb-sessions.schema.d.ts +128 -0
- package/dist/declarations/src/providers/kyb-sessions.schema.d.ts.map +1 -1
- package/dist/declarations/src/verifiable-credentials/vc_json_schema_map.d.ts +18 -0
- package/dist/declarations/src/verifiable-credentials/vc_json_schema_map.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/alert.schema.d.ts +15 -0
- package/dist/declarations/src/webhooks/alert.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +3 -3
- package/dist/{identity-api.schema-b85b5276.cjs.prod.cjs → identity-api.schema-1d6c48b0.cjs.prod.cjs} +1 -1
- package/dist/{identity-api.schema-d81f0f98.esm.mjs → identity-api.schema-235de44b.esm.mjs} +1 -1
- package/dist/{identity-api.schema-b752e814.cjs.dev.cjs → identity-api.schema-ba410353.cjs.dev.cjs} +1 -1
- package/dist/nexeraid-identity-schemas.cjs.dev.cjs +8 -5
- package/dist/nexeraid-identity-schemas.cjs.prod.cjs +8 -5
- package/dist/nexeraid-identity-schemas.esm.mjs +7 -7
- package/dist/package.json +10 -10
- package/dist/{tfhe-utilities-67df1cb8.esm.mjs → tfhe-utilities-1ca8cf1f.esm.mjs} +20 -2
- package/dist/{tfhe-utilities-1a60b43a.cjs.dev.cjs → tfhe-utilities-5bac62f1.cjs.dev.cjs} +20 -2
- package/dist/{tfhe-utilities-e253ef46.cjs.prod.cjs → tfhe-utilities-daf1c4fc.cjs.prod.cjs} +20 -2
- package/dist/{toArray-2f9aa662.esm.mjs → toArray-04d6373a.esm.mjs} +1 -1
- package/dist/{toArray-61bf0703.cjs.dev.cjs → toArray-72daad14.cjs.dev.cjs} +1 -1
- package/dist/{toArray-93243940.cjs.prod.cjs → toArray-bf51f0a4.cjs.prod.cjs} +1 -1
- package/dist/{vault.schema-cc54454c.esm.mjs → vault.schema-ac945548.esm.mjs} +53 -6
- package/dist/{vault.schema-1be8da81.cjs.prod.cjs → vault.schema-f25c0d9b.cjs.prod.cjs} +55 -5
- package/dist/{vault.schema-7e29dfe1.cjs.dev.cjs → vault.schema-fc13f09a.cjs.dev.cjs} +55 -5
- package/dist/{veriff-webhook.schema-2ff6c2ec.esm.mjs → veriff-webhook.schema-01b55f80.esm.mjs} +23 -3
- package/dist/{veriff-webhook.schema-bf79f789.cjs.prod.cjs → veriff-webhook.schema-3a4e348a.cjs.prod.cjs} +23 -3
- package/dist/{veriff-webhook.schema-49c861af.cjs.dev.cjs → veriff-webhook.schema-d8f5b0df.cjs.dev.cjs} +23 -3
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +2 -2
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +2 -2
- package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +2 -2
- package/package.json +10 -10
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +3 -3
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +3 -3
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +3 -3
- package/vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs +2 -2
- package/vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs +2 -2
- package/vault/dist/nexeraid-identity-schemas-vault.esm.mjs +3 -3
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +3 -3
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +3 -3
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +3 -3
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +20 -4
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +20 -4
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +20 -5
|
@@ -525,7 +525,10 @@ var AbiItem = z.z.object({
|
|
|
525
525
|
}).array().optional()
|
|
526
526
|
});
|
|
527
527
|
|
|
528
|
-
var ENVS = ["cicd", "local", "test-dev-1", "test-dev-2", "test-dev-3", "test-dev-4", "dev", "stage", "prod"
|
|
528
|
+
var ENVS = ["cicd", "local", "test-dev-1", "test-dev-2", "test-dev-3", "test-dev-4", "dev", "stage", "prod",
|
|
529
|
+
// Dedicated single-tenant environment (DZ PRIVATBANK) on its own portals-dzprivatbank EKS
|
|
530
|
+
// cluster. Isolated domains (*.dzprivatbank.compilot.ai) and dedicated svix/openmeter/S3.
|
|
531
|
+
"dzprivatbank"];
|
|
529
532
|
var EnvironmentSchema = z.z["enum"](ENVS);
|
|
530
533
|
var UuidString = z.z.string().uuid();
|
|
531
534
|
var OtpCode = z.z.string().regex(/^\d{6}$/, "OtpCode must be a 6-digit number");
|
|
@@ -542,7 +545,8 @@ var PUBLIC_SERVICES_SCHEMA_MAP = {
|
|
|
542
545
|
"test-dev-4": "https://api-test-dev-4.bjrcom.xyz",
|
|
543
546
|
dev: "https://api.bjrcom.xyz",
|
|
544
547
|
stage: "https://api.bjrpilot.xyz",
|
|
545
|
-
prod: "https://api.compilot.ai"
|
|
548
|
+
prod: "https://api.compilot.ai",
|
|
549
|
+
dzprivatbank: "https://api.dzprivatbank.compilot.ai"
|
|
546
550
|
},
|
|
547
551
|
// No need for /identity suffix in path, handled in gateway
|
|
548
552
|
identity_api: {
|
|
@@ -554,7 +558,8 @@ var PUBLIC_SERVICES_SCHEMA_MAP = {
|
|
|
554
558
|
"test-dev-4": "https://api-test-dev-4.bjrcom.xyz",
|
|
555
559
|
dev: "https://api.bjrcom.xyz",
|
|
556
560
|
stage: "https://api.bjrpilot.xyz",
|
|
557
|
-
prod: "https://api.compilot.ai"
|
|
561
|
+
prod: "https://api.compilot.ai",
|
|
562
|
+
dzprivatbank: "https://api.dzprivatbank.compilot.ai"
|
|
558
563
|
},
|
|
559
564
|
identityV2: {
|
|
560
565
|
cicd: "http://localhost:3009",
|
|
@@ -565,7 +570,8 @@ var PUBLIC_SERVICES_SCHEMA_MAP = {
|
|
|
565
570
|
"test-dev-4": "https://identity-v2-test-dev-4.bjrcom.xyz",
|
|
566
571
|
dev: "https://identity-v2.bjrcom.xyz",
|
|
567
572
|
stage: "https://identity-v2.bjrpilot.xyz",
|
|
568
|
-
prod: "https://identity-v2.compilot.ai"
|
|
573
|
+
prod: "https://identity-v2.compilot.ai",
|
|
574
|
+
dzprivatbank: "https://identity-v2.dzprivatbank.compilot.ai"
|
|
569
575
|
}
|
|
570
576
|
};
|
|
571
577
|
var IpAddress = z.z.string().optional().refine(function (val) {
|
|
@@ -2650,6 +2656,13 @@ var DatasetJobPrefix = "datasetj";
|
|
|
2650
2656
|
var DatasetFormInvitationPrefix = "datasetfi";
|
|
2651
2657
|
// F-PUBLIC-LINK - reusable public onboarding link id prefix.
|
|
2652
2658
|
var FormShareLinkPrefix = "formsl";
|
|
2659
|
+
// Email-OTP gate challenge id prefix (public onboarding).
|
|
2660
|
+
var FormOtpChallengePrefix = "formotp";
|
|
2661
|
+
// Onboarding-review staging store: a pending form submission held for officer
|
|
2662
|
+
// validation before it commits to the dataset(s).
|
|
2663
|
+
var FormSubmissionPrefix = "formsub";
|
|
2664
|
+
// The RFI / flagged-items row (officer requests changes on a submission).
|
|
2665
|
+
var FormSubmissionChangeRequestPrefix = "fsubcr";
|
|
2653
2666
|
var DatasetColumnDependencyPrefix = "datasetcd";
|
|
2654
2667
|
var DatasetFormulaExecutionLogPrefix = "datasetfel";
|
|
2655
2668
|
var DatasetChangeRequestPrefix = "datasetchr";
|
|
@@ -2987,7 +3000,41 @@ var IdentityAppV2BaseJWT = z.z.object({
|
|
|
2987
3000
|
* by simply not sending formShareLinkId. Optional: invitation / member / kyc
|
|
2988
3001
|
* tokens omit it and are entirely unchanged.
|
|
2989
3002
|
*/
|
|
2990
|
-
formShareLinkId: z.z.string().optional()
|
|
3003
|
+
formShareLinkId: z.z.string().optional(),
|
|
3004
|
+
/**
|
|
3005
|
+
* DZ email-OTP gate: set true only after the recipient proved control of their
|
|
3006
|
+
* email via the one-time code (minted by the OTP verify endpoint). For tenants
|
|
3007
|
+
* that REQUIRE email verification, the dataset-form questions / submit / data
|
|
3008
|
+
* chokepoints reject a share-link token WITHOUT this claim. The resolve
|
|
3009
|
+
* response's requiresEmailVerification flag is UX only; THIS signed claim is
|
|
3010
|
+
* the authorization boundary. Optional: every other token omits it, unchanged.
|
|
3011
|
+
*/
|
|
3012
|
+
formOtpVerified: z.z["boolean"]().optional(),
|
|
3013
|
+
/**
|
|
3014
|
+
* The email address the recipient proved control of at OTP verification. Signed
|
|
3015
|
+
* alongside formOtpVerified and recorded in the created record's provenance, so
|
|
3016
|
+
* every OTP-gated onboarding is traceable to a verified address. Optional.
|
|
3017
|
+
*/
|
|
3018
|
+
verifiedEmail: z.z.string().optional(),
|
|
3019
|
+
/**
|
|
3020
|
+
* CODEX-R2 CLASS B/D (onboarding-review RESUME origin): set only on a widget
|
|
3021
|
+
* token minted by the submitter re-entry bootstrap (startFormResume) for a
|
|
3022
|
+
* staged CHANGES_REQUESTED submission. Its PRESENCE marks the request as a
|
|
3023
|
+
* RESUME (an in-flight remediation), NOT a new share-link submission, so the
|
|
3024
|
+
* questions/OTP chokepoints do NOT block it on the NEW-SUBMISSION link
|
|
3025
|
+
* lifecycle caps (capReached/enabled/expired) - the resume-token binding + OTP
|
|
3026
|
+
* + tenant binding remain the authorization. Carries the staged submission id
|
|
3027
|
+
* for audit. Optional: every non-resume token omits it, entirely unchanged.
|
|
3028
|
+
*/
|
|
3029
|
+
formResumeSubmissionId: z.z.string().optional(),
|
|
3030
|
+
/**
|
|
3031
|
+
* CODEX-R2 CLASS B: the staged submission's section-scope snapshot (pinned at
|
|
3032
|
+
* the original submit), signed onto the resume widget token so the resume
|
|
3033
|
+
* questions load scopes to it instead of the CURRENT share link's (possibly
|
|
3034
|
+
* narrowed) sections. Absent = the submission was whole-form. Only ever set
|
|
3035
|
+
* alongside formResumeSubmissionId.
|
|
3036
|
+
*/
|
|
3037
|
+
formResumeSections: z.z.array(z.z.string()).optional()
|
|
2991
3038
|
});
|
|
2992
3039
|
var IdentityAppV2Web3JWT = IdentityAppV2BaseJWT.extend({
|
|
2993
3040
|
flowType: z.z.literal(FlowType.Values.web3),
|
|
@@ -13743,7 +13790,10 @@ exports.EvmChainId = EvmChainId;
|
|
|
13743
13790
|
exports.ExternalCustomerId = ExternalCustomerId;
|
|
13744
13791
|
exports.FLOW_TYPES = FLOW_TYPES;
|
|
13745
13792
|
exports.FlowType = FlowType;
|
|
13793
|
+
exports.FormOtpChallengePrefix = FormOtpChallengePrefix;
|
|
13746
13794
|
exports.FormShareLinkPrefix = FormShareLinkPrefix;
|
|
13795
|
+
exports.FormSubmissionChangeRequestPrefix = FormSubmissionChangeRequestPrefix;
|
|
13796
|
+
exports.FormSubmissionPrefix = FormSubmissionPrefix;
|
|
13747
13797
|
exports.FunctionCallData = FunctionCallData;
|
|
13748
13798
|
exports.GenericVaultDataLinkZodSchema = GenericVaultDataLinkZodSchema;
|
|
13749
13799
|
exports.GenericVaultEmbeddedLinkZodSchema = GenericVaultEmbeddedLinkZodSchema;
|
package/dist/{veriff-webhook.schema-2ff6c2ec.esm.mjs → veriff-webhook.schema-01b55f80.esm.mjs}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import z$1, { z } from 'zod';
|
|
2
|
-
import { b5 as Alpha2Country, aX as UuidString,
|
|
3
|
-
import { _ as SdkVerificationOutput, aV as QrCodeLinkWithSchemaType, cd as CredentialType } from './identity-api.schema-
|
|
2
|
+
import { b5 as Alpha2Country, aX as UuidString, gF as _toConsumableArray, gI as ScoringAnalysisRequest, gJ as WorkflowsScoringAnalysisRequest, b3 as ISO3CountryCode, gH as _slicedToArray, cX as IdentityId, au as BlockchainAddress, az as BlockchainNamespace, cT as WorkflowSessionId, el as WorkspaceId, ek as OrganizationId, bp as CustomerStatus, _ as _defineProperty, eI as ProofOfResidenceCredentialSubjectSchema, bq as BasicCustomerContactInformation, eb as VerificationMode } from './vault.schema-ac945548.esm.mjs';
|
|
3
|
+
import { _ as SdkVerificationOutput, aV as QrCodeLinkWithSchemaType, cd as CredentialType } from './identity-api.schema-235de44b.esm.mjs';
|
|
4
4
|
|
|
5
5
|
var IpQualityAnalysisRequest = z.object({
|
|
6
6
|
apiKey: z.string().nullish(),
|
|
@@ -2726,7 +2726,27 @@ var SelectKybSession = z.object({
|
|
|
2726
2726
|
/** Server-side snapshot so the rep widget can detect compliance flips without polling. */
|
|
2727
2727
|
customerStatus: CustomerStatus.nullish(),
|
|
2728
2728
|
/** Topograph-emitted ISO2 country code; drives the dashboard flag render. */
|
|
2729
|
-
topographCountry: z.string().nullish()
|
|
2729
|
+
topographCountry: z.string().nullish(),
|
|
2730
|
+
/** True while a reviewer's resubmission round is open & unfinished (REQUESTED)
|
|
2731
|
+
* — lets an already-open widget live-detect it and route the rep to fix. */
|
|
2732
|
+
resubmissionRequested: z.coerce["boolean"]().nullish(),
|
|
2733
|
+
/** Free-text neutral message from the reviewer describing what to fix. */
|
|
2734
|
+
resubmissionNote: z.string().nullish(),
|
|
2735
|
+
/** Rep contact address already stored for this session, so the widget can
|
|
2736
|
+
* show what's saved instead of an empty box the rep can't verify. */
|
|
2737
|
+
notificationEmail: z.string().nullish(),
|
|
2738
|
+
/** Current company details (only during a resubmission round) so the company
|
|
2739
|
+
* step can pre-fill the form for correction. Country is alpha-2. */
|
|
2740
|
+
company: z.object({
|
|
2741
|
+
companyName: z.string().nullish(),
|
|
2742
|
+
registrationNumber: z.string().nullish(),
|
|
2743
|
+
country: z.string().nullish(),
|
|
2744
|
+
type: z.string().nullish(),
|
|
2745
|
+
legalAddress: z.string().nullish(),
|
|
2746
|
+
incorporationDate: z.string().nullish(),
|
|
2747
|
+
taxId: z.string().nullish(),
|
|
2748
|
+
website: z.string().nullish()
|
|
2749
|
+
}).nullish()
|
|
2730
2750
|
});
|
|
2731
2751
|
var GetKybSessionInput = z.object({
|
|
2732
2752
|
projectId: z.string()
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var z = require('zod');
|
|
4
|
-
var vault_schema = require('./vault.schema-
|
|
5
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
4
|
+
var vault_schema = require('./vault.schema-f25c0d9b.cjs.prod.cjs');
|
|
5
|
+
var identityApi_schema = require('./identity-api.schema-1d6c48b0.cjs.prod.cjs');
|
|
6
6
|
|
|
7
7
|
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
|
8
8
|
|
|
@@ -2732,7 +2732,27 @@ var SelectKybSession = z.z.object({
|
|
|
2732
2732
|
/** Server-side snapshot so the rep widget can detect compliance flips without polling. */
|
|
2733
2733
|
customerStatus: vault_schema.CustomerStatus.nullish(),
|
|
2734
2734
|
/** Topograph-emitted ISO2 country code; drives the dashboard flag render. */
|
|
2735
|
-
topographCountry: z.z.string().nullish()
|
|
2735
|
+
topographCountry: z.z.string().nullish(),
|
|
2736
|
+
/** True while a reviewer's resubmission round is open & unfinished (REQUESTED)
|
|
2737
|
+
* — lets an already-open widget live-detect it and route the rep to fix. */
|
|
2738
|
+
resubmissionRequested: z.z.coerce["boolean"]().nullish(),
|
|
2739
|
+
/** Free-text neutral message from the reviewer describing what to fix. */
|
|
2740
|
+
resubmissionNote: z.z.string().nullish(),
|
|
2741
|
+
/** Rep contact address already stored for this session, so the widget can
|
|
2742
|
+
* show what's saved instead of an empty box the rep can't verify. */
|
|
2743
|
+
notificationEmail: z.z.string().nullish(),
|
|
2744
|
+
/** Current company details (only during a resubmission round) so the company
|
|
2745
|
+
* step can pre-fill the form for correction. Country is alpha-2. */
|
|
2746
|
+
company: z.z.object({
|
|
2747
|
+
companyName: z.z.string().nullish(),
|
|
2748
|
+
registrationNumber: z.z.string().nullish(),
|
|
2749
|
+
country: z.z.string().nullish(),
|
|
2750
|
+
type: z.z.string().nullish(),
|
|
2751
|
+
legalAddress: z.z.string().nullish(),
|
|
2752
|
+
incorporationDate: z.z.string().nullish(),
|
|
2753
|
+
taxId: z.z.string().nullish(),
|
|
2754
|
+
website: z.z.string().nullish()
|
|
2755
|
+
}).nullish()
|
|
2736
2756
|
});
|
|
2737
2757
|
var GetKybSessionInput = z.z.object({
|
|
2738
2758
|
projectId: z.z.string()
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var z = require('zod');
|
|
4
|
-
var vault_schema = require('./vault.schema-
|
|
5
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
4
|
+
var vault_schema = require('./vault.schema-fc13f09a.cjs.dev.cjs');
|
|
5
|
+
var identityApi_schema = require('./identity-api.schema-ba410353.cjs.dev.cjs');
|
|
6
6
|
|
|
7
7
|
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
|
8
8
|
|
|
@@ -2732,7 +2732,27 @@ var SelectKybSession = z.z.object({
|
|
|
2732
2732
|
/** Server-side snapshot so the rep widget can detect compliance flips without polling. */
|
|
2733
2733
|
customerStatus: vault_schema.CustomerStatus.nullish(),
|
|
2734
2734
|
/** Topograph-emitted ISO2 country code; drives the dashboard flag render. */
|
|
2735
|
-
topographCountry: z.z.string().nullish()
|
|
2735
|
+
topographCountry: z.z.string().nullish(),
|
|
2736
|
+
/** True while a reviewer's resubmission round is open & unfinished (REQUESTED)
|
|
2737
|
+
* — lets an already-open widget live-detect it and route the rep to fix. */
|
|
2738
|
+
resubmissionRequested: z.z.coerce["boolean"]().nullish(),
|
|
2739
|
+
/** Free-text neutral message from the reviewer describing what to fix. */
|
|
2740
|
+
resubmissionNote: z.z.string().nullish(),
|
|
2741
|
+
/** Rep contact address already stored for this session, so the widget can
|
|
2742
|
+
* show what's saved instead of an empty box the rep can't verify. */
|
|
2743
|
+
notificationEmail: z.z.string().nullish(),
|
|
2744
|
+
/** Current company details (only during a resubmission round) so the company
|
|
2745
|
+
* step can pre-fill the form for correction. Country is alpha-2. */
|
|
2746
|
+
company: z.z.object({
|
|
2747
|
+
companyName: z.z.string().nullish(),
|
|
2748
|
+
registrationNumber: z.z.string().nullish(),
|
|
2749
|
+
country: z.z.string().nullish(),
|
|
2750
|
+
type: z.z.string().nullish(),
|
|
2751
|
+
legalAddress: z.z.string().nullish(),
|
|
2752
|
+
incorporationDate: z.z.string().nullish(),
|
|
2753
|
+
taxId: z.z.string().nullish(),
|
|
2754
|
+
website: z.z.string().nullish()
|
|
2755
|
+
}).nullish()
|
|
2736
2756
|
});
|
|
2737
2757
|
var GetKybSessionInput = z.z.object({
|
|
2738
2758
|
projectId: z.z.string()
|
|
@@ -2,9 +2,9 @@
|
|
|
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-ba410353.cjs.dev.cjs');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/vault.schema-
|
|
7
|
+
require('../../dist/vault.schema-fc13f09a.cjs.dev.cjs');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
10
10
|
require('crypto');
|
|
@@ -2,9 +2,9 @@
|
|
|
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-1d6c48b0.cjs.prod.cjs');
|
|
6
6
|
require('zod');
|
|
7
|
-
require('../../dist/vault.schema-
|
|
7
|
+
require('../../dist/vault.schema-f25c0d9b.cjs.prod.cjs');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
10
10
|
require('crypto');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { v as ACTION_STATUSES, t as ACTION_TRIGGERS, b8 as ARRAY_OPERATORS, aM as AUTHORIZATION_REQUEST_MESSAGE_TYPES, A as AVAILABLE_FLOWS, a4 as AbbreviatedWorkflowScenario, a2 as Action, w as ActionStatus, u as ActionTrigger, s as ActionType, x as ActionValue, bo as AllCredentialValues, c4 as AllScenarioExecutionAuthorizationData, bY as AnyTxAuthDataSignatureResponse, b$ as AnyTxAuthInputJsSdk, bR as ApiTezosTxAuthInput, bL as ApiTxAuthInput, b9 as ArrayOperator, aU as AuthQrCodeData, ap as AuthSession, ar as AuthSessionData, aP as AuthorizationRequestMessage, aO as AuthorizationRequestMessageType, aN as AuthorizationRequestMessageTypes, aS as AuthorizationResponseMessage, n as AvailableFlow, be as BOOLEAN_OPERATORS, M as BackwardsCompatibleScenarioType, L as BackwardsCompatibleScenarioTypes, N as BaseQueryResponse, bf as BooleanOperator, aJ as CIRCUIT_IDS, bz as ChallengeQuerySchema, as as ChallengeResponse, aK as CircuitId, b as CloseScreenNotification, a7 as ComplianceImplementationStepsInput, c3 as CreateAuthRequestProps, a6 as CreateTemplateScenario, aT as CredentialQrCodeData, bg as DATE_OPERATORS, bi as DISPLAY_MODE, D as DataAvailableOnStart, bh as DateOperator, bj as DisplayMode, bZ as Eip155TxAuthInputJsSdk, U as ExecuteQueryResponse, bX as ExtendedTezosTxAuthDataSignatureResponse, bV as ExtendedTezosTxAuthInput, bW as ExtendedTxAuthDataSignatureResponse, bU as ExtendedTxAuthInput, ao as GenerateWalletChallengeRequest, a9 as GetCredentialsRequest, aa as GetCredentialsResponse, av as GetCustomerStatusRequest, aA as GetCustomerStatusResponse, bT as GetTezosTxAuthDataSignatureResponse, bO as GetTxAuthDataSignatureFailureResponse, bP as GetTxAuthDataSignatureResponse, bN as GetTxAuthDataSignatureSuccessResponse, ai as GetTxAuthSigRequest, ak as GetTxAuthSigRequestTezos, aj as GetTxAuthSigResponse, al as GetTxAuthSigResponseTezos, aD as HostMessage, am as HostRequestMessage, H as HostResponseMessage, bn as IDInformationTfhe, aB as IdentityAppMessage, aE as IdentityMessage, i as IdentityNotificationMessage, m as IdentityRequestMessage, an as IdentityResponseMessage, aw as IdentitySdkMessage, ax as IdentitySdkMessageWithIdentifier, aC as IdentityWallet, j as InitialDataRequest, o as InitialDataResponse, I as IsVerifiedNotification, ag as IsVerifiedRequest, ah as IsVerifiedResponse, K as KycCompletionData, c as KycCompletionNotification, aH as MediaType, aI as MediaTypePID, aq as MobileExchangeTokenResponse, bc as NUMERIC_OPERATORS, bd as NumericOperator, bA as OLD_CHALLENGE_QUERY_OPERATORS, bB as OLD_ChallengeQueryOperator, bE as OLD_ChallengeQueryOperatorToOperator, bw as OLD_ChallengeQuerySchema, bG as OLD_QueryCredentialType, bF as OLD_QueryCredentialTypes, b0 as OPERATORS, g as OcvSdkInitialized, O as OffChainScenarioExecutionData, Q as OffChainZKPRuleResult, d as OnChainScenarioExecutionData, b1 as Operator, bC as OperatorMappings, bD as OperatorToOLD_ChallengeQueryOperator, bv as PartialQueryConfigSimplified, P as PolygonIdInitialized, ac as PolygonIdRequest, ab as PolygonIdRequestData, ae as PolygonIdResponse, ad as PolygonIdResponseData, c2 as PrivacyPreservingMonitoring, aQ as ProofData, a_ as QUERY_LOGIC_OPERATOR, aV as QrCodeLinkWithSchemaType, bp as QueriesOptions, bs as QueryConfigSimplified, br as QueryConfigTfhe, by as QueryCredentialType, bx as QueryCredentialTypes, bt as QueryGroupConfigSimplified, a$ as QueryLogicOperator, bq as QueryType, aF as RequiredDataRowSchema, aG as RequiredVerificationData, V as RuleEngineResponse, R as RuleEngineScenarioExecutionData, bu as RuleResultQueryConfig, Y as RuleResultStatus, Z as RuleResultStatusLabels, X as RuleResultStatuses, b3 as RuleTimeframe, r as SCENARIO_ACTION_TYPES, c5 as SCENARIO_AUTHORIZATION_STATUSES, ba as STRING_OPERATORS, bk as SUPPORTED_TYPES, S as ScenarioAuthorizationData, c6 as ScenarioAuthorizationStatus, e as ScenarioExecutionData, f as ScenarioExecutionNotification, W as ScenarioExecutionResponse, E as ScenarioMode, B as ScenarioModes, J as ScenarioSchema, G as ScenarioStatus, F as ScenarioStatuses, z as ScenarioType, y as ScenarioTypes, _ as SdkVerificationOutput, a as SdkVerificationResponseSchema, l as SendTransactionRequest, k as SignatureRequest, p as SignatureResponse, a8 as SimplifiedCredential, a3 as SimplifiedScenario, aZ as SpecialDataSetType, aY as SpecialDataSetTypes, h as StartCompletedNotification, af as StartFlowRequest, bb as StringOperator, bl as SupportedQueryInputType, bm as SupportedQueryInputTypes, b2 as TIMEFRAME, a5 as TemplateScenario, bQ as TezosTxAuthInput, b_ as TezosTxAuthInputJsSdk, bS as TezosTxSignatureResponse, T as TransactionData, q as TransactionResponse, az as TxAuthDataSignatureGatingError, au as TxAuthDataSignatureGatingRequest, ay as TxAuthDataSignatureResponse, bK as TxAuthInput, bM as TxSignatureResponse, a1 as VerificationOutput, a0 as VerificationSessionStatus, $ as VerificationSessionStatuses, c8 as VerifyWalletChallengeRequest, at as WalletSignResponse, c7 as WalletSignatureResponse, b4 as ZKPOperator, c0 as ZKPRequest, c1 as ZKPRequestFromZKVerifier, aL as ZeroKnowledgeProofRequest, aR as ZeroKnowledgeProofResponse, bI as getOldCredentialPath, bH as getOldCredentialType, bJ as oldCredentialPathToDataLink, b5 as operatorDisplayMap, aW as parseIden3Message, aX as parseSessionIdFromUrl, b7 as timeframeAlertDisplayMap, b6 as timeframeDisplayMap } from '../../dist/identity-api.schema-
|
|
1
|
+
export { v as ACTION_STATUSES, t as ACTION_TRIGGERS, b8 as ARRAY_OPERATORS, aM as AUTHORIZATION_REQUEST_MESSAGE_TYPES, A as AVAILABLE_FLOWS, a4 as AbbreviatedWorkflowScenario, a2 as Action, w as ActionStatus, u as ActionTrigger, s as ActionType, x as ActionValue, bo as AllCredentialValues, c4 as AllScenarioExecutionAuthorizationData, bY as AnyTxAuthDataSignatureResponse, b$ as AnyTxAuthInputJsSdk, bR as ApiTezosTxAuthInput, bL as ApiTxAuthInput, b9 as ArrayOperator, aU as AuthQrCodeData, ap as AuthSession, ar as AuthSessionData, aP as AuthorizationRequestMessage, aO as AuthorizationRequestMessageType, aN as AuthorizationRequestMessageTypes, aS as AuthorizationResponseMessage, n as AvailableFlow, be as BOOLEAN_OPERATORS, M as BackwardsCompatibleScenarioType, L as BackwardsCompatibleScenarioTypes, N as BaseQueryResponse, bf as BooleanOperator, aJ as CIRCUIT_IDS, bz as ChallengeQuerySchema, as as ChallengeResponse, aK as CircuitId, b as CloseScreenNotification, a7 as ComplianceImplementationStepsInput, c3 as CreateAuthRequestProps, a6 as CreateTemplateScenario, aT as CredentialQrCodeData, bg as DATE_OPERATORS, bi as DISPLAY_MODE, D as DataAvailableOnStart, bh as DateOperator, bj as DisplayMode, bZ as Eip155TxAuthInputJsSdk, U as ExecuteQueryResponse, bX as ExtendedTezosTxAuthDataSignatureResponse, bV as ExtendedTezosTxAuthInput, bW as ExtendedTxAuthDataSignatureResponse, bU as ExtendedTxAuthInput, ao as GenerateWalletChallengeRequest, a9 as GetCredentialsRequest, aa as GetCredentialsResponse, av as GetCustomerStatusRequest, aA as GetCustomerStatusResponse, bT as GetTezosTxAuthDataSignatureResponse, bO as GetTxAuthDataSignatureFailureResponse, bP as GetTxAuthDataSignatureResponse, bN as GetTxAuthDataSignatureSuccessResponse, ai as GetTxAuthSigRequest, ak as GetTxAuthSigRequestTezos, aj as GetTxAuthSigResponse, al as GetTxAuthSigResponseTezos, aD as HostMessage, am as HostRequestMessage, H as HostResponseMessage, bn as IDInformationTfhe, aB as IdentityAppMessage, aE as IdentityMessage, i as IdentityNotificationMessage, m as IdentityRequestMessage, an as IdentityResponseMessage, aw as IdentitySdkMessage, ax as IdentitySdkMessageWithIdentifier, aC as IdentityWallet, j as InitialDataRequest, o as InitialDataResponse, I as IsVerifiedNotification, ag as IsVerifiedRequest, ah as IsVerifiedResponse, K as KycCompletionData, c as KycCompletionNotification, aH as MediaType, aI as MediaTypePID, aq as MobileExchangeTokenResponse, bc as NUMERIC_OPERATORS, bd as NumericOperator, bA as OLD_CHALLENGE_QUERY_OPERATORS, bB as OLD_ChallengeQueryOperator, bE as OLD_ChallengeQueryOperatorToOperator, bw as OLD_ChallengeQuerySchema, bG as OLD_QueryCredentialType, bF as OLD_QueryCredentialTypes, b0 as OPERATORS, g as OcvSdkInitialized, O as OffChainScenarioExecutionData, Q as OffChainZKPRuleResult, d as OnChainScenarioExecutionData, b1 as Operator, bC as OperatorMappings, bD as OperatorToOLD_ChallengeQueryOperator, bv as PartialQueryConfigSimplified, P as PolygonIdInitialized, ac as PolygonIdRequest, ab as PolygonIdRequestData, ae as PolygonIdResponse, ad as PolygonIdResponseData, c2 as PrivacyPreservingMonitoring, aQ as ProofData, a_ as QUERY_LOGIC_OPERATOR, aV as QrCodeLinkWithSchemaType, bp as QueriesOptions, bs as QueryConfigSimplified, br as QueryConfigTfhe, by as QueryCredentialType, bx as QueryCredentialTypes, bt as QueryGroupConfigSimplified, a$ as QueryLogicOperator, bq as QueryType, aF as RequiredDataRowSchema, aG as RequiredVerificationData, V as RuleEngineResponse, R as RuleEngineScenarioExecutionData, bu as RuleResultQueryConfig, Y as RuleResultStatus, Z as RuleResultStatusLabels, X as RuleResultStatuses, b3 as RuleTimeframe, r as SCENARIO_ACTION_TYPES, c5 as SCENARIO_AUTHORIZATION_STATUSES, ba as STRING_OPERATORS, bk as SUPPORTED_TYPES, S as ScenarioAuthorizationData, c6 as ScenarioAuthorizationStatus, e as ScenarioExecutionData, f as ScenarioExecutionNotification, W as ScenarioExecutionResponse, E as ScenarioMode, B as ScenarioModes, J as ScenarioSchema, G as ScenarioStatus, F as ScenarioStatuses, z as ScenarioType, y as ScenarioTypes, _ as SdkVerificationOutput, a as SdkVerificationResponseSchema, l as SendTransactionRequest, k as SignatureRequest, p as SignatureResponse, a8 as SimplifiedCredential, a3 as SimplifiedScenario, aZ as SpecialDataSetType, aY as SpecialDataSetTypes, h as StartCompletedNotification, af as StartFlowRequest, bb as StringOperator, bl as SupportedQueryInputType, bm as SupportedQueryInputTypes, b2 as TIMEFRAME, a5 as TemplateScenario, bQ as TezosTxAuthInput, b_ as TezosTxAuthInputJsSdk, bS as TezosTxSignatureResponse, T as TransactionData, q as TransactionResponse, az as TxAuthDataSignatureGatingError, au as TxAuthDataSignatureGatingRequest, ay as TxAuthDataSignatureResponse, bK as TxAuthInput, bM as TxSignatureResponse, a1 as VerificationOutput, a0 as VerificationSessionStatus, $ as VerificationSessionStatuses, c8 as VerifyWalletChallengeRequest, at as WalletSignResponse, c7 as WalletSignatureResponse, b4 as ZKPOperator, c0 as ZKPRequest, c1 as ZKPRequestFromZKVerifier, aL as ZeroKnowledgeProofRequest, aR as ZeroKnowledgeProofResponse, bI as getOldCredentialPath, bH as getOldCredentialType, bJ as oldCredentialPathToDataLink, b5 as operatorDisplayMap, aW as parseIden3Message, aX as parseSessionIdFromUrl, b7 as timeframeAlertDisplayMap, b6 as timeframeDisplayMap } from '../../dist/identity-api.schema-235de44b.esm.mjs';
|
|
2
2
|
import 'zod';
|
|
3
|
-
import '../../dist/vault.schema-
|
|
3
|
+
import '../../dist/vault.schema-ac945548.esm.mjs';
|
|
4
4
|
import 'nanoid';
|
|
5
5
|
import 'decimal.js';
|
|
6
6
|
import 'crypto';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nexeraid/identity-schemas",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.233.0-dev",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "ISC",
|
|
@@ -94,26 +94,26 @@
|
|
|
94
94
|
"scripts": {
|
|
95
95
|
"build": "preconstruct build && npm run copy-package-json-to-dist",
|
|
96
96
|
"copy-package-json-to-dist": "copyfiles package.json dist/",
|
|
97
|
+
"detect-circular-dependencies": "madge --circular src/index.ts",
|
|
97
98
|
"download-schemas": "./scripts/download-schemas.sh",
|
|
99
|
+
"generate:clean": "rm -rf ./src/vault/schemas/generated/*",
|
|
100
|
+
"generate:prettier": "prettier 'src/vault/schemas/generated/*' --write",
|
|
101
|
+
"generate:zod-to-schema": "bun ./scripts/vault/zod-to-schema.ts && ts-json-as-const ./src/vault/schemas/generated/*.json",
|
|
102
|
+
"generate:zod-to-type": "bun ./scripts/vault/zod-to-type.ts",
|
|
98
103
|
"generate-schemas-ts": "./scripts/generate-schemas-ts.sh",
|
|
99
104
|
"generate-zod-schemas": "./scripts/generate-zod-schemas.sh",
|
|
100
105
|
"lint": "eslint .",
|
|
101
|
-
"prettier": "prettier 'src/' --check",
|
|
102
|
-
"prettier:fix": "prettier 'src/' --write",
|
|
103
106
|
"lint:fix": "pnpm lint --fix",
|
|
107
|
+
"manually:generate": "pnpm run generate:zod-to-schema && pnpm run generate:zod-to-type && pnpm run generate:prettier",
|
|
104
108
|
"prepare:release": "./scripts/prepare_npm_release.sh",
|
|
109
|
+
"prettier": "prettier 'src/' --check",
|
|
110
|
+
"prettier:fix": "prettier 'src/' --write",
|
|
105
111
|
"publish:public": "pnpm run prepare:release && publish --access=public --no-git-checks --registry https://registry.npmjs.org/",
|
|
106
112
|
"test": "bun test",
|
|
107
113
|
"test:unit": "bash -c 'set -o pipefail && TZ=UTC bun test \"$@\" | pino-pretty' --",
|
|
108
114
|
"type-check": "tsc --noEmit",
|
|
109
115
|
"update-json-schema-map": "./scripts/update-json-schema-map.sh",
|
|
110
116
|
"update-jsonld-schema-map": "./scripts/update-jsonld-schema-map.sh",
|
|
111
|
-
"update-schemas": "pnpm run download-schemas && pnpm run update-json-schema-map && pnpm run update-jsonld-schema-map && pnpm run generate-zod-schemas && pnpm run generate-schemas-ts && prettier 'src/verifiable-credentials/generated' --write && prettier 'src/verifiable-credentials/generated-ts/' --write"
|
|
112
|
-
"manually:generate": "pnpm run generate:zod-to-schema && pnpm run generate:zod-to-type && pnpm run generate:prettier",
|
|
113
|
-
"generate:clean": "rm -rf ./src/vault/schemas/generated/*",
|
|
114
|
-
"generate:prettier": "prettier 'src/vault/schemas/generated/*' --write",
|
|
115
|
-
"generate:zod-to-schema": "bun ./scripts/vault/zod-to-schema.ts && ts-json-as-const ./src/vault/schemas/generated/*.json",
|
|
116
|
-
"generate:zod-to-type": "bun ./scripts/vault/zod-to-type.ts",
|
|
117
|
-
"detect-circular-dependencies": "madge --circular src/index.ts"
|
|
117
|
+
"update-schemas": "pnpm run download-schemas && pnpm run update-json-schema-map && pnpm run update-jsonld-schema-map && pnpm run generate-zod-schemas && pnpm run generate-schemas-ts && prettier 'src/verifiable-credentials/generated' --write && prettier 'src/verifiable-credentials/generated-ts/' --write"
|
|
118
118
|
}
|
|
119
119
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
6
|
-
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-
|
|
5
|
+
var vault_schema = require('../../dist/vault.schema-fc13f09a.cjs.dev.cjs');
|
|
6
|
+
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-d8f5b0df.cjs.dev.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
10
|
-
require('../../dist/identity-api.schema-
|
|
10
|
+
require('../../dist/identity-api.schema-ba410353.cjs.dev.cjs');
|
|
11
11
|
require('crypto');
|
|
12
12
|
|
|
13
13
|
var ALL_SCORECHAIN_BLOCKCHAIN = [{
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
6
|
-
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-
|
|
5
|
+
var vault_schema = require('../../dist/vault.schema-f25c0d9b.cjs.prod.cjs');
|
|
6
|
+
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-3a4e348a.cjs.prod.cjs');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
require('decimal.js');
|
|
10
|
-
require('../../dist/identity-api.schema-
|
|
10
|
+
require('../../dist/identity-api.schema-1d6c48b0.cjs.prod.cjs');
|
|
11
11
|
require('crypto');
|
|
12
12
|
|
|
13
13
|
var ALL_SCORECHAIN_BLOCKCHAIN = [{
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { O as AMLMetadata, cT as APPLICANT_CHECK_STATUSES, d8 as ApiErrorCommandResponse, d7 as ApiErrorResponse, d9 as ApiSuccessCommandResponse, cU as ApplicantCheckStatus, cF as ApplicantImages, bD as ApplicantMemberOfSchema, d$ as AuthToken, e0 as AuthTokenError, d_ as AuthTokenRequest, e1 as AuthTokenResponse, bU as BENEFICIARY_TYPES, bF as BaseApplicantActionSchema, ba as BaseProvider, dm as BeneficiaryAttestationDocumentMetaData, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, dp as BeneficiaryVerificationStatus, dq as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b5 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, bd as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, dj as COMPANY_DOCUMENT_STATUS, aq as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, ao as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ah as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ae as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dJ as ChainalysisApiError, b0 as ChainalysisConfig, dH as ChainalysisErrorCodes, bg as ChainalysisProvider, dF as ChainalysisRegisterApiResponse, dK as ChainalysisRegisterResponse, dE as ChainalysisRequest, dI as ChainalysisRiskAssessmentApiResponse, dL as ChainalysisRiskAssessmentResponse, dG as ChainalysisRiskLevel, a5 as CoerceDateUTC, dP as CoinMarketCapApiResponse, dQ as CoinMarketCapFiatId, dN as CoinMarketCapQuote, dO as CoinMarketCapQuotes, dM as CoinMarketCapRequest, dl as CompanyDocumentMetaData, dk as CompanyDocumentStatus, aI as ComplyAdvantageAmlFullListing, aH as ComplyAdvantageAmlItemSource, ar as ComplyAdvantageCountryFieldSources, at as ComplyAdvantageDateOfBirthFieldSources, aG as ComplyAdvantageKeyInformation, aD as ComplyAdvantageMedia, aS as ComplyAdvantageMonitorSearchDataResponse, aU as ComplyAdvantageMonitorSearchResponse, aT as ComplyAdvantageMonitorSearchSuccessResponse, aV as ComplyAdvantageMonitoredSearchUpdate, ap as ComplyAdvantageNationalityFieldSources, bo as ComplyAdvantageProvider, bn as ComplyAdvantageProviderConfigElement, bm as ComplyAdvantageProviderConfigFilters, bl as ComplyAdvantageProviderConfigTypes, ai as ComplyAdvantageReponseMatchStatus, af as ComplyAdvantageResponseMatchType, aF as ComplyAdvantageSearchDataResponse, aE as ComplyAdvantageSearchDataResponseHit, aJ as ComplyAdvantageSearchEntitiesDataResponse, aL as ComplyAdvantageSearchEntitiesResponse, aK as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aM as ComplyAdvantageSearchRequest, aN as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aP as ComplyAdvantageUpdateSearchEntitiesRequest, aR as ComplyAdvantageUpdateSearchEntitiesResponse, aQ as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aO as ComplyAdvantageUpdateSearchRequest, aB as ComplyAdvantageUser, bu as CreateProviderInput, bv as CreateProviderResponse, au as CreateSearchInput, d3 as CredentialMetadata, b2 as CrystalIntelligenceConfig, bi as CrystalIntelligenceProvider, dX as CrystalWalletScreeningApiRequest, dY as CrystalWalletScreeningResponse, d2 as CustomerContactInformationOutput, dv as CustomerDocumentMetaData, dw as CustomerStatusResults, a_ as DataProvider, aZ as DataProviderOptions, bz as DeleteProviderInput, bA as DeleteProviderResponse, z as DocumentIdMetadata, y as DocumentIdType, D as DocumentIdTypes, cr as DocumentMetadataSchema, cs as DocumentSubmitResponse, K as EmailMetadata, E as EmailVerificationAnalysisResponse, cR as EmailVerificationResponse, F as File, d1 as GetCredentialsOutput, ds as GetKybSessionInput, dt as GetKybSessionResponse, cX as GetKycSessionInput, cY as GetKycSessionResponse, d4 as GetKycSessionResponseWithCredentialsMetadata, da as GetKycSessionsOutput, bt as GetProviderResponse, bs as GetProvidersResponse, ac as HIGH_RISK_TYPES, d5 as IDImageMetaData, bS as INDIVIDUAL_BENEFICIARY_RELATIONS, aY as IdentityProvider, aX as IdentityProviderOptions, bT as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b6 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bk as IpqualityscoreProvider, df as KYB_RESULTS, dh as KYB_SESSION_STATUSES, dd as KYB_STEP_TYPES, c6 as KYC_DOC_SIDES, db as KYC_PROVIDER_NAMES, cN as KYC_RESULTS, cP as KYC_SESSION_STATUSES, cJ as KYC_STEP_TYPES, dg as KybResult, di as KybSessionStatus, de as KybStep, c7 as KycDocSide, dc as KycProviderName, cO as KycResult, cQ as KycSessionStatus, cK as KycStep, cM as KycStepStatus, cL as KycStepStatuses, e5 as LegalPersonNameIdentifierType, L as LivenessMetadata, ad as MEDIUM_RISK_TYPES, aw as MatchStatus, av as MatchStatuses, aC as MatchTypeDetail, M as MergedProviders, dC as MerkleAddressApiError, dB as MerkleAddressApiResponse, dA as MerkleAddressRequest, dD as MerkleAddressResponse, dz as MerkleBlockChainCodes, dy as MerkleBlockChainName, dx as MerkleBlockChainTypes, a$ as MerkleScienceConfig, bf as MerkleScienceProvider, e7 as NOTABENE_TX_CREATE_STATUS, e3 as NameIdentifierType, e4 as NationalIdentifierType, r as NestedSession, bc as NexeraIdKYBProvider, bb as NexeraIdSSIDProvider, e2 as NotabeneAssetResponse, dZ as NotabeneAudience, b7 as NotabeneConfig, e9 as NotabeneErrorCode, ed as NotabeneJurisdictionsCondition, ec as NotabeneJurisdictionsRequest, ef as NotabeneJurisdictionsResponse, ee as NotabeneJurisdictionsUnitaryResponse, bj as NotabeneProvider, ea as NotabeneTxCreateError, e6 as NotabeneTxCreateRequest, e8 as NotabeneTxCreateResponse, N as NotabeneTxCreateStatus, eb as NotabeneTxValidateFullResponse, eg as NotabeneWebhookPayload, eh as NotabeneWebhookSchema, J as PhoneMetadata, P as PhoneVerificationAnalysisResponse, G as ProofOfAddressDocumentType, A as ProofOfAddressDocumentTypes, H as ProofOfAddressMetadata, d0 as ProofOfResidenceDocumentType, c$ as ProofOfResidenceMetaData, bq as ProviderData, br as ProviderDataProject, b9 as ProviderIntegrationType, b8 as ProviderIntegrationTypeOptions, aW as ProviderWithoutConfig, _ as RESULT_PARSER_ERROR, x as ReasonCode, w as ReasonCodes, R as RequestProperty, ay as RiskLevel, ax as RiskLevels, aa as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a8 as SEARCH_FILTER_PEP_TYPE, a6 as SEARCH_FILTER_SANCTION_TYPE, aj as SEARCH_FILTER_TYPES, Y as SESSION_NOT_FOUND, a2 as STEP_NOT_FOUND, bI as SUMSUB_APPLICANT_TYPES, ck as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c2 as SUMSUB_DOC_TYPES_ARRAY, c8 as SUMSUB_FLOW_LEVEL, cA as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c4 as SUMSUB_KYC_DOC_TYPES, cp as SUMSUB_MEDIA_CONTENT_TYPES, bK as SUMSUB_REVIEW_ANSWERS, cG as SUMSUB_REVIEW_REJECT_LABELS, cI as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bM as SUMSUB_REVIEW_REJECT_TYPES, b$ as SUMSUB_REVIEW_STATUSES, bG as SUMSUB_STEPS, bZ as SUMSUB_WEBHOOK_INTERNAL_STATUS, b3 as ScorechainConfig, be as ScorechainProvider, am as SearchEntityType, al as SearchEntityTypes, ab as SearchFilterAdverseMediaType, a9 as SearchFilterPepType, a7 as SearchFilterSanctionType, ak as SearchFilterType, an as SearchFilters, dr as SelectKybSession, cV as SelectKycSession, cS as SelectKycSessionStep, cW as SelectKycSessionWithCompletedSteps, d6 as SelfieImageMetaData, s as Session, t as SessionWithoutSteps, p as Status, S as Statuses, Q as Step, v as StepType, u as StepTypes, bQ as SumSubAddress, bR as SumSubApplicantInfo, cu as SumSubApplicantResetSchema, ct as SumSubApplicantReviewStatusSchema, cz as SumSubApplicantSchema, bJ as SumSubApplicantType, co as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ci as SumSubCompanyApplicantSchema, c3 as SumSubDocType, c9 as SumSubFlowLevel, cv as SumSubGenerateExternalWebSdkLinkSchema, cj as SumSubImageId, cd as SumSubImageReviewResultSchema, ce as SumSubImageStatus, ch as SumSubIndividualApplicantSchema, c5 as SumSubKycDocType, cq as SumSubMediaContentType, ca as SumSubRequiredIdDoc, bL as SumSubReviewAnswer, cH as SumSubReviewRejectLabel, bN as SumSubReviewRejectType, cc as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cE as SumSubSimilarApplicantsSchema, bH as SumSubStep, cn as SumSubVerificationStepSchema, bE as SumSubWebhookSchema, cg as SumsubApplicantType, cf as SumsubApplicantTypes, cl as SumsubCompanyBeneficiaryGroup, bP as SumsubCountryCode, cy as SumsubKybDataSchema, cD as SumsubKybSessionFlowSection, cC as SumsubKybSessionFlowSectionItem, cB as SumsubKybSessionFlowSectionStatus, cx as SumsubKycDataSchema, bO as SumsubReviewDecision, cm as SumsubStepStatus, cw as SumsubVideoCallData, b_ as SumsubWebhookInternalStatus, bp as SynapsProvider, $ as SynapsSessionErrorResponse, T as SynapsSessionEvent, X as SynapsSessionRequest, a0 as SynapsSessionResponse, a3 as SynapsStepErrorResponse, U as SynapsStepEvent, a1 as SynapsStepRequest, a4 as SynapsStepResponse, dV as TRMLabsAddressesScreening, dR as TRMLabsAddressesScreeningApiRequest, dW as TRMLabsAddressesScreeningResponse, b1 as TRMLabsConfig, bh as TRMLabsProvider, dU as TRMLabsRiskScoreToScorechainRiskMapping, dS as TRM_RISK_SCORE_LEVEL, dT as TRM_RISK_SCORE_LEVEL_LABEL, by as ToggleProviderInput, dn as TopographRegistryDocumentMetaData, Z as UNKNOWN_ERROR, du as UpdateKybSessionOutput, cZ as UpdateKycSessionOutput, bw as UpdateProviderInput, bx as UpdateProviderResponse, aA as UpdateSearchEntitiesInput, az as UpdateSearchInput, cb as UploadDocumentRequest, ek as VERIFF_DECISION_CODES, ei as VERIFF_DECISION_STATUSES, em as VeriffCreateSessionRequest, en as VeriffCreateSessionResponse, el as VeriffDecisionCode, ej as VeriffDecisionStatus, ey as VeriffDecisionWebhook, ew as VeriffDocument, ex as VeriffEventWebhook, ev as VeriffPerson, eo as VeriffWatchlistCheckType, et as VeriffWatchlistHit, er as VeriffWatchlistListingEntry, es as VeriffWatchlistListingsByCategory, ep as VeriffWatchlistMatchStatus, eq as VeriffWatchlistSearchTerm, eu as VeriffWatchlistWebhook, c_ as VideoKycMetaData, bB as WEBHOOK_TYPES, q as WebhookPayload, bC as WebhookType, b4 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, ag as mappingMatchTypeToLabel, V as typeToHumanReadable } from '../../dist/veriff-webhook.schema-2ff6c2ec.esm.mjs';
|
|
1
|
+
export { gN as ANALYSIS_TYPES, gO as AnalysisType, gW as Coin, g$ as EntityRiskDefaultsMap, g_ as EntityRiskDefaultsValues, h5 as GetActiveBlockchains, h4 as GetActiveBlockchainsRequest, h6 as GetActiveBlockchainsResponse, ha as GetAddressAnalysis, h7 as GetAddressAnalysisRequest, hc as GetAddressAnalysisResponse, hb as GetTransactionAnalysis, h8 as GetTransactionAnalysisRequest, hd as GetTransactionAnalysisResponse, gS as NonMinimalScorechainBlockchain, gP as OBJECT_TYPES, gQ as ObjectType, hf as RawScorechainResult, gZ as RiskExplanation, gX as RiskSeverity, h2 as ScorechainAnalysis, gR as ScorechainBlockchain, gT as ScorechainBlockchainToNamespace, h9 as ScorechainEntity, gY as ScorechainEntityType, h1 as ScorechainError, h0 as ScorechainErrorResponse, hg as ScorechainRiskToRiskLevel, hj as ScorechainTransactionRiskLevel, hi as ScorechainWalletRiskLevel, hh as ScorechainWalletRiskLevels, he as ScoringAnalysisApiRequest, gI as ScoringAnalysisRequest, h3 as ScoringAnalysisResponse, gJ as WorkflowsScoringAnalysisRequest, gV as compareRiskLevels, gU as getRiskLevelByRiskScore } from '../../dist/vault.schema-ac945548.esm.mjs';
|
|
2
|
+
export { O as AMLMetadata, cT as APPLICANT_CHECK_STATUSES, d8 as ApiErrorCommandResponse, d7 as ApiErrorResponse, d9 as ApiSuccessCommandResponse, cU as ApplicantCheckStatus, cF as ApplicantImages, bD as ApplicantMemberOfSchema, d$ as AuthToken, e0 as AuthTokenError, d_ as AuthTokenRequest, e1 as AuthTokenResponse, bU as BENEFICIARY_TYPES, bF as BaseApplicantActionSchema, ba as BaseProvider, dm as BeneficiaryAttestationDocumentMetaData, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, dp as BeneficiaryVerificationStatus, dq as BeneficiaryVerificationStatusArray, j as BigCSErrorCodes, b5 as BigConfig, B as BigCryptoChain, h as BigProperties, g as BigPropertiesLiteral, i as BigProperty, bd as BigProvider, k as BitRankRequest, l as BitRankVerified, n as BitRankVerifiedError, m as BitRankVerifiedErrorResponse, o as BitRankVerifiedResponse, dj as COMPANY_DOCUMENT_STATUS, aq as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, ao as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, ah as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ae as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dJ as ChainalysisApiError, b0 as ChainalysisConfig, dH as ChainalysisErrorCodes, bg as ChainalysisProvider, dF as ChainalysisRegisterApiResponse, dK as ChainalysisRegisterResponse, dE as ChainalysisRequest, dI as ChainalysisRiskAssessmentApiResponse, dL as ChainalysisRiskAssessmentResponse, dG as ChainalysisRiskLevel, a5 as CoerceDateUTC, dP as CoinMarketCapApiResponse, dQ as CoinMarketCapFiatId, dN as CoinMarketCapQuote, dO as CoinMarketCapQuotes, dM as CoinMarketCapRequest, dl as CompanyDocumentMetaData, dk as CompanyDocumentStatus, aI as ComplyAdvantageAmlFullListing, aH as ComplyAdvantageAmlItemSource, ar as ComplyAdvantageCountryFieldSources, at as ComplyAdvantageDateOfBirthFieldSources, aG as ComplyAdvantageKeyInformation, aD as ComplyAdvantageMedia, aS as ComplyAdvantageMonitorSearchDataResponse, aU as ComplyAdvantageMonitorSearchResponse, aT as ComplyAdvantageMonitorSearchSuccessResponse, aV as ComplyAdvantageMonitoredSearchUpdate, ap as ComplyAdvantageNationalityFieldSources, bo as ComplyAdvantageProvider, bn as ComplyAdvantageProviderConfigElement, bm as ComplyAdvantageProviderConfigFilters, bl as ComplyAdvantageProviderConfigTypes, ai as ComplyAdvantageReponseMatchStatus, af as ComplyAdvantageResponseMatchType, aF as ComplyAdvantageSearchDataResponse, aE as ComplyAdvantageSearchDataResponseHit, aJ as ComplyAdvantageSearchEntitiesDataResponse, aL as ComplyAdvantageSearchEntitiesResponse, aK as ComplyAdvantageSearchEntitiesSuccessResponse, a as ComplyAdvantageSearchErrorResponse, aM as ComplyAdvantageSearchRequest, aN as ComplyAdvantageSearchRequests, C as ComplyAdvantageSearchResponse, b as ComplyAdvantageSearchSuccessResponse, aP as ComplyAdvantageUpdateSearchEntitiesRequest, aR as ComplyAdvantageUpdateSearchEntitiesResponse, aQ as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, aO as ComplyAdvantageUpdateSearchRequest, aB as ComplyAdvantageUser, bu as CreateProviderInput, bv as CreateProviderResponse, au as CreateSearchInput, d3 as CredentialMetadata, b2 as CrystalIntelligenceConfig, bi as CrystalIntelligenceProvider, dX as CrystalWalletScreeningApiRequest, dY as CrystalWalletScreeningResponse, d2 as CustomerContactInformationOutput, dv as CustomerDocumentMetaData, dw as CustomerStatusResults, a_ as DataProvider, aZ as DataProviderOptions, bz as DeleteProviderInput, bA as DeleteProviderResponse, z as DocumentIdMetadata, y as DocumentIdType, D as DocumentIdTypes, cr as DocumentMetadataSchema, cs as DocumentSubmitResponse, K as EmailMetadata, E as EmailVerificationAnalysisResponse, cR as EmailVerificationResponse, F as File, d1 as GetCredentialsOutput, ds as GetKybSessionInput, dt as GetKybSessionResponse, cX as GetKycSessionInput, cY as GetKycSessionResponse, d4 as GetKycSessionResponseWithCredentialsMetadata, da as GetKycSessionsOutput, bt as GetProviderResponse, bs as GetProvidersResponse, ac as HIGH_RISK_TYPES, d5 as IDImageMetaData, bS as INDIVIDUAL_BENEFICIARY_RELATIONS, aY as IdentityProvider, aX as IdentityProviderOptions, bT as IndividualBeneficiaryRelation, c as IpQualityAnalysisRequest, d as IpQualityAnalysisResponse, b6 as IpQualityConfig, e as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, f as IpQualityServiceErrorResponse, bk as IpqualityscoreProvider, df as KYB_RESULTS, dh as KYB_SESSION_STATUSES, dd as KYB_STEP_TYPES, c6 as KYC_DOC_SIDES, db as KYC_PROVIDER_NAMES, cN as KYC_RESULTS, cP as KYC_SESSION_STATUSES, cJ as KYC_STEP_TYPES, dg as KybResult, di as KybSessionStatus, de as KybStep, c7 as KycDocSide, dc as KycProviderName, cO as KycResult, cQ as KycSessionStatus, cK as KycStep, cM as KycStepStatus, cL as KycStepStatuses, e5 as LegalPersonNameIdentifierType, L as LivenessMetadata, ad as MEDIUM_RISK_TYPES, aw as MatchStatus, av as MatchStatuses, aC as MatchTypeDetail, M as MergedProviders, dC as MerkleAddressApiError, dB as MerkleAddressApiResponse, dA as MerkleAddressRequest, dD as MerkleAddressResponse, dz as MerkleBlockChainCodes, dy as MerkleBlockChainName, dx as MerkleBlockChainTypes, a$ as MerkleScienceConfig, bf as MerkleScienceProvider, e7 as NOTABENE_TX_CREATE_STATUS, e3 as NameIdentifierType, e4 as NationalIdentifierType, r as NestedSession, bc as NexeraIdKYBProvider, bb as NexeraIdSSIDProvider, e2 as NotabeneAssetResponse, dZ as NotabeneAudience, b7 as NotabeneConfig, e9 as NotabeneErrorCode, ed as NotabeneJurisdictionsCondition, ec as NotabeneJurisdictionsRequest, ef as NotabeneJurisdictionsResponse, ee as NotabeneJurisdictionsUnitaryResponse, bj as NotabeneProvider, ea as NotabeneTxCreateError, e6 as NotabeneTxCreateRequest, e8 as NotabeneTxCreateResponse, N as NotabeneTxCreateStatus, eb as NotabeneTxValidateFullResponse, eg as NotabeneWebhookPayload, eh as NotabeneWebhookSchema, J as PhoneMetadata, P as PhoneVerificationAnalysisResponse, G as ProofOfAddressDocumentType, A as ProofOfAddressDocumentTypes, H as ProofOfAddressMetadata, d0 as ProofOfResidenceDocumentType, c$ as ProofOfResidenceMetaData, bq as ProviderData, br as ProviderDataProject, b9 as ProviderIntegrationType, b8 as ProviderIntegrationTypeOptions, aW as ProviderWithoutConfig, _ as RESULT_PARSER_ERROR, x as ReasonCode, w as ReasonCodes, R as RequestProperty, ay as RiskLevel, ax as RiskLevels, aa as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, a8 as SEARCH_FILTER_PEP_TYPE, a6 as SEARCH_FILTER_SANCTION_TYPE, aj as SEARCH_FILTER_TYPES, Y as SESSION_NOT_FOUND, a2 as STEP_NOT_FOUND, bI as SUMSUB_APPLICANT_TYPES, ck as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c2 as SUMSUB_DOC_TYPES_ARRAY, c8 as SUMSUB_FLOW_LEVEL, cA as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c4 as SUMSUB_KYC_DOC_TYPES, cp as SUMSUB_MEDIA_CONTENT_TYPES, bK as SUMSUB_REVIEW_ANSWERS, cG as SUMSUB_REVIEW_REJECT_LABELS, cI as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bM as SUMSUB_REVIEW_REJECT_TYPES, b$ as SUMSUB_REVIEW_STATUSES, bG as SUMSUB_STEPS, bZ as SUMSUB_WEBHOOK_INTERNAL_STATUS, b3 as ScorechainConfig, be as ScorechainProvider, am as SearchEntityType, al as SearchEntityTypes, ab as SearchFilterAdverseMediaType, a9 as SearchFilterPepType, a7 as SearchFilterSanctionType, ak as SearchFilterType, an as SearchFilters, dr as SelectKybSession, cV as SelectKycSession, cS as SelectKycSessionStep, cW as SelectKycSessionWithCompletedSteps, d6 as SelfieImageMetaData, s as Session, t as SessionWithoutSteps, p as Status, S as Statuses, Q as Step, v as StepType, u as StepTypes, bQ as SumSubAddress, bR as SumSubApplicantInfo, cu as SumSubApplicantResetSchema, ct as SumSubApplicantReviewStatusSchema, cz as SumSubApplicantSchema, bJ as SumSubApplicantType, co as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ci as SumSubCompanyApplicantSchema, c3 as SumSubDocType, c9 as SumSubFlowLevel, cv as SumSubGenerateExternalWebSdkLinkSchema, cj as SumSubImageId, cd as SumSubImageReviewResultSchema, ce as SumSubImageStatus, ch as SumSubIndividualApplicantSchema, c5 as SumSubKycDocType, cq as SumSubMediaContentType, ca as SumSubRequiredIdDoc, bL as SumSubReviewAnswer, cH as SumSubReviewRejectLabel, bN as SumSubReviewRejectType, cc as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cE as SumSubSimilarApplicantsSchema, bH as SumSubStep, cn as SumSubVerificationStepSchema, bE as SumSubWebhookSchema, cg as SumsubApplicantType, cf as SumsubApplicantTypes, cl as SumsubCompanyBeneficiaryGroup, bP as SumsubCountryCode, cy as SumsubKybDataSchema, cD as SumsubKybSessionFlowSection, cC as SumsubKybSessionFlowSectionItem, cB as SumsubKybSessionFlowSectionStatus, cx as SumsubKycDataSchema, bO as SumsubReviewDecision, cm as SumsubStepStatus, cw as SumsubVideoCallData, b_ as SumsubWebhookInternalStatus, bp as SynapsProvider, $ as SynapsSessionErrorResponse, T as SynapsSessionEvent, X as SynapsSessionRequest, a0 as SynapsSessionResponse, a3 as SynapsStepErrorResponse, U as SynapsStepEvent, a1 as SynapsStepRequest, a4 as SynapsStepResponse, dV as TRMLabsAddressesScreening, dR as TRMLabsAddressesScreeningApiRequest, dW as TRMLabsAddressesScreeningResponse, b1 as TRMLabsConfig, bh as TRMLabsProvider, dU as TRMLabsRiskScoreToScorechainRiskMapping, dS as TRM_RISK_SCORE_LEVEL, dT as TRM_RISK_SCORE_LEVEL_LABEL, by as ToggleProviderInput, dn as TopographRegistryDocumentMetaData, Z as UNKNOWN_ERROR, du as UpdateKybSessionOutput, cZ as UpdateKycSessionOutput, bw as UpdateProviderInput, bx as UpdateProviderResponse, aA as UpdateSearchEntitiesInput, az as UpdateSearchInput, cb as UploadDocumentRequest, ek as VERIFF_DECISION_CODES, ei as VERIFF_DECISION_STATUSES, em as VeriffCreateSessionRequest, en as VeriffCreateSessionResponse, el as VeriffDecisionCode, ej as VeriffDecisionStatus, ey as VeriffDecisionWebhook, ew as VeriffDocument, ex as VeriffEventWebhook, ev as VeriffPerson, eo as VeriffWatchlistCheckType, et as VeriffWatchlistHit, er as VeriffWatchlistListingEntry, es as VeriffWatchlistListingsByCategory, ep as VeriffWatchlistMatchStatus, eq as VeriffWatchlistSearchTerm, eu as VeriffWatchlistWebhook, c_ as VideoKycMetaData, bB as WEBHOOK_TYPES, q as WebhookPayload, bC as WebhookType, b4 as WorkflowsScorechainConfig, W as WrappedIpQualityServiceErrorResponse, ag as mappingMatchTypeToLabel, V as typeToHumanReadable } from '../../dist/veriff-webhook.schema-01b55f80.esm.mjs';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'nanoid';
|
|
5
5
|
import 'decimal.js';
|
|
6
|
-
import '../../dist/identity-api.schema-
|
|
6
|
+
import '../../dist/identity-api.schema-235de44b.esm.mjs';
|
|
7
7
|
import 'crypto';
|
|
8
8
|
|
|
9
9
|
var ALL_SCORECHAIN_BLOCKCHAIN = [{
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var crypto = require('crypto');
|
|
6
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
7
|
-
var toArray = require('../../dist/toArray-
|
|
6
|
+
var vault_schema = require('../../dist/vault.schema-fc13f09a.cjs.dev.cjs');
|
|
7
|
+
var toArray = require('../../dist/toArray-72daad14.cjs.dev.cjs');
|
|
8
8
|
var z = require('zod');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
require('decimal.js');
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var crypto = require('crypto');
|
|
6
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
7
|
-
var toArray = require('../../dist/toArray-
|
|
6
|
+
var vault_schema = require('../../dist/vault.schema-f25c0d9b.cjs.prod.cjs');
|
|
7
|
+
var toArray = require('../../dist/toArray-bf51f0a4.cjs.prod.cjs');
|
|
8
8
|
var z = require('zod');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
require('decimal.js');
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { createHash } from 'crypto';
|
|
2
|
-
import {
|
|
3
|
-
export {
|
|
4
|
-
import { _ as _toArray } from '../../dist/toArray-
|
|
2
|
+
import { gG as _unsupportedIterableToArray, gA as Web3ArgsType, gH as _slicedToArray, gF as _toConsumableArray } from '../../dist/vault.schema-ac945548.esm.mjs';
|
|
3
|
+
export { gd as AmlResults, gi as DataLinkTypeZodSchema, gg as DataLinkVersionZodSchema, ge as DetectedDuplicates, gt as GenericVaultDataLinkZodSchema, gs as GenericVaultEmbeddedLinkZodSchema, gq as GenericVaultPointerLinkZodSchema, gr as GenericVaultSearchLinkZodSchema, gu as TimeFrameCounters, gj as VaultJsonSchemas, gp as VaultMetadataLinkZodSchema, gn as VaultPointerKeyMapZodSchema, go as VaultQueryMapZodSchema, gl as VaultSchemaIdZodSchema, gm as VaultSchemaPathsZodSchema, gk as VaultZodSchema, gh as allDataLinkTypes, gf as allDataLinkVersions } from '../../dist/vault.schema-ac945548.esm.mjs';
|
|
4
|
+
import { _ as _toArray } from '../../dist/toArray-04d6373a.esm.mjs';
|
|
5
5
|
import { z } from 'zod';
|
|
6
6
|
import 'nanoid';
|
|
7
7
|
import 'decimal.js';
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
6
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
7
|
-
var tfheUtilities = require('../../dist/tfhe-utilities-
|
|
5
|
+
var vault_schema = require('../../dist/vault.schema-fc13f09a.cjs.dev.cjs');
|
|
6
|
+
var identityApi_schema = require('../../dist/identity-api.schema-ba410353.cjs.dev.cjs');
|
|
7
|
+
var tfheUtilities = require('../../dist/tfhe-utilities-5bac62f1.cjs.dev.cjs');
|
|
8
8
|
require('zod');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
require('decimal.js');
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
6
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
7
|
-
var tfheUtilities = require('../../dist/tfhe-utilities-
|
|
5
|
+
var vault_schema = require('../../dist/vault.schema-f25c0d9b.cjs.prod.cjs');
|
|
6
|
+
var identityApi_schema = require('../../dist/identity-api.schema-1d6c48b0.cjs.prod.cjs');
|
|
7
|
+
var tfheUtilities = require('../../dist/tfhe-utilities-daf1c4fc.cjs.prod.cjs');
|
|
8
8
|
require('zod');
|
|
9
9
|
require('nanoid');
|
|
10
10
|
require('decimal.js');
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export { b5 as Alpha2Country,
|
|
2
|
-
export { cf as CredentialMediaType, ca as CredentialNames, c9 as CredentialSchemas, cd as CredentialType, C as CredentialTypes, cb as NexeraCredentialType, ce as VerifiableCredential, cc as getCredentialName } from '../../dist/identity-api.schema-
|
|
3
|
-
export { s as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from '../../dist/tfhe-utilities-
|
|
1
|
+
export { b5 as Alpha2Country, eJ as GenericVerifiableCredentialSchema, eP as ID3CredentialSchema, ev as ID3CredentialSubjectSchema, eM as IDImageCredentialSchema, eG as IDImageCredentialSubjectSchema, eL as IDInformationCredentialSchema, eF as IDInformationCredentialSubjectSchema, eK as IDInformationTfheCredentialSchema, eE as IDInformationTfheCredentialSubjectSchema, eQ as IDScanCredentialSchema, ew as IDScanCredentialSubjectSchema, eR as IDScanPassportCredentialSchema, ex as IDScanPassportCredentialSubjectSchema, eS as IDScanSelfieCredentialSchema, ey as IDScanSelfieCredentialSubjectSchema, b3 as ISO3CountryCode, eX as OLD_AMLScreeningsResultsCredentialSchema, eD as OLD_AMLScreeningsResultsCredentialSubjectSchema, eT as OLD_IDImageCredentialSchema, ez as OLD_IDImageCredentialSubjectSchema, eU as OLD_IDInformationCredentialSchema, eA as OLD_IDInformationCredentialSubjectSchema, eV as OLD_ProofOfResidenceCredentialSchema, eB as OLD_ProofOfResidenceCredentialSubjectSchema, eW as OLD_SelfieImageCredentialSchema, eC as OLD_SelfieImageCredentialSubjectSchema, eO as ProofOfResidenceCredentialSchema, eI as ProofOfResidenceCredentialSubjectSchema, eN as SelfieImageCredentialSchema, eH as SelfieImageCredentialSubjectSchema, b6 as countryISO3toISO2Mapping, b9 as isoCountriesNameFromISO2 } from '../../dist/vault.schema-ac945548.esm.mjs';
|
|
2
|
+
export { cf as CredentialMediaType, ca as CredentialNames, c9 as CredentialSchemas, cd as CredentialType, C as CredentialTypes, cb as NexeraCredentialType, ce as VerifiableCredential, cc as getCredentialName } from '../../dist/identity-api.schema-235de44b.esm.mjs';
|
|
3
|
+
export { s as IDInformationTfheCredentialSubjectCONFIG, V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation, b as getFieldConfig } from '../../dist/tfhe-utilities-1ca8cf1f.esm.mjs';
|
|
4
4
|
import 'zod';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
import 'decimal.js';
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var z = require('zod');
|
|
6
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
7
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
8
|
-
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-
|
|
9
|
-
var toArray = require('../../dist/toArray-
|
|
6
|
+
var vault_schema = require('../../dist/vault.schema-fc13f09a.cjs.dev.cjs');
|
|
7
|
+
var identityApi_schema = require('../../dist/identity-api.schema-ba410353.cjs.dev.cjs');
|
|
8
|
+
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-d8f5b0df.cjs.dev.cjs');
|
|
9
|
+
var toArray = require('../../dist/toArray-72daad14.cjs.dev.cjs');
|
|
10
10
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
11
11
|
require('nanoid');
|
|
12
12
|
require('decimal.js');
|
|
@@ -14,6 +14,21 @@ require('crypto');
|
|
|
14
14
|
|
|
15
15
|
var AlertStatuses = ["Open", "Under Investigation", "Pending", "Closed", "Escalated"];
|
|
16
16
|
var AlertStatus = z.z["enum"](AlertStatuses);
|
|
17
|
+
/**
|
|
18
|
+
* An alert still awaiting a decision — NOT only "Open".
|
|
19
|
+
*
|
|
20
|
+
* This lived in three places that drifted: the alert writer and the review
|
|
21
|
+
* detail page counted all three, while the review QUEUE counted "Open" alone.
|
|
22
|
+
* A reviewer moving an alert to "Under Investigation" — the Alerts UI working
|
|
23
|
+
* exactly as designed — therefore dropped the company out of the KYB review
|
|
24
|
+
* queue while every other surface still considered it open, so nothing ever
|
|
25
|
+
* put it back. No failure was required; it was permanent.
|
|
26
|
+
*
|
|
27
|
+
* Defined here, next to the statuses themselves, because both services need
|
|
28
|
+
* the same answer: apps/api writes and reads these alerts, apps/data-analytics
|
|
29
|
+
* lists them.
|
|
30
|
+
*/
|
|
31
|
+
var OPEN_ALERT_STATUSES = ["Open", "Under Investigation", "Pending"];
|
|
17
32
|
var AlertTypes = ["AML Screening", "IP Screening", "Email Screening", "KYC Drop-off", "Onchain Monitoring", "Fraud", "Transaction Monitoring", "Duplicate", "Individual Monitoring", /** Fires when a company is flipped to "To be reviewed"; auto-resolves on reviewer approve/reject. */
|
|
18
33
|
"Compliance Review Required"];
|
|
19
34
|
var AlertType = z.z["enum"](AlertTypes);
|
|
@@ -1102,6 +1117,7 @@ exports.MessageDataOut = MessageDataOut;
|
|
|
1102
1117
|
exports.MessageDataOutExtended = MessageDataOutExtended;
|
|
1103
1118
|
exports.NexeraSvixEnvironmentConfig = NexeraSvixEnvironmentConfig;
|
|
1104
1119
|
exports.NexeraWebhookEvents = NexeraWebhookEvents;
|
|
1120
|
+
exports.OPEN_ALERT_STATUSES = OPEN_ALERT_STATUSES;
|
|
1105
1121
|
exports.ResendWebhookInput = ResendWebhookInput;
|
|
1106
1122
|
exports.ScenarioWebhookPayloadSchema = ScenarioWebhookPayloadSchema;
|
|
1107
1123
|
exports.SendExampleMessageInput = SendExampleMessageInput;
|
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var z = require('zod');
|
|
6
|
-
var vault_schema = require('../../dist/vault.schema-
|
|
7
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
8
|
-
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-
|
|
9
|
-
var toArray = require('../../dist/toArray-
|
|
6
|
+
var vault_schema = require('../../dist/vault.schema-f25c0d9b.cjs.prod.cjs');
|
|
7
|
+
var identityApi_schema = require('../../dist/identity-api.schema-1d6c48b0.cjs.prod.cjs');
|
|
8
|
+
var veriffWebhook_schema = require('../../dist/veriff-webhook.schema-3a4e348a.cjs.prod.cjs');
|
|
9
|
+
var toArray = require('../../dist/toArray-bf51f0a4.cjs.prod.cjs');
|
|
10
10
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
11
11
|
require('nanoid');
|
|
12
12
|
require('decimal.js');
|
|
@@ -14,6 +14,21 @@ require('crypto');
|
|
|
14
14
|
|
|
15
15
|
var AlertStatuses = ["Open", "Under Investigation", "Pending", "Closed", "Escalated"];
|
|
16
16
|
var AlertStatus = z.z["enum"](AlertStatuses);
|
|
17
|
+
/**
|
|
18
|
+
* An alert still awaiting a decision — NOT only "Open".
|
|
19
|
+
*
|
|
20
|
+
* This lived in three places that drifted: the alert writer and the review
|
|
21
|
+
* detail page counted all three, while the review QUEUE counted "Open" alone.
|
|
22
|
+
* A reviewer moving an alert to "Under Investigation" — the Alerts UI working
|
|
23
|
+
* exactly as designed — therefore dropped the company out of the KYB review
|
|
24
|
+
* queue while every other surface still considered it open, so nothing ever
|
|
25
|
+
* put it back. No failure was required; it was permanent.
|
|
26
|
+
*
|
|
27
|
+
* Defined here, next to the statuses themselves, because both services need
|
|
28
|
+
* the same answer: apps/api writes and reads these alerts, apps/data-analytics
|
|
29
|
+
* lists them.
|
|
30
|
+
*/
|
|
31
|
+
var OPEN_ALERT_STATUSES = ["Open", "Under Investigation", "Pending"];
|
|
17
32
|
var AlertTypes = ["AML Screening", "IP Screening", "Email Screening", "KYC Drop-off", "Onchain Monitoring", "Fraud", "Transaction Monitoring", "Duplicate", "Individual Monitoring", /** Fires when a company is flipped to "To be reviewed"; auto-resolves on reviewer approve/reject. */
|
|
18
33
|
"Compliance Review Required"];
|
|
19
34
|
var AlertType = z.z["enum"](AlertTypes);
|
|
@@ -1102,6 +1117,7 @@ exports.MessageDataOut = MessageDataOut;
|
|
|
1102
1117
|
exports.MessageDataOutExtended = MessageDataOutExtended;
|
|
1103
1118
|
exports.NexeraSvixEnvironmentConfig = NexeraSvixEnvironmentConfig;
|
|
1104
1119
|
exports.NexeraWebhookEvents = NexeraWebhookEvents;
|
|
1120
|
+
exports.OPEN_ALERT_STATUSES = OPEN_ALERT_STATUSES;
|
|
1105
1121
|
exports.ResendWebhookInput = ResendWebhookInput;
|
|
1106
1122
|
exports.ScenarioWebhookPayloadSchema = ScenarioWebhookPayloadSchema;
|
|
1107
1123
|
exports.SendExampleMessageInput = SendExampleMessageInput;
|