@dalmore/api-contracts 0.0.0-dev.9f40653 → 0.0.0-dev.a341696
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/activity.types.d.ts +26 -24
- package/common/types/activity.types.js +4 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/asset.types.d.ts +298 -0
- package/common/types/asset.types.js +191 -42
- package/common/types/asset.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +41 -0
- package/common/types/bonus-tier.types.js +14 -7
- package/common/types/bonus-tier.types.js.map +1 -1
- package/common/types/common.types.d.ts +13 -2
- package/common/types/common.types.js +7 -0
- package/common/types/common.types.js.map +1 -1
- package/common/types/comply-advantage-api.types.d.ts +86 -992
- package/common/types/comply-advantage-api.types.js +15 -2
- 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/disbursements.types.d.ts +106 -626
- 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 +14 -11
- package/common/types/file.types.js +2 -0
- package/common/types/file.types.js.map +1 -1
- package/common/types/individuals.types.js +5 -2
- package/common/types/individuals.types.js.map +1 -1
- package/common/types/issuer-bank-account.types.d.ts +4 -276
- package/common/types/issuer-offering.types.d.ts +729 -6
- package/common/types/issuer-offering.types.js +141 -5
- 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.types.d.ts +321 -2
- package/common/types/offering.types.js +152 -11
- package/common/types/offering.types.js.map +1 -1
- package/common/types/signer.types.d.ts +8 -8
- package/common/types/site.types.d.ts +20 -0
- package/common/types/task.types.d.ts +22 -22
- package/common/types/trade.types.d.ts +2 -0
- package/common/types/trade.types.js +2 -0
- package/common/types/trade.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +88 -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 +344 -10
- package/contracts/clients/offerings/index.d.ts +250 -4
- package/package.json +1 -1
|
@@ -101,6 +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>;
|
|
106
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
107
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
104
108
|
}, "strip", z.ZodTypeAny, {
|
|
105
109
|
type: import("../../..").AssetType | null;
|
|
106
110
|
id: string;
|
|
@@ -119,6 +123,10 @@ export declare const assetsContract: {
|
|
|
119
123
|
durationType: import("../../..").DurationType | null;
|
|
120
124
|
tiers: number[] | null;
|
|
121
125
|
enableBonus: boolean;
|
|
126
|
+
principalAmount: number | null;
|
|
127
|
+
maxTotalRaise: number | null;
|
|
128
|
+
interestRate: number | null;
|
|
129
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
122
130
|
__entity?: string | undefined;
|
|
123
131
|
account?: {
|
|
124
132
|
status: import("../../..").AccountStatus;
|
|
@@ -153,6 +161,10 @@ export declare const assetsContract: {
|
|
|
153
161
|
durationType: import("../../..").DurationType | null;
|
|
154
162
|
tiers: number[] | null;
|
|
155
163
|
enableBonus: boolean;
|
|
164
|
+
principalAmount: number | null;
|
|
165
|
+
maxTotalRaise: number | null;
|
|
166
|
+
interestRate: number | null;
|
|
167
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
156
168
|
__entity?: string | undefined;
|
|
157
169
|
account?: {
|
|
158
170
|
status: import("../../..").AccountStatus;
|
|
@@ -208,6 +220,10 @@ export declare const assetsContract: {
|
|
|
208
220
|
durationType: import("../../..").DurationType | null;
|
|
209
221
|
tiers: number[] | null;
|
|
210
222
|
enableBonus: boolean;
|
|
223
|
+
principalAmount: number | null;
|
|
224
|
+
maxTotalRaise: number | null;
|
|
225
|
+
interestRate: number | null;
|
|
226
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
211
227
|
__entity?: string | undefined;
|
|
212
228
|
account?: {
|
|
213
229
|
status: import("../../..").AccountStatus;
|
|
@@ -251,6 +267,10 @@ export declare const assetsContract: {
|
|
|
251
267
|
durationType: import("../../..").DurationType | null;
|
|
252
268
|
tiers: number[] | null;
|
|
253
269
|
enableBonus: boolean;
|
|
270
|
+
principalAmount: number | null;
|
|
271
|
+
maxTotalRaise: number | null;
|
|
272
|
+
interestRate: number | null;
|
|
273
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
254
274
|
__entity?: string | undefined;
|
|
255
275
|
account?: {
|
|
256
276
|
status: import("../../..").AccountStatus;
|
|
@@ -401,6 +421,10 @@ export declare const assetsContract: {
|
|
|
401
421
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
402
422
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
403
423
|
enableBonus: z.ZodBoolean;
|
|
424
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
425
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
426
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
427
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
404
428
|
}, "strip", z.ZodTypeAny, {
|
|
405
429
|
type: import("../../..").AssetType | null;
|
|
406
430
|
id: string;
|
|
@@ -419,6 +443,10 @@ export declare const assetsContract: {
|
|
|
419
443
|
durationType: import("../../..").DurationType | null;
|
|
420
444
|
tiers: number[] | null;
|
|
421
445
|
enableBonus: boolean;
|
|
446
|
+
principalAmount: number | null;
|
|
447
|
+
maxTotalRaise: number | null;
|
|
448
|
+
interestRate: number | null;
|
|
449
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
422
450
|
__entity?: string | undefined;
|
|
423
451
|
account?: {
|
|
424
452
|
status: import("../../..").AccountStatus;
|
|
@@ -453,6 +481,10 @@ export declare const assetsContract: {
|
|
|
453
481
|
durationType: import("../../..").DurationType | null;
|
|
454
482
|
tiers: number[] | null;
|
|
455
483
|
enableBonus: boolean;
|
|
484
|
+
principalAmount: number | null;
|
|
485
|
+
maxTotalRaise: number | null;
|
|
486
|
+
interestRate: number | null;
|
|
487
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
456
488
|
__entity?: string | undefined;
|
|
457
489
|
account?: {
|
|
458
490
|
status: import("../../..").AccountStatus;
|
|
@@ -541,6 +573,10 @@ export declare const assetsContract: {
|
|
|
541
573
|
template: z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>;
|
|
542
574
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
543
575
|
enableBonus: z.ZodDefault<z.ZodBoolean>;
|
|
576
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
577
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
578
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
579
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
544
580
|
}, "strip", z.ZodTypeAny, {
|
|
545
581
|
type: import("../../..").AssetType;
|
|
546
582
|
name: string;
|
|
@@ -553,6 +589,10 @@ export declare const assetsContract: {
|
|
|
553
589
|
duration?: number | null | undefined;
|
|
554
590
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
555
591
|
tiers?: number[] | null | undefined;
|
|
592
|
+
principalAmount?: number | null | undefined;
|
|
593
|
+
maxTotalRaise?: number | null | undefined;
|
|
594
|
+
interestRate?: number | null | undefined;
|
|
595
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
556
596
|
}, {
|
|
557
597
|
type: import("../../..").AssetType;
|
|
558
598
|
name: string;
|
|
@@ -565,6 +605,10 @@ export declare const assetsContract: {
|
|
|
565
605
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
566
606
|
tiers?: number[] | null | undefined;
|
|
567
607
|
enableBonus?: boolean | undefined;
|
|
608
|
+
principalAmount?: number | null | undefined;
|
|
609
|
+
maxTotalRaise?: number | null | undefined;
|
|
610
|
+
interestRate?: number | null | undefined;
|
|
611
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
568
612
|
}>, {
|
|
569
613
|
type: import("../../..").AssetType;
|
|
570
614
|
name: string;
|
|
@@ -577,6 +621,10 @@ export declare const assetsContract: {
|
|
|
577
621
|
duration?: number | null | undefined;
|
|
578
622
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
579
623
|
tiers?: number[] | null | undefined;
|
|
624
|
+
principalAmount?: number | null | undefined;
|
|
625
|
+
maxTotalRaise?: number | null | undefined;
|
|
626
|
+
interestRate?: number | null | undefined;
|
|
627
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
580
628
|
}, {
|
|
581
629
|
type: import("../../..").AssetType;
|
|
582
630
|
name: string;
|
|
@@ -589,6 +637,10 @@ export declare const assetsContract: {
|
|
|
589
637
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
590
638
|
tiers?: number[] | null | undefined;
|
|
591
639
|
enableBonus?: boolean | undefined;
|
|
640
|
+
principalAmount?: number | null | undefined;
|
|
641
|
+
maxTotalRaise?: number | null | undefined;
|
|
642
|
+
interestRate?: number | null | undefined;
|
|
643
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
592
644
|
}>;
|
|
593
645
|
summary: "Create an asset";
|
|
594
646
|
path: "assets";
|
|
@@ -655,6 +707,10 @@ export declare const assetsContract: {
|
|
|
655
707
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
656
708
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
657
709
|
enableBonus: z.ZodBoolean;
|
|
710
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
711
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
712
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
713
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
658
714
|
}, "strip", z.ZodTypeAny, {
|
|
659
715
|
type: import("../../..").AssetType | null;
|
|
660
716
|
id: string;
|
|
@@ -673,6 +729,10 @@ export declare const assetsContract: {
|
|
|
673
729
|
durationType: import("../../..").DurationType | null;
|
|
674
730
|
tiers: number[] | null;
|
|
675
731
|
enableBonus: boolean;
|
|
732
|
+
principalAmount: number | null;
|
|
733
|
+
maxTotalRaise: number | null;
|
|
734
|
+
interestRate: number | null;
|
|
735
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
676
736
|
__entity?: string | undefined;
|
|
677
737
|
account?: {
|
|
678
738
|
status: import("../../..").AccountStatus;
|
|
@@ -707,6 +767,10 @@ export declare const assetsContract: {
|
|
|
707
767
|
durationType: import("../../..").DurationType | null;
|
|
708
768
|
tiers: number[] | null;
|
|
709
769
|
enableBonus: boolean;
|
|
770
|
+
principalAmount: number | null;
|
|
771
|
+
maxTotalRaise: number | null;
|
|
772
|
+
interestRate: number | null;
|
|
773
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
710
774
|
__entity?: string | undefined;
|
|
711
775
|
account?: {
|
|
712
776
|
status: import("../../..").AccountStatus;
|
|
@@ -794,6 +858,10 @@ export declare const assetsContract: {
|
|
|
794
858
|
template: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>>>>;
|
|
795
859
|
tiers: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
796
860
|
enableBonus: z.ZodOptional<z.ZodBoolean>;
|
|
861
|
+
principalAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
862
|
+
maxTotalRaise: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
863
|
+
interestRate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
864
|
+
interestType: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>>;
|
|
797
865
|
}, "strip", z.ZodTypeAny, {
|
|
798
866
|
type?: import("../../..").AssetType | undefined;
|
|
799
867
|
name?: string | undefined;
|
|
@@ -805,6 +873,10 @@ export declare const assetsContract: {
|
|
|
805
873
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
806
874
|
tiers?: number[] | null | undefined;
|
|
807
875
|
enableBonus?: boolean | undefined;
|
|
876
|
+
principalAmount?: number | null | undefined;
|
|
877
|
+
maxTotalRaise?: number | null | undefined;
|
|
878
|
+
interestRate?: number | null | undefined;
|
|
879
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
808
880
|
}, {
|
|
809
881
|
type?: import("../../..").AssetType | undefined;
|
|
810
882
|
name?: string | undefined;
|
|
@@ -816,6 +888,10 @@ export declare const assetsContract: {
|
|
|
816
888
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
817
889
|
tiers?: number[] | null | undefined;
|
|
818
890
|
enableBonus?: boolean | undefined;
|
|
891
|
+
principalAmount?: number | null | undefined;
|
|
892
|
+
maxTotalRaise?: number | null | undefined;
|
|
893
|
+
interestRate?: number | null | undefined;
|
|
894
|
+
interestType?: import("../../../common/types/asset.types").InterestType | null | undefined;
|
|
819
895
|
}>;
|
|
820
896
|
pathParams: z.ZodObject<{
|
|
821
897
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -889,6 +965,10 @@ export declare const assetsContract: {
|
|
|
889
965
|
template: z.ZodNativeEnum<typeof import("../../../common/types/asset.types").AssetTemplateType>;
|
|
890
966
|
tiers: z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>;
|
|
891
967
|
enableBonus: z.ZodBoolean;
|
|
968
|
+
principalAmount: z.ZodNullable<z.ZodNumber>;
|
|
969
|
+
maxTotalRaise: z.ZodNullable<z.ZodNumber>;
|
|
970
|
+
interestRate: z.ZodNullable<z.ZodNumber>;
|
|
971
|
+
interestType: z.ZodNullable<z.ZodNativeEnum<typeof import("../../../common/types/asset.types").InterestType>>;
|
|
892
972
|
}, "strip", z.ZodTypeAny, {
|
|
893
973
|
type: import("../../..").AssetType | null;
|
|
894
974
|
id: string;
|
|
@@ -907,6 +987,10 @@ export declare const assetsContract: {
|
|
|
907
987
|
durationType: import("../../..").DurationType | null;
|
|
908
988
|
tiers: number[] | null;
|
|
909
989
|
enableBonus: boolean;
|
|
990
|
+
principalAmount: number | null;
|
|
991
|
+
maxTotalRaise: number | null;
|
|
992
|
+
interestRate: number | null;
|
|
993
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
910
994
|
__entity?: string | undefined;
|
|
911
995
|
account?: {
|
|
912
996
|
status: import("../../..").AccountStatus;
|
|
@@ -941,6 +1025,10 @@ export declare const assetsContract: {
|
|
|
941
1025
|
durationType: import("../../..").DurationType | null;
|
|
942
1026
|
tiers: number[] | null;
|
|
943
1027
|
enableBonus: boolean;
|
|
1028
|
+
principalAmount: number | null;
|
|
1029
|
+
maxTotalRaise: number | null;
|
|
1030
|
+
interestRate: number | null;
|
|
1031
|
+
interestType: import("../../../common/types/asset.types").InterestType | null;
|
|
944
1032
|
__entity?: string | undefined;
|
|
945
1033
|
account?: {
|
|
946
1034
|
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";
|
|
@@ -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" | "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 public files";
|
|
315
315
|
path: "files-public";
|