Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nexeraid/identity-schemas

Package Overview
Dependencies
Maintainers
0
Versions
188
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexeraid/identity-schemas - npm Package Compare versions

Comparing version 1.12.9-dev to 1.12.10-dev

dist/identity-api.schema-5844b144.cjs.prod.js

78

dist/declarations/src/identity/txAuthData.schema.d.ts

@@ -42,14 +42,10 @@ import { z } from "zod";

export type TxSignatureResponse = z.infer<typeof TxSignatureResponse>;
export declare const GetTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{
blockExpiration: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
blockExpiration?: number | undefined;
}, {
blockExpiration?: number | undefined;
}>, z.ZodUnion<[z.ZodObject<{
export declare const GetTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObject<{
isAuthorized: z.ZodLiteral<true>;
signature: z.ZodEffects<z.ZodString, string, string>;
payload: z.ZodString;
blockExpiration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -59,2 +55,3 @@ payload: string;

signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -71,3 +68,3 @@ payload: string;

errorMessage?: any;
}>]>>;
}>]>;
export type GetTxAuthDataSignatureResponse = z.infer<typeof GetTxAuthDataSignatureResponse>;

@@ -111,16 +108,13 @@ export declare const TezosTxAuthInput: z.ZodObject<{

export type TezosTxSignatureResponse = z.infer<typeof TezosTxSignatureResponse>;
export declare const GetTezosTxAuthDataSignatureResponse: z.ZodIntersection<z.ZodObject<{
blockExpiration: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
blockExpiration?: number | undefined;
}, {
blockExpiration?: number | undefined;
}>, z.ZodUnion<[z.ZodObject<{
export declare const GetTezosTxAuthDataSignatureResponse: z.ZodUnion<[z.ZodObject<{
isAuthorized: z.ZodLiteral<true>;
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
blockExpiration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
signature: `edsig${string}`;
blockExpiration: number;
isAuthorized: true;
}, {
signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -136,3 +130,3 @@ }>, z.ZodObject<{

errorMessage?: any;
}>]>>;
}>]>;
export type GetTezosTxAuthDataSignatureResponse = z.infer<typeof GetTezosTxAuthDataSignatureResponse>;

@@ -283,14 +277,10 @@ export declare const ExtendedTxAuthInput: z.ZodIntersection<z.ZodObject<{

export type AnyTxAuthInput = z.infer<typeof AnyTxAuthInput>;
export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
blockExpiration: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
blockExpiration?: number | undefined;
}, {
blockExpiration?: number | undefined;
}>, z.ZodUnion<[z.ZodObject<{
export declare const ExtendedTxSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
isAuthorized: z.ZodLiteral<true>;
signature: z.ZodEffects<z.ZodString, string, string>;
payload: z.ZodString;
blockExpiration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -300,2 +290,3 @@ payload: string;

signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -312,3 +303,3 @@ payload: string;

errorMessage?: any;
}>]>>, z.ZodObject<{
}>]>, z.ZodObject<{
namespace: z.ZodLiteral<"eip155">;

@@ -324,16 +315,13 @@ userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;

export type ExtendedTxSignatureResponse = z.infer<typeof ExtendedTxSignatureResponse>;
export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
blockExpiration: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
blockExpiration?: number | undefined;
}, {
blockExpiration?: number | undefined;
}>, z.ZodUnion<[z.ZodObject<{
export declare const ExtendedTezosTxSignatureResponse: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
isAuthorized: z.ZodLiteral<true>;
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
blockExpiration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
signature: `edsig${string}`;
blockExpiration: number;
isAuthorized: true;
}, {
signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -349,3 +337,3 @@ }>, z.ZodObject<{

errorMessage?: any;
}>]>>, z.ZodObject<{
}>]>, z.ZodObject<{
namespace: z.ZodLiteral<"tezos">;

@@ -361,14 +349,10 @@ userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;

export type ExtendedTezosTxSignatureResponse = z.infer<typeof ExtendedTezosTxSignatureResponse>;
export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
blockExpiration: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
blockExpiration?: number | undefined;
}, {
blockExpiration?: number | undefined;
}>, z.ZodUnion<[z.ZodObject<{
export declare const AnyTxSignatureResponse: z.ZodUnion<[z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
isAuthorized: z.ZodLiteral<true>;
signature: z.ZodEffects<z.ZodString, string, string>;
payload: z.ZodString;
blockExpiration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -378,2 +362,3 @@ payload: string;

signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -390,3 +375,3 @@ payload: string;

errorMessage?: any;
}>]>>, z.ZodObject<{
}>]>, z.ZodObject<{
namespace: z.ZodLiteral<"eip155">;

@@ -400,16 +385,13 @@ userAddress: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>;

userAddress: string;
}>>, z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
blockExpiration: z.ZodOptional<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
blockExpiration?: number | undefined;
}, {
blockExpiration?: number | undefined;
}>, z.ZodUnion<[z.ZodObject<{
}>>, z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
isAuthorized: z.ZodLiteral<true>;
signature: z.ZodEffects<z.ZodString, `edsig${string}`, string>;
blockExpiration: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
signature: `edsig${string}`;
blockExpiration: number;
isAuthorized: true;
}, {
signature: string;
blockExpiration: number;
isAuthorized: true;

@@ -425,3 +407,3 @@ }>, z.ZodObject<{

errorMessage?: any;
}>]>>, z.ZodObject<{
}>]>, z.ZodObject<{
namespace: z.ZodLiteral<"tezos">;

@@ -428,0 +410,0 @@ userAddress: z.ZodEffects<z.ZodString, `tz${string}`, string>;

@@ -6,3 +6,3 @@ 'use strict';

var zod = require('zod');
var identityApi_schema = require('./identity-api.schema-46a66e5e.cjs.dev.js');
var identityApi_schema = require('./identity-api.schema-f78923c5.cjs.dev.js');
require('nanoid');

@@ -9,0 +9,0 @@

@@ -6,3 +6,3 @@ 'use strict';

var zod = require('zod');
var identityApi_schema = require('./identity-api.schema-b63a1396.cjs.prod.js');
var identityApi_schema = require('./identity-api.schema-5844b144.cjs.prod.js');
require('nanoid');

@@ -9,0 +9,0 @@

import { z } from 'zod';
import { C as CredentialTypes } from './identity-api.schema-38f27d6b.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, cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalUserInformationParams, z as AddressSchema, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, au as AppId, I as AptosAddress, J as AptosSignature, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cs as BOOLEAN_OPERATORS, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, ct as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM 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, as as EmailId, ad as EnvironmentSchema, h as EvmChainId, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, aO as ExternalClientId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, cz as IDInformation, ai as ISO3CountryCode, aI as Identifier, c0 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 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, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, aL as OrganizationId, _ as P2Signature, aG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cD as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, d5 as ProjectAuthorizationData, c9 as ProofData, y as PublicKey, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b4 as StartCompletedNotification, bM as StartFlowRequest, aq as StorageId, w as String0x, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, D as TxHash, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, ae as UuidString, aB as VerificationMode, aA as VerificationModes, at as WalletId, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, v as isValidAddress, an as isoCountriesNameFromISO2, cl as operatorDisplayMap, ao as parseISO3CountryCode, cf as parseIden3Message, cg as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-38f27d6b.esm.js';
import { C as CredentialTypes } from './identity-api.schema-b8687390.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, cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalUserInformationParams, z as AddressSchema, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, au as AppId, I as AptosAddress, J as AptosSignature, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cs as BOOLEAN_OPERATORS, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, ct as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM 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, as as EmailId, ad as EnvironmentSchema, h as EvmChainId, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, aO as ExternalClientId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, cz as IDInformation, ai as ISO3CountryCode, aI as Identifier, c0 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 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, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, aL as OrganizationId, _ as P2Signature, aG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cD as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, d5 as ProjectAuthorizationData, c9 as ProofData, y as PublicKey, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b4 as StartCompletedNotification, bM as StartFlowRequest, aq as StorageId, w as String0x, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, D as TxHash, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, ae as UuidString, aB as VerificationMode, aA as VerificationModes, at as WalletId, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, v as isValidAddress, an as isoCountriesNameFromISO2, cl as operatorDisplayMap, ao as parseISO3CountryCode, cf as parseIden3Message, cg as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-b8687390.esm.js';
import 'nanoid';

@@ -5,0 +5,0 @@

{
"name": "@nexeraid/identity-schemas",
"version": "1.12.9",
"version": "1.12.10",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [],

@@ -5,3 +5,3 @@ 'use strict';

var identityApi_schema = require('../../dist/identity-api.schema-46a66e5e.cjs.dev.js');
var identityApi_schema = require('../../dist/identity-api.schema-f78923c5.cjs.dev.js');
require('zod');

@@ -8,0 +8,0 @@ require('nanoid');

@@ -5,3 +5,3 @@ 'use strict';

var identityApi_schema = require('../../dist/identity-api.schema-b63a1396.cjs.prod.js');
var identityApi_schema = require('../../dist/identity-api.schema-5844b144.cjs.prod.js');
require('zod');

@@ -8,0 +8,0 @@ require('nanoid');

@@ -1,3 +0,3 @@

export { cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, cs as BOOLEAN_OPERATORS, ct as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, cz as IDInformation, c0 as IdentityAppMessage, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, cD as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, d5 as ProjectAuthorizationData, c9 as ProofData, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, b4 as StartCompletedNotification, bM as StartFlowRequest, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, cl as operatorDisplayMap, cf as parseIden3Message, cg as parseSessionIdFromUrl } from '../../dist/identity-api.schema-38f27d6b.esm.js';
export { cm as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, ch as AllCredentialAttributes, ci as AllCredentialValues, d4 as AllScenarioExecutionAuthorizationData, cX as AnyTxAuthInput, c_ as AnyTxSignatureResponse, cn as ArrayOperator, cd as AuthQrCodeData, bV as AuthSession, c8 as AuthorizationRequestMessage, cb as AuthorizationResponseMessage, bc as AvailableFlow, cs as BOOLEAN_OPERATORS, ct as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, bW as ChallengeResponse, aV as CloseScreenNotification, bE as ComplianceImplementationStepsInput, d2 as CreateAuthRequestProps, cH as CreateQueryConfigurationInput, cI as CreateQueryConfigurationResponse, d3 as CreateZKProofRequestProps, cc as CredentialQrCodeData, cu as DATE_OPERATORS, bd as DataAvailableOnStart, cv as DateOperator, cL as DeleteQueryConfigurationInput, cM as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, cW as ExtendedTezosTxAuthInput, cZ as ExtendedTezosTxSignatureResponse, cV as ExtendedTxAuthInput, cY as ExtendedTxSignatureResponse, bG as GetCredentialsRequest, bH as GetCredentialsResponse, cU as GetTezosTxAuthDataSignatureResponse, cR as GetTxAuthDataSignatureResponse, bP as GetTxAuthSigRequest, bR as GetTxAuthSigRequestTezos, bQ as GetTxAuthSigResponse, bS as GetTxAuthSigResponseTezos, c1 as HostMessage, bT as HostRequestMessage, bh as HostResponseMessage, cz as IDInformation, c0 as IdentityAppMessage, c2 as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bU as IdentityResponseMessage, bZ as IdentitySdkMessage, b_ as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bN as IsVerifiedRequest, bO as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, c5 as MediaType, c6 as MediaTypePID, cq as NUMERIC_OPERATORS, cG as NonParsedQueryConfiguration, cr as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, d1 as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, d6 as OnChainZKP, d7 as OnChainZKPFromNexeraID, d9 as OnChainZKPPayload, d8 as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cj as Operator, bk as OperatorToChallengeQueryOperator, cD as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bJ as PolygonIdRequest, bI as PolygonIdRequestData, bL as PolygonIdResponse, bK as PolygonIdResponseData, d5 as ProjectAuthorizationData, c9 as ProofData, ce as QrCodeLinkWithSchemaType, cA as QueryConfig, cC as QueryConfigSimplified, cE as QueryConfigSimplifiedParsed, cF as QueryConfiguration, cO as QueryCredentialType, cN as QueryCredentialTypes, cB as QueryType, c3 as RequiredDataRowSchema, c4 as RequiredVerificationData, bz as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bC as RuleResultStatus, bD as RuleResultStatusLabels, bB as RuleResultStatuses, da as SCENARIO_AUTHORIZATION_STATUSES, co as STRING_OPERATORS, cw as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, db as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bA as ScenarioExecutionResponse, by as ScenarioStatus, bx as ScenarioStatuses, bw as ScenarioType, bv as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bF as SimplifiedCredential, b4 as StartCompletedNotification, bM as StartFlowRequest, cp as StringOperator, cx as SupportedType, cy as SupportedTypes, cS as TezosTxAuthInput, cT as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, bY as TrxSignatureGatingRequest, b$ as TrxSignatureGatingResponse, cP as TxAuthInput, cQ as TxSignatureResponse, cJ as UpdateQueryConfigurationInput, cK as UpdateQueryConfigurationResponse, bX as WalletSignResponse, dd as WalletSignatureData, dc as WalletSignatureResponse, ck as ZKPOperator, c$ as ZKPRequest, d0 as ZKPRequestFromZKVerifier, c7 as ZeroKnowledgeProofRequest, ca as ZeroKnowledgeProofResponse, cl as operatorDisplayMap, cf as parseIden3Message, cg as parseSessionIdFromUrl } from '../../dist/identity-api.schema-b8687390.esm.js';
import 'zod';
import 'nanoid';
{
"name": "@nexeraid/identity-schemas",
"version": "1.12.9-dev",
"version": "1.12.10-dev",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [],

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc