@dalmore/api-contracts 0.0.0-dev.ada6a86 → 0.0.0-dev.b23d491

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 (52) hide show
  1. package/common/types/activity.types.d.ts +27 -24
  2. package/common/types/activity.types.js +6 -0
  3. package/common/types/activity.types.js.map +1 -1
  4. package/common/types/asset.types.d.ts +298 -0
  5. package/common/types/asset.types.js +191 -42
  6. package/common/types/asset.types.js.map +1 -1
  7. package/common/types/bonus-tier.types.d.ts +41 -0
  8. package/common/types/bonus-tier.types.js +14 -7
  9. package/common/types/bonus-tier.types.js.map +1 -1
  10. package/common/types/common.types.d.ts +27 -3
  11. package/common/types/common.types.js +17 -0
  12. package/common/types/common.types.js.map +1 -1
  13. package/common/types/comply-advantage-api.types.d.ts +133 -466
  14. package/common/types/comply-advantage-api.types.js +24 -3
  15. package/common/types/comply-advantage-api.types.js.map +1 -1
  16. package/common/types/dashboard.types.d.ts +7 -7
  17. package/common/types/data-record.types.d.ts +4 -4
  18. package/common/types/disbursements.types.d.ts +106 -626
  19. package/common/types/disbursements.types.js +3 -0
  20. package/common/types/disbursements.types.js.map +1 -1
  21. package/common/types/escrow-account.types.d.ts +17 -0
  22. package/common/types/escrow-account.types.js +3 -0
  23. package/common/types/escrow-account.types.js.map +1 -1
  24. package/common/types/file.types.d.ts +14 -11
  25. package/common/types/file.types.js +2 -0
  26. package/common/types/file.types.js.map +1 -1
  27. package/common/types/individuals.types.js +5 -2
  28. package/common/types/individuals.types.js.map +1 -1
  29. package/common/types/issuer-bank-account.types.d.ts +4 -276
  30. package/common/types/issuer-offering.types.d.ts +729 -6
  31. package/common/types/issuer-offering.types.js +141 -5
  32. package/common/types/issuer-offering.types.js.map +1 -1
  33. package/common/types/job-item.types.d.ts +14 -14
  34. package/common/types/note.types.d.ts +15 -15
  35. package/common/types/offering.types.d.ts +321 -2
  36. package/common/types/offering.types.js +152 -11
  37. package/common/types/offering.types.js.map +1 -1
  38. package/common/types/signer.types.d.ts +8 -8
  39. package/common/types/site.types.d.ts +20 -0
  40. package/common/types/task.types.d.ts +22 -22
  41. package/common/types/trade.types.d.ts +2 -0
  42. package/common/types/trade.types.js +2 -0
  43. package/common/types/trade.types.js.map +1 -1
  44. package/common/types/transaction.types.d.ts +80 -1
  45. package/common/types/transaction.types.js +22 -2
  46. package/common/types/transaction.types.js.map +1 -1
  47. package/contracts/clients/assets/index.d.ts +88 -0
  48. package/contracts/clients/files/index.d.ts +3 -3
  49. package/contracts/clients/files-public/index.d.ts +3 -3
  50. package/contracts/clients/index.d.ts +344 -10
  51. package/contracts/clients/offerings/index.d.ts +250 -4
  52. package/package.json +1 -1
@@ -1583,6 +1583,10 @@ 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
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1589
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
1586
1590
  }, "strip", import("zod").ZodTypeAny, {
1587
1591
  type: import("../..").AssetType | null;
1588
1592
  id: string;
@@ -1601,6 +1605,10 @@ export declare const clientsContract: {
1601
1605
  durationType: import("../..").DurationType | null;
1602
1606
  tiers: number[] | null;
1603
1607
  enableBonus: boolean;
1608
+ principalAmount: number | null;
1609
+ maxTotalRaise: number | null;
1610
+ interestRate: number | null;
1611
+ interestType: import("../../common/types/asset.types").InterestType | null;
1604
1612
  __entity?: string | undefined;
1605
1613
  account?: {
1606
1614
  status: import("../..").AccountStatus;
@@ -1635,6 +1643,10 @@ export declare const clientsContract: {
1635
1643
  durationType: import("../..").DurationType | null;
1636
1644
  tiers: number[] | null;
1637
1645
  enableBonus: boolean;
1646
+ principalAmount: number | null;
1647
+ maxTotalRaise: number | null;
1648
+ interestRate: number | null;
1649
+ interestType: import("../../common/types/asset.types").InterestType | null;
1638
1650
  __entity?: string | undefined;
1639
1651
  account?: {
1640
1652
  status: import("../..").AccountStatus;
@@ -1690,6 +1702,10 @@ export declare const clientsContract: {
1690
1702
  durationType: import("../..").DurationType | null;
1691
1703
  tiers: number[] | null;
1692
1704
  enableBonus: boolean;
1705
+ principalAmount: number | null;
1706
+ maxTotalRaise: number | null;
1707
+ interestRate: number | null;
1708
+ interestType: import("../../common/types/asset.types").InterestType | null;
1693
1709
  __entity?: string | undefined;
1694
1710
  account?: {
1695
1711
  status: import("../..").AccountStatus;
@@ -1733,6 +1749,10 @@ export declare const clientsContract: {
1733
1749
  durationType: import("../..").DurationType | null;
1734
1750
  tiers: number[] | null;
1735
1751
  enableBonus: boolean;
1752
+ principalAmount: number | null;
1753
+ maxTotalRaise: number | null;
1754
+ interestRate: number | null;
1755
+ interestType: import("../../common/types/asset.types").InterestType | null;
1736
1756
  __entity?: string | undefined;
1737
1757
  account?: {
1738
1758
  status: import("../..").AccountStatus;
@@ -1883,6 +1903,10 @@ export declare const clientsContract: {
1883
1903
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
1884
1904
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
1885
1905
  enableBonus: import("zod").ZodBoolean;
1906
+ principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
1907
+ maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
1908
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1909
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
1886
1910
  }, "strip", import("zod").ZodTypeAny, {
1887
1911
  type: import("../..").AssetType | null;
1888
1912
  id: string;
@@ -1901,6 +1925,10 @@ export declare const clientsContract: {
1901
1925
  durationType: import("../..").DurationType | null;
1902
1926
  tiers: number[] | null;
1903
1927
  enableBonus: boolean;
1928
+ principalAmount: number | null;
1929
+ maxTotalRaise: number | null;
1930
+ interestRate: number | null;
1931
+ interestType: import("../../common/types/asset.types").InterestType | null;
1904
1932
  __entity?: string | undefined;
1905
1933
  account?: {
1906
1934
  status: import("../..").AccountStatus;
@@ -1935,6 +1963,10 @@ export declare const clientsContract: {
1935
1963
  durationType: import("../..").DurationType | null;
1936
1964
  tiers: number[] | null;
1937
1965
  enableBonus: boolean;
1966
+ principalAmount: number | null;
1967
+ maxTotalRaise: number | null;
1968
+ interestRate: number | null;
1969
+ interestType: import("../../common/types/asset.types").InterestType | null;
1938
1970
  __entity?: string | undefined;
1939
1971
  account?: {
1940
1972
  status: import("../..").AccountStatus;
@@ -2023,6 +2055,10 @@ export declare const clientsContract: {
2023
2055
  template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
2024
2056
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2025
2057
  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
+ 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>>>;
2026
2062
  }, "strip", import("zod").ZodTypeAny, {
2027
2063
  type: import("../..").AssetType;
2028
2064
  name: string;
@@ -2035,6 +2071,10 @@ export declare const clientsContract: {
2035
2071
  duration?: number | null | undefined;
2036
2072
  durationType?: import("../..").DurationType | null | undefined;
2037
2073
  tiers?: number[] | null | undefined;
2074
+ principalAmount?: number | null | undefined;
2075
+ maxTotalRaise?: number | null | undefined;
2076
+ interestRate?: number | null | undefined;
2077
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2038
2078
  }, {
2039
2079
  type: import("../..").AssetType;
2040
2080
  name: string;
@@ -2047,6 +2087,10 @@ export declare const clientsContract: {
2047
2087
  durationType?: import("../..").DurationType | null | undefined;
2048
2088
  tiers?: number[] | null | undefined;
2049
2089
  enableBonus?: boolean | undefined;
2090
+ principalAmount?: number | null | undefined;
2091
+ maxTotalRaise?: number | null | undefined;
2092
+ interestRate?: number | null | undefined;
2093
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2050
2094
  }>, {
2051
2095
  type: import("../..").AssetType;
2052
2096
  name: string;
@@ -2059,6 +2103,10 @@ export declare const clientsContract: {
2059
2103
  duration?: number | null | undefined;
2060
2104
  durationType?: import("../..").DurationType | null | undefined;
2061
2105
  tiers?: number[] | null | undefined;
2106
+ principalAmount?: number | null | undefined;
2107
+ maxTotalRaise?: number | null | undefined;
2108
+ interestRate?: number | null | undefined;
2109
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2062
2110
  }, {
2063
2111
  type: import("../..").AssetType;
2064
2112
  name: string;
@@ -2071,6 +2119,10 @@ export declare const clientsContract: {
2071
2119
  durationType?: import("../..").DurationType | null | undefined;
2072
2120
  tiers?: number[] | null | undefined;
2073
2121
  enableBonus?: boolean | undefined;
2122
+ principalAmount?: number | null | undefined;
2123
+ maxTotalRaise?: number | null | undefined;
2124
+ interestRate?: number | null | undefined;
2125
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2074
2126
  }>;
2075
2127
  summary: "Create an asset";
2076
2128
  path: "/clients/api/v1/assets";
@@ -2137,6 +2189,10 @@ export declare const clientsContract: {
2137
2189
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2138
2190
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2139
2191
  enableBonus: import("zod").ZodBoolean;
2192
+ principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
2193
+ maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
2194
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2195
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
2140
2196
  }, "strip", import("zod").ZodTypeAny, {
2141
2197
  type: import("../..").AssetType | null;
2142
2198
  id: string;
@@ -2155,6 +2211,10 @@ export declare const clientsContract: {
2155
2211
  durationType: import("../..").DurationType | null;
2156
2212
  tiers: number[] | null;
2157
2213
  enableBonus: boolean;
2214
+ principalAmount: number | null;
2215
+ maxTotalRaise: number | null;
2216
+ interestRate: number | null;
2217
+ interestType: import("../../common/types/asset.types").InterestType | null;
2158
2218
  __entity?: string | undefined;
2159
2219
  account?: {
2160
2220
  status: import("../..").AccountStatus;
@@ -2189,6 +2249,10 @@ export declare const clientsContract: {
2189
2249
  durationType: import("../..").DurationType | null;
2190
2250
  tiers: number[] | null;
2191
2251
  enableBonus: boolean;
2252
+ principalAmount: number | null;
2253
+ maxTotalRaise: number | null;
2254
+ interestRate: number | null;
2255
+ interestType: import("../../common/types/asset.types").InterestType | null;
2192
2256
  __entity?: string | undefined;
2193
2257
  account?: {
2194
2258
  status: import("../..").AccountStatus;
@@ -2276,6 +2340,10 @@ export declare const clientsContract: {
2276
2340
  template: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>>>;
2277
2341
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2278
2342
  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
+ 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>>>;
2279
2347
  }, "strip", import("zod").ZodTypeAny, {
2280
2348
  type?: import("../..").AssetType | undefined;
2281
2349
  name?: string | undefined;
@@ -2287,6 +2355,10 @@ export declare const clientsContract: {
2287
2355
  durationType?: import("../..").DurationType | null | undefined;
2288
2356
  tiers?: number[] | null | undefined;
2289
2357
  enableBonus?: boolean | undefined;
2358
+ principalAmount?: number | null | undefined;
2359
+ maxTotalRaise?: number | null | undefined;
2360
+ interestRate?: number | null | undefined;
2361
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2290
2362
  }, {
2291
2363
  type?: import("../..").AssetType | undefined;
2292
2364
  name?: string | undefined;
@@ -2298,6 +2370,10 @@ export declare const clientsContract: {
2298
2370
  durationType?: import("../..").DurationType | null | undefined;
2299
2371
  tiers?: number[] | null | undefined;
2300
2372
  enableBonus?: boolean | undefined;
2373
+ principalAmount?: number | null | undefined;
2374
+ maxTotalRaise?: number | null | undefined;
2375
+ interestRate?: number | null | undefined;
2376
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2301
2377
  }>;
2302
2378
  pathParams: import("zod").ZodObject<{
2303
2379
  id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -2371,6 +2447,10 @@ export declare const clientsContract: {
2371
2447
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2372
2448
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2373
2449
  enableBonus: import("zod").ZodBoolean;
2450
+ principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
2451
+ maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
2452
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2453
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
2374
2454
  }, "strip", import("zod").ZodTypeAny, {
2375
2455
  type: import("../..").AssetType | null;
2376
2456
  id: string;
@@ -2389,6 +2469,10 @@ export declare const clientsContract: {
2389
2469
  durationType: import("../..").DurationType | null;
2390
2470
  tiers: number[] | null;
2391
2471
  enableBonus: boolean;
2472
+ principalAmount: number | null;
2473
+ maxTotalRaise: number | null;
2474
+ interestRate: number | null;
2475
+ interestType: import("../../common/types/asset.types").InterestType | null;
2392
2476
  __entity?: string | undefined;
2393
2477
  account?: {
2394
2478
  status: import("../..").AccountStatus;
@@ -2423,6 +2507,10 @@ export declare const clientsContract: {
2423
2507
  durationType: import("../..").DurationType | null;
2424
2508
  tiers: number[] | null;
2425
2509
  enableBonus: boolean;
2510
+ principalAmount: number | null;
2511
+ maxTotalRaise: number | null;
2512
+ interestRate: number | null;
2513
+ interestType: import("../../common/types/asset.types").InterestType | null;
2426
2514
  __entity?: string | undefined;
2427
2515
  account?: {
2428
2516
  status: import("../..").AccountStatus;
@@ -3033,20 +3121,20 @@ export declare const clientsContract: {
3033
3121
  limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
3034
3122
  } & {
3035
3123
  include: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodString>, string[], string | undefined>, string[], string | undefined>;
3036
- targetTable: import("zod").ZodOptional<import("zod").ZodEnum<["KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS", ...("KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS")[]]>>;
3124
+ targetTable: import("zod").ZodOptional<import("zod").ZodEnum<["KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS", ...("KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS")[]]>>;
3037
3125
  targetId: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodString>, string | undefined, string | undefined>;
3038
3126
  }, "strip", import("zod").ZodTypeAny, {
3039
3127
  page: number;
3040
3128
  limit: number;
3041
3129
  include: string[];
3042
3130
  targetId?: string | undefined;
3043
- targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | undefined;
3131
+ targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS" | undefined;
3044
3132
  }, {
3045
3133
  page?: number | undefined;
3046
3134
  limit?: number | undefined;
3047
3135
  include?: string | undefined;
3048
3136
  targetId?: string | undefined;
3049
- targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | undefined;
3137
+ targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS" | undefined;
3050
3138
  }>;
3051
3139
  summary: "Get files";
3052
3140
  path: "/clients/api/v1/files";
@@ -3584,20 +3672,20 @@ export declare const clientsContract: {
3584
3672
  limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
3585
3673
  } & {
3586
3674
  include: import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodString>, string[], string | undefined>, string[], string | undefined>;
3587
- targetTable: import("zod").ZodOptional<import("zod").ZodEnum<["KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS", ...("KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS")[]]>>;
3675
+ targetTable: import("zod").ZodOptional<import("zod").ZodEnum<["KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS", ...("KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS")[]]>>;
3588
3676
  targetId: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodString>, string | undefined, string | undefined>;
3589
3677
  }, "strip", import("zod").ZodTypeAny, {
3590
3678
  page: number;
3591
3679
  limit: number;
3592
3680
  include: string[];
3593
3681
  targetId?: string | undefined;
3594
- targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | undefined;
3682
+ targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS" | undefined;
3595
3683
  }, {
3596
3684
  page?: number | undefined;
3597
3685
  limit?: number | undefined;
3598
3686
  include?: string | undefined;
3599
3687
  targetId?: string | undefined;
3600
- targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | undefined;
3688
+ targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS" | undefined;
3601
3689
  }>;
3602
3690
  summary: "Get public files";
3603
3691
  path: "/clients/api/v1/files-public";
@@ -9741,7 +9829,7 @@ export declare const clientsContract: {
9741
9829
  metadata: {
9742
9830
  auth: boolean;
9743
9831
  };
9744
- body: import("zod").ZodObject<{
9832
+ body: import("zod").ZodEffects<import("zod").ZodObject<{
9745
9833
  name: import("zod").ZodOptional<import("zod").ZodString>;
9746
9834
  type: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingType>>;
9747
9835
  targetAmount: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -9755,7 +9843,6 @@ export declare const clientsContract: {
9755
9843
  memorandumId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9756
9844
  subscriptionAgreementId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9757
9845
  coverArtId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9758
- managedBy: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
9759
9846
  showTotalRaised: import("zod").ZodOptional<import("zod").ZodBoolean>;
9760
9847
  issuerId: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
9761
9848
  assetName: import("zod").ZodOptional<import("zod").ZodString>;
@@ -9769,10 +9856,53 @@ export declare const clientsContract: {
9769
9856
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
9770
9857
  enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
9771
9858
  enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
9859
+ hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
9860
+ escrowAgreementFileId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9861
+ bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9862
+ 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
+ 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
+ bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
9868
+ type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
9869
+ value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
9870
+ startAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
9871
+ endAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
9872
+ }, "strip", import("zod").ZodTypeAny, {
9873
+ value: number;
9874
+ type: import("../../common/types/bonus-tier.types").BonusType;
9875
+ startAmount: number;
9876
+ endAmount: number;
9877
+ }, {
9878
+ value: number;
9879
+ type: import("../../common/types/bonus-tier.types").BonusType;
9880
+ startAmount: number;
9881
+ endAmount: number;
9882
+ }>, {
9883
+ value: number;
9884
+ type: import("../../common/types/bonus-tier.types").BonusType;
9885
+ startAmount: number;
9886
+ endAmount: number;
9887
+ }, {
9888
+ value: number;
9889
+ type: import("../../common/types/bonus-tier.types").BonusType;
9890
+ startAmount: number;
9891
+ endAmount: number;
9892
+ }>, {
9893
+ value: number;
9894
+ type: import("../../common/types/bonus-tier.types").BonusType;
9895
+ startAmount: number;
9896
+ endAmount: number;
9897
+ }, {
9898
+ value: number;
9899
+ type: import("../../common/types/bonus-tier.types").BonusType;
9900
+ startAmount: number;
9901
+ endAmount: number;
9902
+ }>, "many">>;
9772
9903
  }, "strip", import("zod").ZodTypeAny, {
9773
9904
  type?: import("../..").OfferingType | undefined;
9774
9905
  name?: string | undefined;
9775
- managedBy?: import("../..").ManagedByType | undefined;
9776
9906
  description?: string | null | undefined;
9777
9907
  enabled?: boolean | undefined;
9778
9908
  template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
@@ -9788,6 +9918,10 @@ export declare const clientsContract: {
9788
9918
  memorandumId?: string | null | undefined;
9789
9919
  subscriptionAgreementId?: string | null | undefined;
9790
9920
  showTotalRaised?: boolean | undefined;
9921
+ hasEscrow?: boolean | undefined;
9922
+ escrowAgreementFileId?: string | null | undefined;
9923
+ bankAccountId?: string | null | undefined;
9924
+ escrowAccountId?: string | null | undefined;
9791
9925
  assetName?: string | undefined;
9792
9926
  assetType?: import("../..").AssetType | undefined;
9793
9927
  pricePerUnit?: number | null | undefined;
@@ -9797,10 +9931,19 @@ export declare const clientsContract: {
9797
9931
  durationType?: import("../..").DurationType | null | undefined;
9798
9932
  tiers?: number[] | null | undefined;
9799
9933
  enableBonus?: boolean | undefined;
9934
+ principalAmount?: number | null | undefined;
9935
+ maxTotalRaise?: number | null | undefined;
9936
+ interestRate?: number | null | undefined;
9937
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9938
+ bonusTiers?: {
9939
+ value: number;
9940
+ type: import("../../common/types/bonus-tier.types").BonusType;
9941
+ startAmount: number;
9942
+ endAmount: number;
9943
+ }[] | undefined;
9800
9944
  }, {
9801
9945
  type?: import("../..").OfferingType | undefined;
9802
9946
  name?: string | undefined;
9803
- managedBy?: import("../..").ManagedByType | undefined;
9804
9947
  description?: string | null | undefined;
9805
9948
  enabled?: boolean | undefined;
9806
9949
  template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
@@ -9816,6 +9959,10 @@ export declare const clientsContract: {
9816
9959
  memorandumId?: string | null | undefined;
9817
9960
  subscriptionAgreementId?: string | null | undefined;
9818
9961
  showTotalRaised?: boolean | undefined;
9962
+ hasEscrow?: boolean | undefined;
9963
+ escrowAgreementFileId?: string | null | undefined;
9964
+ bankAccountId?: string | null | undefined;
9965
+ escrowAccountId?: string | null | undefined;
9819
9966
  assetName?: string | undefined;
9820
9967
  assetType?: import("../..").AssetType | undefined;
9821
9968
  pricePerUnit?: number | null | undefined;
@@ -9825,6 +9972,98 @@ export declare const clientsContract: {
9825
9972
  durationType?: import("../..").DurationType | null | undefined;
9826
9973
  tiers?: number[] | null | undefined;
9827
9974
  enableBonus?: boolean | undefined;
9975
+ principalAmount?: number | null | undefined;
9976
+ maxTotalRaise?: number | null | undefined;
9977
+ interestRate?: number | null | undefined;
9978
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9979
+ bonusTiers?: {
9980
+ value: number;
9981
+ type: import("../../common/types/bonus-tier.types").BonusType;
9982
+ startAmount: number;
9983
+ endAmount: number;
9984
+ }[] | undefined;
9985
+ }>, {
9986
+ type?: import("../..").OfferingType | undefined;
9987
+ name?: string | undefined;
9988
+ description?: string | null | undefined;
9989
+ enabled?: boolean | undefined;
9990
+ template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
9991
+ coverArtId?: string | null | undefined;
9992
+ targetAmount?: number | undefined;
9993
+ minInvestment?: number | null | undefined;
9994
+ maxInvestment?: number | null | undefined;
9995
+ contingencyAmount?: number | null | undefined;
9996
+ startAt?: Date | null | undefined;
9997
+ endAt?: Date | null | undefined;
9998
+ issuerId?: string | undefined;
9999
+ cancellationPeriod?: number | null | undefined;
10000
+ memorandumId?: string | null | undefined;
10001
+ subscriptionAgreementId?: string | null | undefined;
10002
+ showTotalRaised?: boolean | undefined;
10003
+ hasEscrow?: boolean | undefined;
10004
+ escrowAgreementFileId?: string | null | undefined;
10005
+ bankAccountId?: string | null | undefined;
10006
+ escrowAccountId?: string | null | undefined;
10007
+ assetName?: string | undefined;
10008
+ assetType?: import("../..").AssetType | undefined;
10009
+ pricePerUnit?: number | null | undefined;
10010
+ totalUnits?: number | null | undefined;
10011
+ yield?: number | null | undefined;
10012
+ duration?: number | null | undefined;
10013
+ durationType?: import("../..").DurationType | null | undefined;
10014
+ tiers?: number[] | null | undefined;
10015
+ enableBonus?: boolean | undefined;
10016
+ principalAmount?: number | null | undefined;
10017
+ maxTotalRaise?: number | null | undefined;
10018
+ interestRate?: number | null | undefined;
10019
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10020
+ bonusTiers?: {
10021
+ value: number;
10022
+ type: import("../../common/types/bonus-tier.types").BonusType;
10023
+ startAmount: number;
10024
+ endAmount: number;
10025
+ }[] | undefined;
10026
+ }, {
10027
+ type?: import("../..").OfferingType | undefined;
10028
+ name?: string | undefined;
10029
+ description?: string | null | undefined;
10030
+ enabled?: boolean | undefined;
10031
+ template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
10032
+ coverArtId?: string | null | undefined;
10033
+ targetAmount?: number | undefined;
10034
+ minInvestment?: number | null | undefined;
10035
+ maxInvestment?: number | null | undefined;
10036
+ contingencyAmount?: number | null | undefined;
10037
+ startAt?: string | null | undefined;
10038
+ endAt?: string | null | undefined;
10039
+ issuerId?: string | undefined;
10040
+ cancellationPeriod?: number | null | undefined;
10041
+ memorandumId?: string | null | undefined;
10042
+ subscriptionAgreementId?: string | null | undefined;
10043
+ showTotalRaised?: boolean | undefined;
10044
+ hasEscrow?: boolean | undefined;
10045
+ escrowAgreementFileId?: string | null | undefined;
10046
+ bankAccountId?: string | null | undefined;
10047
+ escrowAccountId?: string | null | undefined;
10048
+ assetName?: string | undefined;
10049
+ assetType?: import("../..").AssetType | undefined;
10050
+ pricePerUnit?: number | null | undefined;
10051
+ totalUnits?: number | null | undefined;
10052
+ yield?: number | null | undefined;
10053
+ duration?: number | null | undefined;
10054
+ durationType?: import("../..").DurationType | null | undefined;
10055
+ tiers?: number[] | null | undefined;
10056
+ enableBonus?: boolean | undefined;
10057
+ principalAmount?: number | null | undefined;
10058
+ maxTotalRaise?: number | null | undefined;
10059
+ interestRate?: number | null | undefined;
10060
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10061
+ bonusTiers?: {
10062
+ value: number;
10063
+ type: import("../../common/types/bonus-tier.types").BonusType;
10064
+ startAmount: number;
10065
+ endAmount: number;
10066
+ }[] | undefined;
9828
10067
  }>;
9829
10068
  pathParams: import("zod").ZodObject<{
9830
10069
  id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -9934,6 +10173,49 @@ export declare const clientsContract: {
9934
10173
  template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
9935
10174
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
9936
10175
  enableBonus: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
10176
+ hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
10177
+ bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
10178
+ 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
+ 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
+ bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
10184
+ type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
10185
+ value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
10186
+ startAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
10187
+ endAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
10188
+ }, "strip", import("zod").ZodTypeAny, {
10189
+ value: number;
10190
+ type: import("../../common/types/bonus-tier.types").BonusType;
10191
+ startAmount: number;
10192
+ endAmount: number;
10193
+ }, {
10194
+ value: number;
10195
+ type: import("../../common/types/bonus-tier.types").BonusType;
10196
+ startAmount: number;
10197
+ endAmount: number;
10198
+ }>, {
10199
+ value: number;
10200
+ type: import("../../common/types/bonus-tier.types").BonusType;
10201
+ startAmount: number;
10202
+ endAmount: number;
10203
+ }, {
10204
+ value: number;
10205
+ type: import("../../common/types/bonus-tier.types").BonusType;
10206
+ startAmount: number;
10207
+ endAmount: number;
10208
+ }>, {
10209
+ value: number;
10210
+ type: import("../../common/types/bonus-tier.types").BonusType;
10211
+ startAmount: number;
10212
+ endAmount: number;
10213
+ }, {
10214
+ value: number;
10215
+ type: import("../../common/types/bonus-tier.types").BonusType;
10216
+ startAmount: number;
10217
+ endAmount: number;
10218
+ }>, "many">>;
9937
10219
  }, "strip", import("zod").ZodTypeAny, {
9938
10220
  type: import("../..").OfferingType;
9939
10221
  name: string;
@@ -9954,11 +10236,24 @@ export declare const clientsContract: {
9954
10236
  startAt?: Date | null | undefined;
9955
10237
  endAt?: Date | null | undefined;
9956
10238
  cancellationPeriod?: number | null | undefined;
10239
+ hasEscrow?: boolean | undefined;
10240
+ bankAccountId?: string | null | undefined;
10241
+ escrowAccountId?: string | null | undefined;
9957
10242
  yield?: number | null | undefined;
9958
10243
  duration?: number | null | undefined;
9959
10244
  durationType?: import("../..").DurationType | null | undefined;
9960
10245
  tiers?: number[] | null | undefined;
9961
10246
  enableBonus?: boolean | undefined;
10247
+ principalAmount?: number | null | undefined;
10248
+ maxTotalRaise?: number | null | undefined;
10249
+ interestRate?: number | null | undefined;
10250
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10251
+ bonusTiers?: {
10252
+ value: number;
10253
+ type: import("../../common/types/bonus-tier.types").BonusType;
10254
+ startAmount: number;
10255
+ endAmount: number;
10256
+ }[] | undefined;
9962
10257
  }, {
9963
10258
  type: import("../..").OfferingType;
9964
10259
  name: string;
@@ -9979,11 +10274,24 @@ export declare const clientsContract: {
9979
10274
  startAt?: string | null | undefined;
9980
10275
  endAt?: string | null | undefined;
9981
10276
  cancellationPeriod?: number | null | undefined;
10277
+ hasEscrow?: boolean | undefined;
10278
+ bankAccountId?: string | null | undefined;
10279
+ escrowAccountId?: string | null | undefined;
9982
10280
  yield?: number | null | undefined;
9983
10281
  duration?: number | null | undefined;
9984
10282
  durationType?: import("../..").DurationType | null | undefined;
9985
10283
  tiers?: number[] | null | undefined;
9986
10284
  enableBonus?: boolean | undefined;
10285
+ principalAmount?: number | null | undefined;
10286
+ maxTotalRaise?: number | null | undefined;
10287
+ interestRate?: number | null | undefined;
10288
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10289
+ bonusTiers?: {
10290
+ value: number;
10291
+ type: import("../../common/types/bonus-tier.types").BonusType;
10292
+ startAmount: number;
10293
+ endAmount: number;
10294
+ }[] | undefined;
9987
10295
  }>, {
9988
10296
  type: import("../..").OfferingType;
9989
10297
  name: string;
@@ -10004,11 +10312,24 @@ export declare const clientsContract: {
10004
10312
  startAt?: Date | null | undefined;
10005
10313
  endAt?: Date | null | undefined;
10006
10314
  cancellationPeriod?: number | null | undefined;
10315
+ hasEscrow?: boolean | undefined;
10316
+ bankAccountId?: string | null | undefined;
10317
+ escrowAccountId?: string | null | undefined;
10007
10318
  yield?: number | null | undefined;
10008
10319
  duration?: number | null | undefined;
10009
10320
  durationType?: import("../..").DurationType | null | undefined;
10010
10321
  tiers?: number[] | null | undefined;
10011
10322
  enableBonus?: boolean | undefined;
10323
+ principalAmount?: number | null | undefined;
10324
+ maxTotalRaise?: number | null | undefined;
10325
+ interestRate?: number | null | undefined;
10326
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10327
+ bonusTiers?: {
10328
+ value: number;
10329
+ type: import("../../common/types/bonus-tier.types").BonusType;
10330
+ startAmount: number;
10331
+ endAmount: number;
10332
+ }[] | undefined;
10012
10333
  }, {
10013
10334
  type: import("../..").OfferingType;
10014
10335
  name: string;
@@ -10029,11 +10350,24 @@ export declare const clientsContract: {
10029
10350
  startAt?: string | null | undefined;
10030
10351
  endAt?: string | null | undefined;
10031
10352
  cancellationPeriod?: number | null | undefined;
10353
+ hasEscrow?: boolean | undefined;
10354
+ bankAccountId?: string | null | undefined;
10355
+ escrowAccountId?: string | null | undefined;
10032
10356
  yield?: number | null | undefined;
10033
10357
  duration?: number | null | undefined;
10034
10358
  durationType?: import("../..").DurationType | null | undefined;
10035
10359
  tiers?: number[] | null | undefined;
10036
10360
  enableBonus?: boolean | undefined;
10361
+ principalAmount?: number | null | undefined;
10362
+ maxTotalRaise?: number | null | undefined;
10363
+ interestRate?: number | null | undefined;
10364
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10365
+ bonusTiers?: {
10366
+ value: number;
10367
+ type: import("../../common/types/bonus-tier.types").BonusType;
10368
+ startAmount: number;
10369
+ endAmount: number;
10370
+ }[] | undefined;
10037
10371
  }>;
10038
10372
  summary: "[ADMIN] Create offering";
10039
10373
  path: "/clients/api/v1/offerings";