@nexeraid/identity-schemas 2.98.0-dev → 2.100.0-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{CoinMarketCap.schema-f4085f83.cjs.dev.cjs → CoinMarketCap.schema-1f2b5ea7.cjs.dev.cjs} +1 -1
- package/dist/{CoinMarketCap.schema-f176b6e7.cjs.prod.cjs → CoinMarketCap.schema-deb194cc.cjs.prod.cjs} +1 -1
- package/dist/{CoinMarketCap.schema-6141ba93.esm.mjs → CoinMarketCap.schema-fa7abfc6.esm.mjs} +1 -1
- package/dist/declarations/src/identity/host-requests.schema.d.ts +10 -10
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +10 -10
- package/dist/declarations/src/identity/kyc.schema.d.ts +5 -5
- package/dist/declarations/src/identity/txAuthData.schema.d.ts +37 -9
- package/dist/declarations/src/identity/txAuthData.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/chainalysis/chainalysis.schema.d.ts +8 -8
- package/dist/declarations/src/webhooks/alert.webhooks.schema.d.ts +75 -19
- package/dist/declarations/src/webhooks/alert.webhooks.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/customer.webhooks.schema.d.ts +28 -28
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +2394 -1062
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts.map +1 -1
- package/dist/{identity-api.schema-7f88a50d.esm.mjs → identity-api.schema-7892c69f.esm.mjs} +7 -5
- package/dist/{identity-api.schema-e36b538f.cjs.dev.cjs → identity-api.schema-97ca9ce3.cjs.dev.cjs} +8 -4
- package/dist/{identity-api.schema-11bbb3f3.cjs.prod.cjs → identity-api.schema-ca68abcb.cjs.prod.cjs} +8 -4
- package/dist/nexeraid-identity-schemas.cjs.dev.cjs +4 -2
- package/dist/nexeraid-identity-schemas.cjs.prod.cjs +4 -2
- package/dist/nexeraid-identity-schemas.esm.mjs +3 -3
- package/dist/package.json +1 -1
- package/dist/{tfhe-utilities-3f572e70.esm.mjs → tfhe-utilities-dc49c4b4.esm.mjs} +1 -1
- package/dist/{tfhe-utilities-0c6a2490.cjs.prod.cjs → tfhe-utilities-ec9cd3dc.cjs.prod.cjs} +1 -1
- package/dist/{tfhe-utilities-bf816d6c.cjs.dev.cjs → tfhe-utilities-f9e640f3.cjs.dev.cjs} +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +3 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +3 -1
- package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +20 -10
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +20 -10
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +21 -12
|
@@ -4,8 +4,8 @@ Object.defineProperty(exports, '__esModule', { value: true });
|
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
6
|
var vault_schema = require('../../dist/vault.schema-cb19adc8.cjs.prod.cjs');
|
|
7
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
8
|
-
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-
|
|
7
|
+
var identityApi_schema = require('../../dist/identity-api.schema-ca68abcb.cjs.prod.cjs');
|
|
8
|
+
var CoinMarketCap_schema = require('../../dist/CoinMarketCap.schema-deb194cc.cjs.prod.cjs');
|
|
9
9
|
var zodToJsonSchema = require('zod-to-json-schema');
|
|
10
10
|
require('nanoid');
|
|
11
11
|
require('decimal.js');
|
|
@@ -37,19 +37,28 @@ var DuplicateData = zod.z.object({
|
|
|
37
37
|
duplicate: UserInfoForDuplicate
|
|
38
38
|
});
|
|
39
39
|
|
|
40
|
+
var WebhookTagOutputData = zod.z.object({
|
|
41
|
+
id: zod.z.string(),
|
|
42
|
+
title: zod.z.string(),
|
|
43
|
+
type: zod.z.string(),
|
|
44
|
+
createdAt: zod.z.coerce.date(),
|
|
45
|
+
updatedAt: zod.z.coerce.date().nullable()
|
|
46
|
+
});
|
|
40
47
|
var AlertWebhookPayload = zod.z.object({
|
|
41
|
-
id:
|
|
48
|
+
id: zod.z.string(),
|
|
42
49
|
severity: AlertSeverity,
|
|
43
|
-
category: AlertCategory,
|
|
44
|
-
type: AlertType,
|
|
45
50
|
status: AlertStatus,
|
|
46
|
-
customerId: vault_schema.UuidString,
|
|
47
51
|
externalCustomerId: vault_schema.ExternalCustomerId.nullish(),
|
|
48
|
-
|
|
52
|
+
customerId: vault_schema.UuidString,
|
|
53
|
+
scenarioAlertCount: zod.z.number().nullish(),
|
|
54
|
+
workflowName: zod.z.string().nullish(),
|
|
55
|
+
workflowId: vault_schema.WorkflowId.nullish(),
|
|
56
|
+
reason: zod.z.string().nullish(),
|
|
49
57
|
createdAt: zod.z.coerce.date(),
|
|
50
|
-
updatedAt: zod.z.coerce.date(),
|
|
51
|
-
|
|
52
|
-
|
|
58
|
+
updatedAt: zod.z.coerce.date().nullish(),
|
|
59
|
+
createdBy: zod.z.string(),
|
|
60
|
+
updatedBy: zod.z.string().nullish(),
|
|
61
|
+
tags: zod.z.array(WebhookTagOutputData)
|
|
53
62
|
});
|
|
54
63
|
|
|
55
64
|
var CustomerWebhookPayload = zod.z.object({
|
|
@@ -765,3 +774,4 @@ exports.WebhookEventTypes = WebhookEventTypes;
|
|
|
765
774
|
exports.WebhookEventTypesForm = WebhookEventTypesForm;
|
|
766
775
|
exports.WebhookScenariosEventPayload = WebhookScenariosEventPayload;
|
|
767
776
|
exports.WebhookTMSEventPayload = WebhookTMSEventPayload;
|
|
777
|
+
exports.WebhookTagOutputData = WebhookTagOutputData;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { aS as UuidString, d5 as ExternalCustomerId, ba as RiskScoreType, bc as CustomerType, bi as CustomerOnboardingLevel, bk as CustomerStatus, a_ as ISO3CountryCode, ar as BlockchainAddress, dq as GenericVerifiableCredentialSchema, ev as WalletScreeningData, dJ as TransactionTypes, dP as TransactionReviewStatuses, eA as _toArray, ez as _toConsumableArray, aR as EnvironmentSchema } from '../../dist/vault.schema-b3910f8d.esm.mjs';
|
|
3
|
-
import { Y as RuleResultStatus } from '../../dist/identity-api.schema-
|
|
4
|
-
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-
|
|
2
|
+
import { aS as UuidString, d5 as ExternalCustomerId, d3 as WorkflowId, ba as RiskScoreType, bc as CustomerType, bi as CustomerOnboardingLevel, bk as CustomerStatus, a_ as ISO3CountryCode, ar as BlockchainAddress, dq as GenericVerifiableCredentialSchema, ev as WalletScreeningData, dJ as TransactionTypes, dP as TransactionReviewStatuses, eA as _toArray, ez as _toConsumableArray, aR as EnvironmentSchema } from '../../dist/vault.schema-b3910f8d.esm.mjs';
|
|
3
|
+
import { Y as RuleResultStatus } from '../../dist/identity-api.schema-7892c69f.esm.mjs';
|
|
4
|
+
import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/CoinMarketCap.schema-fa7abfc6.esm.mjs';
|
|
5
5
|
import { zodToJsonSchema } from 'zod-to-json-schema';
|
|
6
6
|
import 'nanoid';
|
|
7
7
|
import 'decimal.js';
|
|
@@ -33,19 +33,28 @@ var DuplicateData = z.object({
|
|
|
33
33
|
duplicate: UserInfoForDuplicate
|
|
34
34
|
});
|
|
35
35
|
|
|
36
|
+
var WebhookTagOutputData = z.object({
|
|
37
|
+
id: z.string(),
|
|
38
|
+
title: z.string(),
|
|
39
|
+
type: z.string(),
|
|
40
|
+
createdAt: z.coerce.date(),
|
|
41
|
+
updatedAt: z.coerce.date().nullable()
|
|
42
|
+
});
|
|
36
43
|
var AlertWebhookPayload = z.object({
|
|
37
|
-
id:
|
|
44
|
+
id: z.string(),
|
|
38
45
|
severity: AlertSeverity,
|
|
39
|
-
category: AlertCategory,
|
|
40
|
-
type: AlertType,
|
|
41
46
|
status: AlertStatus,
|
|
42
|
-
customerId: UuidString,
|
|
43
47
|
externalCustomerId: ExternalCustomerId.nullish(),
|
|
44
|
-
|
|
48
|
+
customerId: UuidString,
|
|
49
|
+
scenarioAlertCount: z.number().nullish(),
|
|
50
|
+
workflowName: z.string().nullish(),
|
|
51
|
+
workflowId: WorkflowId.nullish(),
|
|
52
|
+
reason: z.string().nullish(),
|
|
45
53
|
createdAt: z.coerce.date(),
|
|
46
|
-
updatedAt: z.coerce.date(),
|
|
47
|
-
|
|
48
|
-
|
|
54
|
+
updatedAt: z.coerce.date().nullish(),
|
|
55
|
+
createdBy: z.string(),
|
|
56
|
+
updatedBy: z.string().nullish(),
|
|
57
|
+
tags: z.array(WebhookTagOutputData)
|
|
49
58
|
});
|
|
50
59
|
|
|
51
60
|
var CustomerWebhookPayload = z.object({
|
|
@@ -667,4 +676,4 @@ var NexeraWebhookEvents = [{
|
|
|
667
676
|
}
|
|
668
677
|
}];
|
|
669
678
|
|
|
670
|
-
export { ALERT_CHART_TYPES, ALERT_TABLE_COLUMNS, AlertCategories, AlertCategory, AlertChartType, AlertCreatedPayload, AlertDeletedPayload, AlertSeverities, AlertSeverity, AlertStatus, AlertStatuses, AlertTableColumn, AlertType, AlertTypes, AlertUpdatedPayload, AlertWebhookPayload, AllNexeraEventTypes, AttemptDataOut, AttemptsStatus, AttemptsStatusCode, AttemptsStatusCodes, AttemptsStatusKey, AttemptsStatusKeys, CUSTOMER_TOPICS, ConnectionHandlingWorkspaceInput, ConnectionHandlingWorkspaceOutput, CreateEndpointInput, CreateEndpointOutput, CustomerCreatedPayload, CustomerDeletedPayload, CustomerEvents, CustomerTopics, CustomerUpdatedPayload, CustomerWebhookPayload, DeleteEndpointInput, DeleteEndpointOutput, DuplicateData, EndpointCheckboxsCollapsiblesSchema, EndpointHandlingForm, EndpointOut, EventType, GetEndpointSecretInput, GetEndpointSecretOutput, GetMessagesInput, ListAttemptsByEndpointInput, ListAttemptsByMessageInput, ListAttemptsByMessageOutput, ListEndpointsInput, ListEventTypeOutput, ListMessagesInput, ListMessagesOutput, ListResponseEndpointOut, MessageDataOut, MessageDataOutExtended, NexeraSvixEnvironmentConfig, NexeraWebhookEvents, ResendWebhookInput, ScenarioWebhookPayloadSchema, SendExampleMessageInput, SendMessageForAlertCreatedInput, SendMessageForAlertDeletedInput, SendMessageForAlertUpdatedInput, SendMessageForCustomerCreatedInput, SendMessageForCustomerDeletedInput, SendMessageForCustomerUpdatedInput, SendMessageForSendScenarioInput, SendMessageForTMSCreatedInput, SendMessageForTMSDeletedInput, SendMessageForTMSUpdatedInput, SendScenarioPayload, TMSCreatedPayload, TMSDeletedPayload, TMSUpdatedPayload, TMSWebhookPayload, UpdateEndpointInput, UpdateEndpointOutput, UserInfoForDuplicate, VerificationFlowChecksWebhookPayload, VerificationFlowResult, VerificationFlowResultBitRank, VerificationFlowResultChainalysis, VerificationFlowResultIpQualityScore, VerificationFlowResultMerkleScience, VerificationFlowResultScoreChain, WebhookAlertEventPayload, WebhookCheckboxInformation, WebhookCustomerEventPayload, WebhookEventPayload, WebhookEventType, WebhookEventTypeForm, WebhookEventTypes, WebhookEventTypesForm, WebhookScenariosEventPayload, WebhookTMSEventPayload };
|
|
679
|
+
export { ALERT_CHART_TYPES, ALERT_TABLE_COLUMNS, AlertCategories, AlertCategory, AlertChartType, AlertCreatedPayload, AlertDeletedPayload, AlertSeverities, AlertSeverity, AlertStatus, AlertStatuses, AlertTableColumn, AlertType, AlertTypes, AlertUpdatedPayload, AlertWebhookPayload, AllNexeraEventTypes, AttemptDataOut, AttemptsStatus, AttemptsStatusCode, AttemptsStatusCodes, AttemptsStatusKey, AttemptsStatusKeys, CUSTOMER_TOPICS, ConnectionHandlingWorkspaceInput, ConnectionHandlingWorkspaceOutput, CreateEndpointInput, CreateEndpointOutput, CustomerCreatedPayload, CustomerDeletedPayload, CustomerEvents, CustomerTopics, CustomerUpdatedPayload, CustomerWebhookPayload, DeleteEndpointInput, DeleteEndpointOutput, DuplicateData, EndpointCheckboxsCollapsiblesSchema, EndpointHandlingForm, EndpointOut, EventType, GetEndpointSecretInput, GetEndpointSecretOutput, GetMessagesInput, ListAttemptsByEndpointInput, ListAttemptsByMessageInput, ListAttemptsByMessageOutput, ListEndpointsInput, ListEventTypeOutput, ListMessagesInput, ListMessagesOutput, ListResponseEndpointOut, MessageDataOut, MessageDataOutExtended, NexeraSvixEnvironmentConfig, NexeraWebhookEvents, ResendWebhookInput, ScenarioWebhookPayloadSchema, SendExampleMessageInput, SendMessageForAlertCreatedInput, SendMessageForAlertDeletedInput, SendMessageForAlertUpdatedInput, SendMessageForCustomerCreatedInput, SendMessageForCustomerDeletedInput, SendMessageForCustomerUpdatedInput, SendMessageForSendScenarioInput, SendMessageForTMSCreatedInput, SendMessageForTMSDeletedInput, SendMessageForTMSUpdatedInput, SendScenarioPayload, TMSCreatedPayload, TMSDeletedPayload, TMSUpdatedPayload, TMSWebhookPayload, UpdateEndpointInput, UpdateEndpointOutput, UserInfoForDuplicate, VerificationFlowChecksWebhookPayload, VerificationFlowResult, VerificationFlowResultBitRank, VerificationFlowResultChainalysis, VerificationFlowResultIpQualityScore, VerificationFlowResultMerkleScience, VerificationFlowResultScoreChain, WebhookAlertEventPayload, WebhookCheckboxInformation, WebhookCustomerEventPayload, WebhookEventPayload, WebhookEventType, WebhookEventTypeForm, WebhookEventTypes, WebhookEventTypesForm, WebhookScenariosEventPayload, WebhookTMSEventPayload, WebhookTagOutputData };
|