@dalmore/api-contracts 0.0.0-dev.a0bb940 → 0.0.0-dev.a891c15
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 +22 -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 +35 -25
- package/common/types/activity.types.js +13 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/asset.types.d.ts +212 -0
- package/common/types/asset.types.js +115 -42
- package/common/types/asset.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +15 -4
- package/common/types/bonus-tier.types.js +14 -7
- package/common/types/bonus-tier.types.js.map +1 -1
- package/common/types/cap-table.types.d.ts +77 -62
- 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 +359 -6
- package/common/types/common.types.js +71 -1
- package/common/types/common.types.js.map +1 -1
- package/common/types/comply-advantage-api.types.d.ts +133 -466
- package/common/types/comply-advantage-api.types.js +24 -3
- package/common/types/comply-advantage-api.types.js.map +1 -1
- package/common/types/dashboard.types.d.ts +7 -7
- package/common/types/data-record.types.d.ts +4 -4
- package/common/types/disbursement-transaction.types.d.ts +1 -1
- package/common/types/disbursement-transaction.types.js +1 -1
- package/common/types/disbursement-transaction.types.js.map +1 -1
- package/common/types/disbursements.types.d.ts +1439 -401
- package/common/types/disbursements.types.js +100 -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/exchange-provider.types.d.ts +12 -12
- package/common/types/file.types.d.ts +35 -11
- package/common/types/file.types.js +11 -0
- package/common/types/file.types.js.map +1 -1
- package/common/types/index.d.ts +3 -0
- package/common/types/index.js +3 -0
- package/common/types/index.js.map +1 -1
- package/common/types/individuals.types.js +5 -2
- package/common/types/individuals.types.js.map +1 -1
- package/common/types/investor-account.types.d.ts +5 -5
- package/common/types/investor-account.types.js +1 -2
- package/common/types/investor-account.types.js.map +1 -1
- package/common/types/issuer-bank-account.types.d.ts +4 -276
- package/common/types/issuer-offering.types.d.ts +829 -14
- package/common/types/issuer-offering.types.js +278 -25
- 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 +534 -20
- package/common/types/offering.types.js +309 -26
- package/common/types/offering.types.js.map +1 -1
- package/common/types/portfolio.types.d.ts +6 -6
- 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/secondary-order.types.d.ts +10 -10
- package/common/types/secondary-trade.types.d.ts +10 -10
- package/common/types/signer.types.d.ts +23 -11
- package/common/types/signer.types.js +16 -1
- package/common/types/signer.types.js.map +1 -1
- package/common/types/site.types.d.ts +17 -12
- package/common/types/task.types.d.ts +22 -22
- package/common/types/trade-line-item.types.d.ts +12 -12
- package/common/types/trade.types.d.ts +47 -45
- package/common/types/trade.types.js +10 -3
- package/common/types/trade.types.js.map +1 -1
- package/common/types/transaction.types.d.ts +80 -2
- package/common/types/transaction.types.js +22 -3
- package/common/types/transaction.types.js.map +1 -1
- package/common/types/user.types.d.ts +191 -59
- package/common/types/user.types.js +9 -1
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +22 -0
- 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 +335 -17
- package/contracts/clients/offerings/index.d.ts +303 -7
- package/contracts/clients/trades/index.d.ts +4 -4
- package/package.json +1 -1
|
@@ -101,6 +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
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
104
105
|
}, "strip", z.ZodTypeAny, {
|
|
105
106
|
type: import("../../..").AssetType | null;
|
|
106
107
|
id: string;
|
|
@@ -119,6 +120,7 @@ export declare const assetsContract: {
|
|
|
119
120
|
durationType: import("../../..").DurationType | null;
|
|
120
121
|
tiers: number[] | null;
|
|
121
122
|
enableBonus: boolean;
|
|
123
|
+
interestRate: number | null;
|
|
122
124
|
__entity?: string | undefined;
|
|
123
125
|
account?: {
|
|
124
126
|
status: import("../../..").AccountStatus;
|
|
@@ -153,6 +155,7 @@ export declare const assetsContract: {
|
|
|
153
155
|
durationType: import("../../..").DurationType | null;
|
|
154
156
|
tiers: number[] | null;
|
|
155
157
|
enableBonus: boolean;
|
|
158
|
+
interestRate: number | null;
|
|
156
159
|
__entity?: string | undefined;
|
|
157
160
|
account?: {
|
|
158
161
|
status: import("../../..").AccountStatus;
|
|
@@ -208,6 +211,7 @@ export declare const assetsContract: {
|
|
|
208
211
|
durationType: import("../../..").DurationType | null;
|
|
209
212
|
tiers: number[] | null;
|
|
210
213
|
enableBonus: boolean;
|
|
214
|
+
interestRate: number | null;
|
|
211
215
|
__entity?: string | undefined;
|
|
212
216
|
account?: {
|
|
213
217
|
status: import("../../..").AccountStatus;
|
|
@@ -251,6 +255,7 @@ export declare const assetsContract: {
|
|
|
251
255
|
durationType: import("../../..").DurationType | null;
|
|
252
256
|
tiers: number[] | null;
|
|
253
257
|
enableBonus: boolean;
|
|
258
|
+
interestRate: number | null;
|
|
254
259
|
__entity?: string | undefined;
|
|
255
260
|
account?: {
|
|
256
261
|
status: import("../../..").AccountStatus;
|
|
@@ -401,6 +406,7 @@ export declare const assetsContract: {
|
|
|
401
406
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
402
407
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
403
408
|
enableBonus: z.ZodBoolean;
|
|
409
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
404
410
|
}, "strip", z.ZodTypeAny, {
|
|
405
411
|
type: import("../../..").AssetType | null;
|
|
406
412
|
id: string;
|
|
@@ -419,6 +425,7 @@ export declare const assetsContract: {
|
|
|
419
425
|
durationType: import("../../..").DurationType | null;
|
|
420
426
|
tiers: number[] | null;
|
|
421
427
|
enableBonus: boolean;
|
|
428
|
+
interestRate: number | null;
|
|
422
429
|
__entity?: string | undefined;
|
|
423
430
|
account?: {
|
|
424
431
|
status: import("../../..").AccountStatus;
|
|
@@ -453,6 +460,7 @@ export declare const assetsContract: {
|
|
|
453
460
|
durationType: import("../../..").DurationType | null;
|
|
454
461
|
tiers: number[] | null;
|
|
455
462
|
enableBonus: boolean;
|
|
463
|
+
interestRate: number | null;
|
|
456
464
|
__entity?: string | undefined;
|
|
457
465
|
account?: {
|
|
458
466
|
status: import("../../..").AccountStatus;
|
|
@@ -541,6 +549,7 @@ export declare const assetsContract: {
|
|
|
541
549
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
542
550
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
543
551
|
enableBonus: z.ZodDefault<z.ZodBoolean>;
|
|
552
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
544
553
|
}, "strip", z.ZodTypeAny, {
|
|
545
554
|
type: import("../../..").AssetType;
|
|
546
555
|
name: string;
|
|
@@ -553,6 +562,7 @@ export declare const assetsContract: {
|
|
|
553
562
|
duration?: number | null | undefined;
|
|
554
563
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
555
564
|
tiers?: number[] | null | undefined;
|
|
565
|
+
interestRate?: number | null | undefined;
|
|
556
566
|
}, {
|
|
557
567
|
type: import("../../..").AssetType;
|
|
558
568
|
name: string;
|
|
@@ -565,6 +575,7 @@ export declare const assetsContract: {
|
|
|
565
575
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
566
576
|
tiers?: number[] | null | undefined;
|
|
567
577
|
enableBonus?: boolean | undefined;
|
|
578
|
+
interestRate?: number | null | undefined;
|
|
568
579
|
}>, {
|
|
569
580
|
type: import("../../..").AssetType;
|
|
570
581
|
name: string;
|
|
@@ -577,6 +588,7 @@ export declare const assetsContract: {
|
|
|
577
588
|
duration?: number | null | undefined;
|
|
578
589
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
579
590
|
tiers?: number[] | null | undefined;
|
|
591
|
+
interestRate?: number | null | undefined;
|
|
580
592
|
}, {
|
|
581
593
|
type: import("../../..").AssetType;
|
|
582
594
|
name: string;
|
|
@@ -589,6 +601,7 @@ export declare const assetsContract: {
|
|
|
589
601
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
590
602
|
tiers?: number[] | null | undefined;
|
|
591
603
|
enableBonus?: boolean | undefined;
|
|
604
|
+
interestRate?: number | null | undefined;
|
|
592
605
|
}>;
|
|
593
606
|
summary: "Create an asset";
|
|
594
607
|
path: "assets";
|
|
@@ -655,6 +668,7 @@ export declare const assetsContract: {
|
|
|
655
668
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
656
669
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
657
670
|
enableBonus: z.ZodBoolean;
|
|
671
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
658
672
|
}, "strip", z.ZodTypeAny, {
|
|
659
673
|
type: import("../../..").AssetType | null;
|
|
660
674
|
id: string;
|
|
@@ -673,6 +687,7 @@ export declare const assetsContract: {
|
|
|
673
687
|
durationType: import("../../..").DurationType | null;
|
|
674
688
|
tiers: number[] | null;
|
|
675
689
|
enableBonus: boolean;
|
|
690
|
+
interestRate: number | null;
|
|
676
691
|
__entity?: string | undefined;
|
|
677
692
|
account?: {
|
|
678
693
|
status: import("../../..").AccountStatus;
|
|
@@ -707,6 +722,7 @@ export declare const assetsContract: {
|
|
|
707
722
|
durationType: import("../../..").DurationType | null;
|
|
708
723
|
tiers: number[] | null;
|
|
709
724
|
enableBonus: boolean;
|
|
725
|
+
interestRate: number | null;
|
|
710
726
|
__entity?: string | undefined;
|
|
711
727
|
account?: {
|
|
712
728
|
status: import("../../..").AccountStatus;
|
|
@@ -794,6 +810,7 @@ export declare const assetsContract: {
|
|
|
794
810
|
template: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>>>;
|
|
795
811
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
796
812
|
enableBonus: z.ZodOptional<z.ZodBoolean>;
|
|
813
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
797
814
|
}, "strip", z.ZodTypeAny, {
|
|
798
815
|
type?: import("../../..").AssetType | undefined;
|
|
799
816
|
name?: string | undefined;
|
|
@@ -805,6 +822,7 @@ export declare const assetsContract: {
|
|
|
805
822
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
806
823
|
tiers?: number[] | null | undefined;
|
|
807
824
|
enableBonus?: boolean | undefined;
|
|
825
|
+
interestRate?: number | null | undefined;
|
|
808
826
|
}, {
|
|
809
827
|
type?: import("../../..").AssetType | undefined;
|
|
810
828
|
name?: string | undefined;
|
|
@@ -816,6 +834,7 @@ export declare const assetsContract: {
|
|
|
816
834
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
817
835
|
tiers?: number[] | null | undefined;
|
|
818
836
|
enableBonus?: boolean | undefined;
|
|
837
|
+
interestRate?: number | null | undefined;
|
|
819
838
|
}>;
|
|
820
839
|
pathParams: z.ZodObject<{
|
|
821
840
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -889,6 +908,7 @@ export declare const assetsContract: {
|
|
|
889
908
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
890
909
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
891
910
|
enableBonus: z.ZodBoolean;
|
|
911
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
892
912
|
}, "strip", z.ZodTypeAny, {
|
|
893
913
|
type: import("../../..").AssetType | null;
|
|
894
914
|
id: string;
|
|
@@ -907,6 +927,7 @@ export declare const assetsContract: {
|
|
|
907
927
|
durationType: import("../../..").DurationType | null;
|
|
908
928
|
tiers: number[] | null;
|
|
909
929
|
enableBonus: boolean;
|
|
930
|
+
interestRate: number | null;
|
|
910
931
|
__entity?: string | undefined;
|
|
911
932
|
account?: {
|
|
912
933
|
status: import("../../..").AccountStatus;
|
|
@@ -941,6 +962,7 @@ export declare const assetsContract: {
|
|
|
941
962
|
durationType: import("../../..").DurationType | null;
|
|
942
963
|
tiers: number[] | null;
|
|
943
964
|
enableBonus: boolean;
|
|
965
|
+
interestRate: number | null;
|
|
944
966
|
__entity?: string | undefined;
|
|
945
967
|
account?: {
|
|
946
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", ...("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")[]]>>;
|
|
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" | 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" | 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";
|
|
@@ -296,20 +296,20 @@ export declare const filesPublicContract: {
|
|
|
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", ...("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")[]]>>;
|
|
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" | 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" | 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 public files";
|
|
315
315
|
path: "files-public";
|