@dalmore/api-contracts 0.0.0-dev.a9772b4 → 0.0.0-dev.ada6a86
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/bonus-tier.types.d.ts +4 -4
- package/common/types/cap-table.types.d.ts +8 -8
- package/common/types/disbursements.types.d.ts +741 -0
- package/common/types/disbursements.types.js +34 -0
- package/common/types/disbursements.types.js.map +1 -1
- package/common/types/investor-account.types.d.ts +4 -4
- package/common/types/signer.types.d.ts +15 -3
- package/common/types/signer.types.js +16 -1
- package/common/types/signer.types.js.map +1 -1
- package/common/types/trade-line-item.types.d.ts +18 -1
- package/common/types/trade-line-item.types.js +12 -1
- package/common/types/trade-line-item.types.js.map +1 -1
- package/common/types/trade.types.d.ts +58 -41
- package/common/types/trade.types.js +11 -4
- package/common/types/trade.types.js.map +1 -1
- package/contracts/clients/index.d.ts +9 -3
- package/contracts/clients/trades/index.d.ts +9 -3
- package/package.json +1 -1
|
@@ -952,13 +952,13 @@ export declare const PurchaseCalculationZod: z.ZodObject<{
|
|
|
952
952
|
totalAmount: z.ZodEffects<z.ZodNumber, number, number>;
|
|
953
953
|
purchasedShares: z.ZodNumber;
|
|
954
954
|
}, "strip", z.ZodTypeAny, {
|
|
955
|
+
purchasedShares: number;
|
|
955
956
|
assetId: string;
|
|
956
957
|
totalAmount: number;
|
|
957
|
-
purchasedShares: number;
|
|
958
958
|
}, {
|
|
959
|
+
purchasedShares: number;
|
|
959
960
|
assetId: string;
|
|
960
961
|
totalAmount: number;
|
|
961
|
-
purchasedShares: number;
|
|
962
962
|
}>;
|
|
963
963
|
export type PurchaseCalculationZod = z.infer<typeof PurchaseCalculationZod>;
|
|
964
964
|
export declare const PurchaseCalculationResponseZod: z.ZodObject<{
|
|
@@ -968,13 +968,13 @@ export declare const PurchaseCalculationResponseZod: z.ZodObject<{
|
|
|
968
968
|
bonusShares: z.ZodNumber;
|
|
969
969
|
}, "strip", z.ZodTypeAny, {
|
|
970
970
|
type: BonusType | null;
|
|
971
|
+
bonusShares: number;
|
|
971
972
|
assetId: string;
|
|
972
973
|
bonusTierId: string | null;
|
|
973
|
-
bonusShares: number;
|
|
974
974
|
}, {
|
|
975
975
|
type: BonusType | null;
|
|
976
|
+
bonusShares: number;
|
|
976
977
|
assetId: string;
|
|
977
978
|
bonusTierId: string | null;
|
|
978
|
-
bonusShares: number;
|
|
979
979
|
}>;
|
|
980
980
|
export type PurchaseCalculationResponseZod = z.infer<typeof PurchaseCalculationResponseZod>;
|
|
@@ -258,8 +258,8 @@ export declare const UpdateCapTableEntryZod: z.ZodObject<{
|
|
|
258
258
|
}, "strip", z.ZodTypeAny, {
|
|
259
259
|
status?: CapTableEntryStatus | undefined;
|
|
260
260
|
notes?: string | null | undefined;
|
|
261
|
-
numberOfShares?: number | undefined;
|
|
262
261
|
pricePerShare?: number | null | undefined;
|
|
262
|
+
numberOfShares?: number | undefined;
|
|
263
263
|
shareClassId?: string | undefined;
|
|
264
264
|
holderType?: CapTableHolderType | undefined;
|
|
265
265
|
holderName?: string | undefined;
|
|
@@ -269,8 +269,8 @@ export declare const UpdateCapTableEntryZod: z.ZodObject<{
|
|
|
269
269
|
}, {
|
|
270
270
|
status?: CapTableEntryStatus | undefined;
|
|
271
271
|
notes?: string | null | undefined;
|
|
272
|
-
numberOfShares?: number | undefined;
|
|
273
272
|
pricePerShare?: number | null | undefined;
|
|
273
|
+
numberOfShares?: number | undefined;
|
|
274
274
|
shareClassId?: string | undefined;
|
|
275
275
|
holderType?: CapTableHolderType | undefined;
|
|
276
276
|
holderName?: string | undefined;
|
|
@@ -317,8 +317,8 @@ export declare const CapTableEntryZod: z.ZodObject<{
|
|
|
317
317
|
individualId: string | null;
|
|
318
318
|
legalEntityId: string | null;
|
|
319
319
|
investorAccountId: string | null;
|
|
320
|
-
numberOfShares: number;
|
|
321
320
|
pricePerShare: number | null;
|
|
321
|
+
numberOfShares: number;
|
|
322
322
|
capTableId: string;
|
|
323
323
|
shareClassId: string;
|
|
324
324
|
holderType: CapTableHolderType;
|
|
@@ -343,8 +343,8 @@ export declare const CapTableEntryZod: z.ZodObject<{
|
|
|
343
343
|
individualId: string | null;
|
|
344
344
|
legalEntityId: string | null;
|
|
345
345
|
investorAccountId: string | null;
|
|
346
|
-
numberOfShares: number;
|
|
347
346
|
pricePerShare: number | null;
|
|
347
|
+
numberOfShares: number;
|
|
348
348
|
capTableId: string;
|
|
349
349
|
shareClassId: string;
|
|
350
350
|
holderType: CapTableHolderType;
|
|
@@ -399,8 +399,8 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
399
399
|
individualId: string | null;
|
|
400
400
|
legalEntityId: string | null;
|
|
401
401
|
investorAccountId: string | null;
|
|
402
|
-
numberOfShares: number;
|
|
403
402
|
pricePerShare: number | null;
|
|
403
|
+
numberOfShares: number;
|
|
404
404
|
capTableId: string;
|
|
405
405
|
shareClassId: string;
|
|
406
406
|
holderType: CapTableHolderType;
|
|
@@ -425,8 +425,8 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
425
425
|
individualId: string | null;
|
|
426
426
|
legalEntityId: string | null;
|
|
427
427
|
investorAccountId: string | null;
|
|
428
|
-
numberOfShares: number;
|
|
429
428
|
pricePerShare: number | null;
|
|
429
|
+
numberOfShares: number;
|
|
430
430
|
capTableId: string;
|
|
431
431
|
shareClassId: string;
|
|
432
432
|
holderType: CapTableHolderType;
|
|
@@ -472,8 +472,8 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
472
472
|
individualId: string | null;
|
|
473
473
|
legalEntityId: string | null;
|
|
474
474
|
investorAccountId: string | null;
|
|
475
|
-
numberOfShares: number;
|
|
476
475
|
pricePerShare: number | null;
|
|
476
|
+
numberOfShares: number;
|
|
477
477
|
capTableId: string;
|
|
478
478
|
shareClassId: string;
|
|
479
479
|
holderType: CapTableHolderType;
|
|
@@ -507,8 +507,8 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
507
507
|
individualId: string | null;
|
|
508
508
|
legalEntityId: string | null;
|
|
509
509
|
investorAccountId: string | null;
|
|
510
|
-
numberOfShares: number;
|
|
511
510
|
pricePerShare: number | null;
|
|
511
|
+
numberOfShares: number;
|
|
512
512
|
capTableId: string;
|
|
513
513
|
shareClassId: string;
|
|
514
514
|
holderType: CapTableHolderType;
|