@nexeraid/identity-schemas 2.7.0-dev → 2.9.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.
- package/dist/{customers.schema-25c9bc0a.esm.js → customers.schema-0bfe7ed2.esm.js} +1 -1
- package/dist/{customers.schema-7ac300ea.cjs.dev.js → customers.schema-1bf4fe64.cjs.dev.js} +1 -1
- package/dist/{customers.schema-a484549e.cjs.prod.js → customers.schema-80e163e9.cjs.prod.js} +1 -1
- package/dist/declarations/src/identity/app-requests.schema.d.ts +109 -104
- package/dist/declarations/src/identity/app-requests.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/identity-v2.schema.d.ts +25 -24
- package/dist/declarations/src/identity/identity-v2.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/index.d.ts +1 -2
- package/dist/declarations/src/identity/index.d.ts.map +1 -1
- package/dist/declarations/src/identity/kyc.schema.d.ts +31 -194
- package/dist/declarations/src/identity/kyc.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/query.schema.d.ts +178 -0
- package/dist/declarations/src/identity/query.schema.d.ts.map +1 -1
- package/dist/declarations/src/identity/scenario.schema.d.ts +1180 -0
- package/dist/declarations/src/identity/scenario.schema.d.ts.map +1 -0
- package/dist/declarations/src/identity/zkps.schema.d.ts +0 -744
- package/dist/declarations/src/identity/zkps.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts +63 -60
- package/dist/declarations/src/providers/kyc-sessions.schema.d.ts.map +1 -1
- package/dist/declarations/src/providers/sumsub/sumsub-applicant.schema.d.ts +4 -4
- package/dist/declarations/src/transaction.schema.d.ts +2 -2
- package/dist/declarations/src/transaction.schema.d.ts.map +1 -1
- package/dist/declarations/src/webhooks/svix.webhooks.schema.d.ts +135 -135
- package/dist/declarations/src/webhooks/tms.webhooks.schema.d.ts +3 -3
- package/dist/{frontend-utilities.schema-2ad117b9.cjs.prod.js → frontend-utilities.schema-63c0c3ec.cjs.prod.js} +1 -1
- package/dist/{frontend-utilities.schema-a0cf242f.cjs.dev.js → frontend-utilities.schema-7ec52bb3.cjs.dev.js} +1 -1
- package/dist/{frontend-utilities.schema-3e61e949.esm.js → frontend-utilities.schema-c53dbf36.esm.js} +1 -1
- package/dist/{identity-api.schema-08b1e63d.cjs.dev.js → identity-api.schema-725ecd1d.cjs.prod.js} +357 -437
- package/dist/{identity-api.schema-a01dae12.esm.js → identity-api.schema-a3f556f3.esm.js} +351 -424
- package/dist/{identity-api.schema-1b5f26e1.cjs.prod.js → identity-api.schema-e1fe9b0e.cjs.dev.js} +357 -437
- package/dist/nexeraid-identity-schemas.cjs.dev.js +10 -17
- package/dist/nexeraid-identity-schemas.cjs.prod.js +10 -17
- package/dist/nexeraid-identity-schemas.esm.js +4 -4
- package/dist/package.json +1 -1
- package/dist/{transaction.schema-1e7e4f0c.esm.js → transaction.schema-356f414e.esm.js} +2 -2
- package/dist/{transaction.schema-c69db067.cjs.dev.js → transaction.schema-8da87f68.cjs.dev.js} +2 -2
- package/dist/{transaction.schema-3ac3062a.cjs.prod.js → transaction.schema-aff2475c.cjs.prod.js} +2 -2
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.dev.js +8 -15
- package/identity/dist/nexeraid-identity-schemas-identity.cjs.prod.js +8 -15
- package/identity/dist/nexeraid-identity-schemas-identity.esm.js +1 -1
- package/package.json +1 -1
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.dev.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.cjs.prod.js +2 -2
- package/providers/dist/nexeraid-identity-schemas-providers.esm.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.dev.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.cjs.prod.js +2 -2
- package/verifiable-credentials/dist/nexeraid-identity-schemas-verifiable-credentials.esm.js +2 -2
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.dev.js +4 -4
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.cjs.prod.js +4 -4
- package/webhooks/dist/nexeraid-identity-schemas-webhooks.esm.js +4 -4
- package/dist/declarations/src/identity/challenge-query.schema.d.ts +0 -1246
- package/dist/declarations/src/identity/challenge-query.schema.d.ts.map +0 -1
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts +0 -136
- package/dist/declarations/src/identity/execute-scenario.schema.d.ts.map +0 -1
|
@@ -390,32 +390,33 @@ export declare const SdkVerificationResponseSchema: z.ZodObject<{
|
|
|
390
390
|
scenarioExecutionId: z.ZodOptional<z.ZodString>;
|
|
391
391
|
status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "error", "unknown"]>>;
|
|
392
392
|
results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
393
|
-
objectType: z.ZodEnum<["ChallengeQuery", "
|
|
393
|
+
objectType: z.ZodEnum<["ChallengeQuery", "OffChainZKP", "IndividualCustomerMonitoring", "TransactionMonitoring"]>;
|
|
394
394
|
objectId: z.ZodString;
|
|
395
395
|
name: z.ZodString;
|
|
396
396
|
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>]>>>;
|
|
397
|
-
result: z.ZodObject<{
|
|
397
|
+
result: z.ZodObject<z.objectUtil.extendShape<{
|
|
398
398
|
result: z.ZodObject<{
|
|
399
399
|
is_valid: z.ZodBoolean;
|
|
400
|
-
reasons: z.ZodArray<z.
|
|
400
|
+
reasons: z.ZodArray<z.ZodString, "many">;
|
|
401
401
|
}, "strip", z.ZodTypeAny, {
|
|
402
402
|
is_valid: boolean;
|
|
403
|
-
reasons:
|
|
403
|
+
reasons: string[];
|
|
404
404
|
}, {
|
|
405
405
|
is_valid: boolean;
|
|
406
|
-
reasons:
|
|
406
|
+
reasons: string[];
|
|
407
407
|
}>;
|
|
408
|
+
}, {
|
|
408
409
|
executionId: z.ZodString;
|
|
409
|
-
}
|
|
410
|
+
}>, "strip", z.ZodTypeAny, {
|
|
410
411
|
result: {
|
|
411
412
|
is_valid: boolean;
|
|
412
|
-
reasons:
|
|
413
|
+
reasons: string[];
|
|
413
414
|
};
|
|
414
415
|
executionId: string;
|
|
415
416
|
}, {
|
|
416
417
|
result: {
|
|
417
418
|
is_valid: boolean;
|
|
418
|
-
reasons:
|
|
419
|
+
reasons: string[];
|
|
419
420
|
};
|
|
420
421
|
executionId: string;
|
|
421
422
|
}>;
|
|
@@ -426,13 +427,13 @@ export declare const SdkVerificationResponseSchema: z.ZodObject<{
|
|
|
426
427
|
result: {
|
|
427
428
|
result: {
|
|
428
429
|
is_valid: boolean;
|
|
429
|
-
reasons:
|
|
430
|
+
reasons: string[];
|
|
430
431
|
};
|
|
431
432
|
executionId: string;
|
|
432
433
|
};
|
|
433
434
|
executionId: string;
|
|
434
435
|
scenarioId: string;
|
|
435
|
-
objectType: "ChallengeQuery" | "
|
|
436
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
436
437
|
objectId: string;
|
|
437
438
|
address?: string | null | undefined;
|
|
438
439
|
}, {
|
|
@@ -440,13 +441,13 @@ export declare const SdkVerificationResponseSchema: z.ZodObject<{
|
|
|
440
441
|
result: {
|
|
441
442
|
result: {
|
|
442
443
|
is_valid: boolean;
|
|
443
|
-
reasons:
|
|
444
|
+
reasons: string[];
|
|
444
445
|
};
|
|
445
446
|
executionId: string;
|
|
446
447
|
};
|
|
447
448
|
executionId: string;
|
|
448
449
|
scenarioId: string;
|
|
449
|
-
objectType: "ChallengeQuery" | "
|
|
450
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
450
451
|
objectId: string;
|
|
451
452
|
address?: string | null | undefined;
|
|
452
453
|
}>, "many">, "many">>;
|
|
@@ -459,13 +460,13 @@ export declare const SdkVerificationResponseSchema: z.ZodObject<{
|
|
|
459
460
|
result: {
|
|
460
461
|
result: {
|
|
461
462
|
is_valid: boolean;
|
|
462
|
-
reasons:
|
|
463
|
+
reasons: string[];
|
|
463
464
|
};
|
|
464
465
|
executionId: string;
|
|
465
466
|
};
|
|
466
467
|
executionId: string;
|
|
467
468
|
scenarioId: string;
|
|
468
|
-
objectType: "ChallengeQuery" | "
|
|
469
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
469
470
|
objectId: string;
|
|
470
471
|
address?: string | null | undefined;
|
|
471
472
|
}[][] | undefined;
|
|
@@ -478,13 +479,13 @@ export declare const SdkVerificationResponseSchema: z.ZodObject<{
|
|
|
478
479
|
result: {
|
|
479
480
|
result: {
|
|
480
481
|
is_valid: boolean;
|
|
481
|
-
reasons:
|
|
482
|
+
reasons: string[];
|
|
482
483
|
};
|
|
483
484
|
executionId: string;
|
|
484
485
|
};
|
|
485
486
|
executionId: string;
|
|
486
487
|
scenarioId: string;
|
|
487
|
-
objectType: "ChallengeQuery" | "
|
|
488
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
488
489
|
objectId: string;
|
|
489
490
|
address?: string | null | undefined;
|
|
490
491
|
}[][] | undefined;
|
|
@@ -556,32 +557,33 @@ export declare const RuleEngineScenarioExecutionData: z.ZodObject<{
|
|
|
556
557
|
scenarioExecutionId: z.ZodOptional<z.ZodString>;
|
|
557
558
|
status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "error", "unknown"]>>;
|
|
558
559
|
results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
559
|
-
objectType: z.ZodEnum<["ChallengeQuery", "
|
|
560
|
+
objectType: z.ZodEnum<["ChallengeQuery", "OffChainZKP", "IndividualCustomerMonitoring", "TransactionMonitoring"]>;
|
|
560
561
|
objectId: z.ZodString;
|
|
561
562
|
name: z.ZodString;
|
|
562
563
|
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>]>>>;
|
|
563
|
-
result: z.ZodObject<{
|
|
564
|
+
result: z.ZodObject<z.objectUtil.extendShape<{
|
|
564
565
|
result: z.ZodObject<{
|
|
565
566
|
is_valid: z.ZodBoolean;
|
|
566
|
-
reasons: z.ZodArray<z.
|
|
567
|
+
reasons: z.ZodArray<z.ZodString, "many">;
|
|
567
568
|
}, "strip", z.ZodTypeAny, {
|
|
568
569
|
is_valid: boolean;
|
|
569
|
-
reasons:
|
|
570
|
+
reasons: string[];
|
|
570
571
|
}, {
|
|
571
572
|
is_valid: boolean;
|
|
572
|
-
reasons:
|
|
573
|
+
reasons: string[];
|
|
573
574
|
}>;
|
|
575
|
+
}, {
|
|
574
576
|
executionId: z.ZodString;
|
|
575
|
-
}
|
|
577
|
+
}>, "strip", z.ZodTypeAny, {
|
|
576
578
|
result: {
|
|
577
579
|
is_valid: boolean;
|
|
578
|
-
reasons:
|
|
580
|
+
reasons: string[];
|
|
579
581
|
};
|
|
580
582
|
executionId: string;
|
|
581
583
|
}, {
|
|
582
584
|
result: {
|
|
583
585
|
is_valid: boolean;
|
|
584
|
-
reasons:
|
|
586
|
+
reasons: string[];
|
|
585
587
|
};
|
|
586
588
|
executionId: string;
|
|
587
589
|
}>;
|
|
@@ -592,13 +594,13 @@ export declare const RuleEngineScenarioExecutionData: z.ZodObject<{
|
|
|
592
594
|
result: {
|
|
593
595
|
result: {
|
|
594
596
|
is_valid: boolean;
|
|
595
|
-
reasons:
|
|
597
|
+
reasons: string[];
|
|
596
598
|
};
|
|
597
599
|
executionId: string;
|
|
598
600
|
};
|
|
599
601
|
executionId: string;
|
|
600
602
|
scenarioId: string;
|
|
601
|
-
objectType: "ChallengeQuery" | "
|
|
603
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
602
604
|
objectId: string;
|
|
603
605
|
address?: string | null | undefined;
|
|
604
606
|
}, {
|
|
@@ -606,13 +608,13 @@ export declare const RuleEngineScenarioExecutionData: z.ZodObject<{
|
|
|
606
608
|
result: {
|
|
607
609
|
result: {
|
|
608
610
|
is_valid: boolean;
|
|
609
|
-
reasons:
|
|
611
|
+
reasons: string[];
|
|
610
612
|
};
|
|
611
613
|
executionId: string;
|
|
612
614
|
};
|
|
613
615
|
executionId: string;
|
|
614
616
|
scenarioId: string;
|
|
615
|
-
objectType: "ChallengeQuery" | "
|
|
617
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
616
618
|
objectId: string;
|
|
617
619
|
address?: string | null | undefined;
|
|
618
620
|
}>, "many">, "many">>;
|
|
@@ -625,13 +627,13 @@ export declare const RuleEngineScenarioExecutionData: z.ZodObject<{
|
|
|
625
627
|
result: {
|
|
626
628
|
result: {
|
|
627
629
|
is_valid: boolean;
|
|
628
|
-
reasons:
|
|
630
|
+
reasons: string[];
|
|
629
631
|
};
|
|
630
632
|
executionId: string;
|
|
631
633
|
};
|
|
632
634
|
executionId: string;
|
|
633
635
|
scenarioId: string;
|
|
634
|
-
objectType: "ChallengeQuery" | "
|
|
636
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
635
637
|
objectId: string;
|
|
636
638
|
address?: string | null | undefined;
|
|
637
639
|
}[][] | undefined;
|
|
@@ -644,13 +646,13 @@ export declare const RuleEngineScenarioExecutionData: z.ZodObject<{
|
|
|
644
646
|
result: {
|
|
645
647
|
result: {
|
|
646
648
|
is_valid: boolean;
|
|
647
|
-
reasons:
|
|
649
|
+
reasons: string[];
|
|
648
650
|
};
|
|
649
651
|
executionId: string;
|
|
650
652
|
};
|
|
651
653
|
executionId: string;
|
|
652
654
|
scenarioId: string;
|
|
653
|
-
objectType: "ChallengeQuery" | "
|
|
655
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
654
656
|
objectId: string;
|
|
655
657
|
address?: string | null | undefined;
|
|
656
658
|
}[][] | undefined;
|
|
@@ -666,13 +668,13 @@ export declare const RuleEngineScenarioExecutionData: z.ZodObject<{
|
|
|
666
668
|
result: {
|
|
667
669
|
result: {
|
|
668
670
|
is_valid: boolean;
|
|
669
|
-
reasons:
|
|
671
|
+
reasons: string[];
|
|
670
672
|
};
|
|
671
673
|
executionId: string;
|
|
672
674
|
};
|
|
673
675
|
executionId: string;
|
|
674
676
|
scenarioId: string;
|
|
675
|
-
objectType: "ChallengeQuery" | "
|
|
677
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
676
678
|
objectId: string;
|
|
677
679
|
address?: string | null | undefined;
|
|
678
680
|
}[][] | undefined;
|
|
@@ -688,13 +690,13 @@ export declare const RuleEngineScenarioExecutionData: z.ZodObject<{
|
|
|
688
690
|
result: {
|
|
689
691
|
result: {
|
|
690
692
|
is_valid: boolean;
|
|
691
|
-
reasons:
|
|
693
|
+
reasons: string[];
|
|
692
694
|
};
|
|
693
695
|
executionId: string;
|
|
694
696
|
};
|
|
695
697
|
executionId: string;
|
|
696
698
|
scenarioId: string;
|
|
697
|
-
objectType: "ChallengeQuery" | "
|
|
699
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
698
700
|
objectId: string;
|
|
699
701
|
address?: string | null | undefined;
|
|
700
702
|
}[][] | undefined;
|
|
@@ -1235,32 +1237,33 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1235
1237
|
scenarioExecutionId: z.ZodOptional<z.ZodString>;
|
|
1236
1238
|
status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "error", "unknown"]>>;
|
|
1237
1239
|
results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
1238
|
-
objectType: z.ZodEnum<["ChallengeQuery", "
|
|
1240
|
+
objectType: z.ZodEnum<["ChallengeQuery", "OffChainZKP", "IndividualCustomerMonitoring", "TransactionMonitoring"]>;
|
|
1239
1241
|
objectId: z.ZodString;
|
|
1240
1242
|
name: z.ZodString;
|
|
1241
1243
|
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>]>>>;
|
|
1242
|
-
result: z.ZodObject<{
|
|
1244
|
+
result: z.ZodObject<z.objectUtil.extendShape<{
|
|
1243
1245
|
result: z.ZodObject<{
|
|
1244
1246
|
is_valid: z.ZodBoolean;
|
|
1245
|
-
reasons: z.ZodArray<z.
|
|
1247
|
+
reasons: z.ZodArray<z.ZodString, "many">;
|
|
1246
1248
|
}, "strip", z.ZodTypeAny, {
|
|
1247
1249
|
is_valid: boolean;
|
|
1248
|
-
reasons:
|
|
1250
|
+
reasons: string[];
|
|
1249
1251
|
}, {
|
|
1250
1252
|
is_valid: boolean;
|
|
1251
|
-
reasons:
|
|
1253
|
+
reasons: string[];
|
|
1252
1254
|
}>;
|
|
1255
|
+
}, {
|
|
1253
1256
|
executionId: z.ZodString;
|
|
1254
|
-
}
|
|
1257
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1255
1258
|
result: {
|
|
1256
1259
|
is_valid: boolean;
|
|
1257
|
-
reasons:
|
|
1260
|
+
reasons: string[];
|
|
1258
1261
|
};
|
|
1259
1262
|
executionId: string;
|
|
1260
1263
|
}, {
|
|
1261
1264
|
result: {
|
|
1262
1265
|
is_valid: boolean;
|
|
1263
|
-
reasons:
|
|
1266
|
+
reasons: string[];
|
|
1264
1267
|
};
|
|
1265
1268
|
executionId: string;
|
|
1266
1269
|
}>;
|
|
@@ -1271,13 +1274,13 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1271
1274
|
result: {
|
|
1272
1275
|
result: {
|
|
1273
1276
|
is_valid: boolean;
|
|
1274
|
-
reasons:
|
|
1277
|
+
reasons: string[];
|
|
1275
1278
|
};
|
|
1276
1279
|
executionId: string;
|
|
1277
1280
|
};
|
|
1278
1281
|
executionId: string;
|
|
1279
1282
|
scenarioId: string;
|
|
1280
|
-
objectType: "ChallengeQuery" | "
|
|
1283
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1281
1284
|
objectId: string;
|
|
1282
1285
|
address?: string | null | undefined;
|
|
1283
1286
|
}, {
|
|
@@ -1285,13 +1288,13 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1285
1288
|
result: {
|
|
1286
1289
|
result: {
|
|
1287
1290
|
is_valid: boolean;
|
|
1288
|
-
reasons:
|
|
1291
|
+
reasons: string[];
|
|
1289
1292
|
};
|
|
1290
1293
|
executionId: string;
|
|
1291
1294
|
};
|
|
1292
1295
|
executionId: string;
|
|
1293
1296
|
scenarioId: string;
|
|
1294
|
-
objectType: "ChallengeQuery" | "
|
|
1297
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1295
1298
|
objectId: string;
|
|
1296
1299
|
address?: string | null | undefined;
|
|
1297
1300
|
}>, "many">, "many">>;
|
|
@@ -1304,13 +1307,13 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1304
1307
|
result: {
|
|
1305
1308
|
result: {
|
|
1306
1309
|
is_valid: boolean;
|
|
1307
|
-
reasons:
|
|
1310
|
+
reasons: string[];
|
|
1308
1311
|
};
|
|
1309
1312
|
executionId: string;
|
|
1310
1313
|
};
|
|
1311
1314
|
executionId: string;
|
|
1312
1315
|
scenarioId: string;
|
|
1313
|
-
objectType: "ChallengeQuery" | "
|
|
1316
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1314
1317
|
objectId: string;
|
|
1315
1318
|
address?: string | null | undefined;
|
|
1316
1319
|
}[][] | undefined;
|
|
@@ -1323,13 +1326,13 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1323
1326
|
result: {
|
|
1324
1327
|
result: {
|
|
1325
1328
|
is_valid: boolean;
|
|
1326
|
-
reasons:
|
|
1329
|
+
reasons: string[];
|
|
1327
1330
|
};
|
|
1328
1331
|
executionId: string;
|
|
1329
1332
|
};
|
|
1330
1333
|
executionId: string;
|
|
1331
1334
|
scenarioId: string;
|
|
1332
|
-
objectType: "ChallengeQuery" | "
|
|
1335
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1333
1336
|
objectId: string;
|
|
1334
1337
|
address?: string | null | undefined;
|
|
1335
1338
|
}[][] | undefined;
|
|
@@ -1345,13 +1348,13 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1345
1348
|
result: {
|
|
1346
1349
|
result: {
|
|
1347
1350
|
is_valid: boolean;
|
|
1348
|
-
reasons:
|
|
1351
|
+
reasons: string[];
|
|
1349
1352
|
};
|
|
1350
1353
|
executionId: string;
|
|
1351
1354
|
};
|
|
1352
1355
|
executionId: string;
|
|
1353
1356
|
scenarioId: string;
|
|
1354
|
-
objectType: "ChallengeQuery" | "
|
|
1357
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1355
1358
|
objectId: string;
|
|
1356
1359
|
address?: string | null | undefined;
|
|
1357
1360
|
}[][] | undefined;
|
|
@@ -1367,13 +1370,13 @@ export declare const ScenarioExecutionData: z.ZodUnion<[z.ZodObject<{
|
|
|
1367
1370
|
result: {
|
|
1368
1371
|
result: {
|
|
1369
1372
|
is_valid: boolean;
|
|
1370
|
-
reasons:
|
|
1373
|
+
reasons: string[];
|
|
1371
1374
|
};
|
|
1372
1375
|
executionId: string;
|
|
1373
1376
|
};
|
|
1374
1377
|
executionId: string;
|
|
1375
1378
|
scenarioId: string;
|
|
1376
|
-
objectType: "ChallengeQuery" | "
|
|
1379
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1377
1380
|
objectId: string;
|
|
1378
1381
|
address?: string | null | undefined;
|
|
1379
1382
|
}[][] | undefined;
|
|
@@ -1915,32 +1918,33 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
1915
1918
|
scenarioExecutionId: z.ZodOptional<z.ZodString>;
|
|
1916
1919
|
status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "error", "unknown"]>>;
|
|
1917
1920
|
results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
1918
|
-
objectType: z.ZodEnum<["ChallengeQuery", "
|
|
1921
|
+
objectType: z.ZodEnum<["ChallengeQuery", "OffChainZKP", "IndividualCustomerMonitoring", "TransactionMonitoring"]>;
|
|
1919
1922
|
objectId: z.ZodString;
|
|
1920
1923
|
name: z.ZodString;
|
|
1921
1924
|
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>]>>>;
|
|
1922
|
-
result: z.ZodObject<{
|
|
1925
|
+
result: z.ZodObject<z.objectUtil.extendShape<{
|
|
1923
1926
|
result: z.ZodObject<{
|
|
1924
1927
|
is_valid: z.ZodBoolean;
|
|
1925
|
-
reasons: z.ZodArray<z.
|
|
1928
|
+
reasons: z.ZodArray<z.ZodString, "many">;
|
|
1926
1929
|
}, "strip", z.ZodTypeAny, {
|
|
1927
1930
|
is_valid: boolean;
|
|
1928
|
-
reasons:
|
|
1931
|
+
reasons: string[];
|
|
1929
1932
|
}, {
|
|
1930
1933
|
is_valid: boolean;
|
|
1931
|
-
reasons:
|
|
1934
|
+
reasons: string[];
|
|
1932
1935
|
}>;
|
|
1936
|
+
}, {
|
|
1933
1937
|
executionId: z.ZodString;
|
|
1934
|
-
}
|
|
1938
|
+
}>, "strip", z.ZodTypeAny, {
|
|
1935
1939
|
result: {
|
|
1936
1940
|
is_valid: boolean;
|
|
1937
|
-
reasons:
|
|
1941
|
+
reasons: string[];
|
|
1938
1942
|
};
|
|
1939
1943
|
executionId: string;
|
|
1940
1944
|
}, {
|
|
1941
1945
|
result: {
|
|
1942
1946
|
is_valid: boolean;
|
|
1943
|
-
reasons:
|
|
1947
|
+
reasons: string[];
|
|
1944
1948
|
};
|
|
1945
1949
|
executionId: string;
|
|
1946
1950
|
}>;
|
|
@@ -1951,13 +1955,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
1951
1955
|
result: {
|
|
1952
1956
|
result: {
|
|
1953
1957
|
is_valid: boolean;
|
|
1954
|
-
reasons:
|
|
1958
|
+
reasons: string[];
|
|
1955
1959
|
};
|
|
1956
1960
|
executionId: string;
|
|
1957
1961
|
};
|
|
1958
1962
|
executionId: string;
|
|
1959
1963
|
scenarioId: string;
|
|
1960
|
-
objectType: "ChallengeQuery" | "
|
|
1964
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1961
1965
|
objectId: string;
|
|
1962
1966
|
address?: string | null | undefined;
|
|
1963
1967
|
}, {
|
|
@@ -1965,13 +1969,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
1965
1969
|
result: {
|
|
1966
1970
|
result: {
|
|
1967
1971
|
is_valid: boolean;
|
|
1968
|
-
reasons:
|
|
1972
|
+
reasons: string[];
|
|
1969
1973
|
};
|
|
1970
1974
|
executionId: string;
|
|
1971
1975
|
};
|
|
1972
1976
|
executionId: string;
|
|
1973
1977
|
scenarioId: string;
|
|
1974
|
-
objectType: "ChallengeQuery" | "
|
|
1978
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1975
1979
|
objectId: string;
|
|
1976
1980
|
address?: string | null | undefined;
|
|
1977
1981
|
}>, "many">, "many">>;
|
|
@@ -1984,13 +1988,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
1984
1988
|
result: {
|
|
1985
1989
|
result: {
|
|
1986
1990
|
is_valid: boolean;
|
|
1987
|
-
reasons:
|
|
1991
|
+
reasons: string[];
|
|
1988
1992
|
};
|
|
1989
1993
|
executionId: string;
|
|
1990
1994
|
};
|
|
1991
1995
|
executionId: string;
|
|
1992
1996
|
scenarioId: string;
|
|
1993
|
-
objectType: "ChallengeQuery" | "
|
|
1997
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
1994
1998
|
objectId: string;
|
|
1995
1999
|
address?: string | null | undefined;
|
|
1996
2000
|
}[][] | undefined;
|
|
@@ -2003,13 +2007,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2003
2007
|
result: {
|
|
2004
2008
|
result: {
|
|
2005
2009
|
is_valid: boolean;
|
|
2006
|
-
reasons:
|
|
2010
|
+
reasons: string[];
|
|
2007
2011
|
};
|
|
2008
2012
|
executionId: string;
|
|
2009
2013
|
};
|
|
2010
2014
|
executionId: string;
|
|
2011
2015
|
scenarioId: string;
|
|
2012
|
-
objectType: "ChallengeQuery" | "
|
|
2016
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2013
2017
|
objectId: string;
|
|
2014
2018
|
address?: string | null | undefined;
|
|
2015
2019
|
}[][] | undefined;
|
|
@@ -2025,13 +2029,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2025
2029
|
result: {
|
|
2026
2030
|
result: {
|
|
2027
2031
|
is_valid: boolean;
|
|
2028
|
-
reasons:
|
|
2032
|
+
reasons: string[];
|
|
2029
2033
|
};
|
|
2030
2034
|
executionId: string;
|
|
2031
2035
|
};
|
|
2032
2036
|
executionId: string;
|
|
2033
2037
|
scenarioId: string;
|
|
2034
|
-
objectType: "ChallengeQuery" | "
|
|
2038
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2035
2039
|
objectId: string;
|
|
2036
2040
|
address?: string | null | undefined;
|
|
2037
2041
|
}[][] | undefined;
|
|
@@ -2047,13 +2051,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2047
2051
|
result: {
|
|
2048
2052
|
result: {
|
|
2049
2053
|
is_valid: boolean;
|
|
2050
|
-
reasons:
|
|
2054
|
+
reasons: string[];
|
|
2051
2055
|
};
|
|
2052
2056
|
executionId: string;
|
|
2053
2057
|
};
|
|
2054
2058
|
executionId: string;
|
|
2055
2059
|
scenarioId: string;
|
|
2056
|
-
objectType: "ChallengeQuery" | "
|
|
2060
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2057
2061
|
objectId: string;
|
|
2058
2062
|
address?: string | null | undefined;
|
|
2059
2063
|
}[][] | undefined;
|
|
@@ -2598,13 +2602,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2598
2602
|
result: {
|
|
2599
2603
|
result: {
|
|
2600
2604
|
is_valid: boolean;
|
|
2601
|
-
reasons:
|
|
2605
|
+
reasons: string[];
|
|
2602
2606
|
};
|
|
2603
2607
|
executionId: string;
|
|
2604
2608
|
};
|
|
2605
2609
|
executionId: string;
|
|
2606
2610
|
scenarioId: string;
|
|
2607
|
-
objectType: "ChallengeQuery" | "
|
|
2611
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2608
2612
|
objectId: string;
|
|
2609
2613
|
address?: string | null | undefined;
|
|
2610
2614
|
}[][] | undefined;
|
|
@@ -2692,13 +2696,13 @@ export declare const ScenarioExecutionNotification: z.ZodObject<{
|
|
|
2692
2696
|
result: {
|
|
2693
2697
|
result: {
|
|
2694
2698
|
is_valid: boolean;
|
|
2695
|
-
reasons:
|
|
2699
|
+
reasons: string[];
|
|
2696
2700
|
};
|
|
2697
2701
|
executionId: string;
|
|
2698
2702
|
};
|
|
2699
2703
|
executionId: string;
|
|
2700
2704
|
scenarioId: string;
|
|
2701
|
-
objectType: "ChallengeQuery" | "
|
|
2705
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2702
2706
|
objectId: string;
|
|
2703
2707
|
address?: string | null | undefined;
|
|
2704
2708
|
}[][] | undefined;
|
|
@@ -2904,32 +2908,33 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2904
2908
|
scenarioExecutionId: z.ZodOptional<z.ZodString>;
|
|
2905
2909
|
status: z.ZodOptional<z.ZodEnum<["valid", "not-valid", "error", "unknown"]>>;
|
|
2906
2910
|
results: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
|
|
2907
|
-
objectType: z.ZodEnum<["ChallengeQuery", "
|
|
2911
|
+
objectType: z.ZodEnum<["ChallengeQuery", "OffChainZKP", "IndividualCustomerMonitoring", "TransactionMonitoring"]>;
|
|
2908
2912
|
objectId: z.ZodString;
|
|
2909
2913
|
name: z.ZodString;
|
|
2910
2914
|
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>]>>>;
|
|
2911
|
-
result: z.ZodObject<{
|
|
2915
|
+
result: z.ZodObject<z.objectUtil.extendShape<{
|
|
2912
2916
|
result: z.ZodObject<{
|
|
2913
2917
|
is_valid: z.ZodBoolean;
|
|
2914
|
-
reasons: z.ZodArray<z.
|
|
2918
|
+
reasons: z.ZodArray<z.ZodString, "many">;
|
|
2915
2919
|
}, "strip", z.ZodTypeAny, {
|
|
2916
2920
|
is_valid: boolean;
|
|
2917
|
-
reasons:
|
|
2921
|
+
reasons: string[];
|
|
2918
2922
|
}, {
|
|
2919
2923
|
is_valid: boolean;
|
|
2920
|
-
reasons:
|
|
2924
|
+
reasons: string[];
|
|
2921
2925
|
}>;
|
|
2926
|
+
}, {
|
|
2922
2927
|
executionId: z.ZodString;
|
|
2923
|
-
}
|
|
2928
|
+
}>, "strip", z.ZodTypeAny, {
|
|
2924
2929
|
result: {
|
|
2925
2930
|
is_valid: boolean;
|
|
2926
|
-
reasons:
|
|
2931
|
+
reasons: string[];
|
|
2927
2932
|
};
|
|
2928
2933
|
executionId: string;
|
|
2929
2934
|
}, {
|
|
2930
2935
|
result: {
|
|
2931
2936
|
is_valid: boolean;
|
|
2932
|
-
reasons:
|
|
2937
|
+
reasons: string[];
|
|
2933
2938
|
};
|
|
2934
2939
|
executionId: string;
|
|
2935
2940
|
}>;
|
|
@@ -2940,13 +2945,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2940
2945
|
result: {
|
|
2941
2946
|
result: {
|
|
2942
2947
|
is_valid: boolean;
|
|
2943
|
-
reasons:
|
|
2948
|
+
reasons: string[];
|
|
2944
2949
|
};
|
|
2945
2950
|
executionId: string;
|
|
2946
2951
|
};
|
|
2947
2952
|
executionId: string;
|
|
2948
2953
|
scenarioId: string;
|
|
2949
|
-
objectType: "ChallengeQuery" | "
|
|
2954
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2950
2955
|
objectId: string;
|
|
2951
2956
|
address?: string | null | undefined;
|
|
2952
2957
|
}, {
|
|
@@ -2954,13 +2959,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2954
2959
|
result: {
|
|
2955
2960
|
result: {
|
|
2956
2961
|
is_valid: boolean;
|
|
2957
|
-
reasons:
|
|
2962
|
+
reasons: string[];
|
|
2958
2963
|
};
|
|
2959
2964
|
executionId: string;
|
|
2960
2965
|
};
|
|
2961
2966
|
executionId: string;
|
|
2962
2967
|
scenarioId: string;
|
|
2963
|
-
objectType: "ChallengeQuery" | "
|
|
2968
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2964
2969
|
objectId: string;
|
|
2965
2970
|
address?: string | null | undefined;
|
|
2966
2971
|
}>, "many">, "many">>;
|
|
@@ -2973,13 +2978,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2973
2978
|
result: {
|
|
2974
2979
|
result: {
|
|
2975
2980
|
is_valid: boolean;
|
|
2976
|
-
reasons:
|
|
2981
|
+
reasons: string[];
|
|
2977
2982
|
};
|
|
2978
2983
|
executionId: string;
|
|
2979
2984
|
};
|
|
2980
2985
|
executionId: string;
|
|
2981
2986
|
scenarioId: string;
|
|
2982
|
-
objectType: "ChallengeQuery" | "
|
|
2987
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
2983
2988
|
objectId: string;
|
|
2984
2989
|
address?: string | null | undefined;
|
|
2985
2990
|
}[][] | undefined;
|
|
@@ -2992,13 +2997,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
2992
2997
|
result: {
|
|
2993
2998
|
result: {
|
|
2994
2999
|
is_valid: boolean;
|
|
2995
|
-
reasons:
|
|
3000
|
+
reasons: string[];
|
|
2996
3001
|
};
|
|
2997
3002
|
executionId: string;
|
|
2998
3003
|
};
|
|
2999
3004
|
executionId: string;
|
|
3000
3005
|
scenarioId: string;
|
|
3001
|
-
objectType: "ChallengeQuery" | "
|
|
3006
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
3002
3007
|
objectId: string;
|
|
3003
3008
|
address?: string | null | undefined;
|
|
3004
3009
|
}[][] | undefined;
|
|
@@ -3014,13 +3019,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3014
3019
|
result: {
|
|
3015
3020
|
result: {
|
|
3016
3021
|
is_valid: boolean;
|
|
3017
|
-
reasons:
|
|
3022
|
+
reasons: string[];
|
|
3018
3023
|
};
|
|
3019
3024
|
executionId: string;
|
|
3020
3025
|
};
|
|
3021
3026
|
executionId: string;
|
|
3022
3027
|
scenarioId: string;
|
|
3023
|
-
objectType: "ChallengeQuery" | "
|
|
3028
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
3024
3029
|
objectId: string;
|
|
3025
3030
|
address?: string | null | undefined;
|
|
3026
3031
|
}[][] | undefined;
|
|
@@ -3036,13 +3041,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3036
3041
|
result: {
|
|
3037
3042
|
result: {
|
|
3038
3043
|
is_valid: boolean;
|
|
3039
|
-
reasons:
|
|
3044
|
+
reasons: string[];
|
|
3040
3045
|
};
|
|
3041
3046
|
executionId: string;
|
|
3042
3047
|
};
|
|
3043
3048
|
executionId: string;
|
|
3044
3049
|
scenarioId: string;
|
|
3045
|
-
objectType: "ChallengeQuery" | "
|
|
3050
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
3046
3051
|
objectId: string;
|
|
3047
3052
|
address?: string | null | undefined;
|
|
3048
3053
|
}[][] | undefined;
|
|
@@ -3587,13 +3592,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3587
3592
|
result: {
|
|
3588
3593
|
result: {
|
|
3589
3594
|
is_valid: boolean;
|
|
3590
|
-
reasons:
|
|
3595
|
+
reasons: string[];
|
|
3591
3596
|
};
|
|
3592
3597
|
executionId: string;
|
|
3593
3598
|
};
|
|
3594
3599
|
executionId: string;
|
|
3595
3600
|
scenarioId: string;
|
|
3596
|
-
objectType: "ChallengeQuery" | "
|
|
3601
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
3597
3602
|
objectId: string;
|
|
3598
3603
|
address?: string | null | undefined;
|
|
3599
3604
|
}[][] | undefined;
|
|
@@ -3681,13 +3686,13 @@ export declare const IdentityNotificationMessage: z.ZodUnion<[z.ZodObject<{
|
|
|
3681
3686
|
result: {
|
|
3682
3687
|
result: {
|
|
3683
3688
|
is_valid: boolean;
|
|
3684
|
-
reasons:
|
|
3689
|
+
reasons: string[];
|
|
3685
3690
|
};
|
|
3686
3691
|
executionId: string;
|
|
3687
3692
|
};
|
|
3688
3693
|
executionId: string;
|
|
3689
3694
|
scenarioId: string;
|
|
3690
|
-
objectType: "ChallengeQuery" | "
|
|
3695
|
+
objectType: "ChallengeQuery" | "OffChainZKP" | "IndividualCustomerMonitoring" | "TransactionMonitoring";
|
|
3691
3696
|
objectId: string;
|
|
3692
3697
|
address?: string | null | undefined;
|
|
3693
3698
|
}[][] | undefined;
|