@dalmore/api-contracts 0.0.0-dev.685c0b3 → 0.0.0-dev.74136b1

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.
Files changed (46) hide show
  1. package/common/types/account-setting.types.d.ts +64 -0
  2. package/common/types/account-setting.types.js +8 -0
  3. package/common/types/account-setting.types.js.map +1 -1
  4. package/common/types/account.types.d.ts +38 -2
  5. package/common/types/account.types.js +3 -0
  6. package/common/types/account.types.js.map +1 -1
  7. package/common/types/activity.types.d.ts +25 -24
  8. package/common/types/activity.types.js +2 -0
  9. package/common/types/activity.types.js.map +1 -1
  10. package/common/types/auth.types.d.ts +1 -1
  11. package/common/types/auth.types.js +1 -1
  12. package/common/types/auth.types.js.map +1 -1
  13. package/common/types/bonus-tier.types.d.ts +4 -4
  14. package/common/types/cap-table.types.d.ts +8 -8
  15. package/common/types/common.types.d.ts +17 -1
  16. package/common/types/common.types.js +11 -0
  17. package/common/types/common.types.js.map +1 -1
  18. package/common/types/comply-advantage-api.types.d.ts +609 -36
  19. package/common/types/comply-advantage-api.types.js +10 -2
  20. package/common/types/comply-advantage-api.types.js.map +1 -1
  21. package/common/types/dashboard.types.d.ts +7 -7
  22. package/common/types/disbursements.types.d.ts +741 -0
  23. package/common/types/disbursements.types.js +34 -0
  24. package/common/types/disbursements.types.js.map +1 -1
  25. package/common/types/file.types.d.ts +9 -9
  26. package/common/types/investor-account.types.d.ts +4 -4
  27. package/common/types/job-item.types.d.ts +14 -14
  28. package/common/types/note.types.d.ts +15 -15
  29. package/common/types/signer.types.d.ts +15 -3
  30. package/common/types/signer.types.js +16 -1
  31. package/common/types/signer.types.js.map +1 -1
  32. package/common/types/task.types.d.ts +22 -22
  33. package/common/types/trade-line-item.types.d.ts +18 -1
  34. package/common/types/trade-line-item.types.js +12 -1
  35. package/common/types/trade-line-item.types.js.map +1 -1
  36. package/common/types/trade.types.d.ts +62 -45
  37. package/common/types/trade.types.js +11 -4
  38. package/common/types/trade.types.js.map +1 -1
  39. package/common/types/user.types.d.ts +5 -0
  40. package/common/types/user.types.js +1 -0
  41. package/common/types/user.types.js.map +1 -1
  42. package/contracts/clients/files/index.d.ts +3 -3
  43. package/contracts/clients/files-public/index.d.ts +3 -3
  44. package/contracts/clients/index.d.ts +15 -9
  45. package/contracts/clients/trades/index.d.ts +9 -3
  46. package/package.json +1 -1
@@ -2341,3 +2341,744 @@ export declare const EligibleOfferingsFiltersZod: z.ZodObject<{
2341
2341
  search?: string | undefined;
2342
2342
  }>;
2343
2343
  export type EligibleOfferingsFiltersZod = z.infer<typeof EligibleOfferingsFiltersZod>;
2344
+ export declare enum DisbursementLifecycleStage {
2345
+ CREATED = "CREATED",
2346
+ ISSUER_REVIEW = "ISSUER_REVIEW",
2347
+ COMPLIANCE_REVIEW = "COMPLIANCE_REVIEW",
2348
+ ESCROW_REVIEW = "ESCROW_REVIEW",
2349
+ COMPLETE = "COMPLETE"
2350
+ }
2351
+ export declare const DisbursementDetailZod: z.ZodObject<{
2352
+ id: z.ZodString;
2353
+ __entity: z.ZodOptional<z.ZodString>;
2354
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2355
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2356
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2357
+ } & {
2358
+ name: z.ZodString;
2359
+ status: z.ZodNativeEnum<typeof DisbursementStatus>;
2360
+ requestedAmount: z.ZodNumber;
2361
+ netAmount: z.ZodNumber;
2362
+ complianceReview: z.ZodNativeEnum<typeof ComplianceReview>;
2363
+ approversCount: z.ZodNumber;
2364
+ disbursedAt: z.ZodNullable<z.ZodDate>;
2365
+ accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2366
+ account: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2367
+ id: z.ZodString;
2368
+ __entity: z.ZodOptional<z.ZodString>;
2369
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2370
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2371
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2372
+ } & {
2373
+ name: z.ZodString;
2374
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2375
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2376
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2377
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
2378
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2379
+ allowPendingComplianceReview: z.ZodBoolean;
2380
+ }, "strip", z.ZodTypeAny, {
2381
+ status: import("./common.types").AccountStatus;
2382
+ id: string;
2383
+ createdAt: string | Date;
2384
+ updatedAt: string | Date;
2385
+ deletedAt: string | Date | null;
2386
+ name: string;
2387
+ managedBy: import("./common.types").ManagedByType | null;
2388
+ platform: import("./common.types").Platform;
2389
+ onboardingReviewerId: string | null;
2390
+ onboardingReviewAt: Date | null;
2391
+ allowPendingComplianceReview: boolean;
2392
+ __entity?: string | undefined;
2393
+ }, {
2394
+ status: import("./common.types").AccountStatus;
2395
+ id: string;
2396
+ createdAt: string | Date;
2397
+ updatedAt: string | Date;
2398
+ deletedAt: string | Date | null;
2399
+ name: string;
2400
+ managedBy: import("./common.types").ManagedByType | null;
2401
+ platform: import("./common.types").Platform;
2402
+ onboardingReviewerId: string | null;
2403
+ onboardingReviewAt: Date | null;
2404
+ allowPendingComplianceReview: boolean;
2405
+ __entity?: string | undefined;
2406
+ }>>>>;
2407
+ offeringId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2408
+ offering: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2409
+ createdById: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2410
+ createdBy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2411
+ id: z.ZodString;
2412
+ __entity: z.ZodOptional<z.ZodString>;
2413
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2414
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2415
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2416
+ } & {
2417
+ userLoginId: z.ZodNullable<z.ZodString>;
2418
+ roleId: z.ZodNullable<z.ZodString>;
2419
+ inviteId: z.ZodNullable<z.ZodString>;
2420
+ accountId: z.ZodNullable<z.ZodString>;
2421
+ onboarding: z.ZodNullable<z.ZodString>;
2422
+ account: z.ZodOptional<z.ZodObject<{
2423
+ id: z.ZodString;
2424
+ __entity: z.ZodOptional<z.ZodString>;
2425
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2426
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2427
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2428
+ } & {
2429
+ name: z.ZodString;
2430
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2431
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2432
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2433
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
2434
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2435
+ allowPendingComplianceReview: z.ZodBoolean;
2436
+ }, "strip", z.ZodTypeAny, {
2437
+ status: import("./common.types").AccountStatus;
2438
+ id: string;
2439
+ createdAt: string | Date;
2440
+ updatedAt: string | Date;
2441
+ deletedAt: string | Date | null;
2442
+ name: string;
2443
+ managedBy: import("./common.types").ManagedByType | null;
2444
+ platform: import("./common.types").Platform;
2445
+ onboardingReviewerId: string | null;
2446
+ onboardingReviewAt: Date | null;
2447
+ allowPendingComplianceReview: boolean;
2448
+ __entity?: string | undefined;
2449
+ }, {
2450
+ status: import("./common.types").AccountStatus;
2451
+ id: string;
2452
+ createdAt: string | Date;
2453
+ updatedAt: string | Date;
2454
+ deletedAt: string | Date | null;
2455
+ name: string;
2456
+ managedBy: import("./common.types").ManagedByType | null;
2457
+ platform: import("./common.types").Platform;
2458
+ onboardingReviewerId: string | null;
2459
+ onboardingReviewAt: Date | null;
2460
+ allowPendingComplianceReview: boolean;
2461
+ __entity?: string | undefined;
2462
+ }>>;
2463
+ active: z.ZodBoolean;
2464
+ locked: z.ZodBoolean;
2465
+ userLogin: z.ZodObject<{
2466
+ id: z.ZodString;
2467
+ __entity: z.ZodOptional<z.ZodString>;
2468
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2469
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2470
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2471
+ } & {
2472
+ firstName: z.ZodString;
2473
+ lastName: z.ZodString;
2474
+ email: z.ZodString;
2475
+ provider: z.ZodString;
2476
+ lastLoginAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2477
+ loginCount: z.ZodNumber;
2478
+ }, "strip", z.ZodTypeAny, {
2479
+ id: string;
2480
+ createdAt: string | Date;
2481
+ updatedAt: string | Date;
2482
+ deletedAt: string | Date | null;
2483
+ firstName: string;
2484
+ lastName: string;
2485
+ email: string;
2486
+ provider: string;
2487
+ lastLoginAt: string | Date | null;
2488
+ loginCount: number;
2489
+ __entity?: string | undefined;
2490
+ }, {
2491
+ id: string;
2492
+ createdAt: string | Date;
2493
+ updatedAt: string | Date;
2494
+ deletedAt: string | Date | null;
2495
+ firstName: string;
2496
+ lastName: string;
2497
+ email: string;
2498
+ provider: string;
2499
+ lastLoginAt: string | Date | null;
2500
+ loginCount: number;
2501
+ __entity?: string | undefined;
2502
+ }>;
2503
+ }, "strip", z.ZodTypeAny, {
2504
+ id: string;
2505
+ createdAt: string | Date;
2506
+ updatedAt: string | Date;
2507
+ deletedAt: string | Date | null;
2508
+ active: boolean;
2509
+ inviteId: string | null;
2510
+ accountId: string | null;
2511
+ roleId: string | null;
2512
+ userLoginId: string | null;
2513
+ locked: boolean;
2514
+ onboarding: string | null;
2515
+ userLogin: {
2516
+ id: string;
2517
+ createdAt: string | Date;
2518
+ updatedAt: string | Date;
2519
+ deletedAt: string | Date | null;
2520
+ firstName: string;
2521
+ lastName: string;
2522
+ email: string;
2523
+ provider: string;
2524
+ lastLoginAt: string | Date | null;
2525
+ loginCount: number;
2526
+ __entity?: string | undefined;
2527
+ };
2528
+ __entity?: string | undefined;
2529
+ account?: {
2530
+ status: import("./common.types").AccountStatus;
2531
+ id: string;
2532
+ createdAt: string | Date;
2533
+ updatedAt: string | Date;
2534
+ deletedAt: string | Date | null;
2535
+ name: string;
2536
+ managedBy: import("./common.types").ManagedByType | null;
2537
+ platform: import("./common.types").Platform;
2538
+ onboardingReviewerId: string | null;
2539
+ onboardingReviewAt: Date | null;
2540
+ allowPendingComplianceReview: boolean;
2541
+ __entity?: string | undefined;
2542
+ } | undefined;
2543
+ }, {
2544
+ id: string;
2545
+ createdAt: string | Date;
2546
+ updatedAt: string | Date;
2547
+ deletedAt: string | Date | null;
2548
+ active: boolean;
2549
+ inviteId: string | null;
2550
+ accountId: string | null;
2551
+ roleId: string | null;
2552
+ userLoginId: string | null;
2553
+ locked: boolean;
2554
+ onboarding: string | null;
2555
+ userLogin: {
2556
+ id: string;
2557
+ createdAt: string | Date;
2558
+ updatedAt: string | Date;
2559
+ deletedAt: string | Date | null;
2560
+ firstName: string;
2561
+ lastName: string;
2562
+ email: string;
2563
+ provider: string;
2564
+ lastLoginAt: string | Date | null;
2565
+ loginCount: number;
2566
+ __entity?: string | undefined;
2567
+ };
2568
+ __entity?: string | undefined;
2569
+ account?: {
2570
+ status: import("./common.types").AccountStatus;
2571
+ id: string;
2572
+ createdAt: string | Date;
2573
+ updatedAt: string | Date;
2574
+ deletedAt: string | Date | null;
2575
+ name: string;
2576
+ managedBy: import("./common.types").ManagedByType | null;
2577
+ platform: import("./common.types").Platform;
2578
+ onboardingReviewerId: string | null;
2579
+ onboardingReviewAt: Date | null;
2580
+ allowPendingComplianceReview: boolean;
2581
+ __entity?: string | undefined;
2582
+ } | undefined;
2583
+ }>>>;
2584
+ reviewedById: z.ZodNullable<z.ZodString>;
2585
+ } & {
2586
+ userCanReview: z.ZodBoolean;
2587
+ signingUrl: z.ZodNullable<z.ZodString>;
2588
+ lifecycleStage: z.ZodNativeEnum<typeof DisbursementLifecycleStage>;
2589
+ issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2590
+ issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2591
+ id: z.ZodString;
2592
+ __entity: z.ZodOptional<z.ZodString>;
2593
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2594
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2595
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2596
+ } & {
2597
+ accountNumber: z.ZodString;
2598
+ accountHolder: z.ZodString;
2599
+ routingNumber: z.ZodString;
2600
+ nickName: z.ZodString;
2601
+ accountId: z.ZodString;
2602
+ account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2603
+ id: z.ZodString;
2604
+ __entity: z.ZodOptional<z.ZodString>;
2605
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2606
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2607
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2608
+ } & {
2609
+ name: z.ZodString;
2610
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2611
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2612
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2613
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
2614
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2615
+ allowPendingComplianceReview: z.ZodBoolean;
2616
+ }, "strip", z.ZodTypeAny, {
2617
+ status: import("./common.types").AccountStatus;
2618
+ id: string;
2619
+ createdAt: string | Date;
2620
+ updatedAt: string | Date;
2621
+ deletedAt: string | Date | null;
2622
+ name: string;
2623
+ managedBy: import("./common.types").ManagedByType | null;
2624
+ platform: import("./common.types").Platform;
2625
+ onboardingReviewerId: string | null;
2626
+ onboardingReviewAt: Date | null;
2627
+ allowPendingComplianceReview: boolean;
2628
+ __entity?: string | undefined;
2629
+ }, {
2630
+ status: import("./common.types").AccountStatus;
2631
+ id: string;
2632
+ createdAt: string | Date;
2633
+ updatedAt: string | Date;
2634
+ deletedAt: string | Date | null;
2635
+ name: string;
2636
+ managedBy: import("./common.types").ManagedByType | null;
2637
+ platform: import("./common.types").Platform;
2638
+ onboardingReviewerId: string | null;
2639
+ onboardingReviewAt: Date | null;
2640
+ allowPendingComplianceReview: boolean;
2641
+ __entity?: string | undefined;
2642
+ }>>>;
2643
+ issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2644
+ issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2645
+ }, "strip", z.ZodTypeAny, {
2646
+ id: string;
2647
+ createdAt: string | Date;
2648
+ updatedAt: string | Date;
2649
+ deletedAt: string | Date | null;
2650
+ accountId: string;
2651
+ issuerId: string;
2652
+ accountNumber: string;
2653
+ accountHolder: string;
2654
+ routingNumber: string;
2655
+ nickName: string;
2656
+ __entity?: string | undefined;
2657
+ account?: {
2658
+ status: import("./common.types").AccountStatus;
2659
+ id: string;
2660
+ createdAt: string | Date;
2661
+ updatedAt: string | Date;
2662
+ deletedAt: string | Date | null;
2663
+ name: string;
2664
+ managedBy: import("./common.types").ManagedByType | null;
2665
+ platform: import("./common.types").Platform;
2666
+ onboardingReviewerId: string | null;
2667
+ onboardingReviewAt: Date | null;
2668
+ allowPendingComplianceReview: boolean;
2669
+ __entity?: string | undefined;
2670
+ } | null | undefined;
2671
+ issuer?: any;
2672
+ }, {
2673
+ id: string;
2674
+ createdAt: string | Date;
2675
+ updatedAt: string | Date;
2676
+ deletedAt: string | Date | null;
2677
+ accountId: string;
2678
+ issuerId: string;
2679
+ accountNumber: string;
2680
+ accountHolder: string;
2681
+ routingNumber: string;
2682
+ nickName: string;
2683
+ __entity?: string | undefined;
2684
+ account?: {
2685
+ status: import("./common.types").AccountStatus;
2686
+ id: string;
2687
+ createdAt: string | Date;
2688
+ updatedAt: string | Date;
2689
+ deletedAt: string | Date | null;
2690
+ name: string;
2691
+ managedBy: import("./common.types").ManagedByType | null;
2692
+ platform: import("./common.types").Platform;
2693
+ onboardingReviewerId: string | null;
2694
+ onboardingReviewAt: Date | null;
2695
+ allowPendingComplianceReview: boolean;
2696
+ __entity?: string | undefined;
2697
+ } | null | undefined;
2698
+ issuer?: any;
2699
+ }>>>>;
2700
+ escrowAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2701
+ id: z.ZodString;
2702
+ __entity: z.ZodOptional<z.ZodString>;
2703
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2704
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2705
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2706
+ } & {
2707
+ accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2708
+ routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2709
+ accountName: z.ZodString;
2710
+ agentEmail: z.ZodString;
2711
+ agentName: z.ZodString;
2712
+ accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2713
+ account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2714
+ id: z.ZodString;
2715
+ __entity: z.ZodOptional<z.ZodString>;
2716
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2717
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2718
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2719
+ } & {
2720
+ name: z.ZodString;
2721
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2722
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2723
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2724
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
2725
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2726
+ allowPendingComplianceReview: z.ZodBoolean;
2727
+ }, "strip", z.ZodTypeAny, {
2728
+ status: import("./common.types").AccountStatus;
2729
+ id: string;
2730
+ createdAt: string | Date;
2731
+ updatedAt: string | Date;
2732
+ deletedAt: string | Date | null;
2733
+ name: string;
2734
+ managedBy: import("./common.types").ManagedByType | null;
2735
+ platform: import("./common.types").Platform;
2736
+ onboardingReviewerId: string | null;
2737
+ onboardingReviewAt: Date | null;
2738
+ allowPendingComplianceReview: boolean;
2739
+ __entity?: string | undefined;
2740
+ }, {
2741
+ status: import("./common.types").AccountStatus;
2742
+ id: string;
2743
+ createdAt: string | Date;
2744
+ updatedAt: string | Date;
2745
+ deletedAt: string | Date | null;
2746
+ name: string;
2747
+ managedBy: import("./common.types").ManagedByType | null;
2748
+ platform: import("./common.types").Platform;
2749
+ onboardingReviewerId: string | null;
2750
+ onboardingReviewAt: Date | null;
2751
+ allowPendingComplianceReview: boolean;
2752
+ __entity?: string | undefined;
2753
+ }>>>;
2754
+ }, "strip", z.ZodTypeAny, {
2755
+ id: string;
2756
+ createdAt: string | Date;
2757
+ updatedAt: string | Date;
2758
+ deletedAt: string | Date | null;
2759
+ accountId: string;
2760
+ accountName: string;
2761
+ agentEmail: string;
2762
+ agentName: string;
2763
+ __entity?: string | undefined;
2764
+ account?: {
2765
+ status: import("./common.types").AccountStatus;
2766
+ id: string;
2767
+ createdAt: string | Date;
2768
+ updatedAt: string | Date;
2769
+ deletedAt: string | Date | null;
2770
+ name: string;
2771
+ managedBy: import("./common.types").ManagedByType | null;
2772
+ platform: import("./common.types").Platform;
2773
+ onboardingReviewerId: string | null;
2774
+ onboardingReviewAt: Date | null;
2775
+ allowPendingComplianceReview: boolean;
2776
+ __entity?: string | undefined;
2777
+ } | null | undefined;
2778
+ accountNumber?: string | null | undefined;
2779
+ routingNumber?: string | null | undefined;
2780
+ }, {
2781
+ id: string;
2782
+ createdAt: string | Date;
2783
+ updatedAt: string | Date;
2784
+ deletedAt: string | Date | null;
2785
+ accountId: string;
2786
+ accountName: string;
2787
+ agentEmail: string;
2788
+ agentName: string;
2789
+ __entity?: string | undefined;
2790
+ account?: {
2791
+ status: import("./common.types").AccountStatus;
2792
+ id: string;
2793
+ createdAt: string | Date;
2794
+ updatedAt: string | Date;
2795
+ deletedAt: string | Date | null;
2796
+ name: string;
2797
+ managedBy: import("./common.types").ManagedByType | null;
2798
+ platform: import("./common.types").Platform;
2799
+ onboardingReviewerId: string | null;
2800
+ onboardingReviewAt: Date | null;
2801
+ allowPendingComplianceReview: boolean;
2802
+ __entity?: string | undefined;
2803
+ } | null | undefined;
2804
+ accountNumber?: string | null | undefined;
2805
+ routingNumber?: string | null | undefined;
2806
+ }>>>>;
2807
+ disbursementAdjustments: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2808
+ tradeDisbursements: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2809
+ disbursementReviews: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2810
+ disbursementTransactions: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2811
+ }, "strip", z.ZodTypeAny, {
2812
+ status: DisbursementStatus;
2813
+ id: string;
2814
+ createdAt: string | Date;
2815
+ updatedAt: string | Date;
2816
+ deletedAt: string | Date | null;
2817
+ accountId: string;
2818
+ name: string;
2819
+ complianceReview: ComplianceReview;
2820
+ approversCount: number;
2821
+ offeringId: string;
2822
+ reviewedById: string | null;
2823
+ createdById: string;
2824
+ requestedAmount: number;
2825
+ netAmount: number;
2826
+ disbursedAt: Date | null;
2827
+ userCanReview: boolean;
2828
+ signingUrl: string | null;
2829
+ lifecycleStage: DisbursementLifecycleStage;
2830
+ __entity?: string | undefined;
2831
+ account?: {
2832
+ status: import("./common.types").AccountStatus;
2833
+ id: string;
2834
+ createdAt: string | Date;
2835
+ updatedAt: string | Date;
2836
+ deletedAt: string | Date | null;
2837
+ name: string;
2838
+ managedBy: import("./common.types").ManagedByType | null;
2839
+ platform: import("./common.types").Platform;
2840
+ onboardingReviewerId: string | null;
2841
+ onboardingReviewAt: Date | null;
2842
+ allowPendingComplianceReview: boolean;
2843
+ __entity?: string | undefined;
2844
+ } | null | undefined;
2845
+ offering?: any;
2846
+ issuer?: any;
2847
+ tradeDisbursements?: any[] | undefined;
2848
+ createdBy?: {
2849
+ id: string;
2850
+ createdAt: string | Date;
2851
+ updatedAt: string | Date;
2852
+ deletedAt: string | Date | null;
2853
+ active: boolean;
2854
+ inviteId: string | null;
2855
+ accountId: string | null;
2856
+ roleId: string | null;
2857
+ userLoginId: string | null;
2858
+ locked: boolean;
2859
+ onboarding: string | null;
2860
+ userLogin: {
2861
+ id: string;
2862
+ createdAt: string | Date;
2863
+ updatedAt: string | Date;
2864
+ deletedAt: string | Date | null;
2865
+ firstName: string;
2866
+ lastName: string;
2867
+ email: string;
2868
+ provider: string;
2869
+ lastLoginAt: string | Date | null;
2870
+ loginCount: number;
2871
+ __entity?: string | undefined;
2872
+ };
2873
+ __entity?: string | undefined;
2874
+ account?: {
2875
+ status: import("./common.types").AccountStatus;
2876
+ id: string;
2877
+ createdAt: string | Date;
2878
+ updatedAt: string | Date;
2879
+ deletedAt: string | Date | null;
2880
+ name: string;
2881
+ managedBy: import("./common.types").ManagedByType | null;
2882
+ platform: import("./common.types").Platform;
2883
+ onboardingReviewerId: string | null;
2884
+ onboardingReviewAt: Date | null;
2885
+ allowPendingComplianceReview: boolean;
2886
+ __entity?: string | undefined;
2887
+ } | undefined;
2888
+ } | null | undefined;
2889
+ issuerBankAccount?: {
2890
+ id: string;
2891
+ createdAt: string | Date;
2892
+ updatedAt: string | Date;
2893
+ deletedAt: string | Date | null;
2894
+ accountId: string;
2895
+ issuerId: string;
2896
+ accountNumber: string;
2897
+ accountHolder: string;
2898
+ routingNumber: string;
2899
+ nickName: string;
2900
+ __entity?: string | undefined;
2901
+ account?: {
2902
+ status: import("./common.types").AccountStatus;
2903
+ id: string;
2904
+ createdAt: string | Date;
2905
+ updatedAt: string | Date;
2906
+ deletedAt: string | Date | null;
2907
+ name: string;
2908
+ managedBy: import("./common.types").ManagedByType | null;
2909
+ platform: import("./common.types").Platform;
2910
+ onboardingReviewerId: string | null;
2911
+ onboardingReviewAt: Date | null;
2912
+ allowPendingComplianceReview: boolean;
2913
+ __entity?: string | undefined;
2914
+ } | null | undefined;
2915
+ issuer?: any;
2916
+ } | null | undefined;
2917
+ escrowAccount?: {
2918
+ id: string;
2919
+ createdAt: string | Date;
2920
+ updatedAt: string | Date;
2921
+ deletedAt: string | Date | null;
2922
+ accountId: string;
2923
+ accountName: string;
2924
+ agentEmail: string;
2925
+ agentName: string;
2926
+ __entity?: string | undefined;
2927
+ account?: {
2928
+ status: import("./common.types").AccountStatus;
2929
+ id: string;
2930
+ createdAt: string | Date;
2931
+ updatedAt: string | Date;
2932
+ deletedAt: string | Date | null;
2933
+ name: string;
2934
+ managedBy: import("./common.types").ManagedByType | null;
2935
+ platform: import("./common.types").Platform;
2936
+ onboardingReviewerId: string | null;
2937
+ onboardingReviewAt: Date | null;
2938
+ allowPendingComplianceReview: boolean;
2939
+ __entity?: string | undefined;
2940
+ } | null | undefined;
2941
+ accountNumber?: string | null | undefined;
2942
+ routingNumber?: string | null | undefined;
2943
+ } | null | undefined;
2944
+ disbursementAdjustments?: any[] | undefined;
2945
+ disbursementReviews?: any[] | undefined;
2946
+ disbursementTransactions?: any[] | undefined;
2947
+ }, {
2948
+ status: DisbursementStatus;
2949
+ id: string;
2950
+ createdAt: string | Date;
2951
+ updatedAt: string | Date;
2952
+ deletedAt: string | Date | null;
2953
+ accountId: string;
2954
+ name: string;
2955
+ complianceReview: ComplianceReview;
2956
+ approversCount: number;
2957
+ offeringId: string;
2958
+ reviewedById: string | null;
2959
+ createdById: string;
2960
+ requestedAmount: number;
2961
+ netAmount: number;
2962
+ disbursedAt: Date | null;
2963
+ userCanReview: boolean;
2964
+ signingUrl: string | null;
2965
+ lifecycleStage: DisbursementLifecycleStage;
2966
+ __entity?: string | undefined;
2967
+ account?: {
2968
+ status: import("./common.types").AccountStatus;
2969
+ id: string;
2970
+ createdAt: string | Date;
2971
+ updatedAt: string | Date;
2972
+ deletedAt: string | Date | null;
2973
+ name: string;
2974
+ managedBy: import("./common.types").ManagedByType | null;
2975
+ platform: import("./common.types").Platform;
2976
+ onboardingReviewerId: string | null;
2977
+ onboardingReviewAt: Date | null;
2978
+ allowPendingComplianceReview: boolean;
2979
+ __entity?: string | undefined;
2980
+ } | null | undefined;
2981
+ offering?: any;
2982
+ issuer?: any;
2983
+ tradeDisbursements?: any[] | undefined;
2984
+ createdBy?: {
2985
+ id: string;
2986
+ createdAt: string | Date;
2987
+ updatedAt: string | Date;
2988
+ deletedAt: string | Date | null;
2989
+ active: boolean;
2990
+ inviteId: string | null;
2991
+ accountId: string | null;
2992
+ roleId: string | null;
2993
+ userLoginId: string | null;
2994
+ locked: boolean;
2995
+ onboarding: string | null;
2996
+ userLogin: {
2997
+ id: string;
2998
+ createdAt: string | Date;
2999
+ updatedAt: string | Date;
3000
+ deletedAt: string | Date | null;
3001
+ firstName: string;
3002
+ lastName: string;
3003
+ email: string;
3004
+ provider: string;
3005
+ lastLoginAt: string | Date | null;
3006
+ loginCount: number;
3007
+ __entity?: string | undefined;
3008
+ };
3009
+ __entity?: string | undefined;
3010
+ account?: {
3011
+ status: import("./common.types").AccountStatus;
3012
+ id: string;
3013
+ createdAt: string | Date;
3014
+ updatedAt: string | Date;
3015
+ deletedAt: string | Date | null;
3016
+ name: string;
3017
+ managedBy: import("./common.types").ManagedByType | null;
3018
+ platform: import("./common.types").Platform;
3019
+ onboardingReviewerId: string | null;
3020
+ onboardingReviewAt: Date | null;
3021
+ allowPendingComplianceReview: boolean;
3022
+ __entity?: string | undefined;
3023
+ } | undefined;
3024
+ } | null | undefined;
3025
+ issuerBankAccount?: {
3026
+ id: string;
3027
+ createdAt: string | Date;
3028
+ updatedAt: string | Date;
3029
+ deletedAt: string | Date | null;
3030
+ accountId: string;
3031
+ issuerId: string;
3032
+ accountNumber: string;
3033
+ accountHolder: string;
3034
+ routingNumber: string;
3035
+ nickName: string;
3036
+ __entity?: string | undefined;
3037
+ account?: {
3038
+ status: import("./common.types").AccountStatus;
3039
+ id: string;
3040
+ createdAt: string | Date;
3041
+ updatedAt: string | Date;
3042
+ deletedAt: string | Date | null;
3043
+ name: string;
3044
+ managedBy: import("./common.types").ManagedByType | null;
3045
+ platform: import("./common.types").Platform;
3046
+ onboardingReviewerId: string | null;
3047
+ onboardingReviewAt: Date | null;
3048
+ allowPendingComplianceReview: boolean;
3049
+ __entity?: string | undefined;
3050
+ } | null | undefined;
3051
+ issuer?: any;
3052
+ } | null | undefined;
3053
+ escrowAccount?: {
3054
+ id: string;
3055
+ createdAt: string | Date;
3056
+ updatedAt: string | Date;
3057
+ deletedAt: string | Date | null;
3058
+ accountId: string;
3059
+ accountName: string;
3060
+ agentEmail: string;
3061
+ agentName: string;
3062
+ __entity?: string | undefined;
3063
+ account?: {
3064
+ status: import("./common.types").AccountStatus;
3065
+ id: string;
3066
+ createdAt: string | Date;
3067
+ updatedAt: string | Date;
3068
+ deletedAt: string | Date | null;
3069
+ name: string;
3070
+ managedBy: import("./common.types").ManagedByType | null;
3071
+ platform: import("./common.types").Platform;
3072
+ onboardingReviewerId: string | null;
3073
+ onboardingReviewAt: Date | null;
3074
+ allowPendingComplianceReview: boolean;
3075
+ __entity?: string | undefined;
3076
+ } | null | undefined;
3077
+ accountNumber?: string | null | undefined;
3078
+ routingNumber?: string | null | undefined;
3079
+ } | null | undefined;
3080
+ disbursementAdjustments?: any[] | undefined;
3081
+ disbursementReviews?: any[] | undefined;
3082
+ disbursementTransactions?: any[] | undefined;
3083
+ }>;
3084
+ export type DisbursementDetailZod = z.infer<typeof DisbursementDetailZod>;