@nexeraid/identity-schemas 2.31.0-dev → 2.32.0-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 (33) hide show
  1. package/dist/{CoinMarketCap.schema-bdd190c6.esm.mjs → CoinMarketCap.schema-280414c3.esm.mjs} +16 -10
  2. package/dist/{CoinMarketCap.schema-6705a4b2.cjs.prod.cjs → CoinMarketCap.schema-6a1ff221.cjs.prod.cjs} +18 -9
  3. package/dist/{CoinMarketCap.schema-573ae5fa.cjs.dev.cjs → CoinMarketCap.schema-aefa43e8.cjs.dev.cjs} +18 -9
  4. package/dist/declarations/src/identity-ids.schema.d.ts +9 -2
  5. package/dist/declarations/src/identity-ids.schema.d.ts.map +1 -1
  6. package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +277 -27
  7. package/dist/declarations/src/providers/kyc-sessions.schema.d.ts.map +1 -1
  8. package/dist/{frontend-utilities.schema-c0732b51.esm.mjs → frontend-utilities.schema-2c6e346e.esm.mjs} +1 -1
  9. package/dist/{frontend-utilities.schema-983ca847.cjs.dev.cjs → frontend-utilities.schema-2cdacfcb.cjs.dev.cjs} +1 -1
  10. package/dist/{frontend-utilities.schema-c05799ae.cjs.prod.cjs → frontend-utilities.schema-fb803ead.cjs.prod.cjs} +1 -1
  11. package/dist/{identity-api.schema-3416c3ed.esm.mjs → identity-api.schema-79b2c3a7.esm.mjs} +13 -3
  12. package/dist/{identity-api.schema-65ad4780.cjs.dev.cjs → identity-api.schema-ab731fb2.cjs.prod.cjs} +15 -2
  13. package/dist/{identity-api.schema-2a107b5b.cjs.prod.cjs → identity-api.schema-d2a8b678.cjs.dev.cjs} +15 -2
  14. package/dist/nexeraid-identity-schemas.cjs.dev.cjs +6 -3
  15. package/dist/nexeraid-identity-schemas.cjs.prod.cjs +6 -3
  16. package/dist/nexeraid-identity-schemas.esm.mjs +4 -4
  17. package/dist/package.json +1 -1
  18. package/dist/{transaction.schema-b1809ca8.esm.mjs → transaction.schema-0a5b60ae.esm.mjs} +1 -1
  19. package/dist/{transaction.schema-558bd12a.cjs.prod.cjs → transaction.schema-22e6e231.cjs.prod.cjs} +1 -1
  20. package/dist/{transaction.schema-d3acfa35.cjs.dev.cjs → transaction.schema-760719df.cjs.dev.cjs} +1 -1
  21. package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.cjs +1 -1
  22. package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.cjs +1 -1
  23. package/identity/dist/nexeraid-identity-schemas-identity.esm.mjs +1 -1
  24. package/package.json +1 -1
  25. package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.cjs +5 -2
  26. package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.cjs +5 -2
  27. package/providers/dist/nexeraid-identity-schemas-providers.esm.mjs +2 -2
  28. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.cjs +2 -2
  29. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.cjs +2 -2
  30. package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.mjs +2 -2
  31. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.cjs +3 -3
  32. package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.cjs +3 -3
  33. package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.mjs +3 -3
@@ -1,7 +1,10 @@
1
1
  import { z } from "zod";
2
- export declare const KYC_STEP_TYPES: readonly ["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"];
3
- export declare const KycStep: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
2
+ export declare const KYC_STEP_TYPES: readonly ["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo", "CredentialsClaimed"];
3
+ export declare const KycStep: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo", "CredentialsClaimed"]>;
4
4
  export type KycStep = z.infer<typeof KycStep>;
5
+ export declare const KycStepStatuses: readonly ["IN_PROGRESS", "SUCCEEDED", "FAILED", "RETRYABLE"];
6
+ export declare const KycStepStatus: z.ZodEnum<["IN_PROGRESS", "SUCCEEDED", "FAILED", "RETRYABLE"]>;
7
+ export type KycStepStatus = z.infer<typeof KycStepStatus>;
5
8
  export declare const KYC_RESULTS: readonly ["Passed", "ToBeManuallyChecked", "Rejected", "Retry"];
6
9
  export declare const KycResult: z.ZodEnum<["Passed", "ToBeManuallyChecked", "Rejected", "Retry"]>;
7
10
  export type KycResult = z.infer<typeof KycResult>;
@@ -22,6 +25,26 @@ export declare const EmailVerificationResponse: z.ZodObject<{
22
25
  verified: boolean;
23
26
  }>;
24
27
  export type EmailVerificationResponse = z.infer<typeof EmailVerificationResponse>;
28
+ export declare const SelectKycSessionStep: z.ZodObject<{
29
+ id: z.ZodString;
30
+ type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo", "CredentialsClaimed"]>;
31
+ customerId: z.ZodString;
32
+ kycSessionId: z.ZodString;
33
+ createdAt: z.ZodDate;
34
+ }, "strip", z.ZodTypeAny, {
35
+ id: string;
36
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
37
+ createdAt: Date;
38
+ customerId: string;
39
+ kycSessionId: string;
40
+ }, {
41
+ id: string;
42
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
43
+ createdAt: Date;
44
+ customerId: string;
45
+ kycSessionId: string;
46
+ }>;
47
+ export type SelectKycSessionStep = z.infer<typeof SelectKycSessionStep>;
25
48
  export declare const SelectKycSession: z.ZodObject<{
26
49
  id: z.ZodString;
27
50
  customerId: z.ZodString;
@@ -145,16 +168,18 @@ export declare const SelectKycSession: z.ZodObject<{
145
168
  }[][] | undefined;
146
169
  }>>>;
147
170
  workflowId: z.ZodNullable<z.ZodString>;
171
+ workflowSessionId: z.ZodNullable<z.ZodString>;
148
172
  }, "strip", z.ZodTypeAny, {
149
173
  id: string;
150
174
  createdAt: Date;
151
175
  updatedAt: Date;
152
176
  customerId: string;
153
177
  workflowId: string | null;
178
+ workflowSessionId: string | null;
154
179
  cmsProjectId: string;
155
180
  reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
156
181
  reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
157
- status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
182
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
158
183
  result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
159
184
  address?: string | null | undefined;
160
185
  blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
@@ -189,10 +214,11 @@ export declare const SelectKycSession: z.ZodObject<{
189
214
  updatedAt: Date;
190
215
  customerId: string;
191
216
  workflowId: string | null;
217
+ workflowSessionId: string | null;
192
218
  cmsProjectId: string;
193
219
  reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
194
220
  reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
195
- status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
221
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
196
222
  result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
197
223
  address?: string | null | undefined;
198
224
  blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
@@ -223,26 +249,244 @@ export declare const SelectKycSession: z.ZodObject<{
223
249
  } | null | undefined;
224
250
  }>;
225
251
  export type SelectKycSession = z.infer<typeof SelectKycSession>;
226
- export declare const SelectKycSessionStep: z.ZodObject<{
252
+ export declare const SelectKycSessionWithCompletedSteps: z.ZodObject<z.objectUtil.extendShape<{
227
253
  id: z.ZodString;
228
- type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
229
254
  customerId: z.ZodString;
230
- kycSessionId: z.ZodString;
255
+ address: z.ZodOptional<z.ZodNullable<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>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>>>;
256
+ blockchainNamespace: z.ZodOptional<z.ZodNullable<z.ZodEnum<["tezos", "eip155", "aptos", "polkadot", "starknet", "cosmos", "solana", "cardano", "bitcoin"]>>>;
257
+ sandboxSimulated: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
258
+ cmsProjectId: z.ZodString;
259
+ result: z.ZodOptional<z.ZodNullable<z.ZodEnum<["Passed", "ToBeManuallyChecked", "Rejected", "Retry"]>>>;
260
+ reviewAnswer: z.ZodOptional<z.ZodNullable<z.ZodEnum<["GREEN", "RED", "YELLOW"]>>>;
261
+ reviewRejectType: z.ZodOptional<z.ZodNullable<z.ZodEnum<["FINAL", "RETRY"]>>>;
262
+ sandboxMode: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
263
+ status: z.ZodOptional<z.ZodNullable<z.ZodEnum<["NotStarted", "Started", "EmailVerified", "UserDataSubmitted", "VerificationChecked", "CredentialsClaimed", "Closed"]>>>;
264
+ ip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
265
+ notificationEmail: z.ZodOptional<z.ZodNullable<z.ZodString>>;
266
+ isBeneficiary: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
231
267
  createdAt: z.ZodDate;
232
- }, "strip", z.ZodTypeAny, {
268
+ updatedAt: z.ZodDate;
269
+ scenarioExecutions: z.ZodOptional<z.ZodNullable<z.ZodObject<{
270
+ customerId: z.ZodOptional<z.ZodString>;
271
+ scenarioExecutionId: z.ZodOptional<z.ZodString>;
272
+ status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "error", "unknown"]>>;
273
+ results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
274
+ objectType: z.ZodEnum<["ChallengeQuery", "OffChainZKP", "IndividualCustomerMonitoring", "TransactionMonitoring"]>;
275
+ objectId: z.ZodString;
276
+ name: z.ZodString;
277
+ address: z.ZodOptional<z.ZodNullable<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>, z.ZodUnion<[z.ZodEffects<z.ZodString, `1${string}`, string>, z.ZodEffects<z.ZodString, `3${string}`, string>, z.ZodEffects<z.ZodString, `bc1${string}`, string>, z.ZodEffects<z.ZodString, `m${string}` | `n${string}`, string>, z.ZodEffects<z.ZodString, `2${string}`, string>, z.ZodEffects<z.ZodString, `tb1${string}`, string>]>]>>>;
278
+ result: z.ZodObject<z.objectUtil.extendShape<{
279
+ result: z.ZodObject<{
280
+ is_valid: z.ZodBoolean;
281
+ reasons: z.ZodArray<z.ZodString, "many">;
282
+ }, "strip", z.ZodTypeAny, {
283
+ is_valid: boolean;
284
+ reasons: string[];
285
+ }, {
286
+ is_valid: boolean;
287
+ reasons: string[];
288
+ }>;
289
+ }, {
290
+ executionId: z.ZodString;
291
+ }>, "strip", z.ZodTypeAny, {
292
+ result: {
293
+ is_valid: boolean;
294
+ reasons: string[];
295
+ };
296
+ executionId: string;
297
+ }, {
298
+ result: {
299
+ is_valid: boolean;
300
+ reasons: string[];
301
+ };
302
+ executionId: string;
303
+ }>;
304
+ executionId: z.ZodString;
305
+ scenarioId: z.ZodString;
306
+ }, "strip", z.ZodTypeAny, {
307
+ name: string;
308
+ result: {
309
+ result: {
310
+ is_valid: boolean;
311
+ reasons: string[];
312
+ };
313
+ executionId: string;
314
+ };
315
+ executionId: string;
316
+ scenarioId: string;
317
+ objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
318
+ objectId: string;
319
+ address?: string | null | undefined;
320
+ }, {
321
+ name: string;
322
+ result: {
323
+ result: {
324
+ is_valid: boolean;
325
+ reasons: string[];
326
+ };
327
+ executionId: string;
328
+ };
329
+ executionId: string;
330
+ scenarioId: string;
331
+ objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
332
+ objectId: string;
333
+ address?: string | null | undefined;
334
+ }>, "many">, "many">>;
335
+ }, "strip", z.ZodTypeAny, {
336
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
337
+ customerId?: string | undefined;
338
+ scenarioExecutionId?: string | undefined;
339
+ results?: {
340
+ name: string;
341
+ result: {
342
+ result: {
343
+ is_valid: boolean;
344
+ reasons: string[];
345
+ };
346
+ executionId: string;
347
+ };
348
+ executionId: string;
349
+ scenarioId: string;
350
+ objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
351
+ objectId: string;
352
+ address?: string | null | undefined;
353
+ }[][] | undefined;
354
+ }, {
355
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
356
+ customerId?: string | undefined;
357
+ scenarioExecutionId?: string | undefined;
358
+ results?: {
359
+ name: string;
360
+ result: {
361
+ result: {
362
+ is_valid: boolean;
363
+ reasons: string[];
364
+ };
365
+ executionId: string;
366
+ };
367
+ executionId: string;
368
+ scenarioId: string;
369
+ objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
370
+ objectId: string;
371
+ address?: string | null | undefined;
372
+ }[][] | undefined;
373
+ }>>>;
374
+ workflowId: z.ZodNullable<z.ZodString>;
375
+ workflowSessionId: z.ZodNullable<z.ZodString>;
376
+ }, {
377
+ stepsCompleted: z.ZodArray<z.ZodObject<{
378
+ id: z.ZodString;
379
+ type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo", "CredentialsClaimed"]>;
380
+ customerId: z.ZodString;
381
+ kycSessionId: z.ZodString;
382
+ createdAt: z.ZodDate;
383
+ }, "strip", z.ZodTypeAny, {
384
+ id: string;
385
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
386
+ createdAt: Date;
387
+ customerId: string;
388
+ kycSessionId: string;
389
+ }, {
390
+ id: string;
391
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
392
+ createdAt: Date;
393
+ customerId: string;
394
+ kycSessionId: string;
395
+ }>, "many">;
396
+ }>, "strip", z.ZodTypeAny, {
233
397
  id: string;
234
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
235
398
  createdAt: Date;
399
+ updatedAt: Date;
236
400
  customerId: string;
237
- kycSessionId: string;
401
+ workflowId: string | null;
402
+ workflowSessionId: string | null;
403
+ cmsProjectId: string;
404
+ stepsCompleted: {
405
+ id: string;
406
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
407
+ createdAt: Date;
408
+ customerId: string;
409
+ kycSessionId: string;
410
+ }[];
411
+ reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
412
+ reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
413
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
414
+ result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
415
+ address?: string | null | undefined;
416
+ blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
417
+ ip?: string | null | undefined;
418
+ sandboxMode?: boolean | null | undefined;
419
+ sandboxSimulated?: boolean | null | undefined;
420
+ notificationEmail?: string | null | undefined;
421
+ isBeneficiary?: boolean | null | undefined;
422
+ scenarioExecutions?: {
423
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
424
+ customerId?: string | undefined;
425
+ scenarioExecutionId?: string | undefined;
426
+ results?: {
427
+ name: string;
428
+ result: {
429
+ result: {
430
+ is_valid: boolean;
431
+ reasons: string[];
432
+ };
433
+ executionId: string;
434
+ };
435
+ executionId: string;
436
+ scenarioId: string;
437
+ objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
438
+ objectId: string;
439
+ address?: string | null | undefined;
440
+ }[][] | undefined;
441
+ } | null | undefined;
238
442
  }, {
239
443
  id: string;
240
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
241
444
  createdAt: Date;
445
+ updatedAt: Date;
242
446
  customerId: string;
243
- kycSessionId: string;
447
+ workflowId: string | null;
448
+ workflowSessionId: string | null;
449
+ cmsProjectId: string;
450
+ stepsCompleted: {
451
+ id: string;
452
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
453
+ createdAt: Date;
454
+ customerId: string;
455
+ kycSessionId: string;
456
+ }[];
457
+ reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
458
+ reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
459
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
460
+ result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
461
+ address?: string | null | undefined;
462
+ blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
463
+ ip?: string | null | undefined;
464
+ sandboxMode?: boolean | null | undefined;
465
+ sandboxSimulated?: boolean | null | undefined;
466
+ notificationEmail?: string | null | undefined;
467
+ isBeneficiary?: boolean | null | undefined;
468
+ scenarioExecutions?: {
469
+ status?: "valid" | "unknown" | "not-valid" | "error" | undefined;
470
+ customerId?: string | undefined;
471
+ scenarioExecutionId?: string | undefined;
472
+ results?: {
473
+ name: string;
474
+ result: {
475
+ result: {
476
+ is_valid: boolean;
477
+ reasons: string[];
478
+ };
479
+ executionId: string;
480
+ };
481
+ executionId: string;
482
+ scenarioId: string;
483
+ objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
484
+ objectId: string;
485
+ address?: string | null | undefined;
486
+ }[][] | undefined;
487
+ } | null | undefined;
244
488
  }>;
245
- export type SelectKycSessionStep = z.infer<typeof SelectKycSessionStep>;
489
+ export type SelectKycSessionWithCompletedSteps = z.infer<typeof SelectKycSessionWithCompletedSteps>;
246
490
  export declare const GetKycSessionInput: z.ZodObject<{
247
491
  projectId: z.ZodString;
248
492
  }, "strip", z.ZodTypeAny, {
@@ -373,22 +617,23 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
373
617
  }[][] | undefined;
374
618
  }>>>;
375
619
  workflowId: z.ZodNullable<z.ZodString>;
620
+ workflowSessionId: z.ZodNullable<z.ZodString>;
376
621
  }, {
377
622
  stepsCompleted: z.ZodArray<z.ZodObject<{
378
623
  id: z.ZodString;
379
- type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
624
+ type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo", "CredentialsClaimed"]>;
380
625
  customerId: z.ZodString;
381
626
  kycSessionId: z.ZodString;
382
627
  createdAt: z.ZodDate;
383
628
  }, "strip", z.ZodTypeAny, {
384
629
  id: string;
385
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
630
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
386
631
  createdAt: Date;
387
632
  customerId: string;
388
633
  kycSessionId: string;
389
634
  }, {
390
635
  id: string;
391
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
636
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
392
637
  createdAt: Date;
393
638
  customerId: string;
394
639
  kycSessionId: string;
@@ -410,17 +655,18 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
410
655
  updatedAt: Date;
411
656
  customerId: string;
412
657
  workflowId: string | null;
658
+ workflowSessionId: string | null;
413
659
  cmsProjectId: string;
414
660
  stepsCompleted: {
415
661
  id: string;
416
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
662
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
417
663
  createdAt: Date;
418
664
  customerId: string;
419
665
  kycSessionId: string;
420
666
  }[];
421
667
  reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
422
668
  reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
423
- status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
669
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
424
670
  result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
425
671
  address?: string | null | undefined;
426
672
  blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
@@ -460,17 +706,18 @@ export declare const GetKycSessionResponse: z.ZodObject<z.objectUtil.extendShape
460
706
  updatedAt: Date;
461
707
  customerId: string;
462
708
  workflowId: string | null;
709
+ workflowSessionId: string | null;
463
710
  cmsProjectId: string;
464
711
  stepsCompleted: {
465
712
  id: string;
466
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
713
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
467
714
  createdAt: Date;
468
715
  customerId: string;
469
716
  kycSessionId: string;
470
717
  }[];
471
718
  reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
472
719
  reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
473
- status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
720
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
474
721
  result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
475
722
  address?: string | null | undefined;
476
723
  blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
@@ -834,22 +1081,23 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
834
1081
  }[][] | undefined;
835
1082
  }>>>;
836
1083
  workflowId: z.ZodNullable<z.ZodString>;
1084
+ workflowSessionId: z.ZodNullable<z.ZodString>;
837
1085
  }, {
838
1086
  stepsCompleted: z.ZodArray<z.ZodObject<{
839
1087
  id: z.ZodString;
840
- type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo"]>;
1088
+ type: z.ZodEnum<["Started", "TermsAndConditionsAccepted", "EmailVerification", "Identity", "Liveness", "ProofOfResidence", "ContactInfo", "CredentialsClaimed"]>;
841
1089
  customerId: z.ZodString;
842
1090
  kycSessionId: z.ZodString;
843
1091
  createdAt: z.ZodDate;
844
1092
  }, "strip", z.ZodTypeAny, {
845
1093
  id: string;
846
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
1094
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
847
1095
  createdAt: Date;
848
1096
  customerId: string;
849
1097
  kycSessionId: string;
850
1098
  }, {
851
1099
  id: string;
852
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
1100
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
853
1101
  createdAt: Date;
854
1102
  customerId: string;
855
1103
  kycSessionId: string;
@@ -884,10 +1132,11 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
884
1132
  updatedAt: Date;
885
1133
  customerId: string;
886
1134
  workflowId: string | null;
1135
+ workflowSessionId: string | null;
887
1136
  cmsProjectId: string;
888
1137
  stepsCompleted: {
889
1138
  id: string;
890
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
1139
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
891
1140
  createdAt: Date;
892
1141
  customerId: string;
893
1142
  kycSessionId: string;
@@ -898,7 +1147,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
898
1147
  }[];
899
1148
  reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
900
1149
  reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
901
- status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
1150
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
902
1151
  result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
903
1152
  address?: string | null | undefined;
904
1153
  blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
@@ -940,10 +1189,11 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
940
1189
  updatedAt: Date;
941
1190
  customerId: string;
942
1191
  workflowId: string | null;
1192
+ workflowSessionId: string | null;
943
1193
  cmsProjectId: string;
944
1194
  stepsCompleted: {
945
1195
  id: string;
946
- type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo";
1196
+ type: "ProofOfResidence" | "Started" | "TermsAndConditionsAccepted" | "EmailVerification" | "Identity" | "Liveness" | "ContactInfo" | "CredentialsClaimed";
947
1197
  createdAt: Date;
948
1198
  customerId: string;
949
1199
  kycSessionId: string;
@@ -954,7 +1204,7 @@ export declare const GetKycSessionResponseWithCredentialsMetadata: z.ZodObject<z
954
1204
  }[];
955
1205
  reviewAnswer?: "RED" | "YELLOW" | "GREEN" | null | undefined;
956
1206
  reviewRejectType?: "FINAL" | "RETRY" | null | undefined;
957
- status?: "Closed" | "Started" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | "CredentialsClaimed" | null | undefined;
1207
+ status?: "Closed" | "Started" | "CredentialsClaimed" | "NotStarted" | "EmailVerified" | "UserDataSubmitted" | "VerificationChecked" | null | undefined;
958
1208
  result?: "Passed" | "Rejected" | "ToBeManuallyChecked" | "Retry" | null | undefined;
959
1209
  address?: string | null | undefined;
960
1210
  blockchainNamespace?: "cosmos" | "tezos" | "eip155" | "aptos" | "polkadot" | "starknet" | "solana" | "cardano" | "bitcoin" | null | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"kyc-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyc-sessions.schema.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"kyc-sessions.schema.d.ts","sourceRoot":"../../../../src/providers","sources":["kyc-sessions.schema.ts"],"names":[],"mappings":"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"}
@@ -1,4 +1,4 @@
1
- import { d_ as SupportedType, fr as _toConsumableArray, dP as ARRAY_OPERATORS, dV as BOOLEAN_OPERATORS, dT as NUMERIC_OPERATORS, dR as STRING_OPERATORS } from './identity-api.schema-3416c3ed.esm.mjs';
1
+ import { e1 as SupportedType, fu as _toConsumableArray, dS as ARRAY_OPERATORS, dY as BOOLEAN_OPERATORS, dW as NUMERIC_OPERATORS, dU as STRING_OPERATORS } from './identity-api.schema-79b2c3a7.esm.mjs';
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-65ad4780.cjs.dev.cjs');
3
+ var identityApi_schema = require('./identity-api.schema-d2a8b678.cjs.dev.cjs');
4
4
 
5
5
  var VC_JSON_SCHEMA_MAP = {
6
6
  ProofOfResidence: {
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var identityApi_schema = require('./identity-api.schema-2a107b5b.cjs.prod.cjs');
3
+ var identityApi_schema = require('./identity-api.schema-ab731fb2.cjs.prod.cjs');
4
4
 
5
5
  var VC_JSON_SCHEMA_MAP = {
6
6
  ProofOfResidence: {
@@ -2599,18 +2599,25 @@ var ListPrefix = "list";
2599
2599
  var QueryPrefix = "query";
2600
2600
  var ActionPrefix = "action";
2601
2601
 
2602
+ // workflows-api
2603
+ var WorkflowSessionAttributePrefix = "wsatr";
2604
+
2602
2605
  // ---
2603
2606
 
2604
2607
  // Add these lines in the type definitions section
2605
2608
 
2606
2609
  // TMS
2607
2610
 
2611
+ // workflows-api
2612
+
2608
2613
  // ---
2609
2614
 
2610
2615
  // TMS
2611
2616
 
2612
2617
  // Scenarios service
2613
2618
 
2619
+ // Workflows-API
2620
+
2614
2621
  var createBrandedSchemaId = function createBrandedSchemaId(brand) {
2615
2622
  return z.custom(function (val) {
2616
2623
  if (typeof val !== "string") return false;
@@ -2650,8 +2657,11 @@ var TransactionAmountId = createBrandedSchemaId("".concat(TransactionAmountPrefi
2650
2657
  var ScenarioId = createBrandedSchemaId("".concat(ScenarioPrefix, "_"));
2651
2658
  var ListId = createBrandedSchemaId("".concat(ListPrefix, "_"));
2652
2659
  var QueryId = createBrandedSchemaId("".concat(QueryPrefix, "_"));
2653
- var generateId = function generateId(type // Add this line
2654
- ) {
2660
+
2661
+ // Workflows api
2662
+ var WorkflowSessionId = UuidString;
2663
+ var WorkflowSessionAttributeId = createBrandedSchemaId("".concat(WorkflowSessionAttributePrefix, "_"));
2664
+ var generateId = function generateId(type) {
2655
2665
  return "".concat(type, "_").concat(nanoid(12));
2656
2666
  };
2657
2667
  var MemberId = z.string();
@@ -3472,4 +3482,4 @@ var VerifyWalletChallengeRequest = WalletSignatureResponse.and(z.object({
3472
3482
  blockchainId: BlockchainId.optional()
3473
3483
  }));
3474
3484
 
3475
- export { ACTIVE_POLKADOT_CHAIN_IDS as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, SOLANA_CHAIN_IDS as D, EVM_BLOCK_TIME as E, ACTIVE_SOLANA_CHAIN_IDS as F, SolanaChainId as G, NEXERA_BITCOIN_CHAINS as H, BITCOIN_CHAIN_NAMES as I, BITCOIN_CHAIN_NAMES_LIST as J, BITCOIN_CHAIN_IDS as K, ACTIVE_BITCOIN_CHAIN_IDS as L, BitcoinChainId as M, NonTestnetBlockchainId as N, NEXERA_APTOS_CHAINS as O, POLYGON_NETWORK_NAMES as P, APTOS_CHAIN_NAMES as Q, APTOS_CHAIN_NAMES_LIST as R, StarknetChainId as S, TezosChainId as T, APTOS_CHAIN_IDS as U, ACTIVE_APTOS_CHAIN_IDS as V, AptosChainId as W, NEXERA_POLKADOT_CHAINS as X, POLKADOT_CHAIN_NAMES as Y, POLKADOT_CHAIN_NAMES_LIST as Z, POLKADOT_CHAIN_IDS as _, NEXERA_EVM_CHAINS as a, countryISO2toISO3Mapping as a$, PolkadotChainId as a0, NEXERA_CARDANO_CHAINS as a1, CARDANO_CHAIN_NAMES as a2, CARDANO_CHAIN_NAMES_LIST as a3, CARDANO_CHAIN_IDS as a4, ACTIVE_CARDANO_CHAIN_IDS as a5, CardanoChainId as a6, isValidAddress as a7, PrivateKey as a8, PublicKey as a9, DISPLAYED_BLOCKCHAIN_NAMESPACES as aA, DisplayedBlockchainNamespace as aB, BLOCKCHAIN_NAME_TO_NAMESPACE as aC, BLOCKCHAIN_NAMESPACE_TO_NAME as aD, EIP155Signature as aE, AptosSignature as aF, StarknetSignature as aG, PolkadotSignature as aH, CosmosSignature as aI, EdSignature as aJ, SpSignature as aK, P2Signature as aL, TezosSignature as aM, CardanoSignature as aN, BlockchainSignature as aO, FunctionCallData as aP, TezosEntrypointName as aQ, ENVS as aR, EnvironmentSchema as aS, UuidString as aT, OtpCode as aU, PUBLIC_SERVICES_SCHEMA_MAP as aV, IpAddress as aW, ISO3CountryCode as aX, ALPHA_2_COUNTRIES as aY, Alpha2Country as aZ, countryISO3toISO2Mapping as a_, AddressSchema as aa, TxHash as ab, shortBlockchainAddress as ac, AptosAddress as ad, StarknetAddress as ae, PolkadotAddress as af, CosmosAddress as ag, TezosImplicitAddress as ah, TezosContractAddress as ai, TezosAddress as aj, CardanoAddress as ak, BitcoinP2PKHAddress as al, BitcoinP2SHAddress as am, BitcoinBech32Address as an, BitcoinTestnetP2PKHAddress as ao, BitcoinTestnetP2SHAddress as ap, BitcoinTestnetBech32Address as aq, BitcoinAddress as ar, BlockchainAddress as as, String0x as at, HexadecimalSchema as au, BLOCKCHAIN_NAMESPACES as av, BlockchainNamespace as aw, SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH as ax, SupportedBlockchainNamespaceForSignatureAuth as ay, BLOCKCHAIN_NAMESPACES_NAMES as az, NEXERA_EVM_CHAIN_NAMES as b, TransactionInfosId as b$, isoCountriesNameFromISO2 as b0, parseISO3CountryCode as b1, RiskScoreTypes as b2, RiskScoreType as b3, CustomerTypes as b4, CustomerType as b5, KycOnboardingLevels as b6, KycOnboardingLevel as b7, KybOnboardingLevels as b8, KybOnboardingLevel as b9, TransactionExtractedInfosPrefix as bA, TransactionMethodsPrefix as bB, TransactionMethodExtractedInfosPrefix as bC, InstitutionPrefix as bD, InstitutionExtractedInfosPrefix as bE, TransactionAmountPrefix as bF, ScenarioPrefix as bG, ListPrefix as bH, QueryPrefix as bI, ActionPrefix as bJ, createBrandedSchemaId as bK, StorageId as bL, IdentityId as bM, EmailId as bN, WalletId as bO, AppId as bP, ChallengeId as bQ, TestId as bR, CustomerScreeningId as bS, TagId as bT, ActionId as bU, TagsToTransactionReviewsId as bV, TransactionAddressesId as bW, TransactionId as bX, TransactionFeesId as bY, TransactionReviewId as bZ, TransactionPartiesId as b_, CustomerOnboardingLevels as ba, CustomerOnboardingLevel as bb, CustomerStatuses as bc, CustomerStatus as bd, BasicCustomerContactInformation as be, CUSTOMERS_CHARTS as bf, CustomersChartType as bg, CUSTOMER_TABLE_COLUMNS as bh, CustomerTableColumn as bi, CUSTOMER_AUTOMATION_REASONS as bj, StoragePrefix as bk, IdentityPrefix as bl, EmailPrefix as bm, WalletPrefix as bn, AppPrefix as bo, ChallengePrefix as bp, TestPrefix as bq, CustomerScreeningPrefix as br, TagPrefix as bs, TagsToTransactionReviewsPrefix as bt, TransactionAddressesPrefix as bu, TransactionPrefix as bv, TransactionFeesPrefix as bw, TransactionReviewPrefix as bx, TransactionPartiesPrefix as by, TransactionInfosPrefix as bz, NEXERA_EVM_CHAIN_NAMES_LIST as c, PolygonIdResponse as c$, TransactionExtractedInfosId as c0, TransactionMethodsId as c1, TransactionMethodExtractedInfosId as c2, InstitutionId as c3, InstitutionExtractedInfosId as c4, TransactionAmountId as c5, ScenarioId as c6, ListId as c7, QueryId as c8, generateId as c9, TransactionResponse as cA, HostResponseMessage as cB, ScenarioTypes as cC, ScenarioType as cD, BaseQueryResponse as cE, OffChainZKPRuleResult as cF, ExecuteQueryResponse as cG, RuleEngineResponse as cH, ScenarioExecutionResponse as cI, RuleResultStatuses as cJ, RuleResultStatus as cK, RuleResultStatusLabels as cL, SdkVerificationOutput as cM, VerificationSessionStatuses as cN, VerificationSessionStatus as cO, VerificationOutput as cP, Scenario as cQ, AbbreviatedWorkflowScenario as cR, TemplateScenario as cS, CreateTemplateScenario as cT, ComplianceImplementationStepsInput as cU, SimplifiedCredential as cV, GetCredentialsRequest as cW, GetCredentialsResponse as cX, PolygonIdRequestData as cY, PolygonIdRequest as cZ, PolygonIdResponseData as c_, MemberId as ca, ScenarioAuthorizationData as cb, SdkVerificationResponseSchema as cc, CloseScreenNotification as cd, KycCompletionData as ce, KycCompletionNotification as cf, RuleEngineScenarioExecutionData as cg, OffChainScenarioExecutionData as ch, OnChainScenarioExecutionData as ci, ScenarioExecutionData as cj, ScenarioExecutionNotification as ck, IsVerifiedNotification as cl, PolygonIdInitialized as cm, OcvSdkInitialized as cn, StartCompletedNotification as co, IdentityNotificationMessage as cp, InitialDataRequest as cq, SignatureRequest as cr, TransactionData as cs, SendTransactionRequest as ct, IdentityRequestMessage as cu, AVAILABLE_FLOWS as cv, AvailableFlow as cw, DataAvailableOnStart as cx, InitialDataResponse as cy, SignatureResponse as cz, NEXERA_EVM_CHAINS_ID as d, SupportedTypes as d$, StartFlowRequest as d0, IsVerifiedRequest as d1, IsVerifiedResponse as d2, GetTxAuthSigRequest as d3, GetTxAuthSigResponse as d4, GetTxAuthSigRequestTezos as d5, GetTxAuthSigResponseTezos as d6, HostRequestMessage as d7, IdentityResponseMessage as d8, GenerateWalletChallengeRequest as d9, AuthorizationRequestMessage as dA, ProofData as dB, ZeroKnowledgeProofResponse as dC, AuthorizationResponseMessage as dD, CredentialQrCodeData as dE, AuthQrCodeData as dF, QrCodeLinkWithSchemaType as dG, parseIden3Message as dH, parseSessionIdFromUrl as dI, AllCredentialAttributes as dJ, AllCredentialValues as dK, OPERATORS as dL, Operator as dM, ZKPOperator as dN, operatorDisplayMap as dO, ARRAY_OPERATORS as dP, ArrayOperator as dQ, STRING_OPERATORS as dR, StringOperator as dS, NUMERIC_OPERATORS as dT, NumericOperator as dU, BOOLEAN_OPERATORS as dV, BooleanOperator as dW, DATE_OPERATORS as dX, DateOperator as dY, SUPPORTED_TYPES as dZ, SupportedType as d_, AuthSession as da, AuthSessionData as db, ChallengeResponse as dc, WalletSignResponse as dd, TxAuthDataSignatureGatingRequest as de, GetCustomerStatusRequest as df, IdentitySdkMessage as dg, IdentitySdkMessageWithIdentifier as dh, TxAuthDataSignatureResponse as di, TxAuthDataSignatureGatingError as dj, GetCustomerStatusResponse as dk, IdentityAppMessage as dl, IdentityWallet as dm, HostMessage as dn, IdentityMessage as dp, RequiredDataRowSchema as dq, RequiredVerificationData as dr, MediaType as ds, MediaTypePID as dt, CIRCUIT_IDS as du, CircuitId as dv, ZeroKnowledgeProofRequest as dw, AUTHORIZATION_REQUEST_MESSAGE_TYPES as dx, AuthorizationRequestMessageTypes as dy, AuthorizationRequestMessageType as dz, NexeraEvmChains as e, IdentityWidgetAccessToken as e$, IDInformation as e0, QueryConfig as e1, QueryType as e2, QueryConfigSimplified as e3, PartialQueryConfigSimplified as e4, QueryConfigSimplifiedParsed as e5, QueryConfiguration as e6, NonParsedQueryConfiguration as e7, CreateQueryConfigurationInput as e8, CreateQueryConfigurationResponse as e9, TezosTxAuthInputJsSdk as eA, AnyTxAuthInputJsSdk as eB, ZKPRequest as eC, ZKPRequestFromZKVerifier as eD, OffChainZKP as eE, CreateAuthRequestProps as eF, AllScenarioExecutionAuthorizationData as eG, SCENARIO_AUTHORIZATION_STATUSES as eH, ScenarioAuthorizationStatus as eI, WalletSignatureResponse as eJ, VerifyWalletChallengeRequest as eK, FLOW_TYPES as eL, FlowType as eM, VerificationModes as eN, VerificationMode as eO, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as eP, IdentityDocumentCountryListOption as eQ, IDENTITY_DOCUMENT_OPTIONS as eR, IdentityDocumentOptionsType as eS, PERSONAL_INFORMATION_FIELDS as eT, PersonalInformationFieldsIdentityDocuments as eU, Identifier as eV, AdditionalCustomerInformationParams as eW, OrganizationId as eX, WorkspaceId as eY, WorkflowId as eZ, CustomerId as e_, UpdateQueryConfigurationInput as ea, UpdateQueryConfigurationResponse as eb, DeleteQueryConfigurationInput as ec, DeleteQueryConfigurationResponse as ed, QueryCredentialTypes as ee, QueryCredentialType as ef, ChallengeQuerySchema as eg, CHALLENGE_QUERY_OPERATORS as eh, ChallengeQueryOperator as ei, OperatorMappings as ej, OperatorToChallengeQueryOperator as ek, ChallengeQueryOperatorToOperator as el, TxAuthInput as em, ApiTxAuthInput as en, TxSignatureResponse as eo, GetTxAuthDataSignatureResponse as ep, TezosTxAuthInput as eq, ApiTezosTxAuthInput as er, TezosTxSignatureResponse as es, GetTezosTxAuthDataSignatureResponse as et, ExtendedTxAuthInput as eu, ExtendedTezosTxAuthInput as ev, ExtendedTxAuthDataSignatureResponse as ew, ExtendedTezosTxAuthDataSignatureResponse as ex, AnyTxAuthDataSignatureResponse as ey, Eip155TxAuthInputJsSdk as ez, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as f, ExternalCustomerId as f0, IdentityAppV2Web3JWT as f1, IdentityAppV2Web2JWT as f2, IdentityWidgetAccessToken_NEW as f3, IdentityWidgetSessionToken as f4, Web2CreateSessionParams as f5, ID3CredentialSubjectSchema as f6, IDScanCredentialSubjectSchema as f7, IDScanPassportCredentialSubjectSchema as f8, IDScanSelfieCredentialSubjectSchema as f9, OLD_IDImageCredentialSubjectSchema as fa, OLD_IDInformationCredentialSubjectSchema as fb, OLD_ProofOfResidenceCredentialSubjectSchema as fc, OLD_SelfieImageCredentialSubjectSchema as fd, OLD_AMLScreeningsResultsCredentialSubjectSchema as fe, IDInformationCredentialSubjectSchema as ff, IDImageCredentialSubjectSchema as fg, SelfieImageCredentialSubjectSchema as fh, ProofOfResidenceCredentialSubjectSchema as fi, GenericVerifiableCredentialSchema as fj, CredentialSchemas as fk, CredentialNames as fl, NexeraCredentialType as fm, getCredentialName as fn, CredentialType as fo, VerifiableCredential as fp, CredentialMediaType as fq, _toConsumableArray as fr, _toArray as fs, _arrayWithHoles as ft, _unsupportedIterableToArray as fu, _nonIterableRest as fv, _defineProperty as fw, EvmChainId as g, NEXERA_COSMOS_CHAINS as h, COSMOS_CHAIN_NAMES as i, COSMOS_CHAIN_NAMES_LIST as j, COSMOS_CHAIN_IDS as k, ACTIVE_COSMOS_CHAIN_IDS as l, CosmosChainId as m, NEXERA_TEZOS_CHAINS as n, NEXERA_TEZOS_CHAIN_NAMES as o, NEXERA_TEZOS_CHAIN_NAMES_LIST as p, NEXERA_TEZOS_CHAIN_IDS as q, ACTIVE_TEZOS_CHAIN_IDS as r, PolygonNetworkNames as s, NEXERA_STARKNET_CHAINS as t, NEXERA_STARKNET_CHAIN_NAMES as u, NEXERA_STARKNET_CHAIN_IDS as v, NEXERA_ACTIVE_STARKNET_CHAIN_IDS as w, NEXERA_SOLANA_CHAINS as x, SOLANA_CHAIN_NAMES as y, SOLANA_CHAIN_NAMES_LIST as z };
3485
+ export { ACTIVE_POLKADOT_CHAIN_IDS as $, ACTIVE_EVM_CHAIN_VALUES as A, BlockchainId as B, CredentialTypes as C, SOLANA_CHAIN_IDS as D, EVM_BLOCK_TIME as E, ACTIVE_SOLANA_CHAIN_IDS as F, SolanaChainId as G, NEXERA_BITCOIN_CHAINS as H, BITCOIN_CHAIN_NAMES as I, BITCOIN_CHAIN_NAMES_LIST as J, BITCOIN_CHAIN_IDS as K, ACTIVE_BITCOIN_CHAIN_IDS as L, BitcoinChainId as M, NonTestnetBlockchainId as N, NEXERA_APTOS_CHAINS as O, POLYGON_NETWORK_NAMES as P, APTOS_CHAIN_NAMES as Q, APTOS_CHAIN_NAMES_LIST as R, StarknetChainId as S, TezosChainId as T, APTOS_CHAIN_IDS as U, ACTIVE_APTOS_CHAIN_IDS as V, AptosChainId as W, NEXERA_POLKADOT_CHAINS as X, POLKADOT_CHAIN_NAMES as Y, POLKADOT_CHAIN_NAMES_LIST as Z, POLKADOT_CHAIN_IDS as _, NEXERA_EVM_CHAINS as a, countryISO2toISO3Mapping as a$, PolkadotChainId as a0, NEXERA_CARDANO_CHAINS as a1, CARDANO_CHAIN_NAMES as a2, CARDANO_CHAIN_NAMES_LIST as a3, CARDANO_CHAIN_IDS as a4, ACTIVE_CARDANO_CHAIN_IDS as a5, CardanoChainId as a6, isValidAddress as a7, PrivateKey as a8, PublicKey as a9, DISPLAYED_BLOCKCHAIN_NAMESPACES as aA, DisplayedBlockchainNamespace as aB, BLOCKCHAIN_NAME_TO_NAMESPACE as aC, BLOCKCHAIN_NAMESPACE_TO_NAME as aD, EIP155Signature as aE, AptosSignature as aF, StarknetSignature as aG, PolkadotSignature as aH, CosmosSignature as aI, EdSignature as aJ, SpSignature as aK, P2Signature as aL, TezosSignature as aM, CardanoSignature as aN, BlockchainSignature as aO, FunctionCallData as aP, TezosEntrypointName as aQ, ENVS as aR, EnvironmentSchema as aS, UuidString as aT, OtpCode as aU, PUBLIC_SERVICES_SCHEMA_MAP as aV, IpAddress as aW, ISO3CountryCode as aX, ALPHA_2_COUNTRIES as aY, Alpha2Country as aZ, countryISO3toISO2Mapping as a_, AddressSchema as aa, TxHash as ab, shortBlockchainAddress as ac, AptosAddress as ad, StarknetAddress as ae, PolkadotAddress as af, CosmosAddress as ag, TezosImplicitAddress as ah, TezosContractAddress as ai, TezosAddress as aj, CardanoAddress as ak, BitcoinP2PKHAddress as al, BitcoinP2SHAddress as am, BitcoinBech32Address as an, BitcoinTestnetP2PKHAddress as ao, BitcoinTestnetP2SHAddress as ap, BitcoinTestnetBech32Address as aq, BitcoinAddress as ar, BlockchainAddress as as, String0x as at, HexadecimalSchema as au, BLOCKCHAIN_NAMESPACES as av, BlockchainNamespace as aw, SUPPORTED_BLOCKCHAIN_NAMESPACES_FOR_SIGNATURE_AUTH as ax, SupportedBlockchainNamespaceForSignatureAuth as ay, BLOCKCHAIN_NAMESPACES_NAMES as az, NEXERA_EVM_CHAIN_NAMES as b, TransactionPartiesId as b$, isoCountriesNameFromISO2 as b0, parseISO3CountryCode as b1, RiskScoreTypes as b2, RiskScoreType as b3, CustomerTypes as b4, CustomerType as b5, KycOnboardingLevels as b6, KycOnboardingLevel as b7, KybOnboardingLevels as b8, KybOnboardingLevel as b9, TransactionExtractedInfosPrefix as bA, TransactionMethodsPrefix as bB, TransactionMethodExtractedInfosPrefix as bC, InstitutionPrefix as bD, InstitutionExtractedInfosPrefix as bE, TransactionAmountPrefix as bF, ScenarioPrefix as bG, ListPrefix as bH, QueryPrefix as bI, ActionPrefix as bJ, WorkflowSessionAttributePrefix as bK, createBrandedSchemaId as bL, StorageId as bM, IdentityId as bN, EmailId as bO, WalletId as bP, AppId as bQ, ChallengeId as bR, TestId as bS, CustomerScreeningId as bT, TagId as bU, ActionId as bV, TagsToTransactionReviewsId as bW, TransactionAddressesId as bX, TransactionId as bY, TransactionFeesId as bZ, TransactionReviewId as b_, CustomerOnboardingLevels as ba, CustomerOnboardingLevel as bb, CustomerStatuses as bc, CustomerStatus as bd, BasicCustomerContactInformation as be, CUSTOMERS_CHARTS as bf, CustomersChartType as bg, CUSTOMER_TABLE_COLUMNS as bh, CustomerTableColumn as bi, CUSTOMER_AUTOMATION_REASONS as bj, StoragePrefix as bk, IdentityPrefix as bl, EmailPrefix as bm, WalletPrefix as bn, AppPrefix as bo, ChallengePrefix as bp, TestPrefix as bq, CustomerScreeningPrefix as br, TagPrefix as bs, TagsToTransactionReviewsPrefix as bt, TransactionAddressesPrefix as bu, TransactionPrefix as bv, TransactionFeesPrefix as bw, TransactionReviewPrefix as bx, TransactionPartiesPrefix as by, TransactionInfosPrefix as bz, NEXERA_EVM_CHAIN_NAMES_LIST as c, PolygonIdRequestData as c$, TransactionInfosId as c0, TransactionExtractedInfosId as c1, TransactionMethodsId as c2, TransactionMethodExtractedInfosId as c3, InstitutionId as c4, InstitutionExtractedInfosId as c5, TransactionAmountId as c6, ScenarioId as c7, ListId as c8, QueryId as c9, DataAvailableOnStart as cA, InitialDataResponse as cB, SignatureResponse as cC, TransactionResponse as cD, HostResponseMessage as cE, ScenarioTypes as cF, ScenarioType as cG, BaseQueryResponse as cH, OffChainZKPRuleResult as cI, ExecuteQueryResponse as cJ, RuleEngineResponse as cK, ScenarioExecutionResponse as cL, RuleResultStatuses as cM, RuleResultStatus as cN, RuleResultStatusLabels as cO, SdkVerificationOutput as cP, VerificationSessionStatuses as cQ, VerificationSessionStatus as cR, VerificationOutput as cS, Scenario as cT, AbbreviatedWorkflowScenario as cU, TemplateScenario as cV, CreateTemplateScenario as cW, ComplianceImplementationStepsInput as cX, SimplifiedCredential as cY, GetCredentialsRequest as cZ, GetCredentialsResponse as c_, WorkflowSessionId as ca, WorkflowSessionAttributeId as cb, generateId as cc, MemberId as cd, ScenarioAuthorizationData as ce, SdkVerificationResponseSchema as cf, CloseScreenNotification as cg, KycCompletionData as ch, KycCompletionNotification as ci, RuleEngineScenarioExecutionData as cj, OffChainScenarioExecutionData as ck, OnChainScenarioExecutionData as cl, ScenarioExecutionData as cm, ScenarioExecutionNotification as cn, IsVerifiedNotification as co, PolygonIdInitialized as cp, OcvSdkInitialized as cq, StartCompletedNotification as cr, IdentityNotificationMessage as cs, InitialDataRequest as ct, SignatureRequest as cu, TransactionData as cv, SendTransactionRequest as cw, IdentityRequestMessage as cx, AVAILABLE_FLOWS as cy, AvailableFlow as cz, NEXERA_EVM_CHAINS_ID as d, DateOperator as d$, PolygonIdRequest as d0, PolygonIdResponseData as d1, PolygonIdResponse as d2, StartFlowRequest as d3, IsVerifiedRequest as d4, IsVerifiedResponse as d5, GetTxAuthSigRequest as d6, GetTxAuthSigResponse as d7, GetTxAuthSigRequestTezos as d8, GetTxAuthSigResponseTezos as d9, AUTHORIZATION_REQUEST_MESSAGE_TYPES as dA, AuthorizationRequestMessageTypes as dB, AuthorizationRequestMessageType as dC, AuthorizationRequestMessage as dD, ProofData as dE, ZeroKnowledgeProofResponse as dF, AuthorizationResponseMessage as dG, CredentialQrCodeData as dH, AuthQrCodeData as dI, QrCodeLinkWithSchemaType as dJ, parseIden3Message as dK, parseSessionIdFromUrl as dL, AllCredentialAttributes as dM, AllCredentialValues as dN, OPERATORS as dO, Operator as dP, ZKPOperator as dQ, operatorDisplayMap as dR, ARRAY_OPERATORS as dS, ArrayOperator as dT, STRING_OPERATORS as dU, StringOperator as dV, NUMERIC_OPERATORS as dW, NumericOperator as dX, BOOLEAN_OPERATORS as dY, BooleanOperator as dZ, DATE_OPERATORS as d_, HostRequestMessage as da, IdentityResponseMessage as db, GenerateWalletChallengeRequest as dc, AuthSession as dd, AuthSessionData as de, ChallengeResponse as df, WalletSignResponse as dg, TxAuthDataSignatureGatingRequest as dh, GetCustomerStatusRequest as di, IdentitySdkMessage as dj, IdentitySdkMessageWithIdentifier as dk, TxAuthDataSignatureResponse as dl, TxAuthDataSignatureGatingError as dm, GetCustomerStatusResponse as dn, IdentityAppMessage as dp, IdentityWallet as dq, HostMessage as dr, IdentityMessage as ds, RequiredDataRowSchema as dt, RequiredVerificationData as du, MediaType as dv, MediaTypePID as dw, CIRCUIT_IDS as dx, CircuitId as dy, ZeroKnowledgeProofRequest as dz, NexeraEvmChains as e, WorkspaceId as e$, SUPPORTED_TYPES as e0, SupportedType as e1, SupportedTypes as e2, IDInformation as e3, QueryConfig as e4, QueryType as e5, QueryConfigSimplified as e6, PartialQueryConfigSimplified as e7, QueryConfigSimplifiedParsed as e8, QueryConfiguration as e9, ExtendedTezosTxAuthDataSignatureResponse as eA, AnyTxAuthDataSignatureResponse as eB, Eip155TxAuthInputJsSdk as eC, TezosTxAuthInputJsSdk as eD, AnyTxAuthInputJsSdk as eE, ZKPRequest as eF, ZKPRequestFromZKVerifier as eG, OffChainZKP as eH, CreateAuthRequestProps as eI, AllScenarioExecutionAuthorizationData as eJ, SCENARIO_AUTHORIZATION_STATUSES as eK, ScenarioAuthorizationStatus as eL, WalletSignatureResponse as eM, VerifyWalletChallengeRequest as eN, FLOW_TYPES as eO, FlowType as eP, VerificationModes as eQ, VerificationMode as eR, IDENTITY_DOCUMENT_COUNTRY_LIST_OPTIONS as eS, IdentityDocumentCountryListOption as eT, IDENTITY_DOCUMENT_OPTIONS as eU, IdentityDocumentOptionsType as eV, PERSONAL_INFORMATION_FIELDS as eW, PersonalInformationFieldsIdentityDocuments as eX, Identifier as eY, AdditionalCustomerInformationParams as eZ, OrganizationId as e_, NonParsedQueryConfiguration as ea, CreateQueryConfigurationInput as eb, CreateQueryConfigurationResponse as ec, UpdateQueryConfigurationInput as ed, UpdateQueryConfigurationResponse as ee, DeleteQueryConfigurationInput as ef, DeleteQueryConfigurationResponse as eg, QueryCredentialTypes as eh, QueryCredentialType as ei, ChallengeQuerySchema as ej, CHALLENGE_QUERY_OPERATORS as ek, ChallengeQueryOperator as el, OperatorMappings as em, OperatorToChallengeQueryOperator as en, ChallengeQueryOperatorToOperator as eo, TxAuthInput as ep, ApiTxAuthInput as eq, TxSignatureResponse as er, GetTxAuthDataSignatureResponse as es, TezosTxAuthInput as et, ApiTezosTxAuthInput as eu, TezosTxSignatureResponse as ev, GetTezosTxAuthDataSignatureResponse as ew, ExtendedTxAuthInput as ex, ExtendedTezosTxAuthInput as ey, ExtendedTxAuthDataSignatureResponse as ez, EVM_CHAINS_WITHOUT_DEDICATED_NODE_RPC as f, WorkflowId as f0, CustomerId as f1, IdentityWidgetAccessToken as f2, ExternalCustomerId as f3, IdentityAppV2Web3JWT as f4, IdentityAppV2Web2JWT as f5, IdentityWidgetAccessToken_NEW as f6, IdentityWidgetSessionToken as f7, Web2CreateSessionParams as f8, ID3CredentialSubjectSchema as f9, IDScanCredentialSubjectSchema as fa, IDScanPassportCredentialSubjectSchema as fb, IDScanSelfieCredentialSubjectSchema as fc, OLD_IDImageCredentialSubjectSchema as fd, OLD_IDInformationCredentialSubjectSchema as fe, OLD_ProofOfResidenceCredentialSubjectSchema as ff, OLD_SelfieImageCredentialSubjectSchema as fg, OLD_AMLScreeningsResultsCredentialSubjectSchema as fh, IDInformationCredentialSubjectSchema as fi, IDImageCredentialSubjectSchema as fj, SelfieImageCredentialSubjectSchema as fk, ProofOfResidenceCredentialSubjectSchema as fl, GenericVerifiableCredentialSchema as fm, CredentialSchemas as fn, CredentialNames as fo, NexeraCredentialType as fp, getCredentialName as fq, CredentialType as fr, VerifiableCredential as fs, CredentialMediaType as ft, _toConsumableArray as fu, _toArray as fv, _arrayWithHoles as fw, _unsupportedIterableToArray as fx, _nonIterableRest as fy, _defineProperty as fz, EvmChainId as g, NEXERA_COSMOS_CHAINS as h, COSMOS_CHAIN_NAMES as i, COSMOS_CHAIN_NAMES_LIST as j, COSMOS_CHAIN_IDS as k, ACTIVE_COSMOS_CHAIN_IDS as l, CosmosChainId as m, NEXERA_TEZOS_CHAINS as n, NEXERA_TEZOS_CHAIN_NAMES as o, NEXERA_TEZOS_CHAIN_NAMES_LIST as p, NEXERA_TEZOS_CHAIN_IDS as q, ACTIVE_TEZOS_CHAIN_IDS as r, PolygonNetworkNames as s, NEXERA_STARKNET_CHAINS as t, NEXERA_STARKNET_CHAIN_NAMES as u, NEXERA_STARKNET_CHAIN_IDS as v, NEXERA_ACTIVE_STARKNET_CHAIN_IDS as w, NEXERA_SOLANA_CHAINS as x, SOLANA_CHAIN_NAMES as y, SOLANA_CHAIN_NAMES_LIST as z };