@dalmore/api-contracts 0.0.0-dev.685c0b3 → 0.0.0-dev.73ad209
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.
- package/common/types/account-setting.types.d.ts +64 -0
- package/common/types/account-setting.types.js +8 -0
- package/common/types/account-setting.types.js.map +1 -1
- package/common/types/account.types.d.ts +38 -2
- package/common/types/account.types.js +3 -0
- package/common/types/account.types.js.map +1 -1
- package/common/types/activity.types.d.ts +25 -24
- package/common/types/activity.types.js +2 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/asset.types.d.ts +298 -0
- package/common/types/asset.types.js +191 -42
- package/common/types/asset.types.js.map +1 -1
- package/common/types/auth.types.d.ts +1 -1
- package/common/types/auth.types.js +1 -1
- package/common/types/auth.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +45 -4
- package/common/types/bonus-tier.types.js +15 -7
- package/common/types/bonus-tier.types.js.map +1 -1
- package/common/types/cap-table.types.d.ts +8 -8
- package/common/types/common.types.d.ts +19 -2
- package/common/types/common.types.js +12 -0
- package/common/types/common.types.js.map +1 -1
- package/common/types/comply-advantage-api.types.d.ts +133 -466
- package/common/types/comply-advantage-api.types.js +24 -3
- package/common/types/comply-advantage-api.types.js.map +1 -1
- package/common/types/dashboard.types.d.ts +7 -7
- package/common/types/data-record.types.d.ts +4 -4
- package/common/types/disbursements.types.d.ts +596 -392
- package/common/types/disbursements.types.js +37 -0
- package/common/types/disbursements.types.js.map +1 -1
- package/common/types/file.types.d.ts +9 -9
- package/common/types/investor-account.types.d.ts +4 -4
- package/common/types/issuer-bank-account.types.d.ts +4 -276
- package/common/types/issuer-offering.types.d.ts +723 -2
- package/common/types/issuer-offering.types.js +134 -3
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/job-item.types.d.ts +14 -14
- package/common/types/note.types.d.ts +15 -15
- package/common/types/offering.types.d.ts +241 -1
- package/common/types/offering.types.js +107 -10
- package/common/types/offering.types.js.map +1 -1
- package/common/types/signer.types.d.ts +23 -11
- package/common/types/signer.types.js +16 -1
- package/common/types/signer.types.js.map +1 -1
- package/common/types/site.types.d.ts +20 -0
- package/common/types/task.types.d.ts +22 -22
- package/common/types/trade-line-item.types.d.ts +18 -1
- package/common/types/trade-line-item.types.js +12 -1
- package/common/types/trade-line-item.types.js.map +1 -1
- package/common/types/trade.types.d.ts +62 -45
- package/common/types/trade.types.js +11 -4
- package/common/types/trade.types.js.map +1 -1
- package/common/types/transaction.types.d.ts +80 -1
- package/common/types/transaction.types.js +22 -2
- package/common/types/transaction.types.js.map +1 -1
- package/common/types/user.types.d.ts +5 -0
- package/common/types/user.types.js +1 -0
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +88 -0
- package/contracts/clients/files/index.d.ts +3 -3
- package/contracts/clients/files-public/index.d.ts +3 -3
- package/contracts/clients/index.d.ts +360 -10
- package/contracts/clients/offerings/index.d.ts +257 -1
- package/contracts/clients/trades/index.d.ts +9 -3
- 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", ...("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")[]]>>;
|
|
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" | 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" | 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", ...("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")[]]>>;
|
|
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" | 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" | 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>;
|
|
@@ -9769,6 +9857,50 @@ export declare const clientsContract: {
|
|
|
9769
9857
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
9770
9858
|
enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9771
9859
|
enableBonus: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9860
|
+
hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
9861
|
+
escrowAgreementFileId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
9862
|
+
bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
9863
|
+
escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
9864
|
+
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9865
|
+
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9866
|
+
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
9867
|
+
interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
|
|
9868
|
+
bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
9869
|
+
type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
|
|
9870
|
+
value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
|
|
9871
|
+
startAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
|
|
9872
|
+
endAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
|
|
9873
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
9874
|
+
value: number;
|
|
9875
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9876
|
+
startAmount: number;
|
|
9877
|
+
endAmount: number;
|
|
9878
|
+
}, {
|
|
9879
|
+
value: number;
|
|
9880
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9881
|
+
startAmount: number;
|
|
9882
|
+
endAmount: number;
|
|
9883
|
+
}>, {
|
|
9884
|
+
value: number;
|
|
9885
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9886
|
+
startAmount: number;
|
|
9887
|
+
endAmount: number;
|
|
9888
|
+
}, {
|
|
9889
|
+
value: number;
|
|
9890
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9891
|
+
startAmount: number;
|
|
9892
|
+
endAmount: number;
|
|
9893
|
+
}>, {
|
|
9894
|
+
value: number;
|
|
9895
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9896
|
+
startAmount: number;
|
|
9897
|
+
endAmount: number;
|
|
9898
|
+
}, {
|
|
9899
|
+
value: number;
|
|
9900
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9901
|
+
startAmount: number;
|
|
9902
|
+
endAmount: number;
|
|
9903
|
+
}>, "many">>;
|
|
9772
9904
|
}, "strip", import("zod").ZodTypeAny, {
|
|
9773
9905
|
type?: import("../..").OfferingType | undefined;
|
|
9774
9906
|
name?: string | undefined;
|
|
@@ -9788,6 +9920,94 @@ export declare const clientsContract: {
|
|
|
9788
9920
|
memorandumId?: string | null | undefined;
|
|
9789
9921
|
subscriptionAgreementId?: string | null | undefined;
|
|
9790
9922
|
showTotalRaised?: boolean | undefined;
|
|
9923
|
+
hasEscrow?: boolean | undefined;
|
|
9924
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
9925
|
+
bankAccountId?: string | null | undefined;
|
|
9926
|
+
escrowAccountId?: string | null | undefined;
|
|
9927
|
+
assetName?: string | undefined;
|
|
9928
|
+
assetType?: import("../..").AssetType | undefined;
|
|
9929
|
+
pricePerUnit?: number | null | undefined;
|
|
9930
|
+
totalUnits?: number | null | undefined;
|
|
9931
|
+
yield?: number | null | undefined;
|
|
9932
|
+
duration?: number | null | undefined;
|
|
9933
|
+
durationType?: import("../..").DurationType | null | undefined;
|
|
9934
|
+
tiers?: number[] | null | undefined;
|
|
9935
|
+
enableBonus?: boolean | undefined;
|
|
9936
|
+
principalAmount?: number | null | undefined;
|
|
9937
|
+
maxTotalRaise?: number | null | undefined;
|
|
9938
|
+
interestRate?: number | null | undefined;
|
|
9939
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
9940
|
+
bonusTiers?: {
|
|
9941
|
+
value: number;
|
|
9942
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9943
|
+
startAmount: number;
|
|
9944
|
+
endAmount: number;
|
|
9945
|
+
}[] | undefined;
|
|
9946
|
+
}, {
|
|
9947
|
+
type?: import("../..").OfferingType | undefined;
|
|
9948
|
+
name?: string | undefined;
|
|
9949
|
+
managedBy?: import("../..").ManagedByType | undefined;
|
|
9950
|
+
description?: string | null | undefined;
|
|
9951
|
+
enabled?: boolean | undefined;
|
|
9952
|
+
template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
|
|
9953
|
+
coverArtId?: string | null | undefined;
|
|
9954
|
+
targetAmount?: number | undefined;
|
|
9955
|
+
minInvestment?: number | null | undefined;
|
|
9956
|
+
maxInvestment?: number | null | undefined;
|
|
9957
|
+
contingencyAmount?: number | null | undefined;
|
|
9958
|
+
startAt?: string | null | undefined;
|
|
9959
|
+
endAt?: string | null | undefined;
|
|
9960
|
+
issuerId?: string | undefined;
|
|
9961
|
+
cancellationPeriod?: number | null | undefined;
|
|
9962
|
+
memorandumId?: string | null | undefined;
|
|
9963
|
+
subscriptionAgreementId?: string | null | undefined;
|
|
9964
|
+
showTotalRaised?: boolean | undefined;
|
|
9965
|
+
hasEscrow?: boolean | undefined;
|
|
9966
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
9967
|
+
bankAccountId?: string | null | undefined;
|
|
9968
|
+
escrowAccountId?: string | null | undefined;
|
|
9969
|
+
assetName?: string | undefined;
|
|
9970
|
+
assetType?: import("../..").AssetType | undefined;
|
|
9971
|
+
pricePerUnit?: number | null | undefined;
|
|
9972
|
+
totalUnits?: number | null | undefined;
|
|
9973
|
+
yield?: number | null | undefined;
|
|
9974
|
+
duration?: number | null | undefined;
|
|
9975
|
+
durationType?: import("../..").DurationType | null | undefined;
|
|
9976
|
+
tiers?: number[] | null | undefined;
|
|
9977
|
+
enableBonus?: boolean | undefined;
|
|
9978
|
+
principalAmount?: number | null | undefined;
|
|
9979
|
+
maxTotalRaise?: number | null | undefined;
|
|
9980
|
+
interestRate?: number | null | undefined;
|
|
9981
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
9982
|
+
bonusTiers?: {
|
|
9983
|
+
value: number;
|
|
9984
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
9985
|
+
startAmount: number;
|
|
9986
|
+
endAmount: number;
|
|
9987
|
+
}[] | undefined;
|
|
9988
|
+
}>, {
|
|
9989
|
+
type?: import("../..").OfferingType | undefined;
|
|
9990
|
+
name?: string | undefined;
|
|
9991
|
+
managedBy?: import("../..").ManagedByType | undefined;
|
|
9992
|
+
description?: string | null | undefined;
|
|
9993
|
+
enabled?: boolean | undefined;
|
|
9994
|
+
template?: import("../../common/types/asset.types").AssetTemplateType | null | undefined;
|
|
9995
|
+
coverArtId?: string | null | undefined;
|
|
9996
|
+
targetAmount?: number | undefined;
|
|
9997
|
+
minInvestment?: number | null | undefined;
|
|
9998
|
+
maxInvestment?: number | null | undefined;
|
|
9999
|
+
contingencyAmount?: number | null | undefined;
|
|
10000
|
+
startAt?: Date | null | undefined;
|
|
10001
|
+
endAt?: Date | null | undefined;
|
|
10002
|
+
issuerId?: string | undefined;
|
|
10003
|
+
cancellationPeriod?: number | null | undefined;
|
|
10004
|
+
memorandumId?: string | null | undefined;
|
|
10005
|
+
subscriptionAgreementId?: string | null | undefined;
|
|
10006
|
+
showTotalRaised?: boolean | undefined;
|
|
10007
|
+
hasEscrow?: boolean | undefined;
|
|
10008
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10009
|
+
bankAccountId?: string | null | undefined;
|
|
10010
|
+
escrowAccountId?: string | null | undefined;
|
|
9791
10011
|
assetName?: string | undefined;
|
|
9792
10012
|
assetType?: import("../..").AssetType | undefined;
|
|
9793
10013
|
pricePerUnit?: number | null | undefined;
|
|
@@ -9797,6 +10017,16 @@ export declare const clientsContract: {
|
|
|
9797
10017
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9798
10018
|
tiers?: number[] | null | undefined;
|
|
9799
10019
|
enableBonus?: boolean | undefined;
|
|
10020
|
+
principalAmount?: number | null | undefined;
|
|
10021
|
+
maxTotalRaise?: number | null | undefined;
|
|
10022
|
+
interestRate?: number | null | undefined;
|
|
10023
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10024
|
+
bonusTiers?: {
|
|
10025
|
+
value: number;
|
|
10026
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10027
|
+
startAmount: number;
|
|
10028
|
+
endAmount: number;
|
|
10029
|
+
}[] | undefined;
|
|
9800
10030
|
}, {
|
|
9801
10031
|
type?: import("../..").OfferingType | undefined;
|
|
9802
10032
|
name?: string | undefined;
|
|
@@ -9816,6 +10046,10 @@ export declare const clientsContract: {
|
|
|
9816
10046
|
memorandumId?: string | null | undefined;
|
|
9817
10047
|
subscriptionAgreementId?: string | null | undefined;
|
|
9818
10048
|
showTotalRaised?: boolean | undefined;
|
|
10049
|
+
hasEscrow?: boolean | undefined;
|
|
10050
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10051
|
+
bankAccountId?: string | null | undefined;
|
|
10052
|
+
escrowAccountId?: string | null | undefined;
|
|
9819
10053
|
assetName?: string | undefined;
|
|
9820
10054
|
assetType?: import("../..").AssetType | undefined;
|
|
9821
10055
|
pricePerUnit?: number | null | undefined;
|
|
@@ -9825,6 +10059,16 @@ export declare const clientsContract: {
|
|
|
9825
10059
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9826
10060
|
tiers?: number[] | null | undefined;
|
|
9827
10061
|
enableBonus?: boolean | undefined;
|
|
10062
|
+
principalAmount?: number | null | undefined;
|
|
10063
|
+
maxTotalRaise?: number | null | undefined;
|
|
10064
|
+
interestRate?: number | null | undefined;
|
|
10065
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10066
|
+
bonusTiers?: {
|
|
10067
|
+
value: number;
|
|
10068
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10069
|
+
startAmount: number;
|
|
10070
|
+
endAmount: number;
|
|
10071
|
+
}[] | undefined;
|
|
9828
10072
|
}>;
|
|
9829
10073
|
pathParams: import("zod").ZodObject<{
|
|
9830
10074
|
id: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
@@ -9934,6 +10178,50 @@ export declare const clientsContract: {
|
|
|
9934
10178
|
template: import("zod").ZodDefault<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").AssetTemplateType>>;
|
|
9935
10179
|
tiers: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodArray<import("zod").ZodNumber, "many">>>;
|
|
9936
10180
|
enableBonus: import("zod").ZodOptional<import("zod").ZodDefault<import("zod").ZodBoolean>>;
|
|
10181
|
+
hasEscrow: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
10182
|
+
escrowAgreementFileId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
10183
|
+
bankAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
10184
|
+
escrowAccountId: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodLazy<import("zod").ZodEffects<import("zod").ZodString, string, string>>>>;
|
|
10185
|
+
principalAmount: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10186
|
+
maxTotalRaise: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10187
|
+
interestRate: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNumber>>;
|
|
10188
|
+
interestType: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodNativeEnum<typeof import("../../common/types/asset.types").InterestType>>>;
|
|
10189
|
+
bonusTiers: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodEffects<import("zod").ZodObject<{
|
|
10190
|
+
type: import("zod").ZodNativeEnum<typeof import("../../common/types/bonus-tier.types").BonusType>;
|
|
10191
|
+
value: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
|
|
10192
|
+
startAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
|
|
10193
|
+
endAmount: import("zod").ZodEffects<import("zod").ZodNumber, number, number>;
|
|
10194
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
10195
|
+
value: number;
|
|
10196
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10197
|
+
startAmount: number;
|
|
10198
|
+
endAmount: number;
|
|
10199
|
+
}, {
|
|
10200
|
+
value: number;
|
|
10201
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10202
|
+
startAmount: number;
|
|
10203
|
+
endAmount: number;
|
|
10204
|
+
}>, {
|
|
10205
|
+
value: number;
|
|
10206
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10207
|
+
startAmount: number;
|
|
10208
|
+
endAmount: number;
|
|
10209
|
+
}, {
|
|
10210
|
+
value: number;
|
|
10211
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10212
|
+
startAmount: number;
|
|
10213
|
+
endAmount: number;
|
|
10214
|
+
}>, {
|
|
10215
|
+
value: number;
|
|
10216
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10217
|
+
startAmount: number;
|
|
10218
|
+
endAmount: number;
|
|
10219
|
+
}, {
|
|
10220
|
+
value: number;
|
|
10221
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10222
|
+
startAmount: number;
|
|
10223
|
+
endAmount: number;
|
|
10224
|
+
}>, "many">>;
|
|
9937
10225
|
}, "strip", import("zod").ZodTypeAny, {
|
|
9938
10226
|
type: import("../..").OfferingType;
|
|
9939
10227
|
name: string;
|
|
@@ -9954,11 +10242,25 @@ export declare const clientsContract: {
|
|
|
9954
10242
|
startAt?: Date | null | undefined;
|
|
9955
10243
|
endAt?: Date | null | undefined;
|
|
9956
10244
|
cancellationPeriod?: number | null | undefined;
|
|
10245
|
+
hasEscrow?: boolean | undefined;
|
|
10246
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10247
|
+
bankAccountId?: string | null | undefined;
|
|
10248
|
+
escrowAccountId?: string | null | undefined;
|
|
9957
10249
|
yield?: number | null | undefined;
|
|
9958
10250
|
duration?: number | null | undefined;
|
|
9959
10251
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9960
10252
|
tiers?: number[] | null | undefined;
|
|
9961
10253
|
enableBonus?: boolean | undefined;
|
|
10254
|
+
principalAmount?: number | null | undefined;
|
|
10255
|
+
maxTotalRaise?: number | null | undefined;
|
|
10256
|
+
interestRate?: number | null | undefined;
|
|
10257
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10258
|
+
bonusTiers?: {
|
|
10259
|
+
value: number;
|
|
10260
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10261
|
+
startAmount: number;
|
|
10262
|
+
endAmount: number;
|
|
10263
|
+
}[] | undefined;
|
|
9962
10264
|
}, {
|
|
9963
10265
|
type: import("../..").OfferingType;
|
|
9964
10266
|
name: string;
|
|
@@ -9979,11 +10281,25 @@ export declare const clientsContract: {
|
|
|
9979
10281
|
startAt?: string | null | undefined;
|
|
9980
10282
|
endAt?: string | null | undefined;
|
|
9981
10283
|
cancellationPeriod?: number | null | undefined;
|
|
10284
|
+
hasEscrow?: boolean | undefined;
|
|
10285
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10286
|
+
bankAccountId?: string | null | undefined;
|
|
10287
|
+
escrowAccountId?: string | null | undefined;
|
|
9982
10288
|
yield?: number | null | undefined;
|
|
9983
10289
|
duration?: number | null | undefined;
|
|
9984
10290
|
durationType?: import("../..").DurationType | null | undefined;
|
|
9985
10291
|
tiers?: number[] | null | undefined;
|
|
9986
10292
|
enableBonus?: boolean | undefined;
|
|
10293
|
+
principalAmount?: number | null | undefined;
|
|
10294
|
+
maxTotalRaise?: number | null | undefined;
|
|
10295
|
+
interestRate?: number | null | undefined;
|
|
10296
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10297
|
+
bonusTiers?: {
|
|
10298
|
+
value: number;
|
|
10299
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10300
|
+
startAmount: number;
|
|
10301
|
+
endAmount: number;
|
|
10302
|
+
}[] | undefined;
|
|
9987
10303
|
}>, {
|
|
9988
10304
|
type: import("../..").OfferingType;
|
|
9989
10305
|
name: string;
|
|
@@ -10004,11 +10320,25 @@ export declare const clientsContract: {
|
|
|
10004
10320
|
startAt?: Date | null | undefined;
|
|
10005
10321
|
endAt?: Date | null | undefined;
|
|
10006
10322
|
cancellationPeriod?: number | null | undefined;
|
|
10323
|
+
hasEscrow?: boolean | undefined;
|
|
10324
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10325
|
+
bankAccountId?: string | null | undefined;
|
|
10326
|
+
escrowAccountId?: string | null | undefined;
|
|
10007
10327
|
yield?: number | null | undefined;
|
|
10008
10328
|
duration?: number | null | undefined;
|
|
10009
10329
|
durationType?: import("../..").DurationType | null | undefined;
|
|
10010
10330
|
tiers?: number[] | null | undefined;
|
|
10011
10331
|
enableBonus?: boolean | undefined;
|
|
10332
|
+
principalAmount?: number | null | undefined;
|
|
10333
|
+
maxTotalRaise?: number | null | undefined;
|
|
10334
|
+
interestRate?: number | null | undefined;
|
|
10335
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10336
|
+
bonusTiers?: {
|
|
10337
|
+
value: number;
|
|
10338
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10339
|
+
startAmount: number;
|
|
10340
|
+
endAmount: number;
|
|
10341
|
+
}[] | undefined;
|
|
10012
10342
|
}, {
|
|
10013
10343
|
type: import("../..").OfferingType;
|
|
10014
10344
|
name: string;
|
|
@@ -10029,11 +10359,25 @@ export declare const clientsContract: {
|
|
|
10029
10359
|
startAt?: string | null | undefined;
|
|
10030
10360
|
endAt?: string | null | undefined;
|
|
10031
10361
|
cancellationPeriod?: number | null | undefined;
|
|
10362
|
+
hasEscrow?: boolean | undefined;
|
|
10363
|
+
escrowAgreementFileId?: string | null | undefined;
|
|
10364
|
+
bankAccountId?: string | null | undefined;
|
|
10365
|
+
escrowAccountId?: string | null | undefined;
|
|
10032
10366
|
yield?: number | null | undefined;
|
|
10033
10367
|
duration?: number | null | undefined;
|
|
10034
10368
|
durationType?: import("../..").DurationType | null | undefined;
|
|
10035
10369
|
tiers?: number[] | null | undefined;
|
|
10036
10370
|
enableBonus?: boolean | undefined;
|
|
10371
|
+
principalAmount?: number | null | undefined;
|
|
10372
|
+
maxTotalRaise?: number | null | undefined;
|
|
10373
|
+
interestRate?: number | null | undefined;
|
|
10374
|
+
interestType?: import("../../common/types/asset.types").InterestType | null | undefined;
|
|
10375
|
+
bonusTiers?: {
|
|
10376
|
+
value: number;
|
|
10377
|
+
type: import("../../common/types/bonus-tier.types").BonusType;
|
|
10378
|
+
startAmount: number;
|
|
10379
|
+
endAmount: number;
|
|
10380
|
+
}[] | undefined;
|
|
10037
10381
|
}>;
|
|
10038
10382
|
summary: "[ADMIN] Create offering";
|
|
10039
10383
|
path: "/clients/api/v1/offerings";
|
|
@@ -11816,7 +12160,9 @@ export declare const clientsContract: {
|
|
|
11816
12160
|
offeringId: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11817
12161
|
tid: import("zod").ZodNullable<import("zod").ZodString>;
|
|
11818
12162
|
investmentType: import("zod").ZodNativeEnum<typeof import("../..").InvestmentType>;
|
|
11819
|
-
|
|
12163
|
+
purchasedShares: import("zod").ZodNumber;
|
|
12164
|
+
bonusShares: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
12165
|
+
totalNumberOfShares: import("zod").ZodNumber;
|
|
11820
12166
|
pricePerShare: import("zod").ZodNumber;
|
|
11821
12167
|
totalAmount: import("zod").ZodNullable<import("zod").ZodNumber>;
|
|
11822
12168
|
tradeStatus: import("zod").ZodNativeEnum<typeof import("../..").TradeStatus>;
|
|
@@ -11835,7 +12181,9 @@ export declare const clientsContract: {
|
|
|
11835
12181
|
investorAccountId: string | null;
|
|
11836
12182
|
paymentMethodId: string | null;
|
|
11837
12183
|
investmentType: import("../..").InvestmentType;
|
|
11838
|
-
|
|
12184
|
+
purchasedShares: number;
|
|
12185
|
+
bonusShares: number | null;
|
|
12186
|
+
totalNumberOfShares: number;
|
|
11839
12187
|
pricePerShare: number;
|
|
11840
12188
|
totalAmount: number | null;
|
|
11841
12189
|
tradeStatusUnmapped: string | null;
|
|
@@ -11853,7 +12201,9 @@ export declare const clientsContract: {
|
|
|
11853
12201
|
investorAccountId: string | null;
|
|
11854
12202
|
paymentMethodId: string | null;
|
|
11855
12203
|
investmentType: import("../..").InvestmentType;
|
|
11856
|
-
|
|
12204
|
+
purchasedShares: number;
|
|
12205
|
+
bonusShares: number | null;
|
|
12206
|
+
totalNumberOfShares: number;
|
|
11857
12207
|
pricePerShare: number;
|
|
11858
12208
|
totalAmount: number | null;
|
|
11859
12209
|
tradeStatusUnmapped: string | null;
|