@dalmore/api-contracts 0.0.0-dev.835d7eb → 0.0.0-dev.8f56ad5
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.types.d.ts +9 -0
- package/common/types/account.types.js +1 -0
- package/common/types/account.types.js.map +1 -1
- 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 +12 -1
- package/common/types/common.types.js +13 -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/issuer-offering.types.d.ts +163 -1
- package/common/types/issuer-offering.types.js +151 -2
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering.types.d.ts +233 -2
- package/common/types/offering.types.js +185 -3
- 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/trade.types.js +1 -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 +24 -5
- package/common/types/user.types.js +4 -1
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/index.d.ts +80 -0
- package/contracts/clients/offerings/index.d.ts +80 -0
- package/package.json +1 -1
|
@@ -115,14 +115,20 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
115
115
|
productPrimaries: z.ZodBoolean;
|
|
116
116
|
productSecondaries: z.ZodBoolean;
|
|
117
117
|
featureDisbursements: z.ZodBoolean;
|
|
118
|
+
apiPortal: z.ZodBoolean;
|
|
119
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
118
120
|
}, "strip", z.ZodTypeAny, {
|
|
119
121
|
productPrimaries: boolean;
|
|
120
122
|
productSecondaries: boolean;
|
|
121
123
|
featureDisbursements: boolean;
|
|
124
|
+
apiPortal: boolean;
|
|
125
|
+
investorSiteEnabled: boolean;
|
|
122
126
|
}, {
|
|
123
127
|
productPrimaries: boolean;
|
|
124
128
|
productSecondaries: boolean;
|
|
125
129
|
featureDisbursements: boolean;
|
|
130
|
+
apiPortal: boolean;
|
|
131
|
+
investorSiteEnabled: boolean;
|
|
126
132
|
}>, "many">>;
|
|
127
133
|
account: z.ZodOptional<z.ZodObject<{
|
|
128
134
|
id: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
@@ -137,14 +143,20 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
137
143
|
productPrimaries: z.ZodBoolean;
|
|
138
144
|
productSecondaries: z.ZodBoolean;
|
|
139
145
|
featureDisbursements: z.ZodBoolean;
|
|
146
|
+
apiPortal: z.ZodBoolean;
|
|
147
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
140
148
|
}, "strip", z.ZodTypeAny, {
|
|
141
149
|
productPrimaries: boolean;
|
|
142
150
|
productSecondaries: boolean;
|
|
143
151
|
featureDisbursements: boolean;
|
|
152
|
+
apiPortal: boolean;
|
|
153
|
+
investorSiteEnabled: boolean;
|
|
144
154
|
}, {
|
|
145
155
|
productPrimaries: boolean;
|
|
146
156
|
productSecondaries: boolean;
|
|
147
157
|
featureDisbursements: boolean;
|
|
158
|
+
apiPortal: boolean;
|
|
159
|
+
investorSiteEnabled: boolean;
|
|
148
160
|
}>, "many">>;
|
|
149
161
|
accountManager: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
150
162
|
id: z.ZodString;
|
|
@@ -623,7 +635,6 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
623
635
|
} | null | undefined;
|
|
624
636
|
referenceLink?: string | null | undefined;
|
|
625
637
|
}>>, "many">>;
|
|
626
|
-
apiPortal: z.ZodOptional<z.ZodBoolean>;
|
|
627
638
|
}, "strip", z.ZodTypeAny, {
|
|
628
639
|
status: AccountStatus;
|
|
629
640
|
id: string;
|
|
@@ -632,12 +643,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
632
643
|
investorPortalSetup?: boolean | undefined;
|
|
633
644
|
paymentMethodSetup?: boolean | undefined;
|
|
634
645
|
accountContactsSetup?: boolean | undefined;
|
|
635
|
-
apiPortal?: boolean | undefined;
|
|
636
646
|
managedBy?: ManagedByType | undefined;
|
|
637
647
|
accountSettings?: {
|
|
638
648
|
productPrimaries: boolean;
|
|
639
649
|
productSecondaries: boolean;
|
|
640
650
|
featureDisbursements: boolean;
|
|
651
|
+
apiPortal: boolean;
|
|
652
|
+
investorSiteEnabled: boolean;
|
|
641
653
|
}[] | undefined;
|
|
642
654
|
accountManager?: {
|
|
643
655
|
id: string;
|
|
@@ -744,12 +756,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
744
756
|
investorPortalSetup?: boolean | undefined;
|
|
745
757
|
paymentMethodSetup?: boolean | undefined;
|
|
746
758
|
accountContactsSetup?: boolean | undefined;
|
|
747
|
-
apiPortal?: boolean | undefined;
|
|
748
759
|
managedBy?: ManagedByType | undefined;
|
|
749
760
|
accountSettings?: {
|
|
750
761
|
productPrimaries: boolean;
|
|
751
762
|
productSecondaries: boolean;
|
|
752
763
|
featureDisbursements: boolean;
|
|
764
|
+
apiPortal: boolean;
|
|
765
|
+
investorSiteEnabled: boolean;
|
|
753
766
|
}[] | undefined;
|
|
754
767
|
accountManager?: {
|
|
755
768
|
id: string;
|
|
@@ -879,6 +892,8 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
879
892
|
productPrimaries: boolean;
|
|
880
893
|
productSecondaries: boolean;
|
|
881
894
|
featureDisbursements: boolean;
|
|
895
|
+
apiPortal: boolean;
|
|
896
|
+
investorSiteEnabled: boolean;
|
|
882
897
|
}[] | undefined;
|
|
883
898
|
userType?: UserType | undefined;
|
|
884
899
|
account?: {
|
|
@@ -889,12 +904,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
889
904
|
investorPortalSetup?: boolean | undefined;
|
|
890
905
|
paymentMethodSetup?: boolean | undefined;
|
|
891
906
|
accountContactsSetup?: boolean | undefined;
|
|
892
|
-
apiPortal?: boolean | undefined;
|
|
893
907
|
managedBy?: ManagedByType | undefined;
|
|
894
908
|
accountSettings?: {
|
|
895
909
|
productPrimaries: boolean;
|
|
896
910
|
productSecondaries: boolean;
|
|
897
911
|
featureDisbursements: boolean;
|
|
912
|
+
apiPortal: boolean;
|
|
913
|
+
investorSiteEnabled: boolean;
|
|
898
914
|
}[] | undefined;
|
|
899
915
|
accountManager?: {
|
|
900
916
|
id: string;
|
|
@@ -1044,6 +1060,8 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1044
1060
|
productPrimaries: boolean;
|
|
1045
1061
|
productSecondaries: boolean;
|
|
1046
1062
|
featureDisbursements: boolean;
|
|
1063
|
+
apiPortal: boolean;
|
|
1064
|
+
investorSiteEnabled: boolean;
|
|
1047
1065
|
}[] | undefined;
|
|
1048
1066
|
userType?: UserType | undefined;
|
|
1049
1067
|
account?: {
|
|
@@ -1054,12 +1072,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1054
1072
|
investorPortalSetup?: boolean | undefined;
|
|
1055
1073
|
paymentMethodSetup?: boolean | undefined;
|
|
1056
1074
|
accountContactsSetup?: boolean | undefined;
|
|
1057
|
-
apiPortal?: boolean | undefined;
|
|
1058
1075
|
managedBy?: ManagedByType | undefined;
|
|
1059
1076
|
accountSettings?: {
|
|
1060
1077
|
productPrimaries: boolean;
|
|
1061
1078
|
productSecondaries: boolean;
|
|
1062
1079
|
featureDisbursements: boolean;
|
|
1080
|
+
apiPortal: boolean;
|
|
1081
|
+
investorSiteEnabled: boolean;
|
|
1063
1082
|
}[] | undefined;
|
|
1064
1083
|
accountManager?: {
|
|
1065
1084
|
id: string;
|
|
@@ -84,6 +84,8 @@ export const GetMeResponse = IBaseEntity.extend({
|
|
|
84
84
|
productPrimaries: z.boolean(),
|
|
85
85
|
productSecondaries: z.boolean(),
|
|
86
86
|
featureDisbursements: z.boolean(),
|
|
87
|
+
apiPortal: z.boolean(),
|
|
88
|
+
investorSiteEnabled: z.boolean(),
|
|
87
89
|
}))
|
|
88
90
|
.optional(),
|
|
89
91
|
account: z
|
|
@@ -101,6 +103,8 @@ export const GetMeResponse = IBaseEntity.extend({
|
|
|
101
103
|
productPrimaries: z.boolean(),
|
|
102
104
|
productSecondaries: z.boolean(),
|
|
103
105
|
featureDisbursements: z.boolean(),
|
|
106
|
+
apiPortal: z.boolean(),
|
|
107
|
+
investorSiteEnabled: z.boolean(),
|
|
104
108
|
}))
|
|
105
109
|
.optional(),
|
|
106
110
|
accountManager: z
|
|
@@ -108,7 +112,6 @@ export const GetMeResponse = IBaseEntity.extend({
|
|
|
108
112
|
.nullable()
|
|
109
113
|
.optional(),
|
|
110
114
|
accountContacts: z.array(z.lazy(() => IAccountContact)).optional(),
|
|
111
|
-
apiPortal: z.boolean().optional(),
|
|
112
115
|
})
|
|
113
116
|
.optional(),
|
|
114
117
|
});
|
|
@@ -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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"}
|
|
@@ -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;
|
|
@@ -413,6 +413,7 @@ export declare const offeringsContract: {
|
|
|
413
413
|
auth: boolean;
|
|
414
414
|
};
|
|
415
415
|
body: z.ZodEffects<z.ZodObject<{
|
|
416
|
+
shareClassId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
416
417
|
name: z.ZodOptional<z.ZodString>;
|
|
417
418
|
type: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").OfferingType>>;
|
|
418
419
|
targetAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -480,6 +481,13 @@ export declare const offeringsContract: {
|
|
|
480
481
|
startAmount: number;
|
|
481
482
|
endAmount: number;
|
|
482
483
|
}>, "many">>;
|
|
484
|
+
warrantsEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
485
|
+
totalShares: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
486
|
+
warrantTermYears: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
487
|
+
exercisePrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
488
|
+
warrantPercentage: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
489
|
+
calculationMethod: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").WarrantSharesCalculationMethod>>>;
|
|
490
|
+
incrementThreshold: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
483
491
|
}, "strip", z.ZodTypeAny, {
|
|
484
492
|
type?: import("../../..").OfferingType | undefined;
|
|
485
493
|
name?: string | undefined;
|
|
@@ -502,6 +510,14 @@ export declare const offeringsContract: {
|
|
|
502
510
|
escrowAgreementFileId?: string | null | undefined;
|
|
503
511
|
bankAccountId?: string | null | undefined;
|
|
504
512
|
escrowAccountId?: string | null | undefined;
|
|
513
|
+
warrantsEnabled?: boolean | undefined;
|
|
514
|
+
totalShares?: number | null | undefined;
|
|
515
|
+
warrantTermYears?: number | null | undefined;
|
|
516
|
+
exercisePrice?: number | null | undefined;
|
|
517
|
+
warrantPercentage?: number | null | undefined;
|
|
518
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
519
|
+
incrementThreshold?: number | null | undefined;
|
|
520
|
+
shareClassId?: string | null | undefined;
|
|
505
521
|
assetName?: string | undefined;
|
|
506
522
|
assetType?: import("../../..").AssetType | undefined;
|
|
507
523
|
pricePerUnit?: number | null | undefined;
|
|
@@ -540,6 +556,14 @@ export declare const offeringsContract: {
|
|
|
540
556
|
escrowAgreementFileId?: string | null | undefined;
|
|
541
557
|
bankAccountId?: string | null | undefined;
|
|
542
558
|
escrowAccountId?: string | null | undefined;
|
|
559
|
+
warrantsEnabled?: boolean | undefined;
|
|
560
|
+
totalShares?: number | null | undefined;
|
|
561
|
+
warrantTermYears?: number | null | undefined;
|
|
562
|
+
exercisePrice?: number | null | undefined;
|
|
563
|
+
warrantPercentage?: number | null | undefined;
|
|
564
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
565
|
+
incrementThreshold?: number | null | undefined;
|
|
566
|
+
shareClassId?: string | null | undefined;
|
|
543
567
|
assetName?: string | undefined;
|
|
544
568
|
assetType?: import("../../..").AssetType | undefined;
|
|
545
569
|
pricePerUnit?: number | null | undefined;
|
|
@@ -578,6 +602,14 @@ export declare const offeringsContract: {
|
|
|
578
602
|
escrowAgreementFileId?: string | null | undefined;
|
|
579
603
|
bankAccountId?: string | null | undefined;
|
|
580
604
|
escrowAccountId?: string | null | undefined;
|
|
605
|
+
warrantsEnabled?: boolean | undefined;
|
|
606
|
+
totalShares?: number | null | undefined;
|
|
607
|
+
warrantTermYears?: number | null | undefined;
|
|
608
|
+
exercisePrice?: number | null | undefined;
|
|
609
|
+
warrantPercentage?: number | null | undefined;
|
|
610
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
611
|
+
incrementThreshold?: number | null | undefined;
|
|
612
|
+
shareClassId?: string | null | undefined;
|
|
581
613
|
assetName?: string | undefined;
|
|
582
614
|
assetType?: import("../../..").AssetType | undefined;
|
|
583
615
|
pricePerUnit?: number | null | undefined;
|
|
@@ -616,6 +648,14 @@ export declare const offeringsContract: {
|
|
|
616
648
|
escrowAgreementFileId?: string | null | undefined;
|
|
617
649
|
bankAccountId?: string | null | undefined;
|
|
618
650
|
escrowAccountId?: string | null | undefined;
|
|
651
|
+
warrantsEnabled?: boolean | undefined;
|
|
652
|
+
totalShares?: number | null | undefined;
|
|
653
|
+
warrantTermYears?: number | null | undefined;
|
|
654
|
+
exercisePrice?: number | null | undefined;
|
|
655
|
+
warrantPercentage?: number | null | undefined;
|
|
656
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
657
|
+
incrementThreshold?: number | null | undefined;
|
|
658
|
+
shareClassId?: string | null | undefined;
|
|
619
659
|
assetName?: string | undefined;
|
|
620
660
|
assetType?: import("../../..").AssetType | undefined;
|
|
621
661
|
pricePerUnit?: number | null | undefined;
|
|
@@ -718,6 +758,7 @@ export declare const offeringsContract: {
|
|
|
718
758
|
};
|
|
719
759
|
body: z.ZodEffects<z.ZodObject<{
|
|
720
760
|
issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
761
|
+
shareClassId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
721
762
|
name: z.ZodString;
|
|
722
763
|
type: z.ZodNativeEnum<typeof import("../../..").OfferingType>;
|
|
723
764
|
targetAmount: z.ZodNumber;
|
|
@@ -781,12 +822,20 @@ export declare const offeringsContract: {
|
|
|
781
822
|
startAmount: number;
|
|
782
823
|
endAmount: number;
|
|
783
824
|
}>, "many">>;
|
|
825
|
+
warrantsEnabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
826
|
+
totalShares: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
827
|
+
warrantTermYears: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
828
|
+
exercisePrice: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
829
|
+
warrantPercentage: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
830
|
+
calculationMethod: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../..").WarrantSharesCalculationMethod>>>;
|
|
831
|
+
incrementThreshold: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
784
832
|
}, "strip", z.ZodTypeAny, {
|
|
785
833
|
type: import("../../..").OfferingType;
|
|
786
834
|
name: string;
|
|
787
835
|
template: import("../../../common/types/asset.types").AssetTemplateType;
|
|
788
836
|
targetAmount: number;
|
|
789
837
|
issuerId: string;
|
|
838
|
+
warrantsEnabled: boolean;
|
|
790
839
|
assetName: string;
|
|
791
840
|
assetType: import("../../..").AssetType;
|
|
792
841
|
pricePerUnit: number | null;
|
|
@@ -804,6 +853,13 @@ export declare const offeringsContract: {
|
|
|
804
853
|
hasEscrow?: boolean | undefined;
|
|
805
854
|
bankAccountId?: string | null | undefined;
|
|
806
855
|
escrowAccountId?: string | null | undefined;
|
|
856
|
+
totalShares?: number | null | undefined;
|
|
857
|
+
warrantTermYears?: number | null | undefined;
|
|
858
|
+
exercisePrice?: number | null | undefined;
|
|
859
|
+
warrantPercentage?: number | null | undefined;
|
|
860
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
861
|
+
incrementThreshold?: number | null | undefined;
|
|
862
|
+
shareClassId?: string | null | undefined;
|
|
807
863
|
yield?: number | null | undefined;
|
|
808
864
|
duration?: number | null | undefined;
|
|
809
865
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -839,6 +895,14 @@ export declare const offeringsContract: {
|
|
|
839
895
|
hasEscrow?: boolean | undefined;
|
|
840
896
|
bankAccountId?: string | null | undefined;
|
|
841
897
|
escrowAccountId?: string | null | undefined;
|
|
898
|
+
warrantsEnabled?: boolean | undefined;
|
|
899
|
+
totalShares?: number | null | undefined;
|
|
900
|
+
warrantTermYears?: number | null | undefined;
|
|
901
|
+
exercisePrice?: number | null | undefined;
|
|
902
|
+
warrantPercentage?: number | null | undefined;
|
|
903
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
904
|
+
incrementThreshold?: number | null | undefined;
|
|
905
|
+
shareClassId?: string | null | undefined;
|
|
842
906
|
yield?: number | null | undefined;
|
|
843
907
|
duration?: number | null | undefined;
|
|
844
908
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -857,6 +921,7 @@ export declare const offeringsContract: {
|
|
|
857
921
|
template: import("../../../common/types/asset.types").AssetTemplateType;
|
|
858
922
|
targetAmount: number;
|
|
859
923
|
issuerId: string;
|
|
924
|
+
warrantsEnabled: boolean;
|
|
860
925
|
assetName: string;
|
|
861
926
|
assetType: import("../../..").AssetType;
|
|
862
927
|
pricePerUnit: number | null;
|
|
@@ -874,6 +939,13 @@ export declare const offeringsContract: {
|
|
|
874
939
|
hasEscrow?: boolean | undefined;
|
|
875
940
|
bankAccountId?: string | null | undefined;
|
|
876
941
|
escrowAccountId?: string | null | undefined;
|
|
942
|
+
totalShares?: number | null | undefined;
|
|
943
|
+
warrantTermYears?: number | null | undefined;
|
|
944
|
+
exercisePrice?: number | null | undefined;
|
|
945
|
+
warrantPercentage?: number | null | undefined;
|
|
946
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
947
|
+
incrementThreshold?: number | null | undefined;
|
|
948
|
+
shareClassId?: string | null | undefined;
|
|
877
949
|
yield?: number | null | undefined;
|
|
878
950
|
duration?: number | null | undefined;
|
|
879
951
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -909,6 +981,14 @@ export declare const offeringsContract: {
|
|
|
909
981
|
hasEscrow?: boolean | undefined;
|
|
910
982
|
bankAccountId?: string | null | undefined;
|
|
911
983
|
escrowAccountId?: string | null | undefined;
|
|
984
|
+
warrantsEnabled?: boolean | undefined;
|
|
985
|
+
totalShares?: number | null | undefined;
|
|
986
|
+
warrantTermYears?: number | null | undefined;
|
|
987
|
+
exercisePrice?: number | null | undefined;
|
|
988
|
+
warrantPercentage?: number | null | undefined;
|
|
989
|
+
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
990
|
+
incrementThreshold?: number | null | undefined;
|
|
991
|
+
shareClassId?: string | null | undefined;
|
|
912
992
|
yield?: number | null | undefined;
|
|
913
993
|
duration?: number | null | undefined;
|
|
914
994
|
durationType?: import("../../..").DurationType | null | undefined;
|