@dalmore/api-contracts 0.0.0-dev.651765a → 0.0.0-dev.67eb029

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 (103) 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/account-setting.types.d.ts +22 -66
  8. package/common/types/account-setting.types.js +2 -31
  9. package/common/types/account-setting.types.js.map +1 -1
  10. package/common/types/account.types.d.ts +32 -23
  11. package/common/types/account.types.js +4 -3
  12. package/common/types/account.types.js.map +1 -1
  13. package/common/types/activity.types.d.ts +8 -1
  14. package/common/types/activity.types.js +7 -0
  15. package/common/types/activity.types.js.map +1 -1
  16. package/common/types/asset.types.d.ts +25 -111
  17. package/common/types/asset.types.js +24 -100
  18. package/common/types/asset.types.js.map +1 -1
  19. package/common/types/auth.types.d.ts +36 -0
  20. package/common/types/auth.types.js +3 -2
  21. package/common/types/auth.types.js.map +1 -1
  22. package/common/types/bonus-tier.types.d.ts +0 -30
  23. package/common/types/cap-table.types.d.ts +177 -53
  24. package/common/types/cap-table.types.js +31 -0
  25. package/common/types/cap-table.types.js.map +1 -1
  26. package/common/types/common.types.d.ts +341 -6
  27. package/common/types/common.types.js +63 -4
  28. package/common/types/common.types.js.map +1 -1
  29. package/common/types/csv.types.d.ts +3606 -0
  30. package/common/types/csv.types.js +290 -0
  31. package/common/types/csv.types.js.map +1 -0
  32. package/common/types/disbursement-transaction.types.d.ts +1 -1
  33. package/common/types/disbursement-transaction.types.js +1 -1
  34. package/common/types/disbursement-transaction.types.js.map +1 -1
  35. package/common/types/disbursements.types.d.ts +939 -7
  36. package/common/types/disbursements.types.js +92 -2
  37. package/common/types/disbursements.types.js.map +1 -1
  38. package/common/types/exchange-provider.types.d.ts +12 -12
  39. package/common/types/file.types.d.ts +24 -0
  40. package/common/types/file.types.js +12 -0
  41. package/common/types/file.types.js.map +1 -1
  42. package/common/types/index.d.ts +3 -0
  43. package/common/types/index.js +3 -0
  44. package/common/types/index.js.map +1 -1
  45. package/common/types/individuals.types.d.ts +207 -5
  46. package/common/types/individuals.types.js +11 -14
  47. package/common/types/individuals.types.js.map +1 -1
  48. package/common/types/investor-account.types.d.ts +1 -1
  49. package/common/types/investor-account.types.js +1 -2
  50. package/common/types/investor-account.types.js.map +1 -1
  51. package/common/types/investors-offering.types.d.ts +8 -0
  52. package/common/types/investors-offering.types.js +1 -0
  53. package/common/types/investors-offering.types.js.map +1 -1
  54. package/common/types/invite.types.d.ts +5 -2
  55. package/common/types/invite.types.js +2 -1
  56. package/common/types/invite.types.js.map +1 -1
  57. package/common/types/issuer-offering.types.d.ts +347 -79
  58. package/common/types/issuer-offering.types.js +188 -63
  59. package/common/types/issuer-offering.types.js.map +1 -1
  60. package/common/types/legal-entity.types.d.ts +39 -1
  61. package/common/types/legal-entity.types.js +8 -5
  62. package/common/types/legal-entity.types.js.map +1 -1
  63. package/common/types/offering-submission.types.d.ts +198 -0
  64. package/common/types/offering-submission.types.js +17 -4
  65. package/common/types/offering-submission.types.js.map +1 -1
  66. package/common/types/offering.types.d.ts +270 -65
  67. package/common/types/offering.types.js +241 -55
  68. package/common/types/offering.types.js.map +1 -1
  69. package/common/types/portfolio.types.d.ts +6 -6
  70. package/common/types/review.types.js +1 -1
  71. package/common/types/review.types.js.map +1 -1
  72. package/common/types/secondary-order.types.d.ts +10 -10
  73. package/common/types/secondary-trade.types.d.ts +10 -10
  74. package/common/types/site.types.d.ts +12 -27
  75. package/common/types/task.types.d.ts +8 -0
  76. package/common/types/task.types.js +3 -0
  77. package/common/types/task.types.js.map +1 -1
  78. package/common/types/trade-line-item.types.d.ts +24 -0
  79. package/common/types/trade-line-item.types.js +3 -0
  80. package/common/types/trade-line-item.types.js.map +1 -1
  81. package/common/types/trade.types.d.ts +20 -14
  82. package/common/types/trade.types.js +18 -7
  83. package/common/types/trade.types.js.map +1 -1
  84. package/common/types/transaction.types.d.ts +0 -1
  85. package/common/types/transaction.types.js +0 -1
  86. package/common/types/transaction.types.js.map +1 -1
  87. package/common/types/user.types.d.ts +79 -82
  88. package/common/types/user.types.js +7 -23
  89. package/common/types/user.types.js.map +1 -1
  90. package/contracts/clients/assets/index.d.ts +0 -66
  91. package/contracts/clients/csv/index.d.ts +1800 -0
  92. package/contracts/clients/csv/index.js +96 -0
  93. package/contracts/clients/csv/index.js.map +1 -0
  94. package/contracts/clients/index.d.ts +1980 -107
  95. package/contracts/clients/index.js +4 -0
  96. package/contracts/clients/index.js.map +1 -1
  97. package/contracts/clients/individuals/index.d.ts +5 -5
  98. package/contracts/clients/legal-entities/index.d.ts +1 -1
  99. package/contracts/clients/offerings/index.d.ts +90 -35
  100. package/contracts/clients/review/index.d.ts +85 -0
  101. package/contracts/clients/review/index.js +27 -0
  102. package/contracts/clients/review/index.js.map +1 -0
  103. package/package.json +1 -1
@@ -1583,10 +1583,7 @@ export declare const clientsContract: {
1583
1583
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
1584
1584
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
1585
1585
  enableBonus: import("zod").ZodBoolean;
1586
- principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
1587
- maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
1588
1586
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1589
- interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
1590
1587
  }, "strip", import("zod").ZodTypeAny, {
1591
1588
  type: import("../..").AssetType | null;
1592
1589
  id: string;
@@ -1605,10 +1602,7 @@ export declare const clientsContract: {
1605
1602
  durationType: import("../..").DurationType | null;
1606
1603
  tiers: number[] | null;
1607
1604
  enableBonus: boolean;
1608
- principalAmount: number | null;
1609
- maxTotalRaise: number | null;
1610
1605
  interestRate: number | null;
1611
- interestType: import("../../common/types/asset.types").InterestType | null;
1612
1606
  __entity?: string | undefined;
1613
1607
  account?: {
1614
1608
  status: import("../..").AccountStatus;
@@ -1643,10 +1637,7 @@ export declare const clientsContract: {
1643
1637
  durationType: import("../..").DurationType | null;
1644
1638
  tiers: number[] | null;
1645
1639
  enableBonus: boolean;
1646
- principalAmount: number | null;
1647
- maxTotalRaise: number | null;
1648
1640
  interestRate: number | null;
1649
- interestType: import("../../common/types/asset.types").InterestType | null;
1650
1641
  __entity?: string | undefined;
1651
1642
  account?: {
1652
1643
  status: import("../..").AccountStatus;
@@ -1702,10 +1693,7 @@ export declare const clientsContract: {
1702
1693
  durationType: import("../..").DurationType | null;
1703
1694
  tiers: number[] | null;
1704
1695
  enableBonus: boolean;
1705
- principalAmount: number | null;
1706
- maxTotalRaise: number | null;
1707
1696
  interestRate: number | null;
1708
- interestType: import("../../common/types/asset.types").InterestType | null;
1709
1697
  __entity?: string | undefined;
1710
1698
  account?: {
1711
1699
  status: import("../..").AccountStatus;
@@ -1749,10 +1737,7 @@ export declare const clientsContract: {
1749
1737
  durationType: import("../..").DurationType | null;
1750
1738
  tiers: number[] | null;
1751
1739
  enableBonus: boolean;
1752
- principalAmount: number | null;
1753
- maxTotalRaise: number | null;
1754
1740
  interestRate: number | null;
1755
- interestType: import("../../common/types/asset.types").InterestType | null;
1756
1741
  __entity?: string | undefined;
1757
1742
  account?: {
1758
1743
  status: import("../..").AccountStatus;
@@ -1903,10 +1888,7 @@ export declare const clientsContract: {
1903
1888
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
1904
1889
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
1905
1890
  enableBonus: import("zod").ZodBoolean;
1906
- principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
1907
- maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
1908
1891
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1909
- interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
1910
1892
  }, "strip", import("zod").ZodTypeAny, {
1911
1893
  type: import("../..").AssetType | null;
1912
1894
  id: string;
@@ -1925,10 +1907,7 @@ export declare const clientsContract: {
1925
1907
  durationType: import("../..").DurationType | null;
1926
1908
  tiers: number[] | null;
1927
1909
  enableBonus: boolean;
1928
- principalAmount: number | null;
1929
- maxTotalRaise: number | null;
1930
1910
  interestRate: number | null;
1931
- interestType: import("../../common/types/asset.types").InterestType | null;
1932
1911
  __entity?: string | undefined;
1933
1912
  account?: {
1934
1913
  status: import("../..").AccountStatus;
@@ -1963,10 +1942,7 @@ export declare const clientsContract: {
1963
1942
  durationType: import("../..").DurationType | null;
1964
1943
  tiers: number[] | null;
1965
1944
  enableBonus: boolean;
1966
- principalAmount: number | null;
1967
- maxTotalRaise: number | null;
1968
1945
  interestRate: number | null;
1969
- interestType: import("../../common/types/asset.types").InterestType | null;
1970
1946
  __entity?: string | undefined;
1971
1947
  account?: {
1972
1948
  status: import("../..").AccountStatus;
@@ -2055,10 +2031,7 @@ export declare const clientsContract: {
2055
2031
  template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
2056
2032
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2057
2033
  enableBonus: import("zod").ZodDefault<import("zod").ZodBoolean>;
2058
- principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2059
- maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2060
2034
  interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2061
- interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
2062
2035
  }, "strip", import("zod").ZodTypeAny, {
2063
2036
  type: import("../..").AssetType;
2064
2037
  name: string;
@@ -2071,10 +2044,7 @@ export declare const clientsContract: {
2071
2044
  duration?: number | null | undefined;
2072
2045
  durationType?: import("../..").DurationType | null | undefined;
2073
2046
  tiers?: number[] | null | undefined;
2074
- principalAmount?: number | null | undefined;
2075
- maxTotalRaise?: number | null | undefined;
2076
2047
  interestRate?: number | null | undefined;
2077
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2078
2048
  }, {
2079
2049
  type: import("../..").AssetType;
2080
2050
  name: string;
@@ -2087,10 +2057,7 @@ export declare const clientsContract: {
2087
2057
  durationType?: import("../..").DurationType | null | undefined;
2088
2058
  tiers?: number[] | null | undefined;
2089
2059
  enableBonus?: boolean | undefined;
2090
- principalAmount?: number | null | undefined;
2091
- maxTotalRaise?: number | null | undefined;
2092
2060
  interestRate?: number | null | undefined;
2093
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2094
2061
  }>, {
2095
2062
  type: import("../..").AssetType;
2096
2063
  name: string;
@@ -2103,10 +2070,7 @@ export declare const clientsContract: {
2103
2070
  duration?: number | null | undefined;
2104
2071
  durationType?: import("../..").DurationType | null | undefined;
2105
2072
  tiers?: number[] | null | undefined;
2106
- principalAmount?: number | null | undefined;
2107
- maxTotalRaise?: number | null | undefined;
2108
2073
  interestRate?: number | null | undefined;
2109
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2110
2074
  }, {
2111
2075
  type: import("../..").AssetType;
2112
2076
  name: string;
@@ -2119,10 +2083,7 @@ export declare const clientsContract: {
2119
2083
  durationType?: import("../..").DurationType | null | undefined;
2120
2084
  tiers?: number[] | null | undefined;
2121
2085
  enableBonus?: boolean | undefined;
2122
- principalAmount?: number | null | undefined;
2123
- maxTotalRaise?: number | null | undefined;
2124
2086
  interestRate?: number | null | undefined;
2125
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2126
2087
  }>;
2127
2088
  summary: "Create an asset";
2128
2089
  path: "/clients/api/v1/assets";
@@ -2189,10 +2150,7 @@ export declare const clientsContract: {
2189
2150
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2190
2151
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2191
2152
  enableBonus: import("zod").ZodBoolean;
2192
- principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
2193
- maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
2194
2153
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2195
- interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
2196
2154
  }, "strip", import("zod").ZodTypeAny, {
2197
2155
  type: import("../..").AssetType | null;
2198
2156
  id: string;
@@ -2211,10 +2169,7 @@ export declare const clientsContract: {
2211
2169
  durationType: import("../..").DurationType | null;
2212
2170
  tiers: number[] | null;
2213
2171
  enableBonus: boolean;
2214
- principalAmount: number | null;
2215
- maxTotalRaise: number | null;
2216
2172
  interestRate: number | null;
2217
- interestType: import("../../common/types/asset.types").InterestType | null;
2218
2173
  __entity?: string | undefined;
2219
2174
  account?: {
2220
2175
  status: import("../..").AccountStatus;
@@ -2249,10 +2204,7 @@ export declare const clientsContract: {
2249
2204
  durationType: import("../..").DurationType | null;
2250
2205
  tiers: number[] | null;
2251
2206
  enableBonus: boolean;
2252
- principalAmount: number | null;
2253
- maxTotalRaise: number | null;
2254
2207
  interestRate: number | null;
2255
- interestType: import("../../common/types/asset.types").InterestType | null;
2256
2208
  __entity?: string | undefined;
2257
2209
  account?: {
2258
2210
  status: import("../..").AccountStatus;
@@ -2340,10 +2292,7 @@ export declare const clientsContract: {
2340
2292
  template: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>>>;
2341
2293
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2342
2294
  enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
2343
- principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2344
- maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2345
2295
  interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2346
- interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
2347
2296
  }, "strip", import("zod").ZodTypeAny, {
2348
2297
  type?: import("../..").AssetType | undefined;
2349
2298
  name?: string | undefined;
@@ -2355,10 +2304,7 @@ export declare const clientsContract: {
2355
2304
  durationType?: import("../..").DurationType | null | undefined;
2356
2305
  tiers?: number[] | null | undefined;
2357
2306
  enableBonus?: boolean | undefined;
2358
- principalAmount?: number | null | undefined;
2359
- maxTotalRaise?: number | null | undefined;
2360
2307
  interestRate?: number | null | undefined;
2361
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2362
2308
  }, {
2363
2309
  type?: import("../..").AssetType | undefined;
2364
2310
  name?: string | undefined;
@@ -2370,10 +2316,7 @@ export declare const clientsContract: {
2370
2316
  durationType?: import("../..").DurationType | null | undefined;
2371
2317
  tiers?: number[] | null | undefined;
2372
2318
  enableBonus?: boolean | undefined;
2373
- principalAmount?: number | null | undefined;
2374
- maxTotalRaise?: number | null | undefined;
2375
2319
  interestRate?: number | null | undefined;
2376
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2377
2320
  }>;
2378
2321
  pathParams: import("zod").ZodObject<{
2379
2322
  id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -2447,10 +2390,7 @@ export declare const clientsContract: {
2447
2390
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2448
2391
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2449
2392
  enableBonus: import("zod").ZodBoolean;
2450
- principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
2451
- maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
2452
2393
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2453
- interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
2454
2394
  }, "strip", import("zod").ZodTypeAny, {
2455
2395
  type: import("../..").AssetType | null;
2456
2396
  id: string;
@@ -2469,10 +2409,7 @@ export declare const clientsContract: {
2469
2409
  durationType: import("../..").DurationType | null;
2470
2410
  tiers: number[] | null;
2471
2411
  enableBonus: boolean;
2472
- principalAmount: number | null;
2473
- maxTotalRaise: number | null;
2474
2412
  interestRate: number | null;
2475
- interestType: import("../../common/types/asset.types").InterestType | null;
2476
2413
  __entity?: string | undefined;
2477
2414
  account?: {
2478
2415
  status: import("../..").AccountStatus;
@@ -2507,10 +2444,7 @@ export declare const clientsContract: {
2507
2444
  durationType: import("../..").DurationType | null;
2508
2445
  tiers: number[] | null;
2509
2446
  enableBonus: boolean;
2510
- principalAmount: number | null;
2511
- maxTotalRaise: number | null;
2512
2447
  interestRate: number | null;
2513
- interestType: import("../../common/types/asset.types").InterestType | null;
2514
2448
  __entity?: string | undefined;
2515
2449
  account?: {
2516
2450
  status: import("../..").AccountStatus;
@@ -2824,6 +2758,1806 @@ export declare const clientsContract: {
2824
2758
  };
2825
2759
  };
2826
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
+ };
2827
4561
  files: {
2828
4562
  postFile: {
2829
4563
  description: string;
@@ -3937,7 +5671,7 @@ export declare const clientsContract: {
3937
5671
  investorAccountId: import("zod").ZodString;
3938
5672
  firstName: import("zod").ZodOptional<import("zod").ZodString>;
3939
5673
  dob: import("zod").ZodOptional<import("zod").ZodDate>;
3940
- isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodBoolean>;
5674
+ isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodBoolean, boolean, unknown>>;
3941
5675
  citizenship: import("zod").ZodOptional<import("zod").ZodNativeEnum<Readonly<Record<string, string>>>>;
3942
5676
  ssn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, string, string>>>;
3943
5677
  currencyCode: import("zod").ZodOptional<import("zod").ZodString>;
@@ -4003,7 +5737,7 @@ export declare const clientsContract: {
4003
5737
  currencyCode?: string | undefined;
4004
5738
  liquidNetWorth?: number | undefined;
4005
5739
  dob?: Date | undefined;
4006
- isUsCitizenOrGreenCardHolder?: boolean | undefined;
5740
+ isUsCitizenOrGreenCardHolder?: unknown;
4007
5741
  citizenship?: string | undefined;
4008
5742
  ssn?: string | null | undefined;
4009
5743
  investedInCrowdfunding?: number | undefined;
@@ -4105,7 +5839,7 @@ export declare const clientsContract: {
4105
5839
  currencyCode?: string | undefined;
4106
5840
  liquidNetWorth?: number | undefined;
4107
5841
  dob?: Date | undefined;
4108
- isUsCitizenOrGreenCardHolder?: boolean | undefined;
5842
+ isUsCitizenOrGreenCardHolder?: unknown;
4109
5843
  citizenship?: string | undefined;
4110
5844
  ssn?: string | null | undefined;
4111
5845
  investedInCrowdfunding?: number | undefined;
@@ -5480,7 +7214,7 @@ export declare const clientsContract: {
5480
7214
  } | import("neverthrow").Ok<null, never>, string | null>, any, string | null>>;
5481
7215
  email: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
5482
7216
  ownership: import("zod").ZodOptional<import("zod").ZodNumber>;
5483
- isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodBoolean>;
7217
+ isUsCitizenOrGreenCardHolder: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodBoolean, boolean, unknown>>;
5484
7218
  citizenship: import("zod").ZodOptional<import("zod").ZodNativeEnum<Readonly<Record<string, string>>>>;
5485
7219
  ssn: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodString, string, string>>>;
5486
7220
  kycDocumentType: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").KYCDocumentType>>;
@@ -5558,7 +7292,7 @@ export declare const clientsContract: {
5558
7292
  aicAccreditationType?: import("../..").AicAccreditationType | undefined;
5559
7293
  aicQuestionnaire?: string | undefined;
5560
7294
  dob?: Date | undefined;
5561
- isUsCitizenOrGreenCardHolder?: boolean | undefined;
7295
+ isUsCitizenOrGreenCardHolder?: unknown;
5562
7296
  citizenship?: string | undefined;
5563
7297
  ssn?: string | null | undefined;
5564
7298
  investedInCrowdfunding?: number | undefined;
@@ -8554,7 +10288,7 @@ export declare const clientsContract: {
8554
10288
  error?: any;
8555
10289
  } | import("neverthrow").Ok<null, never>, string | null>, any, string | null>>;
8556
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>>>;
8557
- stateOfIncorporation: import("zod").ZodOptional<import("zod").ZodString>;
10291
+ stateOfIncorporation: import("zod").ZodOptional<import("zod").ZodNativeEnum<Readonly<Record<string, string>>>>;
8558
10292
  }, "strip", import("zod").ZodTypeAny, {
8559
10293
  name: string;
8560
10294
  investorAccountId: string;
@@ -9437,8 +11171,8 @@ export declare const clientsContract: {
9437
11171
  enabled: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodBoolean, boolean, unknown>>;
9438
11172
  managedBy: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
9439
11173
  versioningType: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingVersioningType>>;
9440
- combinedStatus: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingStatus>>;
9441
11174
  onboardingStatus: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingOnboardingStatus>>;
11175
+ complianceReview: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").ComplianceReview>>;
9442
11176
  }, "strip", import("zod").ZodTypeAny, {
9443
11177
  page: number;
9444
11178
  limit: number;
@@ -9448,12 +11182,12 @@ export declare const clientsContract: {
9448
11182
  accountId?: string | undefined;
9449
11183
  name?: string | undefined;
9450
11184
  managedBy?: import("../..").ManagedByType | undefined;
11185
+ complianceReview?: import("../..").ComplianceReview | undefined;
9451
11186
  onboardingStatus?: import("../..").OfferingOnboardingStatus | undefined;
9452
11187
  enabled?: boolean | undefined;
9453
11188
  issuerId?: string | undefined;
9454
11189
  issuerName?: string | undefined;
9455
11190
  versioningType?: import("../..").OfferingVersioningType | undefined;
9456
- combinedStatus?: import("../..").OfferingStatus | undefined;
9457
11191
  }, {
9458
11192
  type?: import("../..").OfferingType | undefined;
9459
11193
  status?: import("../..").ComplianceReview | undefined;
@@ -9462,13 +11196,13 @@ export declare const clientsContract: {
9462
11196
  managedBy?: import("../..").ManagedByType | undefined;
9463
11197
  page?: number | undefined;
9464
11198
  limit?: number | undefined;
11199
+ complianceReview?: import("../..").ComplianceReview | undefined;
9465
11200
  onboardingStatus?: import("../..").OfferingOnboardingStatus | undefined;
9466
11201
  include?: string | undefined;
9467
11202
  enabled?: unknown;
9468
11203
  issuerId?: string | undefined;
9469
11204
  issuerName?: string | undefined;
9470
11205
  versioningType?: import("../..").OfferingVersioningType | undefined;
9471
- combinedStatus?: import("../..").OfferingStatus | undefined;
9472
11206
  }>;
9473
11207
  summary: "Get offerings";
9474
11208
  path: "/clients/api/v1/offerings";
@@ -9830,6 +11564,7 @@ export declare const clientsContract: {
9830
11564
  auth: boolean;
9831
11565
  };
9832
11566
  body: import("zod").ZodEffects<import("zod").ZodObject<{
11567
+ shareClassId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9833
11568
  name: import("zod").ZodOptional<import("zod").ZodString>;
9834
11569
  type: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingType>>;
9835
11570
  targetAmount: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -9839,7 +11574,7 @@ export declare const clientsContract: {
9839
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>>>;
9840
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>>>;
9841
11576
  cancellationPeriod: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
9842
- 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>>;
9843
11578
  memorandumId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9844
11579
  subscriptionAgreementId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9845
11580
  coverArtId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
@@ -9860,10 +11595,7 @@ export declare const clientsContract: {
9860
11595
  escrowAgreementFileId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9861
11596
  bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9862
11597
  escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9863
- principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9864
- maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9865
11598
  interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9866
- interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
9867
11599
  bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
9868
11600
  type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
9869
11601
  value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
@@ -9900,6 +11632,13 @@ export declare const clientsContract: {
9900
11632
  startAmount: number;
9901
11633
  endAmount: number;
9902
11634
  }>, "many">>;
11635
+ warrantsEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
11636
+ totalShares: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
11637
+ warrantTermYears: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
11638
+ exercisePrice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
11639
+ warrantPercentage: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
11640
+ calculationMethod: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").WarrantSharesCalculationMethod>>>;
11641
+ incrementThreshold: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9903
11642
  }, "strip", import("zod").ZodTypeAny, {
9904
11643
  type?: import("../..").OfferingType | undefined;
9905
11644
  name?: string | undefined;
@@ -9922,6 +11661,14 @@ export declare const clientsContract: {
9922
11661
  escrowAgreementFileId?: string | null | undefined;
9923
11662
  bankAccountId?: string | null | undefined;
9924
11663
  escrowAccountId?: string | null | undefined;
11664
+ warrantsEnabled?: boolean | undefined;
11665
+ totalShares?: number | null | undefined;
11666
+ warrantTermYears?: number | null | undefined;
11667
+ exercisePrice?: number | null | undefined;
11668
+ warrantPercentage?: number | null | undefined;
11669
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
11670
+ incrementThreshold?: number | null | undefined;
11671
+ shareClassId?: string | null | undefined;
9925
11672
  assetName?: string | undefined;
9926
11673
  assetType?: import("../..").AssetType | undefined;
9927
11674
  pricePerUnit?: number | null | undefined;
@@ -9931,10 +11678,7 @@ export declare const clientsContract: {
9931
11678
  durationType?: import("../..").DurationType | null | undefined;
9932
11679
  tiers?: number[] | null | undefined;
9933
11680
  enableBonus?: boolean | undefined;
9934
- principalAmount?: number | null | undefined;
9935
- maxTotalRaise?: number | null | undefined;
9936
11681
  interestRate?: number | null | undefined;
9937
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9938
11682
  bonusTiers?: {
9939
11683
  value: number;
9940
11684
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -9963,6 +11707,14 @@ export declare const clientsContract: {
9963
11707
  escrowAgreementFileId?: string | null | undefined;
9964
11708
  bankAccountId?: string | null | undefined;
9965
11709
  escrowAccountId?: string | null | undefined;
11710
+ warrantsEnabled?: boolean | undefined;
11711
+ totalShares?: number | null | undefined;
11712
+ warrantTermYears?: number | null | undefined;
11713
+ exercisePrice?: number | null | undefined;
11714
+ warrantPercentage?: number | null | undefined;
11715
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
11716
+ incrementThreshold?: number | null | undefined;
11717
+ shareClassId?: string | null | undefined;
9966
11718
  assetName?: string | undefined;
9967
11719
  assetType?: import("../..").AssetType | undefined;
9968
11720
  pricePerUnit?: number | null | undefined;
@@ -9972,10 +11724,7 @@ export declare const clientsContract: {
9972
11724
  durationType?: import("../..").DurationType | null | undefined;
9973
11725
  tiers?: number[] | null | undefined;
9974
11726
  enableBonus?: boolean | undefined;
9975
- principalAmount?: number | null | undefined;
9976
- maxTotalRaise?: number | null | undefined;
9977
11727
  interestRate?: number | null | undefined;
9978
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9979
11728
  bonusTiers?: {
9980
11729
  value: number;
9981
11730
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10004,6 +11753,14 @@ export declare const clientsContract: {
10004
11753
  escrowAgreementFileId?: string | null | undefined;
10005
11754
  bankAccountId?: string | null | undefined;
10006
11755
  escrowAccountId?: string | null | undefined;
11756
+ warrantsEnabled?: boolean | undefined;
11757
+ totalShares?: number | null | undefined;
11758
+ warrantTermYears?: number | null | undefined;
11759
+ exercisePrice?: number | null | undefined;
11760
+ warrantPercentage?: number | null | undefined;
11761
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
11762
+ incrementThreshold?: number | null | undefined;
11763
+ shareClassId?: string | null | undefined;
10007
11764
  assetName?: string | undefined;
10008
11765
  assetType?: import("../..").AssetType | undefined;
10009
11766
  pricePerUnit?: number | null | undefined;
@@ -10013,10 +11770,7 @@ export declare const clientsContract: {
10013
11770
  durationType?: import("../..").DurationType | null | undefined;
10014
11771
  tiers?: number[] | null | undefined;
10015
11772
  enableBonus?: boolean | undefined;
10016
- principalAmount?: number | null | undefined;
10017
- maxTotalRaise?: number | null | undefined;
10018
11773
  interestRate?: number | null | undefined;
10019
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10020
11774
  bonusTiers?: {
10021
11775
  value: number;
10022
11776
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10045,6 +11799,14 @@ export declare const clientsContract: {
10045
11799
  escrowAgreementFileId?: string | null | undefined;
10046
11800
  bankAccountId?: string | null | undefined;
10047
11801
  escrowAccountId?: string | null | undefined;
11802
+ warrantsEnabled?: boolean | undefined;
11803
+ totalShares?: number | null | undefined;
11804
+ warrantTermYears?: number | null | undefined;
11805
+ exercisePrice?: number | null | undefined;
11806
+ warrantPercentage?: number | null | undefined;
11807
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
11808
+ incrementThreshold?: number | null | undefined;
11809
+ shareClassId?: string | null | undefined;
10048
11810
  assetName?: string | undefined;
10049
11811
  assetType?: import("../..").AssetType | undefined;
10050
11812
  pricePerUnit?: number | null | undefined;
@@ -10054,10 +11816,7 @@ export declare const clientsContract: {
10054
11816
  durationType?: import("../..").DurationType | null | undefined;
10055
11817
  tiers?: number[] | null | undefined;
10056
11818
  enableBonus?: boolean | undefined;
10057
- principalAmount?: number | null | undefined;
10058
- maxTotalRaise?: number | null | undefined;
10059
11819
  interestRate?: number | null | undefined;
10060
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10061
11820
  bonusTiers?: {
10062
11821
  value: number;
10063
11822
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10150,6 +11909,7 @@ export declare const clientsContract: {
10150
11909
  };
10151
11910
  body: import("zod").ZodEffects<import("zod").ZodObject<{
10152
11911
  issuerId: import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
11912
+ shareClassId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
10153
11913
  name: import("zod").ZodString;
10154
11914
  type: import("zod").ZodNativeEnum<typeof import("../..").OfferingType>;
10155
11915
  targetAmount: import("zod").ZodNumber;
@@ -10161,7 +11921,7 @@ export declare const clientsContract: {
10161
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>>;
10162
11922
  active: import("zod").ZodOptional<import("zod").ZodBoolean>;
10163
11923
  cancellationPeriod: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodNumber>>;
10164
- 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>>;
10165
11925
  managedBy: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
10166
11926
  assetName: import("zod").ZodString;
10167
11927
  assetType: import("zod").ZodNativeEnum<typeof import("../..").AssetType>;
@@ -10176,10 +11936,7 @@ export declare const clientsContract: {
10176
11936
  hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
10177
11937
  bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
10178
11938
  escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
10179
- principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10180
- maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10181
11939
  interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10182
- interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
10183
11940
  bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
10184
11941
  type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
10185
11942
  value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
@@ -10216,12 +11973,21 @@ export declare const clientsContract: {
10216
11973
  startAmount: number;
10217
11974
  endAmount: number;
10218
11975
  }>, "many">>;
11976
+ warrantsEnabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
11977
+ totalShares: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
11978
+ warrantTermYears: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
11979
+ exercisePrice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
11980
+ warrantPercentage: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
11981
+ calculationMethod: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").WarrantSharesCalculationMethod>>>;
11982
+ incrementThreshold: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
11983
+ showTotalRaised: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
10219
11984
  }, "strip", import("zod").ZodTypeAny, {
10220
11985
  type: import("../..").OfferingType;
10221
11986
  name: string;
10222
11987
  template: import("../../common/types/asset.types").AssetTemplateType;
10223
11988
  targetAmount: number;
10224
11989
  issuerId: string;
11990
+ warrantsEnabled: boolean;
10225
11991
  assetName: string;
10226
11992
  assetType: import("../..").AssetType;
10227
11993
  pricePerUnit: number | null;
@@ -10236,18 +12002,23 @@ export declare const clientsContract: {
10236
12002
  startAt?: Date | null | undefined;
10237
12003
  endAt?: Date | null | undefined;
10238
12004
  cancellationPeriod?: number | null | undefined;
12005
+ showTotalRaised?: boolean | undefined;
10239
12006
  hasEscrow?: boolean | undefined;
10240
12007
  bankAccountId?: string | null | undefined;
10241
12008
  escrowAccountId?: string | null | undefined;
12009
+ totalShares?: number | null | undefined;
12010
+ warrantTermYears?: number | null | undefined;
12011
+ exercisePrice?: number | null | undefined;
12012
+ warrantPercentage?: number | null | undefined;
12013
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
12014
+ incrementThreshold?: number | null | undefined;
12015
+ shareClassId?: string | null | undefined;
10242
12016
  yield?: number | null | undefined;
10243
12017
  duration?: number | null | undefined;
10244
12018
  durationType?: import("../..").DurationType | null | undefined;
10245
12019
  tiers?: number[] | null | undefined;
10246
12020
  enableBonus?: boolean | undefined;
10247
- principalAmount?: number | null | undefined;
10248
- maxTotalRaise?: number | null | undefined;
10249
12021
  interestRate?: number | null | undefined;
10250
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10251
12022
  bonusTiers?: {
10252
12023
  value: number;
10253
12024
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10274,18 +12045,24 @@ export declare const clientsContract: {
10274
12045
  startAt?: string | null | undefined;
10275
12046
  endAt?: string | null | undefined;
10276
12047
  cancellationPeriod?: number | null | undefined;
12048
+ showTotalRaised?: boolean | undefined;
10277
12049
  hasEscrow?: boolean | undefined;
10278
12050
  bankAccountId?: string | null | undefined;
10279
12051
  escrowAccountId?: string | null | undefined;
12052
+ warrantsEnabled?: boolean | undefined;
12053
+ totalShares?: number | null | undefined;
12054
+ warrantTermYears?: number | null | undefined;
12055
+ exercisePrice?: number | null | undefined;
12056
+ warrantPercentage?: number | null | undefined;
12057
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
12058
+ incrementThreshold?: number | null | undefined;
12059
+ shareClassId?: string | null | undefined;
10280
12060
  yield?: number | null | undefined;
10281
12061
  duration?: number | null | undefined;
10282
12062
  durationType?: import("../..").DurationType | null | undefined;
10283
12063
  tiers?: number[] | null | undefined;
10284
12064
  enableBonus?: boolean | undefined;
10285
- principalAmount?: number | null | undefined;
10286
- maxTotalRaise?: number | null | undefined;
10287
12065
  interestRate?: number | null | undefined;
10288
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10289
12066
  bonusTiers?: {
10290
12067
  value: number;
10291
12068
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10298,6 +12075,7 @@ export declare const clientsContract: {
10298
12075
  template: import("../../common/types/asset.types").AssetTemplateType;
10299
12076
  targetAmount: number;
10300
12077
  issuerId: string;
12078
+ warrantsEnabled: boolean;
10301
12079
  assetName: string;
10302
12080
  assetType: import("../..").AssetType;
10303
12081
  pricePerUnit: number | null;
@@ -10312,18 +12090,23 @@ export declare const clientsContract: {
10312
12090
  startAt?: Date | null | undefined;
10313
12091
  endAt?: Date | null | undefined;
10314
12092
  cancellationPeriod?: number | null | undefined;
12093
+ showTotalRaised?: boolean | undefined;
10315
12094
  hasEscrow?: boolean | undefined;
10316
12095
  bankAccountId?: string | null | undefined;
10317
12096
  escrowAccountId?: string | null | undefined;
12097
+ totalShares?: number | null | undefined;
12098
+ warrantTermYears?: number | null | undefined;
12099
+ exercisePrice?: number | null | undefined;
12100
+ warrantPercentage?: number | null | undefined;
12101
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
12102
+ incrementThreshold?: number | null | undefined;
12103
+ shareClassId?: string | null | undefined;
10318
12104
  yield?: number | null | undefined;
10319
12105
  duration?: number | null | undefined;
10320
12106
  durationType?: import("../..").DurationType | null | undefined;
10321
12107
  tiers?: number[] | null | undefined;
10322
12108
  enableBonus?: boolean | undefined;
10323
- principalAmount?: number | null | undefined;
10324
- maxTotalRaise?: number | null | undefined;
10325
12109
  interestRate?: number | null | undefined;
10326
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10327
12110
  bonusTiers?: {
10328
12111
  value: number;
10329
12112
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10350,18 +12133,24 @@ export declare const clientsContract: {
10350
12133
  startAt?: string | null | undefined;
10351
12134
  endAt?: string | null | undefined;
10352
12135
  cancellationPeriod?: number | null | undefined;
12136
+ showTotalRaised?: boolean | undefined;
10353
12137
  hasEscrow?: boolean | undefined;
10354
12138
  bankAccountId?: string | null | undefined;
10355
12139
  escrowAccountId?: string | null | undefined;
12140
+ warrantsEnabled?: boolean | undefined;
12141
+ totalShares?: number | null | undefined;
12142
+ warrantTermYears?: number | null | undefined;
12143
+ exercisePrice?: number | null | undefined;
12144
+ warrantPercentage?: number | null | undefined;
12145
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
12146
+ incrementThreshold?: number | null | undefined;
12147
+ shareClassId?: string | null | undefined;
10356
12148
  yield?: number | null | undefined;
10357
12149
  duration?: number | null | undefined;
10358
12150
  durationType?: import("../..").DurationType | null | undefined;
10359
12151
  tiers?: number[] | null | undefined;
10360
12152
  enableBonus?: boolean | undefined;
10361
- principalAmount?: number | null | undefined;
10362
- maxTotalRaise?: number | null | undefined;
10363
12153
  interestRate?: number | null | undefined;
10364
- interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10365
12154
  bonusTiers?: {
10366
12155
  value: number;
10367
12156
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10883,6 +12672,90 @@ export declare const clientsContract: {
10883
12672
  };
10884
12673
  };
10885
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
+ };
10886
12759
  secureRequests: {
10887
12760
  postSecureRequest: {
10888
12761
  method: "POST";