@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
|
@@ -2586,3 +2586,796 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
2586
2586
|
disbursementTransactions?: any[] | undefined;
|
|
2587
2587
|
}>;
|
|
2588
2588
|
export type DisbursementDetailZod = z.infer<typeof DisbursementDetailZod>;
|
|
2589
|
+
export declare const DisbursementDetailsTabHeaderZod: z.ZodObject<{
|
|
2590
|
+
disbursementId: z.ZodEffects<z.ZodString, string, string>;
|
|
2591
|
+
disbursementDate: z.ZodNullable<z.ZodDate>;
|
|
2592
|
+
currency: z.ZodDefault<z.ZodString>;
|
|
2593
|
+
}, "strip", z.ZodTypeAny, {
|
|
2594
|
+
currency: string;
|
|
2595
|
+
disbursementId: string;
|
|
2596
|
+
disbursementDate: Date | null;
|
|
2597
|
+
}, {
|
|
2598
|
+
disbursementId: string;
|
|
2599
|
+
disbursementDate: Date | null;
|
|
2600
|
+
currency?: string | undefined;
|
|
2601
|
+
}>;
|
|
2602
|
+
export type DisbursementDetailsTabHeaderZod = z.infer<typeof DisbursementDetailsTabHeaderZod>;
|
|
2603
|
+
export declare const DisbursementDetailsTabGeneralInfoZod: z.ZodObject<{
|
|
2604
|
+
issuerName: z.ZodString;
|
|
2605
|
+
offeringName: z.ZodString;
|
|
2606
|
+
offeringId: z.ZodString;
|
|
2607
|
+
from: z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
2608
|
+
id: z.ZodString;
|
|
2609
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2610
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2611
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2612
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2613
|
+
} & {
|
|
2614
|
+
company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2615
|
+
accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2616
|
+
routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2617
|
+
accountName: z.ZodString;
|
|
2618
|
+
agentEmail: z.ZodString;
|
|
2619
|
+
agentName: z.ZodString;
|
|
2620
|
+
accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
2621
|
+
account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2622
|
+
id: z.ZodString;
|
|
2623
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2624
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2625
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2626
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2627
|
+
} & {
|
|
2628
|
+
name: z.ZodString;
|
|
2629
|
+
status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
|
|
2630
|
+
managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
|
|
2631
|
+
platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
|
|
2632
|
+
onboardingReviewerId: z.ZodNullable<z.ZodString>;
|
|
2633
|
+
onboardingReviewAt: z.ZodNullable<z.ZodDate>;
|
|
2634
|
+
allowPendingComplianceReview: z.ZodBoolean;
|
|
2635
|
+
}, "strip", z.ZodTypeAny, {
|
|
2636
|
+
status: import("./common.types").AccountStatus;
|
|
2637
|
+
id: string;
|
|
2638
|
+
createdAt: string | Date;
|
|
2639
|
+
updatedAt: string | Date;
|
|
2640
|
+
deletedAt: string | Date | null;
|
|
2641
|
+
name: string;
|
|
2642
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2643
|
+
platform: import("./common.types").Platform;
|
|
2644
|
+
onboardingReviewerId: string | null;
|
|
2645
|
+
onboardingReviewAt: Date | null;
|
|
2646
|
+
allowPendingComplianceReview: boolean;
|
|
2647
|
+
__entity?: string | undefined;
|
|
2648
|
+
}, {
|
|
2649
|
+
status: import("./common.types").AccountStatus;
|
|
2650
|
+
id: string;
|
|
2651
|
+
createdAt: string | Date;
|
|
2652
|
+
updatedAt: string | Date;
|
|
2653
|
+
deletedAt: string | Date | null;
|
|
2654
|
+
name: string;
|
|
2655
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2656
|
+
platform: import("./common.types").Platform;
|
|
2657
|
+
onboardingReviewerId: string | null;
|
|
2658
|
+
onboardingReviewAt: Date | null;
|
|
2659
|
+
allowPendingComplianceReview: boolean;
|
|
2660
|
+
__entity?: string | undefined;
|
|
2661
|
+
}>>>;
|
|
2662
|
+
}, "strip", z.ZodTypeAny, {
|
|
2663
|
+
id: string;
|
|
2664
|
+
createdAt: string | Date;
|
|
2665
|
+
updatedAt: string | Date;
|
|
2666
|
+
deletedAt: string | Date | null;
|
|
2667
|
+
accountId: string;
|
|
2668
|
+
accountName: string;
|
|
2669
|
+
agentEmail: string;
|
|
2670
|
+
agentName: string;
|
|
2671
|
+
__entity?: string | undefined;
|
|
2672
|
+
account?: {
|
|
2673
|
+
status: import("./common.types").AccountStatus;
|
|
2674
|
+
id: string;
|
|
2675
|
+
createdAt: string | Date;
|
|
2676
|
+
updatedAt: string | Date;
|
|
2677
|
+
deletedAt: string | Date | null;
|
|
2678
|
+
name: string;
|
|
2679
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2680
|
+
platform: import("./common.types").Platform;
|
|
2681
|
+
onboardingReviewerId: string | null;
|
|
2682
|
+
onboardingReviewAt: Date | null;
|
|
2683
|
+
allowPendingComplianceReview: boolean;
|
|
2684
|
+
__entity?: string | undefined;
|
|
2685
|
+
} | null | undefined;
|
|
2686
|
+
accountNumber?: string | null | undefined;
|
|
2687
|
+
routingNumber?: string | null | undefined;
|
|
2688
|
+
company?: string | null | undefined;
|
|
2689
|
+
}, {
|
|
2690
|
+
id: string;
|
|
2691
|
+
createdAt: string | Date;
|
|
2692
|
+
updatedAt: string | Date;
|
|
2693
|
+
deletedAt: string | Date | null;
|
|
2694
|
+
accountId: string;
|
|
2695
|
+
accountName: string;
|
|
2696
|
+
agentEmail: string;
|
|
2697
|
+
agentName: string;
|
|
2698
|
+
__entity?: string | undefined;
|
|
2699
|
+
account?: {
|
|
2700
|
+
status: import("./common.types").AccountStatus;
|
|
2701
|
+
id: string;
|
|
2702
|
+
createdAt: string | Date;
|
|
2703
|
+
updatedAt: string | Date;
|
|
2704
|
+
deletedAt: string | Date | null;
|
|
2705
|
+
name: string;
|
|
2706
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2707
|
+
platform: import("./common.types").Platform;
|
|
2708
|
+
onboardingReviewerId: string | null;
|
|
2709
|
+
onboardingReviewAt: Date | null;
|
|
2710
|
+
allowPendingComplianceReview: boolean;
|
|
2711
|
+
__entity?: string | undefined;
|
|
2712
|
+
} | null | undefined;
|
|
2713
|
+
accountNumber?: string | null | undefined;
|
|
2714
|
+
routingNumber?: string | null | undefined;
|
|
2715
|
+
company?: string | null | undefined;
|
|
2716
|
+
}>>>;
|
|
2717
|
+
to: z.ZodNullable<z.ZodLazy<any>>;
|
|
2718
|
+
}, "strip", z.ZodTypeAny, {
|
|
2719
|
+
from: {
|
|
2720
|
+
id: string;
|
|
2721
|
+
createdAt: string | Date;
|
|
2722
|
+
updatedAt: string | Date;
|
|
2723
|
+
deletedAt: string | Date | null;
|
|
2724
|
+
accountId: string;
|
|
2725
|
+
accountName: string;
|
|
2726
|
+
agentEmail: string;
|
|
2727
|
+
agentName: string;
|
|
2728
|
+
__entity?: string | undefined;
|
|
2729
|
+
account?: {
|
|
2730
|
+
status: import("./common.types").AccountStatus;
|
|
2731
|
+
id: string;
|
|
2732
|
+
createdAt: string | Date;
|
|
2733
|
+
updatedAt: string | Date;
|
|
2734
|
+
deletedAt: string | Date | null;
|
|
2735
|
+
name: string;
|
|
2736
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2737
|
+
platform: import("./common.types").Platform;
|
|
2738
|
+
onboardingReviewerId: string | null;
|
|
2739
|
+
onboardingReviewAt: Date | null;
|
|
2740
|
+
allowPendingComplianceReview: boolean;
|
|
2741
|
+
__entity?: string | undefined;
|
|
2742
|
+
} | null | undefined;
|
|
2743
|
+
accountNumber?: string | null | undefined;
|
|
2744
|
+
routingNumber?: string | null | undefined;
|
|
2745
|
+
company?: string | null | undefined;
|
|
2746
|
+
} | null;
|
|
2747
|
+
offeringId: string;
|
|
2748
|
+
issuerName: string;
|
|
2749
|
+
offeringName: string;
|
|
2750
|
+
to?: any;
|
|
2751
|
+
}, {
|
|
2752
|
+
from: {
|
|
2753
|
+
id: string;
|
|
2754
|
+
createdAt: string | Date;
|
|
2755
|
+
updatedAt: string | Date;
|
|
2756
|
+
deletedAt: string | Date | null;
|
|
2757
|
+
accountId: string;
|
|
2758
|
+
accountName: string;
|
|
2759
|
+
agentEmail: string;
|
|
2760
|
+
agentName: string;
|
|
2761
|
+
__entity?: string | undefined;
|
|
2762
|
+
account?: {
|
|
2763
|
+
status: import("./common.types").AccountStatus;
|
|
2764
|
+
id: string;
|
|
2765
|
+
createdAt: string | Date;
|
|
2766
|
+
updatedAt: string | Date;
|
|
2767
|
+
deletedAt: string | Date | null;
|
|
2768
|
+
name: string;
|
|
2769
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2770
|
+
platform: import("./common.types").Platform;
|
|
2771
|
+
onboardingReviewerId: string | null;
|
|
2772
|
+
onboardingReviewAt: Date | null;
|
|
2773
|
+
allowPendingComplianceReview: boolean;
|
|
2774
|
+
__entity?: string | undefined;
|
|
2775
|
+
} | null | undefined;
|
|
2776
|
+
accountNumber?: string | null | undefined;
|
|
2777
|
+
routingNumber?: string | null | undefined;
|
|
2778
|
+
company?: string | null | undefined;
|
|
2779
|
+
} | null;
|
|
2780
|
+
offeringId: string;
|
|
2781
|
+
issuerName: string;
|
|
2782
|
+
offeringName: string;
|
|
2783
|
+
to?: any;
|
|
2784
|
+
}>;
|
|
2785
|
+
export type DisbursementDetailsTabGeneralInfoZod = z.infer<typeof DisbursementDetailsTabGeneralInfoZod>;
|
|
2786
|
+
export declare const DisbursementDetailsTabFinancialsZod: z.ZodObject<{
|
|
2787
|
+
amountRequested: z.ZodNumber;
|
|
2788
|
+
brokerDealerCommission: z.ZodNumber;
|
|
2789
|
+
disbursementFee: z.ZodNumber;
|
|
2790
|
+
refundPool: z.ZodNumber;
|
|
2791
|
+
amountToBeDisbursed: z.ZodNumber;
|
|
2792
|
+
}, "strip", z.ZodTypeAny, {
|
|
2793
|
+
refundPool: number;
|
|
2794
|
+
amountRequested: number;
|
|
2795
|
+
disbursementFee: number;
|
|
2796
|
+
brokerDealerCommission: number;
|
|
2797
|
+
amountToBeDisbursed: number;
|
|
2798
|
+
}, {
|
|
2799
|
+
refundPool: number;
|
|
2800
|
+
amountRequested: number;
|
|
2801
|
+
disbursementFee: number;
|
|
2802
|
+
brokerDealerCommission: number;
|
|
2803
|
+
amountToBeDisbursed: number;
|
|
2804
|
+
}>;
|
|
2805
|
+
export type DisbursementDetailsTabFinancialsZod = z.infer<typeof DisbursementDetailsTabFinancialsZod>;
|
|
2806
|
+
export declare const DisbursementDetailsTabTradeZod: z.ZodObject<{
|
|
2807
|
+
tradeNo: z.ZodString;
|
|
2808
|
+
investorName: z.ZodString;
|
|
2809
|
+
investmentName: z.ZodString;
|
|
2810
|
+
numberOfShares: z.ZodNumber;
|
|
2811
|
+
totalAmount: z.ZodNumber;
|
|
2812
|
+
date: z.ZodNullable<z.ZodDate>;
|
|
2813
|
+
status: z.ZodString;
|
|
2814
|
+
}, "strip", z.ZodTypeAny, {
|
|
2815
|
+
status: string;
|
|
2816
|
+
date: Date | null;
|
|
2817
|
+
totalAmount: number;
|
|
2818
|
+
investorName: string;
|
|
2819
|
+
numberOfShares: number;
|
|
2820
|
+
tradeNo: string;
|
|
2821
|
+
investmentName: string;
|
|
2822
|
+
}, {
|
|
2823
|
+
status: string;
|
|
2824
|
+
date: Date | null;
|
|
2825
|
+
totalAmount: number;
|
|
2826
|
+
investorName: string;
|
|
2827
|
+
numberOfShares: number;
|
|
2828
|
+
tradeNo: string;
|
|
2829
|
+
investmentName: string;
|
|
2830
|
+
}>;
|
|
2831
|
+
export type DisbursementDetailsTabTradeZod = z.infer<typeof DisbursementDetailsTabTradeZod>;
|
|
2832
|
+
export declare const DisbursementDetailsTabApprovalZod: z.ZodObject<{
|
|
2833
|
+
name: z.ZodString;
|
|
2834
|
+
signedAt: z.ZodNullable<z.ZodDate>;
|
|
2835
|
+
}, "strip", z.ZodTypeAny, {
|
|
2836
|
+
name: string;
|
|
2837
|
+
signedAt: Date | null;
|
|
2838
|
+
}, {
|
|
2839
|
+
name: string;
|
|
2840
|
+
signedAt: Date | null;
|
|
2841
|
+
}>;
|
|
2842
|
+
export type DisbursementDetailsTabApprovalZod = z.infer<typeof DisbursementDetailsTabApprovalZod>;
|
|
2843
|
+
export declare const DisbursementDetailsTabApprovalsZod: z.ZodObject<{
|
|
2844
|
+
issuerApprovals: z.ZodArray<z.ZodObject<{
|
|
2845
|
+
name: z.ZodString;
|
|
2846
|
+
signedAt: z.ZodNullable<z.ZodDate>;
|
|
2847
|
+
}, "strip", z.ZodTypeAny, {
|
|
2848
|
+
name: string;
|
|
2849
|
+
signedAt: Date | null;
|
|
2850
|
+
}, {
|
|
2851
|
+
name: string;
|
|
2852
|
+
signedAt: Date | null;
|
|
2853
|
+
}>, "many">;
|
|
2854
|
+
complianceApproval: z.ZodNullable<z.ZodObject<{
|
|
2855
|
+
name: z.ZodString;
|
|
2856
|
+
signedAt: z.ZodNullable<z.ZodDate>;
|
|
2857
|
+
}, "strip", z.ZodTypeAny, {
|
|
2858
|
+
name: string;
|
|
2859
|
+
signedAt: Date | null;
|
|
2860
|
+
}, {
|
|
2861
|
+
name: string;
|
|
2862
|
+
signedAt: Date | null;
|
|
2863
|
+
}>>;
|
|
2864
|
+
escrowApproval: z.ZodNullable<z.ZodObject<{
|
|
2865
|
+
name: z.ZodString;
|
|
2866
|
+
signedAt: z.ZodNullable<z.ZodDate>;
|
|
2867
|
+
}, "strip", z.ZodTypeAny, {
|
|
2868
|
+
name: string;
|
|
2869
|
+
signedAt: Date | null;
|
|
2870
|
+
}, {
|
|
2871
|
+
name: string;
|
|
2872
|
+
signedAt: Date | null;
|
|
2873
|
+
}>>;
|
|
2874
|
+
}, "strip", z.ZodTypeAny, {
|
|
2875
|
+
issuerApprovals: {
|
|
2876
|
+
name: string;
|
|
2877
|
+
signedAt: Date | null;
|
|
2878
|
+
}[];
|
|
2879
|
+
complianceApproval: {
|
|
2880
|
+
name: string;
|
|
2881
|
+
signedAt: Date | null;
|
|
2882
|
+
} | null;
|
|
2883
|
+
escrowApproval: {
|
|
2884
|
+
name: string;
|
|
2885
|
+
signedAt: Date | null;
|
|
2886
|
+
} | null;
|
|
2887
|
+
}, {
|
|
2888
|
+
issuerApprovals: {
|
|
2889
|
+
name: string;
|
|
2890
|
+
signedAt: Date | null;
|
|
2891
|
+
}[];
|
|
2892
|
+
complianceApproval: {
|
|
2893
|
+
name: string;
|
|
2894
|
+
signedAt: Date | null;
|
|
2895
|
+
} | null;
|
|
2896
|
+
escrowApproval: {
|
|
2897
|
+
name: string;
|
|
2898
|
+
signedAt: Date | null;
|
|
2899
|
+
} | null;
|
|
2900
|
+
}>;
|
|
2901
|
+
export type DisbursementDetailsTabApprovalsZod = z.infer<typeof DisbursementDetailsTabApprovalsZod>;
|
|
2902
|
+
export declare const DisbursementDetailsTabRejectionZod: z.ZodObject<{
|
|
2903
|
+
declinedByName: z.ZodNullable<z.ZodString>;
|
|
2904
|
+
declinedByRole: z.ZodNullable<z.ZodString>;
|
|
2905
|
+
declinedAt: z.ZodNullable<z.ZodDate>;
|
|
2906
|
+
}, "strip", z.ZodTypeAny, {
|
|
2907
|
+
declinedByName: string | null;
|
|
2908
|
+
declinedByRole: string | null;
|
|
2909
|
+
declinedAt: Date | null;
|
|
2910
|
+
}, {
|
|
2911
|
+
declinedByName: string | null;
|
|
2912
|
+
declinedByRole: string | null;
|
|
2913
|
+
declinedAt: Date | null;
|
|
2914
|
+
}>;
|
|
2915
|
+
export type DisbursementDetailsTabRejectionZod = z.infer<typeof DisbursementDetailsTabRejectionZod>;
|
|
2916
|
+
export declare const DisbursementDetailsTabZod: z.ZodObject<{
|
|
2917
|
+
header: z.ZodObject<{
|
|
2918
|
+
disbursementId: z.ZodEffects<z.ZodString, string, string>;
|
|
2919
|
+
disbursementDate: z.ZodNullable<z.ZodDate>;
|
|
2920
|
+
currency: z.ZodDefault<z.ZodString>;
|
|
2921
|
+
}, "strip", z.ZodTypeAny, {
|
|
2922
|
+
currency: string;
|
|
2923
|
+
disbursementId: string;
|
|
2924
|
+
disbursementDate: Date | null;
|
|
2925
|
+
}, {
|
|
2926
|
+
disbursementId: string;
|
|
2927
|
+
disbursementDate: Date | null;
|
|
2928
|
+
currency?: string | undefined;
|
|
2929
|
+
}>;
|
|
2930
|
+
generalInfo: z.ZodObject<{
|
|
2931
|
+
issuerName: z.ZodString;
|
|
2932
|
+
offeringName: z.ZodString;
|
|
2933
|
+
offeringId: z.ZodString;
|
|
2934
|
+
from: z.ZodNullable<z.ZodLazy<z.ZodObject<{
|
|
2935
|
+
id: z.ZodString;
|
|
2936
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2937
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2938
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2939
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2940
|
+
} & {
|
|
2941
|
+
company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2942
|
+
accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2943
|
+
routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2944
|
+
accountName: z.ZodString;
|
|
2945
|
+
agentEmail: z.ZodString;
|
|
2946
|
+
agentName: z.ZodString;
|
|
2947
|
+
accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
2948
|
+
account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2949
|
+
id: z.ZodString;
|
|
2950
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2951
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2952
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2953
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2954
|
+
} & {
|
|
2955
|
+
name: z.ZodString;
|
|
2956
|
+
status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
|
|
2957
|
+
managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
|
|
2958
|
+
platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
|
|
2959
|
+
onboardingReviewerId: z.ZodNullable<z.ZodString>;
|
|
2960
|
+
onboardingReviewAt: z.ZodNullable<z.ZodDate>;
|
|
2961
|
+
allowPendingComplianceReview: z.ZodBoolean;
|
|
2962
|
+
}, "strip", z.ZodTypeAny, {
|
|
2963
|
+
status: import("./common.types").AccountStatus;
|
|
2964
|
+
id: string;
|
|
2965
|
+
createdAt: string | Date;
|
|
2966
|
+
updatedAt: string | Date;
|
|
2967
|
+
deletedAt: string | Date | null;
|
|
2968
|
+
name: string;
|
|
2969
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2970
|
+
platform: import("./common.types").Platform;
|
|
2971
|
+
onboardingReviewerId: string | null;
|
|
2972
|
+
onboardingReviewAt: Date | null;
|
|
2973
|
+
allowPendingComplianceReview: boolean;
|
|
2974
|
+
__entity?: string | undefined;
|
|
2975
|
+
}, {
|
|
2976
|
+
status: import("./common.types").AccountStatus;
|
|
2977
|
+
id: string;
|
|
2978
|
+
createdAt: string | Date;
|
|
2979
|
+
updatedAt: string | Date;
|
|
2980
|
+
deletedAt: string | Date | null;
|
|
2981
|
+
name: string;
|
|
2982
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2983
|
+
platform: import("./common.types").Platform;
|
|
2984
|
+
onboardingReviewerId: string | null;
|
|
2985
|
+
onboardingReviewAt: Date | null;
|
|
2986
|
+
allowPendingComplianceReview: boolean;
|
|
2987
|
+
__entity?: string | undefined;
|
|
2988
|
+
}>>>;
|
|
2989
|
+
}, "strip", z.ZodTypeAny, {
|
|
2990
|
+
id: string;
|
|
2991
|
+
createdAt: string | Date;
|
|
2992
|
+
updatedAt: string | Date;
|
|
2993
|
+
deletedAt: string | Date | null;
|
|
2994
|
+
accountId: string;
|
|
2995
|
+
accountName: string;
|
|
2996
|
+
agentEmail: string;
|
|
2997
|
+
agentName: string;
|
|
2998
|
+
__entity?: string | undefined;
|
|
2999
|
+
account?: {
|
|
3000
|
+
status: import("./common.types").AccountStatus;
|
|
3001
|
+
id: string;
|
|
3002
|
+
createdAt: string | Date;
|
|
3003
|
+
updatedAt: string | Date;
|
|
3004
|
+
deletedAt: string | Date | null;
|
|
3005
|
+
name: string;
|
|
3006
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
3007
|
+
platform: import("./common.types").Platform;
|
|
3008
|
+
onboardingReviewerId: string | null;
|
|
3009
|
+
onboardingReviewAt: Date | null;
|
|
3010
|
+
allowPendingComplianceReview: boolean;
|
|
3011
|
+
__entity?: string | undefined;
|
|
3012
|
+
} | null | undefined;
|
|
3013
|
+
accountNumber?: string | null | undefined;
|
|
3014
|
+
routingNumber?: string | null | undefined;
|
|
3015
|
+
company?: string | null | undefined;
|
|
3016
|
+
}, {
|
|
3017
|
+
id: string;
|
|
3018
|
+
createdAt: string | Date;
|
|
3019
|
+
updatedAt: string | Date;
|
|
3020
|
+
deletedAt: string | Date | null;
|
|
3021
|
+
accountId: string;
|
|
3022
|
+
accountName: string;
|
|
3023
|
+
agentEmail: string;
|
|
3024
|
+
agentName: string;
|
|
3025
|
+
__entity?: string | undefined;
|
|
3026
|
+
account?: {
|
|
3027
|
+
status: import("./common.types").AccountStatus;
|
|
3028
|
+
id: string;
|
|
3029
|
+
createdAt: string | Date;
|
|
3030
|
+
updatedAt: string | Date;
|
|
3031
|
+
deletedAt: string | Date | null;
|
|
3032
|
+
name: string;
|
|
3033
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
3034
|
+
platform: import("./common.types").Platform;
|
|
3035
|
+
onboardingReviewerId: string | null;
|
|
3036
|
+
onboardingReviewAt: Date | null;
|
|
3037
|
+
allowPendingComplianceReview: boolean;
|
|
3038
|
+
__entity?: string | undefined;
|
|
3039
|
+
} | null | undefined;
|
|
3040
|
+
accountNumber?: string | null | undefined;
|
|
3041
|
+
routingNumber?: string | null | undefined;
|
|
3042
|
+
company?: string | null | undefined;
|
|
3043
|
+
}>>>;
|
|
3044
|
+
to: z.ZodNullable<z.ZodLazy<any>>;
|
|
3045
|
+
}, "strip", z.ZodTypeAny, {
|
|
3046
|
+
from: {
|
|
3047
|
+
id: string;
|
|
3048
|
+
createdAt: string | Date;
|
|
3049
|
+
updatedAt: string | Date;
|
|
3050
|
+
deletedAt: string | Date | null;
|
|
3051
|
+
accountId: string;
|
|
3052
|
+
accountName: string;
|
|
3053
|
+
agentEmail: string;
|
|
3054
|
+
agentName: string;
|
|
3055
|
+
__entity?: string | undefined;
|
|
3056
|
+
account?: {
|
|
3057
|
+
status: import("./common.types").AccountStatus;
|
|
3058
|
+
id: string;
|
|
3059
|
+
createdAt: string | Date;
|
|
3060
|
+
updatedAt: string | Date;
|
|
3061
|
+
deletedAt: string | Date | null;
|
|
3062
|
+
name: string;
|
|
3063
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
3064
|
+
platform: import("./common.types").Platform;
|
|
3065
|
+
onboardingReviewerId: string | null;
|
|
3066
|
+
onboardingReviewAt: Date | null;
|
|
3067
|
+
allowPendingComplianceReview: boolean;
|
|
3068
|
+
__entity?: string | undefined;
|
|
3069
|
+
} | null | undefined;
|
|
3070
|
+
accountNumber?: string | null | undefined;
|
|
3071
|
+
routingNumber?: string | null | undefined;
|
|
3072
|
+
company?: string | null | undefined;
|
|
3073
|
+
} | null;
|
|
3074
|
+
offeringId: string;
|
|
3075
|
+
issuerName: string;
|
|
3076
|
+
offeringName: string;
|
|
3077
|
+
to?: any;
|
|
3078
|
+
}, {
|
|
3079
|
+
from: {
|
|
3080
|
+
id: string;
|
|
3081
|
+
createdAt: string | Date;
|
|
3082
|
+
updatedAt: string | Date;
|
|
3083
|
+
deletedAt: string | Date | null;
|
|
3084
|
+
accountId: string;
|
|
3085
|
+
accountName: string;
|
|
3086
|
+
agentEmail: string;
|
|
3087
|
+
agentName: string;
|
|
3088
|
+
__entity?: string | undefined;
|
|
3089
|
+
account?: {
|
|
3090
|
+
status: import("./common.types").AccountStatus;
|
|
3091
|
+
id: string;
|
|
3092
|
+
createdAt: string | Date;
|
|
3093
|
+
updatedAt: string | Date;
|
|
3094
|
+
deletedAt: string | Date | null;
|
|
3095
|
+
name: string;
|
|
3096
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
3097
|
+
platform: import("./common.types").Platform;
|
|
3098
|
+
onboardingReviewerId: string | null;
|
|
3099
|
+
onboardingReviewAt: Date | null;
|
|
3100
|
+
allowPendingComplianceReview: boolean;
|
|
3101
|
+
__entity?: string | undefined;
|
|
3102
|
+
} | null | undefined;
|
|
3103
|
+
accountNumber?: string | null | undefined;
|
|
3104
|
+
routingNumber?: string | null | undefined;
|
|
3105
|
+
company?: string | null | undefined;
|
|
3106
|
+
} | null;
|
|
3107
|
+
offeringId: string;
|
|
3108
|
+
issuerName: string;
|
|
3109
|
+
offeringName: string;
|
|
3110
|
+
to?: any;
|
|
3111
|
+
}>;
|
|
3112
|
+
financials: z.ZodObject<{
|
|
3113
|
+
amountRequested: z.ZodNumber;
|
|
3114
|
+
brokerDealerCommission: z.ZodNumber;
|
|
3115
|
+
disbursementFee: z.ZodNumber;
|
|
3116
|
+
refundPool: z.ZodNumber;
|
|
3117
|
+
amountToBeDisbursed: z.ZodNumber;
|
|
3118
|
+
}, "strip", z.ZodTypeAny, {
|
|
3119
|
+
refundPool: number;
|
|
3120
|
+
amountRequested: number;
|
|
3121
|
+
disbursementFee: number;
|
|
3122
|
+
brokerDealerCommission: number;
|
|
3123
|
+
amountToBeDisbursed: number;
|
|
3124
|
+
}, {
|
|
3125
|
+
refundPool: number;
|
|
3126
|
+
amountRequested: number;
|
|
3127
|
+
disbursementFee: number;
|
|
3128
|
+
brokerDealerCommission: number;
|
|
3129
|
+
amountToBeDisbursed: number;
|
|
3130
|
+
}>;
|
|
3131
|
+
trades: z.ZodArray<z.ZodObject<{
|
|
3132
|
+
tradeNo: z.ZodString;
|
|
3133
|
+
investorName: z.ZodString;
|
|
3134
|
+
investmentName: z.ZodString;
|
|
3135
|
+
numberOfShares: z.ZodNumber;
|
|
3136
|
+
totalAmount: z.ZodNumber;
|
|
3137
|
+
date: z.ZodNullable<z.ZodDate>;
|
|
3138
|
+
status: z.ZodString;
|
|
3139
|
+
}, "strip", z.ZodTypeAny, {
|
|
3140
|
+
status: string;
|
|
3141
|
+
date: Date | null;
|
|
3142
|
+
totalAmount: number;
|
|
3143
|
+
investorName: string;
|
|
3144
|
+
numberOfShares: number;
|
|
3145
|
+
tradeNo: string;
|
|
3146
|
+
investmentName: string;
|
|
3147
|
+
}, {
|
|
3148
|
+
status: string;
|
|
3149
|
+
date: Date | null;
|
|
3150
|
+
totalAmount: number;
|
|
3151
|
+
investorName: string;
|
|
3152
|
+
numberOfShares: number;
|
|
3153
|
+
tradeNo: string;
|
|
3154
|
+
investmentName: string;
|
|
3155
|
+
}>, "many">;
|
|
3156
|
+
approvals: z.ZodObject<{
|
|
3157
|
+
issuerApprovals: z.ZodArray<z.ZodObject<{
|
|
3158
|
+
name: z.ZodString;
|
|
3159
|
+
signedAt: z.ZodNullable<z.ZodDate>;
|
|
3160
|
+
}, "strip", z.ZodTypeAny, {
|
|
3161
|
+
name: string;
|
|
3162
|
+
signedAt: Date | null;
|
|
3163
|
+
}, {
|
|
3164
|
+
name: string;
|
|
3165
|
+
signedAt: Date | null;
|
|
3166
|
+
}>, "many">;
|
|
3167
|
+
complianceApproval: z.ZodNullable<z.ZodObject<{
|
|
3168
|
+
name: z.ZodString;
|
|
3169
|
+
signedAt: z.ZodNullable<z.ZodDate>;
|
|
3170
|
+
}, "strip", z.ZodTypeAny, {
|
|
3171
|
+
name: string;
|
|
3172
|
+
signedAt: Date | null;
|
|
3173
|
+
}, {
|
|
3174
|
+
name: string;
|
|
3175
|
+
signedAt: Date | null;
|
|
3176
|
+
}>>;
|
|
3177
|
+
escrowApproval: z.ZodNullable<z.ZodObject<{
|
|
3178
|
+
name: z.ZodString;
|
|
3179
|
+
signedAt: z.ZodNullable<z.ZodDate>;
|
|
3180
|
+
}, "strip", z.ZodTypeAny, {
|
|
3181
|
+
name: string;
|
|
3182
|
+
signedAt: Date | null;
|
|
3183
|
+
}, {
|
|
3184
|
+
name: string;
|
|
3185
|
+
signedAt: Date | null;
|
|
3186
|
+
}>>;
|
|
3187
|
+
}, "strip", z.ZodTypeAny, {
|
|
3188
|
+
issuerApprovals: {
|
|
3189
|
+
name: string;
|
|
3190
|
+
signedAt: Date | null;
|
|
3191
|
+
}[];
|
|
3192
|
+
complianceApproval: {
|
|
3193
|
+
name: string;
|
|
3194
|
+
signedAt: Date | null;
|
|
3195
|
+
} | null;
|
|
3196
|
+
escrowApproval: {
|
|
3197
|
+
name: string;
|
|
3198
|
+
signedAt: Date | null;
|
|
3199
|
+
} | null;
|
|
3200
|
+
}, {
|
|
3201
|
+
issuerApprovals: {
|
|
3202
|
+
name: string;
|
|
3203
|
+
signedAt: Date | null;
|
|
3204
|
+
}[];
|
|
3205
|
+
complianceApproval: {
|
|
3206
|
+
name: string;
|
|
3207
|
+
signedAt: Date | null;
|
|
3208
|
+
} | null;
|
|
3209
|
+
escrowApproval: {
|
|
3210
|
+
name: string;
|
|
3211
|
+
signedAt: Date | null;
|
|
3212
|
+
} | null;
|
|
3213
|
+
}>;
|
|
3214
|
+
status: z.ZodNativeEnum<typeof DisbursementStatus>;
|
|
3215
|
+
rejection: z.ZodNullable<z.ZodObject<{
|
|
3216
|
+
declinedByName: z.ZodNullable<z.ZodString>;
|
|
3217
|
+
declinedByRole: z.ZodNullable<z.ZodString>;
|
|
3218
|
+
declinedAt: z.ZodNullable<z.ZodDate>;
|
|
3219
|
+
}, "strip", z.ZodTypeAny, {
|
|
3220
|
+
declinedByName: string | null;
|
|
3221
|
+
declinedByRole: string | null;
|
|
3222
|
+
declinedAt: Date | null;
|
|
3223
|
+
}, {
|
|
3224
|
+
declinedByName: string | null;
|
|
3225
|
+
declinedByRole: string | null;
|
|
3226
|
+
declinedAt: Date | null;
|
|
3227
|
+
}>>;
|
|
3228
|
+
}, "strip", z.ZodTypeAny, {
|
|
3229
|
+
status: DisbursementStatus;
|
|
3230
|
+
trades: {
|
|
3231
|
+
status: string;
|
|
3232
|
+
date: Date | null;
|
|
3233
|
+
totalAmount: number;
|
|
3234
|
+
investorName: string;
|
|
3235
|
+
numberOfShares: number;
|
|
3236
|
+
tradeNo: string;
|
|
3237
|
+
investmentName: string;
|
|
3238
|
+
}[];
|
|
3239
|
+
header: {
|
|
3240
|
+
currency: string;
|
|
3241
|
+
disbursementId: string;
|
|
3242
|
+
disbursementDate: Date | null;
|
|
3243
|
+
};
|
|
3244
|
+
generalInfo: {
|
|
3245
|
+
from: {
|
|
3246
|
+
id: string;
|
|
3247
|
+
createdAt: string | Date;
|
|
3248
|
+
updatedAt: string | Date;
|
|
3249
|
+
deletedAt: string | Date | null;
|
|
3250
|
+
accountId: string;
|
|
3251
|
+
accountName: string;
|
|
3252
|
+
agentEmail: string;
|
|
3253
|
+
agentName: string;
|
|
3254
|
+
__entity?: string | undefined;
|
|
3255
|
+
account?: {
|
|
3256
|
+
status: import("./common.types").AccountStatus;
|
|
3257
|
+
id: string;
|
|
3258
|
+
createdAt: string | Date;
|
|
3259
|
+
updatedAt: string | Date;
|
|
3260
|
+
deletedAt: string | Date | null;
|
|
3261
|
+
name: string;
|
|
3262
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
3263
|
+
platform: import("./common.types").Platform;
|
|
3264
|
+
onboardingReviewerId: string | null;
|
|
3265
|
+
onboardingReviewAt: Date | null;
|
|
3266
|
+
allowPendingComplianceReview: boolean;
|
|
3267
|
+
__entity?: string | undefined;
|
|
3268
|
+
} | null | undefined;
|
|
3269
|
+
accountNumber?: string | null | undefined;
|
|
3270
|
+
routingNumber?: string | null | undefined;
|
|
3271
|
+
company?: string | null | undefined;
|
|
3272
|
+
} | null;
|
|
3273
|
+
offeringId: string;
|
|
3274
|
+
issuerName: string;
|
|
3275
|
+
offeringName: string;
|
|
3276
|
+
to?: any;
|
|
3277
|
+
};
|
|
3278
|
+
financials: {
|
|
3279
|
+
refundPool: number;
|
|
3280
|
+
amountRequested: number;
|
|
3281
|
+
disbursementFee: number;
|
|
3282
|
+
brokerDealerCommission: number;
|
|
3283
|
+
amountToBeDisbursed: number;
|
|
3284
|
+
};
|
|
3285
|
+
approvals: {
|
|
3286
|
+
issuerApprovals: {
|
|
3287
|
+
name: string;
|
|
3288
|
+
signedAt: Date | null;
|
|
3289
|
+
}[];
|
|
3290
|
+
complianceApproval: {
|
|
3291
|
+
name: string;
|
|
3292
|
+
signedAt: Date | null;
|
|
3293
|
+
} | null;
|
|
3294
|
+
escrowApproval: {
|
|
3295
|
+
name: string;
|
|
3296
|
+
signedAt: Date | null;
|
|
3297
|
+
} | null;
|
|
3298
|
+
};
|
|
3299
|
+
rejection: {
|
|
3300
|
+
declinedByName: string | null;
|
|
3301
|
+
declinedByRole: string | null;
|
|
3302
|
+
declinedAt: Date | null;
|
|
3303
|
+
} | null;
|
|
3304
|
+
}, {
|
|
3305
|
+
status: DisbursementStatus;
|
|
3306
|
+
trades: {
|
|
3307
|
+
status: string;
|
|
3308
|
+
date: Date | null;
|
|
3309
|
+
totalAmount: number;
|
|
3310
|
+
investorName: string;
|
|
3311
|
+
numberOfShares: number;
|
|
3312
|
+
tradeNo: string;
|
|
3313
|
+
investmentName: string;
|
|
3314
|
+
}[];
|
|
3315
|
+
header: {
|
|
3316
|
+
disbursementId: string;
|
|
3317
|
+
disbursementDate: Date | null;
|
|
3318
|
+
currency?: string | undefined;
|
|
3319
|
+
};
|
|
3320
|
+
generalInfo: {
|
|
3321
|
+
from: {
|
|
3322
|
+
id: string;
|
|
3323
|
+
createdAt: string | Date;
|
|
3324
|
+
updatedAt: string | Date;
|
|
3325
|
+
deletedAt: string | Date | null;
|
|
3326
|
+
accountId: string;
|
|
3327
|
+
accountName: string;
|
|
3328
|
+
agentEmail: string;
|
|
3329
|
+
agentName: string;
|
|
3330
|
+
__entity?: string | undefined;
|
|
3331
|
+
account?: {
|
|
3332
|
+
status: import("./common.types").AccountStatus;
|
|
3333
|
+
id: string;
|
|
3334
|
+
createdAt: string | Date;
|
|
3335
|
+
updatedAt: string | Date;
|
|
3336
|
+
deletedAt: string | Date | null;
|
|
3337
|
+
name: string;
|
|
3338
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
3339
|
+
platform: import("./common.types").Platform;
|
|
3340
|
+
onboardingReviewerId: string | null;
|
|
3341
|
+
onboardingReviewAt: Date | null;
|
|
3342
|
+
allowPendingComplianceReview: boolean;
|
|
3343
|
+
__entity?: string | undefined;
|
|
3344
|
+
} | null | undefined;
|
|
3345
|
+
accountNumber?: string | null | undefined;
|
|
3346
|
+
routingNumber?: string | null | undefined;
|
|
3347
|
+
company?: string | null | undefined;
|
|
3348
|
+
} | null;
|
|
3349
|
+
offeringId: string;
|
|
3350
|
+
issuerName: string;
|
|
3351
|
+
offeringName: string;
|
|
3352
|
+
to?: any;
|
|
3353
|
+
};
|
|
3354
|
+
financials: {
|
|
3355
|
+
refundPool: number;
|
|
3356
|
+
amountRequested: number;
|
|
3357
|
+
disbursementFee: number;
|
|
3358
|
+
brokerDealerCommission: number;
|
|
3359
|
+
amountToBeDisbursed: number;
|
|
3360
|
+
};
|
|
3361
|
+
approvals: {
|
|
3362
|
+
issuerApprovals: {
|
|
3363
|
+
name: string;
|
|
3364
|
+
signedAt: Date | null;
|
|
3365
|
+
}[];
|
|
3366
|
+
complianceApproval: {
|
|
3367
|
+
name: string;
|
|
3368
|
+
signedAt: Date | null;
|
|
3369
|
+
} | null;
|
|
3370
|
+
escrowApproval: {
|
|
3371
|
+
name: string;
|
|
3372
|
+
signedAt: Date | null;
|
|
3373
|
+
} | null;
|
|
3374
|
+
};
|
|
3375
|
+
rejection: {
|
|
3376
|
+
declinedByName: string | null;
|
|
3377
|
+
declinedByRole: string | null;
|
|
3378
|
+
declinedAt: Date | null;
|
|
3379
|
+
} | null;
|
|
3380
|
+
}>;
|
|
3381
|
+
export type DisbursementDetailsTabZod = z.infer<typeof DisbursementDetailsTabZod>;
|