@dalmore/api-contracts 0.0.0-dev.fb640f0 → 0.0.0-dev.fbcf2bc
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 +5 -0
- package/common/types/account.types.d.ts +6 -6
- package/common/types/cap-table.types.d.ts +40 -40
- package/common/types/common.types.d.ts +28 -1
- package/common/types/common.types.js +11 -0
- package/common/types/common.types.js.map +1 -1
- 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 +793 -0
- package/common/types/disbursements.types.js +60 -0
- package/common/types/disbursements.types.js.map +1 -1
- package/common/types/exchange-provider.types.d.ts +12 -12
- package/common/types/index.d.ts +1 -0
- package/common/types/index.js +1 -0
- package/common/types/index.js.map +1 -1
- package/common/types/investor-account.types.d.ts +1 -1
- package/common/types/investor-account.types.js +1 -2
- package/common/types/investor-account.types.js.map +1 -1
- package/common/types/invite.types.d.ts +2 -2
- package/common/types/invite.types.js +1 -1
- package/common/types/invite.types.js.map +1 -1
- package/common/types/issuer-offering.types.d.ts +22 -10
- package/common/types/issuer-offering.types.js +35 -11
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering.types.d.ts +39 -19
- package/common/types/offering.types.js +42 -16
- package/common/types/offering.types.js.map +1 -1
- package/common/types/portfolio.types.d.ts +6 -6
- package/common/types/secondary-order.types.d.ts +10 -10
- package/common/types/secondary-trade.types.d.ts +10 -10
- package/common/types/site.types.d.ts +12 -12
- package/common/types/trade.types.d.ts +9 -0
- package/common/types/trade.types.js +1 -0
- package/common/types/trade.types.js.map +1 -1
- package/common/types/transaction.types.d.ts +0 -1
- package/common/types/transaction.types.js +0 -1
- package/common/types/transaction.types.js.map +1 -1
- package/common/types/user.types.d.ts +84 -0
- package/common/types/user.types.js +2 -0
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/index.d.ts +13 -3
- package/contracts/clients/offerings/index.d.ts +13 -3
- package/package.json +1 -1
|
@@ -20,8 +20,8 @@ export declare const offeringsContract: {
|
|
|
20
20
|
enabled: z.ZodOptional<z.ZodEffects<z.ZodBoolean, boolean, unknown>>;
|
|
21
21
|
managedBy: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").ManagedByType>>;
|
|
22
22
|
versioningType: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").OfferingVersioningType>>;
|
|
23
|
-
combinedStatus: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").OfferingStatus>>;
|
|
24
23
|
onboardingStatus: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").OfferingOnboardingStatus>>;
|
|
24
|
+
complianceReview: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").ComplianceReview>>;
|
|
25
25
|
}, "strip", z.ZodTypeAny, {
|
|
26
26
|
page: number;
|
|
27
27
|
limit: number;
|
|
@@ -31,12 +31,12 @@ export declare const offeringsContract: {
|
|
|
31
31
|
accountId?: string | undefined;
|
|
32
32
|
name?: string | undefined;
|
|
33
33
|
managedBy?: import("../../..").ManagedByType | undefined;
|
|
34
|
+
complianceReview?: import("../../..").ComplianceReview | undefined;
|
|
34
35
|
onboardingStatus?: import("../../..").OfferingOnboardingStatus | undefined;
|
|
35
36
|
enabled?: boolean | undefined;
|
|
36
37
|
issuerId?: string | undefined;
|
|
37
38
|
issuerName?: string | undefined;
|
|
38
39
|
versioningType?: import("../../..").OfferingVersioningType | undefined;
|
|
39
|
-
combinedStatus?: import("../../..").OfferingStatus | undefined;
|
|
40
40
|
}, {
|
|
41
41
|
type?: import("../../..").OfferingType | undefined;
|
|
42
42
|
status?: import("../../..").ComplianceReview | undefined;
|
|
@@ -45,13 +45,13 @@ export declare const offeringsContract: {
|
|
|
45
45
|
managedBy?: import("../../..").ManagedByType | undefined;
|
|
46
46
|
page?: number | undefined;
|
|
47
47
|
limit?: number | undefined;
|
|
48
|
+
complianceReview?: import("../../..").ComplianceReview | undefined;
|
|
48
49
|
onboardingStatus?: import("../../..").OfferingOnboardingStatus | undefined;
|
|
49
50
|
include?: string | undefined;
|
|
50
51
|
enabled?: unknown;
|
|
51
52
|
issuerId?: string | undefined;
|
|
52
53
|
issuerName?: string | undefined;
|
|
53
54
|
versioningType?: import("../../..").OfferingVersioningType | undefined;
|
|
54
|
-
combinedStatus?: import("../../..").OfferingStatus | undefined;
|
|
55
55
|
}>;
|
|
56
56
|
summary: "Get offerings";
|
|
57
57
|
path: "offerings";
|
|
@@ -413,6 +413,7 @@ export declare const offeringsContract: {
|
|
|
413
413
|
auth: boolean;
|
|
414
414
|
};
|
|
415
415
|
body: z.ZodEffects<z.ZodObject<{
|
|
416
|
+
shareClassId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
416
417
|
name: z.ZodOptional<z.ZodString>;
|
|
417
418
|
type: z.ZodOptional<z.ZodNativeEnum<typeof import("../../..").OfferingType>>;
|
|
418
419
|
targetAmount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -516,6 +517,7 @@ export declare const offeringsContract: {
|
|
|
516
517
|
warrantPercentage?: number | null | undefined;
|
|
517
518
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
518
519
|
incrementThreshold?: number | null | undefined;
|
|
520
|
+
shareClassId?: string | null | undefined;
|
|
519
521
|
assetName?: string | undefined;
|
|
520
522
|
assetType?: import("../../..").AssetType | undefined;
|
|
521
523
|
pricePerUnit?: number | null | undefined;
|
|
@@ -561,6 +563,7 @@ export declare const offeringsContract: {
|
|
|
561
563
|
warrantPercentage?: number | null | undefined;
|
|
562
564
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
563
565
|
incrementThreshold?: number | null | undefined;
|
|
566
|
+
shareClassId?: string | null | undefined;
|
|
564
567
|
assetName?: string | undefined;
|
|
565
568
|
assetType?: import("../../..").AssetType | undefined;
|
|
566
569
|
pricePerUnit?: number | null | undefined;
|
|
@@ -606,6 +609,7 @@ export declare const offeringsContract: {
|
|
|
606
609
|
warrantPercentage?: number | null | undefined;
|
|
607
610
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
608
611
|
incrementThreshold?: number | null | undefined;
|
|
612
|
+
shareClassId?: string | null | undefined;
|
|
609
613
|
assetName?: string | undefined;
|
|
610
614
|
assetType?: import("../../..").AssetType | undefined;
|
|
611
615
|
pricePerUnit?: number | null | undefined;
|
|
@@ -651,6 +655,7 @@ export declare const offeringsContract: {
|
|
|
651
655
|
warrantPercentage?: number | null | undefined;
|
|
652
656
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
653
657
|
incrementThreshold?: number | null | undefined;
|
|
658
|
+
shareClassId?: string | null | undefined;
|
|
654
659
|
assetName?: string | undefined;
|
|
655
660
|
assetType?: import("../../..").AssetType | undefined;
|
|
656
661
|
pricePerUnit?: number | null | undefined;
|
|
@@ -753,6 +758,7 @@ export declare const offeringsContract: {
|
|
|
753
758
|
};
|
|
754
759
|
body: z.ZodEffects<z.ZodObject<{
|
|
755
760
|
issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
761
|
+
shareClassId: z.ZodOptional<z.ZodNullable<z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>>>;
|
|
756
762
|
name: z.ZodString;
|
|
757
763
|
type: z.ZodNativeEnum<typeof import("../../..").OfferingType>;
|
|
758
764
|
targetAmount: z.ZodNumber;
|
|
@@ -853,6 +859,7 @@ export declare const offeringsContract: {
|
|
|
853
859
|
warrantPercentage?: number | null | undefined;
|
|
854
860
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
855
861
|
incrementThreshold?: number | null | undefined;
|
|
862
|
+
shareClassId?: string | null | undefined;
|
|
856
863
|
yield?: number | null | undefined;
|
|
857
864
|
duration?: number | null | undefined;
|
|
858
865
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -895,6 +902,7 @@ export declare const offeringsContract: {
|
|
|
895
902
|
warrantPercentage?: number | null | undefined;
|
|
896
903
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
897
904
|
incrementThreshold?: number | null | undefined;
|
|
905
|
+
shareClassId?: string | null | undefined;
|
|
898
906
|
yield?: number | null | undefined;
|
|
899
907
|
duration?: number | null | undefined;
|
|
900
908
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -937,6 +945,7 @@ export declare const offeringsContract: {
|
|
|
937
945
|
warrantPercentage?: number | null | undefined;
|
|
938
946
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
939
947
|
incrementThreshold?: number | null | undefined;
|
|
948
|
+
shareClassId?: string | null | undefined;
|
|
940
949
|
yield?: number | null | undefined;
|
|
941
950
|
duration?: number | null | undefined;
|
|
942
951
|
durationType?: import("../../..").DurationType | null | undefined;
|
|
@@ -979,6 +988,7 @@ export declare const offeringsContract: {
|
|
|
979
988
|
warrantPercentage?: number | null | undefined;
|
|
980
989
|
calculationMethod?: import("../../..").WarrantSharesCalculationMethod | null | undefined;
|
|
981
990
|
incrementThreshold?: number | null | undefined;
|
|
991
|
+
shareClassId?: string | null | undefined;
|
|
982
992
|
yield?: number | null | undefined;
|
|
983
993
|
duration?: number | null | undefined;
|
|
984
994
|
durationType?: import("../../..").DurationType | null | undefined;
|