@dalmore/api-contracts 0.0.0-dev.b0aad1d → 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 (42) hide show
  1. package/common/types/account-setting.types.d.ts +66 -17
  2. package/common/types/account-setting.types.js +31 -2
  3. package/common/types/account-setting.types.js.map +1 -1
  4. package/common/types/account.types.d.ts +23 -32
  5. package/common/types/account.types.js +0 -1
  6. package/common/types/account.types.js.map +1 -1
  7. package/common/types/asset.types.d.ts +111 -25
  8. package/common/types/asset.types.js +100 -24
  9. package/common/types/asset.types.js.map +1 -1
  10. package/common/types/bonus-tier.types.d.ts +30 -0
  11. package/common/types/cap-table.types.d.ts +0 -15
  12. package/common/types/cap-table.types.js +0 -17
  13. package/common/types/cap-table.types.js.map +1 -1
  14. package/common/types/common.types.d.ts +1 -292
  15. package/common/types/common.types.js +0 -30
  16. package/common/types/common.types.js.map +1 -1
  17. package/common/types/file.types.d.ts +0 -21
  18. package/common/types/file.types.js +0 -9
  19. package/common/types/file.types.js.map +1 -1
  20. package/common/types/index.d.ts +0 -2
  21. package/common/types/index.js +0 -2
  22. package/common/types/index.js.map +1 -1
  23. package/common/types/issuer-offering.types.d.ts +67 -3
  24. package/common/types/issuer-offering.types.js +58 -33
  25. package/common/types/issuer-offering.types.js.map +1 -1
  26. package/common/types/offering-submission.types.d.ts +0 -198
  27. package/common/types/offering-submission.types.js +3 -16
  28. package/common/types/offering-submission.types.js.map +1 -1
  29. package/common/types/offering.types.d.ts +40 -1
  30. package/common/types/offering.types.js +47 -3
  31. package/common/types/offering.types.js.map +1 -1
  32. package/common/types/site.types.d.ts +15 -0
  33. package/common/types/user.types.d.ts +58 -87
  34. package/common/types/user.types.js +0 -3
  35. package/common/types/user.types.js.map +1 -1
  36. package/contracts/clients/assets/index.d.ts +66 -0
  37. package/contracts/clients/index.d.ts +96 -0
  38. package/contracts/clients/offerings/index.d.ts +30 -0
  39. package/package.json +1 -1
  40. package/common/types/reports.types.d.ts +0 -345
  41. package/common/types/reports.types.js +0 -69
  42. package/common/types/reports.types.js.map +0 -1
@@ -1583,7 +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>;
1586
1588
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1589
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
1587
1590
  }, "strip", import("zod").ZodTypeAny, {
1588
1591
  type: import("../..").AssetType | null;
1589
1592
  id: string;
@@ -1602,7 +1605,10 @@ export declare const clientsContract: {
1602
1605
  durationType: import("../..").DurationType | null;
1603
1606
  tiers: number[] | null;
1604
1607
  enableBonus: boolean;
1608
+ principalAmount: number | null;
1609
+ maxTotalRaise: number | null;
1605
1610
  interestRate: number | null;
1611
+ interestType: import("../../common/types/asset.types").InterestType | null;
1606
1612
  __entity?: string | undefined;
1607
1613
  account?: {
1608
1614
  status: import("../..").AccountStatus;
@@ -1637,7 +1643,10 @@ export declare const clientsContract: {
1637
1643
  durationType: import("../..").DurationType | null;
1638
1644
  tiers: number[] | null;
1639
1645
  enableBonus: boolean;
1646
+ principalAmount: number | null;
1647
+ maxTotalRaise: number | null;
1640
1648
  interestRate: number | null;
1649
+ interestType: import("../../common/types/asset.types").InterestType | null;
1641
1650
  __entity?: string | undefined;
1642
1651
  account?: {
1643
1652
  status: import("../..").AccountStatus;
@@ -1693,7 +1702,10 @@ export declare const clientsContract: {
1693
1702
  durationType: import("../..").DurationType | null;
1694
1703
  tiers: number[] | null;
1695
1704
  enableBonus: boolean;
1705
+ principalAmount: number | null;
1706
+ maxTotalRaise: number | null;
1696
1707
  interestRate: number | null;
1708
+ interestType: import("../../common/types/asset.types").InterestType | null;
1697
1709
  __entity?: string | undefined;
1698
1710
  account?: {
1699
1711
  status: import("../..").AccountStatus;
@@ -1737,7 +1749,10 @@ export declare const clientsContract: {
1737
1749
  durationType: import("../..").DurationType | null;
1738
1750
  tiers: number[] | null;
1739
1751
  enableBonus: boolean;
1752
+ principalAmount: number | null;
1753
+ maxTotalRaise: number | null;
1740
1754
  interestRate: number | null;
1755
+ interestType: import("../../common/types/asset.types").InterestType | null;
1741
1756
  __entity?: string | undefined;
1742
1757
  account?: {
1743
1758
  status: import("../..").AccountStatus;
@@ -1888,7 +1903,10 @@ export declare const clientsContract: {
1888
1903
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
1889
1904
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
1890
1905
  enableBonus: import("zod").ZodBoolean;
1906
+ principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
1907
+ maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
1891
1908
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
1909
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
1892
1910
  }, "strip", import("zod").ZodTypeAny, {
1893
1911
  type: import("../..").AssetType | null;
1894
1912
  id: string;
@@ -1907,7 +1925,10 @@ export declare const clientsContract: {
1907
1925
  durationType: import("../..").DurationType | null;
1908
1926
  tiers: number[] | null;
1909
1927
  enableBonus: boolean;
1928
+ principalAmount: number | null;
1929
+ maxTotalRaise: number | null;
1910
1930
  interestRate: number | null;
1931
+ interestType: import("../../common/types/asset.types").InterestType | null;
1911
1932
  __entity?: string | undefined;
1912
1933
  account?: {
1913
1934
  status: import("../..").AccountStatus;
@@ -1942,7 +1963,10 @@ export declare const clientsContract: {
1942
1963
  durationType: import("../..").DurationType | null;
1943
1964
  tiers: number[] | null;
1944
1965
  enableBonus: boolean;
1966
+ principalAmount: number | null;
1967
+ maxTotalRaise: number | null;
1945
1968
  interestRate: number | null;
1969
+ interestType: import("../../common/types/asset.types").InterestType | null;
1946
1970
  __entity?: string | undefined;
1947
1971
  account?: {
1948
1972
  status: import("../..").AccountStatus;
@@ -2031,7 +2055,10 @@ export declare const clientsContract: {
2031
2055
  template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
2032
2056
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2033
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>>;
2034
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>>>;
2035
2062
  }, "strip", import("zod").ZodTypeAny, {
2036
2063
  type: import("../..").AssetType;
2037
2064
  name: string;
@@ -2044,7 +2071,10 @@ export declare const clientsContract: {
2044
2071
  duration?: number | null | undefined;
2045
2072
  durationType?: import("../..").DurationType | null | undefined;
2046
2073
  tiers?: number[] | null | undefined;
2074
+ principalAmount?: number | null | undefined;
2075
+ maxTotalRaise?: number | null | undefined;
2047
2076
  interestRate?: number | null | undefined;
2077
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2048
2078
  }, {
2049
2079
  type: import("../..").AssetType;
2050
2080
  name: string;
@@ -2057,7 +2087,10 @@ export declare const clientsContract: {
2057
2087
  durationType?: import("../..").DurationType | null | undefined;
2058
2088
  tiers?: number[] | null | undefined;
2059
2089
  enableBonus?: boolean | undefined;
2090
+ principalAmount?: number | null | undefined;
2091
+ maxTotalRaise?: number | null | undefined;
2060
2092
  interestRate?: number | null | undefined;
2093
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2061
2094
  }>, {
2062
2095
  type: import("../..").AssetType;
2063
2096
  name: string;
@@ -2070,7 +2103,10 @@ export declare const clientsContract: {
2070
2103
  duration?: number | null | undefined;
2071
2104
  durationType?: import("../..").DurationType | null | undefined;
2072
2105
  tiers?: number[] | null | undefined;
2106
+ principalAmount?: number | null | undefined;
2107
+ maxTotalRaise?: number | null | undefined;
2073
2108
  interestRate?: number | null | undefined;
2109
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2074
2110
  }, {
2075
2111
  type: import("../..").AssetType;
2076
2112
  name: string;
@@ -2083,7 +2119,10 @@ export declare const clientsContract: {
2083
2119
  durationType?: import("../..").DurationType | null | undefined;
2084
2120
  tiers?: number[] | null | undefined;
2085
2121
  enableBonus?: boolean | undefined;
2122
+ principalAmount?: number | null | undefined;
2123
+ maxTotalRaise?: number | null | undefined;
2086
2124
  interestRate?: number | null | undefined;
2125
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2087
2126
  }>;
2088
2127
  summary: "Create an asset";
2089
2128
  path: "/clients/api/v1/assets";
@@ -2150,7 +2189,10 @@ export declare const clientsContract: {
2150
2189
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2151
2190
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2152
2191
  enableBonus: import("zod").ZodBoolean;
2192
+ principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
2193
+ maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
2153
2194
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2195
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
2154
2196
  }, "strip", import("zod").ZodTypeAny, {
2155
2197
  type: import("../..").AssetType | null;
2156
2198
  id: string;
@@ -2169,7 +2211,10 @@ export declare const clientsContract: {
2169
2211
  durationType: import("../..").DurationType | null;
2170
2212
  tiers: number[] | null;
2171
2213
  enableBonus: boolean;
2214
+ principalAmount: number | null;
2215
+ maxTotalRaise: number | null;
2172
2216
  interestRate: number | null;
2217
+ interestType: import("../../common/types/asset.types").InterestType | null;
2173
2218
  __entity?: string | undefined;
2174
2219
  account?: {
2175
2220
  status: import("../..").AccountStatus;
@@ -2204,7 +2249,10 @@ export declare const clientsContract: {
2204
2249
  durationType: import("../..").DurationType | null;
2205
2250
  tiers: number[] | null;
2206
2251
  enableBonus: boolean;
2252
+ principalAmount: number | null;
2253
+ maxTotalRaise: number | null;
2207
2254
  interestRate: number | null;
2255
+ interestType: import("../../common/types/asset.types").InterestType | null;
2208
2256
  __entity?: string | undefined;
2209
2257
  account?: {
2210
2258
  status: import("../..").AccountStatus;
@@ -2292,7 +2340,10 @@ export declare const clientsContract: {
2292
2340
  template: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>>>;
2293
2341
  tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
2294
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>>;
2295
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>>>;
2296
2347
  }, "strip", import("zod").ZodTypeAny, {
2297
2348
  type?: import("../..").AssetType | undefined;
2298
2349
  name?: string | undefined;
@@ -2304,7 +2355,10 @@ export declare const clientsContract: {
2304
2355
  durationType?: import("../..").DurationType | null | undefined;
2305
2356
  tiers?: number[] | null | undefined;
2306
2357
  enableBonus?: boolean | undefined;
2358
+ principalAmount?: number | null | undefined;
2359
+ maxTotalRaise?: number | null | undefined;
2307
2360
  interestRate?: number | null | undefined;
2361
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2308
2362
  }, {
2309
2363
  type?: import("../..").AssetType | undefined;
2310
2364
  name?: string | undefined;
@@ -2316,7 +2370,10 @@ export declare const clientsContract: {
2316
2370
  durationType?: import("../..").DurationType | null | undefined;
2317
2371
  tiers?: number[] | null | undefined;
2318
2372
  enableBonus?: boolean | undefined;
2373
+ principalAmount?: number | null | undefined;
2374
+ maxTotalRaise?: number | null | undefined;
2319
2375
  interestRate?: number | null | undefined;
2376
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
2320
2377
  }>;
2321
2378
  pathParams: import("zod").ZodObject<{
2322
2379
  id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
@@ -2390,7 +2447,10 @@ export declare const clientsContract: {
2390
2447
  template: import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>;
2391
2448
  tiers: import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>;
2392
2449
  enableBonus: import("zod").ZodBoolean;
2450
+ principalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
2451
+ maxTotalRaise: import("zod").ZodNullable<import("zod").ZodNumber>;
2393
2452
  interestRate: import("zod").ZodNullable<import("zod").ZodNumber>;
2453
+ interestType: import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>;
2394
2454
  }, "strip", import("zod").ZodTypeAny, {
2395
2455
  type: import("../..").AssetType | null;
2396
2456
  id: string;
@@ -2409,7 +2469,10 @@ export declare const clientsContract: {
2409
2469
  durationType: import("../..").DurationType | null;
2410
2470
  tiers: number[] | null;
2411
2471
  enableBonus: boolean;
2472
+ principalAmount: number | null;
2473
+ maxTotalRaise: number | null;
2412
2474
  interestRate: number | null;
2475
+ interestType: import("../../common/types/asset.types").InterestType | null;
2413
2476
  __entity?: string | undefined;
2414
2477
  account?: {
2415
2478
  status: import("../..").AccountStatus;
@@ -2444,7 +2507,10 @@ export declare const clientsContract: {
2444
2507
  durationType: import("../..").DurationType | null;
2445
2508
  tiers: number[] | null;
2446
2509
  enableBonus: boolean;
2510
+ principalAmount: number | null;
2511
+ maxTotalRaise: number | null;
2447
2512
  interestRate: number | null;
2513
+ interestType: import("../../common/types/asset.types").InterestType | null;
2448
2514
  __entity?: string | undefined;
2449
2515
  account?: {
2450
2516
  status: import("../..").AccountStatus;
@@ -9794,7 +9860,10 @@ export declare const clientsContract: {
9794
9860
  escrowAgreementFileId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9795
9861
  bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
9796
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>>;
9797
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>>>;
9798
9867
  bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
9799
9868
  type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
9800
9869
  value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
@@ -9862,7 +9931,10 @@ export declare const clientsContract: {
9862
9931
  durationType?: import("../..").DurationType | null | undefined;
9863
9932
  tiers?: number[] | null | undefined;
9864
9933
  enableBonus?: boolean | undefined;
9934
+ principalAmount?: number | null | undefined;
9935
+ maxTotalRaise?: number | null | undefined;
9865
9936
  interestRate?: number | null | undefined;
9937
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9866
9938
  bonusTiers?: {
9867
9939
  value: number;
9868
9940
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -9900,7 +9972,10 @@ export declare const clientsContract: {
9900
9972
  durationType?: import("../..").DurationType | null | undefined;
9901
9973
  tiers?: number[] | null | undefined;
9902
9974
  enableBonus?: boolean | undefined;
9975
+ principalAmount?: number | null | undefined;
9976
+ maxTotalRaise?: number | null | undefined;
9903
9977
  interestRate?: number | null | undefined;
9978
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9904
9979
  bonusTiers?: {
9905
9980
  value: number;
9906
9981
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -9938,7 +10013,10 @@ export declare const clientsContract: {
9938
10013
  durationType?: import("../..").DurationType | null | undefined;
9939
10014
  tiers?: number[] | null | undefined;
9940
10015
  enableBonus?: boolean | undefined;
10016
+ principalAmount?: number | null | undefined;
10017
+ maxTotalRaise?: number | null | undefined;
9941
10018
  interestRate?: number | null | undefined;
10019
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9942
10020
  bonusTiers?: {
9943
10021
  value: number;
9944
10022
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -9976,7 +10054,10 @@ export declare const clientsContract: {
9976
10054
  durationType?: import("../..").DurationType | null | undefined;
9977
10055
  tiers?: number[] | null | undefined;
9978
10056
  enableBonus?: boolean | undefined;
10057
+ principalAmount?: number | null | undefined;
10058
+ maxTotalRaise?: number | null | undefined;
9979
10059
  interestRate?: number | null | undefined;
10060
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
9980
10061
  bonusTiers?: {
9981
10062
  value: number;
9982
10063
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10095,7 +10176,10 @@ export declare const clientsContract: {
10095
10176
  hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
10096
10177
  bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
10097
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>>;
10098
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>>>;
10099
10183
  bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
10100
10184
  type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
10101
10185
  value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
@@ -10160,7 +10244,10 @@ export declare const clientsContract: {
10160
10244
  durationType?: import("../..").DurationType | null | undefined;
10161
10245
  tiers?: number[] | null | undefined;
10162
10246
  enableBonus?: boolean | undefined;
10247
+ principalAmount?: number | null | undefined;
10248
+ maxTotalRaise?: number | null | undefined;
10163
10249
  interestRate?: number | null | undefined;
10250
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10164
10251
  bonusTiers?: {
10165
10252
  value: number;
10166
10253
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10195,7 +10282,10 @@ export declare const clientsContract: {
10195
10282
  durationType?: import("../..").DurationType | null | undefined;
10196
10283
  tiers?: number[] | null | undefined;
10197
10284
  enableBonus?: boolean | undefined;
10285
+ principalAmount?: number | null | undefined;
10286
+ maxTotalRaise?: number | null | undefined;
10198
10287
  interestRate?: number | null | undefined;
10288
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10199
10289
  bonusTiers?: {
10200
10290
  value: number;
10201
10291
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10230,7 +10320,10 @@ export declare const clientsContract: {
10230
10320
  durationType?: import("../..").DurationType | null | undefined;
10231
10321
  tiers?: number[] | null | undefined;
10232
10322
  enableBonus?: boolean | undefined;
10323
+ principalAmount?: number | null | undefined;
10324
+ maxTotalRaise?: number | null | undefined;
10233
10325
  interestRate?: number | null | undefined;
10326
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10234
10327
  bonusTiers?: {
10235
10328
  value: number;
10236
10329
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -10265,7 +10358,10 @@ export declare const clientsContract: {
10265
10358
  durationType?: import("../..").DurationType | null | undefined;
10266
10359
  tiers?: number[] | null | undefined;
10267
10360
  enableBonus?: boolean | undefined;
10361
+ principalAmount?: number | null | undefined;
10362
+ maxTotalRaise?: number | null | undefined;
10268
10363
  interestRate?: number | null | undefined;
10364
+ interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
10269
10365
  bonusTiers?: {
10270
10366
  value: number;
10271
10367
  type: import("../../common/types/bonus-tier.types").BonusType;
@@ -443,7 +443,10 @@ export declare const offeringsContract: {
443
443
  escrowAgreementFileId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
444
444
  bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
445
445
  escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
446
+ principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
447
+ maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
446
448
  interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
449
+ interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
447
450
  bonusTiers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
448
451
  type: z.ZodNativeEnum<typeof import("../../../common/types/bonus-tier.types").BonusType>;
449
452
  value: z.ZodEffects<z.ZodNumber, number, number>;
@@ -511,7 +514,10 @@ export declare const offeringsContract: {
511
514
  durationType?: import("../../..").DurationType | null | undefined;
512
515
  tiers?: number[] | null | undefined;
513
516
  enableBonus?: boolean | undefined;
517
+ principalAmount?: number | null | undefined;
518
+ maxTotalRaise?: number | null | undefined;
514
519
  interestRate?: number | null | undefined;
520
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
515
521
  bonusTiers?: {
516
522
  value: number;
517
523
  type: import("../../../common/types/bonus-tier.types").BonusType;
@@ -549,7 +555,10 @@ export declare const offeringsContract: {
549
555
  durationType?: import("../../..").DurationType | null | undefined;
550
556
  tiers?: number[] | null | undefined;
551
557
  enableBonus?: boolean | undefined;
558
+ principalAmount?: number | null | undefined;
559
+ maxTotalRaise?: number | null | undefined;
552
560
  interestRate?: number | null | undefined;
561
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
553
562
  bonusTiers?: {
554
563
  value: number;
555
564
  type: import("../../../common/types/bonus-tier.types").BonusType;
@@ -587,7 +596,10 @@ export declare const offeringsContract: {
587
596
  durationType?: import("../../..").DurationType | null | undefined;
588
597
  tiers?: number[] | null | undefined;
589
598
  enableBonus?: boolean | undefined;
599
+ principalAmount?: number | null | undefined;
600
+ maxTotalRaise?: number | null | undefined;
590
601
  interestRate?: number | null | undefined;
602
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
591
603
  bonusTiers?: {
592
604
  value: number;
593
605
  type: import("../../../common/types/bonus-tier.types").BonusType;
@@ -625,7 +637,10 @@ export declare const offeringsContract: {
625
637
  durationType?: import("../../..").DurationType | null | undefined;
626
638
  tiers?: number[] | null | undefined;
627
639
  enableBonus?: boolean | undefined;
640
+ principalAmount?: number | null | undefined;
641
+ maxTotalRaise?: number | null | undefined;
628
642
  interestRate?: number | null | undefined;
643
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
629
644
  bonusTiers?: {
630
645
  value: number;
631
646
  type: import("../../../common/types/bonus-tier.types").BonusType;
@@ -744,7 +759,10 @@ export declare const offeringsContract: {
744
759
  hasEscrow: z.ZodOptional<z.ZodBoolean>;
745
760
  bankAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
746
761
  escrowAccountId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
762
+ principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
763
+ maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
747
764
  interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
765
+ interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
748
766
  bonusTiers: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodObject<{
749
767
  type: z.ZodNativeEnum<typeof import("../../../common/types/bonus-tier.types").BonusType>;
750
768
  value: z.ZodEffects<z.ZodNumber, number, number>;
@@ -809,7 +827,10 @@ export declare const offeringsContract: {
809
827
  durationType?: import("../../..").DurationType | null | undefined;
810
828
  tiers?: number[] | null | undefined;
811
829
  enableBonus?: boolean | undefined;
830
+ principalAmount?: number | null | undefined;
831
+ maxTotalRaise?: number | null | undefined;
812
832
  interestRate?: number | null | undefined;
833
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
813
834
  bonusTiers?: {
814
835
  value: number;
815
836
  type: import("../../../common/types/bonus-tier.types").BonusType;
@@ -844,7 +865,10 @@ export declare const offeringsContract: {
844
865
  durationType?: import("../../..").DurationType | null | undefined;
845
866
  tiers?: number[] | null | undefined;
846
867
  enableBonus?: boolean | undefined;
868
+ principalAmount?: number | null | undefined;
869
+ maxTotalRaise?: number | null | undefined;
847
870
  interestRate?: number | null | undefined;
871
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
848
872
  bonusTiers?: {
849
873
  value: number;
850
874
  type: import("../../../common/types/bonus-tier.types").BonusType;
@@ -879,7 +903,10 @@ export declare const offeringsContract: {
879
903
  durationType?: import("../../..").DurationType | null | undefined;
880
904
  tiers?: number[] | null | undefined;
881
905
  enableBonus?: boolean | undefined;
906
+ principalAmount?: number | null | undefined;
907
+ maxTotalRaise?: number | null | undefined;
882
908
  interestRate?: number | null | undefined;
909
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
883
910
  bonusTiers?: {
884
911
  value: number;
885
912
  type: import("../../../common/types/bonus-tier.types").BonusType;
@@ -914,7 +941,10 @@ export declare const offeringsContract: {
914
941
  durationType?: import("../../..").DurationType | null | undefined;
915
942
  tiers?: number[] | null | undefined;
916
943
  enableBonus?: boolean | undefined;
944
+ principalAmount?: number | null | undefined;
945
+ maxTotalRaise?: number | null | undefined;
917
946
  interestRate?: number | null | undefined;
947
+ interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
918
948
  bonusTiers?: {
919
949
  value: number;
920
950
  type: import("../../../common/types/bonus-tier.types").BonusType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dalmore/api-contracts",
3
- "version": "0.0.0-dev.b0aad1d",
3
+ "version": "0.0.0-dev.b23d491",
4
4
  "description": "Type-safe API contracts for Dalmore Client Portal",
5
5
  "type": "module",
6
6
  "main": "./index.js",