@dalmore/api-contracts 0.0.0-dev.685c0b3 → 0.0.0-dev.686830

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 (87) hide show
  1. package/common/types/account-setting.types.d.ts +41 -26
  2. package/common/types/account-setting.types.js +2 -23
  3. package/common/types/account-setting.types.js.map +1 -1
  4. package/common/types/account.types.d.ts +63 -18
  5. package/common/types/account.types.js +4 -0
  6. package/common/types/account.types.js.map +1 -1
  7. package/common/types/activity.types.d.ts +35 -25
  8. package/common/types/activity.types.js +13 -0
  9. package/common/types/activity.types.js.map +1 -1
  10. package/common/types/asset.types.d.ts +212 -0
  11. package/common/types/asset.types.js +115 -42
  12. package/common/types/asset.types.js.map +1 -1
  13. package/common/types/auth.types.d.ts +1 -1
  14. package/common/types/auth.types.js +1 -1
  15. package/common/types/auth.types.js.map +1 -1
  16. package/common/types/bonus-tier.types.d.ts +15 -4
  17. package/common/types/bonus-tier.types.js +14 -7
  18. package/common/types/bonus-tier.types.js.map +1 -1
  19. package/common/types/cap-table.types.d.ts +77 -62
  20. package/common/types/cap-table.types.js +17 -0
  21. package/common/types/cap-table.types.js.map +1 -1
  22. package/common/types/common.types.d.ts +334 -5
  23. package/common/types/common.types.js +61 -1
  24. package/common/types/common.types.js.map +1 -1
  25. package/common/types/comply-advantage-api.types.d.ts +133 -466
  26. package/common/types/comply-advantage-api.types.js +24 -3
  27. package/common/types/comply-advantage-api.types.js.map +1 -1
  28. package/common/types/dashboard.types.d.ts +7 -7
  29. package/common/types/data-record.types.d.ts +4 -4
  30. package/common/types/disbursements.types.d.ts +1439 -401
  31. package/common/types/disbursements.types.js +100 -0
  32. package/common/types/disbursements.types.js.map +1 -1
  33. package/common/types/escrow-account.types.d.ts +17 -0
  34. package/common/types/escrow-account.types.js +3 -0
  35. package/common/types/escrow-account.types.js.map +1 -1
  36. package/common/types/exchange-provider.types.d.ts +12 -12
  37. package/common/types/file.types.d.ts +35 -11
  38. package/common/types/file.types.js +11 -0
  39. package/common/types/file.types.js.map +1 -1
  40. package/common/types/index.d.ts +2 -0
  41. package/common/types/index.js +2 -0
  42. package/common/types/index.js.map +1 -1
  43. package/common/types/individuals.types.js +5 -2
  44. package/common/types/individuals.types.js.map +1 -1
  45. package/common/types/investor-account.types.d.ts +4 -4
  46. package/common/types/issuer-bank-account.types.d.ts +4 -276
  47. package/common/types/issuer-offering.types.d.ts +826 -5
  48. package/common/types/issuer-offering.types.js +277 -17
  49. package/common/types/issuer-offering.types.js.map +1 -1
  50. package/common/types/job-item.types.d.ts +14 -14
  51. package/common/types/note.types.d.ts +15 -15
  52. package/common/types/offering-submission.types.d.ts +198 -0
  53. package/common/types/offering-submission.types.js +16 -3
  54. package/common/types/offering-submission.types.js.map +1 -1
  55. package/common/types/offering.types.d.ts +513 -2
  56. package/common/types/offering.types.js +290 -11
  57. package/common/types/offering.types.js.map +1 -1
  58. package/common/types/portfolio.types.d.ts +6 -6
  59. package/common/types/reports.types.d.ts +345 -0
  60. package/common/types/reports.types.js +69 -0
  61. package/common/types/reports.types.js.map +1 -0
  62. package/common/types/secondary-order.types.d.ts +10 -10
  63. package/common/types/secondary-trade.types.d.ts +10 -10
  64. package/common/types/signer.types.d.ts +23 -11
  65. package/common/types/signer.types.js +16 -1
  66. package/common/types/signer.types.js.map +1 -1
  67. package/common/types/site.types.d.ts +5 -0
  68. package/common/types/task.types.d.ts +22 -22
  69. package/common/types/trade-line-item.types.d.ts +18 -1
  70. package/common/types/trade-line-item.types.js +12 -1
  71. package/common/types/trade-line-item.types.js.map +1 -1
  72. package/common/types/trade.types.d.ts +64 -45
  73. package/common/types/trade.types.js +14 -4
  74. package/common/types/trade.types.js.map +1 -1
  75. package/common/types/transaction.types.d.ts +80 -1
  76. package/common/types/transaction.types.js +22 -2
  77. package/common/types/transaction.types.js.map +1 -1
  78. package/common/types/user.types.d.ts +107 -54
  79. package/common/types/user.types.js +7 -0
  80. package/common/types/user.types.js.map +1 -1
  81. package/contracts/clients/assets/index.d.ts +22 -0
  82. package/contracts/clients/files/index.d.ts +3 -3
  83. package/contracts/clients/files-public/index.d.ts +3 -3
  84. package/contracts/clients/index.d.ts +337 -13
  85. package/contracts/clients/offerings/index.d.ts +300 -4
  86. package/contracts/clients/trades/index.d.ts +9 -3
  87. package/package.json +1 -1
@@ -1583,6 +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
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1586
1587
  }, "strip", import("zod").ZodTypeAny, {
1587
1588
  type: import("../..").AssetType | null;
1588
1589
  id: string;
@@ -1601,6 +1602,7 @@ export declare const clientsContract: {
1601
1602
  durationType: import("../..").DurationType | null;
1602
1603
  tiers: number[] | null;
1603
1604
  enableBonus: boolean;
1605
+ interestRate: number | null;
1604
1606
  __entity?: string | undefined;
1605
1607
  account?: {
1606
1608
  status: import("../..").AccountStatus;
@@ -1635,6 +1637,7 @@ export declare const clientsContract: {
1635
1637
  durationType: import("../..").DurationType | null;
1636
1638
  tiers: number[] | null;
1637
1639
  enableBonus: boolean;
1640
+ interestRate: number | null;
1638
1641
  __entity?: string | undefined;
1639
1642
  account?: {
1640
1643
  status: import("../..").AccountStatus;
@@ -1690,6 +1693,7 @@ export declare const clientsContract: {
1690
1693
  durationType: import("../..").DurationType | null;
1691
1694
  tiers: number[] | null;
1692
1695
  enableBonus: boolean;
1696
+ interestRate: number | null;
1693
1697
  __entity?: string | undefined;
1694
1698
  account?: {
1695
1699
  status: import("../..").AccountStatus;
@@ -1733,6 +1737,7 @@ export declare const clientsContract: {
1733
1737
  durationType: import("../..").DurationType | null;
1734
1738
  tiers: number[] | null;
1735
1739
  enableBonus: boolean;
1740
+ interestRate: number | null;
1736
1741
  __entity?: string | undefined;
1737
1742
  account?: {
1738
1743
  status: import("../..").AccountStatus;
@@ -1883,6 +1888,7 @@ export declare const clientsContract: {
1883
1888
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
1884
1889
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
1885
1890
  enableBonus: import("zod").ZodBoolean;
1891
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1886
1892
  }, "strip", import("zod").ZodTypeAny, {
1887
1893
  type: import("../..").AssetType | null;
1888
1894
  id: string;
@@ -1901,6 +1907,7 @@ export declare const clientsContract: {
1901
1907
  durationType: import("../..").DurationType | null;
1902
1908
  tiers: number[] | null;
1903
1909
  enableBonus: boolean;
1910
+ interestRate: number | null;
1904
1911
  __entity?: string | undefined;
1905
1912
  account?: {
1906
1913
  status: import("../..").AccountStatus;
@@ -1935,6 +1942,7 @@ export declare const clientsContract: {
1935
1942
  durationType: import("../..").DurationType | null;
1936
1943
  tiers: number[] | null;
1937
1944
  enableBonus: boolean;
1945
+ interestRate: number | null;
1938
1946
  __entity?: string | undefined;
1939
1947
  account?: {
1940
1948
  status: import("../..").AccountStatus;
@@ -2023,6 +2031,7 @@ export declare const clientsContract: {
2023
2031
  template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
2024
2032
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2025
2033
  enableBonus: import("zod").ZodDefault<import("zod").ZodBoolean>;
2034
+ interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2026
2035
  }, "strip", import("zod").ZodTypeAny, {
2027
2036
  type: import("../..").AssetType;
2028
2037
  name: string;
@@ -2035,6 +2044,7 @@ export declare const clientsContract: {
2035
2044
  duration?: number | null | undefined;
2036
2045
  durationType?: import("../..").DurationType | null | undefined;
2037
2046
  tiers?: number[] | null | undefined;
2047
+ interestRate?: number | null | undefined;
2038
2048
  }, {
2039
2049
  type: import("../..").AssetType;
2040
2050
  name: string;
@@ -2047,6 +2057,7 @@ export declare const clientsContract: {
2047
2057
  durationType?: import("../..").DurationType | null | undefined;
2048
2058
  tiers?: number[] | null | undefined;
2049
2059
  enableBonus?: boolean | undefined;
2060
+ interestRate?: number | null | undefined;
2050
2061
  }>, {
2051
2062
  type: import("../..").AssetType;
2052
2063
  name: string;
@@ -2059,6 +2070,7 @@ export declare const clientsContract: {
2059
2070
  duration?: number | null | undefined;
2060
2071
  durationType?: import("../..").DurationType | null | undefined;
2061
2072
  tiers?: number[] | null | undefined;
2073
+ interestRate?: number | null | undefined;
2062
2074
  }, {
2063
2075
  type: import("../..").AssetType;
2064
2076
  name: string;
@@ -2071,6 +2083,7 @@ export declare const clientsContract: {
2071
2083
  durationType?: import("../..").DurationType | null | undefined;
2072
2084
  tiers?: number[] | null | undefined;
2073
2085
  enableBonus?: boolean | undefined;
2086
+ interestRate?: number | null | undefined;
2074
2087
  }>;
2075
2088
  summary: "Create an asset";
2076
2089
  path: "/clients/api/v1/assets";
@@ -2137,6 +2150,7 @@ export declare const clientsContract: {
2137
2150
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2138
2151
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2139
2152
  enableBonus: import("zod").ZodBoolean;
2153
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2140
2154
  }, "strip", import("zod").ZodTypeAny, {
2141
2155
  type: import("../..").AssetType | null;
2142
2156
  id: string;
@@ -2155,6 +2169,7 @@ export declare const clientsContract: {
2155
2169
  durationType: import("../..").DurationType | null;
2156
2170
  tiers: number[] | null;
2157
2171
  enableBonus: boolean;
2172
+ interestRate: number | null;
2158
2173
  __entity?: string | undefined;
2159
2174
  account?: {
2160
2175
  status: import("../..").AccountStatus;
@@ -2189,6 +2204,7 @@ export declare const clientsContract: {
2189
2204
  durationType: import("../..").DurationType | null;
2190
2205
  tiers: number[] | null;
2191
2206
  enableBonus: boolean;
2207
+ interestRate: number | null;
2192
2208
  __entity?: string | undefined;
2193
2209
  account?: {
2194
2210
  status: import("../..").AccountStatus;
@@ -2276,6 +2292,7 @@ export declare const clientsContract: {
2276
2292
  template: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>>>;
2277
2293
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2278
2294
  enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
2295
+ interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
2279
2296
  }, "strip", import("zod").ZodTypeAny, {
2280
2297
  type?: import("../..").AssetType | undefined;
2281
2298
  name?: string | undefined;
@@ -2287,6 +2304,7 @@ export declare const clientsContract: {
2287
2304
  durationType?: import("../..").DurationType | null | undefined;
2288
2305
  tiers?: number[] | null | undefined;
2289
2306
  enableBonus?: boolean | undefined;
2307
+ interestRate?: number | null | undefined;
2290
2308
  }, {
2291
2309
  type?: import("../..").AssetType | undefined;
2292
2310
  name?: string | undefined;
@@ -2298,6 +2316,7 @@ export declare const clientsContract: {
2298
2316
  durationType?: import("../..").DurationType | null | undefined;
2299
2317
  tiers?: number[] | null | undefined;
2300
2318
  enableBonus?: boolean | undefined;
2319
+ interestRate?: number | null | undefined;
2301
2320
  }>;
2302
2321
  pathParams: import("zod").ZodObject<{
2303
2322
  id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -2371,6 +2390,7 @@ export declare const clientsContract: {
2371
2390
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2372
2391
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2373
2392
  enableBonus: import("zod").ZodBoolean;
2393
+ interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2374
2394
  }, "strip", import("zod").ZodTypeAny, {
2375
2395
  type: import("../..").AssetType | null;
2376
2396
  id: string;
@@ -2389,6 +2409,7 @@ export declare const clientsContract: {
2389
2409
  durationType: import("../..").DurationType | null;
2390
2410
  tiers: number[] | null;
2391
2411
  enableBonus: boolean;
2412
+ interestRate: number | null;
2392
2413
  __entity?: string | undefined;
2393
2414
  account?: {
2394
2415
  status: import("../..").AccountStatus;
@@ -2423,6 +2444,7 @@ export declare const clientsContract: {
2423
2444
  durationType: import("../..").DurationType | null;
2424
2445
  tiers: number[] | null;
2425
2446
  enableBonus: boolean;
2447
+ interestRate: number | null;
2426
2448
  __entity?: string | undefined;
2427
2449
  account?: {
2428
2450
  status: import("../..").AccountStatus;
@@ -3033,20 +3055,20 @@ export declare const clientsContract: {
3033
3055
  limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
3034
3056
  } & {
3035
3057
  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")[]]>>;
3058
+ 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
3059
  targetId: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodString>, string | undefined, string | undefined>;
3038
3060
  }, "strip", import("zod").ZodTypeAny, {
3039
3061
  page: number;
3040
3062
  limit: number;
3041
3063
  include: string[];
3042
3064
  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;
3065
+ 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
3066
  }, {
3045
3067
  page?: number | undefined;
3046
3068
  limit?: number | undefined;
3047
3069
  include?: string | undefined;
3048
3070
  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;
3071
+ 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
3072
  }>;
3051
3073
  summary: "Get files";
3052
3074
  path: "/clients/api/v1/files";
@@ -3584,20 +3606,20 @@ export declare const clientsContract: {
3584
3606
  limit: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
3585
3607
  } & {
3586
3608
  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")[]]>>;
3609
+ 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
3610
  targetId: import("zod").ZodEffects<import("zod").ZodOptional<import("zod").ZodString>, string | undefined, string | undefined>;
3589
3611
  }, "strip", import("zod").ZodTypeAny, {
3590
3612
  page: number;
3591
3613
  limit: number;
3592
3614
  include: string[];
3593
3615
  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;
3616
+ 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
3617
  }, {
3596
3618
  page?: number | undefined;
3597
3619
  limit?: number | undefined;
3598
3620
  include?: string | undefined;
3599
3621
  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;
3622
+ 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
3623
  }>;
3602
3624
  summary: "Get public files";
3603
3625
  path: "/clients/api/v1/files-public";
@@ -9741,7 +9763,8 @@ export declare const clientsContract: {
9741
9763
  metadata: {
9742
9764
  auth: boolean;
9743
9765
  };
9744
- body: import("zod").ZodObject<{
9766
+ body: import("zod").ZodEffects<import("zod").ZodObject<{
9767
+ shareClassId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9745
9768
  name: import("zod").ZodOptional<import("zod").ZodString>;
9746
9769
  type: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingType>>;
9747
9770
  targetAmount: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -9755,7 +9778,6 @@ export declare const clientsContract: {
9755
9778
  memorandumId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9756
9779
  subscriptionAgreementId: import("zod").ZodNullable<import("zod").ZodOptional<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9757
9780
  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
9781
  showTotalRaised: import("zod").ZodOptional<import("zod").ZodBoolean>;
9760
9782
  issuerId: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
9761
9783
  assetName: import("zod").ZodOptional<import("zod").ZodString>;
@@ -9769,10 +9791,57 @@ export declare const clientsContract: {
9769
9791
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
9770
9792
  enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
9771
9793
  enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
9794
+ hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
9795
+ escrowAgreementFileId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9796
+ bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9797
+ escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9798
+ interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9799
+ bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
9800
+ type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
9801
+ value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
9802
+ startAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
9803
+ endAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
9804
+ }, "strip", import("zod").ZodTypeAny, {
9805
+ value: number;
9806
+ type: import("../../common/types/bonus-tier.types").BonusType;
9807
+ startAmount: number;
9808
+ endAmount: number;
9809
+ }, {
9810
+ value: number;
9811
+ type: import("../../common/types/bonus-tier.types").BonusType;
9812
+ startAmount: number;
9813
+ endAmount: number;
9814
+ }>, {
9815
+ value: number;
9816
+ type: import("../../common/types/bonus-tier.types").BonusType;
9817
+ startAmount: number;
9818
+ endAmount: number;
9819
+ }, {
9820
+ value: number;
9821
+ type: import("../../common/types/bonus-tier.types").BonusType;
9822
+ startAmount: number;
9823
+ endAmount: number;
9824
+ }>, {
9825
+ value: number;
9826
+ type: import("../../common/types/bonus-tier.types").BonusType;
9827
+ startAmount: number;
9828
+ endAmount: number;
9829
+ }, {
9830
+ value: number;
9831
+ type: import("../../common/types/bonus-tier.types").BonusType;
9832
+ startAmount: number;
9833
+ endAmount: number;
9834
+ }>, "many">>;
9835
+ warrantsEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
9836
+ totalShares: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9837
+ warrantTermYears: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
9838
+ exercisePrice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9839
+ warrantPercentage: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9840
+ calculationMethod: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").WarrantSharesCalculationMethod>>>;
9841
+ incrementThreshold: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9772
9842
  }, "strip", import("zod").ZodTypeAny, {
9773
9843
  type?: import("../..").OfferingType | undefined;
9774
9844
  name?: string | undefined;
9775
- managedBy?: import("../..").ManagedByType | undefined;
9776
9845
  description?: string | null | undefined;
9777
9846
  enabled?: boolean | undefined;
9778
9847
  template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
@@ -9788,6 +9857,18 @@ export declare const clientsContract: {
9788
9857
  memorandumId?: string | null | undefined;
9789
9858
  subscriptionAgreementId?: string | null | undefined;
9790
9859
  showTotalRaised?: boolean | undefined;
9860
+ hasEscrow?: boolean | undefined;
9861
+ escrowAgreementFileId?: string | null | undefined;
9862
+ bankAccountId?: string | null | undefined;
9863
+ escrowAccountId?: string | null | undefined;
9864
+ warrantsEnabled?: boolean | undefined;
9865
+ totalShares?: number | null | undefined;
9866
+ warrantTermYears?: number | null | undefined;
9867
+ exercisePrice?: number | null | undefined;
9868
+ warrantPercentage?: number | null | undefined;
9869
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
9870
+ incrementThreshold?: number | null | undefined;
9871
+ shareClassId?: string | null | undefined;
9791
9872
  assetName?: string | undefined;
9792
9873
  assetType?: import("../..").AssetType | undefined;
9793
9874
  pricePerUnit?: number | null | undefined;
@@ -9797,10 +9878,16 @@ export declare const clientsContract: {
9797
9878
  durationType?: import("../..").DurationType | null | undefined;
9798
9879
  tiers?: number[] | null | undefined;
9799
9880
  enableBonus?: boolean | undefined;
9881
+ interestRate?: number | null | undefined;
9882
+ bonusTiers?: {
9883
+ value: number;
9884
+ type: import("../../common/types/bonus-tier.types").BonusType;
9885
+ startAmount: number;
9886
+ endAmount: number;
9887
+ }[] | undefined;
9800
9888
  }, {
9801
9889
  type?: import("../..").OfferingType | undefined;
9802
9890
  name?: string | undefined;
9803
- managedBy?: import("../..").ManagedByType | undefined;
9804
9891
  description?: string | null | undefined;
9805
9892
  enabled?: boolean | undefined;
9806
9893
  template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
@@ -9816,6 +9903,18 @@ export declare const clientsContract: {
9816
9903
  memorandumId?: string | null | undefined;
9817
9904
  subscriptionAgreementId?: string | null | undefined;
9818
9905
  showTotalRaised?: boolean | undefined;
9906
+ hasEscrow?: boolean | undefined;
9907
+ escrowAgreementFileId?: string | null | undefined;
9908
+ bankAccountId?: string | null | undefined;
9909
+ escrowAccountId?: string | null | undefined;
9910
+ warrantsEnabled?: boolean | undefined;
9911
+ totalShares?: number | null | undefined;
9912
+ warrantTermYears?: number | null | undefined;
9913
+ exercisePrice?: number | null | undefined;
9914
+ warrantPercentage?: number | null | undefined;
9915
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
9916
+ incrementThreshold?: number | null | undefined;
9917
+ shareClassId?: string | null | undefined;
9819
9918
  assetName?: string | undefined;
9820
9919
  assetType?: import("../..").AssetType | undefined;
9821
9920
  pricePerUnit?: number | null | undefined;
@@ -9825,6 +9924,105 @@ export declare const clientsContract: {
9825
9924
  durationType?: import("../..").DurationType | null | undefined;
9826
9925
  tiers?: number[] | null | undefined;
9827
9926
  enableBonus?: boolean | undefined;
9927
+ interestRate?: number | null | undefined;
9928
+ bonusTiers?: {
9929
+ value: number;
9930
+ type: import("../../common/types/bonus-tier.types").BonusType;
9931
+ startAmount: number;
9932
+ endAmount: number;
9933
+ }[] | undefined;
9934
+ }>, {
9935
+ type?: import("../..").OfferingType | undefined;
9936
+ name?: string | undefined;
9937
+ description?: string | null | undefined;
9938
+ enabled?: boolean | undefined;
9939
+ template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
9940
+ coverArtId?: string | null | undefined;
9941
+ targetAmount?: number | undefined;
9942
+ minInvestment?: number | null | undefined;
9943
+ maxInvestment?: number | null | undefined;
9944
+ contingencyAmount?: number | null | undefined;
9945
+ startAt?: Date | null | undefined;
9946
+ endAt?: Date | null | undefined;
9947
+ issuerId?: string | undefined;
9948
+ cancellationPeriod?: number | null | undefined;
9949
+ memorandumId?: string | null | undefined;
9950
+ subscriptionAgreementId?: string | null | undefined;
9951
+ showTotalRaised?: boolean | undefined;
9952
+ hasEscrow?: boolean | undefined;
9953
+ escrowAgreementFileId?: string | null | undefined;
9954
+ bankAccountId?: string | null | undefined;
9955
+ escrowAccountId?: string | null | undefined;
9956
+ warrantsEnabled?: boolean | undefined;
9957
+ totalShares?: number | null | undefined;
9958
+ warrantTermYears?: number | null | undefined;
9959
+ exercisePrice?: number | null | undefined;
9960
+ warrantPercentage?: number | null | undefined;
9961
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
9962
+ incrementThreshold?: number | null | undefined;
9963
+ shareClassId?: string | null | undefined;
9964
+ assetName?: string | undefined;
9965
+ assetType?: import("../..").AssetType | undefined;
9966
+ pricePerUnit?: number | null | undefined;
9967
+ totalUnits?: number | null | undefined;
9968
+ yield?: number | null | undefined;
9969
+ duration?: number | null | undefined;
9970
+ durationType?: import("../..").DurationType | null | undefined;
9971
+ tiers?: number[] | null | undefined;
9972
+ enableBonus?: boolean | undefined;
9973
+ interestRate?: number | null | undefined;
9974
+ bonusTiers?: {
9975
+ value: number;
9976
+ type: import("../../common/types/bonus-tier.types").BonusType;
9977
+ startAmount: number;
9978
+ endAmount: number;
9979
+ }[] | undefined;
9980
+ }, {
9981
+ type?: import("../..").OfferingType | undefined;
9982
+ name?: string | undefined;
9983
+ description?: string | null | undefined;
9984
+ enabled?: boolean | undefined;
9985
+ template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
9986
+ coverArtId?: string | null | undefined;
9987
+ targetAmount?: number | undefined;
9988
+ minInvestment?: number | null | undefined;
9989
+ maxInvestment?: number | null | undefined;
9990
+ contingencyAmount?: number | null | undefined;
9991
+ startAt?: string | null | undefined;
9992
+ endAt?: string | null | undefined;
9993
+ issuerId?: string | undefined;
9994
+ cancellationPeriod?: number | null | undefined;
9995
+ memorandumId?: string | null | undefined;
9996
+ subscriptionAgreementId?: string | null | undefined;
9997
+ showTotalRaised?: boolean | undefined;
9998
+ hasEscrow?: boolean | undefined;
9999
+ escrowAgreementFileId?: string | null | undefined;
10000
+ bankAccountId?: string | null | undefined;
10001
+ escrowAccountId?: string | null | undefined;
10002
+ warrantsEnabled?: boolean | undefined;
10003
+ totalShares?: number | null | undefined;
10004
+ warrantTermYears?: number | null | undefined;
10005
+ exercisePrice?: number | null | undefined;
10006
+ warrantPercentage?: number | null | undefined;
10007
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10008
+ incrementThreshold?: number | null | undefined;
10009
+ shareClassId?: string | null | undefined;
10010
+ assetName?: string | undefined;
10011
+ assetType?: import("../..").AssetType | undefined;
10012
+ pricePerUnit?: number | null | undefined;
10013
+ totalUnits?: number | null | undefined;
10014
+ yield?: number | null | undefined;
10015
+ duration?: number | null | undefined;
10016
+ durationType?: import("../..").DurationType | null | undefined;
10017
+ tiers?: number[] | null | undefined;
10018
+ enableBonus?: boolean | undefined;
10019
+ interestRate?: number | null | undefined;
10020
+ bonusTiers?: {
10021
+ value: number;
10022
+ type: import("../../common/types/bonus-tier.types").BonusType;
10023
+ startAmount: number;
10024
+ endAmount: number;
10025
+ }[] | undefined;
9828
10026
  }>;
9829
10027
  pathParams: import("zod").ZodObject<{
9830
10028
  id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -9911,6 +10109,7 @@ export declare const clientsContract: {
9911
10109
  };
9912
10110
  body: import("zod").ZodEffects<import("zod").ZodObject<{
9913
10111
  issuerId: import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
10112
+ shareClassId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9914
10113
  name: import("zod").ZodString;
9915
10114
  type: import("zod").ZodNativeEnum<typeof import("../..").OfferingType>;
9916
10115
  targetAmount: import("zod").ZodNumber;
@@ -9934,12 +10133,60 @@ export declare const clientsContract: {
9934
10133
  template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
9935
10134
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
9936
10135
  enableBonus: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
10136
+ hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
10137
+ bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
10138
+ escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
10139
+ interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10140
+ bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
10141
+ type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
10142
+ value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
10143
+ startAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
10144
+ endAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
10145
+ }, "strip", import("zod").ZodTypeAny, {
10146
+ value: number;
10147
+ type: import("../../common/types/bonus-tier.types").BonusType;
10148
+ startAmount: number;
10149
+ endAmount: number;
10150
+ }, {
10151
+ value: number;
10152
+ type: import("../../common/types/bonus-tier.types").BonusType;
10153
+ startAmount: number;
10154
+ endAmount: number;
10155
+ }>, {
10156
+ value: number;
10157
+ type: import("../../common/types/bonus-tier.types").BonusType;
10158
+ startAmount: number;
10159
+ endAmount: number;
10160
+ }, {
10161
+ value: number;
10162
+ type: import("../../common/types/bonus-tier.types").BonusType;
10163
+ startAmount: number;
10164
+ endAmount: number;
10165
+ }>, {
10166
+ value: number;
10167
+ type: import("../../common/types/bonus-tier.types").BonusType;
10168
+ startAmount: number;
10169
+ endAmount: number;
10170
+ }, {
10171
+ value: number;
10172
+ type: import("../../common/types/bonus-tier.types").BonusType;
10173
+ startAmount: number;
10174
+ endAmount: number;
10175
+ }>, "many">>;
10176
+ warrantsEnabled: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodBoolean>>;
10177
+ totalShares: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10178
+ warrantTermYears: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
10179
+ exercisePrice: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
10180
+ warrantPercentage: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
10181
+ calculationMethod: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../..").WarrantSharesCalculationMethod>>>;
10182
+ incrementThreshold: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodEffects<import("zod").ZodNumber, number, number>>>;
9937
10183
  }, "strip", import("zod").ZodTypeAny, {
9938
10184
  type: import("../..").OfferingType;
9939
10185
  name: string;
9940
10186
  template: import("../../common/types/asset.types").AssetTemplateType;
9941
10187
  targetAmount: number;
9942
10188
  issuerId: string;
10189
+ warrantsEnabled: boolean;
9943
10190
  assetName: string;
9944
10191
  assetType: import("../..").AssetType;
9945
10192
  pricePerUnit: number | null;
@@ -9954,11 +10201,28 @@ export declare const clientsContract: {
9954
10201
  startAt?: Date | null | undefined;
9955
10202
  endAt?: Date | null | undefined;
9956
10203
  cancellationPeriod?: number | null | undefined;
10204
+ hasEscrow?: boolean | undefined;
10205
+ bankAccountId?: string | null | undefined;
10206
+ escrowAccountId?: string | null | undefined;
10207
+ totalShares?: number | null | undefined;
10208
+ warrantTermYears?: number | null | undefined;
10209
+ exercisePrice?: number | null | undefined;
10210
+ warrantPercentage?: number | null | undefined;
10211
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10212
+ incrementThreshold?: number | null | undefined;
10213
+ shareClassId?: string | null | undefined;
9957
10214
  yield?: number | null | undefined;
9958
10215
  duration?: number | null | undefined;
9959
10216
  durationType?: import("../..").DurationType | null | undefined;
9960
10217
  tiers?: number[] | null | undefined;
9961
10218
  enableBonus?: boolean | undefined;
10219
+ interestRate?: number | null | undefined;
10220
+ bonusTiers?: {
10221
+ value: number;
10222
+ type: import("../../common/types/bonus-tier.types").BonusType;
10223
+ startAmount: number;
10224
+ endAmount: number;
10225
+ }[] | undefined;
9962
10226
  }, {
9963
10227
  type: import("../..").OfferingType;
9964
10228
  name: string;
@@ -9979,17 +10243,36 @@ export declare const clientsContract: {
9979
10243
  startAt?: string | null | undefined;
9980
10244
  endAt?: string | null | undefined;
9981
10245
  cancellationPeriod?: number | null | undefined;
10246
+ hasEscrow?: boolean | undefined;
10247
+ bankAccountId?: string | null | undefined;
10248
+ escrowAccountId?: string | null | undefined;
10249
+ warrantsEnabled?: boolean | undefined;
10250
+ totalShares?: number | null | undefined;
10251
+ warrantTermYears?: number | null | undefined;
10252
+ exercisePrice?: number | null | undefined;
10253
+ warrantPercentage?: number | null | undefined;
10254
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10255
+ incrementThreshold?: number | null | undefined;
10256
+ shareClassId?: string | null | undefined;
9982
10257
  yield?: number | null | undefined;
9983
10258
  duration?: number | null | undefined;
9984
10259
  durationType?: import("../..").DurationType | null | undefined;
9985
10260
  tiers?: number[] | null | undefined;
9986
10261
  enableBonus?: boolean | undefined;
10262
+ interestRate?: number | null | undefined;
10263
+ bonusTiers?: {
10264
+ value: number;
10265
+ type: import("../../common/types/bonus-tier.types").BonusType;
10266
+ startAmount: number;
10267
+ endAmount: number;
10268
+ }[] | undefined;
9987
10269
  }>, {
9988
10270
  type: import("../..").OfferingType;
9989
10271
  name: string;
9990
10272
  template: import("../../common/types/asset.types").AssetTemplateType;
9991
10273
  targetAmount: number;
9992
10274
  issuerId: string;
10275
+ warrantsEnabled: boolean;
9993
10276
  assetName: string;
9994
10277
  assetType: import("../..").AssetType;
9995
10278
  pricePerUnit: number | null;
@@ -10004,11 +10287,28 @@ export declare const clientsContract: {
10004
10287
  startAt?: Date | null | undefined;
10005
10288
  endAt?: Date | null | undefined;
10006
10289
  cancellationPeriod?: number | null | undefined;
10290
+ hasEscrow?: boolean | undefined;
10291
+ bankAccountId?: string | null | undefined;
10292
+ escrowAccountId?: string | null | undefined;
10293
+ totalShares?: number | null | undefined;
10294
+ warrantTermYears?: number | null | undefined;
10295
+ exercisePrice?: number | null | undefined;
10296
+ warrantPercentage?: number | null | undefined;
10297
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10298
+ incrementThreshold?: number | null | undefined;
10299
+ shareClassId?: string | null | undefined;
10007
10300
  yield?: number | null | undefined;
10008
10301
  duration?: number | null | undefined;
10009
10302
  durationType?: import("../..").DurationType | null | undefined;
10010
10303
  tiers?: number[] | null | undefined;
10011
10304
  enableBonus?: boolean | undefined;
10305
+ interestRate?: number | null | undefined;
10306
+ bonusTiers?: {
10307
+ value: number;
10308
+ type: import("../../common/types/bonus-tier.types").BonusType;
10309
+ startAmount: number;
10310
+ endAmount: number;
10311
+ }[] | undefined;
10012
10312
  }, {
10013
10313
  type: import("../..").OfferingType;
10014
10314
  name: string;
@@ -10029,11 +10329,29 @@ export declare const clientsContract: {
10029
10329
  startAt?: string | null | undefined;
10030
10330
  endAt?: string | null | undefined;
10031
10331
  cancellationPeriod?: number | null | undefined;
10332
+ hasEscrow?: boolean | undefined;
10333
+ bankAccountId?: string | null | undefined;
10334
+ escrowAccountId?: string | null | undefined;
10335
+ warrantsEnabled?: boolean | undefined;
10336
+ totalShares?: number | null | undefined;
10337
+ warrantTermYears?: number | null | undefined;
10338
+ exercisePrice?: number | null | undefined;
10339
+ warrantPercentage?: number | null | undefined;
10340
+ calculationMethod?: import("../..").WarrantSharesCalculationMethod | null | undefined;
10341
+ incrementThreshold?: number | null | undefined;
10342
+ shareClassId?: string | null | undefined;
10032
10343
  yield?: number | null | undefined;
10033
10344
  duration?: number | null | undefined;
10034
10345
  durationType?: import("../..").DurationType | null | undefined;
10035
10346
  tiers?: number[] | null | undefined;
10036
10347
  enableBonus?: boolean | undefined;
10348
+ interestRate?: number | null | undefined;
10349
+ bonusTiers?: {
10350
+ value: number;
10351
+ type: import("../../common/types/bonus-tier.types").BonusType;
10352
+ startAmount: number;
10353
+ endAmount: number;
10354
+ }[] | undefined;
10037
10355
  }>;
10038
10356
  summary: "[ADMIN] Create offering";
10039
10357
  path: "/clients/api/v1/offerings";
@@ -11816,7 +12134,9 @@ export declare const clientsContract: {
11816
12134
  offeringId: import("zod").ZodNullable<import("zod").ZodString>;
11817
12135
  tid: import("zod").ZodNullable<import("zod").ZodString>;
11818
12136
  investmentType: import("zod").ZodNativeEnum<typeof import("../..").InvestmentType>;
11819
- numberOfShares: import("zod").ZodNumber;
12137
+ purchasedShares: import("zod").ZodNumber;
12138
+ bonusShares: import("zod").ZodNullable<import("zod").ZodNumber>;
12139
+ totalNumberOfShares: import("zod").ZodNumber;
11820
12140
  pricePerShare: import("zod").ZodNumber;
11821
12141
  totalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
11822
12142
  tradeStatus: import("zod").ZodNativeEnum<typeof import("../..").TradeStatus>;
@@ -11835,7 +12155,9 @@ export declare const clientsContract: {
11835
12155
  investorAccountId: string | null;
11836
12156
  paymentMethodId: string | null;
11837
12157
  investmentType: import("../..").InvestmentType;
11838
- numberOfShares: number;
12158
+ purchasedShares: number;
12159
+ bonusShares: number | null;
12160
+ totalNumberOfShares: number;
11839
12161
  pricePerShare: number;
11840
12162
  totalAmount: number | null;
11841
12163
  tradeStatusUnmapped: string | null;
@@ -11853,7 +12175,9 @@ export declare const clientsContract: {
11853
12175
  investorAccountId: string | null;
11854
12176
  paymentMethodId: string | null;
11855
12177
  investmentType: import("../..").InvestmentType;
11856
- numberOfShares: number;
12178
+ purchasedShares: number;
12179
+ bonusShares: number | null;
12180
+ totalNumberOfShares: number;
11857
12181
  pricePerShare: number;
11858
12182
  totalAmount: number | null;
11859
12183
  tradeStatusUnmapped: string | null;