@dalmore/api-contracts 0.0.0-dev.b0aad1d → 0.0.0-dev.b23d491
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/types/account-setting.types.d.ts +66 -17
- package/common/types/account-setting.types.js +31 -2
- package/common/types/account-setting.types.js.map +1 -1
- package/common/types/account.types.d.ts +23 -32
- package/common/types/account.types.js +0 -1
- package/common/types/account.types.js.map +1 -1
- package/common/types/asset.types.d.ts +111 -25
- package/common/types/asset.types.js +100 -24
- package/common/types/asset.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +30 -0
- package/common/types/cap-table.types.d.ts +0 -15
- package/common/types/cap-table.types.js +0 -17
- package/common/types/cap-table.types.js.map +1 -1
- package/common/types/common.types.d.ts +1 -292
- package/common/types/common.types.js +0 -30
- package/common/types/common.types.js.map +1 -1
- package/common/types/file.types.d.ts +0 -21
- package/common/types/file.types.js +0 -9
- package/common/types/file.types.js.map +1 -1
- package/common/types/index.d.ts +0 -2
- package/common/types/index.js +0 -2
- package/common/types/index.js.map +1 -1
- package/common/types/issuer-offering.types.d.ts +67 -3
- package/common/types/issuer-offering.types.js +58 -33
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering-submission.types.d.ts +0 -198
- package/common/types/offering-submission.types.js +3 -16
- package/common/types/offering-submission.types.js.map +1 -1
- package/common/types/offering.types.d.ts +40 -1
- package/common/types/offering.types.js +47 -3
- package/common/types/offering.types.js.map +1 -1
- package/common/types/site.types.d.ts +15 -0
- package/common/types/user.types.d.ts +58 -87
- package/common/types/user.types.js +0 -3
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +66 -0
- package/contracts/clients/index.d.ts +96 -0
- package/contracts/clients/offerings/index.d.ts +30 -0
- package/package.json +1 -1
- package/common/types/reports.types.d.ts +0 -345
- package/common/types/reports.types.js +0 -69
- package/common/types/reports.types.js.map +0 -1
|
@@ -942,7 +942,10 @@ export declare const SiteConfigsZod: z.ZodObject<{
|
|
|
942
942
|
template: z.ZodNativeEnum<typeof import("./asset.types").AssetTemplateType>;
|
|
943
943
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
944
944
|
enableBonus: z.ZodBoolean;
|
|
945
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
946
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
945
947
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
948
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("./asset.types").InterestType>>;
|
|
946
949
|
}, "strip", z.ZodTypeAny, {
|
|
947
950
|
type: import("./common.types").AssetType | null;
|
|
948
951
|
id: string;
|
|
@@ -961,7 +964,10 @@ export declare const SiteConfigsZod: z.ZodObject<{
|
|
|
961
964
|
durationType: import("./common.types").DurationType | null;
|
|
962
965
|
tiers: number[] | null;
|
|
963
966
|
enableBonus: boolean;
|
|
967
|
+
principalAmount: number | null;
|
|
968
|
+
maxTotalRaise: number | null;
|
|
964
969
|
interestRate: number | null;
|
|
970
|
+
interestType: import("./asset.types").InterestType | null;
|
|
965
971
|
__entity?: string | undefined;
|
|
966
972
|
account?: {
|
|
967
973
|
status: AccountStatus;
|
|
@@ -996,7 +1002,10 @@ export declare const SiteConfigsZod: z.ZodObject<{
|
|
|
996
1002
|
durationType: import("./common.types").DurationType | null;
|
|
997
1003
|
tiers: number[] | null;
|
|
998
1004
|
enableBonus: boolean;
|
|
1005
|
+
principalAmount: number | null;
|
|
1006
|
+
maxTotalRaise: number | null;
|
|
999
1007
|
interestRate: number | null;
|
|
1008
|
+
interestType: import("./asset.types").InterestType | null;
|
|
1000
1009
|
__entity?: string | undefined;
|
|
1001
1010
|
account?: {
|
|
1002
1011
|
status: AccountStatus;
|
|
@@ -1256,7 +1265,10 @@ export declare const SiteConfigsZod: z.ZodObject<{
|
|
|
1256
1265
|
durationType: import("./common.types").DurationType | null;
|
|
1257
1266
|
tiers: number[] | null;
|
|
1258
1267
|
enableBonus: boolean;
|
|
1268
|
+
principalAmount: number | null;
|
|
1269
|
+
maxTotalRaise: number | null;
|
|
1259
1270
|
interestRate: number | null;
|
|
1271
|
+
interestType: import("./asset.types").InterestType | null;
|
|
1260
1272
|
__entity?: string | undefined;
|
|
1261
1273
|
account?: {
|
|
1262
1274
|
status: AccountStatus;
|
|
@@ -1360,7 +1372,10 @@ export declare const SiteConfigsZod: z.ZodObject<{
|
|
|
1360
1372
|
durationType: import("./common.types").DurationType | null;
|
|
1361
1373
|
tiers: number[] | null;
|
|
1362
1374
|
enableBonus: boolean;
|
|
1375
|
+
principalAmount: number | null;
|
|
1376
|
+
maxTotalRaise: number | null;
|
|
1363
1377
|
interestRate: number | null;
|
|
1378
|
+
interestType: import("./asset.types").InterestType | null;
|
|
1364
1379
|
__entity?: string | undefined;
|
|
1365
1380
|
account?: {
|
|
1366
1381
|
status: AccountStatus;
|
|
@@ -628,17 +628,7 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
628
628
|
status: AccountStatus;
|
|
629
629
|
id: string;
|
|
630
630
|
name: string | null;
|
|
631
|
-
offeringSetup?: boolean | undefined;
|
|
632
|
-
investorPortalSetup?: boolean | undefined;
|
|
633
|
-
paymentMethodSetup?: boolean | undefined;
|
|
634
|
-
accountContactsSetup?: boolean | undefined;
|
|
635
|
-
apiPortal?: boolean | undefined;
|
|
636
631
|
managedBy?: ManagedByType | undefined;
|
|
637
|
-
accountSettings?: {
|
|
638
|
-
productPrimaries: boolean;
|
|
639
|
-
productSecondaries: boolean;
|
|
640
|
-
featureDisbursements: boolean;
|
|
641
|
-
}[] | undefined;
|
|
642
632
|
accountManager?: {
|
|
643
633
|
id: string;
|
|
644
634
|
createdAt: string | Date;
|
|
@@ -700,6 +690,16 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
700
690
|
} | undefined;
|
|
701
691
|
} | null | undefined;
|
|
702
692
|
} | 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
703
|
accountContacts?: {
|
|
704
704
|
type: import("./common.types").AccountContactType;
|
|
705
705
|
id: string;
|
|
@@ -740,17 +740,7 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
740
740
|
status: AccountStatus;
|
|
741
741
|
id: string;
|
|
742
742
|
name: string | null;
|
|
743
|
-
offeringSetup?: boolean | undefined;
|
|
744
|
-
investorPortalSetup?: boolean | undefined;
|
|
745
|
-
paymentMethodSetup?: boolean | undefined;
|
|
746
|
-
accountContactsSetup?: boolean | undefined;
|
|
747
|
-
apiPortal?: boolean | undefined;
|
|
748
743
|
managedBy?: ManagedByType | undefined;
|
|
749
|
-
accountSettings?: {
|
|
750
|
-
productPrimaries: boolean;
|
|
751
|
-
productSecondaries: boolean;
|
|
752
|
-
featureDisbursements: boolean;
|
|
753
|
-
}[] | undefined;
|
|
754
744
|
accountManager?: {
|
|
755
745
|
id: string;
|
|
756
746
|
createdAt: string | Date;
|
|
@@ -812,6 +802,16 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
812
802
|
} | undefined;
|
|
813
803
|
} | null | undefined;
|
|
814
804
|
} | 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
815
|
accountContacts?: {
|
|
816
816
|
type: import("./common.types").AccountContactType;
|
|
817
817
|
id: string;
|
|
@@ -870,32 +870,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
870
870
|
accountName: string | null;
|
|
871
871
|
onboarding: string | null;
|
|
872
872
|
__entity?: string | undefined;
|
|
873
|
-
offeringSetup?: boolean | undefined;
|
|
874
|
-
investorPortalSetup?: boolean | undefined;
|
|
875
|
-
paymentMethodSetup?: boolean | undefined;
|
|
876
|
-
accountContactsSetup?: boolean | undefined;
|
|
877
873
|
managedBy?: ManagedByType | undefined;
|
|
878
|
-
accountSettings?: {
|
|
879
|
-
productPrimaries: boolean;
|
|
880
|
-
productSecondaries: boolean;
|
|
881
|
-
featureDisbursements: boolean;
|
|
882
|
-
}[] | undefined;
|
|
883
874
|
userType?: UserType | undefined;
|
|
884
875
|
account?: {
|
|
885
876
|
status: AccountStatus;
|
|
886
877
|
id: string;
|
|
887
878
|
name: string | null;
|
|
888
|
-
offeringSetup?: boolean | undefined;
|
|
889
|
-
investorPortalSetup?: boolean | undefined;
|
|
890
|
-
paymentMethodSetup?: boolean | undefined;
|
|
891
|
-
accountContactsSetup?: boolean | undefined;
|
|
892
|
-
apiPortal?: boolean | undefined;
|
|
893
879
|
managedBy?: ManagedByType | undefined;
|
|
894
|
-
accountSettings?: {
|
|
895
|
-
productPrimaries: boolean;
|
|
896
|
-
productSecondaries: boolean;
|
|
897
|
-
featureDisbursements: boolean;
|
|
898
|
-
}[] | undefined;
|
|
899
880
|
accountManager?: {
|
|
900
881
|
id: string;
|
|
901
882
|
createdAt: string | Date;
|
|
@@ -957,6 +938,16 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
957
938
|
} | undefined;
|
|
958
939
|
} | null | undefined;
|
|
959
940
|
} | 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;
|
|
960
951
|
accountContacts?: {
|
|
961
952
|
type: import("./common.types").AccountContactType;
|
|
962
953
|
id: string;
|
|
@@ -994,7 +985,16 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
994
985
|
referenceLink?: string | null | undefined;
|
|
995
986
|
}[] | undefined;
|
|
996
987
|
} | undefined;
|
|
988
|
+
accountSettings?: {
|
|
989
|
+
productPrimaries: boolean;
|
|
990
|
+
productSecondaries: boolean;
|
|
991
|
+
featureDisbursements: boolean;
|
|
992
|
+
}[] | undefined;
|
|
997
993
|
investorAccounts?: any[] | undefined;
|
|
994
|
+
offeringSetup?: boolean | undefined;
|
|
995
|
+
investorPortalSetup?: boolean | undefined;
|
|
996
|
+
paymentMethodSetup?: boolean | undefined;
|
|
997
|
+
accountContactsSetup?: boolean | undefined;
|
|
998
998
|
cart?: any;
|
|
999
999
|
investorOnboarding?: OnboardingType | null | undefined;
|
|
1000
1000
|
investorRegistrationFlow?: OfferingType[] | null | undefined;
|
|
@@ -1035,32 +1035,13 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1035
1035
|
accountName: string | null;
|
|
1036
1036
|
onboarding: string | null;
|
|
1037
1037
|
__entity?: string | undefined;
|
|
1038
|
-
offeringSetup?: boolean | undefined;
|
|
1039
|
-
investorPortalSetup?: boolean | undefined;
|
|
1040
|
-
paymentMethodSetup?: boolean | undefined;
|
|
1041
|
-
accountContactsSetup?: boolean | undefined;
|
|
1042
1038
|
managedBy?: ManagedByType | undefined;
|
|
1043
|
-
accountSettings?: {
|
|
1044
|
-
productPrimaries: boolean;
|
|
1045
|
-
productSecondaries: boolean;
|
|
1046
|
-
featureDisbursements: boolean;
|
|
1047
|
-
}[] | undefined;
|
|
1048
1039
|
userType?: UserType | undefined;
|
|
1049
1040
|
account?: {
|
|
1050
1041
|
status: AccountStatus;
|
|
1051
1042
|
id: string;
|
|
1052
1043
|
name: string | null;
|
|
1053
|
-
offeringSetup?: boolean | undefined;
|
|
1054
|
-
investorPortalSetup?: boolean | undefined;
|
|
1055
|
-
paymentMethodSetup?: boolean | undefined;
|
|
1056
|
-
accountContactsSetup?: boolean | undefined;
|
|
1057
|
-
apiPortal?: boolean | undefined;
|
|
1058
1044
|
managedBy?: ManagedByType | undefined;
|
|
1059
|
-
accountSettings?: {
|
|
1060
|
-
productPrimaries: boolean;
|
|
1061
|
-
productSecondaries: boolean;
|
|
1062
|
-
featureDisbursements: boolean;
|
|
1063
|
-
}[] | undefined;
|
|
1064
1045
|
accountManager?: {
|
|
1065
1046
|
id: string;
|
|
1066
1047
|
createdAt: string | Date;
|
|
@@ -1122,6 +1103,16 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1122
1103
|
} | undefined;
|
|
1123
1104
|
} | null | undefined;
|
|
1124
1105
|
} | 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;
|
|
1125
1116
|
accountContacts?: {
|
|
1126
1117
|
type: import("./common.types").AccountContactType;
|
|
1127
1118
|
id: string;
|
|
@@ -1159,7 +1150,16 @@ export declare const GetMeResponse: z.ZodObject<{
|
|
|
1159
1150
|
referenceLink?: string | null | undefined;
|
|
1160
1151
|
}[] | undefined;
|
|
1161
1152
|
} | undefined;
|
|
1153
|
+
accountSettings?: {
|
|
1154
|
+
productPrimaries: boolean;
|
|
1155
|
+
productSecondaries: boolean;
|
|
1156
|
+
featureDisbursements: boolean;
|
|
1157
|
+
}[] | undefined;
|
|
1162
1158
|
investorAccounts?: any[] | undefined;
|
|
1159
|
+
offeringSetup?: boolean | undefined;
|
|
1160
|
+
investorPortalSetup?: boolean | undefined;
|
|
1161
|
+
paymentMethodSetup?: boolean | undefined;
|
|
1162
|
+
accountContactsSetup?: boolean | undefined;
|
|
1163
1163
|
cart?: any;
|
|
1164
1164
|
investorOnboarding?: OnboardingType | null | undefined;
|
|
1165
1165
|
investorRegistrationFlow?: OfferingType[] | null | undefined;
|
|
@@ -1700,35 +1700,6 @@ export declare const UserFiltersZod: z.ZodObject<{
|
|
|
1700
1700
|
search?: string | undefined;
|
|
1701
1701
|
portal?: string | undefined;
|
|
1702
1702
|
}>;
|
|
1703
|
-
export declare const ComplianceUserFiltersZod: z.ZodObject<{
|
|
1704
|
-
accountId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1705
|
-
search: z.ZodOptional<z.ZodString>;
|
|
1706
|
-
role: z.ZodOptional<z.ZodNativeEnum<typeof UserRole>>;
|
|
1707
|
-
portal: z.ZodOptional<z.ZodString>;
|
|
1708
|
-
locked: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1709
|
-
active: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1710
|
-
twoFactorEnabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1711
|
-
} & {
|
|
1712
|
-
complianceOfficer: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1713
|
-
}, "strip", z.ZodTypeAny, {
|
|
1714
|
-
active?: boolean | undefined;
|
|
1715
|
-
accountId?: string | undefined;
|
|
1716
|
-
role?: UserRole | undefined;
|
|
1717
|
-
locked?: boolean | undefined;
|
|
1718
|
-
twoFactorEnabled?: boolean | undefined;
|
|
1719
|
-
search?: string | undefined;
|
|
1720
|
-
portal?: string | undefined;
|
|
1721
|
-
complianceOfficer?: boolean | undefined;
|
|
1722
|
-
}, {
|
|
1723
|
-
active?: unknown;
|
|
1724
|
-
accountId?: string | undefined;
|
|
1725
|
-
role?: UserRole | undefined;
|
|
1726
|
-
locked?: unknown;
|
|
1727
|
-
twoFactorEnabled?: unknown;
|
|
1728
|
-
search?: string | undefined;
|
|
1729
|
-
portal?: string | undefined;
|
|
1730
|
-
complianceOfficer?: unknown;
|
|
1731
|
-
}>;
|
|
1732
1703
|
/**
|
|
1733
1704
|
* @description Query parameters for including related entities
|
|
1734
1705
|
* @xample in contract us as -> query: z.object({}).merge(UsersIncludeQuery),
|
|
@@ -153,9 +153,6 @@ export const UserFiltersZod = z.object({
|
|
|
153
153
|
active: StringToBooleanSchema.optional(),
|
|
154
154
|
twoFactorEnabled: StringToBooleanSchema.optional(),
|
|
155
155
|
});
|
|
156
|
-
export const ComplianceUserFiltersZod = UserFiltersZod.extend({
|
|
157
|
-
complianceOfficer: StringToBooleanSchema.optional(),
|
|
158
|
-
});
|
|
159
156
|
const usersInclude = z.enum(['account', 'role']);
|
|
160
157
|
/**
|
|
161
158
|
* @description Query parameters for including related entities
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.types.js","sourceRoot":"","sources":["user.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAC5D,OAAO,EACL,aAAa,EACb,sBAAsB,EACtB,eAAe,EACf,UAAU,EACV,aAAa,EACb,YAAY,EACZ,UAAU,EACV,qBAAqB,EACrB,QAAQ,EACR,QAAQ,EACR,WAAW,GACZ,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC3D,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AAC5D,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AACnC,OAAO,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAC/D,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAC1D,oBAAoB,CAAC,CAAC,CAAC,CAAC;AAExB,MAAM,CAAN,IAAY,cAIX;AAJD,WAAY,cAAc;IACxB,iCAAe,CAAA;IACf,uCAAqB,CAAA;IACrB,uCAAqB,CAAA;AACvB,CAAC,EAJW,cAAc,KAAd,cAAc,QAIzB;AAED,MAAM,CAAC,MAAM,YAAY,GAAG,CAAC,CAAC,MAAM,EAAE,CAAC,MAAM,CAC3C,CAAC,KAAK,EAAE,EAAE;IACR,IAAI,CAAC;QACH,MAAM,GAAG,GAAG,MAAM,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC;QACrC,OAAO,GAAG,CAAC,OAAO,EAAE,KAAK,MAAM,CAAC;IAClC,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,KAAK,CAAC;IACf,CAAC;AACH,CAAC,EACD;IACE,OAAO,EACL,oEAAoE;CACvE,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAAC,CAAC,MAAM,CAAC;IACzC,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,OAAO,EAAE,CAAC,CAAC,MAAM,EAAE;CACpB,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,aAAa,GAAG,WAAW,CAAC,MAAM,CAAC;IAC9C,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;IACrB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE;IACzB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;IACpB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,WAAW,EAAE,YAAY,CAAC,QAAQ,EAAE;IACpC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;IACtB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE;IAClB,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE;IAChB,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,gBAAgB,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,gBAAgB,CAAC,CAAC,CAAC,QAAQ,EAAE;IACpE,IAAI,EAAE,CAAC;SACJ,IAAI,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC;SACpB,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,kBAAkB,EAAE,CAAC,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACtE,wBAAwB,EAAE,CAAC;SACxB,KAAK,CAAC,CAAC,CAAC,UAAU,CAAC,YAAY,CAAC,CAAC;SACjC,QAAQ,EAAE;SACV,QAAQ,EAAE;IACb,kBAAkB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACpD,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,EAAE;IACnD,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,YAAY,EAAE,CAAC;SACZ,MAAM,CAAC;QACN,eAAe,EAAE,CAAC,CAAC,UAAU,CAAC,eAAe,CAAC,CAAC,QAAQ,EAAE;QACzD,SAAS,EAAE,eAAe,CAAC,QAAQ,EAAE;QACrC,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE;QAC1B,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE;QAC1B,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;KAC9B,CAAC;SACD,QAAQ,EAAE;IACb,SAAS,EAAE,CAAC,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,QAAQ,EAAE;IACjD,QAAQ,EAAE,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,QAAQ,EAAE;IAC3C,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IACrC,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC3C,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC1C,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;IAC5C,eAAe,EAAE,CAAC;SACf,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;QAC7B,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE;QAC/B,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;KAClC,CAAC,CACH;SACA,QAAQ,EAAE;IACb,OAAO,EAAE,CAAC;SACP,MAAM,CAAC;QACN,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,eAAe,CAAC;QACjC,IAAI,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;QAC3B,MAAM,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC;QACjD,SAAS,EAAE,CAAC,CAAC,UAAU,CAAC,aAAa,CAAC,CAAC,QAAQ,EAAE;QACjD,aAAa,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QACrC,mBAAmB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QAC3C,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QAC1C,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;QAC5C,eAAe,EAAE,CAAC;aACf,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;YACP,gBAAgB,EAAE,CAAC,CAAC,OAAO,EAAE;YAC7B,kBAAkB,EAAE,CAAC,CAAC,OAAO,EAAE;YAC/B,oBAAoB,EAAE,CAAC,CAAC,OAAO,EAAE;SAClC,CAAC,CACH;aACA,QAAQ,EAAE;QACb,cAAc,EAAE,CAAC;aACd,IAAI,CAAC,GAAG,EAAE,CAAC,kBAAkB,CAAC;aAC9B,QAAQ,EAAE;aACV,QAAQ,EAAE;QACb,eAAe,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,eAAe,CAAC,CAAC,CAAC,QAAQ,EAAE;QAClE,SAAS,EAAE,CAAC,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;KAClC,CAAC;SACD,QAAQ,EAAE;CACd,CAAC,CAAC;AAIH,MAAM,CAAC,MAAM,aAAa,GAAG,CAAC,CAAC,MAAM,CAAC;IACpC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAChC,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,eAAe,GAAG,CAAC,CAAC,MAAM,CAAC;IACtC,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,QAAQ,EAAE;IACtC,KAAK,EAAE,WAAW,CAAC,QAAQ,EAAE;CAC9B,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,OAAO,GAAG,WAAW,CAAC,MAAM,CAAC;IACxC,WAAW,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAClC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC/B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAChC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,sBAAsB,CAAC,QAAQ,EAAE;IAC1C,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,MAAM,EAAE,CAAC,CAAC,OAAO,EAAE;IACnB,SAAS,EAAE,WAAW,CAAC,MAAM,CAAC;QAC5B,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE;QACrB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;QACpB,KAAK,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE;QACzB,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE;QACpB,WAAW,EAAE,YAAY,CAAC,QAAQ,EAAE;QACpC,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE;KACvB,CAAC;CACH,CAAC,CAAC;AAGH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC;IACvB,IAAI,EAAE,eAAe;CACtB,CAAC,CAAC;AAEH,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,CAAC,MAAM,CAAC;IACrC,SAAS,EAAE,eAAe,CAAC,QAAQ,EAAE;IACrC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC,QAAQ,EAAE;IACrC,IAAI,EAAE,CAAC,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,QAAQ,EAAE;IACvC,MAAM,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,MAAM,EAAE,qBAAqB,CAAC,QAAQ,EAAE;IACxC,MAAM,EAAE,qBAAqB,CAAC,QAAQ,EAAE;IACxC,gBAAgB,EAAE,qBAAqB,CAAC,QAAQ,EAAE;CACnD,CAAC,CAAC;AAEH,MAAM,
|
|
1
|
+
{"version":3,"file":"user.types.js","sourceRoot":"","sources":["user.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -101,7 +101,10 @@ export declare const assetsContract: {
|
|
|
101
101
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
102
102
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
103
103
|
enableBonus: z.ZodBoolean;
|
|
104
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
105
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
104
106
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
107
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
105
108
|
}, "strip", z.ZodTypeAny, {
|
|
106
109
|
type: import("../../..").AssetType | null;
|
|
107
110
|
id: string;
|
|
@@ -120,7 +123,10 @@ export declare const assetsContract: {
|
|
|
120
123
|
durationType: import("../../..").DurationType | null;
|
|
121
124
|
tiers: number[] | null;
|
|
122
125
|
enableBonus: boolean;
|
|
126
|
+
principalAmount: number | null;
|
|
127
|
+
maxTotalRaise: number | null;
|
|
123
128
|
interestRate: number | null;
|
|
129
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
124
130
|
__entity?: string | undefined;
|
|
125
131
|
account?: {
|
|
126
132
|
status: import("../../..").AccountStatus;
|
|
@@ -155,7 +161,10 @@ export declare const assetsContract: {
|
|
|
155
161
|
durationType: import("../../..").DurationType | null;
|
|
156
162
|
tiers: number[] | null;
|
|
157
163
|
enableBonus: boolean;
|
|
164
|
+
principalAmount: number | null;
|
|
165
|
+
maxTotalRaise: number | null;
|
|
158
166
|
interestRate: number | null;
|
|
167
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
159
168
|
__entity?: string | undefined;
|
|
160
169
|
account?: {
|
|
161
170
|
status: import("../../..").AccountStatus;
|
|
@@ -211,7 +220,10 @@ export declare const assetsContract: {
|
|
|
211
220
|
durationType: import("../../..").DurationType | null;
|
|
212
221
|
tiers: number[] | null;
|
|
213
222
|
enableBonus: boolean;
|
|
223
|
+
principalAmount: number | null;
|
|
224
|
+
maxTotalRaise: number | null;
|
|
214
225
|
interestRate: number | null;
|
|
226
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
215
227
|
__entity?: string | undefined;
|
|
216
228
|
account?: {
|
|
217
229
|
status: import("../../..").AccountStatus;
|
|
@@ -255,7 +267,10 @@ export declare const assetsContract: {
|
|
|
255
267
|
durationType: import("../../..").DurationType | null;
|
|
256
268
|
tiers: number[] | null;
|
|
257
269
|
enableBonus: boolean;
|
|
270
|
+
principalAmount: number | null;
|
|
271
|
+
maxTotalRaise: number | null;
|
|
258
272
|
interestRate: number | null;
|
|
273
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
259
274
|
__entity?: string | undefined;
|
|
260
275
|
account?: {
|
|
261
276
|
status: import("../../..").AccountStatus;
|
|
@@ -406,7 +421,10 @@ export declare const assetsContract: {
|
|
|
406
421
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
407
422
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
408
423
|
enableBonus: z.ZodBoolean;
|
|
424
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
425
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
409
426
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
427
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
410
428
|
}, "strip", z.ZodTypeAny, {
|
|
411
429
|
type: import("../../..").AssetType | null;
|
|
412
430
|
id: string;
|
|
@@ -425,7 +443,10 @@ export declare const assetsContract: {
|
|
|
425
443
|
durationType: import("../../..").DurationType | null;
|
|
426
444
|
tiers: number[] | null;
|
|
427
445
|
enableBonus: boolean;
|
|
446
|
+
principalAmount: number | null;
|
|
447
|
+
maxTotalRaise: number | null;
|
|
428
448
|
interestRate: number | null;
|
|
449
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
429
450
|
__entity?: string | undefined;
|
|
430
451
|
account?: {
|
|
431
452
|
status: import("../../..").AccountStatus;
|
|
@@ -460,7 +481,10 @@ export declare const assetsContract: {
|
|
|
460
481
|
durationType: import("../../..").DurationType | null;
|
|
461
482
|
tiers: number[] | null;
|
|
462
483
|
enableBonus: boolean;
|
|
484
|
+
principalAmount: number | null;
|
|
485
|
+
maxTotalRaise: number | null;
|
|
463
486
|
interestRate: number | null;
|
|
487
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
464
488
|
__entity?: string | undefined;
|
|
465
489
|
account?: {
|
|
466
490
|
status: import("../../..").AccountStatus;
|
|
@@ -549,7 +573,10 @@ export declare const assetsContract: {
|
|
|
549
573
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
550
574
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
551
575
|
enableBonus: z.ZodDefault<z.ZodBoolean>;
|
|
576
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
577
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
552
578
|
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
579
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
553
580
|
}, "strip", z.ZodTypeAny, {
|
|
554
581
|
type: import("../../..").AssetType;
|
|
555
582
|
name: string;
|
|
@@ -562,7 +589,10 @@ export declare const assetsContract: {
|
|
|
562
589
|
duration?: number | null | undefined;
|
|
563
590
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
564
591
|
tiers?: number[] | null | undefined;
|
|
592
|
+
principalAmount?: number | null | undefined;
|
|
593
|
+
maxTotalRaise?: number | null | undefined;
|
|
565
594
|
interestRate?: number | null | undefined;
|
|
595
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
566
596
|
}, {
|
|
567
597
|
type: import("../../..").AssetType;
|
|
568
598
|
name: string;
|
|
@@ -575,7 +605,10 @@ export declare const assetsContract: {
|
|
|
575
605
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
576
606
|
tiers?: number[] | null | undefined;
|
|
577
607
|
enableBonus?: boolean | undefined;
|
|
608
|
+
principalAmount?: number | null | undefined;
|
|
609
|
+
maxTotalRaise?: number | null | undefined;
|
|
578
610
|
interestRate?: number | null | undefined;
|
|
611
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
579
612
|
}>, {
|
|
580
613
|
type: import("../../..").AssetType;
|
|
581
614
|
name: string;
|
|
@@ -588,7 +621,10 @@ export declare const assetsContract: {
|
|
|
588
621
|
duration?: number | null | undefined;
|
|
589
622
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
590
623
|
tiers?: number[] | null | undefined;
|
|
624
|
+
principalAmount?: number | null | undefined;
|
|
625
|
+
maxTotalRaise?: number | null | undefined;
|
|
591
626
|
interestRate?: number | null | undefined;
|
|
627
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
592
628
|
}, {
|
|
593
629
|
type: import("../../..").AssetType;
|
|
594
630
|
name: string;
|
|
@@ -601,7 +637,10 @@ export declare const assetsContract: {
|
|
|
601
637
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
602
638
|
tiers?: number[] | null | undefined;
|
|
603
639
|
enableBonus?: boolean | undefined;
|
|
640
|
+
principalAmount?: number | null | undefined;
|
|
641
|
+
maxTotalRaise?: number | null | undefined;
|
|
604
642
|
interestRate?: number | null | undefined;
|
|
643
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
605
644
|
}>;
|
|
606
645
|
summary: "Create an asset";
|
|
607
646
|
path: "assets";
|
|
@@ -668,7 +707,10 @@ export declare const assetsContract: {
|
|
|
668
707
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
669
708
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
670
709
|
enableBonus: z.ZodBoolean;
|
|
710
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
711
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
671
712
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
713
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
672
714
|
}, "strip", z.ZodTypeAny, {
|
|
673
715
|
type: import("../../..").AssetType | null;
|
|
674
716
|
id: string;
|
|
@@ -687,7 +729,10 @@ export declare const assetsContract: {
|
|
|
687
729
|
durationType: import("../../..").DurationType | null;
|
|
688
730
|
tiers: number[] | null;
|
|
689
731
|
enableBonus: boolean;
|
|
732
|
+
principalAmount: number | null;
|
|
733
|
+
maxTotalRaise: number | null;
|
|
690
734
|
interestRate: number | null;
|
|
735
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
691
736
|
__entity?: string | undefined;
|
|
692
737
|
account?: {
|
|
693
738
|
status: import("../../..").AccountStatus;
|
|
@@ -722,7 +767,10 @@ export declare const assetsContract: {
|
|
|
722
767
|
durationType: import("../../..").DurationType | null;
|
|
723
768
|
tiers: number[] | null;
|
|
724
769
|
enableBonus: boolean;
|
|
770
|
+
principalAmount: number | null;
|
|
771
|
+
maxTotalRaise: number | null;
|
|
725
772
|
interestRate: number | null;
|
|
773
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
726
774
|
__entity?: string | undefined;
|
|
727
775
|
account?: {
|
|
728
776
|
status: import("../../..").AccountStatus;
|
|
@@ -810,7 +858,10 @@ export declare const assetsContract: {
|
|
|
810
858
|
template: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>>>;
|
|
811
859
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
812
860
|
enableBonus: z.ZodOptional<z.ZodBoolean>;
|
|
861
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
862
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
813
863
|
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
864
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
814
865
|
}, "strip", z.ZodTypeAny, {
|
|
815
866
|
type?: import("../../..").AssetType | undefined;
|
|
816
867
|
name?: string | undefined;
|
|
@@ -822,7 +873,10 @@ export declare const assetsContract: {
|
|
|
822
873
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
823
874
|
tiers?: number[] | null | undefined;
|
|
824
875
|
enableBonus?: boolean | undefined;
|
|
876
|
+
principalAmount?: number | null | undefined;
|
|
877
|
+
maxTotalRaise?: number | null | undefined;
|
|
825
878
|
interestRate?: number | null | undefined;
|
|
879
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
826
880
|
}, {
|
|
827
881
|
type?: import("../../..").AssetType | undefined;
|
|
828
882
|
name?: string | undefined;
|
|
@@ -834,7 +888,10 @@ export declare const assetsContract: {
|
|
|
834
888
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
835
889
|
tiers?: number[] | null | undefined;
|
|
836
890
|
enableBonus?: boolean | undefined;
|
|
891
|
+
principalAmount?: number | null | undefined;
|
|
892
|
+
maxTotalRaise?: number | null | undefined;
|
|
837
893
|
interestRate?: number | null | undefined;
|
|
894
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
838
895
|
}>;
|
|
839
896
|
pathParams: z.ZodObject<{
|
|
840
897
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -908,7 +965,10 @@ export declare const assetsContract: {
|
|
|
908
965
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
909
966
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
910
967
|
enableBonus: z.ZodBoolean;
|
|
968
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
969
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
911
970
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
971
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
912
972
|
}, "strip", z.ZodTypeAny, {
|
|
913
973
|
type: import("../../..").AssetType | null;
|
|
914
974
|
id: string;
|
|
@@ -927,7 +987,10 @@ export declare const assetsContract: {
|
|
|
927
987
|
durationType: import("../../..").DurationType | null;
|
|
928
988
|
tiers: number[] | null;
|
|
929
989
|
enableBonus: boolean;
|
|
990
|
+
principalAmount: number | null;
|
|
991
|
+
maxTotalRaise: number | null;
|
|
930
992
|
interestRate: number | null;
|
|
993
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
931
994
|
__entity?: string | undefined;
|
|
932
995
|
account?: {
|
|
933
996
|
status: import("../../..").AccountStatus;
|
|
@@ -962,7 +1025,10 @@ export declare const assetsContract: {
|
|
|
962
1025
|
durationType: import("../../..").DurationType | null;
|
|
963
1026
|
tiers: number[] | null;
|
|
964
1027
|
enableBonus: boolean;
|
|
1028
|
+
principalAmount: number | null;
|
|
1029
|
+
maxTotalRaise: number | null;
|
|
965
1030
|
interestRate: number | null;
|
|
1031
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
966
1032
|
__entity?: string | undefined;
|
|
967
1033
|
account?: {
|
|
968
1034
|
status: import("../../..").AccountStatus;
|