@dalmore/api-contracts 0.0.0-dev.6728794 → 0.0.0-dev.686830
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/types/account-setting.types.d.ts +17 -66
- package/common/types/account-setting.types.js +2 -31
- package/common/types/account-setting.types.js.map +1 -1
- package/common/types/account.types.d.ts +32 -23
- 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 +69 -54
- package/common/types/cap-table.types.js +17 -0
- package/common/types/cap-table.types.js.map +1 -1
- package/common/types/common.types.d.ts +302 -2
- package/common/types/common.types.js +42 -1
- package/common/types/common.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/file.types.d.ts +20 -0
- package/common/types/file.types.js +9 -0
- package/common/types/file.types.js.map +1 -1
- 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/issuer-offering.types.d.ts +165 -1
- package/common/types/issuer-offering.types.js +180 -14
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering-submission.types.d.ts +198 -0
- package/common/types/offering-submission.types.js +14 -1
- package/common/types/offering-submission.types.js.map +1 -1
- package/common/types/offering.types.d.ts +233 -2
- package/common/types/offering.types.js +186 -6
- 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/user.types.d.ts +78 -59
- 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,12 +635,22 @@ 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;
|
|
630
641
|
name: string | null;
|
|
642
|
+
offeringSetup?: boolean | undefined;
|
|
643
|
+
investorPortalSetup?: boolean | undefined;
|
|
644
|
+
paymentMethodSetup?: boolean | undefined;
|
|
645
|
+
accountContactsSetup?: boolean | undefined;
|
|
631
646
|
managedBy?: ManagedByType | undefined;
|
|
647
|
+
accountSettings?: {
|
|
648
|
+
productPrimaries: boolean;
|
|
649
|
+
productSecondaries: boolean;
|
|
650
|
+
featureDisbursements: boolean;
|
|
651
|
+
apiPortal: boolean;
|
|
652
|
+
investorSiteEnabled: boolean;
|
|
653
|
+
}[] | undefined;
|
|
632
654
|
accountManager?: {
|
|
633
655
|
id: string;
|
|
634
656
|
createdAt: string | Date;
|
|
@@ -690,16 +712,6 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
690
712
|
} | undefined;
|
|
691
713
|
} | null | undefined;
|
|
692
714
|
} | null | undefined;
|
|
693
|
-
accountSettings?: {
|
|
694
|
-
productPrimaries: boolean;
|
|
695
|
-
productSecondaries: boolean;
|
|
696
|
-
featureDisbursements: boolean;
|
|
697
|
-
}[] | undefined;
|
|
698
|
-
apiPortal?: boolean | undefined;
|
|
699
|
-
offeringSetup?: boolean | undefined;
|
|
700
|
-
investorPortalSetup?: boolean | undefined;
|
|
701
|
-
paymentMethodSetup?: boolean | undefined;
|
|
702
|
-
accountContactsSetup?: boolean | undefined;
|
|
703
715
|
accountContacts?: {
|
|
704
716
|
type: import("./common.types").AccountContactType;
|
|
705
717
|
id: string;
|
|
@@ -740,7 +752,18 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
740
752
|
status: AccountStatus;
|
|
741
753
|
id: string;
|
|
742
754
|
name: string | null;
|
|
755
|
+
offeringSetup?: boolean | undefined;
|
|
756
|
+
investorPortalSetup?: boolean | undefined;
|
|
757
|
+
paymentMethodSetup?: boolean | undefined;
|
|
758
|
+
accountContactsSetup?: boolean | undefined;
|
|
743
759
|
managedBy?: ManagedByType | undefined;
|
|
760
|
+
accountSettings?: {
|
|
761
|
+
productPrimaries: boolean;
|
|
762
|
+
productSecondaries: boolean;
|
|
763
|
+
featureDisbursements: boolean;
|
|
764
|
+
apiPortal: boolean;
|
|
765
|
+
investorSiteEnabled: boolean;
|
|
766
|
+
}[] | undefined;
|
|
744
767
|
accountManager?: {
|
|
745
768
|
id: string;
|
|
746
769
|
createdAt: string | Date;
|
|
@@ -802,16 +825,6 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
802
825
|
} | undefined;
|
|
803
826
|
} | null | undefined;
|
|
804
827
|
} | null | undefined;
|
|
805
|
-
accountSettings?: {
|
|
806
|
-
productPrimaries: boolean;
|
|
807
|
-
productSecondaries: boolean;
|
|
808
|
-
featureDisbursements: boolean;
|
|
809
|
-
}[] | undefined;
|
|
810
|
-
apiPortal?: boolean | undefined;
|
|
811
|
-
offeringSetup?: boolean | undefined;
|
|
812
|
-
investorPortalSetup?: boolean | undefined;
|
|
813
|
-
paymentMethodSetup?: boolean | undefined;
|
|
814
|
-
accountContactsSetup?: boolean | undefined;
|
|
815
828
|
accountContacts?: {
|
|
816
829
|
type: import("./common.types").AccountContactType;
|
|
817
830
|
id: string;
|
|
@@ -870,13 +883,35 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
870
883
|
accountName: string | null;
|
|
871
884
|
onboarding: string | null;
|
|
872
885
|
__entity?: string | undefined;
|
|
886
|
+
offeringSetup?: boolean | undefined;
|
|
887
|
+
investorPortalSetup?: boolean | undefined;
|
|
888
|
+
paymentMethodSetup?: boolean | undefined;
|
|
889
|
+
accountContactsSetup?: boolean | undefined;
|
|
873
890
|
managedBy?: ManagedByType | undefined;
|
|
891
|
+
accountSettings?: {
|
|
892
|
+
productPrimaries: boolean;
|
|
893
|
+
productSecondaries: boolean;
|
|
894
|
+
featureDisbursements: boolean;
|
|
895
|
+
apiPortal: boolean;
|
|
896
|
+
investorSiteEnabled: boolean;
|
|
897
|
+
}[] | undefined;
|
|
874
898
|
userType?: UserType | undefined;
|
|
875
899
|
account?: {
|
|
876
900
|
status: AccountStatus;
|
|
877
901
|
id: string;
|
|
878
902
|
name: string | null;
|
|
903
|
+
offeringSetup?: boolean | undefined;
|
|
904
|
+
investorPortalSetup?: boolean | undefined;
|
|
905
|
+
paymentMethodSetup?: boolean | undefined;
|
|
906
|
+
accountContactsSetup?: boolean | undefined;
|
|
879
907
|
managedBy?: ManagedByType | undefined;
|
|
908
|
+
accountSettings?: {
|
|
909
|
+
productPrimaries: boolean;
|
|
910
|
+
productSecondaries: boolean;
|
|
911
|
+
featureDisbursements: boolean;
|
|
912
|
+
apiPortal: boolean;
|
|
913
|
+
investorSiteEnabled: boolean;
|
|
914
|
+
}[] | undefined;
|
|
880
915
|
accountManager?: {
|
|
881
916
|
id: string;
|
|
882
917
|
createdAt: string | Date;
|
|
@@ -938,16 +973,6 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
938
973
|
} | undefined;
|
|
939
974
|
} | null | undefined;
|
|
940
975
|
} | null | undefined;
|
|
941
|
-
accountSettings?: {
|
|
942
|
-
productPrimaries: boolean;
|
|
943
|
-
productSecondaries: boolean;
|
|
944
|
-
featureDisbursements: boolean;
|
|
945
|
-
}[] | undefined;
|
|
946
|
-
apiPortal?: boolean | undefined;
|
|
947
|
-
offeringSetup?: boolean | undefined;
|
|
948
|
-
investorPortalSetup?: boolean | undefined;
|
|
949
|
-
paymentMethodSetup?: boolean | undefined;
|
|
950
|
-
accountContactsSetup?: boolean | undefined;
|
|
951
976
|
accountContacts?: {
|
|
952
977
|
type: import("./common.types").AccountContactType;
|
|
953
978
|
id: string;
|
|
@@ -985,16 +1010,7 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
985
1010
|
referenceLink?: string | null | undefined;
|
|
986
1011
|
}[] | undefined;
|
|
987
1012
|
} | undefined;
|
|
988
|
-
accountSettings?: {
|
|
989
|
-
productPrimaries: boolean;
|
|
990
|
-
productSecondaries: boolean;
|
|
991
|
-
featureDisbursements: boolean;
|
|
992
|
-
}[] | undefined;
|
|
993
1013
|
investorAccounts?: any[] | undefined;
|
|
994
|
-
offeringSetup?: boolean | undefined;
|
|
995
|
-
investorPortalSetup?: boolean | undefined;
|
|
996
|
-
paymentMethodSetup?: boolean | undefined;
|
|
997
|
-
accountContactsSetup?: boolean | undefined;
|
|
998
1014
|
cart?: any;
|
|
999
1015
|
investorOnboarding?: OnboardingType | null | undefined;
|
|
1000
1016
|
investorRegistrationFlow?: OfferingType[] | null | undefined;
|
|
@@ -1035,13 +1051,35 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1035
1051
|
accountName: string | null;
|
|
1036
1052
|
onboarding: string | null;
|
|
1037
1053
|
__entity?: string | undefined;
|
|
1054
|
+
offeringSetup?: boolean | undefined;
|
|
1055
|
+
investorPortalSetup?: boolean | undefined;
|
|
1056
|
+
paymentMethodSetup?: boolean | undefined;
|
|
1057
|
+
accountContactsSetup?: boolean | undefined;
|
|
1038
1058
|
managedBy?: ManagedByType | undefined;
|
|
1059
|
+
accountSettings?: {
|
|
1060
|
+
productPrimaries: boolean;
|
|
1061
|
+
productSecondaries: boolean;
|
|
1062
|
+
featureDisbursements: boolean;
|
|
1063
|
+
apiPortal: boolean;
|
|
1064
|
+
investorSiteEnabled: boolean;
|
|
1065
|
+
}[] | undefined;
|
|
1039
1066
|
userType?: UserType | undefined;
|
|
1040
1067
|
account?: {
|
|
1041
1068
|
status: AccountStatus;
|
|
1042
1069
|
id: string;
|
|
1043
1070
|
name: string | null;
|
|
1071
|
+
offeringSetup?: boolean | undefined;
|
|
1072
|
+
investorPortalSetup?: boolean | undefined;
|
|
1073
|
+
paymentMethodSetup?: boolean | undefined;
|
|
1074
|
+
accountContactsSetup?: boolean | undefined;
|
|
1044
1075
|
managedBy?: ManagedByType | undefined;
|
|
1076
|
+
accountSettings?: {
|
|
1077
|
+
productPrimaries: boolean;
|
|
1078
|
+
productSecondaries: boolean;
|
|
1079
|
+
featureDisbursements: boolean;
|
|
1080
|
+
apiPortal: boolean;
|
|
1081
|
+
investorSiteEnabled: boolean;
|
|
1082
|
+
}[] | undefined;
|
|
1045
1083
|
accountManager?: {
|
|
1046
1084
|
id: string;
|
|
1047
1085
|
createdAt: string | Date;
|
|
@@ -1103,16 +1141,6 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1103
1141
|
} | undefined;
|
|
1104
1142
|
} | null | undefined;
|
|
1105
1143
|
} | null | undefined;
|
|
1106
|
-
accountSettings?: {
|
|
1107
|
-
productPrimaries: boolean;
|
|
1108
|
-
productSecondaries: boolean;
|
|
1109
|
-
featureDisbursements: boolean;
|
|
1110
|
-
}[] | undefined;
|
|
1111
|
-
apiPortal?: boolean | undefined;
|
|
1112
|
-
offeringSetup?: boolean | undefined;
|
|
1113
|
-
investorPortalSetup?: boolean | undefined;
|
|
1114
|
-
paymentMethodSetup?: boolean | undefined;
|
|
1115
|
-
accountContactsSetup?: boolean | undefined;
|
|
1116
1144
|
accountContacts?: {
|
|
1117
1145
|
type: import("./common.types").AccountContactType;
|
|
1118
1146
|
id: string;
|
|
@@ -1150,16 +1178,7 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1150
1178
|
referenceLink?: string | null | undefined;
|
|
1151
1179
|
}[] | undefined;
|
|
1152
1180
|
} | undefined;
|
|
1153
|
-
accountSettings?: {
|
|
1154
|
-
productPrimaries: boolean;
|
|
1155
|
-
productSecondaries: boolean;
|
|
1156
|
-
featureDisbursements: boolean;
|
|
1157
|
-
}[] | undefined;
|
|
1158
1181
|
investorAccounts?: any[] | undefined;
|
|
1159
|
-
offeringSetup?: boolean | undefined;
|
|
1160
|
-
investorPortalSetup?: boolean | undefined;
|
|
1161
|
-
paymentMethodSetup?: boolean | undefined;
|
|
1162
|
-
accountContactsSetup?: boolean | undefined;
|
|
1163
1182
|
cart?: any;
|
|
1164
1183
|
investorOnboarding?: OnboardingType | null | undefined;
|
|
1165
1184
|
investorRegistrationFlow?: OfferingType[] | null | undefined;
|
|
@@ -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;
|