@nexeraid/identity-schemas 1.12.18-dev → 1.12.20-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +183 -1422
- package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
- package/dist/declarations/src/nexeraSSID.schema.d.ts +38 -160
- package/dist/declarations/src/nexeraSSID.schema.d.ts.map +1 -1
- package/dist/{frontend-utilities.schema-89d25d69.esm.js → frontend-utilities.schema-529049f7.esm.js} +1 -1
- package/dist/{frontend-utilities.schema-caaeef3b.cjs.prod.js → frontend-utilities.schema-abfeae8c.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-50fdec6e.cjs.dev.js → frontend-utilities.schema-d6e21fa5.cjs.dev.js} +1 -1
- package/dist/{identity-api.schema-a34ad87c.esm.js → identity-api.schema-25e04205.esm.js} +22 -25
- package/dist/{identity-api.schema-9db90005.cjs.dev.js → identity-api.schema-4615eb5b.cjs.dev.js} +22 -27
- package/dist/{identity-api.schema-582be049.cjs.prod.js → identity-api.schema-bf6bbbf4.cjs.prod.js} +22 -27
- package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -5
- package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -5
- package/dist/nexeraid-identity-schemas.esm.js +3 -3
- package/dist/package.json +1 -1
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -4
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -4
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
package/dist/{identity-api.schema-582be049.cjs.prod.js → identity-api.schema-bf6bbbf4.cjs.prod.js}
RENAMED
|
@@ -2438,6 +2438,11 @@ var IdentityDocumentOptionsType = zod.z["enum"](IDENTITY_DOCUMENT_OPTIONS);
|
|
|
2438
2438
|
var PERSONAL_INFORMATION_FIELDS = ["EMAIL", "PHONE", "TWITTER", "DISCORD", "TELEGRAM"];
|
|
2439
2439
|
var PersonalInformationFieldsIdentityDocuments = zod.z["enum"](PERSONAL_INFORMATION_FIELDS);
|
|
2440
2440
|
var Identifier = zod.z.union([zod.z.literal("verification"), zod.z.literal("management")]);
|
|
2441
|
+
|
|
2442
|
+
/**
|
|
2443
|
+
* Represents the additional data that can be attached to a customer
|
|
2444
|
+
*/
|
|
2445
|
+
|
|
2441
2446
|
var AdditionalCustomerInformationParams = zod.z.object({
|
|
2442
2447
|
email: zod.z.string().email().optional(),
|
|
2443
2448
|
phone: zod.z.string().min(4).optional(),
|
|
@@ -2499,6 +2504,17 @@ var IdentityAppV2Web2JWT = IdentityAppV2BaseJWT.extend({
|
|
|
2499
2504
|
var IdentityWidgetAccessToken_NEW = zod.z.union([IdentityAppV2Web3JWT, IdentityAppV2Web2JWT]);
|
|
2500
2505
|
var IdentityWidgetSessionToken = zod.z.union([IdentityWidgetAccessToken, IdentityWidgetAccessToken_NEW]);
|
|
2501
2506
|
|
|
2507
|
+
/**
|
|
2508
|
+
* The parameters required to create a new configuration in web2 mode.
|
|
2509
|
+
*/
|
|
2510
|
+
|
|
2511
|
+
var Web2CreateSessionParams = zod.z.object({
|
|
2512
|
+
workflowId: WorkflowId,
|
|
2513
|
+
// required in web2 because we don't have the wallet address
|
|
2514
|
+
externalCustomerId: ExternalCustomerId,
|
|
2515
|
+
additionalInformation: AdditionalCustomerInformationParams.optional()
|
|
2516
|
+
});
|
|
2517
|
+
|
|
2502
2518
|
// these are attributes are marked optional to be better presented by openapi.
|
|
2503
2519
|
// this is hopefully fixed in the refined version of the schema
|
|
2504
2520
|
var ChallengeQueryOperators = zod.z.object({
|
|
@@ -3001,6 +3017,10 @@ var CUSTOMER_AUTOMATION_REASONS = {
|
|
|
3001
3017
|
}
|
|
3002
3018
|
};
|
|
3003
3019
|
|
|
3020
|
+
/**
|
|
3021
|
+
* Wallet challenge parameters
|
|
3022
|
+
*/
|
|
3023
|
+
|
|
3004
3024
|
var WalletChallengeRequest = zod.z.object({
|
|
3005
3025
|
address: BlockchainAddress,
|
|
3006
3026
|
namespace: BlockchainNamespace,
|
|
@@ -3083,30 +3103,7 @@ var GetCustomerStatusResponse = zod.z.object({
|
|
|
3083
3103
|
type: zod.z.literal("getCustomerStatusResponse"),
|
|
3084
3104
|
data: zod.z.union([CustomerStatus, zod.z["null"]()])
|
|
3085
3105
|
});
|
|
3086
|
-
var
|
|
3087
|
-
type: zod.z.literal("verificationBegin")
|
|
3088
|
-
});
|
|
3089
|
-
var ValidVerificationCompleteData = zod.z.union([zod.z.object({
|
|
3090
|
-
type: zod.z.literal("onlineVerification"),
|
|
3091
|
-
verification: SdkVerificationOutput,
|
|
3092
|
-
isVerified: zod.z["boolean"]()
|
|
3093
|
-
}), zod.z.object({
|
|
3094
|
-
type: zod.z.literal("zkpVerification"),
|
|
3095
|
-
verification: SdkVerificationOutput,
|
|
3096
|
-
isVerified: zod.z["boolean"]()
|
|
3097
|
-
}), zod.z.object({
|
|
3098
|
-
type: zod.z.literal("onChainVerification"),
|
|
3099
|
-
verificationHashes: zod.z.array(zod.z.string()),
|
|
3100
|
-
isVerified: zod.z["boolean"]()
|
|
3101
|
-
})]);
|
|
3102
|
-
var VerificationCompleteNotification = zod.z.object({
|
|
3103
|
-
type: zod.z.literal("verificationComplete"),
|
|
3104
|
-
data: zod.z.union([ValidVerificationCompleteData, zod.z.object({
|
|
3105
|
-
error: zod.z.unknown(),
|
|
3106
|
-
verification: zod.z["null"]()
|
|
3107
|
-
})])
|
|
3108
|
-
});
|
|
3109
|
-
var IdentityAppMessage = zod.z.union([IdentityAppLoadedNotification, IdentityAppConfiguredNotification, WalletSignRequest, TxAuthDataSignatureResponse, GetCustomerStatusResponse, VerificationBeginNotification, VerificationCompleteNotification,
|
|
3106
|
+
var IdentityAppMessage = zod.z.union([IdentityAppLoadedNotification, IdentityAppConfiguredNotification, WalletSignRequest, TxAuthDataSignatureResponse, GetCustomerStatusResponse,
|
|
3110
3107
|
// `identifier` is a technical detail that should not be exposed to the app
|
|
3111
3108
|
KycCompletionNotification.omit({
|
|
3112
3109
|
identifier: true
|
|
@@ -3506,10 +3503,7 @@ exports.TxSignatureResponse = TxSignatureResponse;
|
|
|
3506
3503
|
exports.UpdateQueryConfigurationInput = UpdateQueryConfigurationInput;
|
|
3507
3504
|
exports.UpdateQueryConfigurationResponse = UpdateQueryConfigurationResponse;
|
|
3508
3505
|
exports.UuidString = UuidString;
|
|
3509
|
-
exports.ValidVerificationCompleteData = ValidVerificationCompleteData;
|
|
3510
3506
|
exports.VerifiableCredential = VerifiableCredential;
|
|
3511
|
-
exports.VerificationBeginNotification = VerificationBeginNotification;
|
|
3512
|
-
exports.VerificationCompleteNotification = VerificationCompleteNotification;
|
|
3513
3507
|
exports.VerificationMode = VerificationMode;
|
|
3514
3508
|
exports.VerificationModes = VerificationModes;
|
|
3515
3509
|
exports.VerificationOutput = VerificationOutput;
|
|
@@ -3520,6 +3514,7 @@ exports.WalletId = WalletId;
|
|
|
3520
3514
|
exports.WalletSignResponse = WalletSignResponse;
|
|
3521
3515
|
exports.WalletSignatureData = WalletSignatureData;
|
|
3522
3516
|
exports.WalletSignatureResponse = WalletSignatureResponse;
|
|
3517
|
+
exports.Web2CreateSessionParams = Web2CreateSessionParams;
|
|
3523
3518
|
exports.WorkflowId = WorkflowId;
|
|
3524
3519
|
exports.WorkspaceId = WorkspaceId;
|
|
3525
3520
|
exports.ZKPOperator = ZKPOperator;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
7
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
6
|
+
var identityApi_schema = require('./identity-api.schema-4615eb5b.cjs.dev.js');
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-d6e21fa5.cjs.dev.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -343,10 +343,7 @@ exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
|
343
343
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
344
344
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
345
345
|
exports.UuidString = identityApi_schema.UuidString;
|
|
346
|
-
exports.ValidVerificationCompleteData = identityApi_schema.ValidVerificationCompleteData;
|
|
347
346
|
exports.VerifiableCredential = identityApi_schema.VerifiableCredential;
|
|
348
|
-
exports.VerificationBeginNotification = identityApi_schema.VerificationBeginNotification;
|
|
349
|
-
exports.VerificationCompleteNotification = identityApi_schema.VerificationCompleteNotification;
|
|
350
347
|
exports.VerificationMode = identityApi_schema.VerificationMode;
|
|
351
348
|
exports.VerificationModes = identityApi_schema.VerificationModes;
|
|
352
349
|
exports.VerificationOutput = identityApi_schema.VerificationOutput;
|
|
@@ -357,6 +354,7 @@ exports.WalletId = identityApi_schema.WalletId;
|
|
|
357
354
|
exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
|
|
358
355
|
exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
|
|
359
356
|
exports.WalletSignatureResponse = identityApi_schema.WalletSignatureResponse;
|
|
357
|
+
exports.Web2CreateSessionParams = identityApi_schema.Web2CreateSessionParams;
|
|
360
358
|
exports.WorkflowId = identityApi_schema.WorkflowId;
|
|
361
359
|
exports.WorkspaceId = identityApi_schema.WorkspaceId;
|
|
362
360
|
exports.ZKPOperator = identityApi_schema.ZKPOperator;
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
5
|
var zod = require('zod');
|
|
6
|
-
var identityApi_schema = require('./identity-api.schema-
|
|
7
|
-
var frontendUtilities_schema = require('./frontend-utilities.schema-
|
|
6
|
+
var identityApi_schema = require('./identity-api.schema-bf6bbbf4.cjs.prod.js');
|
|
7
|
+
var frontendUtilities_schema = require('./frontend-utilities.schema-abfeae8c.cjs.prod.js');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
10
10
|
var decodeUint8Array = function decodeUint8Array(data) {
|
|
@@ -343,10 +343,7 @@ exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
|
343
343
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
344
344
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
345
345
|
exports.UuidString = identityApi_schema.UuidString;
|
|
346
|
-
exports.ValidVerificationCompleteData = identityApi_schema.ValidVerificationCompleteData;
|
|
347
346
|
exports.VerifiableCredential = identityApi_schema.VerifiableCredential;
|
|
348
|
-
exports.VerificationBeginNotification = identityApi_schema.VerificationBeginNotification;
|
|
349
|
-
exports.VerificationCompleteNotification = identityApi_schema.VerificationCompleteNotification;
|
|
350
347
|
exports.VerificationMode = identityApi_schema.VerificationMode;
|
|
351
348
|
exports.VerificationModes = identityApi_schema.VerificationModes;
|
|
352
349
|
exports.VerificationOutput = identityApi_schema.VerificationOutput;
|
|
@@ -357,6 +354,7 @@ exports.WalletId = identityApi_schema.WalletId;
|
|
|
357
354
|
exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
|
|
358
355
|
exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
|
|
359
356
|
exports.WalletSignatureResponse = identityApi_schema.WalletSignatureResponse;
|
|
357
|
+
exports.Web2CreateSessionParams = identityApi_schema.Web2CreateSessionParams;
|
|
360
358
|
exports.WorkflowId = identityApi_schema.WorkflowId;
|
|
361
359
|
exports.WorkspaceId = identityApi_schema.WorkspaceId;
|
|
362
360
|
exports.ZKPOperator = identityApi_schema.ZKPOperator;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
import { C as CredentialTypes } from './identity-api.schema-
|
|
3
|
-
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES,
|
|
4
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-
|
|
2
|
+
import { C as CredentialTypes } from './identity-api.schema-25e04205.esm.js';
|
|
3
|
+
export { q as ACTIVE_COSMOS_CHAIN_VALUES, A as ACTIVE_EVM_CHAIN_VALUES, m as ACTIVE_TEZOS_CHAIN_VALUES, aj as ALPHA_2_COUNTRIES, ct as ARRAY_OPERATORS, bc as AVAILABLE_FLOWS, aJ as AdditionalCustomerInformationParams, z as AddressSchema, co as AllCredentialAttributes, cp as AllCredentialValues, db as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d5 as AnyTxAuthDataSignatureResponse, d2 as AnyTxAuthInput, au as AppId, I as AptosAddress, J as AptosSignature, cu as ArrayOperator, ck as AuthQrCodeData, b_ as AuthSession, cf as AuthorizationRequestMessage, ci as AuthorizationResponseMessage, bd as AvailableFlow, a4 as BLOCKCHAIN_NAMESPACES, a6 as BLOCKCHAIN_NAMESPACES_NAMES, aa as BLOCKCHAIN_NAMESPACE_TO_NAME, a9 as BLOCKCHAIN_NAME_TO_NAMESPACE, cz as BOOLEAN_OPERATORS, dy as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cA as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, dz as CUSTOMERS_CHARTS, dD as CUSTOMER_AUTOMATION_REASONS, dB as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bk as ChallengeQueryOperator, bm as ChallengeQueryOperatorToOperator, bj as ChallengeQueryOperators, bn as ChallengeQuerySchema, b$ as ChallengeResponse, aW as CloseScreenNotification, bI as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, d9 as CreateAuthRequestProps, cO as CreateQueryConfigurationInput, cP as CreateQueryConfigurationResponse, da as CreateZKProofRequestProps, dY as CredentialMediaType, dT as CredentialNames, cj as CredentialQrCodeData, dS as CredentialSchemas, dW as CredentialType, C as CredentialTypes, dv as CustomerOnboardingLevel, du as CustomerOnboardingLevels, dx as CustomerStatus, dw as CustomerStatuses, dC as CustomerTableColumn, dp as CustomerType, dn as CustomerTypes, dA as CustomersChartType, cB as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, be as DataAvailableOnStart, cC as DateOperator, cS as DeleteQueryConfigurationInput, cT 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, bp as ExecuteChallengeQueryConfig, bo as ExecuteChallengeQueryInput, br as ExecuteChallengeQueryResponse, d4 as ExtendedTezosTxAuthDataSignatureResponse, d1 as ExtendedTezosTxAuthInput, d3 as ExtendedTxAuthDataSignatureResponse, d0 as ExtendedTxAuthInput, aO as ExternalCustomerId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, dR as GenericVerifiableCredentialSchema, bK as GetCredentialsRequest, bL as GetCredentialsResponse, c2 as GetCustomerStatusRequest, c6 as GetCustomerStatusResponse, c$ as GetTezosTxAuthDataSignatureResponse, cY as GetTxAuthDataSignatureResponse, bT as GetTxAuthSigRequest, bV as GetTxAuthSigRequestTezos, bU as GetTxAuthSigResponse, bW as GetTxAuthSigResponseTezos, c8 as HostMessage, bX as HostRequestMessage, bi as HostResponseMessage, dE as ID3CredentialSubjectSchema, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, dO as IDImageCredentialSubjectSchema, cG as IDInformation, dN as IDInformationCredentialSubjectSchema, dF as IDScanCredentialSubjectSchema, dG as IDScanPassportCredentialSubjectSchema, dH as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, aI as Identifier, c7 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, c9 as IdentityMessage, b6 as IdentityNotificationMessage, bb as IdentityRequestMessage, bY as IdentityResponseMessage, c3 as IdentitySdkMessage, c4 as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b7 as InitialDataRequest, bf as InitialDataResponse, b2 as IsVerifiedNotification, bR as IsVerifiedRequest, bS as IsVerifiedResponse, dt as KybOnboardingLevel, ds as KybOnboardingLevels, aX as KycCompletionData, aY as KycCompletionNotification, dr as KycOnboardingLevel, dq as KycOnboardingLevels, cc as MediaType, cd 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, cx as NUMERIC_OPERATORS, dU as NexeraCredentialType, cN as NonParsedQueryConfiguration, cy as NumericOperator, dM as OLD_AMLScreeningsResultsCredentialSubjectSchema, dI as OLD_IDImageCredentialSubjectSchema, dJ as OLD_IDInformationCredentialSubjectSchema, dK as OLD_ProofOfResidenceCredentialSubjectSchema, dL as OLD_SelfieImageCredentialSubjectSchema, bs as OPAChallengeQuery, b4 as OcvSdkInitialized, a_ as OffChainScenarioExecutionData, d8 as OffChainZKP, bu as OffChainZKPRuleResult, bt as OnChainRuleResult, a$ as OnChainScenarioExecutionData, dd as OnChainZKP, de as OnChainZKPFromNexeraID, dg as OnChainZKPPayload, df as OnChainZKPScenarioFromCms, bq as OpaChallengeQueryResponse, cq as Operator, bl as OperatorToChallengeQueryOperator, aL as OrganizationId, _ as P2Signature, aG as PERSONAL_INFORMATION_FIELDS, P as POLYGON_NETWORK_NAMES, ah as PUBLIC_SERVICES_SCHEMA_MAP, cK as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b3 as PolygonIdInitialized, bN as PolygonIdRequest, bM as PolygonIdRequestData, bP as PolygonIdResponse, bO as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, dc as ProjectAuthorizationData, cg as ProofData, dQ as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, cl as QrCodeLinkWithSchemaType, cH as QueryConfig, cJ as QueryConfigSimplified, cL as QueryConfigSimplifiedParsed, cM as QueryConfiguration, cV as QueryCredentialType, cU as QueryCredentialTypes, cI as QueryType, ca as RequiredDataRowSchema, cb as RequiredVerificationData, dm as RiskScoreType, dl as RiskScoreTypes, bD as RuleEngineResponse, aZ as RuleEngineScenarioExecutionData, bG as RuleResultStatus, bH as RuleResultStatusLabels, bF as RuleResultStatuses, dh as SCENARIO_AUTHORIZATION_STATUSES, cv as STRING_OPERATORS, cD as SUPPORTED_TYPES, aU as ScenarioAuthorizationData, di as ScenarioAuthorizationStatus, b0 as ScenarioExecutionData, b1 as ScenarioExecutionNotification, bE as ScenarioExecutionResponse, bC as ScenarioStatus, bB as ScenarioStatuses, bA as ScenarioType, bz as ScenarioTypes, bv as SdkVerificationOutput, aV as SdkVerificationResponseSchema, dP as SelfieImageCredentialSubjectSchema, ba as SendTransactionRequest, b8 as SignatureRequest, bg as SignatureResponse, bJ as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b5 as StartCompletedNotification, bQ as StartFlowRequest, aq as StorageId, w as String0x, cw as StringOperator, cE as SupportedType, cF as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, cZ as TezosTxAuthInput, c_ as TezosTxSignatureResponse, b9 as TransactionData, bh as TransactionResponse, c1 as TxAuthDataSignatureGatingRequest, c5 as TxAuthDataSignatureResponse, cW as TxAuthInput, D as TxHash, cX as TxSignatureResponse, cQ as UpdateQueryConfigurationInput, cR as UpdateQueryConfigurationResponse, ae as UuidString, dX as VerifiableCredential, aB as VerificationMode, aA as VerificationModes, by as VerificationOutput, bx as VerificationSessionStatus, bw as VerificationSessionStatuses, bZ as WalletChallengeRequest, at as WalletId, c0 as WalletSignResponse, dk as WalletSignatureData, dj as WalletSignatureResponse, aT as Web2CreateSessionParams, aN as WorkflowId, aM as WorkspaceId, cr as ZKPOperator, d6 as ZKPRequest, d7 as ZKPRequestFromZKVerifier, ce as ZeroKnowledgeProofRequest, ch as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, dV as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, cs as operatorDisplayMap, ao as parseISO3CountryCode, cm as parseIden3Message, cn as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-25e04205.esm.js';
|
|
4
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-529049f7.esm.js';
|
|
5
5
|
import 'nanoid';
|
|
6
6
|
|
|
7
7
|
var decodeUint8Array = function decodeUint8Array(data) {
|
package/dist/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-4615eb5b.cjs.dev.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -150,9 +150,6 @@ exports.TxAuthInput = identityApi_schema.TxAuthInput;
|
|
|
150
150
|
exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
151
151
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
152
152
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
153
|
-
exports.ValidVerificationCompleteData = identityApi_schema.ValidVerificationCompleteData;
|
|
154
|
-
exports.VerificationBeginNotification = identityApi_schema.VerificationBeginNotification;
|
|
155
|
-
exports.VerificationCompleteNotification = identityApi_schema.VerificationCompleteNotification;
|
|
156
153
|
exports.VerificationOutput = identityApi_schema.VerificationOutput;
|
|
157
154
|
exports.VerificationSessionStatus = identityApi_schema.VerificationSessionStatus;
|
|
158
155
|
exports.VerificationSessionStatuses = identityApi_schema.VerificationSessionStatuses;
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-bf6bbbf4.cjs.prod.js');
|
|
6
6
|
require('zod');
|
|
7
7
|
require('nanoid');
|
|
8
8
|
|
|
@@ -150,9 +150,6 @@ exports.TxAuthInput = identityApi_schema.TxAuthInput;
|
|
|
150
150
|
exports.TxSignatureResponse = identityApi_schema.TxSignatureResponse;
|
|
151
151
|
exports.UpdateQueryConfigurationInput = identityApi_schema.UpdateQueryConfigurationInput;
|
|
152
152
|
exports.UpdateQueryConfigurationResponse = identityApi_schema.UpdateQueryConfigurationResponse;
|
|
153
|
-
exports.ValidVerificationCompleteData = identityApi_schema.ValidVerificationCompleteData;
|
|
154
|
-
exports.VerificationBeginNotification = identityApi_schema.VerificationBeginNotification;
|
|
155
|
-
exports.VerificationCompleteNotification = identityApi_schema.VerificationCompleteNotification;
|
|
156
153
|
exports.VerificationOutput = identityApi_schema.VerificationOutput;
|
|
157
154
|
exports.VerificationSessionStatus = identityApi_schema.VerificationSessionStatus;
|
|
158
155
|
exports.VerificationSessionStatuses = identityApi_schema.VerificationSessionStatuses;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { ct as ARRAY_OPERATORS, bc as AVAILABLE_FLOWS, co as AllCredentialAttributes, cp as AllCredentialValues, db as AllScenarioExecutionAuthorizationData, d5 as AnyTxAuthDataSignatureResponse, d2 as AnyTxAuthInput, cu as ArrayOperator, ck as AuthQrCodeData, b_ as AuthSession, cf as AuthorizationRequestMessage, ci as AuthorizationResponseMessage, bd as AvailableFlow, cz as BOOLEAN_OPERATORS, cA as BooleanOperator, bk as ChallengeQueryOperator, bm as ChallengeQueryOperatorToOperator, bj as ChallengeQueryOperators, bn as ChallengeQuerySchema, b$ as ChallengeResponse, aW as CloseScreenNotification, bI as ComplianceImplementationStepsInput, d9 as CreateAuthRequestProps, cO as CreateQueryConfigurationInput, cP as CreateQueryConfigurationResponse, da as CreateZKProofRequestProps, cj as CredentialQrCodeData, cB as DATE_OPERATORS, be as DataAvailableOnStart, cC as DateOperator, cS as DeleteQueryConfigurationInput, cT as DeleteQueryConfigurationResponse, bp as ExecuteChallengeQueryConfig, bo as ExecuteChallengeQueryInput, br as ExecuteChallengeQueryResponse, d4 as ExtendedTezosTxAuthDataSignatureResponse, d1 as ExtendedTezosTxAuthInput, d3 as ExtendedTxAuthDataSignatureResponse, d0 as ExtendedTxAuthInput, bK as GetCredentialsRequest, bL as GetCredentialsResponse, c2 as GetCustomerStatusRequest, c6 as GetCustomerStatusResponse, c$ as GetTezosTxAuthDataSignatureResponse, cY as GetTxAuthDataSignatureResponse, bT as GetTxAuthSigRequest, bV as GetTxAuthSigRequestTezos, bU as GetTxAuthSigResponse, bW as GetTxAuthSigResponseTezos, c8 as HostMessage, bX as HostRequestMessage, bi as HostResponseMessage, cG as IDInformation, c7 as IdentityAppMessage, c9 as IdentityMessage, b6 as IdentityNotificationMessage, bb as IdentityRequestMessage, bY as IdentityResponseMessage, c3 as IdentitySdkMessage, c4 as IdentitySdkMessageWithIdentifier, b7 as InitialDataRequest, bf as InitialDataResponse, b2 as IsVerifiedNotification, bR as IsVerifiedRequest, bS as IsVerifiedResponse, aX as KycCompletionData, aY as KycCompletionNotification, cc as MediaType, cd as MediaTypePID, cx as NUMERIC_OPERATORS, cN as NonParsedQueryConfiguration, cy as NumericOperator, bs as OPAChallengeQuery, b4 as OcvSdkInitialized, a_ as OffChainScenarioExecutionData, d8 as OffChainZKP, bu as OffChainZKPRuleResult, bt as OnChainRuleResult, a$ as OnChainScenarioExecutionData, dd as OnChainZKP, de as OnChainZKPFromNexeraID, dg as OnChainZKPPayload, df as OnChainZKPScenarioFromCms, bq as OpaChallengeQueryResponse, cq as Operator, bl as OperatorToChallengeQueryOperator, cK as PartialQueryConfigSimplified, b3 as PolygonIdInitialized, bN as PolygonIdRequest, bM as PolygonIdRequestData, bP as PolygonIdResponse, bO as PolygonIdResponseData, dc as ProjectAuthorizationData, cg as ProofData, cl as QrCodeLinkWithSchemaType, cH as QueryConfig, cJ as QueryConfigSimplified, cL as QueryConfigSimplifiedParsed, cM as QueryConfiguration, cV as QueryCredentialType, cU as QueryCredentialTypes, cI as QueryType, ca as RequiredDataRowSchema, cb as RequiredVerificationData, bD as RuleEngineResponse, aZ as RuleEngineScenarioExecutionData, bG as RuleResultStatus, bH as RuleResultStatusLabels, bF as RuleResultStatuses, dh as SCENARIO_AUTHORIZATION_STATUSES, cv as STRING_OPERATORS, cD as SUPPORTED_TYPES, aU as ScenarioAuthorizationData, di as ScenarioAuthorizationStatus, b0 as ScenarioExecutionData, b1 as ScenarioExecutionNotification, bE as ScenarioExecutionResponse, bC as ScenarioStatus, bB as ScenarioStatuses, bA as ScenarioType, bz as ScenarioTypes, bv as SdkVerificationOutput, aV as SdkVerificationResponseSchema, ba as SendTransactionRequest, b8 as SignatureRequest, bg as SignatureResponse, bJ as SimplifiedCredential, b5 as StartCompletedNotification, bQ as StartFlowRequest, cw as StringOperator, cE as SupportedType, cF as SupportedTypes, cZ as TezosTxAuthInput, c_ as TezosTxSignatureResponse, b9 as TransactionData, bh as TransactionResponse, c1 as TxAuthDataSignatureGatingRequest, c5 as TxAuthDataSignatureResponse, cW as TxAuthInput, cX as TxSignatureResponse, cQ as UpdateQueryConfigurationInput, cR as UpdateQueryConfigurationResponse, by as VerificationOutput, bx as VerificationSessionStatus, bw as VerificationSessionStatuses, bZ as WalletChallengeRequest, c0 as WalletSignResponse, dk as WalletSignatureData, dj as WalletSignatureResponse, cr as ZKPOperator, d6 as ZKPRequest, d7 as ZKPRequestFromZKVerifier, ce as ZeroKnowledgeProofRequest, ch as ZeroKnowledgeProofResponse, cs as operatorDisplayMap, cm as parseIden3Message, cn as parseSessionIdFromUrl } from '../../dist/identity-api.schema-25e04205.esm.js';
|
|
2
2
|
import 'zod';
|
|
3
3
|
import 'nanoid';
|
package/package.json
CHANGED
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
6
|
-
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-4615eb5b.cjs.dev.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-d6e21fa5.cjs.dev.js');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
var identityApi_schema = require('../../dist/identity-api.schema-
|
|
6
|
-
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-
|
|
5
|
+
var identityApi_schema = require('../../dist/identity-api.schema-bf6bbbf4.cjs.prod.js');
|
|
6
|
+
var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-abfeae8c.cjs.prod.js');
|
|
7
7
|
require('zod');
|
|
8
8
|
require('nanoid');
|
|
9
9
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { ak as Alpha2Country,
|
|
2
|
-
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-
|
|
1
|
+
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-25e04205.esm.js';
|
|
2
|
+
export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-529049f7.esm.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
import 'nanoid';
|