@nexeraid/identity-schemas 1.12.18-dev → 1.12.19-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/dist/declarations/src/identity/identity-v2.schema.d.ts +27 -46
  2. package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
  3. package/dist/declarations/src/nexeraSSID.schema.d.ts +38 -160
  4. package/dist/declarations/src/nexeraSSID.schema.d.ts.map +1 -1
  5. package/dist/{frontend-utilities.schema-50fdec6e.cjs.dev.js → frontend-utilities.schema-b031116d.cjs.dev.js} +1 -1
  6. package/dist/{frontend-utilities.schema-89d25d69.esm.js → frontend-utilities.schema-b735a522.esm.js} +1 -1
  7. package/dist/{frontend-utilities.schema-caaeef3b.cjs.prod.js → frontend-utilities.schema-d9815781.cjs.prod.js} +1 -1
  8. package/dist/{identity-api.schema-9db90005.cjs.dev.js → identity-api.schema-32516598.cjs.dev.js} +21 -0
  9. package/dist/{identity-api.schema-582be049.cjs.prod.js → identity-api.schema-4f0296c0.cjs.prod.js} +21 -0
  10. package/dist/{identity-api.schema-a34ad87c.esm.js → identity-api.schema-ea0d3694.esm.js} +21 -1
  11. package/dist/nexeraid-identity-schemas.cjs.dev.js +3 -2
  12. package/dist/nexeraid-identity-schemas.cjs.prod.js +3 -2
  13. package/dist/nexeraid-identity-schemas.esm.js +3 -3
  14. package/dist/package.json +1 -1
  15. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +1 -1
  16. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +1 -1
  17. package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
  18. package/package.json +1 -1
  19. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
  20. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
  21. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
@@ -1,4 +1,26 @@
1
1
  import { z } from "zod";
2
+ import { BlockchainId } from "../blockchain.schema.js";
3
+ import { BlockchainAddress, BlockchainNamespace } from "../config.schema.js";
4
+ import { AdditionalCustomerInformationParams, ExternalCustomerId, WorkflowId } from "../nexeraSSID.schema.js";
5
+ /**
6
+ * Wallet challenge parameters
7
+ */
8
+ export type WalletChallengeRequest = {
9
+ /** The blockchain address to challenge */
10
+ address: BlockchainAddress;
11
+ /** The blockchain namespace */
12
+ namespace: BlockchainNamespace;
13
+ /** The blockchain id, mostly required, but some namespaces don't support it */
14
+ blockchainId?: BlockchainId;
15
+ /** The origin of the request */
16
+ origin: string;
17
+ /** The workflow id to bind the user session to */
18
+ workflowId: WorkflowId;
19
+ /** The external customer id of the user, if provided it's used to de-duplicate users */
20
+ externalCustomerId?: ExternalCustomerId;
21
+ /** Additional information to attach to the customer on login. */
22
+ additionalInformation?: AdditionalCustomerInformationParams;
23
+ };
2
24
  export declare const WalletChallengeRequest: z.ZodObject<{
3
25
  address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
4
26
  namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
@@ -6,66 +28,24 @@ export declare const WalletChallengeRequest: z.ZodObject<{
6
28
  origin: z.ZodString;
7
29
  workflowId: z.ZodString;
8
30
  externalCustomerId: z.ZodOptional<z.ZodString>;
9
- additionalInformation: z.ZodOptional<z.ZodObject<{
10
- email: z.ZodOptional<z.ZodString>;
11
- phone: z.ZodOptional<z.ZodString>;
12
- wallet: z.ZodOptional<z.ZodObject<{
13
- address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
14
- namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
15
- }, "strip", z.ZodTypeAny, {
16
- address: string;
17
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
18
- }, {
19
- address: string;
20
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
21
- }>>;
22
- }, "strip", z.ZodTypeAny, {
23
- email?: string | undefined;
24
- wallet?: {
25
- address: string;
26
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
27
- } | undefined;
28
- phone?: string | undefined;
29
- }, {
30
- email?: string | undefined;
31
- wallet?: {
32
- address: string;
33
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
34
- } | undefined;
35
- phone?: string | undefined;
36
- }>>;
31
+ additionalInformation: z.ZodOptional<z.ZodType<AdditionalCustomerInformationParams, z.ZodTypeDef, AdditionalCustomerInformationParams>>;
37
32
  }, "strip", z.ZodTypeAny, {
38
33
  address: string;
39
34
  namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
40
35
  workflowId: string;
41
36
  origin: string;
42
37
  externalCustomerId?: string | undefined;
38
+ additionalInformation?: AdditionalCustomerInformationParams | undefined;
43
39
  blockchainId?: import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ETHEREUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.ARBITRUM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.OPTIMISM_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.AVALANCHE_FUJI | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.POLYGON_AMOY | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BASE_SEPOLIA | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONBEAM | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.MOONRIVER | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.BNB_TESTNET | import("../blockchain.schema.js").NEXERA_EVM_CHAINS.SWISSTRONIK_TESTNET | "0x534e5f4d41494e" | "0x534e5f5345504f4c4941" | import("../blockchain.schema.js").NEXERA_TEZOS_CHAINS | import("../blockchain.schema.js").NEXERA_COSMOS_CHAINS | undefined;
44
- additionalInformation?: {
45
- email?: string | undefined;
46
- wallet?: {
47
- address: string;
48
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
49
- } | undefined;
50
- phone?: string | undefined;
51
- } | undefined;
52
40
  }, {
53
41
  address: string;
54
42
  namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
55
43
  workflowId: string;
56
44
  origin: string;
57
45
  externalCustomerId?: string | undefined;
46
+ additionalInformation?: AdditionalCustomerInformationParams | undefined;
58
47
  blockchainId?: unknown;
59
- additionalInformation?: {
60
- email?: string | undefined;
61
- wallet?: {
62
- address: string;
63
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
64
- } | undefined;
65
- phone?: string | undefined;
66
- } | undefined;
67
48
  }>;
68
- export type WalletChallengeRequest = z.infer<typeof WalletChallengeRequest>;
69
49
  export declare const AuthSession: z.ZodObject<{
70
50
  token: z.ZodString;
71
51
  }, "strip", z.ZodTypeAny, {
@@ -2436,6 +2416,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
2436
2416
  data: z.ZodObject<{
2437
2417
  customerId: z.ZodString;
2438
2418
  scenarioExecutionId: z.ZodString;
2419
+ /** The external customer id of the user, if provided it's used to de-duplicate users */
2439
2420
  status: z.ZodEnum<["valid", "not-valid", "error", "unknown"]>;
2440
2421
  results: z.ZodArray<z.ZodArray<z.ZodObject<{
2441
2422
  objectType: z.ZodEnum<["ChallengeQuery", "OnChainZKP", "OffChainZKP"]>;
@@ -2597,7 +2578,7 @@ export declare const IdentityAppMessage: z.ZodUnion<[z.ZodObject<{
2597
2578
  type: z.ZodString;
2598
2579
  thid: z.ZodOptional<z.ZodString>;
2599
2580
  body: z.ZodObject<{
2600
- callbackUrl: z.ZodString;
2581
+ callbackUrl: z.ZodString; /** The blockchain address to challenge */
2601
2582
  reason: z.ZodOptional<z.ZodString>;
2602
2583
  did_doc: z.ZodOptional<z.ZodAny>;
2603
2584
  message: z.ZodOptional<z.ZodString>;
@@ -1 +1 @@
1
- {"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAe7B,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC"}
1
+ {"version":3,"file":"identity-v2.schema.d.ts","sourceRoot":"../../../../src/identity","sources":["identity-v2.schema.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,5 @@
1
1
  import { z } from "zod";
2
+ import { BlockchainAddress, BlockchainNamespace } from "./config.schema.js";
2
3
  export declare const FLOW_TYPES: readonly ["web2", "web3"];
3
4
  export declare const FlowType: z.ZodEnum<["web2", "web3"]>;
4
5
  export declare const VerificationModes: readonly ["full_verification", "sandbox"];
@@ -11,35 +12,23 @@ export declare const IdentityDocumentOptionsType: z.ZodEnum<["PASSPORT", "ID_CAR
11
12
  export declare const PERSONAL_INFORMATION_FIELDS: readonly ["EMAIL", "PHONE", "TWITTER", "DISCORD", "TELEGRAM"];
12
13
  export declare const PersonalInformationFieldsIdentityDocuments: z.ZodEnum<["EMAIL", "PHONE", "TWITTER", "DISCORD", "TELEGRAM"]>;
13
14
  export declare const Identifier: z.ZodUnion<[z.ZodLiteral<"verification">, z.ZodLiteral<"management">]>;
14
- export declare const AdditionalCustomerInformationParams: z.ZodObject<{
15
- email: z.ZodOptional<z.ZodString>;
16
- phone: z.ZodOptional<z.ZodString>;
17
- wallet: z.ZodOptional<z.ZodObject<{
18
- address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
19
- namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
20
- }, "strip", z.ZodTypeAny, {
21
- address: string;
22
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
23
- }, {
24
- address: string;
25
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
26
- }>>;
27
- }, "strip", z.ZodTypeAny, {
28
- email?: string | undefined;
29
- wallet?: {
30
- address: string;
31
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
32
- } | undefined;
33
- phone?: string | undefined;
34
- }, {
35
- email?: string | undefined;
15
+ /**
16
+ * Represents the additional data that can be attached to a customer
17
+ */
18
+ export type AdditionalCustomerInformationParams = {
19
+ /** The email of the customer */
20
+ email?: string;
21
+ /** The phone number of the customer */
22
+ phone?: string;
23
+ /** The wallet of the customer */
36
24
  wallet?: {
37
- address: string;
38
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
39
- } | undefined;
40
- phone?: string | undefined;
41
- }>;
42
- export type AdditionalCustomerInformationParams = z.infer<typeof AdditionalCustomerInformationParams>;
25
+ /** The address of the wallet */
26
+ address: BlockchainAddress;
27
+ /** The namespace of the wallet */
28
+ namespace: BlockchainNamespace;
29
+ };
30
+ };
31
+ export declare const AdditionalCustomerInformationParams: z.ZodType<AdditionalCustomerInformationParams>;
43
32
  export declare const IdentityWidgetAccessToken: z.ZodObject<{
44
33
  sub: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
45
34
  blockchainNamespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
@@ -155,34 +144,7 @@ export declare const IdentityAppV2Web2JWT: z.ZodObject<z.objectUtil.extendShape<
155
144
  * @deprecated Fetch the additional user information from the services instead of relying on this field
156
145
  * We only have this field in web2 mode because most of the services are relying on the blockchain address to be present in the JWT
157
146
  */
158
- deprecated_additionalUserInformation: z.ZodOptional<z.ZodObject<{
159
- email: z.ZodOptional<z.ZodString>;
160
- phone: z.ZodOptional<z.ZodString>;
161
- wallet: z.ZodOptional<z.ZodObject<{
162
- address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
163
- namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
164
- }, "strip", z.ZodTypeAny, {
165
- address: string;
166
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
167
- }, {
168
- address: string;
169
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
170
- }>>;
171
- }, "strip", z.ZodTypeAny, {
172
- email?: string | undefined;
173
- wallet?: {
174
- address: string;
175
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
176
- } | undefined;
177
- phone?: string | undefined;
178
- }, {
179
- email?: string | undefined;
180
- wallet?: {
181
- address: string;
182
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
183
- } | undefined;
184
- phone?: string | undefined;
185
- }>>;
147
+ deprecated_additionalUserInformation: z.ZodOptional<z.ZodType<AdditionalCustomerInformationParams, z.ZodTypeDef, AdditionalCustomerInformationParams>>;
186
148
  }>, "strip", z.ZodTypeAny, {
187
149
  sub: `identity_${string}`;
188
150
  exp: number;
@@ -196,14 +158,7 @@ export declare const IdentityAppV2Web2JWT: z.ZodObject<z.objectUtil.extendShape<
196
158
  flowType: "web2";
197
159
  iat: number;
198
160
  ipAddress?: string | undefined;
199
- deprecated_additionalUserInformation?: {
200
- email?: string | undefined;
201
- wallet?: {
202
- address: string;
203
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
204
- } | undefined;
205
- phone?: string | undefined;
206
- } | undefined;
161
+ deprecated_additionalUserInformation?: AdditionalCustomerInformationParams | undefined;
207
162
  }, {
208
163
  sub: `identity_${string}`;
209
164
  exp: number;
@@ -217,14 +172,7 @@ export declare const IdentityAppV2Web2JWT: z.ZodObject<z.objectUtil.extendShape<
217
172
  flowType: "web2";
218
173
  iat: number;
219
174
  ipAddress?: string | undefined;
220
- deprecated_additionalUserInformation?: {
221
- email?: string | undefined;
222
- wallet?: {
223
- address: string;
224
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
225
- } | undefined;
226
- phone?: string | undefined;
227
- } | undefined;
175
+ deprecated_additionalUserInformation?: AdditionalCustomerInformationParams | undefined;
228
176
  }>;
229
177
  export type IdentityAppV2Web3JWT = z.infer<typeof IdentityAppV2Web3JWT>;
230
178
  export type IdentityAppV2Web2JWT = z.infer<typeof IdentityAppV2Web2JWT>;
@@ -294,34 +242,7 @@ export declare const IdentityWidgetAccessToken_NEW: z.ZodUnion<[z.ZodObject<z.ob
294
242
  * @deprecated Fetch the additional user information from the services instead of relying on this field
295
243
  * We only have this field in web2 mode because most of the services are relying on the blockchain address to be present in the JWT
296
244
  */
297
- deprecated_additionalUserInformation: z.ZodOptional<z.ZodObject<{
298
- email: z.ZodOptional<z.ZodString>;
299
- phone: z.ZodOptional<z.ZodString>;
300
- wallet: z.ZodOptional<z.ZodObject<{
301
- address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
302
- namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
303
- }, "strip", z.ZodTypeAny, {
304
- address: string;
305
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
306
- }, {
307
- address: string;
308
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
309
- }>>;
310
- }, "strip", z.ZodTypeAny, {
311
- email?: string | undefined;
312
- wallet?: {
313
- address: string;
314
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
315
- } | undefined;
316
- phone?: string | undefined;
317
- }, {
318
- email?: string | undefined;
319
- wallet?: {
320
- address: string;
321
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
322
- } | undefined;
323
- phone?: string | undefined;
324
- }>>;
245
+ deprecated_additionalUserInformation: z.ZodOptional<z.ZodType<AdditionalCustomerInformationParams, z.ZodTypeDef, AdditionalCustomerInformationParams>>;
325
246
  }>, "strip", z.ZodTypeAny, {
326
247
  sub: `identity_${string}`;
327
248
  exp: number;
@@ -335,14 +256,7 @@ export declare const IdentityWidgetAccessToken_NEW: z.ZodUnion<[z.ZodObject<z.ob
335
256
  flowType: "web2";
336
257
  iat: number;
337
258
  ipAddress?: string | undefined;
338
- deprecated_additionalUserInformation?: {
339
- email?: string | undefined;
340
- wallet?: {
341
- address: string;
342
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
343
- } | undefined;
344
- phone?: string | undefined;
345
- } | undefined;
259
+ deprecated_additionalUserInformation?: AdditionalCustomerInformationParams | undefined;
346
260
  }, {
347
261
  sub: `identity_${string}`;
348
262
  exp: number;
@@ -356,14 +270,7 @@ export declare const IdentityWidgetAccessToken_NEW: z.ZodUnion<[z.ZodObject<z.ob
356
270
  flowType: "web2";
357
271
  iat: number;
358
272
  ipAddress?: string | undefined;
359
- deprecated_additionalUserInformation?: {
360
- email?: string | undefined;
361
- wallet?: {
362
- address: string;
363
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
364
- } | undefined;
365
- phone?: string | undefined;
366
- } | undefined;
273
+ deprecated_additionalUserInformation?: AdditionalCustomerInformationParams | undefined;
367
274
  }>]>;
368
275
  export type IdentityWidgetAccessToken = z.infer<typeof IdentityWidgetAccessToken>;
369
276
  export type IdentityWidgetAccessToken_NEW = z.infer<typeof IdentityWidgetAccessToken_NEW>;
@@ -482,34 +389,7 @@ export declare const IdentityWidgetSessionToken: z.ZodUnion<[z.ZodObject<{
482
389
  * @deprecated Fetch the additional user information from the services instead of relying on this field
483
390
  * We only have this field in web2 mode because most of the services are relying on the blockchain address to be present in the JWT
484
391
  */
485
- deprecated_additionalUserInformation: z.ZodOptional<z.ZodObject<{
486
- email: z.ZodOptional<z.ZodString>;
487
- phone: z.ZodOptional<z.ZodString>;
488
- wallet: z.ZodOptional<z.ZodObject<{
489
- address: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `0x${string}`, string>, z.ZodUnion<[z.ZodEffects<z.ZodString, `tz${string}`, string>, z.ZodEffects<z.ZodString, `KT1${string}`, string>]>, z.ZodEffects<z.ZodString, string, string>, z.ZodString, z.ZodEffects<z.ZodString, string, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `cosmos${string}`, string>, z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, `addr${string}`, string>]>;
490
- namespace: z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano"]>;
491
- }, "strip", z.ZodTypeAny, {
492
- address: string;
493
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
494
- }, {
495
- address: string;
496
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
497
- }>>;
498
- }, "strip", z.ZodTypeAny, {
499
- email?: string | undefined;
500
- wallet?: {
501
- address: string;
502
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
503
- } | undefined;
504
- phone?: string | undefined;
505
- }, {
506
- email?: string | undefined;
507
- wallet?: {
508
- address: string;
509
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
510
- } | undefined;
511
- phone?: string | undefined;
512
- }>>;
392
+ deprecated_additionalUserInformation: z.ZodOptional<z.ZodType<AdditionalCustomerInformationParams, z.ZodTypeDef, AdditionalCustomerInformationParams>>;
513
393
  }>, "strip", z.ZodTypeAny, {
514
394
  sub: `identity_${string}`;
515
395
  exp: number;
@@ -523,14 +403,7 @@ export declare const IdentityWidgetSessionToken: z.ZodUnion<[z.ZodObject<{
523
403
  flowType: "web2";
524
404
  iat: number;
525
405
  ipAddress?: string | undefined;
526
- deprecated_additionalUserInformation?: {
527
- email?: string | undefined;
528
- wallet?: {
529
- address: string;
530
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
531
- } | undefined;
532
- phone?: string | undefined;
533
- } | undefined;
406
+ deprecated_additionalUserInformation?: AdditionalCustomerInformationParams | undefined;
534
407
  }, {
535
408
  sub: `identity_${string}`;
536
409
  exp: number;
@@ -544,14 +417,19 @@ export declare const IdentityWidgetSessionToken: z.ZodUnion<[z.ZodObject<{
544
417
  flowType: "web2";
545
418
  iat: number;
546
419
  ipAddress?: string | undefined;
547
- deprecated_additionalUserInformation?: {
548
- email?: string | undefined;
549
- wallet?: {
550
- address: string;
551
- namespace: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano";
552
- } | undefined;
553
- phone?: string | undefined;
554
- } | undefined;
420
+ deprecated_additionalUserInformation?: AdditionalCustomerInformationParams | undefined;
555
421
  }>]>]>;
556
422
  export type IdentityWidgetSessionToken = z.infer<typeof IdentityWidgetSessionToken>;
423
+ /**
424
+ * The parameters required to create a new configuration in web2 mode.
425
+ */
426
+ export type Web2CreateSessionParams = {
427
+ /** The workflow id of the project */
428
+ workflowId: WorkflowId;
429
+ /** The external customer id of the user */
430
+ externalCustomerId: ExternalCustomerId;
431
+ /** The additional information to attach to the customer */
432
+ additionalInformation?: AdditionalCustomerInformationParams;
433
+ };
434
+ export declare const Web2CreateSessionParams: z.ZodType<Web2CreateSessionParams>;
557
435
  //# sourceMappingURL=nexeraSSID.schema.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"nexeraSSID.schema.d.ts","sourceRoot":"../../../src","sources":["nexeraSSID.schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"nexeraSSID.schema.d.ts","sourceRoot":"../../../src","sources":["nexeraSSID.schema.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var identityApi_schema = require('./identity-api.schema-9db90005.cjs.dev.js');
3
+ var identityApi_schema = require('./identity-api.schema-32516598.cjs.dev.js');
4
4
 
5
5
  var VC_JSON_SCHEMA_MAP = {
6
6
  ProofOfResidence: {
@@ -1,4 +1,4 @@
1
- import { cG as SupportedType, d$ as _toConsumableArray, cv as ARRAY_OPERATORS, cB as BOOLEAN_OPERATORS, cz as NUMERIC_OPERATORS, cx as STRING_OPERATORS } from './identity-api.schema-a34ad87c.esm.js';
1
+ import { cH as SupportedType, e0 as _toConsumableArray, cw as ARRAY_OPERATORS, cC as BOOLEAN_OPERATORS, cA as NUMERIC_OPERATORS, cy as STRING_OPERATORS } from './identity-api.schema-ea0d3694.esm.js';
2
2
 
3
3
  var VC_JSON_SCHEMA_MAP = {
4
4
  ProofOfResidence: {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var identityApi_schema = require('./identity-api.schema-582be049.cjs.prod.js');
3
+ var identityApi_schema = require('./identity-api.schema-4f0296c0.cjs.prod.js');
4
4
 
5
5
  var VC_JSON_SCHEMA_MAP = {
6
6
  ProofOfResidence: {
@@ -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,
@@ -3520,6 +3540,7 @@ exports.WalletId = WalletId;
3520
3540
  exports.WalletSignResponse = WalletSignResponse;
3521
3541
  exports.WalletSignatureData = WalletSignatureData;
3522
3542
  exports.WalletSignatureResponse = WalletSignatureResponse;
3543
+ exports.Web2CreateSessionParams = Web2CreateSessionParams;
3523
3544
  exports.WorkflowId = WorkflowId;
3524
3545
  exports.WorkspaceId = WorkspaceId;
3525
3546
  exports.ZKPOperator = ZKPOperator;
@@ -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,
@@ -3520,6 +3540,7 @@ exports.WalletId = WalletId;
3520
3540
  exports.WalletSignResponse = WalletSignResponse;
3521
3541
  exports.WalletSignatureData = WalletSignatureData;
3522
3542
  exports.WalletSignatureResponse = WalletSignatureResponse;
3543
+ exports.Web2CreateSessionParams = Web2CreateSessionParams;
3523
3544
  exports.WorkflowId = WorkflowId;
3524
3545
  exports.WorkspaceId = WorkspaceId;
3525
3546
  exports.ZKPOperator = ZKPOperator;
@@ -2436,6 +2436,11 @@ var IdentityDocumentOptionsType = z["enum"](IDENTITY_DOCUMENT_OPTIONS);
2436
2436
  var PERSONAL_INFORMATION_FIELDS = ["EMAIL", "PHONE", "TWITTER", "DISCORD", "TELEGRAM"];
2437
2437
  var PersonalInformationFieldsIdentityDocuments = z["enum"](PERSONAL_INFORMATION_FIELDS);
2438
2438
  var Identifier = z.union([z.literal("verification"), z.literal("management")]);
2439
+
2440
+ /**
2441
+ * Represents the additional data that can be attached to a customer
2442
+ */
2443
+
2439
2444
  var AdditionalCustomerInformationParams = z.object({
2440
2445
  email: z.string().email().optional(),
2441
2446
  phone: z.string().min(4).optional(),
@@ -2497,6 +2502,17 @@ var IdentityAppV2Web2JWT = IdentityAppV2BaseJWT.extend({
2497
2502
  var IdentityWidgetAccessToken_NEW = z.union([IdentityAppV2Web3JWT, IdentityAppV2Web2JWT]);
2498
2503
  var IdentityWidgetSessionToken = z.union([IdentityWidgetAccessToken, IdentityWidgetAccessToken_NEW]);
2499
2504
 
2505
+ /**
2506
+ * The parameters required to create a new configuration in web2 mode.
2507
+ */
2508
+
2509
+ var Web2CreateSessionParams = z.object({
2510
+ workflowId: WorkflowId,
2511
+ // required in web2 because we don't have the wallet address
2512
+ externalCustomerId: ExternalCustomerId,
2513
+ additionalInformation: AdditionalCustomerInformationParams.optional()
2514
+ });
2515
+
2500
2516
  // these are attributes are marked optional to be better presented by openapi.
2501
2517
  // this is hopefully fixed in the refined version of the schema
2502
2518
  var ChallengeQueryOperators = z.object({
@@ -2999,6 +3015,10 @@ var CUSTOMER_AUTOMATION_REASONS = {
2999
3015
  }
3000
3016
  };
3001
3017
 
3018
+ /**
3019
+ * Wallet challenge parameters
3020
+ */
3021
+
3002
3022
  var WalletChallengeRequest = z.object({
3003
3023
  address: BlockchainAddress,
3004
3024
  namespace: BlockchainNamespace,
@@ -3232,4 +3252,4 @@ var WalletSignatureData = WalletSignatureResponse.and(z.object({
3232
3252
  blockchainId: BlockchainId.optional()
3233
3253
  }));
3234
3254
 
3235
- export { TezosSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TxHash as D, EVM_BLOCK_TIME as E, EIP155Signature as F, FunctionCallData as G, shortAddress as H, AptosAddress as I, AptosSignature as J, StarknetAddress as K, StarknetSignature as L, PolkadotAddress as M, NEXERA_EVM_CHAINS as N, PolkadotSignature as O, POLYGON_NETWORK_NAMES as P, CosmosAddress as Q, CosmosSignature as R, StarknetChainId as S, TezosChainId as T, TezosImplicitAddress as U, TezosContractAddress as V, TezosAddress as W, TezosEntrypointName as X, EdSignature as Y, SpSignature as Z, P2Signature as _, NEXERA_TEZOS_CHAINS as a, ScenarioExecutionData as a$, CardanoAddress as a0, CardanoSignature as a1, BlockchainAddress as a2, BlockchainSignature as a3, BLOCKCHAIN_NAMESPACES as a4, BlockchainNamespace as a5, BLOCKCHAIN_NAMESPACES_NAMES as a6, DISPLAYED_LOCKCHAIN_NAMESPACES as a7, DisplayedBlockchainNamespace as a8, BLOCKCHAIN_NAME_TO_NAMESPACE as a9, VerificationModes as aA, VerificationMode as aB, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as aC, IdentityDocumentCountryListOption as aD, IDENTITY_DOCUMENT_OPTIONS as aE, IdentityDocumentOptionsType as aF, PERSONAL_INFORMATION_FIELDS as aG, PersonalInformationFieldsIdentityDocuments as aH, Identifier as aI, AdditionalCustomerInformationParams as aJ, IdentityWidgetAccessToken as aK, OrganizationId as aL, WorkspaceId as aM, WorkflowId as aN, ExternalCustomerId as aO, IdentityAppV2Web3JWT as aP, IdentityAppV2Web2JWT as aQ, IdentityWidgetAccessToken_NEW as aR, IdentityWidgetSessionToken as aS, ScenarioAuthorizationData as aT, SdkVerificationResponseSchema as aU, CloseScreenNotification as aV, KycCompletionData as aW, KycCompletionNotification as aX, RuleEngineScenarioExecutionData as aY, OffChainScenarioExecutionData as aZ, OnChainScenarioExecutionData as a_, BLOCKCHAIN_NAMESPACE_TO_NAME as aa, coerceBoolean as ab, ENVS as ac, EnvironmentSchema as ad, UuidString as ae, ZodParse as af, shortBlockchainAddress as ag, PUBLIC_SERVICES_SCHEMA_MAP as ah, ISO3CountryCode as ai, ALPHA_2_COUNTRIES as aj, Alpha2Country as ak, countryISO3toISO2Mapping as al, countryISO2toISO3Mapping as am, isoCountriesNameFromISO2 as an, parseISO3CountryCode as ao, createBrandedSchemaId as ap, StorageId as aq, IdentityId as ar, EmailId as as, WalletId as at, AppId as au, ChallengeId as av, TestId as aw, generateId as ax, FLOW_TYPES as ay, FlowType as az, NEXERA_COSMOS_CHAINS as b, WalletSignResponse as b$, ScenarioExecutionNotification as b0, IsVerifiedNotification as b1, PolygonIdInitialized as b2, OcvSdkInitialized as b3, StartCompletedNotification as b4, IdentityNotificationMessage as b5, InitialDataRequest as b6, SignatureRequest as b7, TransactionData as b8, SendTransactionRequest as b9, ScenarioStatuses as bA, ScenarioStatus as bB, RuleEngineResponse as bC, ScenarioExecutionResponse as bD, RuleResultStatuses as bE, RuleResultStatus as bF, RuleResultStatusLabels as bG, ComplianceImplementationStepsInput as bH, SimplifiedCredential as bI, GetCredentialsRequest as bJ, GetCredentialsResponse as bK, PolygonIdRequestData as bL, PolygonIdRequest as bM, PolygonIdResponseData as bN, PolygonIdResponse as bO, StartFlowRequest as bP, IsVerifiedRequest as bQ, IsVerifiedResponse as bR, GetTxAuthSigRequest as bS, GetTxAuthSigResponse as bT, GetTxAuthSigRequestTezos as bU, GetTxAuthSigResponseTezos as bV, HostRequestMessage as bW, IdentityResponseMessage as bX, WalletChallengeRequest as bY, AuthSession as bZ, ChallengeResponse as b_, IdentityRequestMessage as ba, AVAILABLE_FLOWS as bb, AvailableFlow as bc, DataAvailableOnStart as bd, InitialDataResponse as be, SignatureResponse as bf, TransactionResponse as bg, HostResponseMessage as bh, ChallengeQueryOperators as bi, ChallengeQueryOperator as bj, OperatorToChallengeQueryOperator as bk, ChallengeQueryOperatorToOperator as bl, ChallengeQuerySchema as bm, ExecuteChallengeQueryInput as bn, ExecuteChallengeQueryConfig as bo, OpaChallengeQueryResponse as bp, ExecuteChallengeQueryResponse as bq, OPAChallengeQuery as br, OnChainRuleResult as bs, OffChainZKPRuleResult as bt, SdkVerificationOutput as bu, VerificationSessionStatuses as bv, VerificationSessionStatus as bw, VerificationOutput as bx, ScenarioTypes as by, ScenarioType as bz, NEXERA_STARKNET_CHAINS as c, TezosTxAuthInput as c$, TxAuthDataSignatureGatingRequest as c0, GetCustomerStatusRequest as c1, IdentitySdkMessage as c2, IdentitySdkMessageWithIdentifier as c3, TxAuthDataSignatureResponse as c4, GetCustomerStatusResponse as c5, VerificationBeginNotification as c6, ValidVerificationCompleteData as c7, VerificationCompleteNotification as c8, IdentityAppMessage as c9, NumericOperator as cA, BOOLEAN_OPERATORS as cB, BooleanOperator as cC, DATE_OPERATORS as cD, DateOperator as cE, SUPPORTED_TYPES as cF, SupportedType as cG, SupportedTypes as cH, IDInformation as cI, QueryConfig as cJ, QueryType as cK, QueryConfigSimplified as cL, PartialQueryConfigSimplified as cM, QueryConfigSimplifiedParsed as cN, QueryConfiguration as cO, NonParsedQueryConfiguration as cP, CreateQueryConfigurationInput as cQ, CreateQueryConfigurationResponse as cR, UpdateQueryConfigurationInput as cS, UpdateQueryConfigurationResponse as cT, DeleteQueryConfigurationInput as cU, DeleteQueryConfigurationResponse as cV, QueryCredentialTypes as cW, QueryCredentialType as cX, TxAuthInput as cY, TxSignatureResponse as cZ, GetTxAuthDataSignatureResponse as c_, HostMessage as ca, IdentityMessage as cb, RequiredDataRowSchema as cc, RequiredVerificationData as cd, MediaType as ce, MediaTypePID as cf, ZeroKnowledgeProofRequest as cg, AuthorizationRequestMessage as ch, ProofData as ci, ZeroKnowledgeProofResponse as cj, AuthorizationResponseMessage as ck, CredentialQrCodeData as cl, AuthQrCodeData as cm, QrCodeLinkWithSchemaType as cn, parseIden3Message as co, parseSessionIdFromUrl as cp, AllCredentialAttributes as cq, AllCredentialValues as cr, Operator as cs, ZKPOperator as ct, operatorDisplayMap as cu, ARRAY_OPERATORS as cv, ArrayOperator as cw, STRING_OPERATORS as cx, StringOperator as cy, NUMERIC_OPERATORS as cz, NEXERA_EVM_CHAIN_NAMES as d, _toConsumableArray as d$, TezosTxSignatureResponse as d0, GetTezosTxAuthDataSignatureResponse as d1, ExtendedTxAuthInput as d2, ExtendedTezosTxAuthInput as d3, AnyTxAuthInput as d4, ExtendedTxAuthDataSignatureResponse as d5, ExtendedTezosTxAuthDataSignatureResponse as d6, AnyTxAuthDataSignatureResponse as d7, ZKPRequest as d8, ZKPRequestFromZKVerifier as d9, BasicCustomerContactInformation as dA, CUSTOMERS_CHARTS as dB, CustomersChartType as dC, CUSTOMER_TABLE_COLUMNS as dD, CustomerTableColumn as dE, CUSTOMER_AUTOMATION_REASONS as dF, ID3CredentialSubjectSchema as dG, IDScanCredentialSubjectSchema as dH, IDScanPassportCredentialSubjectSchema as dI, IDScanSelfieCredentialSubjectSchema as dJ, OLD_IDImageCredentialSubjectSchema as dK, OLD_IDInformationCredentialSubjectSchema as dL, OLD_ProofOfResidenceCredentialSubjectSchema as dM, OLD_SelfieImageCredentialSubjectSchema as dN, OLD_AMLScreeningsResultsCredentialSubjectSchema as dO, IDInformationCredentialSubjectSchema as dP, IDImageCredentialSubjectSchema as dQ, SelfieImageCredentialSubjectSchema as dR, ProofOfResidenceCredentialSubjectSchema as dS, GenericVerifiableCredentialSchema as dT, CredentialSchemas as dU, CredentialNames as dV, NexeraCredentialType as dW, getCredentialName as dX, CredentialType as dY, VerifiableCredential as dZ, CredentialMediaType as d_, OffChainZKP as da, CreateAuthRequestProps as db, CreateZKProofRequestProps as dc, AllScenarioExecutionAuthorizationData as dd, ProjectAuthorizationData as de, OnChainZKP as df, OnChainZKPFromNexeraID as dg, OnChainZKPScenarioFromCms as dh, OnChainZKPPayload as di, SCENARIO_AUTHORIZATION_STATUSES as dj, ScenarioAuthorizationStatus as dk, WalletSignatureResponse as dl, WalletSignatureData as dm, RiskScoreTypes as dn, RiskScoreType as dp, CustomerTypes as dq, CustomerType as dr, KycOnboardingLevels as ds, KycOnboardingLevel as dt, KybOnboardingLevels as du, KybOnboardingLevel as dv, CustomerOnboardingLevels as dw, CustomerOnboardingLevel as dx, CustomerStatuses as dy, CustomerStatus as dz, NEXERA_EVM_CHAIN_NAMES_LIST as e, NEXERA_CHAIN_VALUES as f, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as g, EvmChainId as h, PolygonNetworkNames as i, NEXERA_TEZOS_CHAIN_NAMES as j, NEXERA_TEZOS_CHAIN_NAMES_LIST as k, NEXERA_TEZOS_CHAIN_VALUES as l, ACTIVE_TEZOS_CHAIN_VALUES as m, COSMOS_CHAIN_NAMES as n, COSMOS_CHAIN_NAMES_LIST as o, COSMOS_CHAIN_VALUES as p, ACTIVE_COSMOS_CHAIN_VALUES as q, CosmosChainId as r, NEXERA_STARKNET_CHAIN_NAMES as s, NEXERA_STARKNET_CHAIN_VALUES as t, NEXERA_ACTIVE_STARKNET_CHAIN_VALUES as u, isValidAddress as v, String0x as w, PrivateKey as x, PublicKey as y, AddressSchema as z };
3255
+ export { TezosSignature as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, TxHash as D, EVM_BLOCK_TIME as E, EIP155Signature as F, FunctionCallData as G, shortAddress as H, AptosAddress as I, AptosSignature as J, StarknetAddress as K, StarknetSignature as L, PolkadotAddress as M, NEXERA_EVM_CHAINS as N, PolkadotSignature as O, POLYGON_NETWORK_NAMES as P, CosmosAddress as Q, CosmosSignature as R, StarknetChainId as S, TezosChainId as T, TezosImplicitAddress as U, TezosContractAddress as V, TezosAddress as W, TezosEntrypointName as X, EdSignature as Y, SpSignature as Z, P2Signature as _, NEXERA_TEZOS_CHAINS as a, OnChainScenarioExecutionData as a$, CardanoAddress as a0, CardanoSignature as a1, BlockchainAddress as a2, BlockchainSignature as a3, BLOCKCHAIN_NAMESPACES as a4, BlockchainNamespace as a5, BLOCKCHAIN_NAMESPACES_NAMES as a6, DISPLAYED_LOCKCHAIN_NAMESPACES as a7, DisplayedBlockchainNamespace as a8, BLOCKCHAIN_NAME_TO_NAMESPACE as a9, VerificationModes as aA, VerificationMode as aB, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as aC, IdentityDocumentCountryListOption as aD, IDENTITY_DOCUMENT_OPTIONS as aE, IdentityDocumentOptionsType as aF, PERSONAL_INFORMATION_FIELDS as aG, PersonalInformationFieldsIdentityDocuments as aH, Identifier as aI, AdditionalCustomerInformationParams as aJ, IdentityWidgetAccessToken as aK, OrganizationId as aL, WorkspaceId as aM, WorkflowId as aN, ExternalCustomerId as aO, IdentityAppV2Web3JWT as aP, IdentityAppV2Web2JWT as aQ, IdentityWidgetAccessToken_NEW as aR, IdentityWidgetSessionToken as aS, Web2CreateSessionParams as aT, ScenarioAuthorizationData as aU, SdkVerificationResponseSchema as aV, CloseScreenNotification as aW, KycCompletionData as aX, KycCompletionNotification as aY, RuleEngineScenarioExecutionData as aZ, OffChainScenarioExecutionData as a_, BLOCKCHAIN_NAMESPACE_TO_NAME as aa, coerceBoolean as ab, ENVS as ac, EnvironmentSchema as ad, UuidString as ae, ZodParse as af, shortBlockchainAddress as ag, PUBLIC_SERVICES_SCHEMA_MAP as ah, ISO3CountryCode as ai, ALPHA_2_COUNTRIES as aj, Alpha2Country as ak, countryISO3toISO2Mapping as al, countryISO2toISO3Mapping as am, isoCountriesNameFromISO2 as an, parseISO3CountryCode as ao, createBrandedSchemaId as ap, StorageId as aq, IdentityId as ar, EmailId as as, WalletId as at, AppId as au, ChallengeId as av, TestId as aw, generateId as ax, FLOW_TYPES as ay, FlowType as az, NEXERA_COSMOS_CHAINS as b, ChallengeResponse as b$, ScenarioExecutionData as b0, ScenarioExecutionNotification as b1, IsVerifiedNotification as b2, PolygonIdInitialized as b3, OcvSdkInitialized as b4, StartCompletedNotification as b5, IdentityNotificationMessage as b6, InitialDataRequest as b7, SignatureRequest as b8, TransactionData as b9, ScenarioType as bA, ScenarioStatuses as bB, ScenarioStatus as bC, RuleEngineResponse as bD, ScenarioExecutionResponse as bE, RuleResultStatuses as bF, RuleResultStatus as bG, RuleResultStatusLabels as bH, ComplianceImplementationStepsInput as bI, SimplifiedCredential as bJ, GetCredentialsRequest as bK, GetCredentialsResponse as bL, PolygonIdRequestData as bM, PolygonIdRequest as bN, PolygonIdResponseData as bO, PolygonIdResponse as bP, StartFlowRequest as bQ, IsVerifiedRequest as bR, IsVerifiedResponse as bS, GetTxAuthSigRequest as bT, GetTxAuthSigResponse as bU, GetTxAuthSigRequestTezos as bV, GetTxAuthSigResponseTezos as bW, HostRequestMessage as bX, IdentityResponseMessage as bY, WalletChallengeRequest as bZ, AuthSession as b_, SendTransactionRequest as ba, IdentityRequestMessage as bb, AVAILABLE_FLOWS as bc, AvailableFlow as bd, DataAvailableOnStart as be, InitialDataResponse as bf, SignatureResponse as bg, TransactionResponse as bh, HostResponseMessage as bi, ChallengeQueryOperators as bj, ChallengeQueryOperator as bk, OperatorToChallengeQueryOperator as bl, ChallengeQueryOperatorToOperator as bm, ChallengeQuerySchema as bn, ExecuteChallengeQueryInput as bo, ExecuteChallengeQueryConfig as bp, OpaChallengeQueryResponse as bq, ExecuteChallengeQueryResponse as br, OPAChallengeQuery as bs, OnChainRuleResult as bt, OffChainZKPRuleResult as bu, SdkVerificationOutput as bv, VerificationSessionStatuses as bw, VerificationSessionStatus as bx, VerificationOutput as by, ScenarioTypes as bz, NEXERA_STARKNET_CHAINS as c, GetTxAuthDataSignatureResponse as c$, WalletSignResponse as c0, TxAuthDataSignatureGatingRequest as c1, GetCustomerStatusRequest as c2, IdentitySdkMessage as c3, IdentitySdkMessageWithIdentifier as c4, TxAuthDataSignatureResponse as c5, GetCustomerStatusResponse as c6, VerificationBeginNotification as c7, ValidVerificationCompleteData as c8, VerificationCompleteNotification as c9, NUMERIC_OPERATORS as cA, NumericOperator as cB, BOOLEAN_OPERATORS as cC, BooleanOperator as cD, DATE_OPERATORS as cE, DateOperator as cF, SUPPORTED_TYPES as cG, SupportedType as cH, SupportedTypes as cI, IDInformation as cJ, QueryConfig as cK, QueryType as cL, QueryConfigSimplified as cM, PartialQueryConfigSimplified as cN, QueryConfigSimplifiedParsed as cO, QueryConfiguration as cP, NonParsedQueryConfiguration as cQ, CreateQueryConfigurationInput as cR, CreateQueryConfigurationResponse as cS, UpdateQueryConfigurationInput as cT, UpdateQueryConfigurationResponse as cU, DeleteQueryConfigurationInput as cV, DeleteQueryConfigurationResponse as cW, QueryCredentialTypes as cX, QueryCredentialType as cY, TxAuthInput as cZ, TxSignatureResponse as c_, IdentityAppMessage as ca, HostMessage as cb, IdentityMessage as cc, RequiredDataRowSchema as cd, RequiredVerificationData as ce, MediaType as cf, MediaTypePID as cg, ZeroKnowledgeProofRequest as ch, AuthorizationRequestMessage as ci, ProofData as cj, ZeroKnowledgeProofResponse as ck, AuthorizationResponseMessage as cl, CredentialQrCodeData as cm, AuthQrCodeData as cn, QrCodeLinkWithSchemaType as co, parseIden3Message as cp, parseSessionIdFromUrl as cq, AllCredentialAttributes as cr, AllCredentialValues as cs, Operator as ct, ZKPOperator as cu, operatorDisplayMap as cv, ARRAY_OPERATORS as cw, ArrayOperator as cx, STRING_OPERATORS as cy, StringOperator as cz, NEXERA_EVM_CHAIN_NAMES as d, CredentialMediaType as d$, TezosTxAuthInput as d0, TezosTxSignatureResponse as d1, GetTezosTxAuthDataSignatureResponse as d2, ExtendedTxAuthInput as d3, ExtendedTezosTxAuthInput as d4, AnyTxAuthInput as d5, ExtendedTxAuthDataSignatureResponse as d6, ExtendedTezosTxAuthDataSignatureResponse as d7, AnyTxAuthDataSignatureResponse as d8, ZKPRequest as d9, CustomerStatus as dA, BasicCustomerContactInformation as dB, CUSTOMERS_CHARTS as dC, CustomersChartType as dD, CUSTOMER_TABLE_COLUMNS as dE, CustomerTableColumn as dF, CUSTOMER_AUTOMATION_REASONS as dG, ID3CredentialSubjectSchema as dH, IDScanCredentialSubjectSchema as dI, IDScanPassportCredentialSubjectSchema as dJ, IDScanSelfieCredentialSubjectSchema as dK, OLD_IDImageCredentialSubjectSchema as dL, OLD_IDInformationCredentialSubjectSchema as dM, OLD_ProofOfResidenceCredentialSubjectSchema as dN, OLD_SelfieImageCredentialSubjectSchema as dO, OLD_AMLScreeningsResultsCredentialSubjectSchema as dP, IDInformationCredentialSubjectSchema as dQ, IDImageCredentialSubjectSchema as dR, SelfieImageCredentialSubjectSchema as dS, ProofOfResidenceCredentialSubjectSchema as dT, GenericVerifiableCredentialSchema as dU, CredentialSchemas as dV, CredentialNames as dW, NexeraCredentialType as dX, getCredentialName as dY, CredentialType as dZ, VerifiableCredential as d_, ZKPRequestFromZKVerifier as da, OffChainZKP as db, CreateAuthRequestProps as dc, CreateZKProofRequestProps as dd, AllScenarioExecutionAuthorizationData as de, ProjectAuthorizationData as df, OnChainZKP as dg, OnChainZKPFromNexeraID as dh, OnChainZKPScenarioFromCms as di, OnChainZKPPayload as dj, SCENARIO_AUTHORIZATION_STATUSES as dk, ScenarioAuthorizationStatus as dl, WalletSignatureResponse as dm, WalletSignatureData as dn, RiskScoreTypes as dp, RiskScoreType as dq, CustomerTypes as dr, CustomerType as ds, KycOnboardingLevels as dt, KycOnboardingLevel as du, KybOnboardingLevels as dv, KybOnboardingLevel as dw, CustomerOnboardingLevels as dx, CustomerOnboardingLevel as dy, CustomerStatuses as dz, NEXERA_EVM_CHAIN_NAMES_LIST as e, _toConsumableArray as e0, NEXERA_CHAIN_VALUES as f, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as g, EvmChainId as h, PolygonNetworkNames as i, NEXERA_TEZOS_CHAIN_NAMES as j, NEXERA_TEZOS_CHAIN_NAMES_LIST as k, NEXERA_TEZOS_CHAIN_VALUES as l, ACTIVE_TEZOS_CHAIN_VALUES as m, COSMOS_CHAIN_NAMES as n, COSMOS_CHAIN_NAMES_LIST as o, COSMOS_CHAIN_VALUES as p, ACTIVE_COSMOS_CHAIN_VALUES as q, CosmosChainId as r, NEXERA_STARKNET_CHAIN_NAMES as s, NEXERA_STARKNET_CHAIN_VALUES as t, NEXERA_ACTIVE_STARKNET_CHAIN_VALUES as u, isValidAddress as v, String0x as w, PrivateKey as x, PublicKey as y, AddressSchema as z };
@@ -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-9db90005.cjs.dev.js');
7
- var frontendUtilities_schema = require('./frontend-utilities.schema-50fdec6e.cjs.dev.js');
6
+ var identityApi_schema = require('./identity-api.schema-32516598.cjs.dev.js');
7
+ var frontendUtilities_schema = require('./frontend-utilities.schema-b031116d.cjs.dev.js');
8
8
  require('nanoid');
9
9
 
10
10
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -357,6 +357,7 @@ exports.WalletId = identityApi_schema.WalletId;
357
357
  exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
358
358
  exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
359
359
  exports.WalletSignatureResponse = identityApi_schema.WalletSignatureResponse;
360
+ exports.Web2CreateSessionParams = identityApi_schema.Web2CreateSessionParams;
360
361
  exports.WorkflowId = identityApi_schema.WorkflowId;
361
362
  exports.WorkspaceId = identityApi_schema.WorkspaceId;
362
363
  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-582be049.cjs.prod.js');
7
- var frontendUtilities_schema = require('./frontend-utilities.schema-caaeef3b.cjs.prod.js');
6
+ var identityApi_schema = require('./identity-api.schema-4f0296c0.cjs.prod.js');
7
+ var frontendUtilities_schema = require('./frontend-utilities.schema-d9815781.cjs.prod.js');
8
8
  require('nanoid');
9
9
 
10
10
  var decodeUint8Array = function decodeUint8Array(data) {
@@ -357,6 +357,7 @@ exports.WalletId = identityApi_schema.WalletId;
357
357
  exports.WalletSignResponse = identityApi_schema.WalletSignResponse;
358
358
  exports.WalletSignatureData = identityApi_schema.WalletSignatureData;
359
359
  exports.WalletSignatureResponse = identityApi_schema.WalletSignatureResponse;
360
+ exports.Web2CreateSessionParams = identityApi_schema.Web2CreateSessionParams;
360
361
  exports.WorkflowId = identityApi_schema.WorkflowId;
361
362
  exports.WorkspaceId = identityApi_schema.WorkspaceId;
362
363
  exports.ZKPOperator = identityApi_schema.ZKPOperator;
@@ -1,7 +1,7 @@
1
1
  import { z } from 'zod';
2
- import { C as CredentialTypes } from './identity-api.schema-a34ad87c.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, cv as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, aJ as AdditionalCustomerInformationParams, z as AddressSchema, cq as AllCredentialAttributes, cr as AllCredentialValues, dd as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d7 as AnyTxAuthDataSignatureResponse, d4 as AnyTxAuthInput, au as AppId, I as AptosAddress, J as AptosSignature, cw as ArrayOperator, cm as AuthQrCodeData, bZ as AuthSession, ch as AuthorizationRequestMessage, ck 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, cB as BOOLEAN_OPERATORS, dA as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cC as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, dB as CUSTOMERS_CHARTS, dF as CUSTOMER_AUTOMATION_REASONS, dD as CUSTOMER_TABLE_COLUMNS, a0 as CardanoAddress, a1 as CardanoSignature, av as ChallengeId, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, b_ as ChallengeResponse, aV as CloseScreenNotification, bH as ComplianceImplementationStepsInput, Q as CosmosAddress, r as CosmosChainId, R as CosmosSignature, db as CreateAuthRequestProps, cQ as CreateQueryConfigurationInput, cR as CreateQueryConfigurationResponse, dc as CreateZKProofRequestProps, d_ as CredentialMediaType, dV as CredentialNames, cl as CredentialQrCodeData, dU as CredentialSchemas, dY as CredentialType, C as CredentialTypes, dx as CustomerOnboardingLevel, dw as CustomerOnboardingLevels, dz as CustomerStatus, dy as CustomerStatuses, dE as CustomerTableColumn, dr as CustomerType, dq as CustomerTypes, dC as CustomersChartType, cD as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, bd as DataAvailableOnStart, cE as DateOperator, cU as DeleteQueryConfigurationInput, cV 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, d6 as ExtendedTezosTxAuthDataSignatureResponse, d3 as ExtendedTezosTxAuthInput, d5 as ExtendedTxAuthDataSignatureResponse, d2 as ExtendedTxAuthInput, aO as ExternalCustomerId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, dT as GenericVerifiableCredentialSchema, bJ as GetCredentialsRequest, bK as GetCredentialsResponse, c1 as GetCustomerStatusRequest, c5 as GetCustomerStatusResponse, d1 as GetTezosTxAuthDataSignatureResponse, c_ as GetTxAuthDataSignatureResponse, bS as GetTxAuthSigRequest, bU as GetTxAuthSigRequestTezos, bT as GetTxAuthSigResponse, bV as GetTxAuthSigResponseTezos, ca as HostMessage, bW as HostRequestMessage, bh as HostResponseMessage, dG as ID3CredentialSubjectSchema, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, dQ as IDImageCredentialSubjectSchema, cI as IDInformation, dP as IDInformationCredentialSubjectSchema, dH as IDScanCredentialSubjectSchema, dI as IDScanPassportCredentialSubjectSchema, dJ as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, aI as Identifier, c9 as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, cb as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bX as IdentityResponseMessage, c2 as IdentitySdkMessage, c3 as IdentitySdkMessageWithIdentifier, aK as IdentityWidgetAccessToken, aR as IdentityWidgetAccessToken_NEW, aS as IdentityWidgetSessionToken, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bQ as IsVerifiedRequest, bR as IsVerifiedResponse, dv as KybOnboardingLevel, du as KybOnboardingLevels, aW as KycCompletionData, aX as KycCompletionNotification, dt as KycOnboardingLevel, ds as KycOnboardingLevels, ce as MediaType, cf 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, cz as NUMERIC_OPERATORS, dW as NexeraCredentialType, cP as NonParsedQueryConfiguration, cA as NumericOperator, dO as OLD_AMLScreeningsResultsCredentialSubjectSchema, dK as OLD_IDImageCredentialSubjectSchema, dL as OLD_IDInformationCredentialSubjectSchema, dM as OLD_ProofOfResidenceCredentialSubjectSchema, dN as OLD_SelfieImageCredentialSubjectSchema, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, da as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, df as OnChainZKP, dg as OnChainZKPFromNexeraID, di as OnChainZKPPayload, dh as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cs 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, cM as PartialQueryConfigSimplified, aH as PersonalInformationFieldsIdentityDocuments, M as PolkadotAddress, O as PolkadotSignature, b2 as PolygonIdInitialized, bM as PolygonIdRequest, bL as PolygonIdRequestData, bO as PolygonIdResponse, bN as PolygonIdResponseData, i as PolygonNetworkNames, x as PrivateKey, de as ProjectAuthorizationData, ci as ProofData, dS as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, cn as QrCodeLinkWithSchemaType, cJ as QueryConfig, cL as QueryConfigSimplified, cN as QueryConfigSimplifiedParsed, cO as QueryConfiguration, cX as QueryCredentialType, cW as QueryCredentialTypes, cK as QueryType, cc as RequiredDataRowSchema, cd as RequiredVerificationData, dp as RiskScoreType, dn as RiskScoreTypes, bC as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bF as RuleResultStatus, bG as RuleResultStatusLabels, bE as RuleResultStatuses, dj as SCENARIO_AUTHORIZATION_STATUSES, cx as STRING_OPERATORS, cF as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, dk as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bD as ScenarioExecutionResponse, bB as ScenarioStatus, bA as ScenarioStatuses, bz as ScenarioType, by as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, dR as SelfieImageCredentialSubjectSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bI as SimplifiedCredential, Z as SpSignature, K as StarknetAddress, S as StarknetChainId, L as StarknetSignature, b4 as StartCompletedNotification, bP as StartFlowRequest, aq as StorageId, w as String0x, cy as StringOperator, cG as SupportedType, cH as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, c$ as TezosTxAuthInput, d0 as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, c0 as TxAuthDataSignatureGatingRequest, c4 as TxAuthDataSignatureResponse, cY as TxAuthInput, D as TxHash, cZ as TxSignatureResponse, cS as UpdateQueryConfigurationInput, cT as UpdateQueryConfigurationResponse, ae as UuidString, c7 as ValidVerificationCompleteData, dZ as VerifiableCredential, c6 as VerificationBeginNotification, c8 as VerificationCompleteNotification, aB as VerificationMode, aA as VerificationModes, bx as VerificationOutput, bw as VerificationSessionStatus, bv as VerificationSessionStatuses, bY as WalletChallengeRequest, at as WalletId, b$ as WalletSignResponse, dm as WalletSignatureData, dl as WalletSignatureResponse, aN as WorkflowId, aM as WorkspaceId, ct as ZKPOperator, d8 as ZKPRequest, d9 as ZKPRequestFromZKVerifier, cg as ZeroKnowledgeProofRequest, cj as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, dX as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, cu as operatorDisplayMap, ao as parseISO3CountryCode, co as parseIden3Message, cp as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-a34ad87c.esm.js';
4
- export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-89d25d69.esm.js';
2
+ import { C as CredentialTypes } from './identity-api.schema-ea0d3694.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, cw as ARRAY_OPERATORS, bc as AVAILABLE_FLOWS, aJ as AdditionalCustomerInformationParams, z as AddressSchema, cr as AllCredentialAttributes, cs as AllCredentialValues, de as AllScenarioExecutionAuthorizationData, ak as Alpha2Country, d8 as AnyTxAuthDataSignatureResponse, d5 as AnyTxAuthInput, au as AppId, I as AptosAddress, J as AptosSignature, cx as ArrayOperator, cn as AuthQrCodeData, b_ as AuthSession, ci as AuthorizationRequestMessage, cl 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, cC as BOOLEAN_OPERATORS, dB as BasicCustomerContactInformation, a2 as BlockchainAddress, B as BlockchainId, a5 as BlockchainNamespace, a3 as BlockchainSignature, cD as BooleanOperator, n as COSMOS_CHAIN_NAMES, o as COSMOS_CHAIN_NAMES_LIST, p as COSMOS_CHAIN_VALUES, dC as CUSTOMERS_CHARTS, dG as CUSTOMER_AUTOMATION_REASONS, dE 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, dc as CreateAuthRequestProps, cR as CreateQueryConfigurationInput, cS as CreateQueryConfigurationResponse, dd as CreateZKProofRequestProps, d$ as CredentialMediaType, dW as CredentialNames, cm as CredentialQrCodeData, dV as CredentialSchemas, dZ as CredentialType, C as CredentialTypes, dy as CustomerOnboardingLevel, dx as CustomerOnboardingLevels, dA as CustomerStatus, dz as CustomerStatuses, dF as CustomerTableColumn, ds as CustomerType, dr as CustomerTypes, dD as CustomersChartType, cE as DATE_OPERATORS, a7 as DISPLAYED_LOCKCHAIN_NAMESPACES, be as DataAvailableOnStart, cF as DateOperator, cV as DeleteQueryConfigurationInput, cW 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, d7 as ExtendedTezosTxAuthDataSignatureResponse, d4 as ExtendedTezosTxAuthInput, d6 as ExtendedTxAuthDataSignatureResponse, d3 as ExtendedTxAuthInput, aO as ExternalCustomerId, ay as FLOW_TYPES, az as FlowType, G as FunctionCallData, dU as GenericVerifiableCredentialSchema, bK as GetCredentialsRequest, bL as GetCredentialsResponse, c2 as GetCustomerStatusRequest, c6 as GetCustomerStatusResponse, d2 as GetTezosTxAuthDataSignatureResponse, c$ as GetTxAuthDataSignatureResponse, bT as GetTxAuthSigRequest, bV as GetTxAuthSigRequestTezos, bU as GetTxAuthSigResponse, bW as GetTxAuthSigResponseTezos, cb as HostMessage, bX as HostRequestMessage, bi as HostResponseMessage, dH as ID3CredentialSubjectSchema, aC as IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS, aE as IDENTITY_DOCUMENT_OPTIONS, dR as IDImageCredentialSubjectSchema, cJ as IDInformation, dQ as IDInformationCredentialSubjectSchema, dI as IDScanCredentialSubjectSchema, dJ as IDScanPassportCredentialSubjectSchema, dK as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, aI as Identifier, ca as IdentityAppMessage, aQ as IdentityAppV2Web2JWT, aP as IdentityAppV2Web3JWT, aD as IdentityDocumentCountryListOption, aF as IdentityDocumentOptionsType, ar as IdentityId, cc 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, dw as KybOnboardingLevel, dv as KybOnboardingLevels, aX as KycCompletionData, aY as KycCompletionNotification, du as KycOnboardingLevel, dt as KycOnboardingLevels, cf as MediaType, cg 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, cA as NUMERIC_OPERATORS, dX as NexeraCredentialType, cQ as NonParsedQueryConfiguration, cB as NumericOperator, dP as OLD_AMLScreeningsResultsCredentialSubjectSchema, dL as OLD_IDImageCredentialSubjectSchema, dM as OLD_IDInformationCredentialSubjectSchema, dN as OLD_ProofOfResidenceCredentialSubjectSchema, dO as OLD_SelfieImageCredentialSubjectSchema, bs as OPAChallengeQuery, b4 as OcvSdkInitialized, a_ as OffChainScenarioExecutionData, db as OffChainZKP, bu as OffChainZKPRuleResult, bt as OnChainRuleResult, a$ as OnChainScenarioExecutionData, dg as OnChainZKP, dh as OnChainZKPFromNexeraID, dj as OnChainZKPPayload, di as OnChainZKPScenarioFromCms, bq as OpaChallengeQueryResponse, ct 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, cN 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, df as ProjectAuthorizationData, cj as ProofData, dT as ProofOfResidenceCredentialSubjectSchema, y as PublicKey, co as QrCodeLinkWithSchemaType, cK as QueryConfig, cM as QueryConfigSimplified, cO as QueryConfigSimplifiedParsed, cP as QueryConfiguration, cY as QueryCredentialType, cX as QueryCredentialTypes, cL as QueryType, cd as RequiredDataRowSchema, ce as RequiredVerificationData, dq as RiskScoreType, dp as RiskScoreTypes, bD as RuleEngineResponse, aZ as RuleEngineScenarioExecutionData, bG as RuleResultStatus, bH as RuleResultStatusLabels, bF as RuleResultStatuses, dk as SCENARIO_AUTHORIZATION_STATUSES, cy as STRING_OPERATORS, cG as SUPPORTED_TYPES, aU as ScenarioAuthorizationData, dl 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, dS 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, cz as StringOperator, cH as SupportedType, cI as SupportedTypes, aw as TestId, W as TezosAddress, T as TezosChainId, V as TezosContractAddress, X as TezosEntrypointName, U as TezosImplicitAddress, $ as TezosSignature, d0 as TezosTxAuthInput, d1 as TezosTxSignatureResponse, b9 as TransactionData, bh as TransactionResponse, c1 as TxAuthDataSignatureGatingRequest, c5 as TxAuthDataSignatureResponse, cZ as TxAuthInput, D as TxHash, c_ as TxSignatureResponse, cT as UpdateQueryConfigurationInput, cU as UpdateQueryConfigurationResponse, ae as UuidString, c8 as ValidVerificationCompleteData, d_ as VerifiableCredential, c7 as VerificationBeginNotification, c9 as VerificationCompleteNotification, aB as VerificationMode, aA as VerificationModes, by as VerificationOutput, bx as VerificationSessionStatus, bw as VerificationSessionStatuses, bZ as WalletChallengeRequest, at as WalletId, c0 as WalletSignResponse, dn as WalletSignatureData, dm as WalletSignatureResponse, aT as Web2CreateSessionParams, aN as WorkflowId, aM as WorkspaceId, cu as ZKPOperator, d9 as ZKPRequest, da as ZKPRequestFromZKVerifier, ch as ZeroKnowledgeProofRequest, ck as ZeroKnowledgeProofResponse, af as ZodParse, ab as coerceBoolean, am as countryISO2toISO3Mapping, al as countryISO3toISO2Mapping, ap as createBrandedSchemaId, ax as generateId, dY as getCredentialName, v as isValidAddress, an as isoCountriesNameFromISO2, cv as operatorDisplayMap, ao as parseISO3CountryCode, cp as parseIden3Message, cq as parseSessionIdFromUrl, H as shortAddress, ag as shortBlockchainAddress } from './identity-api.schema-ea0d3694.esm.js';
4
+ export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from './frontend-utilities.schema-b735a522.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.18",
3
+ "version": "1.12.19",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -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-9db90005.cjs.dev.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-32516598.cjs.dev.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -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-582be049.cjs.prod.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-4f0296c0.cjs.prod.js');
6
6
  require('zod');
7
7
  require('nanoid');
8
8
 
@@ -1,3 +1,3 @@
1
- export { cv as ARRAY_OPERATORS, bb as AVAILABLE_FLOWS, cq as AllCredentialAttributes, cr as AllCredentialValues, dd as AllScenarioExecutionAuthorizationData, d7 as AnyTxAuthDataSignatureResponse, d4 as AnyTxAuthInput, cw as ArrayOperator, cm as AuthQrCodeData, bZ as AuthSession, ch as AuthorizationRequestMessage, ck as AuthorizationResponseMessage, bc as AvailableFlow, cB as BOOLEAN_OPERATORS, cC as BooleanOperator, bj as ChallengeQueryOperator, bl as ChallengeQueryOperatorToOperator, bi as ChallengeQueryOperators, bm as ChallengeQuerySchema, b_ as ChallengeResponse, aV as CloseScreenNotification, bH as ComplianceImplementationStepsInput, db as CreateAuthRequestProps, cQ as CreateQueryConfigurationInput, cR as CreateQueryConfigurationResponse, dc as CreateZKProofRequestProps, cl as CredentialQrCodeData, cD as DATE_OPERATORS, bd as DataAvailableOnStart, cE as DateOperator, cU as DeleteQueryConfigurationInput, cV as DeleteQueryConfigurationResponse, bo as ExecuteChallengeQueryConfig, bn as ExecuteChallengeQueryInput, bq as ExecuteChallengeQueryResponse, d6 as ExtendedTezosTxAuthDataSignatureResponse, d3 as ExtendedTezosTxAuthInput, d5 as ExtendedTxAuthDataSignatureResponse, d2 as ExtendedTxAuthInput, bJ as GetCredentialsRequest, bK as GetCredentialsResponse, c1 as GetCustomerStatusRequest, c5 as GetCustomerStatusResponse, d1 as GetTezosTxAuthDataSignatureResponse, c_ as GetTxAuthDataSignatureResponse, bS as GetTxAuthSigRequest, bU as GetTxAuthSigRequestTezos, bT as GetTxAuthSigResponse, bV as GetTxAuthSigResponseTezos, ca as HostMessage, bW as HostRequestMessage, bh as HostResponseMessage, cI as IDInformation, c9 as IdentityAppMessage, cb as IdentityMessage, b5 as IdentityNotificationMessage, ba as IdentityRequestMessage, bX as IdentityResponseMessage, c2 as IdentitySdkMessage, c3 as IdentitySdkMessageWithIdentifier, b6 as InitialDataRequest, be as InitialDataResponse, b1 as IsVerifiedNotification, bQ as IsVerifiedRequest, bR as IsVerifiedResponse, aW as KycCompletionData, aX as KycCompletionNotification, ce as MediaType, cf as MediaTypePID, cz as NUMERIC_OPERATORS, cP as NonParsedQueryConfiguration, cA as NumericOperator, br as OPAChallengeQuery, b3 as OcvSdkInitialized, aZ as OffChainScenarioExecutionData, da as OffChainZKP, bt as OffChainZKPRuleResult, bs as OnChainRuleResult, a_ as OnChainScenarioExecutionData, df as OnChainZKP, dg as OnChainZKPFromNexeraID, di as OnChainZKPPayload, dh as OnChainZKPScenarioFromCms, bp as OpaChallengeQueryResponse, cs as Operator, bk as OperatorToChallengeQueryOperator, cM as PartialQueryConfigSimplified, b2 as PolygonIdInitialized, bM as PolygonIdRequest, bL as PolygonIdRequestData, bO as PolygonIdResponse, bN as PolygonIdResponseData, de as ProjectAuthorizationData, ci as ProofData, cn as QrCodeLinkWithSchemaType, cJ as QueryConfig, cL as QueryConfigSimplified, cN as QueryConfigSimplifiedParsed, cO as QueryConfiguration, cX as QueryCredentialType, cW as QueryCredentialTypes, cK as QueryType, cc as RequiredDataRowSchema, cd as RequiredVerificationData, bC as RuleEngineResponse, aY as RuleEngineScenarioExecutionData, bF as RuleResultStatus, bG as RuleResultStatusLabels, bE as RuleResultStatuses, dj as SCENARIO_AUTHORIZATION_STATUSES, cx as STRING_OPERATORS, cF as SUPPORTED_TYPES, aT as ScenarioAuthorizationData, dk as ScenarioAuthorizationStatus, a$ as ScenarioExecutionData, b0 as ScenarioExecutionNotification, bD as ScenarioExecutionResponse, bB as ScenarioStatus, bA as ScenarioStatuses, bz as ScenarioType, by as ScenarioTypes, bu as SdkVerificationOutput, aU as SdkVerificationResponseSchema, b9 as SendTransactionRequest, b7 as SignatureRequest, bf as SignatureResponse, bI as SimplifiedCredential, b4 as StartCompletedNotification, bP as StartFlowRequest, cy as StringOperator, cG as SupportedType, cH as SupportedTypes, c$ as TezosTxAuthInput, d0 as TezosTxSignatureResponse, b8 as TransactionData, bg as TransactionResponse, c0 as TxAuthDataSignatureGatingRequest, c4 as TxAuthDataSignatureResponse, cY as TxAuthInput, cZ as TxSignatureResponse, cS as UpdateQueryConfigurationInput, cT as UpdateQueryConfigurationResponse, c7 as ValidVerificationCompleteData, c6 as VerificationBeginNotification, c8 as VerificationCompleteNotification, bx as VerificationOutput, bw as VerificationSessionStatus, bv as VerificationSessionStatuses, bY as WalletChallengeRequest, b$ as WalletSignResponse, dm as WalletSignatureData, dl as WalletSignatureResponse, ct as ZKPOperator, d8 as ZKPRequest, d9 as ZKPRequestFromZKVerifier, cg as ZeroKnowledgeProofRequest, cj as ZeroKnowledgeProofResponse, cu as operatorDisplayMap, co as parseIden3Message, cp as parseSessionIdFromUrl } from '../../dist/identity-api.schema-a34ad87c.esm.js';
1
+ export { cw as ARRAY_OPERATORS, bc as AVAILABLE_FLOWS, cr as AllCredentialAttributes, cs as AllCredentialValues, de as AllScenarioExecutionAuthorizationData, d8 as AnyTxAuthDataSignatureResponse, d5 as AnyTxAuthInput, cx as ArrayOperator, cn as AuthQrCodeData, b_ as AuthSession, ci as AuthorizationRequestMessage, cl as AuthorizationResponseMessage, bd as AvailableFlow, cC as BOOLEAN_OPERATORS, cD as BooleanOperator, bk as ChallengeQueryOperator, bm as ChallengeQueryOperatorToOperator, bj as ChallengeQueryOperators, bn as ChallengeQuerySchema, b$ as ChallengeResponse, aW as CloseScreenNotification, bI as ComplianceImplementationStepsInput, dc as CreateAuthRequestProps, cR as CreateQueryConfigurationInput, cS as CreateQueryConfigurationResponse, dd as CreateZKProofRequestProps, cm as CredentialQrCodeData, cE as DATE_OPERATORS, be as DataAvailableOnStart, cF as DateOperator, cV as DeleteQueryConfigurationInput, cW as DeleteQueryConfigurationResponse, bp as ExecuteChallengeQueryConfig, bo as ExecuteChallengeQueryInput, br as ExecuteChallengeQueryResponse, d7 as ExtendedTezosTxAuthDataSignatureResponse, d4 as ExtendedTezosTxAuthInput, d6 as ExtendedTxAuthDataSignatureResponse, d3 as ExtendedTxAuthInput, bK as GetCredentialsRequest, bL as GetCredentialsResponse, c2 as GetCustomerStatusRequest, c6 as GetCustomerStatusResponse, d2 as GetTezosTxAuthDataSignatureResponse, c$ as GetTxAuthDataSignatureResponse, bT as GetTxAuthSigRequest, bV as GetTxAuthSigRequestTezos, bU as GetTxAuthSigResponse, bW as GetTxAuthSigResponseTezos, cb as HostMessage, bX as HostRequestMessage, bi as HostResponseMessage, cJ as IDInformation, ca as IdentityAppMessage, cc 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, cf as MediaType, cg as MediaTypePID, cA as NUMERIC_OPERATORS, cQ as NonParsedQueryConfiguration, cB as NumericOperator, bs as OPAChallengeQuery, b4 as OcvSdkInitialized, a_ as OffChainScenarioExecutionData, db as OffChainZKP, bu as OffChainZKPRuleResult, bt as OnChainRuleResult, a$ as OnChainScenarioExecutionData, dg as OnChainZKP, dh as OnChainZKPFromNexeraID, dj as OnChainZKPPayload, di as OnChainZKPScenarioFromCms, bq as OpaChallengeQueryResponse, ct as Operator, bl as OperatorToChallengeQueryOperator, cN as PartialQueryConfigSimplified, b3 as PolygonIdInitialized, bN as PolygonIdRequest, bM as PolygonIdRequestData, bP as PolygonIdResponse, bO as PolygonIdResponseData, df as ProjectAuthorizationData, cj as ProofData, co as QrCodeLinkWithSchemaType, cK as QueryConfig, cM as QueryConfigSimplified, cO as QueryConfigSimplifiedParsed, cP as QueryConfiguration, cY as QueryCredentialType, cX as QueryCredentialTypes, cL as QueryType, cd as RequiredDataRowSchema, ce as RequiredVerificationData, bD as RuleEngineResponse, aZ as RuleEngineScenarioExecutionData, bG as RuleResultStatus, bH as RuleResultStatusLabels, bF as RuleResultStatuses, dk as SCENARIO_AUTHORIZATION_STATUSES, cy as STRING_OPERATORS, cG as SUPPORTED_TYPES, aU as ScenarioAuthorizationData, dl 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, cz as StringOperator, cH as SupportedType, cI as SupportedTypes, d0 as TezosTxAuthInput, d1 as TezosTxSignatureResponse, b9 as TransactionData, bh as TransactionResponse, c1 as TxAuthDataSignatureGatingRequest, c5 as TxAuthDataSignatureResponse, cZ as TxAuthInput, c_ as TxSignatureResponse, cT as UpdateQueryConfigurationInput, cU as UpdateQueryConfigurationResponse, c8 as ValidVerificationCompleteData, c7 as VerificationBeginNotification, c9 as VerificationCompleteNotification, by as VerificationOutput, bx as VerificationSessionStatus, bw as VerificationSessionStatuses, bZ as WalletChallengeRequest, c0 as WalletSignResponse, dn as WalletSignatureData, dm as WalletSignatureResponse, cu as ZKPOperator, d9 as ZKPRequest, da as ZKPRequestFromZKVerifier, ch as ZeroKnowledgeProofRequest, ck as ZeroKnowledgeProofResponse, cv as operatorDisplayMap, cp as parseIden3Message, cq as parseSessionIdFromUrl } from '../../dist/identity-api.schema-ea0d3694.esm.js';
2
2
  import 'zod';
3
3
  import 'nanoid';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexeraid/identity-schemas",
3
- "version": "1.12.18-dev",
3
+ "version": "1.12.19-dev",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "license": "ISC",
@@ -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-9db90005.cjs.dev.js');
6
- var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-50fdec6e.cjs.dev.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-32516598.cjs.dev.js');
6
+ var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-b031116d.cjs.dev.js');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
 
@@ -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-582be049.cjs.prod.js');
6
- var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-caaeef3b.cjs.prod.js');
5
+ var identityApi_schema = require('../../dist/identity-api.schema-4f0296c0.cjs.prod.js');
6
+ var frontendUtilities_schema = require('../../dist/frontend-utilities.schema-d9815781.cjs.prod.js');
7
7
  require('zod');
8
8
  require('nanoid');
9
9
 
@@ -1,4 +1,4 @@
1
- export { ak as Alpha2Country, d_ as CredentialMediaType, dV as CredentialNames, dU as CredentialSchemas, dY as CredentialType, C as CredentialTypes, dT as GenericVerifiableCredentialSchema, dG as ID3CredentialSubjectSchema, dQ as IDImageCredentialSubjectSchema, dP as IDInformationCredentialSubjectSchema, dH as IDScanCredentialSubjectSchema, dI as IDScanPassportCredentialSubjectSchema, dJ as IDScanSelfieCredentialSubjectSchema, ai as ISO3CountryCode, dW as NexeraCredentialType, dO as OLD_AMLScreeningsResultsCredentialSubjectSchema, dK as OLD_IDImageCredentialSubjectSchema, dL as OLD_IDInformationCredentialSubjectSchema, dM as OLD_ProofOfResidenceCredentialSubjectSchema, dN as OLD_SelfieImageCredentialSubjectSchema, dS as ProofOfResidenceCredentialSubjectSchema, dR as SelfieImageCredentialSubjectSchema, dZ as VerifiableCredential, al as countryISO3toISO2Mapping, dX as getCredentialName, an as isoCountriesNameFromISO2 } from '../../dist/identity-api.schema-a34ad87c.esm.js';
2
- export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-89d25d69.esm.js';
1
+ 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-ea0d3694.esm.js';
2
+ export { V as VC_JSON_SCHEMA_MAP, c as cleanObject, a as getAvailableFields, g as getCredentialSchemaLocation } from '../../dist/frontend-utilities.schema-b735a522.esm.js';
3
3
  import 'zod';
4
4
  import 'nanoid';