@nexeraid/identity-schemas 2.201.0 → 2.202.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.
Files changed (39) hide show
  1. package/dist/declarations/src/providers/notabene/notabene.schema.d.ts +1833 -0
  2. package/dist/declarations/src/providers/notabene/notabene.schema.d.ts.map +1 -1
  3. package/dist/declarations/src/transaction.schema.d.ts +3 -3
  4. package/dist/declarations/src/transaction.schema.d.ts.map +1 -1
  5. package/dist/{identity-api.schema-301dab8d.cjs.prod.cjs → identity-api.schema-3abb32fd.cjs.prod.cjs} +1 -1
  6. package/dist/{identity-api.schema-60fe9ffa.cjs.dev.cjs → identity-api.schema-9be2e0d8.cjs.dev.cjs} +1 -1
  7. package/dist/{identity-api.schema-66f67cc6.esm.mjs → identity-api.schema-b4108710.esm.mjs} +1 -1
  8. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +5 -5
  9. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +5 -5
  10. package/dist/nexeraid-identity-schemas.esm.mjs +7 -7
  11. package/dist/{notabene.schema-30a4da34.esm.mjs → notabene.schema-27fadf55.esm.mjs} +64 -5
  12. package/dist/{notabene.schema-91148657.cjs.prod.cjs → notabene.schema-3b5d2b65.cjs.prod.cjs} +66 -4
  13. package/dist/{notabene.schema-b6fba65e.cjs.dev.cjs → notabene.schema-5ad52f81.cjs.dev.cjs} +66 -4
  14. package/dist/package.json +1 -1
  15. package/dist/{tfhe-utilities-52c27cad.cjs.dev.cjs → tfhe-utilities-27a28149.cjs.dev.cjs} +2 -2
  16. package/dist/{tfhe-utilities-0d98bbf6.cjs.prod.cjs → tfhe-utilities-37fada6d.cjs.prod.cjs} +2 -2
  17. package/dist/{tfhe-utilities-b33cee57.esm.mjs → tfhe-utilities-50874d8c.esm.mjs} +2 -2
  18. package/dist/{toArray-ff66b745.esm.mjs → toArray-4a50f8ab.esm.mjs} +1 -1
  19. package/dist/{toArray-176387e0.cjs.dev.cjs → toArray-b9b159c5.cjs.dev.cjs} +1 -1
  20. package/dist/{toArray-31b05fee.cjs.prod.cjs → toArray-ca25b89e.cjs.prod.cjs} +1 -1
  21. package/dist/{vault.schema-61295866.cjs.dev.cjs → vault.schema-b0373ae1.cjs.prod.cjs} +1 -1
  22. package/dist/{vault.schema-e1fd846a.esm.mjs → vault.schema-d9c69eab.esm.mjs} +1 -1
  23. package/dist/{vault.schema-ee3851a0.cjs.prod.cjs → vault.schema-fba01def.cjs.dev.cjs} +1 -1
  24. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +2 -2
  25. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +2 -2
  26. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +2 -2
  27. package/package.json +2 -2
  28. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +6 -3
  29. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +6 -3
  30. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +3 -3
  31. package/vault/dist/nexeraid-identity-schemas-vault.cjs.dev.cjs +2 -2
  32. package/vault/dist/nexeraid-identity-schemas-vault.cjs.prod.cjs +2 -2
  33. package/vault/dist/nexeraid-identity-schemas-vault.esm.mjs +3 -3
  34. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +3 -3
  35. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +3 -3
  36. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +3 -3
  37. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +4 -4
  38. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +4 -4
  39. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +4 -4
@@ -1,8 +1,8 @@
1
1
  'use strict';
2
2
 
3
3
  var z = require('zod');
4
- var vault_schema = require('./vault.schema-61295866.cjs.dev.cjs');
5
- var identityApi_schema = require('./identity-api.schema-60fe9ffa.cjs.dev.cjs');
4
+ var vault_schema = require('./vault.schema-fba01def.cjs.dev.cjs');
5
+ var identityApi_schema = require('./identity-api.schema-9be2e0d8.cjs.dev.cjs');
6
6
 
7
7
  function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
8
8
 
@@ -3044,8 +3044,8 @@ var NotabeneTxCreateRequest = z.z.object({
3044
3044
  onBehalfOfMyself: z.z["boolean"]().optional(),
3045
3045
  blockchainTransactionTimestamp: z.z.coerce.date().optional()
3046
3046
  });
3047
- var TX_CREATE_STATUS = ["SAVED", "MISSING_BENEFICIARY_DATA", "NEW", "WAITING_FOR_INFORMATION", "SENT", "REJECTED", "DECLINED", "ACK", "CANCELLED", "INCOMPLETE", "ACCEPTED", "NOT_READY"];
3048
- var NotabeneTxCreateStatus = z.z["enum"](TX_CREATE_STATUS);
3047
+ var NOTABENE_TX_CREATE_STATUS = ["SAVED", "MISSING_BENEFICIARY_DATA", "NEW", "WAITING_FOR_INFORMATION", "SENT", "REJECTED", "DECLINED", "ACK", "CANCELLED", "INCOMPLETE", "ACCEPTED", "NOT_READY"];
3048
+ var NotabeneTxCreateStatus = z.z["enum"](NOTABENE_TX_CREATE_STATUS);
3049
3049
  var TRANSACTION_TYPE = ["BELOW_THRESHOLD", "NON_CUSTODIAL", "TRAVELRULE", "UNKNOWN"];
3050
3050
  var TransactionType = z.z["enum"](TRANSACTION_TYPE);
3051
3051
  var NotabeneTxCreateResponse = z.z.object({
@@ -3165,6 +3165,65 @@ var NotabeneJurisdictionsUnitaryResponse = z.z.object({
3165
3165
  jurisdictionNotabenePage: z.z.string().optional()
3166
3166
  });
3167
3167
  var NotabeneJurisdictionsResponse = z.z.array(NotabeneJurisdictionsUnitaryResponse);
3168
+ var NotabeneWebhookPayload = z.z.object({
3169
+ message: z.z.string().nullish(),
3170
+ payload: z.z.object({
3171
+ transaction: z.z.object({
3172
+ amountInLocalCurrency: z.z.object({
3173
+ amountInLocalCurrency: z.z.number().nullish(),
3174
+ currency: z.z.string().nullish()
3175
+ }).nullish(),
3176
+ beneficiaryAmountInLocalCurrency: z.z.object({
3177
+ amountInLocalCurrency: z.z.number().nullish(),
3178
+ currency: z.z.string().nullish()
3179
+ }).nullish(),
3180
+ beneficiaryDid: commonDID.nullish(),
3181
+ beneficiaryProof: transactionPersonProofs.nullish(),
3182
+ beneficiaryVASPdid: commonDID.nullish(),
3183
+ chargedQuantity: z.z.number().nullish(),
3184
+ createdAt: z.z.coerce.date().nullish(),
3185
+ createdBy: z.z.string().nullish(),
3186
+ custom_asset_price: z.z.string().nullish(),
3187
+ id: z.z.string().nullish(),
3188
+ isTest: z.z["boolean"]().nullish(),
3189
+ ivms101Encrypted: z.z.string().nullish(),
3190
+ on_behalf_of_myself: z.z["boolean"]().nullish(),
3191
+ originatorDid: commonDID.nullish(),
3192
+ originatorProof: transactionPersonProofs.nullish(),
3193
+ originatorVASPdid: commonDID.nullish(),
3194
+ pii_url: z.z.string().nullish(),
3195
+ protocol: TravelRuleProtocol.nullish(),
3196
+ protocolData: z.z.object({
3197
+ trLightData: z.z.object({
3198
+ notificationEmails: z.z.array(z.z.string()).nullish()
3199
+ }).nullish()
3200
+ }).nullish(),
3201
+ showToBeneficiary: z.z["boolean"]().nullish(),
3202
+ status: NotabeneTxCreateStatus,
3203
+ tracked_billing: z.z["boolean"]().nullish(),
3204
+ transactionAmount: z.z.string().nullish(),
3205
+ transactionAsset: z.z.string().nullish(),
3206
+ transactionBlockchainInfo: z.z.object({
3207
+ destination: z.z.string().nullish(),
3208
+ txHash: z.z.string().nullish()
3209
+ }),
3210
+ transactionRef: z.z.string().nullish(),
3211
+ transactionType: TransactionType,
3212
+ updatedAt: z.z.coerce.date().nullish(),
3213
+ updatedBy: z.z.string().nullish()
3214
+ }).nullish()
3215
+ }),
3216
+ version: z.z.string().nullish()
3217
+ });
3218
+ var NotabeneWebhookSchema = z.z.object({
3219
+ correlationId: z.z.string().optional(),
3220
+ transactionRef: z.z.string(),
3221
+ transactionHash: z.z.string(),
3222
+ sandboxMode: z.z["boolean"]().nullish(),
3223
+ message: z.z.string(),
3224
+ updatePayload: NotabeneWebhookPayload.nullish(),
3225
+ status: NotabeneTxCreateStatus
3226
+ });
3168
3227
 
3169
3228
  exports.AMLMetadata = AMLMetadata;
3170
3229
  exports.APPLICANT_CHECK_STATUSES = APPLICANT_CHECK_STATUSES;
@@ -3332,6 +3391,7 @@ exports.MerkleBlockChainName = MerkleBlockChainName;
3332
3391
  exports.MerkleBlockChainTypes = MerkleBlockChainTypes;
3333
3392
  exports.MerkleScienceConfig = MerkleScienceConfig;
3334
3393
  exports.MerkleScienceProvider = MerkleScienceProvider;
3394
+ exports.NOTABENE_TX_CREATE_STATUS = NOTABENE_TX_CREATE_STATUS;
3335
3395
  exports.NameIdentifierType = NameIdentifierType;
3336
3396
  exports.NationalIdentifierType = NationalIdentifierType;
3337
3397
  exports.NestedSession = NestedSession;
@@ -3351,6 +3411,8 @@ exports.NotabeneTxCreateRequest = NotabeneTxCreateRequest;
3351
3411
  exports.NotabeneTxCreateResponse = NotabeneTxCreateResponse;
3352
3412
  exports.NotabeneTxCreateStatus = NotabeneTxCreateStatus;
3353
3413
  exports.NotabeneTxValidateFullResponse = NotabeneTxValidateFullResponse;
3414
+ exports.NotabeneWebhookPayload = NotabeneWebhookPayload;
3415
+ exports.NotabeneWebhookSchema = NotabeneWebhookSchema;
3354
3416
  exports.PhoneMetadata = PhoneMetadata;
3355
3417
  exports.PhoneVerificationAnalysisResponse = PhoneVerificationAnalysisResponse;
3356
3418
  exports.ProofOfAddressDocumentType = ProofOfAddressDocumentType;
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "2.201.0",
3
+ "version": "2.202.0",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var vault_schema = require('./vault.schema-61295866.cjs.dev.cjs');
4
- var identityApi_schema = require('./identity-api.schema-60fe9ffa.cjs.dev.cjs');
3
+ var vault_schema = require('./vault.schema-fba01def.cjs.dev.cjs');
4
+ var identityApi_schema = require('./identity-api.schema-9be2e0d8.cjs.dev.cjs');
5
5
 
6
6
  var VC_JSON_SCHEMA_MAP = {
7
7
  ProofOfResidence: {
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var vault_schema = require('./vault.schema-ee3851a0.cjs.prod.cjs');
4
- var identityApi_schema = require('./identity-api.schema-301dab8d.cjs.prod.cjs');
3
+ var vault_schema = require('./vault.schema-b0373ae1.cjs.prod.cjs');
4
+ var identityApi_schema = require('./identity-api.schema-3abb32fd.cjs.prod.cjs');
5
5
 
6
6
  var VC_JSON_SCHEMA_MAP = {
7
7
  ProofOfResidence: {
@@ -1,5 +1,5 @@
1
- import { f_ as _toConsumableArray } from './vault.schema-e1fd846a.esm.mjs';
2
- import { bl as SupportedQueryInputType, bc as NUMERIC_OPERATORS, b8 as ARRAY_OPERATORS, be as BOOLEAN_OPERATORS, ba as STRING_OPERATORS } from './identity-api.schema-66f67cc6.esm.mjs';
1
+ import { f_ as _toConsumableArray } from './vault.schema-d9c69eab.esm.mjs';
2
+ import { bl as SupportedQueryInputType, bc as NUMERIC_OPERATORS, b8 as ARRAY_OPERATORS, be as BOOLEAN_OPERATORS, ba as STRING_OPERATORS } from './identity-api.schema-b4108710.esm.mjs';
3
3
 
4
4
  var VC_JSON_SCHEMA_MAP = {
5
5
  ProofOfResidence: {
@@ -1,4 +1,4 @@
1
- import { g3 as _arrayWithHoles, g4 as _iterableToArray, f$ as _unsupportedIterableToArray, g5 as _nonIterableRest } from './vault.schema-e1fd846a.esm.mjs';
1
+ import { g3 as _arrayWithHoles, g4 as _iterableToArray, f$ as _unsupportedIterableToArray, g5 as _nonIterableRest } from './vault.schema-d9c69eab.esm.mjs';
2
2
 
3
3
  function _toArray(r) {
4
4
  return _arrayWithHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableRest();
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var vault_schema = require('./vault.schema-61295866.cjs.dev.cjs');
3
+ var vault_schema = require('./vault.schema-fba01def.cjs.dev.cjs');
4
4
 
5
5
  function _toArray(r) {
6
6
  return vault_schema._arrayWithHoles(r) || vault_schema._iterableToArray(r) || vault_schema._unsupportedIterableToArray(r) || vault_schema._nonIterableRest();
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var vault_schema = require('./vault.schema-ee3851a0.cjs.prod.cjs');
3
+ var vault_schema = require('./vault.schema-b0373ae1.cjs.prod.cjs');
4
4
 
5
5
  function _toArray(r) {
6
6
  return vault_schema._arrayWithHoles(r) || vault_schema._iterableToArray(r) || vault_schema._unsupportedIterableToArray(r) || vault_schema._nonIterableRest();
@@ -12490,7 +12490,7 @@ var TransactionDataEventObject = z.z.object({
12490
12490
  workflowName: z.z.string().optional(),
12491
12491
  workflowStep: z.z.string().optional(),
12492
12492
  sessionId: z.z.string(),
12493
- topic: z.z["enum"](["NEXERA_SSID_TRANSACTION_CREATED", "NEXERA_SSID_KYT_START", "NEXERA_SSID_KYT_RULE_FAILED", "NEXERA_SSID_KYT_RULE_SUCCESS", "NEXERA_SSID_KYT_RULE_SKIPPED", "NEXERA_SSID_KYT_AML"]),
12493
+ topic: z.z["enum"](["NEXERA_SSID_TRANSACTION_CREATED", "NEXERA_SSID_KYT_START", "NEXERA_SSID_KYT_RULE_FAILED", "NEXERA_SSID_KYT_RULE_SUCCESS", "NEXERA_SSID_KYT_RULE_SKIPPED", "NEXERA_SSID_KYT_AML", "NEXERA_SSID_NOTABENE_REQUEST"]),
12494
12494
  scenario: z.z.object({
12495
12495
  name: z.z.string().optional(),
12496
12496
  status: z.z.string().optional(),
@@ -12484,7 +12484,7 @@ var TransactionDataEventObject = z.object({
12484
12484
  workflowName: z.string().optional(),
12485
12485
  workflowStep: z.string().optional(),
12486
12486
  sessionId: z.string(),
12487
- topic: z["enum"](["NEXERA_SSID_TRANSACTION_CREATED", "NEXERA_SSID_KYT_START", "NEXERA_SSID_KYT_RULE_FAILED", "NEXERA_SSID_KYT_RULE_SUCCESS", "NEXERA_SSID_KYT_RULE_SKIPPED", "NEXERA_SSID_KYT_AML"]),
12487
+ topic: z["enum"](["NEXERA_SSID_TRANSACTION_CREATED", "NEXERA_SSID_KYT_START", "NEXERA_SSID_KYT_RULE_FAILED", "NEXERA_SSID_KYT_RULE_SUCCESS", "NEXERA_SSID_KYT_RULE_SKIPPED", "NEXERA_SSID_KYT_AML", "NEXERA_SSID_NOTABENE_REQUEST"]),
12488
12488
  scenario: z.object({
12489
12489
  name: z.string().optional(),
12490
12490
  status: z.string().optional(),
@@ -12490,7 +12490,7 @@ var TransactionDataEventObject = z.z.object({
12490
12490
  workflowName: z.z.string().optional(),
12491
12491
  workflowStep: z.z.string().optional(),
12492
12492
  sessionId: z.z.string(),
12493
- topic: z.z["enum"](["NEXERA_SSID_TRANSACTION_CREATED", "NEXERA_SSID_KYT_START", "NEXERA_SSID_KYT_RULE_FAILED", "NEXERA_SSID_KYT_RULE_SUCCESS", "NEXERA_SSID_KYT_RULE_SKIPPED", "NEXERA_SSID_KYT_AML"]),
12493
+ topic: z.z["enum"](["NEXERA_SSID_TRANSACTION_CREATED", "NEXERA_SSID_KYT_START", "NEXERA_SSID_KYT_RULE_FAILED", "NEXERA_SSID_KYT_RULE_SUCCESS", "NEXERA_SSID_KYT_RULE_SKIPPED", "NEXERA_SSID_KYT_AML", "NEXERA_SSID_NOTABENE_REQUEST"]),
12494
12494
  scenario: z.z.object({
12495
12495
  name: z.z.string().optional(),
12496
12496
  status: z.z.string().optional(),
@@ -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-60fe9ffa.cjs.dev.cjs');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-9be2e0d8.cjs.dev.cjs');
6
6
  require('zod');
7
- require('../../dist/vault.schema-61295866.cjs.dev.cjs');
7
+ require('../../dist/vault.schema-fba01def.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-301dab8d.cjs.prod.cjs');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-3abb32fd.cjs.prod.cjs');
6
6
  require('zod');
7
- require('../../dist/vault.schema-ee3851a0.cjs.prod.cjs');
7
+ require('../../dist/vault.schema-b0373ae1.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-66f67cc6.esm.mjs';
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-b4108710.esm.mjs';
2
2
  import 'zod';
3
- import '../../dist/vault.schema-e1fd846a.esm.mjs';
3
+ import '../../dist/vault.schema-d9c69eab.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.201.0",
3
+ "version": "2.202.0-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -67,7 +67,7 @@
67
67
  "remeda": "^2.22.6",
68
68
  "zod": "^3.25.55",
69
69
  "zod-to-json-schema": "^3.24.5",
70
- "@nexeraid/logger": "2.35.3"
70
+ "@nexeraid/logger": "2.35.3-dev"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@types/bun": "^1.2.15",
@@ -2,12 +2,12 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var vault_schema = require('../../dist/vault.schema-61295866.cjs.dev.cjs');
6
- var notabene_schema = require('../../dist/notabene.schema-b6fba65e.cjs.dev.cjs');
5
+ var vault_schema = require('../../dist/vault.schema-fba01def.cjs.dev.cjs');
6
+ var notabene_schema = require('../../dist/notabene.schema-5ad52f81.cjs.dev.cjs');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
  require('decimal.js');
10
- require('../../dist/identity-api.schema-60fe9ffa.cjs.dev.cjs');
10
+ require('../../dist/identity-api.schema-9be2e0d8.cjs.dev.cjs');
11
11
  require('crypto');
12
12
 
13
13
  var ALL_SCORECHAIN_BLOCKCHAIN = [{
@@ -11442,6 +11442,7 @@ exports.MerkleBlockChainName = notabene_schema.MerkleBlockChainName;
11442
11442
  exports.MerkleBlockChainTypes = notabene_schema.MerkleBlockChainTypes;
11443
11443
  exports.MerkleScienceConfig = notabene_schema.MerkleScienceConfig;
11444
11444
  exports.MerkleScienceProvider = notabene_schema.MerkleScienceProvider;
11445
+ exports.NOTABENE_TX_CREATE_STATUS = notabene_schema.NOTABENE_TX_CREATE_STATUS;
11445
11446
  exports.NameIdentifierType = notabene_schema.NameIdentifierType;
11446
11447
  exports.NationalIdentifierType = notabene_schema.NationalIdentifierType;
11447
11448
  exports.NestedSession = notabene_schema.NestedSession;
@@ -11461,6 +11462,8 @@ exports.NotabeneTxCreateRequest = notabene_schema.NotabeneTxCreateRequest;
11461
11462
  exports.NotabeneTxCreateResponse = notabene_schema.NotabeneTxCreateResponse;
11462
11463
  exports.NotabeneTxCreateStatus = notabene_schema.NotabeneTxCreateStatus;
11463
11464
  exports.NotabeneTxValidateFullResponse = notabene_schema.NotabeneTxValidateFullResponse;
11465
+ exports.NotabeneWebhookPayload = notabene_schema.NotabeneWebhookPayload;
11466
+ exports.NotabeneWebhookSchema = notabene_schema.NotabeneWebhookSchema;
11464
11467
  exports.PhoneMetadata = notabene_schema.PhoneMetadata;
11465
11468
  exports.PhoneVerificationAnalysisResponse = notabene_schema.PhoneVerificationAnalysisResponse;
11466
11469
  exports.ProofOfAddressDocumentType = notabene_schema.ProofOfAddressDocumentType;
@@ -2,12 +2,12 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var vault_schema = require('../../dist/vault.schema-ee3851a0.cjs.prod.cjs');
6
- var notabene_schema = require('../../dist/notabene.schema-91148657.cjs.prod.cjs');
5
+ var vault_schema = require('../../dist/vault.schema-b0373ae1.cjs.prod.cjs');
6
+ var notabene_schema = require('../../dist/notabene.schema-3b5d2b65.cjs.prod.cjs');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
  require('decimal.js');
10
- require('../../dist/identity-api.schema-301dab8d.cjs.prod.cjs');
10
+ require('../../dist/identity-api.schema-3abb32fd.cjs.prod.cjs');
11
11
  require('crypto');
12
12
 
13
13
  var ALL_SCORECHAIN_BLOCKCHAIN = [{
@@ -11442,6 +11442,7 @@ exports.MerkleBlockChainName = notabene_schema.MerkleBlockChainName;
11442
11442
  exports.MerkleBlockChainTypes = notabene_schema.MerkleBlockChainTypes;
11443
11443
  exports.MerkleScienceConfig = notabene_schema.MerkleScienceConfig;
11444
11444
  exports.MerkleScienceProvider = notabene_schema.MerkleScienceProvider;
11445
+ exports.NOTABENE_TX_CREATE_STATUS = notabene_schema.NOTABENE_TX_CREATE_STATUS;
11445
11446
  exports.NameIdentifierType = notabene_schema.NameIdentifierType;
11446
11447
  exports.NationalIdentifierType = notabene_schema.NationalIdentifierType;
11447
11448
  exports.NestedSession = notabene_schema.NestedSession;
@@ -11461,6 +11462,8 @@ exports.NotabeneTxCreateRequest = notabene_schema.NotabeneTxCreateRequest;
11461
11462
  exports.NotabeneTxCreateResponse = notabene_schema.NotabeneTxCreateResponse;
11462
11463
  exports.NotabeneTxCreateStatus = notabene_schema.NotabeneTxCreateStatus;
11463
11464
  exports.NotabeneTxValidateFullResponse = notabene_schema.NotabeneTxValidateFullResponse;
11465
+ exports.NotabeneWebhookPayload = notabene_schema.NotabeneWebhookPayload;
11466
+ exports.NotabeneWebhookSchema = notabene_schema.NotabeneWebhookSchema;
11464
11467
  exports.PhoneMetadata = notabene_schema.PhoneMetadata;
11465
11468
  exports.PhoneVerificationAnalysisResponse = notabene_schema.PhoneVerificationAnalysisResponse;
11466
11469
  exports.ProofOfAddressDocumentType = notabene_schema.ProofOfAddressDocumentType;
@@ -1,9 +1,9 @@
1
- export { g6 as ANALYSIS_TYPES, g7 as AnalysisType, gf as Coin, gk as EntityRiskDefaultsMap, gj as EntityRiskDefaultsValues, gq as GetActiveBlockchains, gp as GetActiveBlockchainsRequest, gr as GetActiveBlockchainsResponse, gv as GetAddressAnalysis, gs as GetAddressAnalysisRequest, gx as GetAddressAnalysisResponse, gw as GetTransactionAnalysis, gt as GetTransactionAnalysisRequest, gy as GetTransactionAnalysisResponse, gb as NonMinimalScorechainBlockchain, g8 as OBJECT_TYPES, g9 as ObjectType, gA as RawScorechainResult, gi as RiskExplanation, gg as RiskSeverity, gn as ScorechainAnalysis, ga as ScorechainBlockchain, gc as ScorechainBlockchainToNamespace, gu as ScorechainEntity, gh as ScorechainEntityType, gm as ScorechainError, gl as ScorechainErrorResponse, gB as ScorechainRiskToRiskLevel, gE as ScorechainTransactionRiskLevel, gD as ScorechainWalletRiskLevel, gC as ScorechainWalletRiskLevels, gz as ScoringAnalysisApiRequest, g1 as ScoringAnalysisRequest, go as ScoringAnalysisResponse, g2 as WorkflowsScoringAnalysisRequest, ge as compareRiskLevels, gd as getRiskLevelByRiskScore } from '../../dist/vault.schema-e1fd846a.esm.mjs';
2
- export { O as AMLMetadata, cS as APPLICANT_CHECK_STATUSES, d7 as ApiErrorCommandResponse, d6 as ApiErrorResponse, d8 as ApiSuccessCommandResponse, cT as ApplicantCheckStatus, cE as ApplicantImages, bD as ApplicantMemberOfSchema, dW as AuthToken, dX as AuthTokenError, dV as AuthTokenRequest, dY as AuthTokenResponse, bU as BENEFICIARY_TYPES, bF as BaseApplicantActionSchema, ba as BaseProvider, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, dj as BeneficiaryVerificationStatus, dk 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, dg 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, dE as ChainalysisApiError, b0 as ChainalysisConfig, dC as ChainalysisErrorCodes, bg as ChainalysisProvider, dA as ChainalysisRegisterApiResponse, dF as ChainalysisRegisterResponse, dz as ChainalysisRequest, dD as ChainalysisRiskAssessmentApiResponse, dG as ChainalysisRiskAssessmentResponse, dB as ChainalysisRiskLevel, a5 as CoerceDateUTC, dK as CoinMarketCapApiResponse, dL as CoinMarketCapFiatId, dI as CoinMarketCapQuote, dJ as CoinMarketCapQuotes, dH as CoinMarketCapRequest, di as CompanyDocumentMetaData, dh 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, d2 as CredentialMetadata, b2 as CrystalIntelligenceConfig, bi as CrystalIntelligenceProvider, dS as CrystalWalletScreeningApiRequest, dT as CrystalWalletScreeningResponse, d1 as CustomerContactInformationOutput, dq as CustomerDocumentMetaData, dr as CustomerStatusResults, a_ as DataProvider, aZ as DataProviderOptions, bz as DeleteProviderInput, bA as DeleteProviderResponse, z as DocumentIdMetadata, y as DocumentIdType, D as DocumentIdTypes, cq as DocumentMetadataSchema, cr as DocumentSubmitResponse, K as EmailMetadata, E as EmailVerificationAnalysisResponse, cQ as EmailVerificationResponse, F as File, d0 as GetCredentialsOutput, dm as GetKybSessionInput, dn as GetKybSessionResponse, cW as GetKycSessionInput, cX as GetKycSessionResponse, d3 as GetKycSessionResponseWithCredentialsMetadata, d9 as GetKycSessionsOutput, bt as GetProviderResponse, bs as GetProvidersResponse, ac as HIGH_RISK_TYPES, d4 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, dc as KYB_RESULTS, de as KYB_SESSION_STATUSES, da as KYB_STEP_TYPES, c5 as KYC_DOC_SIDES, cM as KYC_RESULTS, cO as KYC_SESSION_STATUSES, cI as KYC_STEP_TYPES, dd as KybResult, df as KybSessionStatus, db as KybStep, c6 as KycDocSide, cN as KycResult, cP as KycSessionStatus, cJ as KycStep, cL as KycStepStatus, cK as KycStepStatuses, e0 as LegalPersonNameIdentifierType, L as LivenessMetadata, ad as MEDIUM_RISK_TYPES, aw as MatchStatus, av as MatchStatuses, aC as MatchTypeDetail, M as MergedProviders, dx as MerkleAddressApiError, dw as MerkleAddressApiResponse, dv as MerkleAddressRequest, dy as MerkleAddressResponse, du as MerkleBlockChainCodes, dt as MerkleBlockChainName, ds as MerkleBlockChainTypes, a$ as MerkleScienceConfig, bf as MerkleScienceProvider, d_ as NameIdentifierType, d$ as NationalIdentifierType, r as NestedSession, bc as NexeraIdKYBProvider, bb as NexeraIdSSIDProvider, dZ as NotabeneAssetResponse, dU as NotabeneAudience, b7 as NotabeneConfig, e3 as NotabeneErrorCode, e7 as NotabeneJurisdictionsCondition, e6 as NotabeneJurisdictionsRequest, e9 as NotabeneJurisdictionsResponse, e8 as NotabeneJurisdictionsUnitaryResponse, bj as NotabeneProvider, e4 as NotabeneTxCreateError, e1 as NotabeneTxCreateRequest, e2 as NotabeneTxCreateResponse, N as NotabeneTxCreateStatus, e5 as NotabeneTxValidateFullResponse, J as PhoneMetadata, P as PhoneVerificationAnalysisResponse, G as ProofOfAddressDocumentType, A as ProofOfAddressDocumentTypes, H as ProofOfAddressMetadata, c$ 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, cj as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cz as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c3 as SUMSUB_KYC_DOC_TYPES, co as SUMSUB_MEDIA_CONTENT_TYPES, bK as SUMSUB_REVIEW_ANSWERS, cF as SUMSUB_REVIEW_REJECT_LABELS, cH 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, dl as SelectKybSession, cU as SelectKycSession, cR as SelectKycSessionStep, cV as SelectKycSessionWithCompletedSteps, d5 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, ct as SumSubApplicantResetSchema, cs as SumSubApplicantReviewStatusSchema, cy as SumSubApplicantSchema, bJ as SumSubApplicantType, cn as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ch as SumSubCompanyApplicantSchema, c2 as SumSubDocType, c8 as SumSubFlowLevel, cu as SumSubGenerateExternalWebSdkLinkSchema, ci as SumSubImageId, cc as SumSubImageReviewResultSchema, cd as SumSubImageStatus, cg as SumSubIndividualApplicantSchema, c4 as SumSubKycDocType, cp as SumSubMediaContentType, c9 as SumSubRequiredIdDoc, bL as SumSubReviewAnswer, cG as SumSubReviewRejectLabel, bN as SumSubReviewRejectType, cb as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cD as SumSubSimilarApplicantsSchema, bH as SumSubStep, cm as SumSubVerificationStepSchema, bE as SumSubWebhookSchema, cf as SumsubApplicantType, ce as SumsubApplicantTypes, ck as SumsubCompanyBeneficiaryGroup, bP as SumsubCountryCode, cx as SumsubKybDataSchema, cC as SumsubKybSessionFlowSection, cB as SumsubKybSessionFlowSectionItem, cA as SumsubKybSessionFlowSectionStatus, cw as SumsubKycDataSchema, bO as SumsubReviewDecision, cl as SumsubStepStatus, cv 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, dQ as TRMLabsAddressesScreening, dM as TRMLabsAddressesScreeningApiRequest, dR as TRMLabsAddressesScreeningResponse, b1 as TRMLabsConfig, bh as TRMLabsProvider, dP as TRMLabsRiskScoreToScorechainRiskMapping, dN as TRM_RISK_SCORE_LEVEL, dO as TRM_RISK_SCORE_LEVEL_LABEL, by as ToggleProviderInput, Z as UNKNOWN_ERROR, dp as UpdateKybSessionOutput, cY as UpdateKycSessionOutput, bw as UpdateProviderInput, bx as UpdateProviderResponse, aA as UpdateSearchEntitiesInput, az as UpdateSearchInput, ca as UploadDocumentRequest, cZ 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/notabene.schema-30a4da34.esm.mjs';
1
+ export { g6 as ANALYSIS_TYPES, g7 as AnalysisType, gf as Coin, gk as EntityRiskDefaultsMap, gj as EntityRiskDefaultsValues, gq as GetActiveBlockchains, gp as GetActiveBlockchainsRequest, gr as GetActiveBlockchainsResponse, gv as GetAddressAnalysis, gs as GetAddressAnalysisRequest, gx as GetAddressAnalysisResponse, gw as GetTransactionAnalysis, gt as GetTransactionAnalysisRequest, gy as GetTransactionAnalysisResponse, gb as NonMinimalScorechainBlockchain, g8 as OBJECT_TYPES, g9 as ObjectType, gA as RawScorechainResult, gi as RiskExplanation, gg as RiskSeverity, gn as ScorechainAnalysis, ga as ScorechainBlockchain, gc as ScorechainBlockchainToNamespace, gu as ScorechainEntity, gh as ScorechainEntityType, gm as ScorechainError, gl as ScorechainErrorResponse, gB as ScorechainRiskToRiskLevel, gE as ScorechainTransactionRiskLevel, gD as ScorechainWalletRiskLevel, gC as ScorechainWalletRiskLevels, gz as ScoringAnalysisApiRequest, g1 as ScoringAnalysisRequest, go as ScoringAnalysisResponse, g2 as WorkflowsScoringAnalysisRequest, ge as compareRiskLevels, gd as getRiskLevelByRiskScore } from '../../dist/vault.schema-d9c69eab.esm.mjs';
2
+ export { O as AMLMetadata, cS as APPLICANT_CHECK_STATUSES, d7 as ApiErrorCommandResponse, d6 as ApiErrorResponse, d8 as ApiSuccessCommandResponse, cT as ApplicantCheckStatus, cE as ApplicantImages, bD as ApplicantMemberOfSchema, dW as AuthToken, dX as AuthTokenError, dV as AuthTokenRequest, dY as AuthTokenResponse, bU as BENEFICIARY_TYPES, bF as BaseApplicantActionSchema, ba as BaseProvider, bW as BeneficiaryCompanyCustomerClaims, bX as BeneficiaryCompanyCustomerClaimsArray, bV as BeneficiaryType, dj as BeneficiaryVerificationStatus, dk 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, dg 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, dE as ChainalysisApiError, b0 as ChainalysisConfig, dC as ChainalysisErrorCodes, bg as ChainalysisProvider, dA as ChainalysisRegisterApiResponse, dF as ChainalysisRegisterResponse, dz as ChainalysisRequest, dD as ChainalysisRiskAssessmentApiResponse, dG as ChainalysisRiskAssessmentResponse, dB as ChainalysisRiskLevel, a5 as CoerceDateUTC, dK as CoinMarketCapApiResponse, dL as CoinMarketCapFiatId, dI as CoinMarketCapQuote, dJ as CoinMarketCapQuotes, dH as CoinMarketCapRequest, di as CompanyDocumentMetaData, dh 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, d2 as CredentialMetadata, b2 as CrystalIntelligenceConfig, bi as CrystalIntelligenceProvider, dS as CrystalWalletScreeningApiRequest, dT as CrystalWalletScreeningResponse, d1 as CustomerContactInformationOutput, dq as CustomerDocumentMetaData, dr as CustomerStatusResults, a_ as DataProvider, aZ as DataProviderOptions, bz as DeleteProviderInput, bA as DeleteProviderResponse, z as DocumentIdMetadata, y as DocumentIdType, D as DocumentIdTypes, cq as DocumentMetadataSchema, cr as DocumentSubmitResponse, K as EmailMetadata, E as EmailVerificationAnalysisResponse, cQ as EmailVerificationResponse, F as File, d0 as GetCredentialsOutput, dm as GetKybSessionInput, dn as GetKybSessionResponse, cW as GetKycSessionInput, cX as GetKycSessionResponse, d3 as GetKycSessionResponseWithCredentialsMetadata, d9 as GetKycSessionsOutput, bt as GetProviderResponse, bs as GetProvidersResponse, ac as HIGH_RISK_TYPES, d4 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, dc as KYB_RESULTS, de as KYB_SESSION_STATUSES, da as KYB_STEP_TYPES, c5 as KYC_DOC_SIDES, cM as KYC_RESULTS, cO as KYC_SESSION_STATUSES, cI as KYC_STEP_TYPES, dd as KybResult, df as KybSessionStatus, db as KybStep, c6 as KycDocSide, cN as KycResult, cP as KycSessionStatus, cJ as KycStep, cL as KycStepStatus, cK as KycStepStatuses, e0 as LegalPersonNameIdentifierType, L as LivenessMetadata, ad as MEDIUM_RISK_TYPES, aw as MatchStatus, av as MatchStatuses, aC as MatchTypeDetail, M as MergedProviders, dx as MerkleAddressApiError, dw as MerkleAddressApiResponse, dv as MerkleAddressRequest, dy as MerkleAddressResponse, du as MerkleBlockChainCodes, dt as MerkleBlockChainName, ds as MerkleBlockChainTypes, a$ as MerkleScienceConfig, bf as MerkleScienceProvider, e2 as NOTABENE_TX_CREATE_STATUS, d_ as NameIdentifierType, d$ as NationalIdentifierType, r as NestedSession, bc as NexeraIdKYBProvider, bb as NexeraIdSSIDProvider, dZ as NotabeneAssetResponse, dU as NotabeneAudience, b7 as NotabeneConfig, e4 as NotabeneErrorCode, e8 as NotabeneJurisdictionsCondition, e7 as NotabeneJurisdictionsRequest, ea as NotabeneJurisdictionsResponse, e9 as NotabeneJurisdictionsUnitaryResponse, bj as NotabeneProvider, e5 as NotabeneTxCreateError, e1 as NotabeneTxCreateRequest, e3 as NotabeneTxCreateResponse, N as NotabeneTxCreateStatus, e6 as NotabeneTxValidateFullResponse, eb as NotabeneWebhookPayload, ec as NotabeneWebhookSchema, J as PhoneMetadata, P as PhoneVerificationAnalysisResponse, G as ProofOfAddressDocumentType, A as ProofOfAddressDocumentTypes, H as ProofOfAddressMetadata, c$ 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, cj as SUMSUB_COMPANY_BENEFICIARY_GROUP, c1 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cz as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, c3 as SUMSUB_KYC_DOC_TYPES, co as SUMSUB_MEDIA_CONTENT_TYPES, bK as SUMSUB_REVIEW_ANSWERS, cF as SUMSUB_REVIEW_REJECT_LABELS, cH 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, dl as SelectKybSession, cU as SelectKycSession, cR as SelectKycSessionStep, cV as SelectKycSessionWithCompletedSteps, d5 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, ct as SumSubApplicantResetSchema, cs as SumSubApplicantReviewStatusSchema, cy as SumSubApplicantSchema, bJ as SumSubApplicantType, cn as SumSubApplicantVerificationStepSchema, bY as SumSubCompanyApplicantInfo, ch as SumSubCompanyApplicantSchema, c2 as SumSubDocType, c8 as SumSubFlowLevel, cu as SumSubGenerateExternalWebSdkLinkSchema, ci as SumSubImageId, cc as SumSubImageReviewResultSchema, cd as SumSubImageStatus, cg as SumSubIndividualApplicantSchema, c4 as SumSubKycDocType, cp as SumSubMediaContentType, c9 as SumSubRequiredIdDoc, bL as SumSubReviewAnswer, cG as SumSubReviewRejectLabel, bN as SumSubReviewRejectType, cb as SumSubReviewResultSchema, c0 as SumSubReviewStatus, cD as SumSubSimilarApplicantsSchema, bH as SumSubStep, cm as SumSubVerificationStepSchema, bE as SumSubWebhookSchema, cf as SumsubApplicantType, ce as SumsubApplicantTypes, ck as SumsubCompanyBeneficiaryGroup, bP as SumsubCountryCode, cx as SumsubKybDataSchema, cC as SumsubKybSessionFlowSection, cB as SumsubKybSessionFlowSectionItem, cA as SumsubKybSessionFlowSectionStatus, cw as SumsubKycDataSchema, bO as SumsubReviewDecision, cl as SumsubStepStatus, cv 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, dQ as TRMLabsAddressesScreening, dM as TRMLabsAddressesScreeningApiRequest, dR as TRMLabsAddressesScreeningResponse, b1 as TRMLabsConfig, bh as TRMLabsProvider, dP as TRMLabsRiskScoreToScorechainRiskMapping, dN as TRM_RISK_SCORE_LEVEL, dO as TRM_RISK_SCORE_LEVEL_LABEL, by as ToggleProviderInput, Z as UNKNOWN_ERROR, dp as UpdateKybSessionOutput, cY as UpdateKycSessionOutput, bw as UpdateProviderInput, bx as UpdateProviderResponse, aA as UpdateSearchEntitiesInput, az as UpdateSearchInput, ca as UploadDocumentRequest, cZ 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/notabene.schema-27fadf55.esm.mjs';
3
3
  import 'zod';
4
4
  import 'nanoid';
5
5
  import 'decimal.js';
6
- import '../../dist/identity-api.schema-66f67cc6.esm.mjs';
6
+ import '../../dist/identity-api.schema-b4108710.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-61295866.cjs.dev.cjs');
7
- var toArray = require('../../dist/toArray-176387e0.cjs.dev.cjs');
6
+ var vault_schema = require('../../dist/vault.schema-fba01def.cjs.dev.cjs');
7
+ var toArray = require('../../dist/toArray-b9b159c5.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-ee3851a0.cjs.prod.cjs');
7
- var toArray = require('../../dist/toArray-31b05fee.cjs.prod.cjs');
6
+ var vault_schema = require('../../dist/vault.schema-b0373ae1.cjs.prod.cjs');
7
+ var toArray = require('../../dist/toArray-ca25b89e.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 { f$ as _unsupportedIterableToArray, fV as Web3ArgsType, g0 as _slicedToArray, f_ as _toConsumableArray } from '../../dist/vault.schema-e1fd846a.esm.mjs';
3
- export { fy as AmlResults, fD as DataLinkTypeZodSchema, fB as DataLinkVersionZodSchema, fz as DetectedDuplicates, fO as GenericVaultDataLinkZodSchema, fN as GenericVaultEmbeddedLinkZodSchema, fL as GenericVaultPointerLinkZodSchema, fM as GenericVaultSearchLinkZodSchema, fP as TimeFrameCounters, fE as VaultJsonSchemas, fK as VaultMetadataLinkZodSchema, fI as VaultPointerKeyMapZodSchema, fJ as VaultQueryMapZodSchema, fG as VaultSchemaIdZodSchema, fH as VaultSchemaPathsZodSchema, fF as VaultZodSchema, fC as allDataLinkTypes, fA as allDataLinkVersions } from '../../dist/vault.schema-e1fd846a.esm.mjs';
4
- import { _ as _toArray } from '../../dist/toArray-ff66b745.esm.mjs';
2
+ import { f$ as _unsupportedIterableToArray, fV as Web3ArgsType, g0 as _slicedToArray, f_ as _toConsumableArray } from '../../dist/vault.schema-d9c69eab.esm.mjs';
3
+ export { fy as AmlResults, fD as DataLinkTypeZodSchema, fB as DataLinkVersionZodSchema, fz as DetectedDuplicates, fO as GenericVaultDataLinkZodSchema, fN as GenericVaultEmbeddedLinkZodSchema, fL as GenericVaultPointerLinkZodSchema, fM as GenericVaultSearchLinkZodSchema, fP as TimeFrameCounters, fE as VaultJsonSchemas, fK as VaultMetadataLinkZodSchema, fI as VaultPointerKeyMapZodSchema, fJ as VaultQueryMapZodSchema, fG as VaultSchemaIdZodSchema, fH as VaultSchemaPathsZodSchema, fF as VaultZodSchema, fC as allDataLinkTypes, fA as allDataLinkVersions } from '../../dist/vault.schema-d9c69eab.esm.mjs';
4
+ import { _ as _toArray } from '../../dist/toArray-4a50f8ab.esm.mjs';
5
5
  import { z } from 'zod';
6
6
  import 'nanoid';
7
7
  import 'decimal.js';
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var vault_schema = require('../../dist/vault.schema-61295866.cjs.dev.cjs');
6
- var identityApi_schema = require('../../dist/identity-api.schema-60fe9ffa.cjs.dev.cjs');
7
- var tfheUtilities = require('../../dist/tfhe-utilities-52c27cad.cjs.dev.cjs');
5
+ var vault_schema = require('../../dist/vault.schema-fba01def.cjs.dev.cjs');
6
+ var identityApi_schema = require('../../dist/identity-api.schema-9be2e0d8.cjs.dev.cjs');
7
+ var tfheUtilities = require('../../dist/tfhe-utilities-27a28149.cjs.dev.cjs');
8
8
  require('zod');
9
9
  require('nanoid');
10
10
  require('decimal.js');
@@ -2,9 +2,9 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var vault_schema = require('../../dist/vault.schema-ee3851a0.cjs.prod.cjs');
6
- var identityApi_schema = require('../../dist/identity-api.schema-301dab8d.cjs.prod.cjs');
7
- var tfheUtilities = require('../../dist/tfhe-utilities-0d98bbf6.cjs.prod.cjs');
5
+ var vault_schema = require('../../dist/vault.schema-b0373ae1.cjs.prod.cjs');
6
+ var identityApi_schema = require('../../dist/identity-api.schema-3abb32fd.cjs.prod.cjs');
7
+ var tfheUtilities = require('../../dist/tfhe-utilities-37fada6d.cjs.prod.cjs');
8
8
  require('zod');
9
9
  require('nanoid');
10
10
  require('decimal.js');
@@ -1,6 +1,6 @@
1
- export { b5 as Alpha2Country, e4 as GenericVerifiableCredentialSchema, ea as ID3CredentialSchema, dS as ID3CredentialSubjectSchema, e7 as IDImageCredentialSchema, e1 as IDImageCredentialSubjectSchema, e6 as IDInformationCredentialSchema, e0 as IDInformationCredentialSubjectSchema, e5 as IDInformationTfheCredentialSchema, d$ as IDInformationTfheCredentialSubjectSchema, eb as IDScanCredentialSchema, dT as IDScanCredentialSubjectSchema, ec as IDScanPassportCredentialSchema, dU as IDScanPassportCredentialSubjectSchema, ed as IDScanSelfieCredentialSchema, dV as IDScanSelfieCredentialSubjectSchema, b3 as ISO3CountryCode, ei as OLD_AMLScreeningsResultsCredentialSchema, d_ as OLD_AMLScreeningsResultsCredentialSubjectSchema, ee as OLD_IDImageCredentialSchema, dW as OLD_IDImageCredentialSubjectSchema, ef as OLD_IDInformationCredentialSchema, dX as OLD_IDInformationCredentialSubjectSchema, eg as OLD_ProofOfResidenceCredentialSchema, dY as OLD_ProofOfResidenceCredentialSubjectSchema, eh as OLD_SelfieImageCredentialSchema, dZ as OLD_SelfieImageCredentialSubjectSchema, e9 as ProofOfResidenceCredentialSchema, e3 as ProofOfResidenceCredentialSubjectSchema, e8 as SelfieImageCredentialSchema, e2 as SelfieImageCredentialSubjectSchema, b6 as countryISO3toISO2Mapping, b9 as isoCountriesNameFromISO2 } from '../../dist/vault.schema-e1fd846a.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-66f67cc6.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-b33cee57.esm.mjs';
1
+ export { b5 as Alpha2Country, e4 as GenericVerifiableCredentialSchema, ea as ID3CredentialSchema, dS as ID3CredentialSubjectSchema, e7 as IDImageCredentialSchema, e1 as IDImageCredentialSubjectSchema, e6 as IDInformationCredentialSchema, e0 as IDInformationCredentialSubjectSchema, e5 as IDInformationTfheCredentialSchema, d$ as IDInformationTfheCredentialSubjectSchema, eb as IDScanCredentialSchema, dT as IDScanCredentialSubjectSchema, ec as IDScanPassportCredentialSchema, dU as IDScanPassportCredentialSubjectSchema, ed as IDScanSelfieCredentialSchema, dV as IDScanSelfieCredentialSubjectSchema, b3 as ISO3CountryCode, ei as OLD_AMLScreeningsResultsCredentialSchema, d_ as OLD_AMLScreeningsResultsCredentialSubjectSchema, ee as OLD_IDImageCredentialSchema, dW as OLD_IDImageCredentialSubjectSchema, ef as OLD_IDInformationCredentialSchema, dX as OLD_IDInformationCredentialSubjectSchema, eg as OLD_ProofOfResidenceCredentialSchema, dY as OLD_ProofOfResidenceCredentialSubjectSchema, eh as OLD_SelfieImageCredentialSchema, dZ as OLD_SelfieImageCredentialSubjectSchema, e9 as ProofOfResidenceCredentialSchema, e3 as ProofOfResidenceCredentialSubjectSchema, e8 as SelfieImageCredentialSchema, e2 as SelfieImageCredentialSubjectSchema, b6 as countryISO3toISO2Mapping, b9 as isoCountriesNameFromISO2 } from '../../dist/vault.schema-d9c69eab.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-b4108710.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-50874d8c.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-61295866.cjs.dev.cjs');
7
- var identityApi_schema = require('../../dist/identity-api.schema-60fe9ffa.cjs.dev.cjs');
8
- var notabene_schema = require('../../dist/notabene.schema-b6fba65e.cjs.dev.cjs');
9
- var toArray = require('../../dist/toArray-176387e0.cjs.dev.cjs');
6
+ var vault_schema = require('../../dist/vault.schema-fba01def.cjs.dev.cjs');
7
+ var identityApi_schema = require('../../dist/identity-api.schema-9be2e0d8.cjs.dev.cjs');
8
+ var notabene_schema = require('../../dist/notabene.schema-5ad52f81.cjs.dev.cjs');
9
+ var toArray = require('../../dist/toArray-b9b159c5.cjs.dev.cjs');
10
10
  var zodToJsonSchema = require('zod-to-json-schema');
11
11
  require('nanoid');
12
12
  require('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-ee3851a0.cjs.prod.cjs');
7
- var identityApi_schema = require('../../dist/identity-api.schema-301dab8d.cjs.prod.cjs');
8
- var notabene_schema = require('../../dist/notabene.schema-91148657.cjs.prod.cjs');
9
- var toArray = require('../../dist/toArray-31b05fee.cjs.prod.cjs');
6
+ var vault_schema = require('../../dist/vault.schema-b0373ae1.cjs.prod.cjs');
7
+ var identityApi_schema = require('../../dist/identity-api.schema-3abb32fd.cjs.prod.cjs');
8
+ var notabene_schema = require('../../dist/notabene.schema-3b5d2b65.cjs.prod.cjs');
9
+ var toArray = require('../../dist/toArray-ca25b89e.cjs.prod.cjs');
10
10
  var zodToJsonSchema = require('zod-to-json-schema');
11
11
  require('nanoid');
12
12
  require('decimal.js');
@@ -1,8 +1,8 @@
1
1
  import { z } from 'zod';
2
- import { aX as UuidString, dM as ExternalCustomerId, dK as WorkflowId, bf as RiskScoreType, bh as CustomerType, bn as CustomerOnboardingLevel, bp as CustomerStatus, b3 as ISO3CountryCode, au as BlockchainAddress, e4 as GenericVerifiableCredentialSchema, fR as WalletScreeningData, et as TransactionTypes, ez as TransactionReviewStatuses, f_ as _toConsumableArray, aW as EnvironmentSchema } from '../../dist/vault.schema-e1fd846a.esm.mjs';
3
- import { Y as RuleResultStatus } from '../../dist/identity-api.schema-66f67cc6.esm.mjs';
4
- import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/notabene.schema-30a4da34.esm.mjs';
5
- import { _ as _toArray } from '../../dist/toArray-ff66b745.esm.mjs';
2
+ import { aX as UuidString, dM as ExternalCustomerId, dK as WorkflowId, bf as RiskScoreType, bh as CustomerType, bn as CustomerOnboardingLevel, bp as CustomerStatus, b3 as ISO3CountryCode, au as BlockchainAddress, e4 as GenericVerifiableCredentialSchema, fR as WalletScreeningData, et as TransactionTypes, ez as TransactionReviewStatuses, f_ as _toConsumableArray, aW as EnvironmentSchema } from '../../dist/vault.schema-d9c69eab.esm.mjs';
3
+ import { Y as RuleResultStatus } from '../../dist/identity-api.schema-b4108710.esm.mjs';
4
+ import { M as MergedProviders, I as IpQualityServiceAnalysisResponse, C as ComplyAdvantageSearchResponse, a as ComplyAdvantageSearchErrorResponse, b as ComplyAdvantageSearchSuccessResponse } from '../../dist/notabene.schema-27fadf55.esm.mjs';
5
+ import { _ as _toArray } from '../../dist/toArray-4a50f8ab.esm.mjs';
6
6
  import { zodToJsonSchema } from 'zod-to-json-schema';
7
7
  import 'nanoid';
8
8
  import 'decimal.js';