@nexeraid/identity-schemas
Advanced tools
Comparing version 1.12.31-dev to 1.12.32-dev
@@ -26,6 +26,30 @@ import { z } from "zod"; | ||
export type ZeroKnowledgeProofRequest = z.infer<typeof ZeroKnowledgeProofRequest>; | ||
export declare const AUTHORIZATION_REQUEST_MESSAGE_TYPES: { | ||
readonly AUTHORIZATION_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/authorization/1.0/request"; | ||
readonly AUTHORIZATION_RESPONSE_MESSAGE_TYPE: "https://iden3-communication.io/authorization/1.0/response"; | ||
readonly CREDENTIAL_ISSUANCE_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/credentials/1.0/issuance-request"; | ||
readonly CREDENTIAL_FETCH_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/credentials/1.0/fetch-request"; | ||
readonly CREDENTIAL_OFFER_MESSAGE_TYPE: "https://iden3-communication.io/credentials/1.0/offer"; | ||
readonly CREDENTIAL_ISSUANCE_RESPONSE_MESSAGE_TYPE: "https://iden3-communication.io/credentials/1.0/issuance-response"; | ||
readonly CREDENTIAL_REFRESH_MESSAGE_TYPE: "https://iden3-communication.io/credentials/1.0/refresh"; | ||
readonly DEVICE_REGISTRATION_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/devices/1.0/registration"; | ||
readonly MESSAGE_FETCH_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/messages/1.0/fetch"; | ||
readonly PROOF_GENERATION_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/proofs/1.0/request"; | ||
readonly PROOF_GENERATION_RESPONSE_MESSAGE_TYPE: "https://iden3-communication.io/proofs/1.0/response"; | ||
readonly REVOCATION_STATUS_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/revocation/1.0/request-status"; | ||
readonly REVOCATION_STATUS_RESPONSE_MESSAGE_TYPE: "https://iden3-communication.io/revocation/1.0/status"; | ||
readonly CONTRACT_INVOKE_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/proofs/1.0/contract-invoke-request"; | ||
readonly CONTRACT_INVOKE_RESPONSE_MESSAGE_TYPE: "https://iden3-communication.io/proofs/1.0/contract-invoke-response"; | ||
readonly CREDENTIAL_ONCHAIN_OFFER_MESSAGE_TYPE: "https://iden3-communication.io/credentials/1.0/onchain-offer"; | ||
readonly PROPOSAL_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/credentials/0.1/proposal-request"; | ||
readonly PROPOSAL_MESSAGE_TYPE: "https://iden3-communication.io/credentials/0.1/proposal"; | ||
readonly PAYMENT_REQUEST_MESSAGE_TYPE: "https://iden3-communication.io/credentials/0.1/payment-request"; | ||
readonly PAYMENT_MESSAGE_TYPE: "https://iden3-communication.io/credentials/0.1/payment"; | ||
}; | ||
export declare const AuthorizationRequestMessageTypes: readonly ["https://iden3-communication.io/authorization/1.0/request", "https://iden3-communication.io/authorization/1.0/response", "https://iden3-communication.io/credentials/1.0/issuance-request", "https://iden3-communication.io/credentials/1.0/fetch-request", "https://iden3-communication.io/credentials/1.0/offer", "https://iden3-communication.io/credentials/1.0/issuance-response", "https://iden3-communication.io/credentials/1.0/refresh", "https://iden3-communication.io/devices/1.0/registration", "https://iden3-communication.io/messages/1.0/fetch", "https://iden3-communication.io/proofs/1.0/request", "https://iden3-communication.io/proofs/1.0/response", "https://iden3-communication.io/revocation/1.0/request-status", "https://iden3-communication.io/revocation/1.0/status", "https://iden3-communication.io/proofs/1.0/contract-invoke-request", "https://iden3-communication.io/proofs/1.0/contract-invoke-response", "https://iden3-communication.io/credentials/1.0/onchain-offer", "https://iden3-communication.io/credentials/0.1/proposal-request", "https://iden3-communication.io/credentials/0.1/proposal", "https://iden3-communication.io/credentials/0.1/payment-request", "https://iden3-communication.io/credentials/0.1/payment"]; | ||
export declare const AuthorizationRequestMessageType: z.ZodEnum<["https://iden3-communication.io/authorization/1.0/request", "https://iden3-communication.io/authorization/1.0/response", "https://iden3-communication.io/credentials/1.0/issuance-request", "https://iden3-communication.io/credentials/1.0/fetch-request", "https://iden3-communication.io/credentials/1.0/offer", "https://iden3-communication.io/credentials/1.0/issuance-response", "https://iden3-communication.io/credentials/1.0/refresh", "https://iden3-communication.io/devices/1.0/registration", "https://iden3-communication.io/messages/1.0/fetch", "https://iden3-communication.io/proofs/1.0/request", "https://iden3-communication.io/proofs/1.0/response", "https://iden3-communication.io/revocation/1.0/request-status", "https://iden3-communication.io/revocation/1.0/status", "https://iden3-communication.io/proofs/1.0/contract-invoke-request", "https://iden3-communication.io/proofs/1.0/contract-invoke-response", "https://iden3-communication.io/credentials/1.0/onchain-offer", "https://iden3-communication.io/credentials/0.1/proposal-request", "https://iden3-communication.io/credentials/0.1/proposal", "https://iden3-communication.io/credentials/0.1/payment-request", "https://iden3-communication.io/credentials/0.1/payment"]>; | ||
export declare const AuthorizationRequestMessage: z.ZodObject<{ | ||
id: z.ZodString; | ||
typ: z.ZodOptional<z.ZodNativeEnum<typeof MediaType>>; | ||
type: z.ZodString; | ||
type: z.ZodEnum<["https://iden3-communication.io/authorization/1.0/request", "https://iden3-communication.io/authorization/1.0/response", "https://iden3-communication.io/credentials/1.0/issuance-request", "https://iden3-communication.io/credentials/1.0/fetch-request", "https://iden3-communication.io/credentials/1.0/offer", "https://iden3-communication.io/credentials/1.0/issuance-response", "https://iden3-communication.io/credentials/1.0/refresh", "https://iden3-communication.io/devices/1.0/registration", "https://iden3-communication.io/messages/1.0/fetch", "https://iden3-communication.io/proofs/1.0/request", "https://iden3-communication.io/proofs/1.0/response", "https://iden3-communication.io/revocation/1.0/request-status", "https://iden3-communication.io/revocation/1.0/status", "https://iden3-communication.io/proofs/1.0/contract-invoke-request", "https://iden3-communication.io/proofs/1.0/contract-invoke-response", "https://iden3-communication.io/credentials/1.0/onchain-offer", "https://iden3-communication.io/credentials/0.1/proposal-request", "https://iden3-communication.io/credentials/0.1/proposal", "https://iden3-communication.io/credentials/0.1/payment-request", "https://iden3-communication.io/credentials/0.1/payment"]>; | ||
thid: z.ZodOptional<z.ZodString>; | ||
@@ -80,3 +104,3 @@ body: z.ZodObject<{ | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -100,3 +124,3 @@ callbackUrl: string; | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -103,0 +127,0 @@ callbackUrl: string; |
@@ -279,3 +279,3 @@ import { z } from "zod"; | ||
typ: z.ZodOptional<z.ZodNativeEnum<typeof import("./polygon-id.schema.js").MediaType>>; | ||
type: z.ZodString; | ||
type: z.ZodEnum<["https://iden3-communication.io/authorization/1.0/request", "https://iden3-communication.io/authorization/1.0/response", "https://iden3-communication.io/credentials/1.0/issuance-request", "https://iden3-communication.io/credentials/1.0/fetch-request", "https://iden3-communication.io/credentials/1.0/offer", "https://iden3-communication.io/credentials/1.0/issuance-response", "https://iden3-communication.io/credentials/1.0/refresh", "https://iden3-communication.io/devices/1.0/registration", "https://iden3-communication.io/messages/1.0/fetch", "https://iden3-communication.io/proofs/1.0/request", "https://iden3-communication.io/proofs/1.0/response", "https://iden3-communication.io/revocation/1.0/request-status", "https://iden3-communication.io/revocation/1.0/status", "https://iden3-communication.io/proofs/1.0/contract-invoke-request", "https://iden3-communication.io/proofs/1.0/contract-invoke-response", "https://iden3-communication.io/credentials/1.0/onchain-offer", "https://iden3-communication.io/credentials/0.1/proposal-request", "https://iden3-communication.io/credentials/0.1/proposal", "https://iden3-communication.io/credentials/0.1/payment-request", "https://iden3-communication.io/credentials/0.1/payment"]>; | ||
thid: z.ZodOptional<z.ZodString>; | ||
@@ -330,3 +330,3 @@ body: z.ZodObject<{ | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -350,3 +350,3 @@ callbackUrl: string; | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -547,3 +547,3 @@ callbackUrl: string; | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -610,3 +610,3 @@ callbackUrl: string; | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -678,3 +678,3 @@ callbackUrl: string; | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -746,3 +746,3 @@ callbackUrl: string; | ||
id: string; | ||
type: string; | ||
type: "https://iden3-communication.io/authorization/1.0/request" | "https://iden3-communication.io/authorization/1.0/response" | "https://iden3-communication.io/credentials/1.0/issuance-request" | "https://iden3-communication.io/credentials/1.0/fetch-request" | "https://iden3-communication.io/credentials/1.0/offer" | "https://iden3-communication.io/credentials/1.0/issuance-response" | "https://iden3-communication.io/credentials/1.0/refresh" | "https://iden3-communication.io/devices/1.0/registration" | "https://iden3-communication.io/messages/1.0/fetch" | "https://iden3-communication.io/proofs/1.0/request" | "https://iden3-communication.io/proofs/1.0/response" | "https://iden3-communication.io/revocation/1.0/request-status" | "https://iden3-communication.io/revocation/1.0/status" | "https://iden3-communication.io/proofs/1.0/contract-invoke-request" | "https://iden3-communication.io/proofs/1.0/contract-invoke-response" | "https://iden3-communication.io/credentials/1.0/onchain-offer" | "https://iden3-communication.io/credentials/0.1/proposal-request" | "https://iden3-communication.io/credentials/0.1/proposal" | "https://iden3-communication.io/credentials/0.1/payment-request" | "https://iden3-communication.io/credentials/0.1/payment"; | ||
body: { | ||
@@ -749,0 +749,0 @@ callbackUrl: string; |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var identityApi_schema = require('./identity-api.schema-8832ddec.cjs.dev.js'); | ||
var identityApi_schema = require('./identity-api.schema-1e3650cd.cjs.dev.js'); | ||
var zod = require('zod'); | ||
var frontendUtilities_schema = require('./frontend-utilities.schema-c3ccca7b.cjs.dev.js'); | ||
var frontendUtilities_schema = require('./frontend-utilities.schema-e968d5ca.cjs.dev.js'); | ||
require('nanoid'); | ||
@@ -80,2 +80,3 @@ | ||
exports.ARRAY_OPERATORS = identityApi_schema.ARRAY_OPERATORS; | ||
exports.AUTHORIZATION_REQUEST_MESSAGE_TYPES = identityApi_schema.AUTHORIZATION_REQUEST_MESSAGE_TYPES; | ||
exports.AVAILABLE_FLOWS = identityApi_schema.AVAILABLE_FLOWS; | ||
@@ -97,2 +98,4 @@ exports.AdditionalCustomerInformationParams = identityApi_schema.AdditionalCustomerInformationParams; | ||
exports.AuthorizationRequestMessage = identityApi_schema.AuthorizationRequestMessage; | ||
exports.AuthorizationRequestMessageType = identityApi_schema.AuthorizationRequestMessageType; | ||
exports.AuthorizationRequestMessageTypes = identityApi_schema.AuthorizationRequestMessageTypes; | ||
exports.AuthorizationResponseMessage = identityApi_schema.AuthorizationResponseMessage; | ||
@@ -99,0 +102,0 @@ exports.AvailableFlow = identityApi_schema.AvailableFlow; |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var identityApi_schema = require('./identity-api.schema-181d93d3.cjs.prod.js'); | ||
var identityApi_schema = require('./identity-api.schema-e3e3d04b.cjs.prod.js'); | ||
var zod = require('zod'); | ||
var frontendUtilities_schema = require('./frontend-utilities.schema-9951d168.cjs.prod.js'); | ||
var frontendUtilities_schema = require('./frontend-utilities.schema-b4dfaa27.cjs.prod.js'); | ||
require('nanoid'); | ||
@@ -80,2 +80,3 @@ | ||
exports.ARRAY_OPERATORS = identityApi_schema.ARRAY_OPERATORS; | ||
exports.AUTHORIZATION_REQUEST_MESSAGE_TYPES = identityApi_schema.AUTHORIZATION_REQUEST_MESSAGE_TYPES; | ||
exports.AVAILABLE_FLOWS = identityApi_schema.AVAILABLE_FLOWS; | ||
@@ -97,2 +98,4 @@ exports.AdditionalCustomerInformationParams = identityApi_schema.AdditionalCustomerInformationParams; | ||
exports.AuthorizationRequestMessage = identityApi_schema.AuthorizationRequestMessage; | ||
exports.AuthorizationRequestMessageType = identityApi_schema.AuthorizationRequestMessageType; | ||
exports.AuthorizationRequestMessageTypes = identityApi_schema.AuthorizationRequestMessageTypes; | ||
exports.AuthorizationResponseMessage = identityApi_schema.AuthorizationResponseMessage; | ||
@@ -99,0 +102,0 @@ exports.AvailableFlow = identityApi_schema.AvailableFlow; |
@@ -1,5 +0,5 @@ | ||
import { C as CredentialTypes } from './identity-api.schema-2df73bbd.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, cp as ARRAY_OPERATORS, b8 as AVAILABLE_FLOWS, dt as AdditionalCustomerInformationParams, z as AddressSchema, ck as AllCredentialAttributes, cl as AllCredentialValues, d7 as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d1 as AnyTxAuthDataSignatureResponse, c_ as AnyTxAuthInput, aM as AppId, I as AptosAddress, J as AptosSignature, cq as ArrayOperator, cg as AuthQrCodeData, bW as AuthSession, cb as AuthorizationRequestMessage, ce as AuthorizationResponseMessage, b9 as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cv as BOOLEAN_OPERATORS, aB as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cw as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aC as CUSTOMERS_CHARTS, aG as CUSTOMER_AUTOMATION_REASONS, aE as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aN as ChallengeId, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d5 as CreateAuthRequestProps, cK as CreateQueryConfigurationInput, cL as CreateQueryConfigurationResponse, d6 as CreateZKProofRequestProps, dY as CredentialMediaType, dT as CredentialNames, cf as CredentialQrCodeData, dS as CredentialSchemas, dW as CredentialType, C as CredentialTypes, ay as CustomerOnboardingLevel, ax as CustomerOnboardingLevels, aA as CustomerStatus, az as CustomerStatuses, aF as CustomerTableColumn, as as CustomerType, ar as CustomerTypes, aD as CustomersChartType, cx as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, ba as DataAvailableOnStart, cy as DateOperator, cO as DeleteQueryConfigurationInput, cP as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, aK as EmailId, ad as EnvironmentSchema, h as EvmChainId, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d0 as ExtendedTezosTxAuthDataSignatureResponse, cZ as ExtendedTezosTxAuthInput, c$ as ExtendedTxAuthDataSignatureResponse, cY as ExtendedTxAuthInput, dy as ExternalCustomerId, dh as FLOW_TYPES, di as FlowType, G as FunctionCallData, dR as GenericVerifiableCredentialSchema, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, cX as GetTezosTxAuthDataSignatureResponse, cU as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, dE as ID3CredentialSubjectSchema, dl as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, dn as IDENTITY_DOCUMENT_OPTIONS, dO as IDImageCredentialSubjectSchema, cC as IDInformation, dN as IDInformationCredentialSubjectSchema, dF as IDScanCredentialSubjectSchema, dG as IDScanPassportCredentialSubjectSchema, dH as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, ds as Identifier, c3 as IdentityAppMessage, dA as IdentityAppV2Web2JWT, dz as IdentityAppV2Web3JWT, dm as IdentityDocumentCountryListOption, dp as IdentityDocumentOptionsType, aJ as IdentityId, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, du as IdentityWidgetAccessToken, dB as IdentityWidgetAccessToken_NEW, dC as IdentityWidgetSessionToken, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aw as KybOnboardingLevel, av as KybOnboardingLevels, aT as KycCompletionData, aU as KycCompletionNotification, au as KycOnboardingLevel, at as KycOnboardingLevels, c8 as MediaType, c9 as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, ct as NUMERIC_OPERATORS, dU as NexeraCredentialType, cJ as NonParsedQueryConfiguration, cu as NumericOperator, dM as OLD_AMLScreeningsResultsCredentialSubjectSchema, dI as OLD_IDImageCredentialSubjectSchema, dJ as OLD_IDInformationCredentialSubjectSchema, dK as OLD_ProofOfResidenceCredentialSubjectSchema, dL as OLD_SelfieImageCredentialSubjectSchema, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d4 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, d9 as OnChainZKP, da as OnChainZKPFromNexeraID, dc as OnChainZKPPayload, db as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cm as Operator, bh as OperatorToChallengeQueryOperator, dv as OrganizationId, _ as P2Signature, dq as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cG as PartialQueryConfigSimplified, dr as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, d8 as ProjectAuthorizationData, cc as ProofData, dQ as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, ch as QrCodeLinkWithSchemaType, cD as QueryConfig, cF as QueryConfigSimplified, cH as QueryConfigSimplifiedParsed, cI as QueryConfiguration, cR as QueryCredentialType, cQ as QueryCredentialTypes, cE as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, aq as RiskScoreType, ap as RiskScoreTypes, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dd as SCENARIO_AUTHORIZATION_STATUSES, cr as STRING_OPERATORS, cz as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, de as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, dP as SelfieImageCredentialSubjectSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b1 as StartCompletedNotification, bM as StartFlowRequest, aI as StorageId, w as String0x, cs as StringOperator, cA as SupportedType, cB as SupportedTypes, aO as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cV as TezosTxAuthInput, cW as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cS as TxAuthInput, D as TxHash, cT as TxSignatureResponse, cM as UpdateQueryConfigurationInput, cN as UpdateQueryConfigurationResponse, ae as UuidString, dX as VerifiableCredential, dk as VerificationMode, dj as VerificationModes, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, bV as WalletChallengeRequest, aL as WalletId, bY as WalletSignResponse, dg as WalletSignatureData, df as WalletSignatureResponse, dD as Web2CreateSessionParams, dx as WorkflowId, dw as WorkspaceId, cn as ZKPOperator, d2 as ZKPRequest, d3 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cd as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, aH as createBrandedSchemaId, aP as generateId, dV as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, co as operatorDisplayMap, ao as parseISO3CountryCode, ci as parseIden3Message, cj as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-2df73bbd.esm.js'; | ||
import { C as CredentialTypes } from './identity-api.schema-7b0f0ca2.esm.js'; | ||
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, cs as ARRAY_OPERATORS, cb as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b8 as AVAILABLE_FLOWS, dw as AdditionalCustomerInformationParams, z as AddressSchema, cn as AllCredentialAttributes, co as AllCredentialValues, da as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d4 as AnyTxAuthDataSignatureResponse, d1 as AnyTxAuthInput, aM as AppId, I as AptosAddress, J as AptosSignature, ct as ArrayOperator, cj as AuthQrCodeData, bW as AuthSession, ce as AuthorizationRequestMessage, cd as AuthorizationRequestMessageType, cc as AuthorizationRequestMessageTypes, ch as AuthorizationResponseMessage, b9 as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cy as BOOLEAN_OPERATORS, aB as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cz as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, aC as CUSTOMERS_CHARTS, aG as CUSTOMER_AUTOMATION_REASONS, aE as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, aN as ChallengeId, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d8 as CreateAuthRequestProps, cN as CreateQueryConfigurationInput, cO as CreateQueryConfigurationResponse, d9 as CreateZKProofRequestProps, d$ as CredentialMediaType, dW as CredentialNames, ci as CredentialQrCodeData, dV as CredentialSchemas, dZ as CredentialType, C as CredentialTypes, ay as CustomerOnboardingLevel, ax as CustomerOnboardingLevels, aA as CustomerStatus, az as CustomerStatuses, aF as CustomerTableColumn, as as CustomerType, ar as CustomerTypes, aD as CustomersChartType, cA as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, ba as DataAvailableOnStart, cB as DateOperator, cR as DeleteQueryConfigurationInput, cS as DeleteQueryConfigurationResponse, a8 as DisplayedBlockchainNamespace, F as EIP155Signature, ac as ENVS, E as EVM_BLOCK_TIME, g as EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC, Y as EdSignature, aK as EmailId, ad as EnvironmentSchema, h as EvmChainId, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d3 as ExtendedTezosTxAuthDataSignatureResponse, d0 as ExtendedTezosTxAuthInput, d2 as ExtendedTxAuthDataSignatureResponse, c$ as ExtendedTxAuthInput, dB as ExternalCustomerId, dk as FLOW_TYPES, dl as FlowType, G as FunctionCallData, dU as GenericVerifiableCredentialSchema, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, c_ as GetTezosTxAuthDataSignatureResponse, cX as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, dH as ID3CredentialSubjectSchema, dp as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, dr as IDENTITY_DOCUMENT_OPTIONS, dR as IDImageCredentialSubjectSchema, cF as IDInformation, dQ as IDInformationCredentialSubjectSchema, dI as IDScanCredentialSubjectSchema, dJ as IDScanPassportCredentialSubjectSchema, dK as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dv as Identifier, c3 as IdentityAppMessage, dD as IdentityAppV2Web2JWT, dC as IdentityAppV2Web3JWT, dq as IdentityDocumentCountryListOption, ds as IdentityDocumentOptionsType, aJ as IdentityId, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, dx as IdentityWidgetAccessToken, dE as IdentityWidgetAccessToken_NEW, dF as IdentityWidgetSessionToken, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aw as KybOnboardingLevel, av as KybOnboardingLevels, aT as KycCompletionData, aU as KycCompletionNotification, au as KycOnboardingLevel, at as KycOnboardingLevels, c8 as MediaType, c9 as MediaTypePID, u as NEXERA_ACTIVE_STARKNET_CHAIN_VALUES, f as NEXERA_CHAIN_VALUES, b as NEXERA_COSMOS_CHAINS, N as NEXERA_EVM_CHAINS, d as NEXERA_EVM_CHAIN_NAMES, e as NEXERA_EVM_CHAIN_NAMES_LIST, c as NEXERA_STARKNET_CHAINS, s as NEXERA_STARKNET_CHAIN_NAMES, t as NEXERA_STARKNET_CHAIN_VALUES, a as NEXERA_TEZOS_CHAINS, j as NEXERA_TEZOS_CHAIN_NAMES, k as NEXERA_TEZOS_CHAIN_NAMES_LIST, l as NEXERA_TEZOS_CHAIN_VALUES, cw as NUMERIC_OPERATORS, dX as NexeraCredentialType, cM as NonParsedQueryConfiguration, cx as NumericOperator, dP as OLD_AMLScreeningsResultsCredentialSubjectSchema, dL as OLD_IDImageCredentialSubjectSchema, dM as OLD_IDInformationCredentialSubjectSchema, dN as OLD_ProofOfResidenceCredentialSubjectSchema, dO as OLD_SelfieImageCredentialSubjectSchema, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d7 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, dc as OnChainZKP, dd as OnChainZKPFromNexeraID, df as OnChainZKPPayload, de as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cp as Operator, bh as OperatorToChallengeQueryOperator, dy as OrganizationId, _ as P2Signature, dt as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cJ as PartialQueryConfigSimplified, du as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, db as ProjectAuthorizationData, cf as ProofData, dT as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, ck as QrCodeLinkWithSchemaType, cG as QueryConfig, cI as QueryConfigSimplified, cK as QueryConfigSimplifiedParsed, cL as QueryConfiguration, cU as QueryCredentialType, cT as QueryCredentialTypes, cH as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, aq as RiskScoreType, ap as RiskScoreTypes, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dg as SCENARIO_AUTHORIZATION_STATUSES, cu as STRING_OPERATORS, cC as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, dh as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, dS as SelfieImageCredentialSubjectSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b1 as StartCompletedNotification, bM as StartFlowRequest, aI as StorageId, w as String0x, cv as StringOperator, cD as SupportedType, cE as SupportedTypes, aO as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cY as TezosTxAuthInput, cZ as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cV as TxAuthInput, D as TxHash, cW as TxSignatureResponse, cP as UpdateQueryConfigurationInput, cQ as UpdateQueryConfigurationResponse, ae as UuidString, d_ as VerifiableCredential, dn as VerificationMode, dm as VerificationModes, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, bV as WalletChallengeRequest, aL as WalletId, bY as WalletSignResponse, dj as WalletSignatureData, di as WalletSignatureResponse, dG as Web2CreateSessionParams, dA as WorkflowId, dz as WorkspaceId, cq as ZKPOperator, d5 as ZKPRequest, d6 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cg as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, aH as createBrandedSchemaId, aP as generateId, dY as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, cr as operatorDisplayMap, ao as parseISO3CountryCode, cl as parseIden3Message, cm as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-7b0f0ca2.esm.js'; | ||
import { z } from 'zod'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-c150e92a.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-6063fda0.esm.js'; | ||
import 'nanoid'; | ||
@@ -6,0 +6,0 @@ |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "1.12.31", | ||
"version": "1.12.32", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-8832ddec.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-1e3650cd.cjs.dev.js'); | ||
require('zod'); | ||
@@ -13,2 +13,3 @@ require('nanoid'); | ||
exports.ARRAY_OPERATORS = identityApi_schema.ARRAY_OPERATORS; | ||
exports.AUTHORIZATION_REQUEST_MESSAGE_TYPES = identityApi_schema.AUTHORIZATION_REQUEST_MESSAGE_TYPES; | ||
exports.AVAILABLE_FLOWS = identityApi_schema.AVAILABLE_FLOWS; | ||
@@ -24,2 +25,4 @@ exports.AllCredentialAttributes = identityApi_schema.AllCredentialAttributes; | ||
exports.AuthorizationRequestMessage = identityApi_schema.AuthorizationRequestMessage; | ||
exports.AuthorizationRequestMessageType = identityApi_schema.AuthorizationRequestMessageType; | ||
exports.AuthorizationRequestMessageTypes = identityApi_schema.AuthorizationRequestMessageTypes; | ||
exports.AuthorizationResponseMessage = identityApi_schema.AuthorizationResponseMessage; | ||
@@ -26,0 +29,0 @@ exports.AvailableFlow = identityApi_schema.AvailableFlow; |
@@ -5,3 +5,3 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-181d93d3.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-e3e3d04b.cjs.prod.js'); | ||
require('zod'); | ||
@@ -13,2 +13,3 @@ require('nanoid'); | ||
exports.ARRAY_OPERATORS = identityApi_schema.ARRAY_OPERATORS; | ||
exports.AUTHORIZATION_REQUEST_MESSAGE_TYPES = identityApi_schema.AUTHORIZATION_REQUEST_MESSAGE_TYPES; | ||
exports.AVAILABLE_FLOWS = identityApi_schema.AVAILABLE_FLOWS; | ||
@@ -24,2 +25,4 @@ exports.AllCredentialAttributes = identityApi_schema.AllCredentialAttributes; | ||
exports.AuthorizationRequestMessage = identityApi_schema.AuthorizationRequestMessage; | ||
exports.AuthorizationRequestMessageType = identityApi_schema.AuthorizationRequestMessageType; | ||
exports.AuthorizationRequestMessageTypes = identityApi_schema.AuthorizationRequestMessageTypes; | ||
exports.AuthorizationResponseMessage = identityApi_schema.AuthorizationResponseMessage; | ||
@@ -26,0 +29,0 @@ exports.AvailableFlow = identityApi_schema.AvailableFlow; |
@@ -1,3 +0,3 @@ | ||
export { cp as ARRAY_OPERATORS, b8 as AVAILABLE_FLOWS, ck as AllCredentialAttributes, cl as AllCredentialValues, d7 as AllScenarioExecutionAuthorizationData, d1 as AnyTxAuthDataSignatureResponse, c_ as AnyTxAuthInput, cq as ArrayOperator, cg as AuthQrCodeData, bW as AuthSession, cb as AuthorizationRequestMessage, ce as AuthorizationResponseMessage, b9 as AvailableFlow, cv as BOOLEAN_OPERATORS, cw as BooleanOperator, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d5 as CreateAuthRequestProps, cK as CreateQueryConfigurationInput, cL as CreateQueryConfigurationResponse, d6 as CreateZKProofRequestProps, cf as CredentialQrCodeData, cx as DATE_OPERATORS, ba as DataAvailableOnStart, cy as DateOperator, cO as DeleteQueryConfigurationInput, cP as DeleteQueryConfigurationResponse, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d0 as ExtendedTezosTxAuthDataSignatureResponse, cZ as ExtendedTezosTxAuthInput, c$ as ExtendedTxAuthDataSignatureResponse, cY as ExtendedTxAuthInput, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, cX as GetTezosTxAuthDataSignatureResponse, cU as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, cC as IDInformation, c3 as IdentityAppMessage, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aT as KycCompletionData, aU as KycCompletionNotification, c8 as MediaType, c9 as MediaTypePID, ct as NUMERIC_OPERATORS, cJ as NonParsedQueryConfiguration, cu as NumericOperator, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d4 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, d9 as OnChainZKP, da as OnChainZKPFromNexeraID, dc as OnChainZKPPayload, db as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cm as Operator, bh as OperatorToChallengeQueryOperator, cG as PartialQueryConfigSimplified, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, d8 as ProjectAuthorizationData, cc as ProofData, ch as QrCodeLinkWithSchemaType, cD as QueryConfig, cF as QueryConfigSimplified, cH as QueryConfigSimplifiedParsed, cI as QueryConfiguration, cR as QueryCredentialType, cQ as QueryCredentialTypes, cE as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dd as SCENARIO_AUTHORIZATION_STATUSES, cr as STRING_OPERATORS, cz as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, de as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, b1 as StartCompletedNotification, bM as StartFlowRequest, cs as StringOperator, cA as SupportedType, cB as SupportedTypes, cV as TezosTxAuthInput, cW as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cS as TxAuthInput, cT as TxSignatureResponse, cM as UpdateQueryConfigurationInput, cN as UpdateQueryConfigurationResponse, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, bV as WalletChallengeRequest, bY as WalletSignResponse, dg as WalletSignatureData, df as WalletSignatureResponse, cn as ZKPOperator, d2 as ZKPRequest, d3 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cd as ZeroKnowledgeProofResponse, co as operatorDisplayMap, ci as parseIden3Message, cj as parseSessionIdFromUrl } from '../../dist/identity-api.schema-2df73bbd.esm.js'; | ||
export { cs as ARRAY_OPERATORS, cb as AUTHORIZATION_REQUEST_MESSAGE_TYPES, b8 as AVAILABLE_FLOWS, cn as AllCredentialAttributes, co as AllCredentialValues, da as AllScenarioExecutionAuthorizationData, d4 as AnyTxAuthDataSignatureResponse, d1 as AnyTxAuthInput, ct as ArrayOperator, cj as AuthQrCodeData, bW as AuthSession, ce as AuthorizationRequestMessage, cd as AuthorizationRequestMessageType, cc as AuthorizationRequestMessageTypes, ch as AuthorizationResponseMessage, b9 as AvailableFlow, cy as BOOLEAN_OPERATORS, cz as BooleanOperator, bg as ChallengeQueryOperator, bi as ChallengeQueryOperatorToOperator, bf as ChallengeQueryOperators, bj as ChallengeQuerySchema, bX as ChallengeResponse, aS as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d8 as CreateAuthRequestProps, cN as CreateQueryConfigurationInput, cO as CreateQueryConfigurationResponse, d9 as CreateZKProofRequestProps, ci as CredentialQrCodeData, cA as DATE_OPERATORS, ba as DataAvailableOnStart, cB as DateOperator, cR as DeleteQueryConfigurationInput, cS as DeleteQueryConfigurationResponse, bl as ExecuteChallengeQueryConfig, bk as ExecuteChallengeQueryInput, bn as ExecuteChallengeQueryResponse, d3 as ExtendedTezosTxAuthDataSignatureResponse, d0 as ExtendedTezosTxAuthInput, d2 as ExtendedTxAuthDataSignatureResponse, c$ as ExtendedTxAuthInput, bG as GetCredentialsRequest, bH as GetCredentialsResponse, b_ as GetCustomerStatusRequest, c2 as GetCustomerStatusResponse, c_ as GetTezosTxAuthDataSignatureResponse, cX as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c4 as HostMessage, bT as HostRequestMessage, be as HostResponseMessage, cF as IDInformation, c3 as IdentityAppMessage, c5 as IdentityMessage, b2 as IdentityNotificationMessage, b7 as IdentityRequestMessage, bU as IdentityResponseMessage, b$ as IdentitySdkMessage, c0 as IdentitySdkMessageWithIdentifier, b3 as InitialDataRequest, bb as InitialDataResponse, a_ as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aT as KycCompletionData, aU as KycCompletionNotification, c8 as MediaType, c9 as MediaTypePID, cw as NUMERIC_OPERATORS, cM as NonParsedQueryConfiguration, cx as NumericOperator, bo as OPAChallengeQuery, b0 as OcvSdkInitialized, aW as OffChainScenarioExecutionData, d7 as OffChainZKP, bq as OffChainZKPRuleResult, bp as OnChainRuleResult, aX as OnChainScenarioExecutionData, dc as OnChainZKP, dd as OnChainZKPFromNexeraID, df as OnChainZKPPayload, de as OnChainZKPScenarioFromCms, bm as OpaChallengeQueryResponse, cp as Operator, bh as OperatorToChallengeQueryOperator, cJ as PartialQueryConfigSimplified, a$ as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, db as ProjectAuthorizationData, cf as ProofData, ck as QrCodeLinkWithSchemaType, cG as QueryConfig, cI as QueryConfigSimplified, cK as QueryConfigSimplifiedParsed, cL as QueryConfiguration, cU as QueryCredentialType, cT as QueryCredentialTypes, cH as QueryType, c6 as RequiredDataRowSchema, c7 as RequiredVerificationData, bz as RuleEngineResponse, aV as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, dg as SCENARIO_AUTHORIZATION_STATUSES, cu as STRING_OPERATORS, cC as SUPPORTED_TYPES, aQ as ScenarioAuthorizationData, dh as ScenarioAuthorizationStatus, aY as ScenarioExecutionData, aZ as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, br as SdkVerificationOutput, aR as SdkVerificationResponseSchema, b6 as SendTransactionRequest, b4 as SignatureRequest, bc as SignatureResponse, bF as SimplifiedCredential, b1 as StartCompletedNotification, bM as StartFlowRequest, cv as StringOperator, cD as SupportedType, cE as SupportedTypes, cY as TezosTxAuthInput, cZ as TezosTxSignatureResponse, b5 as TransactionData, bd as TransactionResponse, bZ as TxAuthDataSignatureGatingRequest, c1 as TxAuthDataSignatureResponse, cV as TxAuthInput, cW as TxSignatureResponse, cP as UpdateQueryConfigurationInput, cQ as UpdateQueryConfigurationResponse, bu as VerificationOutput, bt as VerificationSessionStatus, bs as VerificationSessionStatuses, bV as WalletChallengeRequest, bY as WalletSignResponse, dj as WalletSignatureData, di as WalletSignatureResponse, cq as ZKPOperator, d5 as ZKPRequest, d6 as ZKPRequestFromZKVerifier, ca as ZeroKnowledgeProofRequest, cg as ZeroKnowledgeProofResponse, cr as operatorDisplayMap, cl as parseIden3Message, cm as parseSessionIdFromUrl } from '../../dist/identity-api.schema-7b0f0ca2.esm.js'; | ||
import 'zod'; | ||
import 'nanoid'; |
{ | ||
"name": "@nexeraid/identity-schemas", | ||
"version": "1.12.31-dev", | ||
"version": "1.12.32-dev", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "keywords": [], |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var customers_schema = require('../../dist/customers.schema-bfd75809.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-dbeb7313.cjs.dev.js'); | ||
require('zod'); | ||
require('../../dist/identity-api.schema-8832ddec.cjs.dev.js'); | ||
require('../../dist/identity-api.schema-1e3650cd.cjs.dev.js'); | ||
require('nanoid'); | ||
@@ -10,0 +10,0 @@ |
@@ -5,5 +5,5 @@ 'use strict'; | ||
var customers_schema = require('../../dist/customers.schema-c1a71aac.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-1b00d66a.cjs.prod.js'); | ||
require('zod'); | ||
require('../../dist/identity-api.schema-181d93d3.cjs.prod.js'); | ||
require('../../dist/identity-api.schema-e3e3d04b.cjs.prod.js'); | ||
require('nanoid'); | ||
@@ -10,0 +10,0 @@ |
@@ -1,4 +0,4 @@ | ||
export { a1 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bJ as ApplicantMemberOfSchema, bY as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bL as BaseApplicantActionSchema, bj as BaseProvider, b_ as BeneficiaryCompanyCustomerClaims, b$ as BeneficiaryCompanyCustomerClaimsArray, bZ as BeneficiaryType, d1 as BeneficiaryVerificationStatus, d2 as BeneficiaryVerificationStatusArray, bg as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bm as BigProvider, u as BitRankRequest, v as BitRankVerified, x as BitRankVerifiedError, w as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aB as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aD as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, az as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ap as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dk as ChainalysisApiError, bc as ChainalysisConfig, bp as ChainalysisProvider, dh as ChainalysisRegisterApiResponse, dl as ChainalysisRegisterResponse, df as ChainalysisRequest, dj as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, di as ChainalysisRiskLevel, ag as CoerceDateUTC, g as Coin, d0 as CompanyDocumentMetaData, aV as ComplyAdvantageAmlFullListing, aU as ComplyAdvantageAmlItemSource, aC as ComplyAdvantageCountryFieldSources, aE as ComplyAdvantageDateOfBirthFieldSources, aT as ComplyAdvantageKeyInformation, aO as ComplyAdvantageMedia, b2 as ComplyAdvantageMonitorSearchDataResponse, b4 as ComplyAdvantageMonitorSearchResponse, b3 as ComplyAdvantageMonitorSearchSuccessResponse, b5 as ComplyAdvantageMonitoredSearchUpdate, aA as ComplyAdvantageNationalityFieldSources, bu as ComplyAdvantageProvider, bt as ComplyAdvantageProviderConfigElement, bs as ComplyAdvantageProviderConfigFilters, br as ComplyAdvantageProviderConfigTypes, at as ComplyAdvantageReponseMatchStatus, aq as ComplyAdvantageResponseMatchType, aQ as ComplyAdvantageSearchDataResponse, aP as ComplyAdvantageSearchDataResponseHit, aW as ComplyAdvantageSearchEntitiesDataResponse, aY as ComplyAdvantageSearchEntitiesResponse, aX as ComplyAdvantageSearchEntitiesSuccessResponse, aS as ComplyAdvantageSearchErrorResponse, aZ as ComplyAdvantageSearchRequest, b as ComplyAdvantageSearchResponse, aR as ComplyAdvantageSearchSuccessResponse, a$ as ComplyAdvantageUpdateSearchEntitiesRequest, b1 as ComplyAdvantageUpdateSearchEntitiesResponse, b0 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a_ as ComplyAdvantageUpdateSearchRequest, aM as ComplyAdvantageUser, bA as CreateProviderInput, bB as CreateProviderResponse, aF as CreateSearchInput, cU as CredentialMetadata, cT as CustomerContactInformationOutput, d7 as CustomerDocumentMetaData, d8 as CustomerStatusResults, b9 as DataProviderOptions, ba as DataProviders, bF as DeleteProviderInput, bG as DeleteProviderResponse, V as DocumentIdMetadata, U as DocumentIdType, T as DocumentIdTypes, co as DocumentMetadataSchema, a0 as EmailMetadata, E as EmailVerificationAnalysisResponse, dg as EnhancedChainalysisRequest, Q as File, cS as GetCredentialsOutput, d4 as GetKybSessionInput, d5 as GetKybSessionResponse, cM as GetKycSessionInput, cN as GetKycSessionResponse, cV as GetKycSessionResponseWithCredentialsMetadata, bz as GetProviderResponse, by as GetProvidersResponse, an as HIGH_RISK_TYPES, bW as INDIVIDUAL_BENEFICIARY_RELATIONS, b7 as IdentityProviderOptions, b8 as IdentityProviders, bX as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bf as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bq as IpqualityscoreProvider, cY as KYB_RESULTS, c_ as KYB_SESSION_STATUSES, cW as KYB_STEP_TYPES, cG as KYC_RESULTS, cI as KYC_SESSION_STATUSES, cE as KYC_STEP_TYPES, cZ as KybResult, c$ as KybSessionStatus, cX as KybStep, cH as KycResult, cJ as KycSessionStatus, cF as KycStep, _ as LivenessMetadata, ao as MEDIUM_RISK_TYPES, aH as MatchStatus, aG as MatchStatuses, aN as MatchTypeDetail, M as MergedProviders, de as MerkleAddressApiError, dd as MerkleAddressApiResponse, dc as MerkleAddressRequest, a as MerkleAddressResponse, db as MerkleBlockChainCodes, da as MerkleBlockChainNames, d9 as MerkleBlockChainTypes, bb as MerkleScienceConfig, bo as MerkleScienceProvider, N as NestedSession, bl as NexeraIdKYBProvider, bk as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, $ as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Y as ProofOfAddressDocumentType, X as ProofOfAddressDocumentTypes, Z as ProofOfAddressMetadata, cR as ProofOfResidenceDocumentType, cQ as ProofOfResidenceMetaData, bw as ProviderData, bx as ProviderDataProject, bi as ProviderIntegrationType, bh as ProviderIntegrationTypeOptions, b6 as ProviderWithoutConfig, a9 as RESULT_PARSER_ERROR, L as ReasonCode, K as ReasonCodes, t as RequestProperty, aJ as RiskLevel, aI as RiskLevels, R as RiskSeverity, al as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, aj as SEARCH_FILTER_PEP_TYPE, ah as SEARCH_FILTER_SANCTION_TYPE, au as SEARCH_FILTER_TYPES, a7 as SESSION_NOT_FOUND, ad as STEP_NOT_FOUND, bO as SUMSUB_APPLICANT_TYPES, cg as SUMSUB_COMPANY_BENEFICIARY_GROUP, c5 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cw as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cm as SUMSUB_MEDIA_CONTENT_TYPES, bQ as SUMSUB_REVIEW_ANSWERS, cB as SUMSUB_REVIEW_REJECT_LABELS, cD as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bS as SUMSUB_REVIEW_REJECT_TYPES, c3 as SUMSUB_REVIEW_STATUSES, bM as SUMSUB_STEPS, c1 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bd as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bn as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ax as SearchEntityType, aw as SearchEntityTypes, am as SearchFilterAdverseMediaType, ak as SearchFilterPepType, ai as SearchFilterSanctionType, av as SearchFilterType, ay as SearchFilters, d3 as SelectKybSession, cK as SelectKycSession, cL as SelectKycSessionStep, F as Session, G as SessionWithoutSteps, z as Status, y as Statuses, a2 as Step, J as StepType, H as StepTypes, bU as SumSubAddress, bV as SumSubApplicantInfo, cl as SumSubApplicantModerationStatusSchema, cq as SumSubApplicantResetSchema, cp as SumSubApplicantReviewStatusSchema, cv as SumSubApplicantSchema, bP as SumSubApplicantType, ck as SumSubApplicantVerificationStepSchema, c0 as SumSubCompanyApplicantInfo, ce as SumSubCompanyApplicantSchema, c6 as SumSubDocType, c8 as SumSubFlowLevel, cr as SumSubGenerateExternalWebSdkLinkSchema, cf as SumSubImageId, ca as SumSubImageReviewResultSchema, cd as SumSubIndividualApplicantSchema, cn as SumSubMediaContentType, bR as SumSubReviewAnswer, cC as SumSubReviewRejectLabel, bT as SumSubReviewRejectType, c9 as SumSubReviewResultSchema, c4 as SumSubReviewStatus, cA as SumSubSimilarApplicantsSchema, bN as SumSubStep, cj as SumSubVerificationStepSchema, bK as SumSubWebhookSchema, cc as SumsubApplicantType, cb as SumsubApplicantTypes, ch as SumsubCompanyBeneficiaryGroup, cu as SumsubKybDataSchema, cz as SumsubKybSessionFlowSection, cy as SumsubKybSessionFlowSectionItem, cx as SumsubKybSessionFlowSectionStatus, ct as SumsubKycDataSchema, ci as SumsubStepStatus, cs as SumsubVideoCallData, c2 as SumsubWebhookInternalStatus, bv as SynapsProvider, aa as SynapsSessionErrorResponse, a3 as SynapsSessionEvent, a6 as SynapsSessionRequest, ab as SynapsSessionResponse, ae as SynapsStepErrorResponse, a4 as SynapsStepEvent, ac as SynapsStepRequest, af as SynapsStepResponse, bE as ToggleProviderInput, a8 as UNKNOWN_ERROR, d6 as UpdateKybSessionOutput, cO as UpdateKycSessionOutput, bC as UpdateProviderInput, bD as UpdateProviderResponse, aL as UpdateSearchEntitiesInput, aK as UpdateSearchInput, cP as VideoKycMetaData, bH as WEBHOOK_TYPES, D as WebhookPayload, bI as WebhookType, be as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, ar as mappingMatchTypeToLabel, a5 as typeToHumanReadable } from '../../dist/customers.schema-f232e577.esm.js'; | ||
export { a1 as AMLMetadata, A as ANALYSIS_TYPES, c as AnalysisType, bJ as ApplicantMemberOfSchema, bY as BENEFICIARY_TYPES, e as BLOCKCHAIN_TYPES, bL as BaseApplicantActionSchema, bj as BaseProvider, b_ as BeneficiaryCompanyCustomerClaims, b$ as BeneficiaryCompanyCustomerClaimsArray, bZ as BeneficiaryType, d1 as BeneficiaryVerificationStatus, d2 as BeneficiaryVerificationStatusArray, bg as BigConfig, p as BigCryptoChain, r as BigProperties, q as BigPropertiesLiteral, s as BigProperty, bm as BigProvider, u as BitRankRequest, v as BitRankVerified, x as BitRankVerifiedError, w as BitRankVerifiedErrorResponse, B as BitRankVerifiedResponse, f as Blockchain, aB as COMPLY_ADVANTAGE_COUNTRY_FIELD_SOURCES, aD as COMPLY_ADVANTAGE_DATE_OF_BIRTH_FIELD_SOURCES, az as COMPLY_ADVANTAGE_NATIONALITY_FIELD_SOURCES, as as COMPLY_ADVANTAGE_RESPONSE_MATCH_STATUS, ap as COMPLY_ADVANTAGE_RESPONSE_MATCH_TYPE, dk as ChainalysisApiError, bc as ChainalysisConfig, bp as ChainalysisProvider, dh as ChainalysisRegisterApiResponse, dl as ChainalysisRegisterResponse, df as ChainalysisRequest, dj as ChainalysisRiskAssessmentApiResponse, C as ChainalysisRiskAssessmentResponse, di as ChainalysisRiskLevel, ag as CoerceDateUTC, g as Coin, d0 as CompanyDocumentMetaData, aV as ComplyAdvantageAmlFullListing, aU as ComplyAdvantageAmlItemSource, aC as ComplyAdvantageCountryFieldSources, aE as ComplyAdvantageDateOfBirthFieldSources, aT as ComplyAdvantageKeyInformation, aO as ComplyAdvantageMedia, b2 as ComplyAdvantageMonitorSearchDataResponse, b4 as ComplyAdvantageMonitorSearchResponse, b3 as ComplyAdvantageMonitorSearchSuccessResponse, b5 as ComplyAdvantageMonitoredSearchUpdate, aA as ComplyAdvantageNationalityFieldSources, bu as ComplyAdvantageProvider, bt as ComplyAdvantageProviderConfigElement, bs as ComplyAdvantageProviderConfigFilters, br as ComplyAdvantageProviderConfigTypes, at as ComplyAdvantageReponseMatchStatus, aq as ComplyAdvantageResponseMatchType, aQ as ComplyAdvantageSearchDataResponse, aP as ComplyAdvantageSearchDataResponseHit, aW as ComplyAdvantageSearchEntitiesDataResponse, aY as ComplyAdvantageSearchEntitiesResponse, aX as ComplyAdvantageSearchEntitiesSuccessResponse, aS as ComplyAdvantageSearchErrorResponse, aZ as ComplyAdvantageSearchRequest, b as ComplyAdvantageSearchResponse, aR as ComplyAdvantageSearchSuccessResponse, a$ as ComplyAdvantageUpdateSearchEntitiesRequest, b1 as ComplyAdvantageUpdateSearchEntitiesResponse, b0 as ComplyAdvantageUpdateSearchEntitiesSuccessResponse, a_ as ComplyAdvantageUpdateSearchRequest, aM as ComplyAdvantageUser, bA as CreateProviderInput, bB as CreateProviderResponse, aF as CreateSearchInput, cU as CredentialMetadata, cT as CustomerContactInformationOutput, d7 as CustomerDocumentMetaData, d8 as CustomerStatusResults, b9 as DataProviderOptions, ba as DataProviders, bF as DeleteProviderInput, bG as DeleteProviderResponse, V as DocumentIdMetadata, U as DocumentIdType, T as DocumentIdTypes, co as DocumentMetadataSchema, a0 as EmailMetadata, E as EmailVerificationAnalysisResponse, dg as EnhancedChainalysisRequest, Q as File, cS as GetCredentialsOutput, d4 as GetKybSessionInput, d5 as GetKybSessionResponse, cM as GetKycSessionInput, cN as GetKycSessionResponse, cV as GetKycSessionResponseWithCredentialsMetadata, bz as GetProviderResponse, by as GetProvidersResponse, an as HIGH_RISK_TYPES, bW as INDIVIDUAL_BENEFICIARY_RELATIONS, b7 as IdentityProviderOptions, b8 as IdentityProviders, bX as IndividualBeneficiaryRelation, l as IpQualityAnalysisRequest, m as IpQualityAnalysisResponse, bf as IpQualityConfig, n as IpQualityServiceAnalysis, I as IpQualityServiceAnalysisResponse, o as IpQualityServiceErrorResponse, bq as IpqualityscoreProvider, cY as KYB_RESULTS, c_ as KYB_SESSION_STATUSES, cW as KYB_STEP_TYPES, cG as KYC_RESULTS, cI as KYC_SESSION_STATUSES, cE as KYC_STEP_TYPES, cZ as KybResult, c$ as KybSessionStatus, cX as KybStep, cH as KycResult, cJ as KycSessionStatus, cF as KycStep, _ as LivenessMetadata, ao as MEDIUM_RISK_TYPES, aH as MatchStatus, aG as MatchStatuses, aN as MatchTypeDetail, M as MergedProviders, de as MerkleAddressApiError, dd as MerkleAddressApiResponse, dc as MerkleAddressRequest, a as MerkleAddressResponse, db as MerkleBlockChainCodes, da as MerkleBlockChainNames, d9 as MerkleBlockChainTypes, bb as MerkleScienceConfig, bo as MerkleScienceProvider, N as NestedSession, bl as NexeraIdKYBProvider, bk as NexeraIdSSIDProvider, O as OBJECT_TYPES, d as ObjectType, $ as PhoneMetadata, P as PhoneVerificationAnalysisResponse, Y as ProofOfAddressDocumentType, X as ProofOfAddressDocumentTypes, Z as ProofOfAddressMetadata, cR as ProofOfResidenceDocumentType, cQ as ProofOfResidenceMetaData, bw as ProviderData, bx as ProviderDataProject, bi as ProviderIntegrationType, bh as ProviderIntegrationTypeOptions, b6 as ProviderWithoutConfig, a9 as RESULT_PARSER_ERROR, L as ReasonCode, K as ReasonCodes, t as RequestProperty, aJ as RiskLevel, aI as RiskLevels, R as RiskSeverity, al as SEARCH_FILTER_ADVERSE_MEDIA_TYPE, aj as SEARCH_FILTER_PEP_TYPE, ah as SEARCH_FILTER_SANCTION_TYPE, au as SEARCH_FILTER_TYPES, a7 as SESSION_NOT_FOUND, ad as STEP_NOT_FOUND, bO as SUMSUB_APPLICANT_TYPES, cg as SUMSUB_COMPANY_BENEFICIARY_GROUP, c5 as SUMSUB_DOC_TYPES, c7 as SUMSUB_FLOW_LEVEL, cw as SUMSUB_KYB_SESSION_FLOW_SECTION_STATUS, cm as SUMSUB_MEDIA_CONTENT_TYPES, bQ as SUMSUB_REVIEW_ANSWERS, cB as SUMSUB_REVIEW_REJECT_LABELS, cD as SUMSUB_REVIEW_REJECT_LABELS_DESCRIPTION, bS as SUMSUB_REVIEW_REJECT_TYPES, c3 as SUMSUB_REVIEW_STATUSES, bM as SUMSUB_STEPS, c1 as SUMSUB_WEBHOOK_INTERNAL_STATUS, j as ScorechainAnalysis, bd as ScorechainConfig, i as ScorechainError, h as ScorechainErrorResponse, bn as ScorechainProvider, k as ScoringAnalysisRequest, S as ScoringAnalysisResponse, ax as SearchEntityType, aw as SearchEntityTypes, am as SearchFilterAdverseMediaType, ak as SearchFilterPepType, ai as SearchFilterSanctionType, av as SearchFilterType, ay as SearchFilters, d3 as SelectKybSession, cK as SelectKycSession, cL as SelectKycSessionStep, F as Session, G as SessionWithoutSteps, z as Status, y as Statuses, a2 as Step, J as StepType, H as StepTypes, bU as SumSubAddress, bV as SumSubApplicantInfo, cl as SumSubApplicantModerationStatusSchema, cq as SumSubApplicantResetSchema, cp as SumSubApplicantReviewStatusSchema, cv as SumSubApplicantSchema, bP as SumSubApplicantType, ck as SumSubApplicantVerificationStepSchema, c0 as SumSubCompanyApplicantInfo, ce as SumSubCompanyApplicantSchema, c6 as SumSubDocType, c8 as SumSubFlowLevel, cr as SumSubGenerateExternalWebSdkLinkSchema, cf as SumSubImageId, ca as SumSubImageReviewResultSchema, cd as SumSubIndividualApplicantSchema, cn as SumSubMediaContentType, bR as SumSubReviewAnswer, cC as SumSubReviewRejectLabel, bT as SumSubReviewRejectType, c9 as SumSubReviewResultSchema, c4 as SumSubReviewStatus, cA as SumSubSimilarApplicantsSchema, bN as SumSubStep, cj as SumSubVerificationStepSchema, bK as SumSubWebhookSchema, cc as SumsubApplicantType, cb as SumsubApplicantTypes, ch as SumsubCompanyBeneficiaryGroup, cu as SumsubKybDataSchema, cz as SumsubKybSessionFlowSection, cy as SumsubKybSessionFlowSectionItem, cx as SumsubKybSessionFlowSectionStatus, ct as SumsubKycDataSchema, ci as SumsubStepStatus, cs as SumsubVideoCallData, c2 as SumsubWebhookInternalStatus, bv as SynapsProvider, aa as SynapsSessionErrorResponse, a3 as SynapsSessionEvent, a6 as SynapsSessionRequest, ab as SynapsSessionResponse, ae as SynapsStepErrorResponse, a4 as SynapsStepEvent, ac as SynapsStepRequest, af as SynapsStepResponse, bE as ToggleProviderInput, a8 as UNKNOWN_ERROR, d6 as UpdateKybSessionOutput, cO as UpdateKycSessionOutput, bC as UpdateProviderInput, bD as UpdateProviderResponse, aL as UpdateSearchEntitiesInput, aK as UpdateSearchInput, cP as VideoKycMetaData, bH as WEBHOOK_TYPES, D as WebhookPayload, bI as WebhookType, be as WorkflowsScorechainConfig, W as WorkflowsScoringAnalysisRequest, ar as mappingMatchTypeToLabel, a5 as typeToHumanReadable } from '../../dist/customers.schema-04c82905.esm.js'; | ||
import 'zod'; | ||
import '../../dist/identity-api.schema-2df73bbd.esm.js'; | ||
import '../../dist/identity-api.schema-7b0f0ca2.esm.js'; | ||
import 'nanoid'; |
@@ -5,4 +5,4 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-8832ddec.cjs.dev.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-c3ccca7b.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-1e3650cd.cjs.dev.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-e968d5ca.cjs.dev.js'); | ||
require('zod'); | ||
@@ -9,0 +9,0 @@ require('nanoid'); |
@@ -5,4 +5,4 @@ 'use strict'; | ||
var identityApi_schema = require('../../dist/identity-api.schema-181d93d3.cjs.prod.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-9951d168.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-e3e3d04b.cjs.prod.js'); | ||
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-b4dfaa27.cjs.prod.js'); | ||
require('zod'); | ||
@@ -9,0 +9,0 @@ require('nanoid'); |
@@ -1,4 +0,4 @@ | ||
export { ak as Alpha2Country, dY as CredentialMediaType, dT as CredentialNames, dS as CredentialSchemas, dW as CredentialType, C as CredentialTypes, dR as GenericVerifiableCredentialSchema, dE as ID3CredentialSubjectSchema, dO as IDImageCredentialSubjectSchema, dN as IDInformationCredentialSubjectSchema, dF as IDScanCredentialSubjectSchema, dG as IDScanPassportCredentialSubjectSchema, dH as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dU as NexeraCredentialType, dM as OLD_AMLScreeningsResultsCredentialSubjectSchema, dI as OLD_IDImageCredentialSubjectSchema, dJ as OLD_IDInformationCredentialSubjectSchema, dK as OLD_ProofOfResidenceCredentialSubjectSchema, dL as OLD_SelfieImageCredentialSubjectSchema, dQ as ProofOfResidenceCredentialSubjectSchema, dP as SelfieImageCredentialSubjectSchema, dX as VerifiableCredential, al as countryISO3toISO2Mapping, dV as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-2df73bbd.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-c150e92a.esm.js'; | ||
export { ak as Alpha2Country, d$ as CredentialMediaType, dW as CredentialNames, dV as CredentialSchemas, dZ as CredentialType, C as CredentialTypes, dU as GenericVerifiableCredentialSchema, dH as ID3CredentialSubjectSchema, dR as IDImageCredentialSubjectSchema, dQ as IDInformationCredentialSubjectSchema, dI as IDScanCredentialSubjectSchema, dJ as IDScanPassportCredentialSubjectSchema, dK as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dX as NexeraCredentialType, dP as OLD_AMLScreeningsResultsCredentialSubjectSchema, dL as OLD_IDImageCredentialSubjectSchema, dM as OLD_IDInformationCredentialSubjectSchema, dN as OLD_ProofOfResidenceCredentialSubjectSchema, dO as OLD_SelfieImageCredentialSubjectSchema, dT as ProofOfResidenceCredentialSubjectSchema, dS as SelfieImageCredentialSubjectSchema, d_ as VerifiableCredential, al as countryISO3toISO2Mapping, dY as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-7b0f0ca2.esm.js'; | ||
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-6063fda0.esm.js'; | ||
import 'zod'; | ||
import 'nanoid'; |
@@ -6,4 +6,4 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-8832ddec.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-bfd75809.cjs.dev.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-1e3650cd.cjs.dev.js'); | ||
var customers_schema = require('../../dist/customers.schema-dbeb7313.cjs.dev.js'); | ||
var zodToJsonSchema = require('zod-to-json-schema'); | ||
@@ -10,0 +10,0 @@ require('nanoid'); |
@@ -6,4 +6,4 @@ 'use strict'; | ||
var zod = require('zod'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-181d93d3.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-c1a71aac.cjs.prod.js'); | ||
var identityApi_schema = require('../../dist/identity-api.schema-e3e3d04b.cjs.prod.js'); | ||
var customers_schema = require('../../dist/customers.schema-1b00d66a.cjs.prod.js'); | ||
var zodToJsonSchema = require('zod-to-json-schema'); | ||
@@ -10,0 +10,0 @@ require('nanoid'); |
import { z } from 'zod'; | ||
import { ae as UuidString, dy as ExternalCustomerId, aq as RiskScoreType, as as CustomerType, ay as CustomerOnboardingLevel, aA as CustomerStatus, ai as ISO3CountryCode, a2 as BlockchainAddress, bC as RuleResultStatus, dR as GenericVerifiableCredentialSchema, d_ as _toArray, dZ as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-2df73bbd.esm.js'; | ||
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/customers.schema-f232e577.esm.js'; | ||
import { ae as UuidString, dB as ExternalCustomerId, aq as RiskScoreType, as as CustomerType, ay as CustomerOnboardingLevel, aA as CustomerStatus, ai as ISO3CountryCode, a2 as BlockchainAddress, bC as RuleResultStatus, dU as GenericVerifiableCredentialSchema, e1 as _toArray, e0 as _toConsumableArray, ad as EnvironmentSchema } from '../../dist/identity-api.schema-7b0f0ca2.esm.js'; | ||
import { M as MergedProviders, S as ScoringAnalysisResponse, B as BitRankVerifiedResponse, a as MerkleAddressResponse, C as ChainalysisRiskAssessmentResponse, I as IpQualityServiceAnalysisResponse, b as ComplyAdvantageSearchResponse } from '../../dist/customers.schema-04c82905.esm.js'; | ||
import { zodToJsonSchema } from 'zod-to-json-schema'; | ||
@@ -5,0 +5,0 @@ import 'nanoid'; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13515413
119523