@nexeraid/identity-schemas 1.12.20-dev → 1.12.21-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.
@@ -166,16 +166,16 @@ function cleanObject(object) {
166
166
  }
167
167
  return true;
168
168
  };
169
- var isArrayEmpty = function isArrayEmpty(arr) {
169
+ var _isArrayEmpty = function isArrayEmpty(arr) {
170
170
  return arr.every(function (item) {
171
- return item === null || item === undefined || item === "" || _typeof(item) === "object" && !Array.isArray(item) && isObjectEmpty(item) || Array.isArray(item) && isArrayEmpty(item);
171
+ return item === null || item === undefined || item === "" || _typeof(item) === "object" && !Array.isArray(item) && isObjectEmpty(item) || Array.isArray(item) && _isArrayEmpty(item);
172
172
  });
173
173
  };
174
174
  Object.keys(object).forEach(function (key) {
175
175
  var value = object[key];
176
176
  if (value && _typeof(value) === "object") {
177
177
  if (Array.isArray(value)) {
178
- if (isArrayEmpty(value)) {
178
+ if (_isArrayEmpty(value)) {
179
179
  delete object[key];
180
180
  } else {
181
181
  value = value.map(function (item) {
@@ -183,7 +183,7 @@ function cleanObject(object) {
183
183
  }).filter(function (item) {
184
184
  return !(item === null || item === undefined || item === "" || _typeof(item) === "object" && isObjectEmpty(item));
185
185
  });
186
- if (isArrayEmpty(value)) {
186
+ if (_isArrayEmpty(value)) {
187
187
  delete object[key];
188
188
  } else {
189
189
  object[key] = value;
@@ -2064,12 +2064,12 @@ var getAvailableFields = function getAvailableFields(props) {
2064
2064
  if (!credentialSchema) {
2065
2065
  throw new Error("Credential type ".concat(credentialType, " not supported"));
2066
2066
  }
2067
- return extractFields({
2067
+ return _extractFields({
2068
2068
  obj: credentialSchema,
2069
2069
  credentialType: credentialType
2070
2070
  });
2071
2071
  };
2072
- var extractFields = function extractFields(props) {
2072
+ var _extractFields = function extractFields(props) {
2073
2073
  var obj = props.obj,
2074
2074
  currentPath = props.currentPath,
2075
2075
  credentialType = props.credentialType;
@@ -2082,7 +2082,7 @@ var extractFields = function extractFields(props) {
2082
2082
  var newPath = currentPath ? "".concat(currentPath, ".").concat(key) : "".concat(credentialType, ".credentialSubject.").concat(key);
2083
2083
  if (property.type === "object") {
2084
2084
  // Recursively handle nested objects
2085
- fields = fields.concat(extractFields({
2085
+ fields = fields.concat(_extractFields({
2086
2086
  obj: property,
2087
2087
  currentPath: newPath,
2088
2088
  credentialType: credentialType
@@ -166,16 +166,16 @@ function cleanObject(object) {
166
166
  }
167
167
  return true;
168
168
  };
169
- var isArrayEmpty = function isArrayEmpty(arr) {
169
+ var _isArrayEmpty = function isArrayEmpty(arr) {
170
170
  return arr.every(function (item) {
171
- return item === null || item === undefined || item === "" || _typeof(item) === "object" && !Array.isArray(item) && isObjectEmpty(item) || Array.isArray(item) && isArrayEmpty(item);
171
+ return item === null || item === undefined || item === "" || _typeof(item) === "object" && !Array.isArray(item) && isObjectEmpty(item) || Array.isArray(item) && _isArrayEmpty(item);
172
172
  });
173
173
  };
174
174
  Object.keys(object).forEach(function (key) {
175
175
  var value = object[key];
176
176
  if (value && _typeof(value) === "object") {
177
177
  if (Array.isArray(value)) {
178
- if (isArrayEmpty(value)) {
178
+ if (_isArrayEmpty(value)) {
179
179
  delete object[key];
180
180
  } else {
181
181
  value = value.map(function (item) {
@@ -183,7 +183,7 @@ function cleanObject(object) {
183
183
  }).filter(function (item) {
184
184
  return !(item === null || item === undefined || item === "" || _typeof(item) === "object" && isObjectEmpty(item));
185
185
  });
186
- if (isArrayEmpty(value)) {
186
+ if (_isArrayEmpty(value)) {
187
187
  delete object[key];
188
188
  } else {
189
189
  object[key] = value;
@@ -2064,12 +2064,12 @@ var getAvailableFields = function getAvailableFields(props) {
2064
2064
  if (!credentialSchema) {
2065
2065
  throw new Error("Credential type ".concat(credentialType, " not supported"));
2066
2066
  }
2067
- return extractFields({
2067
+ return _extractFields({
2068
2068
  obj: credentialSchema,
2069
2069
  credentialType: credentialType
2070
2070
  });
2071
2071
  };
2072
- var extractFields = function extractFields(props) {
2072
+ var _extractFields = function extractFields(props) {
2073
2073
  var obj = props.obj,
2074
2074
  currentPath = props.currentPath,
2075
2075
  credentialType = props.credentialType;
@@ -2082,7 +2082,7 @@ var extractFields = function extractFields(props) {
2082
2082
  var newPath = currentPath ? "".concat(currentPath, ".").concat(key) : "".concat(credentialType, ".credentialSubject.").concat(key);
2083
2083
  if (property.type === "object") {
2084
2084
  // Recursively handle nested objects
2085
- fields = fields.concat(extractFields({
2085
+ fields = fields.concat(_extractFields({
2086
2086
  obj: property,
2087
2087
  currentPath: newPath,
2088
2088
  credentialType: credentialType
@@ -164,16 +164,16 @@ function cleanObject(object) {
164
164
  }
165
165
  return true;
166
166
  };
167
- var isArrayEmpty = function isArrayEmpty(arr) {
167
+ var _isArrayEmpty = function isArrayEmpty(arr) {
168
168
  return arr.every(function (item) {
169
- return item === null || item === undefined || item === "" || _typeof(item) === "object" && !Array.isArray(item) && isObjectEmpty(item) || Array.isArray(item) && isArrayEmpty(item);
169
+ return item === null || item === undefined || item === "" || _typeof(item) === "object" && !Array.isArray(item) && isObjectEmpty(item) || Array.isArray(item) && _isArrayEmpty(item);
170
170
  });
171
171
  };
172
172
  Object.keys(object).forEach(function (key) {
173
173
  var value = object[key];
174
174
  if (value && _typeof(value) === "object") {
175
175
  if (Array.isArray(value)) {
176
- if (isArrayEmpty(value)) {
176
+ if (_isArrayEmpty(value)) {
177
177
  delete object[key];
178
178
  } else {
179
179
  value = value.map(function (item) {
@@ -181,7 +181,7 @@ function cleanObject(object) {
181
181
  }).filter(function (item) {
182
182
  return !(item === null || item === undefined || item === "" || _typeof(item) === "object" && isObjectEmpty(item));
183
183
  });
184
- if (isArrayEmpty(value)) {
184
+ if (_isArrayEmpty(value)) {
185
185
  delete object[key];
186
186
  } else {
187
187
  object[key] = value;
@@ -2062,12 +2062,12 @@ var getAvailableFields = function getAvailableFields(props) {
2062
2062
  if (!credentialSchema) {
2063
2063
  throw new Error("Credential type ".concat(credentialType, " not supported"));
2064
2064
  }
2065
- return extractFields({
2065
+ return _extractFields({
2066
2066
  obj: credentialSchema,
2067
2067
  credentialType: credentialType
2068
2068
  });
2069
2069
  };
2070
- var extractFields = function extractFields(props) {
2070
+ var _extractFields = function extractFields(props) {
2071
2071
  var obj = props.obj,
2072
2072
  currentPath = props.currentPath,
2073
2073
  credentialType = props.credentialType;
@@ -2080,7 +2080,7 @@ var extractFields = function extractFields(props) {
2080
2080
  var newPath = currentPath ? "".concat(currentPath, ".").concat(key) : "".concat(credentialType, ".credentialSubject.").concat(key);
2081
2081
  if (property.type === "object") {
2082
2082
  // Recursively handle nested objects
2083
- fields = fields.concat(extractFields({
2083
+ fields = fields.concat(_extractFields({
2084
2084
  obj: property,
2085
2085
  currentPath: newPath,
2086
2086
  credentialType: credentialType
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var zod = require('zod');
6
6
  var identityApi_schema = require('./identity-api.schema-4615eb5b.cjs.dev.js');
7
- var frontendUtilities_schema = require('./frontend-utilities.schema-d6e21fa5.cjs.dev.js');
7
+ var frontendUtilities_schema = require('./frontend-utilities.schema-87bffa68.cjs.dev.js');
8
8
  require('nanoid');
9
9
 
10
10
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -4,7 +4,7 @@ Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var zod = require('zod');
6
6
  var identityApi_schema = require('./identity-api.schema-bf6bbbf4.cjs.prod.js');
7
- var frontendUtilities_schema = require('./frontend-utilities.schema-abfeae8c.cjs.prod.js');
7
+ var frontendUtilities_schema = require('./frontend-utilities.schema-516dc42c.cjs.prod.js');
8
8
  require('nanoid');
9
9
 
10
10
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
2
  import { C as CredentialTypes } from './identity-api.schema-25e04205.esm.js';
3
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';
4
+ export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-d572735d.esm.js';
5
5
  import 'nanoid';
6
6
 
7
7
  var decodeUint8Array = function decodeUint8Array(data) {
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "1.12.20",
3
+ "version": "1.12.21",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -61,7 +61,7 @@
61
61
  },
62
62
  "devDependencies": {
63
63
  "@unblokttechnology/eslint-config": "workspace:*",
64
- "json-schema-to-zod": "^2.4.0",
64
+ "json-schema-to-zod": "^2.4.1",
65
65
  "typescript": "5.4.5"
66
66
  },
67
67
  "preconstruct": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "1.12.20-dev",
3
+ "version": "1.12.21-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -39,7 +39,7 @@
39
39
  "zod-to-json-schema": "^3.23.2"
40
40
  },
41
41
  "devDependencies": {
42
- "json-schema-to-zod": "^2.4.0",
42
+ "json-schema-to-zod": "^2.4.1",
43
43
  "typescript": "5.4.5",
44
44
  "@unblokttechnology/eslint-config": "0.1.1"
45
45
  },
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
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');
6
+ var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-87bffa68.cjs.dev.js');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
 
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
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');
6
+ var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-516dc42c.cjs.prod.js');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
 
@@ -1,4 +1,4 @@
1
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';
2
+ export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-d572735d.esm.js';
3
3
  import 'zod';
4
4
  import 'nanoid';