@dalmore/api-contracts 0.0.0-dev.9a3cfcd → 0.0.0-dev.9c4aa34
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/activity.types.d.ts +8 -1
- package/common/types/activity.types.js +7 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/cap-table.types.d.ts +54 -54
- package/common/types/common.types.d.ts +40 -2
- package/common/types/common.types.js +24 -1
- 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 +817 -0
- package/common/types/disbursements.types.js +63 -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 +166 -10
- package/common/types/issuer-offering.types.js +152 -10
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering.types.d.ts +254 -20
- package/common/types/offering.types.js +203 -17
- 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 +2 -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 +108 -5
- package/common/types/user.types.js +6 -1
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/index.d.ts +83 -3
- package/contracts/clients/offerings/index.d.ts +83 -3
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
16
16
|
productSecondaries: z.ZodBoolean;
|
|
17
17
|
featureDisbursements: z.ZodBoolean;
|
|
18
18
|
apiPortal: z.ZodBoolean;
|
|
19
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
19
20
|
}, "strip", z.ZodTypeAny, {
|
|
20
21
|
id: string;
|
|
21
22
|
createdAt: string | Date;
|
|
@@ -30,6 +31,7 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
30
31
|
productSecondaries: boolean;
|
|
31
32
|
featureDisbursements: boolean;
|
|
32
33
|
apiPortal: boolean;
|
|
34
|
+
investorSiteEnabled: boolean;
|
|
33
35
|
__entity?: string | undefined;
|
|
34
36
|
}, {
|
|
35
37
|
id: string;
|
|
@@ -45,6 +47,7 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
45
47
|
productSecondaries: boolean;
|
|
46
48
|
featureDisbursements: boolean;
|
|
47
49
|
apiPortal: boolean;
|
|
50
|
+
investorSiteEnabled: boolean;
|
|
48
51
|
__entity?: string | undefined;
|
|
49
52
|
}>, "many">;
|
|
50
53
|
meta: z.ZodObject<{
|
|
@@ -81,6 +84,7 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
81
84
|
productSecondaries: boolean;
|
|
82
85
|
featureDisbursements: boolean;
|
|
83
86
|
apiPortal: boolean;
|
|
87
|
+
investorSiteEnabled: boolean;
|
|
84
88
|
__entity?: string | undefined;
|
|
85
89
|
}[];
|
|
86
90
|
meta: {
|
|
@@ -105,6 +109,7 @@ export declare const IPaginatedAccountSetting: z.ZodObject<{
|
|
|
105
109
|
productSecondaries: boolean;
|
|
106
110
|
featureDisbursements: boolean;
|
|
107
111
|
apiPortal: boolean;
|
|
112
|
+
investorSiteEnabled: boolean;
|
|
108
113
|
__entity?: string | undefined;
|
|
109
114
|
}[];
|
|
110
115
|
meta: {
|
|
@@ -200,22 +200,22 @@ export declare const PatchAccountZod: z.ZodObject<{
|
|
|
200
200
|
productSecondaries?: boolean | undefined;
|
|
201
201
|
featureDisbursements?: boolean | undefined;
|
|
202
202
|
apiPortal?: boolean | undefined;
|
|
203
|
+
investorSiteEnabled?: boolean | undefined;
|
|
203
204
|
managedBy?: ManagedByType | undefined;
|
|
204
205
|
platform?: Platform | undefined;
|
|
205
206
|
approversCount?: number | undefined;
|
|
206
207
|
integrationGuideId?: string | null | undefined;
|
|
207
|
-
investorSiteEnabled?: boolean | undefined;
|
|
208
208
|
}, {
|
|
209
209
|
name: string;
|
|
210
210
|
productPrimaries?: boolean | undefined;
|
|
211
211
|
productSecondaries?: boolean | undefined;
|
|
212
212
|
featureDisbursements?: boolean | undefined;
|
|
213
213
|
apiPortal?: boolean | undefined;
|
|
214
|
+
investorSiteEnabled?: boolean | undefined;
|
|
214
215
|
managedBy?: ManagedByType | undefined;
|
|
215
216
|
platform?: Platform | undefined;
|
|
216
217
|
approversCount?: number | undefined;
|
|
217
218
|
integrationGuideId?: string | null | undefined;
|
|
218
|
-
investorSiteEnabled?: boolean | undefined;
|
|
219
219
|
}>;
|
|
220
220
|
export type PatchAccountZod = z.infer<typeof PatchAccountZod>;
|
|
221
221
|
export declare const CompliancePatchAccountZod: z.ZodObject<{
|
|
@@ -237,24 +237,24 @@ export declare const CompliancePatchAccountZod: z.ZodObject<{
|
|
|
237
237
|
productSecondaries?: boolean | undefined;
|
|
238
238
|
featureDisbursements?: boolean | undefined;
|
|
239
239
|
apiPortal?: boolean | undefined;
|
|
240
|
+
investorSiteEnabled?: boolean | undefined;
|
|
240
241
|
managedBy?: ManagedByType | undefined;
|
|
241
242
|
platform?: Platform | undefined;
|
|
242
243
|
approversCount?: number | undefined;
|
|
243
244
|
hubspotCompany?: string | null | undefined;
|
|
244
245
|
integrationGuideId?: string | null | undefined;
|
|
245
|
-
investorSiteEnabled?: boolean | undefined;
|
|
246
246
|
}, {
|
|
247
247
|
name: string;
|
|
248
248
|
productPrimaries?: boolean | undefined;
|
|
249
249
|
productSecondaries?: boolean | undefined;
|
|
250
250
|
featureDisbursements?: boolean | undefined;
|
|
251
251
|
apiPortal?: boolean | undefined;
|
|
252
|
+
investorSiteEnabled?: boolean | undefined;
|
|
252
253
|
managedBy?: ManagedByType | undefined;
|
|
253
254
|
platform?: Platform | undefined;
|
|
254
255
|
approversCount?: number | undefined;
|
|
255
256
|
hubspotCompany?: string | null | undefined;
|
|
256
257
|
integrationGuideId?: string | null | undefined;
|
|
257
|
-
investorSiteEnabled?: boolean | undefined;
|
|
258
258
|
}>;
|
|
259
259
|
export type CompliancePatchAccountZod = z.infer<typeof CompliancePatchAccountZod>;
|
|
260
260
|
export declare const PostAccountResponse: z.ZodObject<{
|
|
@@ -621,20 +621,20 @@ export declare const PatchIssuerAccountZod: z.ZodObject<Omit<{
|
|
|
621
621
|
productPrimaries?: boolean | undefined;
|
|
622
622
|
productSecondaries?: boolean | undefined;
|
|
623
623
|
featureDisbursements?: boolean | undefined;
|
|
624
|
+
investorSiteEnabled?: boolean | undefined;
|
|
624
625
|
managedBy?: ManagedByType | undefined;
|
|
625
626
|
platform?: Platform | undefined;
|
|
626
627
|
approversCount?: number | undefined;
|
|
627
628
|
integrationGuideId?: string | null | undefined;
|
|
628
|
-
investorSiteEnabled?: boolean | undefined;
|
|
629
629
|
}, {
|
|
630
630
|
name: string;
|
|
631
631
|
productPrimaries?: boolean | undefined;
|
|
632
632
|
productSecondaries?: boolean | undefined;
|
|
633
633
|
featureDisbursements?: boolean | undefined;
|
|
634
|
+
investorSiteEnabled?: boolean | undefined;
|
|
634
635
|
managedBy?: ManagedByType | undefined;
|
|
635
636
|
platform?: Platform | undefined;
|
|
636
637
|
approversCount?: number | undefined;
|
|
637
638
|
integrationGuideId?: string | null | undefined;
|
|
638
|
-
investorSiteEnabled?: boolean | undefined;
|
|
639
639
|
}>;
|
|
640
640
|
export type PatchIssuerAccountZod = z.infer<typeof PatchIssuerAccountZod>;
|
|
@@ -73,6 +73,7 @@ export declare const ResourceMap: {
|
|
|
73
73
|
* AddedReporcessActivityTypeAction1758023244400
|
|
74
74
|
* AddedActivityActionSave1761715000038
|
|
75
75
|
* AddedAcceptedActivityAction1762848949484
|
|
76
|
+
* AddedRefundVoidActivityActions1770296434343
|
|
76
77
|
*/
|
|
77
78
|
export declare enum ActivityTypeAction {
|
|
78
79
|
CREATE = "CREATE",
|
|
@@ -96,7 +97,13 @@ export declare enum ActivityTypeAction {
|
|
|
96
97
|
SAVE = "SAVE",
|
|
97
98
|
ACCEPTED = "ACCEPTED",
|
|
98
99
|
JOIN = "JOIN",
|
|
99
|
-
RESTORE = "RESTORE"
|
|
100
|
+
RESTORE = "RESTORE",
|
|
101
|
+
REFUND_INITIATED = "REFUND_INITIATED",
|
|
102
|
+
REFUND_COMPLETED = "REFUND_COMPLETED",
|
|
103
|
+
REFUND_FAILED = "REFUND_FAILED",
|
|
104
|
+
VOID_INITIATED = "VOID_INITIATED",
|
|
105
|
+
VOID_COMPLETED = "VOID_COMPLETED",
|
|
106
|
+
VOID_FAILED = "VOID_FAILED"
|
|
100
107
|
}
|
|
101
108
|
export declare const MethodMap: {
|
|
102
109
|
[key: string]: ActivityTypeAction;
|
|
@@ -108,6 +108,7 @@ export const ResourceMap = {
|
|
|
108
108
|
* AddedReporcessActivityTypeAction1758023244400
|
|
109
109
|
* AddedActivityActionSave1761715000038
|
|
110
110
|
* AddedAcceptedActivityAction1762848949484
|
|
111
|
+
* AddedRefundVoidActivityActions1770296434343
|
|
111
112
|
*/
|
|
112
113
|
export var ActivityTypeAction;
|
|
113
114
|
(function (ActivityTypeAction) {
|
|
@@ -133,6 +134,12 @@ export var ActivityTypeAction;
|
|
|
133
134
|
ActivityTypeAction["ACCEPTED"] = "ACCEPTED";
|
|
134
135
|
ActivityTypeAction["JOIN"] = "JOIN";
|
|
135
136
|
ActivityTypeAction["RESTORE"] = "RESTORE";
|
|
137
|
+
ActivityTypeAction["REFUND_INITIATED"] = "REFUND_INITIATED";
|
|
138
|
+
ActivityTypeAction["REFUND_COMPLETED"] = "REFUND_COMPLETED";
|
|
139
|
+
ActivityTypeAction["REFUND_FAILED"] = "REFUND_FAILED";
|
|
140
|
+
ActivityTypeAction["VOID_INITIATED"] = "VOID_INITIATED";
|
|
141
|
+
ActivityTypeAction["VOID_COMPLETED"] = "VOID_COMPLETED";
|
|
142
|
+
ActivityTypeAction["VOID_FAILED"] = "VOID_FAILED";
|
|
136
143
|
})(ActivityTypeAction || (ActivityTypeAction = {}));
|
|
137
144
|
export const MethodMap = {
|
|
138
145
|
POST: ActivityTypeAction.CREATE,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"activity.types.js","sourceRoot":"","sources":["activity.types.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"activity.types.js","sourceRoot":"","sources":["activity.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -232,8 +232,8 @@ export declare const CreateCapTableEntryZod: z.ZodObject<{
|
|
|
232
232
|
individualId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
233
233
|
legalEntityId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
234
234
|
}, "strip", z.ZodTypeAny, {
|
|
235
|
-
numberOfShares: number;
|
|
236
235
|
shareClassId: string;
|
|
236
|
+
numberOfShares: number;
|
|
237
237
|
holderType: CapTableHolderType;
|
|
238
238
|
holderName: string;
|
|
239
239
|
allocationDate: string;
|
|
@@ -245,8 +245,8 @@ export declare const CreateCapTableEntryZod: z.ZodObject<{
|
|
|
245
245
|
holderEmail?: string | null | undefined;
|
|
246
246
|
certificateNumber?: string | null | undefined;
|
|
247
247
|
}, {
|
|
248
|
-
numberOfShares: number;
|
|
249
248
|
shareClassId: string;
|
|
249
|
+
numberOfShares: number;
|
|
250
250
|
holderType: CapTableHolderType;
|
|
251
251
|
holderName: string;
|
|
252
252
|
allocationDate: string;
|
|
@@ -273,9 +273,9 @@ export declare const UpdateCapTableEntryZod: z.ZodObject<{
|
|
|
273
273
|
}, "strip", z.ZodTypeAny, {
|
|
274
274
|
status?: CapTableEntryStatus | undefined;
|
|
275
275
|
notes?: string | null | undefined;
|
|
276
|
+
shareClassId?: string | undefined;
|
|
276
277
|
pricePerShare?: number | null | undefined;
|
|
277
278
|
numberOfShares?: number | undefined;
|
|
278
|
-
shareClassId?: string | undefined;
|
|
279
279
|
holderType?: CapTableHolderType | undefined;
|
|
280
280
|
holderName?: string | undefined;
|
|
281
281
|
holderEmail?: string | null | undefined;
|
|
@@ -284,9 +284,9 @@ export declare const UpdateCapTableEntryZod: z.ZodObject<{
|
|
|
284
284
|
}, {
|
|
285
285
|
status?: CapTableEntryStatus | undefined;
|
|
286
286
|
notes?: string | null | undefined;
|
|
287
|
+
shareClassId?: string | undefined;
|
|
287
288
|
pricePerShare?: number | null | undefined;
|
|
288
289
|
numberOfShares?: number | undefined;
|
|
289
|
-
shareClassId?: string | undefined;
|
|
290
290
|
holderType?: CapTableHolderType | undefined;
|
|
291
291
|
holderName?: string | undefined;
|
|
292
292
|
holderEmail?: string | null | undefined;
|
|
@@ -332,10 +332,10 @@ export declare const CapTableEntryZod: z.ZodObject<{
|
|
|
332
332
|
individualId: string | null;
|
|
333
333
|
legalEntityId: string | null;
|
|
334
334
|
investorAccountId: string | null;
|
|
335
|
+
shareClassId: string;
|
|
335
336
|
pricePerShare: number | null;
|
|
336
337
|
numberOfShares: number;
|
|
337
338
|
capTableId: string;
|
|
338
|
-
shareClassId: string;
|
|
339
339
|
holderType: CapTableHolderType;
|
|
340
340
|
holderName: string;
|
|
341
341
|
holderEmail: string | null;
|
|
@@ -358,10 +358,10 @@ export declare const CapTableEntryZod: z.ZodObject<{
|
|
|
358
358
|
individualId: string | null;
|
|
359
359
|
legalEntityId: string | null;
|
|
360
360
|
investorAccountId: string | null;
|
|
361
|
+
shareClassId: string;
|
|
361
362
|
pricePerShare: number | null;
|
|
362
363
|
numberOfShares: number;
|
|
363
364
|
capTableId: string;
|
|
364
|
-
shareClassId: string;
|
|
365
365
|
holderType: CapTableHolderType;
|
|
366
366
|
holderName: string;
|
|
367
367
|
holderEmail: string | null;
|
|
@@ -414,10 +414,10 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
414
414
|
individualId: string | null;
|
|
415
415
|
legalEntityId: string | null;
|
|
416
416
|
investorAccountId: string | null;
|
|
417
|
+
shareClassId: string;
|
|
417
418
|
pricePerShare: number | null;
|
|
418
419
|
numberOfShares: number;
|
|
419
420
|
capTableId: string;
|
|
420
|
-
shareClassId: string;
|
|
421
421
|
holderType: CapTableHolderType;
|
|
422
422
|
holderName: string;
|
|
423
423
|
holderEmail: string | null;
|
|
@@ -440,10 +440,10 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
440
440
|
individualId: string | null;
|
|
441
441
|
legalEntityId: string | null;
|
|
442
442
|
investorAccountId: string | null;
|
|
443
|
+
shareClassId: string;
|
|
443
444
|
pricePerShare: number | null;
|
|
444
445
|
numberOfShares: number;
|
|
445
446
|
capTableId: string;
|
|
446
|
-
shareClassId: string;
|
|
447
447
|
holderType: CapTableHolderType;
|
|
448
448
|
holderName: string;
|
|
449
449
|
holderEmail: string | null;
|
|
@@ -487,10 +487,10 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
487
487
|
individualId: string | null;
|
|
488
488
|
legalEntityId: string | null;
|
|
489
489
|
investorAccountId: string | null;
|
|
490
|
+
shareClassId: string;
|
|
490
491
|
pricePerShare: number | null;
|
|
491
492
|
numberOfShares: number;
|
|
492
493
|
capTableId: string;
|
|
493
|
-
shareClassId: string;
|
|
494
494
|
holderType: CapTableHolderType;
|
|
495
495
|
holderName: string;
|
|
496
496
|
holderEmail: string | null;
|
|
@@ -522,10 +522,10 @@ export declare const IPaginatedCapTableEntry: z.ZodObject<{
|
|
|
522
522
|
individualId: string | null;
|
|
523
523
|
legalEntityId: string | null;
|
|
524
524
|
investorAccountId: string | null;
|
|
525
|
+
shareClassId: string;
|
|
525
526
|
pricePerShare: number | null;
|
|
526
527
|
numberOfShares: number;
|
|
527
528
|
capTableId: string;
|
|
528
|
-
shareClassId: string;
|
|
529
529
|
holderType: CapTableHolderType;
|
|
530
530
|
holderName: string;
|
|
531
531
|
holderEmail: string | null;
|
|
@@ -578,17 +578,17 @@ export declare const CapTableShareClassSummaryZod: z.ZodObject<{
|
|
|
578
578
|
remainingAuthorized: z.ZodNullable<z.ZodNumber>;
|
|
579
579
|
percentage: z.ZodNumber;
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
|
-
|
|
581
|
+
totalShares: number;
|
|
582
582
|
shareClassId: string;
|
|
583
|
+
totalAuthorized: number | null;
|
|
583
584
|
shareClassName: string;
|
|
584
|
-
totalShares: number;
|
|
585
585
|
remainingAuthorized: number | null;
|
|
586
586
|
percentage: number;
|
|
587
587
|
}, {
|
|
588
|
-
|
|
588
|
+
totalShares: number;
|
|
589
589
|
shareClassId: string;
|
|
590
|
+
totalAuthorized: number | null;
|
|
590
591
|
shareClassName: string;
|
|
591
|
-
totalShares: number;
|
|
592
592
|
remainingAuthorized: number | null;
|
|
593
593
|
percentage: number;
|
|
594
594
|
}>;
|
|
@@ -603,17 +603,17 @@ export declare const CapTableSummaryZod: z.ZodObject<{
|
|
|
603
603
|
remainingAuthorized: z.ZodNullable<z.ZodNumber>;
|
|
604
604
|
percentage: z.ZodNumber;
|
|
605
605
|
}, "strip", z.ZodTypeAny, {
|
|
606
|
-
|
|
606
|
+
totalShares: number;
|
|
607
607
|
shareClassId: string;
|
|
608
|
+
totalAuthorized: number | null;
|
|
608
609
|
shareClassName: string;
|
|
609
|
-
totalShares: number;
|
|
610
610
|
remainingAuthorized: number | null;
|
|
611
611
|
percentage: number;
|
|
612
612
|
}, {
|
|
613
|
-
|
|
613
|
+
totalShares: number;
|
|
614
614
|
shareClassId: string;
|
|
615
|
+
totalAuthorized: number | null;
|
|
615
616
|
shareClassName: string;
|
|
616
|
-
totalShares: number;
|
|
617
617
|
remainingAuthorized: number | null;
|
|
618
618
|
percentage: number;
|
|
619
619
|
}>, "many">;
|
|
@@ -633,14 +633,14 @@ export declare const CapTableSummaryZod: z.ZodObject<{
|
|
|
633
633
|
totalAuthorizedShares: z.ZodNullable<z.ZodNumber>;
|
|
634
634
|
stockConversionRate: z.ZodNullable<z.ZodNumber>;
|
|
635
635
|
}, "strip", z.ZodTypeAny, {
|
|
636
|
+
totalShares: number;
|
|
636
637
|
totalAuthorizedShares: number | null;
|
|
637
638
|
stockConversionRate: number | null;
|
|
638
|
-
totalShares: number;
|
|
639
639
|
totalSharesByClass: {
|
|
640
|
-
|
|
640
|
+
totalShares: number;
|
|
641
641
|
shareClassId: string;
|
|
642
|
+
totalAuthorized: number | null;
|
|
642
643
|
shareClassName: string;
|
|
643
|
-
totalShares: number;
|
|
644
644
|
remainingAuthorized: number | null;
|
|
645
645
|
percentage: number;
|
|
646
646
|
}[];
|
|
@@ -652,14 +652,14 @@ export declare const CapTableSummaryZod: z.ZodObject<{
|
|
|
652
652
|
pendingAllocations: number;
|
|
653
653
|
acceptedAllocations: number;
|
|
654
654
|
}, {
|
|
655
|
+
totalShares: number;
|
|
655
656
|
totalAuthorizedShares: number | null;
|
|
656
657
|
stockConversionRate: number | null;
|
|
657
|
-
totalShares: number;
|
|
658
658
|
totalSharesByClass: {
|
|
659
|
-
|
|
659
|
+
totalShares: number;
|
|
660
660
|
shareClassId: string;
|
|
661
|
+
totalAuthorized: number | null;
|
|
661
662
|
shareClassName: string;
|
|
662
|
-
totalShares: number;
|
|
663
663
|
remainingAuthorized: number | null;
|
|
664
664
|
percentage: number;
|
|
665
665
|
}[];
|
|
@@ -684,16 +684,16 @@ export declare const CapTableHolderAllocationZod: z.ZodObject<{
|
|
|
684
684
|
status: CapTableEntryStatus;
|
|
685
685
|
id: string;
|
|
686
686
|
source: CapTableEntrySource;
|
|
687
|
-
numberOfShares: number;
|
|
688
687
|
shareClassId: string;
|
|
688
|
+
numberOfShares: number;
|
|
689
689
|
allocationDate: string;
|
|
690
690
|
shareClassName: string;
|
|
691
691
|
}, {
|
|
692
692
|
status: CapTableEntryStatus;
|
|
693
693
|
id: string;
|
|
694
694
|
source: CapTableEntrySource;
|
|
695
|
-
numberOfShares: number;
|
|
696
695
|
shareClassId: string;
|
|
696
|
+
numberOfShares: number;
|
|
697
697
|
allocationDate: string;
|
|
698
698
|
shareClassName: string;
|
|
699
699
|
}>;
|
|
@@ -704,15 +704,15 @@ export declare const CapTableHolderSharesByClassZod: z.ZodObject<{
|
|
|
704
704
|
shares: z.ZodNumber;
|
|
705
705
|
percentage: z.ZodNumber;
|
|
706
706
|
}, "strip", z.ZodTypeAny, {
|
|
707
|
-
shares: number;
|
|
708
707
|
shareClassId: string;
|
|
709
708
|
shareClassName: string;
|
|
710
709
|
percentage: number;
|
|
711
|
-
}, {
|
|
712
710
|
shares: number;
|
|
711
|
+
}, {
|
|
713
712
|
shareClassId: string;
|
|
714
713
|
shareClassName: string;
|
|
715
714
|
percentage: number;
|
|
715
|
+
shares: number;
|
|
716
716
|
}>;
|
|
717
717
|
export type CapTableHolderSharesByClassZod = z.infer<typeof CapTableHolderSharesByClassZod>;
|
|
718
718
|
export declare const CapTableHolderZod: z.ZodObject<{
|
|
@@ -728,15 +728,15 @@ export declare const CapTableHolderZod: z.ZodObject<{
|
|
|
728
728
|
shares: z.ZodNumber;
|
|
729
729
|
percentage: z.ZodNumber;
|
|
730
730
|
}, "strip", z.ZodTypeAny, {
|
|
731
|
-
shares: number;
|
|
732
731
|
shareClassId: string;
|
|
733
732
|
shareClassName: string;
|
|
734
733
|
percentage: number;
|
|
735
|
-
}, {
|
|
736
734
|
shares: number;
|
|
735
|
+
}, {
|
|
737
736
|
shareClassId: string;
|
|
738
737
|
shareClassName: string;
|
|
739
738
|
percentage: number;
|
|
739
|
+
shares: number;
|
|
740
740
|
}>, "many">;
|
|
741
741
|
allocations: z.ZodArray<z.ZodObject<{
|
|
742
742
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -750,60 +750,60 @@ export declare const CapTableHolderZod: z.ZodObject<{
|
|
|
750
750
|
status: CapTableEntryStatus;
|
|
751
751
|
id: string;
|
|
752
752
|
source: CapTableEntrySource;
|
|
753
|
-
numberOfShares: number;
|
|
754
753
|
shareClassId: string;
|
|
754
|
+
numberOfShares: number;
|
|
755
755
|
allocationDate: string;
|
|
756
756
|
shareClassName: string;
|
|
757
757
|
}, {
|
|
758
758
|
status: CapTableEntryStatus;
|
|
759
759
|
id: string;
|
|
760
760
|
source: CapTableEntrySource;
|
|
761
|
-
numberOfShares: number;
|
|
762
761
|
shareClassId: string;
|
|
762
|
+
numberOfShares: number;
|
|
763
763
|
allocationDate: string;
|
|
764
764
|
shareClassName: string;
|
|
765
765
|
}>, "many">;
|
|
766
766
|
}, "strip", z.ZodTypeAny, {
|
|
767
767
|
investorAccountId: string | null;
|
|
768
|
+
totalShares: number;
|
|
768
769
|
holderType: CapTableHolderType;
|
|
769
770
|
holderName: string;
|
|
770
771
|
holderEmail: string | null;
|
|
771
|
-
totalShares: number;
|
|
772
772
|
totalSharesByClass: {
|
|
773
|
-
shares: number;
|
|
774
773
|
shareClassId: string;
|
|
775
774
|
shareClassName: string;
|
|
776
775
|
percentage: number;
|
|
776
|
+
shares: number;
|
|
777
777
|
}[];
|
|
778
778
|
holderId: string;
|
|
779
779
|
allocations: {
|
|
780
780
|
status: CapTableEntryStatus;
|
|
781
781
|
id: string;
|
|
782
782
|
source: CapTableEntrySource;
|
|
783
|
-
numberOfShares: number;
|
|
784
783
|
shareClassId: string;
|
|
784
|
+
numberOfShares: number;
|
|
785
785
|
allocationDate: string;
|
|
786
786
|
shareClassName: string;
|
|
787
787
|
}[];
|
|
788
788
|
}, {
|
|
789
789
|
investorAccountId: string | null;
|
|
790
|
+
totalShares: number;
|
|
790
791
|
holderType: CapTableHolderType;
|
|
791
792
|
holderName: string;
|
|
792
793
|
holderEmail: string | null;
|
|
793
|
-
totalShares: number;
|
|
794
794
|
totalSharesByClass: {
|
|
795
|
-
shares: number;
|
|
796
795
|
shareClassId: string;
|
|
797
796
|
shareClassName: string;
|
|
798
797
|
percentage: number;
|
|
798
|
+
shares: number;
|
|
799
799
|
}[];
|
|
800
800
|
holderId: string;
|
|
801
801
|
allocations: {
|
|
802
802
|
status: CapTableEntryStatus;
|
|
803
803
|
id: string;
|
|
804
804
|
source: CapTableEntrySource;
|
|
805
|
-
numberOfShares: number;
|
|
806
805
|
shareClassId: string;
|
|
806
|
+
numberOfShares: number;
|
|
807
807
|
allocationDate: string;
|
|
808
808
|
shareClassName: string;
|
|
809
809
|
}[];
|
|
@@ -823,15 +823,15 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
823
823
|
shares: z.ZodNumber;
|
|
824
824
|
percentage: z.ZodNumber;
|
|
825
825
|
}, "strip", z.ZodTypeAny, {
|
|
826
|
-
shares: number;
|
|
827
826
|
shareClassId: string;
|
|
828
827
|
shareClassName: string;
|
|
829
828
|
percentage: number;
|
|
830
|
-
}, {
|
|
831
829
|
shares: number;
|
|
830
|
+
}, {
|
|
832
831
|
shareClassId: string;
|
|
833
832
|
shareClassName: string;
|
|
834
833
|
percentage: number;
|
|
834
|
+
shares: number;
|
|
835
835
|
}>, "many">;
|
|
836
836
|
allocations: z.ZodArray<z.ZodObject<{
|
|
837
837
|
id: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -845,60 +845,60 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
845
845
|
status: CapTableEntryStatus;
|
|
846
846
|
id: string;
|
|
847
847
|
source: CapTableEntrySource;
|
|
848
|
-
numberOfShares: number;
|
|
849
848
|
shareClassId: string;
|
|
849
|
+
numberOfShares: number;
|
|
850
850
|
allocationDate: string;
|
|
851
851
|
shareClassName: string;
|
|
852
852
|
}, {
|
|
853
853
|
status: CapTableEntryStatus;
|
|
854
854
|
id: string;
|
|
855
855
|
source: CapTableEntrySource;
|
|
856
|
-
numberOfShares: number;
|
|
857
856
|
shareClassId: string;
|
|
857
|
+
numberOfShares: number;
|
|
858
858
|
allocationDate: string;
|
|
859
859
|
shareClassName: string;
|
|
860
860
|
}>, "many">;
|
|
861
861
|
}, "strip", z.ZodTypeAny, {
|
|
862
862
|
investorAccountId: string | null;
|
|
863
|
+
totalShares: number;
|
|
863
864
|
holderType: CapTableHolderType;
|
|
864
865
|
holderName: string;
|
|
865
866
|
holderEmail: string | null;
|
|
866
|
-
totalShares: number;
|
|
867
867
|
totalSharesByClass: {
|
|
868
|
-
shares: number;
|
|
869
868
|
shareClassId: string;
|
|
870
869
|
shareClassName: string;
|
|
871
870
|
percentage: number;
|
|
871
|
+
shares: number;
|
|
872
872
|
}[];
|
|
873
873
|
holderId: string;
|
|
874
874
|
allocations: {
|
|
875
875
|
status: CapTableEntryStatus;
|
|
876
876
|
id: string;
|
|
877
877
|
source: CapTableEntrySource;
|
|
878
|
-
numberOfShares: number;
|
|
879
878
|
shareClassId: string;
|
|
879
|
+
numberOfShares: number;
|
|
880
880
|
allocationDate: string;
|
|
881
881
|
shareClassName: string;
|
|
882
882
|
}[];
|
|
883
883
|
}, {
|
|
884
884
|
investorAccountId: string | null;
|
|
885
|
+
totalShares: number;
|
|
885
886
|
holderType: CapTableHolderType;
|
|
886
887
|
holderName: string;
|
|
887
888
|
holderEmail: string | null;
|
|
888
|
-
totalShares: number;
|
|
889
889
|
totalSharesByClass: {
|
|
890
|
-
shares: number;
|
|
891
890
|
shareClassId: string;
|
|
892
891
|
shareClassName: string;
|
|
893
892
|
percentage: number;
|
|
893
|
+
shares: number;
|
|
894
894
|
}[];
|
|
895
895
|
holderId: string;
|
|
896
896
|
allocations: {
|
|
897
897
|
status: CapTableEntryStatus;
|
|
898
898
|
id: string;
|
|
899
899
|
source: CapTableEntrySource;
|
|
900
|
-
numberOfShares: number;
|
|
901
900
|
shareClassId: string;
|
|
901
|
+
numberOfShares: number;
|
|
902
902
|
allocationDate: string;
|
|
903
903
|
shareClassName: string;
|
|
904
904
|
}[];
|
|
@@ -925,23 +925,23 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
925
925
|
}, "strip", z.ZodTypeAny, {
|
|
926
926
|
items: {
|
|
927
927
|
investorAccountId: string | null;
|
|
928
|
+
totalShares: number;
|
|
928
929
|
holderType: CapTableHolderType;
|
|
929
930
|
holderName: string;
|
|
930
931
|
holderEmail: string | null;
|
|
931
|
-
totalShares: number;
|
|
932
932
|
totalSharesByClass: {
|
|
933
|
-
shares: number;
|
|
934
933
|
shareClassId: string;
|
|
935
934
|
shareClassName: string;
|
|
936
935
|
percentage: number;
|
|
936
|
+
shares: number;
|
|
937
937
|
}[];
|
|
938
938
|
holderId: string;
|
|
939
939
|
allocations: {
|
|
940
940
|
status: CapTableEntryStatus;
|
|
941
941
|
id: string;
|
|
942
942
|
source: CapTableEntrySource;
|
|
943
|
-
numberOfShares: number;
|
|
944
943
|
shareClassId: string;
|
|
944
|
+
numberOfShares: number;
|
|
945
945
|
allocationDate: string;
|
|
946
946
|
shareClassName: string;
|
|
947
947
|
}[];
|
|
@@ -956,23 +956,23 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
956
956
|
}, {
|
|
957
957
|
items: {
|
|
958
958
|
investorAccountId: string | null;
|
|
959
|
+
totalShares: number;
|
|
959
960
|
holderType: CapTableHolderType;
|
|
960
961
|
holderName: string;
|
|
961
962
|
holderEmail: string | null;
|
|
962
|
-
totalShares: number;
|
|
963
963
|
totalSharesByClass: {
|
|
964
|
-
shares: number;
|
|
965
964
|
shareClassId: string;
|
|
966
965
|
shareClassName: string;
|
|
967
966
|
percentage: number;
|
|
967
|
+
shares: number;
|
|
968
968
|
}[];
|
|
969
969
|
holderId: string;
|
|
970
970
|
allocations: {
|
|
971
971
|
status: CapTableEntryStatus;
|
|
972
972
|
id: string;
|
|
973
973
|
source: CapTableEntrySource;
|
|
974
|
-
numberOfShares: number;
|
|
975
974
|
shareClassId: string;
|
|
975
|
+
numberOfShares: number;
|
|
976
976
|
allocationDate: string;
|
|
977
977
|
shareClassName: string;
|
|
978
978
|
}[];
|