@dalmore/api-contracts 0.0.0-dev.9a3cfcd → 0.0.0-dev.9c4aa34
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 +5 -0
- package/common/types/account.types.d.ts +6 -6
- package/common/types/activity.types.d.ts +8 -1
- package/common/types/activity.types.js +7 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/cap-table.types.d.ts +54 -54
- package/common/types/common.types.d.ts +40 -2
- package/common/types/common.types.js +24 -1
- package/common/types/common.types.js.map +1 -1
- package/common/types/disbursement-transaction.types.d.ts +1 -1
- package/common/types/disbursement-transaction.types.js +1 -1
- package/common/types/disbursement-transaction.types.js.map +1 -1
- package/common/types/disbursements.types.d.ts +817 -0
- package/common/types/disbursements.types.js +63 -0
- package/common/types/disbursements.types.js.map +1 -1
- package/common/types/exchange-provider.types.d.ts +12 -12
- package/common/types/index.d.ts +1 -0
- package/common/types/index.js +1 -0
- package/common/types/index.js.map +1 -1
- package/common/types/investor-account.types.d.ts +1 -1
- package/common/types/investor-account.types.js +1 -2
- package/common/types/investor-account.types.js.map +1 -1
- package/common/types/invite.types.d.ts +2 -2
- package/common/types/invite.types.js +1 -1
- package/common/types/invite.types.js.map +1 -1
- package/common/types/issuer-offering.types.d.ts +166 -10
- package/common/types/issuer-offering.types.js +152 -10
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering.types.d.ts +254 -20
- package/common/types/offering.types.js +203 -17
- package/common/types/offering.types.js.map +1 -1
- package/common/types/portfolio.types.d.ts +6 -6
- package/common/types/secondary-order.types.d.ts +10 -10
- package/common/types/secondary-trade.types.d.ts +10 -10
- package/common/types/site.types.d.ts +12 -12
- package/common/types/trade.types.d.ts +9 -0
- package/common/types/trade.types.js +2 -0
- package/common/types/trade.types.js.map +1 -1
- package/common/types/transaction.types.d.ts +0 -1
- package/common/types/transaction.types.js +0 -1
- package/common/types/transaction.types.js.map +1 -1
- package/common/types/user.types.d.ts +108 -5
- package/common/types/user.types.js +6 -1
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/index.d.ts +83 -3
- package/contracts/clients/offerings/index.d.ts +83 -3
- package/package.json +1 -1
|
@@ -111,18 +111,74 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
111
111
|
investorPortalSetup: z.ZodOptional<z.ZodBoolean>;
|
|
112
112
|
paymentMethodSetup: z.ZodOptional<z.ZodBoolean>;
|
|
113
113
|
accountContactsSetup: z.ZodOptional<z.ZodBoolean>;
|
|
114
|
+
settings: z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
115
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
116
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
117
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
118
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
119
|
+
} & {
|
|
120
|
+
id: z.ZodEffects<z.ZodString, string, string>;
|
|
121
|
+
accountId: z.ZodString;
|
|
122
|
+
offeringSetup: z.ZodBoolean;
|
|
123
|
+
investorPortalSetup: z.ZodBoolean;
|
|
124
|
+
paymentMethodSetup: z.ZodBoolean;
|
|
125
|
+
accountContactsSetup: z.ZodBoolean;
|
|
126
|
+
productPrimaries: z.ZodBoolean;
|
|
127
|
+
productSecondaries: z.ZodBoolean;
|
|
128
|
+
featureDisbursements: z.ZodBoolean;
|
|
129
|
+
apiPortal: z.ZodBoolean;
|
|
130
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
131
|
+
}, "strip", z.ZodTypeAny, {
|
|
132
|
+
id: string;
|
|
133
|
+
createdAt: string | Date;
|
|
134
|
+
updatedAt: string | Date;
|
|
135
|
+
deletedAt: string | Date | null;
|
|
136
|
+
accountId: string;
|
|
137
|
+
offeringSetup: boolean;
|
|
138
|
+
investorPortalSetup: boolean;
|
|
139
|
+
paymentMethodSetup: boolean;
|
|
140
|
+
accountContactsSetup: boolean;
|
|
141
|
+
productPrimaries: boolean;
|
|
142
|
+
productSecondaries: boolean;
|
|
143
|
+
featureDisbursements: boolean;
|
|
144
|
+
apiPortal: boolean;
|
|
145
|
+
investorSiteEnabled: boolean;
|
|
146
|
+
__entity?: string | undefined;
|
|
147
|
+
}, {
|
|
148
|
+
id: string;
|
|
149
|
+
createdAt: string | Date;
|
|
150
|
+
updatedAt: string | Date;
|
|
151
|
+
deletedAt: string | Date | null;
|
|
152
|
+
accountId: string;
|
|
153
|
+
offeringSetup: boolean;
|
|
154
|
+
investorPortalSetup: boolean;
|
|
155
|
+
paymentMethodSetup: boolean;
|
|
156
|
+
accountContactsSetup: boolean;
|
|
157
|
+
productPrimaries: boolean;
|
|
158
|
+
productSecondaries: boolean;
|
|
159
|
+
featureDisbursements: boolean;
|
|
160
|
+
apiPortal: boolean;
|
|
161
|
+
investorSiteEnabled: boolean;
|
|
162
|
+
__entity?: string | undefined;
|
|
163
|
+
}>>>;
|
|
114
164
|
accountSettings: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
115
165
|
productPrimaries: z.ZodBoolean;
|
|
116
166
|
productSecondaries: z.ZodBoolean;
|
|
117
167
|
featureDisbursements: z.ZodBoolean;
|
|
168
|
+
apiPortal: z.ZodBoolean;
|
|
169
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
118
170
|
}, "strip", z.ZodTypeAny, {
|
|
119
171
|
productPrimaries: boolean;
|
|
120
172
|
productSecondaries: boolean;
|
|
121
173
|
featureDisbursements: boolean;
|
|
174
|
+
apiPortal: boolean;
|
|
175
|
+
investorSiteEnabled: boolean;
|
|
122
176
|
}, {
|
|
123
177
|
productPrimaries: boolean;
|
|
124
178
|
productSecondaries: boolean;
|
|
125
179
|
featureDisbursements: boolean;
|
|
180
|
+
apiPortal: boolean;
|
|
181
|
+
investorSiteEnabled: boolean;
|
|
126
182
|
}>, "many">>;
|
|
127
183
|
account: z.ZodOptional<z.ZodObject<{
|
|
128
184
|
id: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -137,14 +193,20 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
137
193
|
productPrimaries: z.ZodBoolean;
|
|
138
194
|
productSecondaries: z.ZodBoolean;
|
|
139
195
|
featureDisbursements: z.ZodBoolean;
|
|
196
|
+
apiPortal: z.ZodBoolean;
|
|
197
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
140
198
|
}, "strip", z.ZodTypeAny, {
|
|
141
199
|
productPrimaries: boolean;
|
|
142
200
|
productSecondaries: boolean;
|
|
143
201
|
featureDisbursements: boolean;
|
|
202
|
+
apiPortal: boolean;
|
|
203
|
+
investorSiteEnabled: boolean;
|
|
144
204
|
}, {
|
|
145
205
|
productPrimaries: boolean;
|
|
146
206
|
productSecondaries: boolean;
|
|
147
207
|
featureDisbursements: boolean;
|
|
208
|
+
apiPortal: boolean;
|
|
209
|
+
investorSiteEnabled: boolean;
|
|
148
210
|
}>, "many">>;
|
|
149
211
|
accountManager: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
150
212
|
id: z.ZodString;
|
|
@@ -623,7 +685,6 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
623
685
|
} | null | undefined;
|
|
624
686
|
referenceLink?: string | null | undefined;
|
|
625
687
|
}>>, "many">>;
|
|
626
|
-
apiPortal: z.ZodOptional<z.ZodBoolean>;
|
|
627
688
|
}, "strip", z.ZodTypeAny, {
|
|
628
689
|
status: AccountStatus;
|
|
629
690
|
id: string;
|
|
@@ -632,12 +693,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
632
693
|
investorPortalSetup?: boolean | undefined;
|
|
633
694
|
paymentMethodSetup?: boolean | undefined;
|
|
634
695
|
accountContactsSetup?: boolean | undefined;
|
|
635
|
-
apiPortal?: boolean | undefined;
|
|
636
696
|
managedBy?: ManagedByType | undefined;
|
|
637
697
|
accountSettings?: {
|
|
638
698
|
productPrimaries: boolean;
|
|
639
699
|
productSecondaries: boolean;
|
|
640
700
|
featureDisbursements: boolean;
|
|
701
|
+
apiPortal: boolean;
|
|
702
|
+
investorSiteEnabled: boolean;
|
|
641
703
|
}[] | undefined;
|
|
642
704
|
accountManager?: {
|
|
643
705
|
id: string;
|
|
@@ -744,12 +806,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
744
806
|
investorPortalSetup?: boolean | undefined;
|
|
745
807
|
paymentMethodSetup?: boolean | undefined;
|
|
746
808
|
accountContactsSetup?: boolean | undefined;
|
|
747
|
-
apiPortal?: boolean | undefined;
|
|
748
809
|
managedBy?: ManagedByType | undefined;
|
|
749
810
|
accountSettings?: {
|
|
750
811
|
productPrimaries: boolean;
|
|
751
812
|
productSecondaries: boolean;
|
|
752
813
|
featureDisbursements: boolean;
|
|
814
|
+
apiPortal: boolean;
|
|
815
|
+
investorSiteEnabled: boolean;
|
|
753
816
|
}[] | undefined;
|
|
754
817
|
accountManager?: {
|
|
755
818
|
id: string;
|
|
@@ -879,6 +942,8 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
879
942
|
productPrimaries: boolean;
|
|
880
943
|
productSecondaries: boolean;
|
|
881
944
|
featureDisbursements: boolean;
|
|
945
|
+
apiPortal: boolean;
|
|
946
|
+
investorSiteEnabled: boolean;
|
|
882
947
|
}[] | undefined;
|
|
883
948
|
userType?: UserType | undefined;
|
|
884
949
|
account?: {
|
|
@@ -889,12 +954,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
889
954
|
investorPortalSetup?: boolean | undefined;
|
|
890
955
|
paymentMethodSetup?: boolean | undefined;
|
|
891
956
|
accountContactsSetup?: boolean | undefined;
|
|
892
|
-
apiPortal?: boolean | undefined;
|
|
893
957
|
managedBy?: ManagedByType | undefined;
|
|
894
958
|
accountSettings?: {
|
|
895
959
|
productPrimaries: boolean;
|
|
896
960
|
productSecondaries: boolean;
|
|
897
961
|
featureDisbursements: boolean;
|
|
962
|
+
apiPortal: boolean;
|
|
963
|
+
investorSiteEnabled: boolean;
|
|
898
964
|
}[] | undefined;
|
|
899
965
|
accountManager?: {
|
|
900
966
|
id: string;
|
|
@@ -1014,6 +1080,23 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1014
1080
|
phoneVerified: boolean;
|
|
1015
1081
|
emailVerified: boolean;
|
|
1016
1082
|
} | undefined;
|
|
1083
|
+
settings?: {
|
|
1084
|
+
id: string;
|
|
1085
|
+
createdAt: string | Date;
|
|
1086
|
+
updatedAt: string | Date;
|
|
1087
|
+
deletedAt: string | Date | null;
|
|
1088
|
+
accountId: string;
|
|
1089
|
+
offeringSetup: boolean;
|
|
1090
|
+
investorPortalSetup: boolean;
|
|
1091
|
+
paymentMethodSetup: boolean;
|
|
1092
|
+
accountContactsSetup: boolean;
|
|
1093
|
+
productPrimaries: boolean;
|
|
1094
|
+
productSecondaries: boolean;
|
|
1095
|
+
featureDisbursements: boolean;
|
|
1096
|
+
apiPortal: boolean;
|
|
1097
|
+
investorSiteEnabled: boolean;
|
|
1098
|
+
__entity?: string | undefined;
|
|
1099
|
+
} | undefined;
|
|
1017
1100
|
}, {
|
|
1018
1101
|
type: string;
|
|
1019
1102
|
id: string;
|
|
@@ -1044,6 +1127,8 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1044
1127
|
productPrimaries: boolean;
|
|
1045
1128
|
productSecondaries: boolean;
|
|
1046
1129
|
featureDisbursements: boolean;
|
|
1130
|
+
apiPortal: boolean;
|
|
1131
|
+
investorSiteEnabled: boolean;
|
|
1047
1132
|
}[] | undefined;
|
|
1048
1133
|
userType?: UserType | undefined;
|
|
1049
1134
|
account?: {
|
|
@@ -1054,12 +1139,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1054
1139
|
investorPortalSetup?: boolean | undefined;
|
|
1055
1140
|
paymentMethodSetup?: boolean | undefined;
|
|
1056
1141
|
accountContactsSetup?: boolean | undefined;
|
|
1057
|
-
apiPortal?: boolean | undefined;
|
|
1058
1142
|
managedBy?: ManagedByType | undefined;
|
|
1059
1143
|
accountSettings?: {
|
|
1060
1144
|
productPrimaries: boolean;
|
|
1061
1145
|
productSecondaries: boolean;
|
|
1062
1146
|
featureDisbursements: boolean;
|
|
1147
|
+
apiPortal: boolean;
|
|
1148
|
+
investorSiteEnabled: boolean;
|
|
1063
1149
|
}[] | undefined;
|
|
1064
1150
|
accountManager?: {
|
|
1065
1151
|
id: string;
|
|
@@ -1179,6 +1265,23 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1179
1265
|
phoneVerified: boolean;
|
|
1180
1266
|
emailVerified: boolean;
|
|
1181
1267
|
} | undefined;
|
|
1268
|
+
settings?: {
|
|
1269
|
+
id: string;
|
|
1270
|
+
createdAt: string | Date;
|
|
1271
|
+
updatedAt: string | Date;
|
|
1272
|
+
deletedAt: string | Date | null;
|
|
1273
|
+
accountId: string;
|
|
1274
|
+
offeringSetup: boolean;
|
|
1275
|
+
investorPortalSetup: boolean;
|
|
1276
|
+
paymentMethodSetup: boolean;
|
|
1277
|
+
accountContactsSetup: boolean;
|
|
1278
|
+
productPrimaries: boolean;
|
|
1279
|
+
productSecondaries: boolean;
|
|
1280
|
+
featureDisbursements: boolean;
|
|
1281
|
+
apiPortal: boolean;
|
|
1282
|
+
investorSiteEnabled: boolean;
|
|
1283
|
+
__entity?: string | undefined;
|
|
1284
|
+
} | undefined;
|
|
1182
1285
|
}>;
|
|
1183
1286
|
export type GetMeResponse = z.infer<typeof GetMeResponse>;
|
|
1184
1287
|
export declare const UserUpdateZod: z.ZodObject<{
|
|
@@ -12,6 +12,7 @@ import { issuerIdSchema } from './issuer.types.js';
|
|
|
12
12
|
import { PhoneNumberData, TwoFactorMethod } from './sms.types.js';
|
|
13
13
|
import { IAccountManagerZod } from './account-manager.types.js';
|
|
14
14
|
import { IAccountContact } from './account-contact.types.js';
|
|
15
|
+
import { IAccountSettingZod } from './common.types.js';
|
|
15
16
|
extendZodWithOpenApi(z);
|
|
16
17
|
export var OnboardingType;
|
|
17
18
|
(function (OnboardingType) {
|
|
@@ -79,11 +80,14 @@ export const GetMeResponse = IBaseEntity.extend({
|
|
|
79
80
|
investorPortalSetup: z.boolean().optional(),
|
|
80
81
|
paymentMethodSetup: z.boolean().optional(),
|
|
81
82
|
accountContactsSetup: z.boolean().optional(),
|
|
83
|
+
settings: z.lazy(() => IAccountSettingZod).optional(),
|
|
82
84
|
accountSettings: z
|
|
83
85
|
.array(z.object({
|
|
84
86
|
productPrimaries: z.boolean(),
|
|
85
87
|
productSecondaries: z.boolean(),
|
|
86
88
|
featureDisbursements: z.boolean(),
|
|
89
|
+
apiPortal: z.boolean(),
|
|
90
|
+
investorSiteEnabled: z.boolean(),
|
|
87
91
|
}))
|
|
88
92
|
.optional(),
|
|
89
93
|
account: z
|
|
@@ -101,6 +105,8 @@ export const GetMeResponse = IBaseEntity.extend({
|
|
|
101
105
|
productPrimaries: z.boolean(),
|
|
102
106
|
productSecondaries: z.boolean(),
|
|
103
107
|
featureDisbursements: z.boolean(),
|
|
108
|
+
apiPortal: z.boolean(),
|
|
109
|
+
investorSiteEnabled: z.boolean(),
|
|
104
110
|
}))
|
|
105
111
|
.optional(),
|
|
106
112
|
accountManager: z
|
|
@@ -108,7 +114,6 @@ export const GetMeResponse = IBaseEntity.extend({
|
|
|
108
114
|
.nullable()
|
|
109
115
|
.optional(),
|
|
110
116
|
accountContacts: z.array(z.lazy(() => IAccountContact)).optional(),
|
|
111
|
-
apiPortal: z.boolean().optional(),
|
|
112
117
|
})
|
|
113
118
|
.optional(),
|
|
114
119
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.types.js","sourceRoot":"","sources":["user.types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"user.types.js","sourceRoot":"","sources":["user.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -9371,8 +9371,8 @@ export declare const clientsContract: {
|
|
|
9371
9371
|
enabled: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodBoolean, boolean, unknown>>;
|
|
9372
9372
|
managedBy: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").ManagedByType>>;
|
|
9373
9373
|
versioningType: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingVersioningType>>;
|
|
9374
|
-
combinedStatus: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingStatus>>;
|
|
9375
9374
|
onboardingStatus: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingOnboardingStatus>>;
|
|
9375
|
+
complianceReview: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").ComplianceReview>>;
|
|
9376
9376
|
}, "strip", import("zod").ZodTypeAny, {
|
|
9377
9377
|
page: number;
|
|
9378
9378
|
limit: number;
|
|
@@ -9382,12 +9382,12 @@ export declare const clientsContract: {
|
|
|
9382
9382
|
accountId?: string | undefined;
|
|
9383
9383
|
name?: string | undefined;
|
|
9384
9384
|
managedBy?: import("../..").ManagedByType | undefined;
|
|
9385
|
+
complianceReview?: import("../..").ComplianceReview | undefined;
|
|
9385
9386
|
onboardingStatus?: import("../..").OfferingOnboardingStatus | undefined;
|
|
9386
9387
|
enabled?: boolean | undefined;
|
|
9387
9388
|
issuerId?: string | undefined;
|
|
9388
9389
|
issuerName?: string | undefined;
|
|
9389
9390
|
versioningType?: import("../..").OfferingVersioningType | undefined;
|
|
9390
|
-
combinedStatus?: import("../..").OfferingStatus | undefined;
|
|
9391
9391
|
}, {
|
|
9392
9392
|
type?: import("../..").OfferingType | undefined;
|
|
9393
9393
|
status?: import("../..").ComplianceReview | undefined;
|
|
@@ -9396,13 +9396,13 @@ export declare const clientsContract: {
|
|
|
9396
9396
|
managedBy?: import("../..").ManagedByType | undefined;
|
|
9397
9397
|
page?: number | undefined;
|
|
9398
9398
|
limit?: number | undefined;
|
|
9399
|
+
complianceReview?: import("../..").ComplianceReview | undefined;
|
|
9399
9400
|
onboardingStatus?: import("../..").OfferingOnboardingStatus | undefined;
|
|
9400
9401
|
include?: string | undefined;
|
|
9401
9402
|
enabled?: unknown;
|
|
9402
9403
|
issuerId?: string | undefined;
|
|
9403
9404
|
issuerName?: string | undefined;
|
|
9404
9405
|
versioningType?: import("../..").OfferingVersioningType | undefined;
|
|
9405
|
-
combinedStatus?: import("../..").OfferingStatus | undefined;
|
|
9406
9406
|
}>;
|
|
9407
9407
|
summary: "Get offerings";
|
|
9408
9408
|
path: "/clients/api/v1/offerings";
|
|
@@ -9764,6 +9764,7 @@ export declare const clientsContract: {
|
|
|
9764
9764
|
auth: boolean;
|
|
9765
9765
|
};
|
|
9766
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>>>>;
|
|
9767
9768
|
name: import("zod").ZodOptional<import("zod").ZodString>;
|
|
9768
9769
|
type: import("zod").ZodOptional<import("zod").ZodNativeEnum<typeof import("../..").OfferingType>>;
|
|
9769
9770
|
targetAmount: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -9831,6 +9832,13 @@ export declare const clientsContract: {
|
|
|
9831
9832
|
startAmount: number;
|
|
9832
9833
|
endAmount: number;
|
|
9833
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>>>;
|
|
9834
9842
|
}, "strip", import("zod").ZodTypeAny, {
|
|
9835
9843
|
type?: import("../..").OfferingType | undefined;
|
|
9836
9844
|
name?: string | undefined;
|
|
@@ -9853,6 +9861,14 @@ export declare const clientsContract: {
|
|
|
9853
9861
|
escrowAgreementFileId?: string | null | undefined;
|
|
9854
9862
|
bankAccountId?: string | null | undefined;
|
|
9855
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;
|
|
9856
9872
|
assetName?: string | undefined;
|
|
9857
9873
|
assetType?: import("../..").AssetType | undefined;
|
|
9858
9874
|
pricePerUnit?: number | null | undefined;
|
|
@@ -9891,6 +9907,14 @@ export declare const clientsContract: {
|
|
|
9891
9907
|
escrowAgreementFileId?: string | null | undefined;
|
|
9892
9908
|
bankAccountId?: string | null | undefined;
|
|
9893
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;
|
|
9894
9918
|
assetName?: string | undefined;
|
|
9895
9919
|
assetType?: import("../..").AssetType | undefined;
|
|
9896
9920
|
pricePerUnit?: number | null | undefined;
|
|
@@ -9929,6 +9953,14 @@ export declare const clientsContract: {
|
|
|
9929
9953
|
escrowAgreementFileId?: string | null | undefined;
|
|
9930
9954
|
bankAccountId?: string | null | undefined;
|
|
9931
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;
|
|
9932
9964
|
assetName?: string | undefined;
|
|
9933
9965
|
assetType?: import("../..").AssetType | undefined;
|
|
9934
9966
|
pricePerUnit?: number | null | undefined;
|
|
@@ -9967,6 +9999,14 @@ export declare const clientsContract: {
|
|
|
9967
9999
|
escrowAgreementFileId?: string | null | undefined;
|
|
9968
10000
|
bankAccountId?: string | null | undefined;
|
|
9969
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;
|
|
9970
10010
|
assetName?: string | undefined;
|
|
9971
10011
|
assetType?: import("../..").AssetType | undefined;
|
|
9972
10012
|
pricePerUnit?: number | null | undefined;
|
|
@@ -10069,6 +10109,7 @@ export declare const clientsContract: {
|
|
|
10069
10109
|
};
|
|
10070
10110
|
body: import("zod").ZodEffects<import("zod").ZodObject<{
|
|
10071
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>>>>;
|
|
10072
10113
|
name: import("zod").ZodString;
|
|
10073
10114
|
type: import("zod").ZodNativeEnum<typeof import("../..").OfferingType>;
|
|
10074
10115
|
targetAmount: import("zod").ZodNumber;
|
|
@@ -10132,12 +10173,20 @@ export declare const clientsContract: {
|
|
|
10132
10173
|
startAmount: number;
|
|
10133
10174
|
endAmount: number;
|
|
10134
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>>>;
|
|
10135
10183
|
}, "strip", import("zod").ZodTypeAny, {
|
|
10136
10184
|
type: import("../..").OfferingType;
|
|
10137
10185
|
name: string;
|
|
10138
10186
|
template: import("../../common/types/asset.types").AssetTemplateType;
|
|
10139
10187
|
targetAmount: number;
|
|
10140
10188
|
issuerId: string;
|
|
10189
|
+
warrantsEnabled: boolean;
|
|
10141
10190
|
assetName: string;
|
|
10142
10191
|
assetType: import("../..").AssetType;
|
|
10143
10192
|
pricePerUnit: number | null;
|
|
@@ -10155,6 +10204,13 @@ export declare const clientsContract: {
|
|
|
10155
10204
|
hasEscrow?: boolean | undefined;
|
|
10156
10205
|
bankAccountId?: string | null | undefined;
|
|
10157
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;
|
|
10158
10214
|
yield?: number | null | undefined;
|
|
10159
10215
|
duration?: number | null | undefined;
|
|
10160
10216
|
durationType?: import("../..").DurationType | null | undefined;
|
|
@@ -10190,6 +10246,14 @@ export declare const clientsContract: {
|
|
|
10190
10246
|
hasEscrow?: boolean | undefined;
|
|
10191
10247
|
bankAccountId?: string | null | undefined;
|
|
10192
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;
|
|
10193
10257
|
yield?: number | null | undefined;
|
|
10194
10258
|
duration?: number | null | undefined;
|
|
10195
10259
|
durationType?: import("../..").DurationType | null | undefined;
|
|
@@ -10208,6 +10272,7 @@ export declare const clientsContract: {
|
|
|
10208
10272
|
template: import("../../common/types/asset.types").AssetTemplateType;
|
|
10209
10273
|
targetAmount: number;
|
|
10210
10274
|
issuerId: string;
|
|
10275
|
+
warrantsEnabled: boolean;
|
|
10211
10276
|
assetName: string;
|
|
10212
10277
|
assetType: import("../..").AssetType;
|
|
10213
10278
|
pricePerUnit: number | null;
|
|
@@ -10225,6 +10290,13 @@ export declare const clientsContract: {
|
|
|
10225
10290
|
hasEscrow?: boolean | undefined;
|
|
10226
10291
|
bankAccountId?: string | null | undefined;
|
|
10227
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;
|
|
10228
10300
|
yield?: number | null | undefined;
|
|
10229
10301
|
duration?: number | null | undefined;
|
|
10230
10302
|
durationType?: import("../..").DurationType | null | undefined;
|
|
@@ -10260,6 +10332,14 @@ export declare const clientsContract: {
|
|
|
10260
10332
|
hasEscrow?: boolean | undefined;
|
|
10261
10333
|
bankAccountId?: string | null | undefined;
|
|
10262
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;
|
|
10263
10343
|
yield?: number | null | undefined;
|
|
10264
10344
|
duration?: number | null | undefined;
|
|
10265
10345
|
durationType?: import("../..").DurationType | null | undefined;
|