@dalmore/api-contracts 0.0.0-dev.f1cb508 → 0.0.0-dev.fb640f0
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 +34 -25
- package/common/types/activity.types.js +11 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/asset.types.d.ts +25 -111
- package/common/types/asset.types.js +24 -100
- package/common/types/asset.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +0 -30
- package/common/types/cap-table.types.d.ts +29 -14
- 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 +312 -2
- package/common/types/common.types.js +48 -1
- package/common/types/common.types.js.map +1 -1
- package/common/types/dashboard.types.d.ts +7 -7
- package/common/types/disbursements.types.d.ts +41 -0
- package/common/types/disbursements.types.js +3 -0
- package/common/types/disbursements.types.js.map +1 -1
- package/common/types/escrow-account.types.d.ts +17 -0
- package/common/types/escrow-account.types.js +3 -0
- package/common/types/escrow-account.types.js.map +1 -1
- package/common/types/file.types.d.ts +30 -9
- package/common/types/file.types.js +9 -0
- package/common/types/file.types.js.map +1 -1
- package/common/types/index.d.ts +2 -0
- package/common/types/index.js +2 -0
- package/common/types/index.js.map +1 -1
- package/common/types/issuer-offering.types.d.ts +160 -68
- package/common/types/issuer-offering.types.js +148 -37
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/job-item.types.d.ts +14 -14
- package/common/types/note.types.d.ts +15 -15
- package/common/types/offering-submission.types.d.ts +198 -0
- package/common/types/offering-submission.types.js +16 -3
- package/common/types/offering-submission.types.js.map +1 -1
- package/common/types/offering.types.d.ts +216 -41
- package/common/types/offering.types.js +164 -38
- package/common/types/offering.types.js.map +1 -1
- package/common/types/reports.types.d.ts +345 -0
- package/common/types/reports.types.js +69 -0
- package/common/types/reports.types.js.map +1 -0
- package/common/types/site.types.d.ts +0 -15
- package/common/types/task.types.d.ts +22 -22
- package/common/types/trade.types.js +1 -0
- package/common/types/trade.types.js.map +1 -1
- package/common/types/user.types.d.ts +107 -59
- package/common/types/user.types.js +7 -1
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +0 -66
- package/contracts/clients/files/index.d.ts +3 -3
- package/contracts/clients/files-public/index.d.ts +3 -3
- package/contracts/clients/index.d.ts +76 -102
- package/contracts/clients/offerings/index.d.ts +70 -30
- 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;
|
|
@@ -1700,6 +1719,35 @@ export declare const UserFiltersZod: z.ZodObject<{
|
|
|
1700
1719
|
search?: string | undefined;
|
|
1701
1720
|
portal?: string | undefined;
|
|
1702
1721
|
}>;
|
|
1722
|
+
export declare const ComplianceUserFiltersZod: z.ZodObject<{
|
|
1723
|
+
accountId: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
1724
|
+
search: z.ZodOptional<z.ZodString>;
|
|
1725
|
+
role: z.ZodOptional<z.ZodNativeEnum<typeof UserRole>>;
|
|
1726
|
+
portal: z.ZodOptional<z.ZodString>;
|
|
1727
|
+
locked: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1728
|
+
active: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1729
|
+
twoFactorEnabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1730
|
+
} & {
|
|
1731
|
+
complianceOfficer: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
1732
|
+
}, "strip", z.ZodTypeAny, {
|
|
1733
|
+
active?: boolean | undefined;
|
|
1734
|
+
accountId?: string | undefined;
|
|
1735
|
+
role?: UserRole | undefined;
|
|
1736
|
+
locked?: boolean | undefined;
|
|
1737
|
+
twoFactorEnabled?: boolean | undefined;
|
|
1738
|
+
search?: string | undefined;
|
|
1739
|
+
portal?: string | undefined;
|
|
1740
|
+
complianceOfficer?: boolean | undefined;
|
|
1741
|
+
}, {
|
|
1742
|
+
active?: unknown;
|
|
1743
|
+
accountId?: string | undefined;
|
|
1744
|
+
role?: UserRole | undefined;
|
|
1745
|
+
locked?: unknown;
|
|
1746
|
+
twoFactorEnabled?: unknown;
|
|
1747
|
+
search?: string | undefined;
|
|
1748
|
+
portal?: string | undefined;
|
|
1749
|
+
complianceOfficer?: unknown;
|
|
1750
|
+
}>;
|
|
1703
1751
|
/**
|
|
1704
1752
|
* @description Query parameters for including related entities
|
|
1705
1753
|
* @xample in contract us as -> query: z.object({}).merge(UsersIncludeQuery),
|
|
@@ -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
|
});
|
|
@@ -153,6 +156,9 @@ export const UserFiltersZod = z.object({
|
|
|
153
156
|
active: StringToBooleanSchema.optional(),
|
|
154
157
|
twoFactorEnabled: StringToBooleanSchema.optional(),
|
|
155
158
|
});
|
|
159
|
+
export const ComplianceUserFiltersZod = UserFiltersZod.extend({
|
|
160
|
+
complianceOfficer: StringToBooleanSchema.optional(),
|
|
161
|
+
});
|
|
156
162
|
const usersInclude = z.enum(['account', 'role']);
|
|
157
163
|
/**
|
|
158
164
|
* @description Query parameters for including related entities
|
|
@@ -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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"}
|
|
@@ -101,10 +101,7 @@ 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>;
|
|
106
104
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
107
|
-
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
108
105
|
}, "strip", z.ZodTypeAny, {
|
|
109
106
|
type: import("../../..").AssetType | null;
|
|
110
107
|
id: string;
|
|
@@ -123,10 +120,7 @@ export declare const assetsContract: {
|
|
|
123
120
|
durationType: import("../../..").DurationType | null;
|
|
124
121
|
tiers: number[] | null;
|
|
125
122
|
enableBonus: boolean;
|
|
126
|
-
principalAmount: number | null;
|
|
127
|
-
maxTotalRaise: number | null;
|
|
128
123
|
interestRate: number | null;
|
|
129
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
130
124
|
__entity?: string | undefined;
|
|
131
125
|
account?: {
|
|
132
126
|
status: import("../../..").AccountStatus;
|
|
@@ -161,10 +155,7 @@ export declare const assetsContract: {
|
|
|
161
155
|
durationType: import("../../..").DurationType | null;
|
|
162
156
|
tiers: number[] | null;
|
|
163
157
|
enableBonus: boolean;
|
|
164
|
-
principalAmount: number | null;
|
|
165
|
-
maxTotalRaise: number | null;
|
|
166
158
|
interestRate: number | null;
|
|
167
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
168
159
|
__entity?: string | undefined;
|
|
169
160
|
account?: {
|
|
170
161
|
status: import("../../..").AccountStatus;
|
|
@@ -220,10 +211,7 @@ export declare const assetsContract: {
|
|
|
220
211
|
durationType: import("../../..").DurationType | null;
|
|
221
212
|
tiers: number[] | null;
|
|
222
213
|
enableBonus: boolean;
|
|
223
|
-
principalAmount: number | null;
|
|
224
|
-
maxTotalRaise: number | null;
|
|
225
214
|
interestRate: number | null;
|
|
226
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
227
215
|
__entity?: string | undefined;
|
|
228
216
|
account?: {
|
|
229
217
|
status: import("../../..").AccountStatus;
|
|
@@ -267,10 +255,7 @@ export declare const assetsContract: {
|
|
|
267
255
|
durationType: import("../../..").DurationType | null;
|
|
268
256
|
tiers: number[] | null;
|
|
269
257
|
enableBonus: boolean;
|
|
270
|
-
principalAmount: number | null;
|
|
271
|
-
maxTotalRaise: number | null;
|
|
272
258
|
interestRate: number | null;
|
|
273
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
274
259
|
__entity?: string | undefined;
|
|
275
260
|
account?: {
|
|
276
261
|
status: import("../../..").AccountStatus;
|
|
@@ -421,10 +406,7 @@ export declare const assetsContract: {
|
|
|
421
406
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
422
407
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
423
408
|
enableBonus: z.ZodBoolean;
|
|
424
|
-
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
425
|
-
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
426
409
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
427
|
-
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
428
410
|
}, "strip", z.ZodTypeAny, {
|
|
429
411
|
type: import("../../..").AssetType | null;
|
|
430
412
|
id: string;
|
|
@@ -443,10 +425,7 @@ export declare const assetsContract: {
|
|
|
443
425
|
durationType: import("../../..").DurationType | null;
|
|
444
426
|
tiers: number[] | null;
|
|
445
427
|
enableBonus: boolean;
|
|
446
|
-
principalAmount: number | null;
|
|
447
|
-
maxTotalRaise: number | null;
|
|
448
428
|
interestRate: number | null;
|
|
449
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
450
429
|
__entity?: string | undefined;
|
|
451
430
|
account?: {
|
|
452
431
|
status: import("../../..").AccountStatus;
|
|
@@ -481,10 +460,7 @@ export declare const assetsContract: {
|
|
|
481
460
|
durationType: import("../../..").DurationType | null;
|
|
482
461
|
tiers: number[] | null;
|
|
483
462
|
enableBonus: boolean;
|
|
484
|
-
principalAmount: number | null;
|
|
485
|
-
maxTotalRaise: number | null;
|
|
486
463
|
interestRate: number | null;
|
|
487
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
488
464
|
__entity?: string | undefined;
|
|
489
465
|
account?: {
|
|
490
466
|
status: import("../../..").AccountStatus;
|
|
@@ -573,10 +549,7 @@ export declare const assetsContract: {
|
|
|
573
549
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
574
550
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
575
551
|
enableBonus: z.ZodDefault<z.ZodBoolean>;
|
|
576
|
-
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
577
|
-
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
578
552
|
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
579
|
-
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
580
553
|
}, "strip", z.ZodTypeAny, {
|
|
581
554
|
type: import("../../..").AssetType;
|
|
582
555
|
name: string;
|
|
@@ -589,10 +562,7 @@ export declare const assetsContract: {
|
|
|
589
562
|
duration?: number | null | undefined;
|
|
590
563
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
591
564
|
tiers?: number[] | null | undefined;
|
|
592
|
-
principalAmount?: number | null | undefined;
|
|
593
|
-
maxTotalRaise?: number | null | undefined;
|
|
594
565
|
interestRate?: number | null | undefined;
|
|
595
|
-
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
596
566
|
}, {
|
|
597
567
|
type: import("../../..").AssetType;
|
|
598
568
|
name: string;
|
|
@@ -605,10 +575,7 @@ export declare const assetsContract: {
|
|
|
605
575
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
606
576
|
tiers?: number[] | null | undefined;
|
|
607
577
|
enableBonus?: boolean | undefined;
|
|
608
|
-
principalAmount?: number | null | undefined;
|
|
609
|
-
maxTotalRaise?: number | null | undefined;
|
|
610
578
|
interestRate?: number | null | undefined;
|
|
611
|
-
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
612
579
|
}>, {
|
|
613
580
|
type: import("../../..").AssetType;
|
|
614
581
|
name: string;
|
|
@@ -621,10 +588,7 @@ export declare const assetsContract: {
|
|
|
621
588
|
duration?: number | null | undefined;
|
|
622
589
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
623
590
|
tiers?: number[] | null | undefined;
|
|
624
|
-
principalAmount?: number | null | undefined;
|
|
625
|
-
maxTotalRaise?: number | null | undefined;
|
|
626
591
|
interestRate?: number | null | undefined;
|
|
627
|
-
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
628
592
|
}, {
|
|
629
593
|
type: import("../../..").AssetType;
|
|
630
594
|
name: string;
|
|
@@ -637,10 +601,7 @@ export declare const assetsContract: {
|
|
|
637
601
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
638
602
|
tiers?: number[] | null | undefined;
|
|
639
603
|
enableBonus?: boolean | undefined;
|
|
640
|
-
principalAmount?: number | null | undefined;
|
|
641
|
-
maxTotalRaise?: number | null | undefined;
|
|
642
604
|
interestRate?: number | null | undefined;
|
|
643
|
-
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
644
605
|
}>;
|
|
645
606
|
summary: "Create an asset";
|
|
646
607
|
path: "assets";
|
|
@@ -707,10 +668,7 @@ export declare const assetsContract: {
|
|
|
707
668
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
708
669
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
709
670
|
enableBonus: z.ZodBoolean;
|
|
710
|
-
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
711
|
-
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
712
671
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
713
|
-
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
714
672
|
}, "strip", z.ZodTypeAny, {
|
|
715
673
|
type: import("../../..").AssetType | null;
|
|
716
674
|
id: string;
|
|
@@ -729,10 +687,7 @@ export declare const assetsContract: {
|
|
|
729
687
|
durationType: import("../../..").DurationType | null;
|
|
730
688
|
tiers: number[] | null;
|
|
731
689
|
enableBonus: boolean;
|
|
732
|
-
principalAmount: number | null;
|
|
733
|
-
maxTotalRaise: number | null;
|
|
734
690
|
interestRate: number | null;
|
|
735
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
736
691
|
__entity?: string | undefined;
|
|
737
692
|
account?: {
|
|
738
693
|
status: import("../../..").AccountStatus;
|
|
@@ -767,10 +722,7 @@ export declare const assetsContract: {
|
|
|
767
722
|
durationType: import("../../..").DurationType | null;
|
|
768
723
|
tiers: number[] | null;
|
|
769
724
|
enableBonus: boolean;
|
|
770
|
-
principalAmount: number | null;
|
|
771
|
-
maxTotalRaise: number | null;
|
|
772
725
|
interestRate: number | null;
|
|
773
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
774
726
|
__entity?: string | undefined;
|
|
775
727
|
account?: {
|
|
776
728
|
status: import("../../..").AccountStatus;
|
|
@@ -858,10 +810,7 @@ export declare const assetsContract: {
|
|
|
858
810
|
template: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>>>;
|
|
859
811
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
860
812
|
enableBonus: z.ZodOptional<z.ZodBoolean>;
|
|
861
|
-
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
862
|
-
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
863
813
|
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
864
|
-
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
865
814
|
}, "strip", z.ZodTypeAny, {
|
|
866
815
|
type?: import("../../..").AssetType | undefined;
|
|
867
816
|
name?: string | undefined;
|
|
@@ -873,10 +822,7 @@ export declare const assetsContract: {
|
|
|
873
822
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
874
823
|
tiers?: number[] | null | undefined;
|
|
875
824
|
enableBonus?: boolean | undefined;
|
|
876
|
-
principalAmount?: number | null | undefined;
|
|
877
|
-
maxTotalRaise?: number | null | undefined;
|
|
878
825
|
interestRate?: number | null | undefined;
|
|
879
|
-
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
880
826
|
}, {
|
|
881
827
|
type?: import("../../..").AssetType | undefined;
|
|
882
828
|
name?: string | undefined;
|
|
@@ -888,10 +834,7 @@ export declare const assetsContract: {
|
|
|
888
834
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
889
835
|
tiers?: number[] | null | undefined;
|
|
890
836
|
enableBonus?: boolean | undefined;
|
|
891
|
-
principalAmount?: number | null | undefined;
|
|
892
|
-
maxTotalRaise?: number | null | undefined;
|
|
893
837
|
interestRate?: number | null | undefined;
|
|
894
|
-
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
895
838
|
}>;
|
|
896
839
|
pathParams: z.ZodObject<{
|
|
897
840
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -965,10 +908,7 @@ export declare const assetsContract: {
|
|
|
965
908
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
966
909
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
967
910
|
enableBonus: z.ZodBoolean;
|
|
968
|
-
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
969
|
-
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
970
911
|
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
971
|
-
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
972
912
|
}, "strip", z.ZodTypeAny, {
|
|
973
913
|
type: import("../../..").AssetType | null;
|
|
974
914
|
id: string;
|
|
@@ -987,10 +927,7 @@ export declare const assetsContract: {
|
|
|
987
927
|
durationType: import("../../..").DurationType | null;
|
|
988
928
|
tiers: number[] | null;
|
|
989
929
|
enableBonus: boolean;
|
|
990
|
-
principalAmount: number | null;
|
|
991
|
-
maxTotalRaise: number | null;
|
|
992
930
|
interestRate: number | null;
|
|
993
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
994
931
|
__entity?: string | undefined;
|
|
995
932
|
account?: {
|
|
996
933
|
status: import("../../..").AccountStatus;
|
|
@@ -1025,10 +962,7 @@ export declare const assetsContract: {
|
|
|
1025
962
|
durationType: import("../../..").DurationType | null;
|
|
1026
963
|
tiers: number[] | null;
|
|
1027
964
|
enableBonus: boolean;
|
|
1028
|
-
principalAmount: number | null;
|
|
1029
|
-
maxTotalRaise: number | null;
|
|
1030
965
|
interestRate: number | null;
|
|
1031
|
-
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
1032
966
|
__entity?: string | undefined;
|
|
1033
967
|
account?: {
|
|
1034
968
|
status: import("../../..").AccountStatus;
|
|
@@ -296,20 +296,20 @@ export declare const filesContract: {
|
|
|
296
296
|
limit: z.ZodDefault<z.ZodOptional<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
297
297
|
} & {
|
|
298
298
|
include: z.ZodEffects<z.ZodEffects<z.ZodOptional<z.ZodString>, string[], string | undefined>, string[], string | undefined>;
|
|
299
|
-
targetTable: z.ZodOptional<z.ZodEnum<["KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES", ...("KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES")[]]>>;
|
|
299
|
+
targetTable: z.ZodOptional<z.ZodEnum<["KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS", ...("KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS")[]]>>;
|
|
300
300
|
targetId: z.ZodEffects<z.ZodOptional<z.ZodString>, string | undefined, string | undefined>;
|
|
301
301
|
}, "strip", z.ZodTypeAny, {
|
|
302
302
|
page: number;
|
|
303
303
|
limit: number;
|
|
304
304
|
include: string[];
|
|
305
305
|
targetId?: string | undefined;
|
|
306
|
-
targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | undefined;
|
|
306
|
+
targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS" | undefined;
|
|
307
307
|
}, {
|
|
308
308
|
page?: number | undefined;
|
|
309
309
|
limit?: number | undefined;
|
|
310
310
|
include?: string | undefined;
|
|
311
311
|
targetId?: string | undefined;
|
|
312
|
-
targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | undefined;
|
|
312
|
+
targetTable?: "KYCS" | "AMLS" | "AICS" | "KYBS" | "INDIVIDUALS" | "LEGAL_ENTITIES" | "INVESTOR_ACCOUNTS" | "TRADES" | "OFFERINGS" | "ISSUERS" | "COVERED_PERSONS" | "PAYMENT_METHODS" | "NOTES" | "USERS" | "ACCOUNTS" | "PAGES" | "TASKS" | "FILES" | "DATA_RECORD_FILES" | "ASSETS" | "SITES" | "PAGE_REVISIONS" | "TRADE_LINE_ITEMS" | "TRANSACTIONS" | "DISBURSEMENTS" | "DISBURSEMENT_REVIEWS" | "ISSUER_PAYMENT_METHODS" | "SIGNER_BRANDS" | "THEMES" | "THEME_SETTINGS" | "CAP_TABLES" | "CAP_TABLE_SHARE_CLASSES" | "CAP_TABLE_ENTRIES" | "EMAIL_THEMES" | "EMAIL_THEME_SETTINGS" | undefined;
|
|
313
313
|
}>;
|
|
314
314
|
summary: "Get files";
|
|
315
315
|
path: "files";
|