@dalmore/api-contracts 0.0.0-dev.c751882 → 0.0.0-dev.cc93c51

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 (70) hide show
  1. package/common/constants.d.ts +33 -0
  2. package/common/constants.js +67 -0
  3. package/common/constants.js.map +1 -0
  4. package/common/helpers/index.d.ts +8 -0
  5. package/common/helpers/index.js +15 -0
  6. package/common/helpers/index.js.map +1 -1
  7. package/common/types/auth.types.d.ts +36 -0
  8. package/common/types/auth.types.js +3 -2
  9. package/common/types/auth.types.js.map +1 -1
  10. package/common/types/cap-table.types.d.ts +109 -0
  11. package/common/types/cap-table.types.js +14 -0
  12. package/common/types/cap-table.types.js.map +1 -1
  13. package/common/types/common.types.d.ts +2 -1
  14. package/common/types/common.types.js +1 -0
  15. package/common/types/common.types.js.map +1 -1
  16. package/common/types/csv.types.d.ts +3606 -0
  17. package/common/types/csv.types.js +290 -0
  18. package/common/types/csv.types.js.map +1 -0
  19. package/common/types/disbursements.types.d.ts +122 -7
  20. package/common/types/disbursements.types.js +29 -2
  21. package/common/types/disbursements.types.js.map +1 -1
  22. package/common/types/file.types.d.ts +3 -0
  23. package/common/types/file.types.js +3 -0
  24. package/common/types/file.types.js.map +1 -1
  25. package/common/types/index.d.ts +1 -0
  26. package/common/types/index.js +1 -0
  27. package/common/types/index.js.map +1 -1
  28. package/common/types/individuals.types.d.ts +207 -5
  29. package/common/types/individuals.types.js +9 -12
  30. package/common/types/individuals.types.js.map +1 -1
  31. package/common/types/investors-offering.types.d.ts +8 -0
  32. package/common/types/investors-offering.types.js +1 -0
  33. package/common/types/investors-offering.types.js.map +1 -1
  34. package/common/types/invite.types.d.ts +3 -0
  35. package/common/types/invite.types.js +1 -0
  36. package/common/types/invite.types.js.map +1 -1
  37. package/common/types/issuer-offering.types.d.ts +173 -2
  38. package/common/types/issuer-offering.types.js +11 -22
  39. package/common/types/issuer-offering.types.js.map +1 -1
  40. package/common/types/legal-entity.types.d.ts +39 -1
  41. package/common/types/legal-entity.types.js +8 -5
  42. package/common/types/legal-entity.types.js.map +1 -1
  43. package/common/types/offering-submission.types.js +1 -1
  44. package/common/types/offering.types.d.ts +14 -4
  45. package/common/types/offering.types.js +32 -3
  46. package/common/types/offering.types.js.map +1 -1
  47. package/common/types/review.types.js +1 -1
  48. package/common/types/review.types.js.map +1 -1
  49. package/common/types/trade-line-item.types.d.ts +24 -0
  50. package/common/types/trade-line-item.types.js +3 -0
  51. package/common/types/trade-line-item.types.js.map +1 -1
  52. package/common/types/trade.types.d.ts +1 -0
  53. package/common/types/trade.types.js +15 -1
  54. package/common/types/trade.types.js.map +1 -1
  55. package/common/types/user.types.d.ts +6 -112
  56. package/common/types/user.types.js +5 -26
  57. package/common/types/user.types.js.map +1 -1
  58. package/contracts/clients/csv/index.d.ts +1800 -0
  59. package/contracts/clients/csv/index.js +96 -0
  60. package/contracts/clients/csv/index.js.map +1 -0
  61. package/contracts/clients/index.d.ts +1892 -8
  62. package/contracts/clients/index.js +4 -0
  63. package/contracts/clients/index.js.map +1 -1
  64. package/contracts/clients/individuals/index.d.ts +5 -5
  65. package/contracts/clients/legal-entities/index.d.ts +1 -1
  66. package/contracts/clients/offerings/index.d.ts +2 -2
  67. package/contracts/clients/review/index.d.ts +85 -0
  68. package/contracts/clients/review/index.js +27 -0
  69. package/contracts/clients/review/index.js.map +1 -0
  70. package/package.json +1 -1
@@ -2758,6 +2758,1806 @@ export declare const clientsContract: {
2758
2758
  };
2759
2759
  };
2760
2760
  };
2761
+ csv: {
2762
+ uploadInvestorCsv: {
2763
+ method: "POST";
2764
+ metadata: {
2765
+ auth: boolean;
2766
+ };
2767
+ body: import("@ts-rest/core").ContractPlainType<{
2768
+ file: File;
2769
+ }>;
2770
+ summary: "Upload and process CSV file for investor account creation";
2771
+ contentType: "multipart/form-data";
2772
+ path: "/clients/api/v1/csv/investors";
2773
+ responses: {
2774
+ 200: import("zod").ZodObject<{
2775
+ totalRows: import("zod").ZodNumber;
2776
+ successfulRows: import("zod").ZodNumber;
2777
+ createdAccounts: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
2778
+ row: import("zod").ZodNumber;
2779
+ userId: import("zod").ZodString;
2780
+ investorAccountId: import("zod").ZodString;
2781
+ }, "strip", import("zod").ZodTypeAny, {
2782
+ userId: string;
2783
+ investorAccountId: string;
2784
+ row: number;
2785
+ }, {
2786
+ userId: string;
2787
+ investorAccountId: string;
2788
+ row: number;
2789
+ }>, import("zod").ZodObject<{
2790
+ row: import("zod").ZodNumber;
2791
+ userId: import("zod").ZodString;
2792
+ accountId: import("zod").ZodString;
2793
+ }, "strip", import("zod").ZodTypeAny, {
2794
+ accountId: string;
2795
+ userId: string;
2796
+ row: number;
2797
+ }, {
2798
+ accountId: string;
2799
+ userId: string;
2800
+ row: number;
2801
+ }>]>, "many">;
2802
+ }, "strip", import("zod").ZodTypeAny, {
2803
+ totalRows: number;
2804
+ successfulRows: number;
2805
+ createdAccounts: ({
2806
+ userId: string;
2807
+ investorAccountId: string;
2808
+ row: number;
2809
+ } | {
2810
+ accountId: string;
2811
+ userId: string;
2812
+ row: number;
2813
+ })[];
2814
+ }, {
2815
+ totalRows: number;
2816
+ successfulRows: number;
2817
+ createdAccounts: ({
2818
+ userId: string;
2819
+ investorAccountId: string;
2820
+ row: number;
2821
+ } | {
2822
+ accountId: string;
2823
+ userId: string;
2824
+ row: number;
2825
+ })[];
2826
+ }>;
2827
+ 400: import("zod").ZodObject<{
2828
+ status: import("zod").ZodNumber;
2829
+ message: import("zod").ZodString;
2830
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
2831
+ }, "strip", import("zod").ZodTypeAny, {
2832
+ message: string;
2833
+ status: number;
2834
+ errors: string[];
2835
+ }, {
2836
+ message: string;
2837
+ status: number;
2838
+ errors: string[];
2839
+ }>;
2840
+ 401: import("zod").ZodObject<{
2841
+ status: import("zod").ZodNumber;
2842
+ message: import("zod").ZodString;
2843
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
2844
+ }, "strip", import("zod").ZodTypeAny, {
2845
+ message: string;
2846
+ status: number;
2847
+ errors: string[];
2848
+ }, {
2849
+ message: string;
2850
+ status: number;
2851
+ errors: string[];
2852
+ }>;
2853
+ 422: import("zod").ZodObject<{
2854
+ status: import("zod").ZodNumber;
2855
+ message: import("zod").ZodString;
2856
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
2857
+ }, "strip", import("zod").ZodTypeAny, {
2858
+ message: string;
2859
+ status: number;
2860
+ errors: string[];
2861
+ }, {
2862
+ message: string;
2863
+ status: number;
2864
+ errors: string[];
2865
+ }>;
2866
+ 500: import("zod").ZodObject<{
2867
+ status: import("zod").ZodNumber;
2868
+ message: import("zod").ZodString;
2869
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
2870
+ }, "strip", import("zod").ZodTypeAny, {
2871
+ message: string;
2872
+ status: number;
2873
+ errors: string[];
2874
+ }, {
2875
+ message: string;
2876
+ status: number;
2877
+ errors: string[];
2878
+ }>;
2879
+ };
2880
+ };
2881
+ uploadAicCsv: {
2882
+ method: "POST";
2883
+ metadata: {
2884
+ auth: boolean;
2885
+ };
2886
+ body: import("@ts-rest/core").ContractPlainType<{
2887
+ file: File;
2888
+ }>;
2889
+ query: import("zod").ZodObject<{
2890
+ accredited: import("zod").ZodBoolean;
2891
+ aicAccreditationType: import("zod").ZodNativeEnum<typeof import("../..").AicAccreditationType>;
2892
+ investorAccountId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
2893
+ }, "strip", import("zod").ZodTypeAny, {
2894
+ investorAccountId: string;
2895
+ aicAccreditationType: import("../..").AicAccreditationType;
2896
+ accredited: boolean;
2897
+ }, {
2898
+ investorAccountId: string;
2899
+ aicAccreditationType: import("../..").AicAccreditationType;
2900
+ accredited: boolean;
2901
+ }>;
2902
+ summary: "Upload and process CSV file for AIC questionnaire data";
2903
+ contentType: "multipart/form-data";
2904
+ path: "/clients/api/v1/csv/aic";
2905
+ responses: {
2906
+ 200: import("zod").ZodObject<{
2907
+ id: import("zod").ZodString;
2908
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
2909
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2910
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2911
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
2912
+ } & {
2913
+ tid: import("zod").ZodNullable<import("zod").ZodString>;
2914
+ accountId: import("zod").ZodString;
2915
+ account: import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodObject<{
2916
+ id: import("zod").ZodString;
2917
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
2918
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2919
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2920
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
2921
+ } & {
2922
+ name: import("zod").ZodString;
2923
+ status: import("zod").ZodNativeEnum<typeof import("../..").AccountStatus>;
2924
+ managedBy: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
2925
+ platform: import("zod").ZodNativeEnum<typeof import("../..").Platform>;
2926
+ onboardingReviewerId: import("zod").ZodNullable<import("zod").ZodString>;
2927
+ onboardingReviewAt: import("zod").ZodNullable<import("zod").ZodDate>;
2928
+ allowPendingComplianceReview: import("zod").ZodBoolean;
2929
+ }, "strip", import("zod").ZodTypeAny, {
2930
+ status: import("../..").AccountStatus;
2931
+ id: string;
2932
+ createdAt: string | Date;
2933
+ updatedAt: string | Date;
2934
+ deletedAt: string | Date | null;
2935
+ name: string;
2936
+ managedBy: import("../..").ManagedByType | null;
2937
+ platform: import("../..").Platform;
2938
+ onboardingReviewerId: string | null;
2939
+ onboardingReviewAt: Date | null;
2940
+ allowPendingComplianceReview: boolean;
2941
+ __entity?: string | undefined;
2942
+ }, {
2943
+ status: import("../..").AccountStatus;
2944
+ id: string;
2945
+ createdAt: string | Date;
2946
+ updatedAt: string | Date;
2947
+ deletedAt: string | Date | null;
2948
+ name: string;
2949
+ managedBy: import("../..").ManagedByType | null;
2950
+ platform: import("../..").Platform;
2951
+ onboardingReviewerId: string | null;
2952
+ onboardingReviewAt: Date | null;
2953
+ allowPendingComplianceReview: boolean;
2954
+ __entity?: string | undefined;
2955
+ }>>>;
2956
+ investorAccountId: import("zod").ZodString;
2957
+ investorAccount: import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodObject<{
2958
+ id: import("zod").ZodString;
2959
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
2960
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2961
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2962
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
2963
+ } & {
2964
+ tid: import("zod").ZodNullable<import("zod").ZodString>;
2965
+ investorAccountType: import("zod").ZodNativeEnum<typeof import("../..").InvestorAccountType>;
2966
+ user: import("zod").ZodLazy<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodObject<{
2967
+ id: import("zod").ZodString;
2968
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
2969
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2970
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2971
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
2972
+ } & {
2973
+ userLoginId: import("zod").ZodNullable<import("zod").ZodString>;
2974
+ roleId: import("zod").ZodNullable<import("zod").ZodString>;
2975
+ inviteId: import("zod").ZodNullable<import("zod").ZodString>;
2976
+ accountId: import("zod").ZodNullable<import("zod").ZodString>;
2977
+ onboarding: import("zod").ZodNullable<import("zod").ZodString>;
2978
+ account: import("zod").ZodOptional<import("zod").ZodObject<{
2979
+ id: import("zod").ZodString;
2980
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
2981
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2982
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
2983
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
2984
+ } & {
2985
+ name: import("zod").ZodString;
2986
+ status: import("zod").ZodNativeEnum<typeof import("../..").AccountStatus>;
2987
+ managedBy: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
2988
+ platform: import("zod").ZodNativeEnum<typeof import("../..").Platform>;
2989
+ onboardingReviewerId: import("zod").ZodNullable<import("zod").ZodString>;
2990
+ onboardingReviewAt: import("zod").ZodNullable<import("zod").ZodDate>;
2991
+ allowPendingComplianceReview: import("zod").ZodBoolean;
2992
+ }, "strip", import("zod").ZodTypeAny, {
2993
+ status: import("../..").AccountStatus;
2994
+ id: string;
2995
+ createdAt: string | Date;
2996
+ updatedAt: string | Date;
2997
+ deletedAt: string | Date | null;
2998
+ name: string;
2999
+ managedBy: import("../..").ManagedByType | null;
3000
+ platform: import("../..").Platform;
3001
+ onboardingReviewerId: string | null;
3002
+ onboardingReviewAt: Date | null;
3003
+ allowPendingComplianceReview: boolean;
3004
+ __entity?: string | undefined;
3005
+ }, {
3006
+ status: import("../..").AccountStatus;
3007
+ id: string;
3008
+ createdAt: string | Date;
3009
+ updatedAt: string | Date;
3010
+ deletedAt: string | Date | null;
3011
+ name: string;
3012
+ managedBy: import("../..").ManagedByType | null;
3013
+ platform: import("../..").Platform;
3014
+ onboardingReviewerId: string | null;
3015
+ onboardingReviewAt: Date | null;
3016
+ allowPendingComplianceReview: boolean;
3017
+ __entity?: string | undefined;
3018
+ }>>;
3019
+ active: import("zod").ZodBoolean;
3020
+ locked: import("zod").ZodBoolean;
3021
+ userLogin: import("zod").ZodObject<{
3022
+ id: import("zod").ZodString;
3023
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
3024
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3025
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3026
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
3027
+ } & {
3028
+ firstName: import("zod").ZodString;
3029
+ lastName: import("zod").ZodString;
3030
+ email: import("zod").ZodString;
3031
+ provider: import("zod").ZodString;
3032
+ lastLoginAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
3033
+ loginCount: import("zod").ZodNumber;
3034
+ }, "strip", import("zod").ZodTypeAny, {
3035
+ id: string;
3036
+ createdAt: string | Date;
3037
+ updatedAt: string | Date;
3038
+ deletedAt: string | Date | null;
3039
+ firstName: string;
3040
+ lastName: string;
3041
+ email: string;
3042
+ provider: string;
3043
+ lastLoginAt: string | Date | null;
3044
+ loginCount: number;
3045
+ __entity?: string | undefined;
3046
+ }, {
3047
+ id: string;
3048
+ createdAt: string | Date;
3049
+ updatedAt: string | Date;
3050
+ deletedAt: string | Date | null;
3051
+ firstName: string;
3052
+ lastName: string;
3053
+ email: string;
3054
+ provider: string;
3055
+ lastLoginAt: string | Date | null;
3056
+ loginCount: number;
3057
+ __entity?: string | undefined;
3058
+ }>;
3059
+ }, "strip", import("zod").ZodTypeAny, {
3060
+ id: string;
3061
+ createdAt: string | Date;
3062
+ updatedAt: string | Date;
3063
+ deletedAt: string | Date | null;
3064
+ active: boolean;
3065
+ inviteId: string | null;
3066
+ accountId: string | null;
3067
+ roleId: string | null;
3068
+ userLoginId: string | null;
3069
+ locked: boolean;
3070
+ onboarding: string | null;
3071
+ userLogin: {
3072
+ id: string;
3073
+ createdAt: string | Date;
3074
+ updatedAt: string | Date;
3075
+ deletedAt: string | Date | null;
3076
+ firstName: string;
3077
+ lastName: string;
3078
+ email: string;
3079
+ provider: string;
3080
+ lastLoginAt: string | Date | null;
3081
+ loginCount: number;
3082
+ __entity?: string | undefined;
3083
+ };
3084
+ __entity?: string | undefined;
3085
+ account?: {
3086
+ status: import("../..").AccountStatus;
3087
+ id: string;
3088
+ createdAt: string | Date;
3089
+ updatedAt: string | Date;
3090
+ deletedAt: string | Date | null;
3091
+ name: string;
3092
+ managedBy: import("../..").ManagedByType | null;
3093
+ platform: import("../..").Platform;
3094
+ onboardingReviewerId: string | null;
3095
+ onboardingReviewAt: Date | null;
3096
+ allowPendingComplianceReview: boolean;
3097
+ __entity?: string | undefined;
3098
+ } | undefined;
3099
+ }, {
3100
+ id: string;
3101
+ createdAt: string | Date;
3102
+ updatedAt: string | Date;
3103
+ deletedAt: string | Date | null;
3104
+ active: boolean;
3105
+ inviteId: string | null;
3106
+ accountId: string | null;
3107
+ roleId: string | null;
3108
+ userLoginId: string | null;
3109
+ locked: boolean;
3110
+ onboarding: string | null;
3111
+ userLogin: {
3112
+ id: string;
3113
+ createdAt: string | Date;
3114
+ updatedAt: string | Date;
3115
+ deletedAt: string | Date | null;
3116
+ firstName: string;
3117
+ lastName: string;
3118
+ email: string;
3119
+ provider: string;
3120
+ lastLoginAt: string | Date | null;
3121
+ loginCount: number;
3122
+ __entity?: string | undefined;
3123
+ };
3124
+ __entity?: string | undefined;
3125
+ account?: {
3126
+ status: import("../..").AccountStatus;
3127
+ id: string;
3128
+ createdAt: string | Date;
3129
+ updatedAt: string | Date;
3130
+ deletedAt: string | Date | null;
3131
+ name: string;
3132
+ managedBy: import("../..").ManagedByType | null;
3133
+ platform: import("../..").Platform;
3134
+ onboardingReviewerId: string | null;
3135
+ onboardingReviewAt: Date | null;
3136
+ allowPendingComplianceReview: boolean;
3137
+ __entity?: string | undefined;
3138
+ } | undefined;
3139
+ }>>>>;
3140
+ userId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
3141
+ email: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
3142
+ name: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
3143
+ regAQualified: import("zod").ZodBoolean;
3144
+ regCfQualified: import("zod").ZodBoolean;
3145
+ regDQualified: import("zod").ZodBoolean;
3146
+ accountId: import("zod").ZodString;
3147
+ account: import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodObject<{
3148
+ id: import("zod").ZodString;
3149
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
3150
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3151
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3152
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
3153
+ } & {
3154
+ name: import("zod").ZodString;
3155
+ status: import("zod").ZodNativeEnum<typeof import("../..").AccountStatus>;
3156
+ managedBy: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
3157
+ platform: import("zod").ZodNativeEnum<typeof import("../..").Platform>;
3158
+ onboardingReviewerId: import("zod").ZodNullable<import("zod").ZodString>;
3159
+ onboardingReviewAt: import("zod").ZodNullable<import("zod").ZodDate>;
3160
+ allowPendingComplianceReview: import("zod").ZodBoolean;
3161
+ }, "strip", import("zod").ZodTypeAny, {
3162
+ status: import("../..").AccountStatus;
3163
+ id: string;
3164
+ createdAt: string | Date;
3165
+ updatedAt: string | Date;
3166
+ deletedAt: string | Date | null;
3167
+ name: string;
3168
+ managedBy: import("../..").ManagedByType | null;
3169
+ platform: import("../..").Platform;
3170
+ onboardingReviewerId: string | null;
3171
+ onboardingReviewAt: Date | null;
3172
+ allowPendingComplianceReview: boolean;
3173
+ __entity?: string | undefined;
3174
+ }, {
3175
+ status: import("../..").AccountStatus;
3176
+ id: string;
3177
+ createdAt: string | Date;
3178
+ updatedAt: string | Date;
3179
+ deletedAt: string | Date | null;
3180
+ name: string;
3181
+ managedBy: import("../..").ManagedByType | null;
3182
+ platform: import("../..").Platform;
3183
+ onboardingReviewerId: string | null;
3184
+ onboardingReviewAt: Date | null;
3185
+ allowPendingComplianceReview: boolean;
3186
+ __entity?: string | undefined;
3187
+ }>>>;
3188
+ trades: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodLazy<any>, "many">>;
3189
+ individuals: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodLazy<any>, "many">>;
3190
+ legalEntities: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodLazy<import("zod").ZodObject<{
3191
+ id: import("zod").ZodString;
3192
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
3193
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3194
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3195
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
3196
+ } & {
3197
+ thirdPartyId: import("zod").ZodNullable<import("zod").ZodString>;
3198
+ accountId: import("zod").ZodString;
3199
+ investorAccountId: import("zod").ZodString;
3200
+ kybStatus: import("zod").ZodLazy<import("zod").ZodNativeEnum<typeof import("../..").KYBStatus>>;
3201
+ sanctionsStatus: import("zod").ZodLazy<import("zod").ZodNativeEnum<typeof import("../..").SanctionsStatus>>;
3202
+ kybs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
3203
+ id: import("zod").ZodString;
3204
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
3205
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3206
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
3207
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
3208
+ } & {
3209
+ thirdPartyId: import("zod").ZodString;
3210
+ platform: import("zod").ZodString;
3211
+ legalEntityId: import("zod").ZodString;
3212
+ documentType: import("zod").ZodString;
3213
+ documentImage: import("zod").ZodString;
3214
+ kybStatus: import("zod").ZodNativeEnum<typeof import("../..").KYBStatus>;
3215
+ reason: import("zod").ZodNullable<import("zod").ZodString>;
3216
+ response: import("zod").ZodNullable<import("zod").ZodString>;
3217
+ }, "strip", import("zod").ZodTypeAny, {
3218
+ id: string;
3219
+ createdAt: string | Date;
3220
+ updatedAt: string | Date;
3221
+ deletedAt: string | Date | null;
3222
+ platform: string;
3223
+ documentType: string;
3224
+ documentImage: string;
3225
+ reason: string | null;
3226
+ response: string | null;
3227
+ thirdPartyId: string;
3228
+ legalEntityId: string;
3229
+ kybStatus: import("../..").KYBStatus;
3230
+ __entity?: string | undefined;
3231
+ }, {
3232
+ id: string;
3233
+ createdAt: string | Date;
3234
+ updatedAt: string | Date;
3235
+ deletedAt: string | Date | null;
3236
+ platform: string;
3237
+ documentType: string;
3238
+ documentImage: string;
3239
+ reason: string | null;
3240
+ response: string | null;
3241
+ thirdPartyId: string;
3242
+ legalEntityId: string;
3243
+ kybStatus: import("../..").KYBStatus;
3244
+ __entity?: string | undefined;
3245
+ }>, "many">>;
3246
+ name: import("zod").ZodString;
3247
+ ein: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
3248
+ companyType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
3249
+ streetAddress: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
3250
+ city: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
3251
+ state: import("zod").ZodNullable<import("zod").ZodString>;
3252
+ zip: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
3253
+ country: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
3254
+ phone: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
3255
+ setupStatus: import("zod").ZodNativeEnum<typeof import("../..").SetupStatusType>;
3256
+ }, "strip", import("zod").ZodTypeAny, {
3257
+ id: string;
3258
+ createdAt: string | Date;
3259
+ updatedAt: string | Date;
3260
+ deletedAt: string | Date | null;
3261
+ accountId: string;
3262
+ name: string;
3263
+ state: string | null;
3264
+ thirdPartyId: string | null;
3265
+ kybStatus: import("../..").KYBStatus;
3266
+ investorAccountId: string;
3267
+ sanctionsStatus: import("../..").SanctionsStatus;
3268
+ setupStatus: import("../..").SetupStatusType;
3269
+ __entity?: string | undefined;
3270
+ country?: string | null | undefined;
3271
+ kybs?: {
3272
+ id: string;
3273
+ createdAt: string | Date;
3274
+ updatedAt: string | Date;
3275
+ deletedAt: string | Date | null;
3276
+ platform: string;
3277
+ documentType: string;
3278
+ documentImage: string;
3279
+ reason: string | null;
3280
+ response: string | null;
3281
+ thirdPartyId: string;
3282
+ legalEntityId: string;
3283
+ kybStatus: import("../..").KYBStatus;
3284
+ __entity?: string | undefined;
3285
+ }[] | undefined;
3286
+ phone?: string | null | undefined;
3287
+ city?: string | null | undefined;
3288
+ zip?: string | null | undefined;
3289
+ ein?: string | null | undefined;
3290
+ companyType?: string | null | undefined;
3291
+ streetAddress?: string | null | undefined;
3292
+ }, {
3293
+ id: string;
3294
+ createdAt: string | Date;
3295
+ updatedAt: string | Date;
3296
+ deletedAt: string | Date | null;
3297
+ accountId: string;
3298
+ name: string;
3299
+ state: string | null;
3300
+ thirdPartyId: string | null;
3301
+ kybStatus: import("../..").KYBStatus;
3302
+ investorAccountId: string;
3303
+ sanctionsStatus: import("../..").SanctionsStatus;
3304
+ setupStatus: import("../..").SetupStatusType;
3305
+ __entity?: string | undefined;
3306
+ country?: string | null | undefined;
3307
+ kybs?: {
3308
+ id: string;
3309
+ createdAt: string | Date;
3310
+ updatedAt: string | Date;
3311
+ deletedAt: string | Date | null;
3312
+ platform: string;
3313
+ documentType: string;
3314
+ documentImage: string;
3315
+ reason: string | null;
3316
+ response: string | null;
3317
+ thirdPartyId: string;
3318
+ legalEntityId: string;
3319
+ kybStatus: import("../..").KYBStatus;
3320
+ __entity?: string | undefined;
3321
+ }[] | undefined;
3322
+ phone?: string | null | undefined;
3323
+ city?: string | null | undefined;
3324
+ zip?: string | null | undefined;
3325
+ ein?: string | null | undefined;
3326
+ companyType?: string | null | undefined;
3327
+ streetAddress?: string | null | undefined;
3328
+ }>>, "many">>;
3329
+ setupStatus: import("zod").ZodNativeEnum<typeof import("../..").SetupStatusType>;
3330
+ systemReviewLog: import("zod").ZodNullable<import("zod").ZodString>;
3331
+ totalAmount: import("zod").ZodOptional<import("zod").ZodNumber>;
3332
+ statusCheck: import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodObject<{
3333
+ entity: import("zod").ZodOptional<import("zod").ZodObject<{
3334
+ information: import("zod").ZodDefault<import("zod").ZodBoolean>;
3335
+ address: import("zod").ZodDefault<import("zod").ZodBoolean>;
3336
+ }, "strip", import("zod").ZodTypeAny, {
3337
+ address: boolean;
3338
+ information: boolean;
3339
+ }, {
3340
+ address?: boolean | undefined;
3341
+ information?: boolean | undefined;
3342
+ }>>;
3343
+ primary: import("zod").ZodOptional<import("zod").ZodObject<{
3344
+ account: import("zod").ZodDefault<import("zod").ZodBoolean>;
3345
+ personal: import("zod").ZodDefault<import("zod").ZodBoolean>;
3346
+ residential: import("zod").ZodDefault<import("zod").ZodBoolean>;
3347
+ identity: import("zod").ZodDefault<import("zod").ZodBoolean>;
3348
+ financial: import("zod").ZodDefault<import("zod").ZodBoolean>;
3349
+ investorQuestionnaire: import("zod").ZodDefault<import("zod").ZodBoolean>;
3350
+ accreditation: import("zod").ZodDefault<import("zod").ZodBoolean>;
3351
+ trustedContact: import("zod").ZodDefault<import("zod").ZodBoolean>;
3352
+ retirement: import("zod").ZodOptional<import("zod").ZodBoolean>;
3353
+ }, "strip", import("zod").ZodTypeAny, {
3354
+ account: boolean;
3355
+ personal: boolean;
3356
+ residential: boolean;
3357
+ identity: boolean;
3358
+ financial: boolean;
3359
+ investorQuestionnaire: boolean;
3360
+ accreditation: boolean;
3361
+ trustedContact: boolean;
3362
+ retirement?: boolean | undefined;
3363
+ }, {
3364
+ account?: boolean | undefined;
3365
+ personal?: boolean | undefined;
3366
+ residential?: boolean | undefined;
3367
+ identity?: boolean | undefined;
3368
+ financial?: boolean | undefined;
3369
+ investorQuestionnaire?: boolean | undefined;
3370
+ accreditation?: boolean | undefined;
3371
+ trustedContact?: boolean | undefined;
3372
+ retirement?: boolean | undefined;
3373
+ }>>;
3374
+ secondary: import("zod").ZodOptional<import("zod").ZodObject<{
3375
+ personal: import("zod").ZodDefault<import("zod").ZodBoolean>;
3376
+ residential: import("zod").ZodDefault<import("zod").ZodBoolean>;
3377
+ identity: import("zod").ZodDefault<import("zod").ZodBoolean>;
3378
+ financial: import("zod").ZodDefault<import("zod").ZodBoolean>;
3379
+ }, "strip", import("zod").ZodTypeAny, {
3380
+ personal: boolean;
3381
+ residential: boolean;
3382
+ identity: boolean;
3383
+ financial: boolean;
3384
+ }, {
3385
+ personal?: boolean | undefined;
3386
+ residential?: boolean | undefined;
3387
+ identity?: boolean | undefined;
3388
+ financial?: boolean | undefined;
3389
+ }>>;
3390
+ }, "strip", import("zod").ZodTypeAny, {
3391
+ entity?: {
3392
+ address: boolean;
3393
+ information: boolean;
3394
+ } | undefined;
3395
+ primary?: {
3396
+ account: boolean;
3397
+ personal: boolean;
3398
+ residential: boolean;
3399
+ identity: boolean;
3400
+ financial: boolean;
3401
+ investorQuestionnaire: boolean;
3402
+ accreditation: boolean;
3403
+ trustedContact: boolean;
3404
+ retirement?: boolean | undefined;
3405
+ } | undefined;
3406
+ secondary?: {
3407
+ personal: boolean;
3408
+ residential: boolean;
3409
+ identity: boolean;
3410
+ financial: boolean;
3411
+ } | undefined;
3412
+ }, {
3413
+ entity?: {
3414
+ address?: boolean | undefined;
3415
+ information?: boolean | undefined;
3416
+ } | undefined;
3417
+ primary?: {
3418
+ account?: boolean | undefined;
3419
+ personal?: boolean | undefined;
3420
+ residential?: boolean | undefined;
3421
+ identity?: boolean | undefined;
3422
+ financial?: boolean | undefined;
3423
+ investorQuestionnaire?: boolean | undefined;
3424
+ accreditation?: boolean | undefined;
3425
+ trustedContact?: boolean | undefined;
3426
+ retirement?: boolean | undefined;
3427
+ } | undefined;
3428
+ secondary?: {
3429
+ personal?: boolean | undefined;
3430
+ residential?: boolean | undefined;
3431
+ identity?: boolean | undefined;
3432
+ financial?: boolean | undefined;
3433
+ } | undefined;
3434
+ }>>>;
3435
+ }, "strip", import("zod").ZodTypeAny, {
3436
+ id: string;
3437
+ createdAt: string | Date;
3438
+ updatedAt: string | Date;
3439
+ deletedAt: string | Date | null;
3440
+ accountId: string;
3441
+ tid: string | null;
3442
+ investorAccountType: import("../..").InvestorAccountType;
3443
+ regAQualified: boolean;
3444
+ regCfQualified: boolean;
3445
+ regDQualified: boolean;
3446
+ systemReviewLog: string | null;
3447
+ setupStatus: import("../..").SetupStatusType;
3448
+ __entity?: string | undefined;
3449
+ email?: string | null | undefined;
3450
+ name?: string | null | undefined;
3451
+ account?: {
3452
+ status: import("../..").AccountStatus;
3453
+ id: string;
3454
+ createdAt: string | Date;
3455
+ updatedAt: string | Date;
3456
+ deletedAt: string | Date | null;
3457
+ name: string;
3458
+ managedBy: import("../..").ManagedByType | null;
3459
+ platform: import("../..").Platform;
3460
+ onboardingReviewerId: string | null;
3461
+ onboardingReviewAt: Date | null;
3462
+ allowPendingComplianceReview: boolean;
3463
+ __entity?: string | undefined;
3464
+ } | undefined;
3465
+ individuals?: any[] | undefined;
3466
+ trades?: any[] | undefined;
3467
+ user?: {
3468
+ id: string;
3469
+ createdAt: string | Date;
3470
+ updatedAt: string | Date;
3471
+ deletedAt: string | Date | null;
3472
+ active: boolean;
3473
+ inviteId: string | null;
3474
+ accountId: string | null;
3475
+ roleId: string | null;
3476
+ userLoginId: string | null;
3477
+ locked: boolean;
3478
+ onboarding: string | null;
3479
+ userLogin: {
3480
+ id: string;
3481
+ createdAt: string | Date;
3482
+ updatedAt: string | Date;
3483
+ deletedAt: string | Date | null;
3484
+ firstName: string;
3485
+ lastName: string;
3486
+ email: string;
3487
+ provider: string;
3488
+ lastLoginAt: string | Date | null;
3489
+ loginCount: number;
3490
+ __entity?: string | undefined;
3491
+ };
3492
+ __entity?: string | undefined;
3493
+ account?: {
3494
+ status: import("../..").AccountStatus;
3495
+ id: string;
3496
+ createdAt: string | Date;
3497
+ updatedAt: string | Date;
3498
+ deletedAt: string | Date | null;
3499
+ name: string;
3500
+ managedBy: import("../..").ManagedByType | null;
3501
+ platform: import("../..").Platform;
3502
+ onboardingReviewerId: string | null;
3503
+ onboardingReviewAt: Date | null;
3504
+ allowPendingComplianceReview: boolean;
3505
+ __entity?: string | undefined;
3506
+ } | undefined;
3507
+ } | null | undefined;
3508
+ legalEntities?: {
3509
+ id: string;
3510
+ createdAt: string | Date;
3511
+ updatedAt: string | Date;
3512
+ deletedAt: string | Date | null;
3513
+ accountId: string;
3514
+ name: string;
3515
+ state: string | null;
3516
+ thirdPartyId: string | null;
3517
+ kybStatus: import("../..").KYBStatus;
3518
+ investorAccountId: string;
3519
+ sanctionsStatus: import("../..").SanctionsStatus;
3520
+ setupStatus: import("../..").SetupStatusType;
3521
+ __entity?: string | undefined;
3522
+ country?: string | null | undefined;
3523
+ kybs?: {
3524
+ id: string;
3525
+ createdAt: string | Date;
3526
+ updatedAt: string | Date;
3527
+ deletedAt: string | Date | null;
3528
+ platform: string;
3529
+ documentType: string;
3530
+ documentImage: string;
3531
+ reason: string | null;
3532
+ response: string | null;
3533
+ thirdPartyId: string;
3534
+ legalEntityId: string;
3535
+ kybStatus: import("../..").KYBStatus;
3536
+ __entity?: string | undefined;
3537
+ }[] | undefined;
3538
+ phone?: string | null | undefined;
3539
+ city?: string | null | undefined;
3540
+ zip?: string | null | undefined;
3541
+ ein?: string | null | undefined;
3542
+ companyType?: string | null | undefined;
3543
+ streetAddress?: string | null | undefined;
3544
+ }[] | undefined;
3545
+ userId?: string | null | undefined;
3546
+ totalAmount?: number | undefined;
3547
+ statusCheck?: {
3548
+ entity?: {
3549
+ address: boolean;
3550
+ information: boolean;
3551
+ } | undefined;
3552
+ primary?: {
3553
+ account: boolean;
3554
+ personal: boolean;
3555
+ residential: boolean;
3556
+ identity: boolean;
3557
+ financial: boolean;
3558
+ investorQuestionnaire: boolean;
3559
+ accreditation: boolean;
3560
+ trustedContact: boolean;
3561
+ retirement?: boolean | undefined;
3562
+ } | undefined;
3563
+ secondary?: {
3564
+ personal: boolean;
3565
+ residential: boolean;
3566
+ identity: boolean;
3567
+ financial: boolean;
3568
+ } | undefined;
3569
+ } | undefined;
3570
+ }, {
3571
+ id: string;
3572
+ createdAt: string | Date;
3573
+ updatedAt: string | Date;
3574
+ deletedAt: string | Date | null;
3575
+ accountId: string;
3576
+ tid: string | null;
3577
+ investorAccountType: import("../..").InvestorAccountType;
3578
+ regAQualified: boolean;
3579
+ regCfQualified: boolean;
3580
+ regDQualified: boolean;
3581
+ systemReviewLog: string | null;
3582
+ setupStatus: import("../..").SetupStatusType;
3583
+ __entity?: string | undefined;
3584
+ email?: string | null | undefined;
3585
+ name?: string | null | undefined;
3586
+ account?: {
3587
+ status: import("../..").AccountStatus;
3588
+ id: string;
3589
+ createdAt: string | Date;
3590
+ updatedAt: string | Date;
3591
+ deletedAt: string | Date | null;
3592
+ name: string;
3593
+ managedBy: import("../..").ManagedByType | null;
3594
+ platform: import("../..").Platform;
3595
+ onboardingReviewerId: string | null;
3596
+ onboardingReviewAt: Date | null;
3597
+ allowPendingComplianceReview: boolean;
3598
+ __entity?: string | undefined;
3599
+ } | undefined;
3600
+ individuals?: any[] | undefined;
3601
+ trades?: any[] | undefined;
3602
+ user?: {
3603
+ id: string;
3604
+ createdAt: string | Date;
3605
+ updatedAt: string | Date;
3606
+ deletedAt: string | Date | null;
3607
+ active: boolean;
3608
+ inviteId: string | null;
3609
+ accountId: string | null;
3610
+ roleId: string | null;
3611
+ userLoginId: string | null;
3612
+ locked: boolean;
3613
+ onboarding: string | null;
3614
+ userLogin: {
3615
+ id: string;
3616
+ createdAt: string | Date;
3617
+ updatedAt: string | Date;
3618
+ deletedAt: string | Date | null;
3619
+ firstName: string;
3620
+ lastName: string;
3621
+ email: string;
3622
+ provider: string;
3623
+ lastLoginAt: string | Date | null;
3624
+ loginCount: number;
3625
+ __entity?: string | undefined;
3626
+ };
3627
+ __entity?: string | undefined;
3628
+ account?: {
3629
+ status: import("../..").AccountStatus;
3630
+ id: string;
3631
+ createdAt: string | Date;
3632
+ updatedAt: string | Date;
3633
+ deletedAt: string | Date | null;
3634
+ name: string;
3635
+ managedBy: import("../..").ManagedByType | null;
3636
+ platform: import("../..").Platform;
3637
+ onboardingReviewerId: string | null;
3638
+ onboardingReviewAt: Date | null;
3639
+ allowPendingComplianceReview: boolean;
3640
+ __entity?: string | undefined;
3641
+ } | undefined;
3642
+ } | null | undefined;
3643
+ legalEntities?: {
3644
+ id: string;
3645
+ createdAt: string | Date;
3646
+ updatedAt: string | Date;
3647
+ deletedAt: string | Date | null;
3648
+ accountId: string;
3649
+ name: string;
3650
+ state: string | null;
3651
+ thirdPartyId: string | null;
3652
+ kybStatus: import("../..").KYBStatus;
3653
+ investorAccountId: string;
3654
+ sanctionsStatus: import("../..").SanctionsStatus;
3655
+ setupStatus: import("../..").SetupStatusType;
3656
+ __entity?: string | undefined;
3657
+ country?: string | null | undefined;
3658
+ kybs?: {
3659
+ id: string;
3660
+ createdAt: string | Date;
3661
+ updatedAt: string | Date;
3662
+ deletedAt: string | Date | null;
3663
+ platform: string;
3664
+ documentType: string;
3665
+ documentImage: string;
3666
+ reason: string | null;
3667
+ response: string | null;
3668
+ thirdPartyId: string;
3669
+ legalEntityId: string;
3670
+ kybStatus: import("../..").KYBStatus;
3671
+ __entity?: string | undefined;
3672
+ }[] | undefined;
3673
+ phone?: string | null | undefined;
3674
+ city?: string | null | undefined;
3675
+ zip?: string | null | undefined;
3676
+ ein?: string | null | undefined;
3677
+ companyType?: string | null | undefined;
3678
+ streetAddress?: string | null | undefined;
3679
+ }[] | undefined;
3680
+ userId?: string | null | undefined;
3681
+ totalAmount?: number | undefined;
3682
+ statusCheck?: {
3683
+ entity?: {
3684
+ address?: boolean | undefined;
3685
+ information?: boolean | undefined;
3686
+ } | undefined;
3687
+ primary?: {
3688
+ account?: boolean | undefined;
3689
+ personal?: boolean | undefined;
3690
+ residential?: boolean | undefined;
3691
+ identity?: boolean | undefined;
3692
+ financial?: boolean | undefined;
3693
+ investorQuestionnaire?: boolean | undefined;
3694
+ accreditation?: boolean | undefined;
3695
+ trustedContact?: boolean | undefined;
3696
+ retirement?: boolean | undefined;
3697
+ } | undefined;
3698
+ secondary?: {
3699
+ personal?: boolean | undefined;
3700
+ residential?: boolean | undefined;
3701
+ identity?: boolean | undefined;
3702
+ financial?: boolean | undefined;
3703
+ } | undefined;
3704
+ } | undefined;
3705
+ }>>>;
3706
+ role: import("zod").ZodNativeEnum<typeof import("../..").IndividualRole>;
3707
+ firstName: import("zod").ZodString;
3708
+ lastName: import("zod").ZodNullable<import("zod").ZodString>;
3709
+ dob: import("zod").ZodNullable<import("zod").ZodDate>;
3710
+ isUsCitizenOrGreenCardHolder: import("zod").ZodBoolean;
3711
+ ssn: import("zod").ZodNullable<import("zod").ZodString>;
3712
+ lastFour: import("zod").ZodNullable<import("zod").ZodString>;
3713
+ address: import("zod").ZodNullable<import("zod").ZodString>;
3714
+ address2: import("zod").ZodNullable<import("zod").ZodString>;
3715
+ email: import("zod").ZodNullable<import("zod").ZodString>;
3716
+ phone: import("zod").ZodNullable<import("zod").ZodString>;
3717
+ city: import("zod").ZodNullable<import("zod").ZodString>;
3718
+ country: import("zod").ZodNullable<import("zod").ZodString>;
3719
+ citizenship: import("zod").ZodNullable<import("zod").ZodString>;
3720
+ state: import("zod").ZodNullable<import("zod").ZodString>;
3721
+ zip: import("zod").ZodNullable<import("zod").ZodString>;
3722
+ currencyCode: import("zod").ZodNullable<import("zod").ZodString>;
3723
+ financialAdvisor: import("zod").ZodBoolean;
3724
+ occupation: import("zod").ZodNullable<import("zod").ZodString>;
3725
+ employmentStatus: import("zod").ZodNativeEnum<typeof import("../..").EmploymentStatus>;
3726
+ employerName: import("zod").ZodNullable<import("zod").ZodString>;
3727
+ employerAddressLine1: import("zod").ZodNullable<import("zod").ZodString>;
3728
+ employerAddressLine2: import("zod").ZodNullable<import("zod").ZodString>;
3729
+ employerCity: import("zod").ZodNullable<import("zod").ZodString>;
3730
+ employerState: import("zod").ZodNullable<import("zod").ZodString>;
3731
+ employerZip: import("zod").ZodNullable<import("zod").ZodString>;
3732
+ employerCountry: import("zod").ZodNullable<import("zod").ZodString>;
3733
+ kycDocumentType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").KYCDocumentType>>;
3734
+ kycDocumentIssuer: import("zod").ZodNullable<import("zod").ZodString>;
3735
+ kycExpirationDate: import("zod").ZodNullable<import("zod").ZodString>;
3736
+ kycIssuerDate: import("zod").ZodNullable<import("zod").ZodString>;
3737
+ kycDocumentNumber: import("zod").ZodNullable<import("zod").ZodString>;
3738
+ kycFirstName: import("zod").ZodNullable<import("zod").ZodString>;
3739
+ kycLastName: import("zod").ZodNullable<import("zod").ZodString>;
3740
+ ownership: import("zod").ZodNullable<import("zod").ZodNumber>;
3741
+ householdNetWorth: import("zod").ZodNullable<import("zod").ZodNumber>;
3742
+ liquidNetWorth: import("zod").ZodNullable<import("zod").ZodNumber>;
3743
+ currentHouseholdIncome: import("zod").ZodNullable<import("zod").ZodNumber>;
3744
+ currentAnnualIncome: import("zod").ZodNullable<import("zod").ZodNumber>;
3745
+ investedInCrowdfunding: import("zod").ZodNullable<import("zod").ZodNumber>;
3746
+ setupStatus: import("zod").ZodNativeEnum<typeof import("../..").SetupStatusType>;
3747
+ setupStep: import("zod").ZodNativeEnum<typeof import("../..").SetupStepType>;
3748
+ sourceOfIncome: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").SourceOfIncome>>;
3749
+ aicQuestionnaire: import("zod").ZodNullable<import("zod").ZodString>;
3750
+ kycStatus: import("zod").ZodNativeEnum<typeof import("../..").KYCStatus>;
3751
+ kycProvider: import("zod").ZodNullable<import("zod").ZodString>;
3752
+ kycTid: import("zod").ZodNullable<import("zod").ZodString>;
3753
+ aicAccreditationType: import("zod").ZodNativeEnum<typeof import("../..").AicAccreditationType>;
3754
+ accredited: import("zod").ZodBoolean;
3755
+ retirementAccountType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").RetirementAccountType>>;
3756
+ custodianName: import("zod").ZodNullable<import("zod").ZodString>;
3757
+ custodianAccountNumber: import("zod").ZodNullable<import("zod").ZodString>;
3758
+ custodianRepresentativeName: import("zod").ZodNullable<import("zod").ZodString>;
3759
+ custodianEmail: import("zod").ZodNullable<import("zod").ZodString>;
3760
+ }, "strip", import("zod").ZodTypeAny, {
3761
+ id: string;
3762
+ createdAt: string | Date;
3763
+ updatedAt: string | Date;
3764
+ deletedAt: string | Date | null;
3765
+ country: string | null;
3766
+ firstName: string;
3767
+ lastName: string | null;
3768
+ email: string | null;
3769
+ accountId: string;
3770
+ role: import("../..").IndividualRole;
3771
+ kycStatus: import("../..").KYCStatus;
3772
+ tid: string | null;
3773
+ phone: string | null;
3774
+ state: string | null;
3775
+ address: string | null;
3776
+ city: string | null;
3777
+ kycFirstName: string | null;
3778
+ kycLastName: string | null;
3779
+ kycDocumentType: import("../..").KYCDocumentType | null;
3780
+ kycDocumentIssuer: string | null;
3781
+ kycProvider: string | null;
3782
+ zip: string | null;
3783
+ address2: string | null;
3784
+ investorAccountId: string;
3785
+ currencyCode: string | null;
3786
+ setupStatus: import("../..").SetupStatusType;
3787
+ kycDocumentNumber: string | null;
3788
+ kycIssuerDate: string | null;
3789
+ kycExpirationDate: string | null;
3790
+ liquidNetWorth: number | null;
3791
+ aicAccreditationType: import("../..").AicAccreditationType;
3792
+ aicQuestionnaire: string | null;
3793
+ dob: Date | null;
3794
+ isUsCitizenOrGreenCardHolder: boolean;
3795
+ citizenship: string | null;
3796
+ ssn: string | null;
3797
+ lastFour: string | null;
3798
+ kycTid: string | null;
3799
+ investedInCrowdfunding: number | null;
3800
+ currentAnnualIncome: number | null;
3801
+ currentHouseholdIncome: number | null;
3802
+ householdNetWorth: number | null;
3803
+ financialAdvisor: boolean;
3804
+ occupation: string | null;
3805
+ employmentStatus: import("../..").EmploymentStatus;
3806
+ employerName: string | null;
3807
+ employerAddressLine1: string | null;
3808
+ employerAddressLine2: string | null;
3809
+ employerCity: string | null;
3810
+ employerState: string | null;
3811
+ employerZip: string | null;
3812
+ employerCountry: string | null;
3813
+ setupStep: import("../..").SetupStepType;
3814
+ sourceOfIncome: import("../..").SourceOfIncome | null;
3815
+ ownership: number | null;
3816
+ retirementAccountType: import("../..").RetirementAccountType | null;
3817
+ custodianName: string | null;
3818
+ custodianAccountNumber: string | null;
3819
+ custodianRepresentativeName: string | null;
3820
+ custodianEmail: string | null;
3821
+ accredited: boolean;
3822
+ __entity?: string | undefined;
3823
+ account?: {
3824
+ status: import("../..").AccountStatus;
3825
+ id: string;
3826
+ createdAt: string | Date;
3827
+ updatedAt: string | Date;
3828
+ deletedAt: string | Date | null;
3829
+ name: string;
3830
+ managedBy: import("../..").ManagedByType | null;
3831
+ platform: import("../..").Platform;
3832
+ onboardingReviewerId: string | null;
3833
+ onboardingReviewAt: Date | null;
3834
+ allowPendingComplianceReview: boolean;
3835
+ __entity?: string | undefined;
3836
+ } | undefined;
3837
+ investorAccount?: {
3838
+ id: string;
3839
+ createdAt: string | Date;
3840
+ updatedAt: string | Date;
3841
+ deletedAt: string | Date | null;
3842
+ accountId: string;
3843
+ tid: string | null;
3844
+ investorAccountType: import("../..").InvestorAccountType;
3845
+ regAQualified: boolean;
3846
+ regCfQualified: boolean;
3847
+ regDQualified: boolean;
3848
+ systemReviewLog: string | null;
3849
+ setupStatus: import("../..").SetupStatusType;
3850
+ __entity?: string | undefined;
3851
+ email?: string | null | undefined;
3852
+ name?: string | null | undefined;
3853
+ account?: {
3854
+ status: import("../..").AccountStatus;
3855
+ id: string;
3856
+ createdAt: string | Date;
3857
+ updatedAt: string | Date;
3858
+ deletedAt: string | Date | null;
3859
+ name: string;
3860
+ managedBy: import("../..").ManagedByType | null;
3861
+ platform: import("../..").Platform;
3862
+ onboardingReviewerId: string | null;
3863
+ onboardingReviewAt: Date | null;
3864
+ allowPendingComplianceReview: boolean;
3865
+ __entity?: string | undefined;
3866
+ } | undefined;
3867
+ individuals?: any[] | undefined;
3868
+ trades?: any[] | undefined;
3869
+ user?: {
3870
+ id: string;
3871
+ createdAt: string | Date;
3872
+ updatedAt: string | Date;
3873
+ deletedAt: string | Date | null;
3874
+ active: boolean;
3875
+ inviteId: string | null;
3876
+ accountId: string | null;
3877
+ roleId: string | null;
3878
+ userLoginId: string | null;
3879
+ locked: boolean;
3880
+ onboarding: string | null;
3881
+ userLogin: {
3882
+ id: string;
3883
+ createdAt: string | Date;
3884
+ updatedAt: string | Date;
3885
+ deletedAt: string | Date | null;
3886
+ firstName: string;
3887
+ lastName: string;
3888
+ email: string;
3889
+ provider: string;
3890
+ lastLoginAt: string | Date | null;
3891
+ loginCount: number;
3892
+ __entity?: string | undefined;
3893
+ };
3894
+ __entity?: string | undefined;
3895
+ account?: {
3896
+ status: import("../..").AccountStatus;
3897
+ id: string;
3898
+ createdAt: string | Date;
3899
+ updatedAt: string | Date;
3900
+ deletedAt: string | Date | null;
3901
+ name: string;
3902
+ managedBy: import("../..").ManagedByType | null;
3903
+ platform: import("../..").Platform;
3904
+ onboardingReviewerId: string | null;
3905
+ onboardingReviewAt: Date | null;
3906
+ allowPendingComplianceReview: boolean;
3907
+ __entity?: string | undefined;
3908
+ } | undefined;
3909
+ } | null | undefined;
3910
+ legalEntities?: {
3911
+ id: string;
3912
+ createdAt: string | Date;
3913
+ updatedAt: string | Date;
3914
+ deletedAt: string | Date | null;
3915
+ accountId: string;
3916
+ name: string;
3917
+ state: string | null;
3918
+ thirdPartyId: string | null;
3919
+ kybStatus: import("../..").KYBStatus;
3920
+ investorAccountId: string;
3921
+ sanctionsStatus: import("../..").SanctionsStatus;
3922
+ setupStatus: import("../..").SetupStatusType;
3923
+ __entity?: string | undefined;
3924
+ country?: string | null | undefined;
3925
+ kybs?: {
3926
+ id: string;
3927
+ createdAt: string | Date;
3928
+ updatedAt: string | Date;
3929
+ deletedAt: string | Date | null;
3930
+ platform: string;
3931
+ documentType: string;
3932
+ documentImage: string;
3933
+ reason: string | null;
3934
+ response: string | null;
3935
+ thirdPartyId: string;
3936
+ legalEntityId: string;
3937
+ kybStatus: import("../..").KYBStatus;
3938
+ __entity?: string | undefined;
3939
+ }[] | undefined;
3940
+ phone?: string | null | undefined;
3941
+ city?: string | null | undefined;
3942
+ zip?: string | null | undefined;
3943
+ ein?: string | null | undefined;
3944
+ companyType?: string | null | undefined;
3945
+ streetAddress?: string | null | undefined;
3946
+ }[] | undefined;
3947
+ userId?: string | null | undefined;
3948
+ totalAmount?: number | undefined;
3949
+ statusCheck?: {
3950
+ entity?: {
3951
+ address: boolean;
3952
+ information: boolean;
3953
+ } | undefined;
3954
+ primary?: {
3955
+ account: boolean;
3956
+ personal: boolean;
3957
+ residential: boolean;
3958
+ identity: boolean;
3959
+ financial: boolean;
3960
+ investorQuestionnaire: boolean;
3961
+ accreditation: boolean;
3962
+ trustedContact: boolean;
3963
+ retirement?: boolean | undefined;
3964
+ } | undefined;
3965
+ secondary?: {
3966
+ personal: boolean;
3967
+ residential: boolean;
3968
+ identity: boolean;
3969
+ financial: boolean;
3970
+ } | undefined;
3971
+ } | undefined;
3972
+ } | undefined;
3973
+ }, {
3974
+ id: string;
3975
+ createdAt: string | Date;
3976
+ updatedAt: string | Date;
3977
+ deletedAt: string | Date | null;
3978
+ country: string | null;
3979
+ firstName: string;
3980
+ lastName: string | null;
3981
+ email: string | null;
3982
+ accountId: string;
3983
+ role: import("../..").IndividualRole;
3984
+ kycStatus: import("../..").KYCStatus;
3985
+ tid: string | null;
3986
+ phone: string | null;
3987
+ state: string | null;
3988
+ address: string | null;
3989
+ city: string | null;
3990
+ kycFirstName: string | null;
3991
+ kycLastName: string | null;
3992
+ kycDocumentType: import("../..").KYCDocumentType | null;
3993
+ kycDocumentIssuer: string | null;
3994
+ kycProvider: string | null;
3995
+ zip: string | null;
3996
+ address2: string | null;
3997
+ investorAccountId: string;
3998
+ currencyCode: string | null;
3999
+ setupStatus: import("../..").SetupStatusType;
4000
+ kycDocumentNumber: string | null;
4001
+ kycIssuerDate: string | null;
4002
+ kycExpirationDate: string | null;
4003
+ liquidNetWorth: number | null;
4004
+ aicAccreditationType: import("../..").AicAccreditationType;
4005
+ aicQuestionnaire: string | null;
4006
+ dob: Date | null;
4007
+ isUsCitizenOrGreenCardHolder: boolean;
4008
+ citizenship: string | null;
4009
+ ssn: string | null;
4010
+ lastFour: string | null;
4011
+ kycTid: string | null;
4012
+ investedInCrowdfunding: number | null;
4013
+ currentAnnualIncome: number | null;
4014
+ currentHouseholdIncome: number | null;
4015
+ householdNetWorth: number | null;
4016
+ financialAdvisor: boolean;
4017
+ occupation: string | null;
4018
+ employmentStatus: import("../..").EmploymentStatus;
4019
+ employerName: string | null;
4020
+ employerAddressLine1: string | null;
4021
+ employerAddressLine2: string | null;
4022
+ employerCity: string | null;
4023
+ employerState: string | null;
4024
+ employerZip: string | null;
4025
+ employerCountry: string | null;
4026
+ setupStep: import("../..").SetupStepType;
4027
+ sourceOfIncome: import("../..").SourceOfIncome | null;
4028
+ ownership: number | null;
4029
+ retirementAccountType: import("../..").RetirementAccountType | null;
4030
+ custodianName: string | null;
4031
+ custodianAccountNumber: string | null;
4032
+ custodianRepresentativeName: string | null;
4033
+ custodianEmail: string | null;
4034
+ accredited: boolean;
4035
+ __entity?: string | undefined;
4036
+ account?: {
4037
+ status: import("../..").AccountStatus;
4038
+ id: string;
4039
+ createdAt: string | Date;
4040
+ updatedAt: string | Date;
4041
+ deletedAt: string | Date | null;
4042
+ name: string;
4043
+ managedBy: import("../..").ManagedByType | null;
4044
+ platform: import("../..").Platform;
4045
+ onboardingReviewerId: string | null;
4046
+ onboardingReviewAt: Date | null;
4047
+ allowPendingComplianceReview: boolean;
4048
+ __entity?: string | undefined;
4049
+ } | undefined;
4050
+ investorAccount?: {
4051
+ id: string;
4052
+ createdAt: string | Date;
4053
+ updatedAt: string | Date;
4054
+ deletedAt: string | Date | null;
4055
+ accountId: string;
4056
+ tid: string | null;
4057
+ investorAccountType: import("../..").InvestorAccountType;
4058
+ regAQualified: boolean;
4059
+ regCfQualified: boolean;
4060
+ regDQualified: boolean;
4061
+ systemReviewLog: string | null;
4062
+ setupStatus: import("../..").SetupStatusType;
4063
+ __entity?: string | undefined;
4064
+ email?: string | null | undefined;
4065
+ name?: string | null | undefined;
4066
+ account?: {
4067
+ status: import("../..").AccountStatus;
4068
+ id: string;
4069
+ createdAt: string | Date;
4070
+ updatedAt: string | Date;
4071
+ deletedAt: string | Date | null;
4072
+ name: string;
4073
+ managedBy: import("../..").ManagedByType | null;
4074
+ platform: import("../..").Platform;
4075
+ onboardingReviewerId: string | null;
4076
+ onboardingReviewAt: Date | null;
4077
+ allowPendingComplianceReview: boolean;
4078
+ __entity?: string | undefined;
4079
+ } | undefined;
4080
+ individuals?: any[] | undefined;
4081
+ trades?: any[] | undefined;
4082
+ user?: {
4083
+ id: string;
4084
+ createdAt: string | Date;
4085
+ updatedAt: string | Date;
4086
+ deletedAt: string | Date | null;
4087
+ active: boolean;
4088
+ inviteId: string | null;
4089
+ accountId: string | null;
4090
+ roleId: string | null;
4091
+ userLoginId: string | null;
4092
+ locked: boolean;
4093
+ onboarding: string | null;
4094
+ userLogin: {
4095
+ id: string;
4096
+ createdAt: string | Date;
4097
+ updatedAt: string | Date;
4098
+ deletedAt: string | Date | null;
4099
+ firstName: string;
4100
+ lastName: string;
4101
+ email: string;
4102
+ provider: string;
4103
+ lastLoginAt: string | Date | null;
4104
+ loginCount: number;
4105
+ __entity?: string | undefined;
4106
+ };
4107
+ __entity?: string | undefined;
4108
+ account?: {
4109
+ status: import("../..").AccountStatus;
4110
+ id: string;
4111
+ createdAt: string | Date;
4112
+ updatedAt: string | Date;
4113
+ deletedAt: string | Date | null;
4114
+ name: string;
4115
+ managedBy: import("../..").ManagedByType | null;
4116
+ platform: import("../..").Platform;
4117
+ onboardingReviewerId: string | null;
4118
+ onboardingReviewAt: Date | null;
4119
+ allowPendingComplianceReview: boolean;
4120
+ __entity?: string | undefined;
4121
+ } | undefined;
4122
+ } | null | undefined;
4123
+ legalEntities?: {
4124
+ id: string;
4125
+ createdAt: string | Date;
4126
+ updatedAt: string | Date;
4127
+ deletedAt: string | Date | null;
4128
+ accountId: string;
4129
+ name: string;
4130
+ state: string | null;
4131
+ thirdPartyId: string | null;
4132
+ kybStatus: import("../..").KYBStatus;
4133
+ investorAccountId: string;
4134
+ sanctionsStatus: import("../..").SanctionsStatus;
4135
+ setupStatus: import("../..").SetupStatusType;
4136
+ __entity?: string | undefined;
4137
+ country?: string | null | undefined;
4138
+ kybs?: {
4139
+ id: string;
4140
+ createdAt: string | Date;
4141
+ updatedAt: string | Date;
4142
+ deletedAt: string | Date | null;
4143
+ platform: string;
4144
+ documentType: string;
4145
+ documentImage: string;
4146
+ reason: string | null;
4147
+ response: string | null;
4148
+ thirdPartyId: string;
4149
+ legalEntityId: string;
4150
+ kybStatus: import("../..").KYBStatus;
4151
+ __entity?: string | undefined;
4152
+ }[] | undefined;
4153
+ phone?: string | null | undefined;
4154
+ city?: string | null | undefined;
4155
+ zip?: string | null | undefined;
4156
+ ein?: string | null | undefined;
4157
+ companyType?: string | null | undefined;
4158
+ streetAddress?: string | null | undefined;
4159
+ }[] | undefined;
4160
+ userId?: string | null | undefined;
4161
+ totalAmount?: number | undefined;
4162
+ statusCheck?: {
4163
+ entity?: {
4164
+ address?: boolean | undefined;
4165
+ information?: boolean | undefined;
4166
+ } | undefined;
4167
+ primary?: {
4168
+ account?: boolean | undefined;
4169
+ personal?: boolean | undefined;
4170
+ residential?: boolean | undefined;
4171
+ identity?: boolean | undefined;
4172
+ financial?: boolean | undefined;
4173
+ investorQuestionnaire?: boolean | undefined;
4174
+ accreditation?: boolean | undefined;
4175
+ trustedContact?: boolean | undefined;
4176
+ retirement?: boolean | undefined;
4177
+ } | undefined;
4178
+ secondary?: {
4179
+ personal?: boolean | undefined;
4180
+ residential?: boolean | undefined;
4181
+ identity?: boolean | undefined;
4182
+ financial?: boolean | undefined;
4183
+ } | undefined;
4184
+ } | undefined;
4185
+ } | undefined;
4186
+ }>;
4187
+ 400: import("zod").ZodObject<{
4188
+ status: import("zod").ZodNumber;
4189
+ message: import("zod").ZodString;
4190
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4191
+ }, "strip", import("zod").ZodTypeAny, {
4192
+ message: string;
4193
+ status: number;
4194
+ errors: string[];
4195
+ }, {
4196
+ message: string;
4197
+ status: number;
4198
+ errors: string[];
4199
+ }>;
4200
+ 401: import("zod").ZodObject<{
4201
+ status: import("zod").ZodNumber;
4202
+ message: import("zod").ZodString;
4203
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4204
+ }, "strip", import("zod").ZodTypeAny, {
4205
+ message: string;
4206
+ status: number;
4207
+ errors: string[];
4208
+ }, {
4209
+ message: string;
4210
+ status: number;
4211
+ errors: string[];
4212
+ }>;
4213
+ 404: import("zod").ZodObject<{
4214
+ status: import("zod").ZodNumber;
4215
+ message: import("zod").ZodString;
4216
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4217
+ }, "strip", import("zod").ZodTypeAny, {
4218
+ message: string;
4219
+ status: number;
4220
+ errors: string[];
4221
+ }, {
4222
+ message: string;
4223
+ status: number;
4224
+ errors: string[];
4225
+ }>;
4226
+ 500: import("zod").ZodObject<{
4227
+ status: import("zod").ZodNumber;
4228
+ message: import("zod").ZodString;
4229
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4230
+ }, "strip", import("zod").ZodTypeAny, {
4231
+ message: string;
4232
+ status: number;
4233
+ errors: string[];
4234
+ }, {
4235
+ message: string;
4236
+ status: number;
4237
+ errors: string[];
4238
+ }>;
4239
+ };
4240
+ };
4241
+ uploadKycCsv: {
4242
+ method: "POST";
4243
+ metadata: {
4244
+ auth: boolean;
4245
+ };
4246
+ body: import("@ts-rest/core").ContractPlainType<{
4247
+ file: File;
4248
+ }>;
4249
+ query: import("zod").ZodObject<{
4250
+ individualId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
4251
+ frontFileId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
4252
+ backFileId: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
4253
+ selfieFileId: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
4254
+ }, "strip", import("zod").ZodTypeAny, {
4255
+ individualId: string;
4256
+ frontFileId: string;
4257
+ backFileId?: string | undefined;
4258
+ selfieFileId?: string | undefined;
4259
+ }, {
4260
+ individualId: string;
4261
+ frontFileId: string;
4262
+ backFileId?: string | undefined;
4263
+ selfieFileId?: string | undefined;
4264
+ }>;
4265
+ summary: "Upload and process CSV file for KYC data";
4266
+ contentType: "multipart/form-data";
4267
+ path: "/clients/api/v1/csv/kyc";
4268
+ responses: {
4269
+ 200: import("zod").ZodObject<{
4270
+ id: import("zod").ZodString;
4271
+ __entity: import("zod").ZodOptional<import("zod").ZodString>;
4272
+ createdAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
4273
+ updatedAt: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>;
4274
+ deletedAt: import("zod").ZodNullable<import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodDate]>>;
4275
+ } & {
4276
+ tid: import("zod").ZodNullable<import("zod").ZodString>;
4277
+ platform: import("zod").ZodString;
4278
+ individualId: import("zod").ZodString;
4279
+ documentType: import("zod").ZodString;
4280
+ documentImage: import("zod").ZodString;
4281
+ kycStatus: import("zod").ZodNativeEnum<typeof import("../..").KYCStatus>;
4282
+ reason: import("zod").ZodNullable<import("zod").ZodString>;
4283
+ response: import("zod").ZodNullable<import("zod").ZodString>;
4284
+ }, "strip", import("zod").ZodTypeAny, {
4285
+ id: string;
4286
+ createdAt: string | Date;
4287
+ updatedAt: string | Date;
4288
+ deletedAt: string | Date | null;
4289
+ platform: string;
4290
+ kycStatus: import("../..").KYCStatus;
4291
+ tid: string | null;
4292
+ individualId: string;
4293
+ documentType: string;
4294
+ documentImage: string;
4295
+ reason: string | null;
4296
+ response: string | null;
4297
+ __entity?: string | undefined;
4298
+ }, {
4299
+ id: string;
4300
+ createdAt: string | Date;
4301
+ updatedAt: string | Date;
4302
+ deletedAt: string | Date | null;
4303
+ platform: string;
4304
+ kycStatus: import("../..").KYCStatus;
4305
+ tid: string | null;
4306
+ individualId: string;
4307
+ documentType: string;
4308
+ documentImage: string;
4309
+ reason: string | null;
4310
+ response: string | null;
4311
+ __entity?: string | undefined;
4312
+ }>;
4313
+ 400: import("zod").ZodObject<{
4314
+ status: import("zod").ZodNumber;
4315
+ message: import("zod").ZodString;
4316
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4317
+ }, "strip", import("zod").ZodTypeAny, {
4318
+ message: string;
4319
+ status: number;
4320
+ errors: string[];
4321
+ }, {
4322
+ message: string;
4323
+ status: number;
4324
+ errors: string[];
4325
+ }>;
4326
+ 401: import("zod").ZodObject<{
4327
+ status: import("zod").ZodNumber;
4328
+ message: import("zod").ZodString;
4329
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4330
+ }, "strip", import("zod").ZodTypeAny, {
4331
+ message: string;
4332
+ status: number;
4333
+ errors: string[];
4334
+ }, {
4335
+ message: string;
4336
+ status: number;
4337
+ errors: string[];
4338
+ }>;
4339
+ 404: import("zod").ZodObject<{
4340
+ status: import("zod").ZodNumber;
4341
+ message: import("zod").ZodString;
4342
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4343
+ }, "strip", import("zod").ZodTypeAny, {
4344
+ message: string;
4345
+ status: number;
4346
+ errors: string[];
4347
+ }, {
4348
+ message: string;
4349
+ status: number;
4350
+ errors: string[];
4351
+ }>;
4352
+ 500: import("zod").ZodObject<{
4353
+ status: import("zod").ZodNumber;
4354
+ message: import("zod").ZodString;
4355
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4356
+ }, "strip", import("zod").ZodTypeAny, {
4357
+ message: string;
4358
+ status: number;
4359
+ errors: string[];
4360
+ }, {
4361
+ message: string;
4362
+ status: number;
4363
+ errors: string[];
4364
+ }>;
4365
+ };
4366
+ };
4367
+ uploadIssuerCsv: {
4368
+ method: "POST";
4369
+ metadata: {
4370
+ auth: boolean;
4371
+ };
4372
+ body: import("@ts-rest/core").ContractPlainType<{
4373
+ file: File;
4374
+ }>;
4375
+ summary: "Upload and process CSV file for issuer account creation";
4376
+ contentType: "multipart/form-data";
4377
+ path: "/clients/api/v1/csv/issuers";
4378
+ responses: {
4379
+ 200: import("zod").ZodObject<{
4380
+ totalRows: import("zod").ZodNumber;
4381
+ successfulRows: import("zod").ZodNumber;
4382
+ createdAccounts: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodObject<{
4383
+ row: import("zod").ZodNumber;
4384
+ userId: import("zod").ZodString;
4385
+ investorAccountId: import("zod").ZodString;
4386
+ }, "strip", import("zod").ZodTypeAny, {
4387
+ userId: string;
4388
+ investorAccountId: string;
4389
+ row: number;
4390
+ }, {
4391
+ userId: string;
4392
+ investorAccountId: string;
4393
+ row: number;
4394
+ }>, import("zod").ZodObject<{
4395
+ row: import("zod").ZodNumber;
4396
+ userId: import("zod").ZodString;
4397
+ accountId: import("zod").ZodString;
4398
+ }, "strip", import("zod").ZodTypeAny, {
4399
+ accountId: string;
4400
+ userId: string;
4401
+ row: number;
4402
+ }, {
4403
+ accountId: string;
4404
+ userId: string;
4405
+ row: number;
4406
+ }>]>, "many">;
4407
+ }, "strip", import("zod").ZodTypeAny, {
4408
+ totalRows: number;
4409
+ successfulRows: number;
4410
+ createdAccounts: ({
4411
+ userId: string;
4412
+ investorAccountId: string;
4413
+ row: number;
4414
+ } | {
4415
+ accountId: string;
4416
+ userId: string;
4417
+ row: number;
4418
+ })[];
4419
+ }, {
4420
+ totalRows: number;
4421
+ successfulRows: number;
4422
+ createdAccounts: ({
4423
+ userId: string;
4424
+ investorAccountId: string;
4425
+ row: number;
4426
+ } | {
4427
+ accountId: string;
4428
+ userId: string;
4429
+ row: number;
4430
+ })[];
4431
+ }>;
4432
+ 400: import("zod").ZodObject<{
4433
+ status: import("zod").ZodNumber;
4434
+ message: import("zod").ZodString;
4435
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4436
+ }, "strip", import("zod").ZodTypeAny, {
4437
+ message: string;
4438
+ status: number;
4439
+ errors: string[];
4440
+ }, {
4441
+ message: string;
4442
+ status: number;
4443
+ errors: string[];
4444
+ }>;
4445
+ 401: import("zod").ZodObject<{
4446
+ status: import("zod").ZodNumber;
4447
+ message: import("zod").ZodString;
4448
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4449
+ }, "strip", import("zod").ZodTypeAny, {
4450
+ message: string;
4451
+ status: number;
4452
+ errors: string[];
4453
+ }, {
4454
+ message: string;
4455
+ status: number;
4456
+ errors: string[];
4457
+ }>;
4458
+ 422: import("zod").ZodObject<{
4459
+ status: import("zod").ZodNumber;
4460
+ message: import("zod").ZodString;
4461
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4462
+ }, "strip", import("zod").ZodTypeAny, {
4463
+ message: string;
4464
+ status: number;
4465
+ errors: string[];
4466
+ }, {
4467
+ message: string;
4468
+ status: number;
4469
+ errors: string[];
4470
+ }>;
4471
+ 500: import("zod").ZodObject<{
4472
+ status: import("zod").ZodNumber;
4473
+ message: import("zod").ZodString;
4474
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4475
+ }, "strip", import("zod").ZodTypeAny, {
4476
+ message: string;
4477
+ status: number;
4478
+ errors: string[];
4479
+ }, {
4480
+ message: string;
4481
+ status: number;
4482
+ errors: string[];
4483
+ }>;
4484
+ };
4485
+ };
4486
+ uploadOfferingCsv: {
4487
+ method: "POST";
4488
+ metadata: {
4489
+ auth: boolean;
4490
+ };
4491
+ body: import("@ts-rest/core").ContractPlainType<{
4492
+ file: File;
4493
+ }>;
4494
+ query: import("zod").ZodObject<{
4495
+ issuerId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
4496
+ }, "strip", import("zod").ZodTypeAny, {
4497
+ issuerId: string;
4498
+ }, {
4499
+ issuerId: string;
4500
+ }>;
4501
+ summary: "Upload and process CSV file for offering creation";
4502
+ contentType: "multipart/form-data";
4503
+ path: "/clients/api/v1/csv/offering";
4504
+ responses: {
4505
+ 200: import("zod").ZodLazy<any>;
4506
+ 400: import("zod").ZodObject<{
4507
+ status: import("zod").ZodNumber;
4508
+ message: import("zod").ZodString;
4509
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4510
+ }, "strip", import("zod").ZodTypeAny, {
4511
+ message: string;
4512
+ status: number;
4513
+ errors: string[];
4514
+ }, {
4515
+ message: string;
4516
+ status: number;
4517
+ errors: string[];
4518
+ }>;
4519
+ 401: import("zod").ZodObject<{
4520
+ status: import("zod").ZodNumber;
4521
+ message: import("zod").ZodString;
4522
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4523
+ }, "strip", import("zod").ZodTypeAny, {
4524
+ message: string;
4525
+ status: number;
4526
+ errors: string[];
4527
+ }, {
4528
+ message: string;
4529
+ status: number;
4530
+ errors: string[];
4531
+ }>;
4532
+ 404: import("zod").ZodObject<{
4533
+ status: import("zod").ZodNumber;
4534
+ message: import("zod").ZodString;
4535
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4536
+ }, "strip", import("zod").ZodTypeAny, {
4537
+ message: string;
4538
+ status: number;
4539
+ errors: string[];
4540
+ }, {
4541
+ message: string;
4542
+ status: number;
4543
+ errors: string[];
4544
+ }>;
4545
+ 500: import("zod").ZodObject<{
4546
+ status: import("zod").ZodNumber;
4547
+ message: import("zod").ZodString;
4548
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
4549
+ }, "strip", import("zod").ZodTypeAny, {
4550
+ message: string;
4551
+ status: number;
4552
+ errors: string[];
4553
+ }, {
4554
+ message: string;
4555
+ status: number;
4556
+ errors: string[];
4557
+ }>;
4558
+ };
4559
+ };
4560
+ };
2761
4561
  files: {
2762
4562
  postFile: {
2763
4563
  description: string;
@@ -3871,7 +5671,7 @@ export declare const clientsContract: {
3871
5671
  investorAccountId: import("zod").ZodString;
3872
5672
  firstName: import("zod").ZodOptional<import("zod").ZodString>;
3873
5673
  dob: import("zod").ZodOptional<import("zod").ZodDate>;
3874
- isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodBoolean>;
5674
+ isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodBoolean, boolean, unknown>>;
3875
5675
  citizenship: import("zod").ZodOptional<import("zod").ZodNativeEnum<Readonly<Record<string, string>>>>;
3876
5676
  ssn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, string, string>>>;
3877
5677
  currencyCode: import("zod").ZodOptional<import("zod").ZodString>;
@@ -3937,7 +5737,7 @@ export declare const clientsContract: {
3937
5737
  currencyCode?: string | undefined;
3938
5738
  liquidNetWorth?: number | undefined;
3939
5739
  dob?: Date | undefined;
3940
- isUsCitizenOrGreenCardHolder?: boolean | undefined;
5740
+ isUsCitizenOrGreenCardHolder?: unknown;
3941
5741
  citizenship?: string | undefined;
3942
5742
  ssn?: string | null | undefined;
3943
5743
  investedInCrowdfunding?: number | undefined;
@@ -4039,7 +5839,7 @@ export declare const clientsContract: {
4039
5839
  currencyCode?: string | undefined;
4040
5840
  liquidNetWorth?: number | undefined;
4041
5841
  dob?: Date | undefined;
4042
- isUsCitizenOrGreenCardHolder?: boolean | undefined;
5842
+ isUsCitizenOrGreenCardHolder?: unknown;
4043
5843
  citizenship?: string | undefined;
4044
5844
  ssn?: string | null | undefined;
4045
5845
  investedInCrowdfunding?: number | undefined;
@@ -5414,7 +7214,7 @@ export declare const clientsContract: {
5414
7214
  } | import("neverthrow").Ok<null, never>, string | null>, any, string | null>>;
5415
7215
  email: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
5416
7216
  ownership: import("zod").ZodOptional<import("zod").ZodNumber>;
5417
- isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodBoolean>;
7217
+ isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodBoolean, boolean, unknown>>;
5418
7218
  citizenship: import("zod").ZodOptional<import("zod").ZodNativeEnum<Readonly<Record<string, string>>>>;
5419
7219
  ssn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, string, string>>>;
5420
7220
  kycDocumentType: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").KYCDocumentType>>;
@@ -5492,7 +7292,7 @@ export declare const clientsContract: {
5492
7292
  aicAccreditationType?: import("../..").AicAccreditationType | undefined;
5493
7293
  aicQuestionnaire?: string | undefined;
5494
7294
  dob?: Date | undefined;
5495
- isUsCitizenOrGreenCardHolder?: boolean | undefined;
7295
+ isUsCitizenOrGreenCardHolder?: unknown;
5496
7296
  citizenship?: string | undefined;
5497
7297
  ssn?: string | null | undefined;
5498
7298
  investedInCrowdfunding?: number | undefined;
@@ -8488,7 +10288,7 @@ export declare const clientsContract: {
8488
10288
  error?: any;
8489
10289
  } | import("neverthrow").Ok<null, never>, string | null>, any, string | null>>;
8490
10290
  dateOfIncorporation: import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, Date | null, string | null>>>;
8491
- stateOfIncorporation: import("zod").ZodOptional<import("zod").ZodString>;
10291
+ stateOfIncorporation: import("zod").ZodOptional<import("zod").ZodNativeEnum<Readonly<Record<string, string>>>>;
8492
10292
  }, "strip", import("zod").ZodTypeAny, {
8493
10293
  name: string;
8494
10294
  investorAccountId: string;
@@ -9774,7 +11574,7 @@ export declare const clientsContract: {
9774
11574
  startAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, Date | null, string | null>>>;
9775
11575
  endAt: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, Date | null, string | null>>>;
9776
11576
  cancellationPeriod: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
9777
- description: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
11577
+ description: import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, string | null | undefined, string | null | undefined>, string | null | undefined, string | null | undefined>>;
9778
11578
  memorandumId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9779
11579
  subscriptionAgreementId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9780
11580
  coverArtId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
@@ -10121,7 +11921,7 @@ export declare const clientsContract: {
10121
11921
  endAt: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodNullable<import("zod").ZodString>, string | null, string | null>, Date | null, string | null>>;
10122
11922
  active: import("zod").ZodOptional<import("zod").ZodBoolean>;
10123
11923
  cancellationPeriod: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
10124
- description: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodString>>;
11924
+ description: import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>, string | null | undefined, string | null | undefined>, string | null | undefined, string | null | undefined>>;
10125
11925
  managedBy: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
10126
11926
  assetName: import("zod").ZodString;
10127
11927
  assetType: import("zod").ZodNativeEnum<typeof import("../..").AssetType>;
@@ -10872,6 +12672,90 @@ export declare const clientsContract: {
10872
12672
  };
10873
12673
  };
10874
12674
  };
12675
+ review: {
12676
+ postReviewKyc: {
12677
+ method: "POST";
12678
+ metadata: {
12679
+ auth: boolean;
12680
+ };
12681
+ body: import("zod").ZodObject<{
12682
+ individualIds: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">;
12683
+ status: import("zod").ZodNativeEnum<typeof import("../..").BaseStatus>;
12684
+ }, "strip", import("zod").ZodTypeAny, {
12685
+ status: import("../..").BaseStatus;
12686
+ individualIds: string[];
12687
+ }, {
12688
+ status: import("../..").BaseStatus;
12689
+ individualIds: string[];
12690
+ }>;
12691
+ query: import("zod").ZodObject<{
12692
+ userId: import("zod").ZodEffects<import("zod").ZodString, string, string>;
12693
+ }, "strip", import("zod").ZodTypeAny, {
12694
+ userId: string;
12695
+ }, {
12696
+ userId: string;
12697
+ }>;
12698
+ summary: "Post KYC review for individuals";
12699
+ path: "/clients/api/v1/review/kyc";
12700
+ responses: {
12701
+ 201: import("zod").ZodObject<{
12702
+ individualsUpdated: import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">;
12703
+ status: import("zod").ZodNativeEnum<typeof import("../..").BaseStatus>;
12704
+ reviewedBy: import("zod").ZodString;
12705
+ targetObject: import("zod").ZodAny;
12706
+ }, "strip", import("zod").ZodTypeAny, {
12707
+ status: import("../..").BaseStatus;
12708
+ reviewedBy: string;
12709
+ individualsUpdated: string[];
12710
+ targetObject?: any;
12711
+ }, {
12712
+ status: import("../..").BaseStatus;
12713
+ reviewedBy: string;
12714
+ individualsUpdated: string[];
12715
+ targetObject?: any;
12716
+ }>;
12717
+ 401: import("zod").ZodObject<{
12718
+ status: import("zod").ZodNumber;
12719
+ message: import("zod").ZodString;
12720
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
12721
+ }, "strip", import("zod").ZodTypeAny, {
12722
+ message: string;
12723
+ status: number;
12724
+ errors: string[];
12725
+ }, {
12726
+ message: string;
12727
+ status: number;
12728
+ errors: string[];
12729
+ }>;
12730
+ 403: import("zod").ZodObject<{
12731
+ status: import("zod").ZodNumber;
12732
+ message: import("zod").ZodString;
12733
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
12734
+ }, "strip", import("zod").ZodTypeAny, {
12735
+ message: string;
12736
+ status: number;
12737
+ errors: string[];
12738
+ }, {
12739
+ message: string;
12740
+ status: number;
12741
+ errors: string[];
12742
+ }>;
12743
+ 500: import("zod").ZodObject<{
12744
+ status: import("zod").ZodNumber;
12745
+ message: import("zod").ZodString;
12746
+ errors: import("zod").ZodArray<import("zod").ZodString, "many">;
12747
+ }, "strip", import("zod").ZodTypeAny, {
12748
+ message: string;
12749
+ status: number;
12750
+ errors: string[];
12751
+ }, {
12752
+ message: string;
12753
+ status: number;
12754
+ errors: string[];
12755
+ }>;
12756
+ };
12757
+ };
12758
+ };
10875
12759
  secureRequests: {
10876
12760
  postSecureRequest: {
10877
12761
  method: "POST";