@nexeraid/identity-schemas 1.12.29-dev → 1.12.30-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.
@@ -3692,6 +3692,323 @@ export declare const VerificationFlowResult: z.ZodUnion<[z.ZodObject<{
3692
3692
  risk_level?: number | null | undefined;
3693
3693
  risk_level_verbose?: "Medium" | "High" | "No Risk Detected" | "Info" | "Caution" | "Critical" | null | undefined;
3694
3694
  };
3695
+ }>, z.ZodObject<{
3696
+ type: z.ZodEnum<["chainalysis"]>;
3697
+ data: z.ZodUnion<[z.ZodObject<{
3698
+ address: z.ZodString;
3699
+ risk: z.ZodEnum<["Severe", "High", "Medium", "Low"]>;
3700
+ riskReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3701
+ cluster: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3702
+ name: z.ZodString;
3703
+ category: z.ZodString;
3704
+ }, "strip", z.ZodTypeAny, {
3705
+ name: string;
3706
+ category: string;
3707
+ }, {
3708
+ name: string;
3709
+ category: string;
3710
+ }>>>;
3711
+ addressType: z.ZodEnum<["PRIVATE_WALLET", "LIQUIDITY_POOL", "SERVICE_PROVIDER"]>;
3712
+ addressIdentifications: z.ZodArray<z.ZodObject<{
3713
+ name: z.ZodString;
3714
+ address: z.ZodString;
3715
+ category: z.ZodString;
3716
+ description: z.ZodString;
3717
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3718
+ createdAt: z.ZodNumber;
3719
+ }, "strip", z.ZodTypeAny, {
3720
+ name: string;
3721
+ description: string;
3722
+ address: string;
3723
+ createdAt: number;
3724
+ category: string;
3725
+ url?: string | null | undefined;
3726
+ }, {
3727
+ name: string;
3728
+ description: string;
3729
+ address: string;
3730
+ createdAt: number;
3731
+ category: string;
3732
+ url?: string | null | undefined;
3733
+ }>, "many">;
3734
+ exposures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3735
+ category: z.ZodString;
3736
+ value: z.ZodNumber;
3737
+ exposureType: z.ZodEnum<["direct", "indirect"]>;
3738
+ direction: z.ZodLiteral<"both_directions">;
3739
+ }, "strip", z.ZodTypeAny, {
3740
+ value: number;
3741
+ category: string;
3742
+ exposureType: "direct" | "indirect";
3743
+ direction: "both_directions";
3744
+ }, {
3745
+ value: number;
3746
+ category: string;
3747
+ exposureType: "direct" | "indirect";
3748
+ direction: "both_directions";
3749
+ }>, "many">>>;
3750
+ triggers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
3751
+ category: z.ZodString;
3752
+ percentage: z.ZodNumber;
3753
+ message: z.ZodString;
3754
+ ruleTriggered: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3755
+ risk: z.ZodString;
3756
+ minThreshold: z.ZodNumber;
3757
+ maxThreshold: z.ZodNumber;
3758
+ exposureType: z.ZodEnum<["direct", "indirect"]>;
3759
+ direction: z.ZodLiteral<"both_directions">;
3760
+ }, "strip", z.ZodTypeAny, {
3761
+ risk: string;
3762
+ exposureType: "direct" | "indirect";
3763
+ direction: "both_directions";
3764
+ minThreshold: number;
3765
+ maxThreshold: number;
3766
+ }, {
3767
+ risk: string;
3768
+ exposureType: "direct" | "indirect";
3769
+ direction: "both_directions";
3770
+ minThreshold: number;
3771
+ maxThreshold: number;
3772
+ }>>>;
3773
+ }, "strip", z.ZodTypeAny, {
3774
+ message: string;
3775
+ category: string;
3776
+ percentage: number;
3777
+ ruleTriggered?: {
3778
+ risk: string;
3779
+ exposureType: "direct" | "indirect";
3780
+ direction: "both_directions";
3781
+ minThreshold: number;
3782
+ maxThreshold: number;
3783
+ } | null | undefined;
3784
+ }, {
3785
+ message: string;
3786
+ category: string;
3787
+ percentage: number;
3788
+ ruleTriggered?: {
3789
+ risk: string;
3790
+ exposureType: "direct" | "indirect";
3791
+ direction: "both_directions";
3792
+ minThreshold: number;
3793
+ maxThreshold: number;
3794
+ } | null | undefined;
3795
+ }>, "many">>>;
3796
+ status: z.ZodLiteral<"COMPLETE">;
3797
+ poolMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3798
+ fees: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3799
+ tokens: z.ZodArray<z.ZodString, "many">;
3800
+ }, "strip", z.ZodTypeAny, {
3801
+ tokens: string[];
3802
+ fees?: number | null | undefined;
3803
+ }, {
3804
+ tokens: string[];
3805
+ fees?: number | null | undefined;
3806
+ }>>>;
3807
+ }, "strip", z.ZodTypeAny, {
3808
+ status: "COMPLETE";
3809
+ address: string;
3810
+ risk: "Low" | "Medium" | "High" | "Severe";
3811
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
3812
+ addressIdentifications: {
3813
+ name: string;
3814
+ description: string;
3815
+ address: string;
3816
+ createdAt: number;
3817
+ category: string;
3818
+ url?: string | null | undefined;
3819
+ }[];
3820
+ cluster?: {
3821
+ name: string;
3822
+ category: string;
3823
+ } | null | undefined;
3824
+ riskReason?: string | null | undefined;
3825
+ exposures?: {
3826
+ value: number;
3827
+ category: string;
3828
+ exposureType: "direct" | "indirect";
3829
+ direction: "both_directions";
3830
+ }[] | null | undefined;
3831
+ triggers?: {
3832
+ message: string;
3833
+ category: string;
3834
+ percentage: number;
3835
+ ruleTriggered?: {
3836
+ risk: string;
3837
+ exposureType: "direct" | "indirect";
3838
+ direction: "both_directions";
3839
+ minThreshold: number;
3840
+ maxThreshold: number;
3841
+ } | null | undefined;
3842
+ }[] | null | undefined;
3843
+ poolMetadata?: {
3844
+ tokens: string[];
3845
+ fees?: number | null | undefined;
3846
+ } | null | undefined;
3847
+ }, {
3848
+ status: "COMPLETE";
3849
+ address: string;
3850
+ risk: "Low" | "Medium" | "High" | "Severe";
3851
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
3852
+ addressIdentifications: {
3853
+ name: string;
3854
+ description: string;
3855
+ address: string;
3856
+ createdAt: number;
3857
+ category: string;
3858
+ url?: string | null | undefined;
3859
+ }[];
3860
+ cluster?: {
3861
+ name: string;
3862
+ category: string;
3863
+ } | null | undefined;
3864
+ riskReason?: string | null | undefined;
3865
+ exposures?: {
3866
+ value: number;
3867
+ category: string;
3868
+ exposureType: "direct" | "indirect";
3869
+ direction: "both_directions";
3870
+ }[] | null | undefined;
3871
+ triggers?: {
3872
+ message: string;
3873
+ category: string;
3874
+ percentage: number;
3875
+ ruleTriggered?: {
3876
+ risk: string;
3877
+ exposureType: "direct" | "indirect";
3878
+ direction: "both_directions";
3879
+ minThreshold: number;
3880
+ maxThreshold: number;
3881
+ } | null | undefined;
3882
+ }[] | null | undefined;
3883
+ poolMetadata?: {
3884
+ tokens: string[];
3885
+ fees?: number | null | undefined;
3886
+ } | null | undefined;
3887
+ }>, z.ZodObject<{
3888
+ error: z.ZodObject<{
3889
+ error: z.ZodString;
3890
+ message: z.ZodString;
3891
+ data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3892
+ }, "strip", z.ZodTypeAny, {
3893
+ message: string;
3894
+ error: string;
3895
+ data?: string | null | undefined;
3896
+ }, {
3897
+ message: string;
3898
+ error: string;
3899
+ data?: string | null | undefined;
3900
+ }>;
3901
+ }, "strip", z.ZodTypeAny, {
3902
+ error: {
3903
+ message: string;
3904
+ error: string;
3905
+ data?: string | null | undefined;
3906
+ };
3907
+ }, {
3908
+ error: {
3909
+ message: string;
3910
+ error: string;
3911
+ data?: string | null | undefined;
3912
+ };
3913
+ }>]>;
3914
+ }, "strip", z.ZodTypeAny, {
3915
+ type: "chainalysis";
3916
+ data: {
3917
+ status: "COMPLETE";
3918
+ address: string;
3919
+ risk: "Low" | "Medium" | "High" | "Severe";
3920
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
3921
+ addressIdentifications: {
3922
+ name: string;
3923
+ description: string;
3924
+ address: string;
3925
+ createdAt: number;
3926
+ category: string;
3927
+ url?: string | null | undefined;
3928
+ }[];
3929
+ cluster?: {
3930
+ name: string;
3931
+ category: string;
3932
+ } | null | undefined;
3933
+ riskReason?: string | null | undefined;
3934
+ exposures?: {
3935
+ value: number;
3936
+ category: string;
3937
+ exposureType: "direct" | "indirect";
3938
+ direction: "both_directions";
3939
+ }[] | null | undefined;
3940
+ triggers?: {
3941
+ message: string;
3942
+ category: string;
3943
+ percentage: number;
3944
+ ruleTriggered?: {
3945
+ risk: string;
3946
+ exposureType: "direct" | "indirect";
3947
+ direction: "both_directions";
3948
+ minThreshold: number;
3949
+ maxThreshold: number;
3950
+ } | null | undefined;
3951
+ }[] | null | undefined;
3952
+ poolMetadata?: {
3953
+ tokens: string[];
3954
+ fees?: number | null | undefined;
3955
+ } | null | undefined;
3956
+ } | {
3957
+ error: {
3958
+ message: string;
3959
+ error: string;
3960
+ data?: string | null | undefined;
3961
+ };
3962
+ };
3963
+ }, {
3964
+ type: "chainalysis";
3965
+ data: {
3966
+ status: "COMPLETE";
3967
+ address: string;
3968
+ risk: "Low" | "Medium" | "High" | "Severe";
3969
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
3970
+ addressIdentifications: {
3971
+ name: string;
3972
+ description: string;
3973
+ address: string;
3974
+ createdAt: number;
3975
+ category: string;
3976
+ url?: string | null | undefined;
3977
+ }[];
3978
+ cluster?: {
3979
+ name: string;
3980
+ category: string;
3981
+ } | null | undefined;
3982
+ riskReason?: string | null | undefined;
3983
+ exposures?: {
3984
+ value: number;
3985
+ category: string;
3986
+ exposureType: "direct" | "indirect";
3987
+ direction: "both_directions";
3988
+ }[] | null | undefined;
3989
+ triggers?: {
3990
+ message: string;
3991
+ category: string;
3992
+ percentage: number;
3993
+ ruleTriggered?: {
3994
+ risk: string;
3995
+ exposureType: "direct" | "indirect";
3996
+ direction: "both_directions";
3997
+ minThreshold: number;
3998
+ maxThreshold: number;
3999
+ } | null | undefined;
4000
+ }[] | null | undefined;
4001
+ poolMetadata?: {
4002
+ tokens: string[];
4003
+ fees?: number | null | undefined;
4004
+ } | null | undefined;
4005
+ } | {
4006
+ error: {
4007
+ message: string;
4008
+ error: string;
4009
+ data?: string | null | undefined;
4010
+ };
4011
+ };
3695
4012
  }>, z.ZodObject<{
3696
4013
  type: z.ZodEnum<["integratedIpqualityscore", "ipQualityScore"]>;
3697
4014
  data: z.ZodUnion<[z.ZodObject<{
@@ -9382,6 +9699,323 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
9382
9699
  risk_level?: number | null | undefined;
9383
9700
  risk_level_verbose?: "Medium" | "High" | "No Risk Detected" | "Info" | "Caution" | "Critical" | null | undefined;
9384
9701
  };
9702
+ }>, z.ZodObject<{
9703
+ type: z.ZodEnum<["chainalysis"]>;
9704
+ data: z.ZodUnion<[z.ZodObject<{
9705
+ address: z.ZodString;
9706
+ risk: z.ZodEnum<["Severe", "High", "Medium", "Low"]>;
9707
+ riskReason: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9708
+ cluster: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9709
+ name: z.ZodString;
9710
+ category: z.ZodString;
9711
+ }, "strip", z.ZodTypeAny, {
9712
+ name: string;
9713
+ category: string;
9714
+ }, {
9715
+ name: string;
9716
+ category: string;
9717
+ }>>>;
9718
+ addressType: z.ZodEnum<["PRIVATE_WALLET", "LIQUIDITY_POOL", "SERVICE_PROVIDER"]>;
9719
+ addressIdentifications: z.ZodArray<z.ZodObject<{
9720
+ name: z.ZodString;
9721
+ address: z.ZodString;
9722
+ category: z.ZodString;
9723
+ description: z.ZodString;
9724
+ url: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9725
+ createdAt: z.ZodNumber;
9726
+ }, "strip", z.ZodTypeAny, {
9727
+ name: string;
9728
+ description: string;
9729
+ address: string;
9730
+ createdAt: number;
9731
+ category: string;
9732
+ url?: string | null | undefined;
9733
+ }, {
9734
+ name: string;
9735
+ description: string;
9736
+ address: string;
9737
+ createdAt: number;
9738
+ category: string;
9739
+ url?: string | null | undefined;
9740
+ }>, "many">;
9741
+ exposures: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9742
+ category: z.ZodString;
9743
+ value: z.ZodNumber;
9744
+ exposureType: z.ZodEnum<["direct", "indirect"]>;
9745
+ direction: z.ZodLiteral<"both_directions">;
9746
+ }, "strip", z.ZodTypeAny, {
9747
+ value: number;
9748
+ category: string;
9749
+ exposureType: "direct" | "indirect";
9750
+ direction: "both_directions";
9751
+ }, {
9752
+ value: number;
9753
+ category: string;
9754
+ exposureType: "direct" | "indirect";
9755
+ direction: "both_directions";
9756
+ }>, "many">>>;
9757
+ triggers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
9758
+ category: z.ZodString;
9759
+ percentage: z.ZodNumber;
9760
+ message: z.ZodString;
9761
+ ruleTriggered: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9762
+ risk: z.ZodString;
9763
+ minThreshold: z.ZodNumber;
9764
+ maxThreshold: z.ZodNumber;
9765
+ exposureType: z.ZodEnum<["direct", "indirect"]>;
9766
+ direction: z.ZodLiteral<"both_directions">;
9767
+ }, "strip", z.ZodTypeAny, {
9768
+ risk: string;
9769
+ exposureType: "direct" | "indirect";
9770
+ direction: "both_directions";
9771
+ minThreshold: number;
9772
+ maxThreshold: number;
9773
+ }, {
9774
+ risk: string;
9775
+ exposureType: "direct" | "indirect";
9776
+ direction: "both_directions";
9777
+ minThreshold: number;
9778
+ maxThreshold: number;
9779
+ }>>>;
9780
+ }, "strip", z.ZodTypeAny, {
9781
+ message: string;
9782
+ category: string;
9783
+ percentage: number;
9784
+ ruleTriggered?: {
9785
+ risk: string;
9786
+ exposureType: "direct" | "indirect";
9787
+ direction: "both_directions";
9788
+ minThreshold: number;
9789
+ maxThreshold: number;
9790
+ } | null | undefined;
9791
+ }, {
9792
+ message: string;
9793
+ category: string;
9794
+ percentage: number;
9795
+ ruleTriggered?: {
9796
+ risk: string;
9797
+ exposureType: "direct" | "indirect";
9798
+ direction: "both_directions";
9799
+ minThreshold: number;
9800
+ maxThreshold: number;
9801
+ } | null | undefined;
9802
+ }>, "many">>>;
9803
+ status: z.ZodLiteral<"COMPLETE">;
9804
+ poolMetadata: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9805
+ fees: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
9806
+ tokens: z.ZodArray<z.ZodString, "many">;
9807
+ }, "strip", z.ZodTypeAny, {
9808
+ tokens: string[];
9809
+ fees?: number | null | undefined;
9810
+ }, {
9811
+ tokens: string[];
9812
+ fees?: number | null | undefined;
9813
+ }>>>;
9814
+ }, "strip", z.ZodTypeAny, {
9815
+ status: "COMPLETE";
9816
+ address: string;
9817
+ risk: "Low" | "Medium" | "High" | "Severe";
9818
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
9819
+ addressIdentifications: {
9820
+ name: string;
9821
+ description: string;
9822
+ address: string;
9823
+ createdAt: number;
9824
+ category: string;
9825
+ url?: string | null | undefined;
9826
+ }[];
9827
+ cluster?: {
9828
+ name: string;
9829
+ category: string;
9830
+ } | null | undefined;
9831
+ riskReason?: string | null | undefined;
9832
+ exposures?: {
9833
+ value: number;
9834
+ category: string;
9835
+ exposureType: "direct" | "indirect";
9836
+ direction: "both_directions";
9837
+ }[] | null | undefined;
9838
+ triggers?: {
9839
+ message: string;
9840
+ category: string;
9841
+ percentage: number;
9842
+ ruleTriggered?: {
9843
+ risk: string;
9844
+ exposureType: "direct" | "indirect";
9845
+ direction: "both_directions";
9846
+ minThreshold: number;
9847
+ maxThreshold: number;
9848
+ } | null | undefined;
9849
+ }[] | null | undefined;
9850
+ poolMetadata?: {
9851
+ tokens: string[];
9852
+ fees?: number | null | undefined;
9853
+ } | null | undefined;
9854
+ }, {
9855
+ status: "COMPLETE";
9856
+ address: string;
9857
+ risk: "Low" | "Medium" | "High" | "Severe";
9858
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
9859
+ addressIdentifications: {
9860
+ name: string;
9861
+ description: string;
9862
+ address: string;
9863
+ createdAt: number;
9864
+ category: string;
9865
+ url?: string | null | undefined;
9866
+ }[];
9867
+ cluster?: {
9868
+ name: string;
9869
+ category: string;
9870
+ } | null | undefined;
9871
+ riskReason?: string | null | undefined;
9872
+ exposures?: {
9873
+ value: number;
9874
+ category: string;
9875
+ exposureType: "direct" | "indirect";
9876
+ direction: "both_directions";
9877
+ }[] | null | undefined;
9878
+ triggers?: {
9879
+ message: string;
9880
+ category: string;
9881
+ percentage: number;
9882
+ ruleTriggered?: {
9883
+ risk: string;
9884
+ exposureType: "direct" | "indirect";
9885
+ direction: "both_directions";
9886
+ minThreshold: number;
9887
+ maxThreshold: number;
9888
+ } | null | undefined;
9889
+ }[] | null | undefined;
9890
+ poolMetadata?: {
9891
+ tokens: string[];
9892
+ fees?: number | null | undefined;
9893
+ } | null | undefined;
9894
+ }>, z.ZodObject<{
9895
+ error: z.ZodObject<{
9896
+ error: z.ZodString;
9897
+ message: z.ZodString;
9898
+ data: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9899
+ }, "strip", z.ZodTypeAny, {
9900
+ message: string;
9901
+ error: string;
9902
+ data?: string | null | undefined;
9903
+ }, {
9904
+ message: string;
9905
+ error: string;
9906
+ data?: string | null | undefined;
9907
+ }>;
9908
+ }, "strip", z.ZodTypeAny, {
9909
+ error: {
9910
+ message: string;
9911
+ error: string;
9912
+ data?: string | null | undefined;
9913
+ };
9914
+ }, {
9915
+ error: {
9916
+ message: string;
9917
+ error: string;
9918
+ data?: string | null | undefined;
9919
+ };
9920
+ }>]>;
9921
+ }, "strip", z.ZodTypeAny, {
9922
+ type: "chainalysis";
9923
+ data: {
9924
+ status: "COMPLETE";
9925
+ address: string;
9926
+ risk: "Low" | "Medium" | "High" | "Severe";
9927
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
9928
+ addressIdentifications: {
9929
+ name: string;
9930
+ description: string;
9931
+ address: string;
9932
+ createdAt: number;
9933
+ category: string;
9934
+ url?: string | null | undefined;
9935
+ }[];
9936
+ cluster?: {
9937
+ name: string;
9938
+ category: string;
9939
+ } | null | undefined;
9940
+ riskReason?: string | null | undefined;
9941
+ exposures?: {
9942
+ value: number;
9943
+ category: string;
9944
+ exposureType: "direct" | "indirect";
9945
+ direction: "both_directions";
9946
+ }[] | null | undefined;
9947
+ triggers?: {
9948
+ message: string;
9949
+ category: string;
9950
+ percentage: number;
9951
+ ruleTriggered?: {
9952
+ risk: string;
9953
+ exposureType: "direct" | "indirect";
9954
+ direction: "both_directions";
9955
+ minThreshold: number;
9956
+ maxThreshold: number;
9957
+ } | null | undefined;
9958
+ }[] | null | undefined;
9959
+ poolMetadata?: {
9960
+ tokens: string[];
9961
+ fees?: number | null | undefined;
9962
+ } | null | undefined;
9963
+ } | {
9964
+ error: {
9965
+ message: string;
9966
+ error: string;
9967
+ data?: string | null | undefined;
9968
+ };
9969
+ };
9970
+ }, {
9971
+ type: "chainalysis";
9972
+ data: {
9973
+ status: "COMPLETE";
9974
+ address: string;
9975
+ risk: "Low" | "Medium" | "High" | "Severe";
9976
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
9977
+ addressIdentifications: {
9978
+ name: string;
9979
+ description: string;
9980
+ address: string;
9981
+ createdAt: number;
9982
+ category: string;
9983
+ url?: string | null | undefined;
9984
+ }[];
9985
+ cluster?: {
9986
+ name: string;
9987
+ category: string;
9988
+ } | null | undefined;
9989
+ riskReason?: string | null | undefined;
9990
+ exposures?: {
9991
+ value: number;
9992
+ category: string;
9993
+ exposureType: "direct" | "indirect";
9994
+ direction: "both_directions";
9995
+ }[] | null | undefined;
9996
+ triggers?: {
9997
+ message: string;
9998
+ category: string;
9999
+ percentage: number;
10000
+ ruleTriggered?: {
10001
+ risk: string;
10002
+ exposureType: "direct" | "indirect";
10003
+ direction: "both_directions";
10004
+ minThreshold: number;
10005
+ maxThreshold: number;
10006
+ } | null | undefined;
10007
+ }[] | null | undefined;
10008
+ poolMetadata?: {
10009
+ tokens: string[];
10010
+ fees?: number | null | undefined;
10011
+ } | null | undefined;
10012
+ } | {
10013
+ error: {
10014
+ message: string;
10015
+ error: string;
10016
+ data?: string | null | undefined;
10017
+ };
10018
+ };
9385
10019
  }>, z.ZodObject<{
9386
10020
  type: z.ZodEnum<["integratedIpqualityscore", "ipQualityScore"]>;
9387
10021
  data: z.ZodUnion<[z.ZodObject<{
@@ -11755,6 +12389,55 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
11755
12389
  risk_level?: number | null | undefined;
11756
12390
  risk_level_verbose?: "Medium" | "High" | "No Risk Detected" | "Info" | "Caution" | "Critical" | null | undefined;
11757
12391
  };
12392
+ } | {
12393
+ type: "chainalysis";
12394
+ data: {
12395
+ status: "COMPLETE";
12396
+ address: string;
12397
+ risk: "Low" | "Medium" | "High" | "Severe";
12398
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
12399
+ addressIdentifications: {
12400
+ name: string;
12401
+ description: string;
12402
+ address: string;
12403
+ createdAt: number;
12404
+ category: string;
12405
+ url?: string | null | undefined;
12406
+ }[];
12407
+ cluster?: {
12408
+ name: string;
12409
+ category: string;
12410
+ } | null | undefined;
12411
+ riskReason?: string | null | undefined;
12412
+ exposures?: {
12413
+ value: number;
12414
+ category: string;
12415
+ exposureType: "direct" | "indirect";
12416
+ direction: "both_directions";
12417
+ }[] | null | undefined;
12418
+ triggers?: {
12419
+ message: string;
12420
+ category: string;
12421
+ percentage: number;
12422
+ ruleTriggered?: {
12423
+ risk: string;
12424
+ exposureType: "direct" | "indirect";
12425
+ direction: "both_directions";
12426
+ minThreshold: number;
12427
+ maxThreshold: number;
12428
+ } | null | undefined;
12429
+ }[] | null | undefined;
12430
+ poolMetadata?: {
12431
+ tokens: string[];
12432
+ fees?: number | null | undefined;
12433
+ } | null | undefined;
12434
+ } | {
12435
+ error: {
12436
+ message: string;
12437
+ error: string;
12438
+ data?: string | null | undefined;
12439
+ };
12440
+ };
11758
12441
  } | {
11759
12442
  type: "ipQualityScore" | "integratedIpqualityscore";
11760
12443
  data: {
@@ -12368,6 +13051,55 @@ export declare const VerificationFlowChecksWebhookPayload: z.ZodObject<{
12368
13051
  risk_level?: number | null | undefined;
12369
13052
  risk_level_verbose?: "Medium" | "High" | "No Risk Detected" | "Info" | "Caution" | "Critical" | null | undefined;
12370
13053
  };
13054
+ } | {
13055
+ type: "chainalysis";
13056
+ data: {
13057
+ status: "COMPLETE";
13058
+ address: string;
13059
+ risk: "Low" | "Medium" | "High" | "Severe";
13060
+ addressType: "PRIVATE_WALLET" | "LIQUIDITY_POOL" | "SERVICE_PROVIDER";
13061
+ addressIdentifications: {
13062
+ name: string;
13063
+ description: string;
13064
+ address: string;
13065
+ createdAt: number;
13066
+ category: string;
13067
+ url?: string | null | undefined;
13068
+ }[];
13069
+ cluster?: {
13070
+ name: string;
13071
+ category: string;
13072
+ } | null | undefined;
13073
+ riskReason?: string | null | undefined;
13074
+ exposures?: {
13075
+ value: number;
13076
+ category: string;
13077
+ exposureType: "direct" | "indirect";
13078
+ direction: "both_directions";
13079
+ }[] | null | undefined;
13080
+ triggers?: {
13081
+ message: string;
13082
+ category: string;
13083
+ percentage: number;
13084
+ ruleTriggered?: {
13085
+ risk: string;
13086
+ exposureType: "direct" | "indirect";
13087
+ direction: "both_directions";
13088
+ minThreshold: number;
13089
+ maxThreshold: number;
13090
+ } | null | undefined;
13091
+ }[] | null | undefined;
13092
+ poolMetadata?: {
13093
+ tokens: string[];
13094
+ fees?: number | null | undefined;
13095
+ } | null | undefined;
13096
+ } | {
13097
+ error: {
13098
+ message: string;
13099
+ error: string;
13100
+ data?: string | null | undefined;
13101
+ };
13102
+ };
12371
13103
  } | {
12372
13104
  type: "ipQualityScore" | "integratedIpqualityscore";
12373
13105
  data: {