@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
|
@@ -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>;
|
|
@@ -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;
|
|
@@ -579,15 +579,15 @@ export declare const CapTableShareClassSummaryZod: z.ZodObject<{
|
|
|
579
579
|
percentage: z.ZodNumber;
|
|
580
580
|
}, "strip", z.ZodTypeAny, {
|
|
581
581
|
totalShares: number;
|
|
582
|
-
totalAuthorized: number | null;
|
|
583
582
|
shareClassId: string;
|
|
583
|
+
totalAuthorized: number | null;
|
|
584
584
|
shareClassName: string;
|
|
585
585
|
remainingAuthorized: number | null;
|
|
586
586
|
percentage: number;
|
|
587
587
|
}, {
|
|
588
588
|
totalShares: number;
|
|
589
|
-
totalAuthorized: number | null;
|
|
590
589
|
shareClassId: string;
|
|
590
|
+
totalAuthorized: number | null;
|
|
591
591
|
shareClassName: string;
|
|
592
592
|
remainingAuthorized: number | null;
|
|
593
593
|
percentage: number;
|
|
@@ -604,15 +604,15 @@ export declare const CapTableSummaryZod: z.ZodObject<{
|
|
|
604
604
|
percentage: z.ZodNumber;
|
|
605
605
|
}, "strip", z.ZodTypeAny, {
|
|
606
606
|
totalShares: number;
|
|
607
|
-
totalAuthorized: number | null;
|
|
608
607
|
shareClassId: string;
|
|
608
|
+
totalAuthorized: number | null;
|
|
609
609
|
shareClassName: string;
|
|
610
610
|
remainingAuthorized: number | null;
|
|
611
611
|
percentage: number;
|
|
612
612
|
}, {
|
|
613
613
|
totalShares: number;
|
|
614
|
-
totalAuthorized: number | null;
|
|
615
614
|
shareClassId: string;
|
|
615
|
+
totalAuthorized: number | null;
|
|
616
616
|
shareClassName: string;
|
|
617
617
|
remainingAuthorized: number | null;
|
|
618
618
|
percentage: number;
|
|
@@ -638,8 +638,8 @@ export declare const CapTableSummaryZod: z.ZodObject<{
|
|
|
638
638
|
stockConversionRate: number | null;
|
|
639
639
|
totalSharesByClass: {
|
|
640
640
|
totalShares: number;
|
|
641
|
-
totalAuthorized: number | null;
|
|
642
641
|
shareClassId: string;
|
|
642
|
+
totalAuthorized: number | null;
|
|
643
643
|
shareClassName: string;
|
|
644
644
|
remainingAuthorized: number | null;
|
|
645
645
|
percentage: number;
|
|
@@ -657,8 +657,8 @@ export declare const CapTableSummaryZod: z.ZodObject<{
|
|
|
657
657
|
stockConversionRate: number | null;
|
|
658
658
|
totalSharesByClass: {
|
|
659
659
|
totalShares: number;
|
|
660
|
-
totalAuthorized: number | null;
|
|
661
660
|
shareClassId: string;
|
|
661
|
+
totalAuthorized: number | null;
|
|
662
662
|
shareClassName: string;
|
|
663
663
|
remainingAuthorized: number | null;
|
|
664
664
|
percentage: number;
|
|
@@ -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,16 +750,16 @@ 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">;
|
|
@@ -770,18 +770,18 @@ export declare const CapTableHolderZod: z.ZodObject<{
|
|
|
770
770
|
holderName: string;
|
|
771
771
|
holderEmail: string | null;
|
|
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
|
}[];
|
|
@@ -792,18 +792,18 @@ export declare const CapTableHolderZod: z.ZodObject<{
|
|
|
792
792
|
holderName: string;
|
|
793
793
|
holderEmail: string | null;
|
|
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,16 +845,16 @@ 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">;
|
|
@@ -865,18 +865,18 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
865
865
|
holderName: string;
|
|
866
866
|
holderEmail: string | null;
|
|
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
|
}[];
|
|
@@ -887,18 +887,18 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
887
887
|
holderName: string;
|
|
888
888
|
holderEmail: string | null;
|
|
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
|
}[];
|
|
@@ -930,18 +930,18 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
930
930
|
holderName: string;
|
|
931
931
|
holderEmail: string | null;
|
|
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
|
}[];
|
|
@@ -961,18 +961,18 @@ export declare const IPaginatedCapTableHolder: z.ZodObject<{
|
|
|
961
961
|
holderName: string;
|
|
962
962
|
holderEmail: string | null;
|
|
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
|
}[];
|
|
@@ -70,7 +70,9 @@ export declare enum BaseStatus {
|
|
|
70
70
|
ACTIVE = "ACTIVE",
|
|
71
71
|
LOCKED = "LOCKED",
|
|
72
72
|
ENABLED = "ENABLED",
|
|
73
|
-
DISABLED = "DISABLED"
|
|
73
|
+
DISABLED = "DISABLED",
|
|
74
|
+
PAUSED = "PAUSED",
|
|
75
|
+
CLOSED = "CLOSED"
|
|
74
76
|
}
|
|
75
77
|
export declare const UserWithoutPasswordAccountZod: z.ZodObject<{
|
|
76
78
|
id: z.ZodString;
|
|
@@ -175,6 +177,7 @@ export declare const IAccountSettingZod: z.ZodObject<{
|
|
|
175
177
|
productSecondaries: z.ZodBoolean;
|
|
176
178
|
featureDisbursements: z.ZodBoolean;
|
|
177
179
|
apiPortal: z.ZodBoolean;
|
|
180
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
178
181
|
}, "strip", z.ZodTypeAny, {
|
|
179
182
|
id: string;
|
|
180
183
|
createdAt: string | Date;
|
|
@@ -189,6 +192,7 @@ export declare const IAccountSettingZod: z.ZodObject<{
|
|
|
189
192
|
productSecondaries: boolean;
|
|
190
193
|
featureDisbursements: boolean;
|
|
191
194
|
apiPortal: boolean;
|
|
195
|
+
investorSiteEnabled: boolean;
|
|
192
196
|
__entity?: string | undefined;
|
|
193
197
|
}, {
|
|
194
198
|
id: string;
|
|
@@ -204,6 +208,7 @@ export declare const IAccountSettingZod: z.ZodObject<{
|
|
|
204
208
|
productSecondaries: boolean;
|
|
205
209
|
featureDisbursements: boolean;
|
|
206
210
|
apiPortal: boolean;
|
|
211
|
+
investorSiteEnabled: boolean;
|
|
207
212
|
__entity?: string | undefined;
|
|
208
213
|
}>;
|
|
209
214
|
export type IAccountSettingZod = z.infer<typeof IAccountSettingZod>;
|
|
@@ -374,6 +379,7 @@ export declare const BaseAuthReq: z.ZodObject<{
|
|
|
374
379
|
productSecondaries: z.ZodBoolean;
|
|
375
380
|
featureDisbursements: z.ZodBoolean;
|
|
376
381
|
apiPortal: z.ZodBoolean;
|
|
382
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
377
383
|
}, "strip", z.ZodTypeAny, {
|
|
378
384
|
id: string;
|
|
379
385
|
createdAt: string | Date;
|
|
@@ -388,6 +394,7 @@ export declare const BaseAuthReq: z.ZodObject<{
|
|
|
388
394
|
productSecondaries: boolean;
|
|
389
395
|
featureDisbursements: boolean;
|
|
390
396
|
apiPortal: boolean;
|
|
397
|
+
investorSiteEnabled: boolean;
|
|
391
398
|
__entity?: string | undefined;
|
|
392
399
|
}, {
|
|
393
400
|
id: string;
|
|
@@ -403,6 +410,7 @@ export declare const BaseAuthReq: z.ZodObject<{
|
|
|
403
410
|
productSecondaries: boolean;
|
|
404
411
|
featureDisbursements: boolean;
|
|
405
412
|
apiPortal: boolean;
|
|
413
|
+
investorSiteEnabled: boolean;
|
|
406
414
|
__entity?: string | undefined;
|
|
407
415
|
}>>>;
|
|
408
416
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -427,6 +435,7 @@ export declare const BaseAuthReq: z.ZodObject<{
|
|
|
427
435
|
productSecondaries: boolean;
|
|
428
436
|
featureDisbursements: boolean;
|
|
429
437
|
apiPortal: boolean;
|
|
438
|
+
investorSiteEnabled: boolean;
|
|
430
439
|
__entity?: string | undefined;
|
|
431
440
|
} | undefined;
|
|
432
441
|
}, {
|
|
@@ -451,6 +460,7 @@ export declare const BaseAuthReq: z.ZodObject<{
|
|
|
451
460
|
productSecondaries: boolean;
|
|
452
461
|
featureDisbursements: boolean;
|
|
453
462
|
apiPortal: boolean;
|
|
463
|
+
investorSiteEnabled: boolean;
|
|
454
464
|
__entity?: string | undefined;
|
|
455
465
|
} | undefined;
|
|
456
466
|
}>;
|
|
@@ -478,6 +488,7 @@ export declare const AuthUserReq: z.ZodObject<{
|
|
|
478
488
|
productSecondaries: z.ZodBoolean;
|
|
479
489
|
featureDisbursements: z.ZodBoolean;
|
|
480
490
|
apiPortal: z.ZodBoolean;
|
|
491
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
481
492
|
}, "strip", z.ZodTypeAny, {
|
|
482
493
|
id: string;
|
|
483
494
|
createdAt: string | Date;
|
|
@@ -492,6 +503,7 @@ export declare const AuthUserReq: z.ZodObject<{
|
|
|
492
503
|
productSecondaries: boolean;
|
|
493
504
|
featureDisbursements: boolean;
|
|
494
505
|
apiPortal: boolean;
|
|
506
|
+
investorSiteEnabled: boolean;
|
|
495
507
|
__entity?: string | undefined;
|
|
496
508
|
}, {
|
|
497
509
|
id: string;
|
|
@@ -507,6 +519,7 @@ export declare const AuthUserReq: z.ZodObject<{
|
|
|
507
519
|
productSecondaries: boolean;
|
|
508
520
|
featureDisbursements: boolean;
|
|
509
521
|
apiPortal: boolean;
|
|
522
|
+
investorSiteEnabled: boolean;
|
|
510
523
|
__entity?: string | undefined;
|
|
511
524
|
}>>>;
|
|
512
525
|
} & {
|
|
@@ -556,6 +569,7 @@ export declare const AuthUserReq: z.ZodObject<{
|
|
|
556
569
|
productSecondaries: boolean;
|
|
557
570
|
featureDisbursements: boolean;
|
|
558
571
|
apiPortal: boolean;
|
|
572
|
+
investorSiteEnabled: boolean;
|
|
559
573
|
__entity?: string | undefined;
|
|
560
574
|
} | undefined;
|
|
561
575
|
requiresTwoFactorSetup?: boolean | undefined;
|
|
@@ -594,6 +608,7 @@ export declare const AuthUserReq: z.ZodObject<{
|
|
|
594
608
|
productSecondaries: boolean;
|
|
595
609
|
featureDisbursements: boolean;
|
|
596
610
|
apiPortal: boolean;
|
|
611
|
+
investorSiteEnabled: boolean;
|
|
597
612
|
__entity?: string | undefined;
|
|
598
613
|
} | undefined;
|
|
599
614
|
requiresTwoFactorSetup?: boolean | undefined;
|
|
@@ -625,6 +640,7 @@ export declare const AuthApiKeyReq: z.ZodObject<{
|
|
|
625
640
|
productSecondaries: z.ZodBoolean;
|
|
626
641
|
featureDisbursements: z.ZodBoolean;
|
|
627
642
|
apiPortal: z.ZodBoolean;
|
|
643
|
+
investorSiteEnabled: z.ZodBoolean;
|
|
628
644
|
}, "strip", z.ZodTypeAny, {
|
|
629
645
|
id: string;
|
|
630
646
|
createdAt: string | Date;
|
|
@@ -639,6 +655,7 @@ export declare const AuthApiKeyReq: z.ZodObject<{
|
|
|
639
655
|
productSecondaries: boolean;
|
|
640
656
|
featureDisbursements: boolean;
|
|
641
657
|
apiPortal: boolean;
|
|
658
|
+
investorSiteEnabled: boolean;
|
|
642
659
|
__entity?: string | undefined;
|
|
643
660
|
}, {
|
|
644
661
|
id: string;
|
|
@@ -654,6 +671,7 @@ export declare const AuthApiKeyReq: z.ZodObject<{
|
|
|
654
671
|
productSecondaries: boolean;
|
|
655
672
|
featureDisbursements: boolean;
|
|
656
673
|
apiPortal: boolean;
|
|
674
|
+
investorSiteEnabled: boolean;
|
|
657
675
|
__entity?: string | undefined;
|
|
658
676
|
}>>>;
|
|
659
677
|
} & {
|
|
@@ -685,6 +703,7 @@ export declare const AuthApiKeyReq: z.ZodObject<{
|
|
|
685
703
|
productSecondaries: boolean;
|
|
686
704
|
featureDisbursements: boolean;
|
|
687
705
|
apiPortal: boolean;
|
|
706
|
+
investorSiteEnabled: boolean;
|
|
688
707
|
__entity?: string | undefined;
|
|
689
708
|
} | undefined;
|
|
690
709
|
}, {
|
|
@@ -712,6 +731,7 @@ export declare const AuthApiKeyReq: z.ZodObject<{
|
|
|
712
731
|
productSecondaries: boolean;
|
|
713
732
|
featureDisbursements: boolean;
|
|
714
733
|
apiPortal: boolean;
|
|
734
|
+
investorSiteEnabled: boolean;
|
|
715
735
|
__entity?: string | undefined;
|
|
716
736
|
} | undefined;
|
|
717
737
|
}>;
|
|
@@ -1821,4 +1841,11 @@ export declare enum WarrantSharesCalculationMethod {
|
|
|
1821
1841
|
PRORATA = "PRORATA",
|
|
1822
1842
|
INCREMENT = "INCREMENT"
|
|
1823
1843
|
}
|
|
1844
|
+
export declare enum OfferingStatus {
|
|
1845
|
+
ONBOARDING = "ONBOARDING",
|
|
1846
|
+
IN_REVIEW = "IN_REVIEW",
|
|
1847
|
+
ACTIVE = "ACTIVE",
|
|
1848
|
+
PAUSED = "PAUSED",
|
|
1849
|
+
CLOSED = "CLOSED"
|
|
1850
|
+
}
|
|
1824
1851
|
export {};
|
|
@@ -77,6 +77,8 @@ export var BaseStatus;
|
|
|
77
77
|
BaseStatus["LOCKED"] = "LOCKED";
|
|
78
78
|
BaseStatus["ENABLED"] = "ENABLED";
|
|
79
79
|
BaseStatus["DISABLED"] = "DISABLED";
|
|
80
|
+
BaseStatus["PAUSED"] = "PAUSED";
|
|
81
|
+
BaseStatus["CLOSED"] = "CLOSED";
|
|
80
82
|
})(BaseStatus || (BaseStatus = {}));
|
|
81
83
|
export const UserWithoutPasswordAccountZod = IBaseEntity.extend({
|
|
82
84
|
firstName: z.string().openapi({ example: 'Daniel' }),
|
|
@@ -185,6 +187,7 @@ export const IAccountSettingZod = IBaseEntity.extend({
|
|
|
185
187
|
productSecondaries: z.boolean().openapi({ example: false }),
|
|
186
188
|
featureDisbursements: z.boolean().openapi({ example: true }),
|
|
187
189
|
apiPortal: z.boolean().openapi({ example: false }),
|
|
190
|
+
investorSiteEnabled: z.boolean().openapi({ example: true }),
|
|
188
191
|
});
|
|
189
192
|
export const AccountZod = IBaseEntity.extend({
|
|
190
193
|
name: z.string().openapi({ example: 'Dalmore' }),
|
|
@@ -1487,4 +1490,12 @@ export var WarrantSharesCalculationMethod;
|
|
|
1487
1490
|
WarrantSharesCalculationMethod["PRORATA"] = "PRORATA";
|
|
1488
1491
|
WarrantSharesCalculationMethod["INCREMENT"] = "INCREMENT";
|
|
1489
1492
|
})(WarrantSharesCalculationMethod || (WarrantSharesCalculationMethod = {}));
|
|
1493
|
+
export var OfferingStatus;
|
|
1494
|
+
(function (OfferingStatus) {
|
|
1495
|
+
OfferingStatus["ONBOARDING"] = "ONBOARDING";
|
|
1496
|
+
OfferingStatus["IN_REVIEW"] = "IN_REVIEW";
|
|
1497
|
+
OfferingStatus["ACTIVE"] = "ACTIVE";
|
|
1498
|
+
OfferingStatus["PAUSED"] = "PAUSED";
|
|
1499
|
+
OfferingStatus["CLOSED"] = "CLOSED";
|
|
1500
|
+
})(OfferingStatus || (OfferingStatus = {}));
|
|
1490
1501
|
//# sourceMappingURL=common.types.js.map
|