@dalmore/api-contracts 0.0.0-dev.d2fe663 → 0.0.0-dev.d38f1ff

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 (82) 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 +27 -24
  8. package/common/types/activity.types.js +6 -0
  9. package/common/types/activity.types.js.map +1 -1
  10. package/common/types/asset.types.d.ts +212 -0
  11. package/common/types/asset.types.js +115 -42
  12. package/common/types/asset.types.js.map +1 -1
  13. package/common/types/auth.types.d.ts +1 -1
  14. package/common/types/auth.types.js +1 -1
  15. package/common/types/auth.types.js.map +1 -1
  16. package/common/types/bonus-tier.types.d.ts +128 -25
  17. package/common/types/bonus-tier.types.js +48 -12
  18. package/common/types/bonus-tier.types.js.map +1 -1
  19. package/common/types/cap-table.types.d.ts +1124 -0
  20. package/common/types/cap-table.types.js +406 -0
  21. package/common/types/cap-table.types.js.map +1 -0
  22. package/common/types/common.types.d.ts +30 -3
  23. package/common/types/common.types.js +18 -0
  24. package/common/types/common.types.js.map +1 -1
  25. package/common/types/comply-advantage-api.types.d.ts +133 -466
  26. package/common/types/comply-advantage-api.types.js +24 -3
  27. package/common/types/comply-advantage-api.types.js.map +1 -1
  28. package/common/types/dashboard.types.d.ts +7 -7
  29. package/common/types/data-record.types.d.ts +4 -4
  30. package/common/types/disbursements.types.d.ts +613 -392
  31. package/common/types/disbursements.types.js +37 -0
  32. package/common/types/disbursements.types.js.map +1 -1
  33. package/common/types/escrow-account.types.d.ts +17 -0
  34. package/common/types/escrow-account.types.js +3 -0
  35. package/common/types/escrow-account.types.js.map +1 -1
  36. package/common/types/file.types.d.ts +14 -11
  37. package/common/types/file.types.js +2 -0
  38. package/common/types/file.types.js.map +1 -1
  39. package/common/types/index.d.ts +2 -0
  40. package/common/types/index.js +2 -0
  41. package/common/types/index.js.map +1 -1
  42. package/common/types/individuals.types.js +5 -2
  43. package/common/types/individuals.types.js.map +1 -1
  44. package/common/types/investor-account.types.d.ts +4 -4
  45. package/common/types/issuer-bank-account.types.d.ts +4 -276
  46. package/common/types/issuer-offering.types.d.ts +662 -5
  47. package/common/types/issuer-offering.types.js +100 -6
  48. package/common/types/issuer-offering.types.js.map +1 -1
  49. package/common/types/job-item.types.d.ts +14 -14
  50. package/common/types/note.types.d.ts +15 -15
  51. package/common/types/offering-submission.types.js +2 -2
  52. package/common/types/offering.types.d.ts +281 -1
  53. package/common/types/offering.types.js +109 -10
  54. package/common/types/offering.types.js.map +1 -1
  55. package/common/types/portfolio.types.d.ts +6 -6
  56. package/common/types/reports.types.d.ts +345 -0
  57. package/common/types/reports.types.js +69 -0
  58. package/common/types/reports.types.js.map +1 -0
  59. package/common/types/signer.types.d.ts +23 -11
  60. package/common/types/signer.types.js +16 -1
  61. package/common/types/signer.types.js.map +1 -1
  62. package/common/types/site.types.d.ts +5 -0
  63. package/common/types/task.types.d.ts +22 -22
  64. package/common/types/trade-line-item.types.d.ts +18 -1
  65. package/common/types/trade-line-item.types.js +12 -1
  66. package/common/types/trade-line-item.types.js.map +1 -1
  67. package/common/types/trade.types.d.ts +64 -45
  68. package/common/types/trade.types.js +13 -4
  69. package/common/types/trade.types.js.map +1 -1
  70. package/common/types/transaction.types.d.ts +80 -1
  71. package/common/types/transaction.types.js +22 -2
  72. package/common/types/transaction.types.js.map +1 -1
  73. package/common/types/user.types.d.ts +34 -0
  74. package/common/types/user.types.js +4 -0
  75. package/common/types/user.types.js.map +1 -1
  76. package/contracts/clients/assets/index.d.ts +22 -0
  77. package/contracts/clients/files/index.d.ts +3 -3
  78. package/contracts/clients/files-public/index.d.ts +3 -3
  79. package/contracts/clients/index.d.ts +257 -13
  80. package/contracts/clients/offerings/index.d.ts +220 -4
  81. package/contracts/clients/trades/index.d.ts +9 -3
  82. package/package.json +1 -1
@@ -1066,6 +1066,7 @@ export declare const PostDisbursementZod: z.ZodObject<{
1066
1066
  name: string;
1067
1067
  offeringId: string;
1068
1068
  issuerId: string;
1069
+ escrowAccountId: string;
1069
1070
  tradeIds: string[];
1070
1071
  requestedAmount: number;
1071
1072
  netAmount: number;
@@ -1075,12 +1076,12 @@ export declare const PostDisbursementZod: z.ZodObject<{
1075
1076
  description: string;
1076
1077
  }[];
1077
1078
  issuerBankAccountId: string;
1078
- escrowAccountId: string;
1079
1079
  disbursedAt?: Date | null | undefined;
1080
1080
  }, {
1081
1081
  name: string;
1082
1082
  offeringId: string;
1083
1083
  issuerId: string;
1084
+ escrowAccountId: string;
1084
1085
  tradeIds: string[];
1085
1086
  requestedAmount: number;
1086
1087
  netAmount: number;
@@ -1090,7 +1091,6 @@ export declare const PostDisbursementZod: z.ZodObject<{
1090
1091
  description: string;
1091
1092
  }[];
1092
1093
  issuerBankAccountId: string;
1093
- escrowAccountId: string;
1094
1094
  disbursedAt?: string | null | undefined;
1095
1095
  }>;
1096
1096
  export type PostDisbursementZod = z.infer<typeof PostDisbursementZod>;
@@ -1132,6 +1132,7 @@ export declare const CompliancePostDisbursementZod: z.ZodObject<{
1132
1132
  name: string;
1133
1133
  offeringId: string;
1134
1134
  issuerId: string;
1135
+ escrowAccountId: string;
1135
1136
  tradeIds: string[];
1136
1137
  requestedAmount: number;
1137
1138
  netAmount: number;
@@ -1141,13 +1142,13 @@ export declare const CompliancePostDisbursementZod: z.ZodObject<{
1141
1142
  description: string;
1142
1143
  }[];
1143
1144
  issuerBankAccountId: string;
1144
- escrowAccountId: string;
1145
1145
  disbursedAt?: Date | null | undefined;
1146
1146
  }, {
1147
1147
  accountId: string;
1148
1148
  name: string;
1149
1149
  offeringId: string;
1150
1150
  issuerId: string;
1151
+ escrowAccountId: string;
1151
1152
  tradeIds: string[];
1152
1153
  requestedAmount: number;
1153
1154
  netAmount: number;
@@ -1157,7 +1158,6 @@ export declare const CompliancePostDisbursementZod: z.ZodObject<{
1157
1158
  description: string;
1158
1159
  }[];
1159
1160
  issuerBankAccountId: string;
1160
- escrowAccountId: string;
1161
1161
  disbursedAt?: string | null | undefined;
1162
1162
  }>;
1163
1163
  export type CompliancePostDisbursementZod = z.infer<typeof CompliancePostDisbursementZod>;
@@ -1314,6 +1314,7 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
1314
1314
  updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1315
1315
  deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1316
1316
  } & {
1317
+ company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1317
1318
  accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1318
1319
  routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1319
1320
  accountName: z.ZodString;
@@ -1387,6 +1388,7 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
1387
1388
  } | null | undefined;
1388
1389
  accountNumber?: string | null | undefined;
1389
1390
  routingNumber?: string | null | undefined;
1391
+ company?: string | null | undefined;
1390
1392
  }, {
1391
1393
  id: string;
1392
1394
  createdAt: string | Date;
@@ -1413,117 +1415,9 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
1413
1415
  } | null | undefined;
1414
1416
  accountNumber?: string | null | undefined;
1415
1417
  routingNumber?: string | null | undefined;
1418
+ company?: string | null | undefined;
1416
1419
  }>>>;
1417
- destinationBank: z.ZodNullable<z.ZodLazy<z.ZodObject<{
1418
- id: z.ZodString;
1419
- __entity: z.ZodOptional<z.ZodString>;
1420
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1421
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1422
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1423
- } & {
1424
- accountNumber: z.ZodString;
1425
- accountHolder: z.ZodString;
1426
- routingNumber: z.ZodString;
1427
- nickName: z.ZodString;
1428
- accountId: z.ZodString;
1429
- account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1430
- id: z.ZodString;
1431
- __entity: z.ZodOptional<z.ZodString>;
1432
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1433
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1434
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1435
- } & {
1436
- name: z.ZodString;
1437
- status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
1438
- managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
1439
- platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
1440
- onboardingReviewerId: z.ZodNullable<z.ZodString>;
1441
- onboardingReviewAt: z.ZodNullable<z.ZodDate>;
1442
- allowPendingComplianceReview: z.ZodBoolean;
1443
- }, "strip", z.ZodTypeAny, {
1444
- status: import("./common.types").AccountStatus;
1445
- id: string;
1446
- createdAt: string | Date;
1447
- updatedAt: string | Date;
1448
- deletedAt: string | Date | null;
1449
- name: string;
1450
- managedBy: import("./common.types").ManagedByType | null;
1451
- platform: import("./common.types").Platform;
1452
- onboardingReviewerId: string | null;
1453
- onboardingReviewAt: Date | null;
1454
- allowPendingComplianceReview: boolean;
1455
- __entity?: string | undefined;
1456
- }, {
1457
- status: import("./common.types").AccountStatus;
1458
- id: string;
1459
- createdAt: string | Date;
1460
- updatedAt: string | Date;
1461
- deletedAt: string | Date | null;
1462
- name: string;
1463
- managedBy: import("./common.types").ManagedByType | null;
1464
- platform: import("./common.types").Platform;
1465
- onboardingReviewerId: string | null;
1466
- onboardingReviewAt: Date | null;
1467
- allowPendingComplianceReview: boolean;
1468
- __entity?: string | undefined;
1469
- }>>>;
1470
- issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
1471
- issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
1472
- }, "strip", z.ZodTypeAny, {
1473
- id: string;
1474
- createdAt: string | Date;
1475
- updatedAt: string | Date;
1476
- deletedAt: string | Date | null;
1477
- accountId: string;
1478
- issuerId: string;
1479
- accountNumber: string;
1480
- accountHolder: string;
1481
- routingNumber: string;
1482
- nickName: string;
1483
- __entity?: string | undefined;
1484
- account?: {
1485
- status: import("./common.types").AccountStatus;
1486
- id: string;
1487
- createdAt: string | Date;
1488
- updatedAt: string | Date;
1489
- deletedAt: string | Date | null;
1490
- name: string;
1491
- managedBy: import("./common.types").ManagedByType | null;
1492
- platform: import("./common.types").Platform;
1493
- onboardingReviewerId: string | null;
1494
- onboardingReviewAt: Date | null;
1495
- allowPendingComplianceReview: boolean;
1496
- __entity?: string | undefined;
1497
- } | null | undefined;
1498
- issuer?: any;
1499
- }, {
1500
- id: string;
1501
- createdAt: string | Date;
1502
- updatedAt: string | Date;
1503
- deletedAt: string | Date | null;
1504
- accountId: string;
1505
- issuerId: string;
1506
- accountNumber: string;
1507
- accountHolder: string;
1508
- routingNumber: string;
1509
- nickName: string;
1510
- __entity?: string | undefined;
1511
- account?: {
1512
- status: import("./common.types").AccountStatus;
1513
- id: string;
1514
- createdAt: string | Date;
1515
- updatedAt: string | Date;
1516
- deletedAt: string | Date | null;
1517
- name: string;
1518
- managedBy: import("./common.types").ManagedByType | null;
1519
- platform: import("./common.types").Platform;
1520
- onboardingReviewerId: string | null;
1521
- onboardingReviewAt: Date | null;
1522
- allowPendingComplianceReview: boolean;
1523
- __entity?: string | undefined;
1524
- } | null | undefined;
1525
- issuer?: any;
1526
- }>>>;
1420
+ destinationBank: z.ZodNullable<z.ZodLazy<any>>;
1527
1421
  }, "strip", z.ZodTypeAny, {
1528
1422
  escrowAccount: {
1529
1423
  id: string;
@@ -1551,37 +1445,11 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
1551
1445
  } | null | undefined;
1552
1446
  accountNumber?: string | null | undefined;
1553
1447
  routingNumber?: string | null | undefined;
1554
- } | null;
1555
- destinationBank: {
1556
- id: string;
1557
- createdAt: string | Date;
1558
- updatedAt: string | Date;
1559
- deletedAt: string | Date | null;
1560
- accountId: string;
1561
- issuerId: string;
1562
- accountNumber: string;
1563
- accountHolder: string;
1564
- routingNumber: string;
1565
- nickName: string;
1566
- __entity?: string | undefined;
1567
- account?: {
1568
- status: import("./common.types").AccountStatus;
1569
- id: string;
1570
- createdAt: string | Date;
1571
- updatedAt: string | Date;
1572
- deletedAt: string | Date | null;
1573
- name: string;
1574
- managedBy: import("./common.types").ManagedByType | null;
1575
- platform: import("./common.types").Platform;
1576
- onboardingReviewerId: string | null;
1577
- onboardingReviewAt: Date | null;
1578
- allowPendingComplianceReview: boolean;
1579
- __entity?: string | undefined;
1580
- } | null | undefined;
1581
- issuer?: any;
1448
+ company?: string | null | undefined;
1582
1449
  } | null;
1583
1450
  offering?: any;
1584
1451
  issuer?: any;
1452
+ destinationBank?: any;
1585
1453
  }, {
1586
1454
  escrowAccount: {
1587
1455
  id: string;
@@ -1609,37 +1477,11 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
1609
1477
  } | null | undefined;
1610
1478
  accountNumber?: string | null | undefined;
1611
1479
  routingNumber?: string | null | undefined;
1612
- } | null;
1613
- destinationBank: {
1614
- id: string;
1615
- createdAt: string | Date;
1616
- updatedAt: string | Date;
1617
- deletedAt: string | Date | null;
1618
- accountId: string;
1619
- issuerId: string;
1620
- accountNumber: string;
1621
- accountHolder: string;
1622
- routingNumber: string;
1623
- nickName: string;
1624
- __entity?: string | undefined;
1625
- account?: {
1626
- status: import("./common.types").AccountStatus;
1627
- id: string;
1628
- createdAt: string | Date;
1629
- updatedAt: string | Date;
1630
- deletedAt: string | Date | null;
1631
- name: string;
1632
- managedBy: import("./common.types").ManagedByType | null;
1633
- platform: import("./common.types").Platform;
1634
- onboardingReviewerId: string | null;
1635
- onboardingReviewAt: Date | null;
1636
- allowPendingComplianceReview: boolean;
1637
- __entity?: string | undefined;
1638
- } | null | undefined;
1639
- issuer?: any;
1480
+ company?: string | null | undefined;
1640
1481
  } | null;
1641
1482
  offering?: any;
1642
1483
  issuer?: any;
1484
+ destinationBank?: any;
1643
1485
  }>;
1644
1486
  export type DisbursementPreviewContextZod = z.infer<typeof DisbursementPreviewContextZod>;
1645
1487
  export declare const DisbursementPreviewBalanceZod: z.ZodObject<{
@@ -1712,6 +1554,7 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
1712
1554
  updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1713
1555
  deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1714
1556
  } & {
1557
+ company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1715
1558
  accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1716
1559
  routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
1717
1560
  accountName: z.ZodString;
@@ -1785,6 +1628,7 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
1785
1628
  } | null | undefined;
1786
1629
  accountNumber?: string | null | undefined;
1787
1630
  routingNumber?: string | null | undefined;
1631
+ company?: string | null | undefined;
1788
1632
  }, {
1789
1633
  id: string;
1790
1634
  createdAt: string | Date;
@@ -1811,117 +1655,9 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
1811
1655
  } | null | undefined;
1812
1656
  accountNumber?: string | null | undefined;
1813
1657
  routingNumber?: string | null | undefined;
1658
+ company?: string | null | undefined;
1814
1659
  }>>>;
1815
- destinationBank: z.ZodNullable<z.ZodLazy<z.ZodObject<{
1816
- id: z.ZodString;
1817
- __entity: z.ZodOptional<z.ZodString>;
1818
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1819
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1820
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1821
- } & {
1822
- accountNumber: z.ZodString;
1823
- accountHolder: z.ZodString;
1824
- routingNumber: z.ZodString;
1825
- nickName: z.ZodString;
1826
- accountId: z.ZodString;
1827
- account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1828
- id: z.ZodString;
1829
- __entity: z.ZodOptional<z.ZodString>;
1830
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1831
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1832
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1833
- } & {
1834
- name: z.ZodString;
1835
- status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
1836
- managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
1837
- platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
1838
- onboardingReviewerId: z.ZodNullable<z.ZodString>;
1839
- onboardingReviewAt: z.ZodNullable<z.ZodDate>;
1840
- allowPendingComplianceReview: z.ZodBoolean;
1841
- }, "strip", z.ZodTypeAny, {
1842
- status: import("./common.types").AccountStatus;
1843
- id: string;
1844
- createdAt: string | Date;
1845
- updatedAt: string | Date;
1846
- deletedAt: string | Date | null;
1847
- name: string;
1848
- managedBy: import("./common.types").ManagedByType | null;
1849
- platform: import("./common.types").Platform;
1850
- onboardingReviewerId: string | null;
1851
- onboardingReviewAt: Date | null;
1852
- allowPendingComplianceReview: boolean;
1853
- __entity?: string | undefined;
1854
- }, {
1855
- status: import("./common.types").AccountStatus;
1856
- id: string;
1857
- createdAt: string | Date;
1858
- updatedAt: string | Date;
1859
- deletedAt: string | Date | null;
1860
- name: string;
1861
- managedBy: import("./common.types").ManagedByType | null;
1862
- platform: import("./common.types").Platform;
1863
- onboardingReviewerId: string | null;
1864
- onboardingReviewAt: Date | null;
1865
- allowPendingComplianceReview: boolean;
1866
- __entity?: string | undefined;
1867
- }>>>;
1868
- issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
1869
- issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
1870
- }, "strip", z.ZodTypeAny, {
1871
- id: string;
1872
- createdAt: string | Date;
1873
- updatedAt: string | Date;
1874
- deletedAt: string | Date | null;
1875
- accountId: string;
1876
- issuerId: string;
1877
- accountNumber: string;
1878
- accountHolder: string;
1879
- routingNumber: string;
1880
- nickName: string;
1881
- __entity?: string | undefined;
1882
- account?: {
1883
- status: import("./common.types").AccountStatus;
1884
- id: string;
1885
- createdAt: string | Date;
1886
- updatedAt: string | Date;
1887
- deletedAt: string | Date | null;
1888
- name: string;
1889
- managedBy: import("./common.types").ManagedByType | null;
1890
- platform: import("./common.types").Platform;
1891
- onboardingReviewerId: string | null;
1892
- onboardingReviewAt: Date | null;
1893
- allowPendingComplianceReview: boolean;
1894
- __entity?: string | undefined;
1895
- } | null | undefined;
1896
- issuer?: any;
1897
- }, {
1898
- id: string;
1899
- createdAt: string | Date;
1900
- updatedAt: string | Date;
1901
- deletedAt: string | Date | null;
1902
- accountId: string;
1903
- issuerId: string;
1904
- accountNumber: string;
1905
- accountHolder: string;
1906
- routingNumber: string;
1907
- nickName: string;
1908
- __entity?: string | undefined;
1909
- account?: {
1910
- status: import("./common.types").AccountStatus;
1911
- id: string;
1912
- createdAt: string | Date;
1913
- updatedAt: string | Date;
1914
- deletedAt: string | Date | null;
1915
- name: string;
1916
- managedBy: import("./common.types").ManagedByType | null;
1917
- platform: import("./common.types").Platform;
1918
- onboardingReviewerId: string | null;
1919
- onboardingReviewAt: Date | null;
1920
- allowPendingComplianceReview: boolean;
1921
- __entity?: string | undefined;
1922
- } | null | undefined;
1923
- issuer?: any;
1924
- }>>>;
1660
+ destinationBank: z.ZodNullable<z.ZodLazy<any>>;
1925
1661
  }, "strip", z.ZodTypeAny, {
1926
1662
  escrowAccount: {
1927
1663
  id: string;
@@ -1949,37 +1685,11 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
1949
1685
  } | null | undefined;
1950
1686
  accountNumber?: string | null | undefined;
1951
1687
  routingNumber?: string | null | undefined;
1952
- } | null;
1953
- destinationBank: {
1954
- id: string;
1955
- createdAt: string | Date;
1956
- updatedAt: string | Date;
1957
- deletedAt: string | Date | null;
1958
- accountId: string;
1959
- issuerId: string;
1960
- accountNumber: string;
1961
- accountHolder: string;
1962
- routingNumber: string;
1963
- nickName: string;
1964
- __entity?: string | undefined;
1965
- account?: {
1966
- status: import("./common.types").AccountStatus;
1967
- id: string;
1968
- createdAt: string | Date;
1969
- updatedAt: string | Date;
1970
- deletedAt: string | Date | null;
1971
- name: string;
1972
- managedBy: import("./common.types").ManagedByType | null;
1973
- platform: import("./common.types").Platform;
1974
- onboardingReviewerId: string | null;
1975
- onboardingReviewAt: Date | null;
1976
- allowPendingComplianceReview: boolean;
1977
- __entity?: string | undefined;
1978
- } | null | undefined;
1979
- issuer?: any;
1688
+ company?: string | null | undefined;
1980
1689
  } | null;
1981
1690
  offering?: any;
1982
1691
  issuer?: any;
1692
+ destinationBank?: any;
1983
1693
  }, {
1984
1694
  escrowAccount: {
1985
1695
  id: string;
@@ -2007,37 +1717,11 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
2007
1717
  } | null | undefined;
2008
1718
  accountNumber?: string | null | undefined;
2009
1719
  routingNumber?: string | null | undefined;
2010
- } | null;
2011
- destinationBank: {
2012
- id: string;
2013
- createdAt: string | Date;
2014
- updatedAt: string | Date;
2015
- deletedAt: string | Date | null;
2016
- accountId: string;
2017
- issuerId: string;
2018
- accountNumber: string;
2019
- accountHolder: string;
2020
- routingNumber: string;
2021
- nickName: string;
2022
- __entity?: string | undefined;
2023
- account?: {
2024
- status: import("./common.types").AccountStatus;
2025
- id: string;
2026
- createdAt: string | Date;
2027
- updatedAt: string | Date;
2028
- deletedAt: string | Date | null;
2029
- name: string;
2030
- managedBy: import("./common.types").ManagedByType | null;
2031
- platform: import("./common.types").Platform;
2032
- onboardingReviewerId: string | null;
2033
- onboardingReviewAt: Date | null;
2034
- allowPendingComplianceReview: boolean;
2035
- __entity?: string | undefined;
2036
- } | null | undefined;
2037
- issuer?: any;
1720
+ company?: string | null | undefined;
2038
1721
  } | null;
2039
1722
  offering?: any;
2040
1723
  issuer?: any;
1724
+ destinationBank?: any;
2041
1725
  }>;
2042
1726
  balance: z.ZodObject<{
2043
1727
  totalRaised: z.ZodNumber;
@@ -2127,37 +1811,11 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
2127
1811
  } | null | undefined;
2128
1812
  accountNumber?: string | null | undefined;
2129
1813
  routingNumber?: string | null | undefined;
2130
- } | null;
2131
- destinationBank: {
2132
- id: string;
2133
- createdAt: string | Date;
2134
- updatedAt: string | Date;
2135
- deletedAt: string | Date | null;
2136
- accountId: string;
2137
- issuerId: string;
2138
- accountNumber: string;
2139
- accountHolder: string;
2140
- routingNumber: string;
2141
- nickName: string;
2142
- __entity?: string | undefined;
2143
- account?: {
2144
- status: import("./common.types").AccountStatus;
2145
- id: string;
2146
- createdAt: string | Date;
2147
- updatedAt: string | Date;
2148
- deletedAt: string | Date | null;
2149
- name: string;
2150
- managedBy: import("./common.types").ManagedByType | null;
2151
- platform: import("./common.types").Platform;
2152
- onboardingReviewerId: string | null;
2153
- onboardingReviewAt: Date | null;
2154
- allowPendingComplianceReview: boolean;
2155
- __entity?: string | undefined;
2156
- } | null | undefined;
2157
- issuer?: any;
1814
+ company?: string | null | undefined;
2158
1815
  } | null;
2159
1816
  offering?: any;
2160
1817
  issuer?: any;
1818
+ destinationBank?: any;
2161
1819
  };
2162
1820
  balance: {
2163
1821
  pending: number;
@@ -2208,37 +1866,11 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
2208
1866
  } | null | undefined;
2209
1867
  accountNumber?: string | null | undefined;
2210
1868
  routingNumber?: string | null | undefined;
2211
- } | null;
2212
- destinationBank: {
2213
- id: string;
2214
- createdAt: string | Date;
2215
- updatedAt: string | Date;
2216
- deletedAt: string | Date | null;
2217
- accountId: string;
2218
- issuerId: string;
2219
- accountNumber: string;
2220
- accountHolder: string;
2221
- routingNumber: string;
2222
- nickName: string;
2223
- __entity?: string | undefined;
2224
- account?: {
2225
- status: import("./common.types").AccountStatus;
2226
- id: string;
2227
- createdAt: string | Date;
2228
- updatedAt: string | Date;
2229
- deletedAt: string | Date | null;
2230
- name: string;
2231
- managedBy: import("./common.types").ManagedByType | null;
2232
- platform: import("./common.types").Platform;
2233
- onboardingReviewerId: string | null;
2234
- onboardingReviewAt: Date | null;
2235
- allowPendingComplianceReview: boolean;
2236
- __entity?: string | undefined;
2237
- } | null | undefined;
2238
- issuer?: any;
1869
+ company?: string | null | undefined;
2239
1870
  } | null;
2240
1871
  offering?: any;
2241
1872
  issuer?: any;
1873
+ destinationBank?: any;
2242
1874
  };
2243
1875
  balance: {
2244
1876
  pending: number;
@@ -2341,3 +1973,592 @@ export declare const EligibleOfferingsFiltersZod: z.ZodObject<{
2341
1973
  search?: string | undefined;
2342
1974
  }>;
2343
1975
  export type EligibleOfferingsFiltersZod = z.infer<typeof EligibleOfferingsFiltersZod>;
1976
+ export declare enum DisbursementLifecycleStage {
1977
+ CREATED = "CREATED",
1978
+ ISSUER_REVIEW = "ISSUER_REVIEW",
1979
+ COMPLIANCE_REVIEW = "COMPLIANCE_REVIEW",
1980
+ ESCROW_REVIEW = "ESCROW_REVIEW",
1981
+ COMPLETE = "COMPLETE"
1982
+ }
1983
+ export declare const DisbursementDetailZod: z.ZodObject<{
1984
+ id: z.ZodString;
1985
+ __entity: z.ZodOptional<z.ZodString>;
1986
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1987
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
1988
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
1989
+ } & {
1990
+ name: z.ZodString;
1991
+ status: z.ZodNativeEnum<typeof DisbursementStatus>;
1992
+ requestedAmount: z.ZodNumber;
1993
+ netAmount: z.ZodNumber;
1994
+ complianceReview: z.ZodNativeEnum<typeof ComplianceReview>;
1995
+ approversCount: z.ZodNumber;
1996
+ disbursedAt: z.ZodNullable<z.ZodDate>;
1997
+ accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
1998
+ account: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
1999
+ id: z.ZodString;
2000
+ __entity: z.ZodOptional<z.ZodString>;
2001
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2002
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2003
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2004
+ } & {
2005
+ name: z.ZodString;
2006
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2007
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2008
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2009
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
2010
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2011
+ allowPendingComplianceReview: z.ZodBoolean;
2012
+ }, "strip", z.ZodTypeAny, {
2013
+ status: import("./common.types").AccountStatus;
2014
+ id: string;
2015
+ createdAt: string | Date;
2016
+ updatedAt: string | Date;
2017
+ deletedAt: string | Date | null;
2018
+ name: string;
2019
+ managedBy: import("./common.types").ManagedByType | null;
2020
+ platform: import("./common.types").Platform;
2021
+ onboardingReviewerId: string | null;
2022
+ onboardingReviewAt: Date | null;
2023
+ allowPendingComplianceReview: boolean;
2024
+ __entity?: string | undefined;
2025
+ }, {
2026
+ status: import("./common.types").AccountStatus;
2027
+ id: string;
2028
+ createdAt: string | Date;
2029
+ updatedAt: string | Date;
2030
+ deletedAt: string | Date | null;
2031
+ name: string;
2032
+ managedBy: import("./common.types").ManagedByType | null;
2033
+ platform: import("./common.types").Platform;
2034
+ onboardingReviewerId: string | null;
2035
+ onboardingReviewAt: Date | null;
2036
+ allowPendingComplianceReview: boolean;
2037
+ __entity?: string | undefined;
2038
+ }>>>>;
2039
+ offeringId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2040
+ offering: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2041
+ createdById: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2042
+ createdBy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2043
+ id: z.ZodString;
2044
+ __entity: z.ZodOptional<z.ZodString>;
2045
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2046
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2047
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2048
+ } & {
2049
+ userLoginId: z.ZodNullable<z.ZodString>;
2050
+ roleId: z.ZodNullable<z.ZodString>;
2051
+ inviteId: z.ZodNullable<z.ZodString>;
2052
+ accountId: z.ZodNullable<z.ZodString>;
2053
+ onboarding: z.ZodNullable<z.ZodString>;
2054
+ account: z.ZodOptional<z.ZodObject<{
2055
+ id: z.ZodString;
2056
+ __entity: z.ZodOptional<z.ZodString>;
2057
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2058
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2059
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2060
+ } & {
2061
+ name: z.ZodString;
2062
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2063
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2064
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2065
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
2066
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2067
+ allowPendingComplianceReview: z.ZodBoolean;
2068
+ }, "strip", z.ZodTypeAny, {
2069
+ status: import("./common.types").AccountStatus;
2070
+ id: string;
2071
+ createdAt: string | Date;
2072
+ updatedAt: string | Date;
2073
+ deletedAt: string | Date | null;
2074
+ name: string;
2075
+ managedBy: import("./common.types").ManagedByType | null;
2076
+ platform: import("./common.types").Platform;
2077
+ onboardingReviewerId: string | null;
2078
+ onboardingReviewAt: Date | null;
2079
+ allowPendingComplianceReview: boolean;
2080
+ __entity?: string | undefined;
2081
+ }, {
2082
+ status: import("./common.types").AccountStatus;
2083
+ id: string;
2084
+ createdAt: string | Date;
2085
+ updatedAt: string | Date;
2086
+ deletedAt: string | Date | null;
2087
+ name: string;
2088
+ managedBy: import("./common.types").ManagedByType | null;
2089
+ platform: import("./common.types").Platform;
2090
+ onboardingReviewerId: string | null;
2091
+ onboardingReviewAt: Date | null;
2092
+ allowPendingComplianceReview: boolean;
2093
+ __entity?: string | undefined;
2094
+ }>>;
2095
+ active: z.ZodBoolean;
2096
+ locked: z.ZodBoolean;
2097
+ userLogin: z.ZodObject<{
2098
+ id: z.ZodString;
2099
+ __entity: z.ZodOptional<z.ZodString>;
2100
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2101
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2102
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2103
+ } & {
2104
+ firstName: z.ZodString;
2105
+ lastName: z.ZodString;
2106
+ email: z.ZodString;
2107
+ provider: z.ZodString;
2108
+ lastLoginAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2109
+ loginCount: z.ZodNumber;
2110
+ }, "strip", z.ZodTypeAny, {
2111
+ id: string;
2112
+ createdAt: string | Date;
2113
+ updatedAt: string | Date;
2114
+ deletedAt: string | Date | null;
2115
+ firstName: string;
2116
+ lastName: string;
2117
+ email: string;
2118
+ provider: string;
2119
+ lastLoginAt: string | Date | null;
2120
+ loginCount: number;
2121
+ __entity?: string | undefined;
2122
+ }, {
2123
+ id: string;
2124
+ createdAt: string | Date;
2125
+ updatedAt: string | Date;
2126
+ deletedAt: string | Date | null;
2127
+ firstName: string;
2128
+ lastName: string;
2129
+ email: string;
2130
+ provider: string;
2131
+ lastLoginAt: string | Date | null;
2132
+ loginCount: number;
2133
+ __entity?: string | undefined;
2134
+ }>;
2135
+ }, "strip", z.ZodTypeAny, {
2136
+ id: string;
2137
+ createdAt: string | Date;
2138
+ updatedAt: string | Date;
2139
+ deletedAt: string | Date | null;
2140
+ active: boolean;
2141
+ inviteId: string | null;
2142
+ accountId: string | null;
2143
+ roleId: string | null;
2144
+ userLoginId: string | null;
2145
+ locked: boolean;
2146
+ onboarding: string | null;
2147
+ userLogin: {
2148
+ id: string;
2149
+ createdAt: string | Date;
2150
+ updatedAt: string | Date;
2151
+ deletedAt: string | Date | null;
2152
+ firstName: string;
2153
+ lastName: string;
2154
+ email: string;
2155
+ provider: string;
2156
+ lastLoginAt: string | Date | null;
2157
+ loginCount: number;
2158
+ __entity?: string | undefined;
2159
+ };
2160
+ __entity?: string | undefined;
2161
+ account?: {
2162
+ status: import("./common.types").AccountStatus;
2163
+ id: string;
2164
+ createdAt: string | Date;
2165
+ updatedAt: string | Date;
2166
+ deletedAt: string | Date | null;
2167
+ name: string;
2168
+ managedBy: import("./common.types").ManagedByType | null;
2169
+ platform: import("./common.types").Platform;
2170
+ onboardingReviewerId: string | null;
2171
+ onboardingReviewAt: Date | null;
2172
+ allowPendingComplianceReview: boolean;
2173
+ __entity?: string | undefined;
2174
+ } | undefined;
2175
+ }, {
2176
+ id: string;
2177
+ createdAt: string | Date;
2178
+ updatedAt: string | Date;
2179
+ deletedAt: string | Date | null;
2180
+ active: boolean;
2181
+ inviteId: string | null;
2182
+ accountId: string | null;
2183
+ roleId: string | null;
2184
+ userLoginId: string | null;
2185
+ locked: boolean;
2186
+ onboarding: string | null;
2187
+ userLogin: {
2188
+ id: string;
2189
+ createdAt: string | Date;
2190
+ updatedAt: string | Date;
2191
+ deletedAt: string | Date | null;
2192
+ firstName: string;
2193
+ lastName: string;
2194
+ email: string;
2195
+ provider: string;
2196
+ lastLoginAt: string | Date | null;
2197
+ loginCount: number;
2198
+ __entity?: string | undefined;
2199
+ };
2200
+ __entity?: string | undefined;
2201
+ account?: {
2202
+ status: import("./common.types").AccountStatus;
2203
+ id: string;
2204
+ createdAt: string | Date;
2205
+ updatedAt: string | Date;
2206
+ deletedAt: string | Date | null;
2207
+ name: string;
2208
+ managedBy: import("./common.types").ManagedByType | null;
2209
+ platform: import("./common.types").Platform;
2210
+ onboardingReviewerId: string | null;
2211
+ onboardingReviewAt: Date | null;
2212
+ allowPendingComplianceReview: boolean;
2213
+ __entity?: string | undefined;
2214
+ } | undefined;
2215
+ }>>>;
2216
+ reviewedById: z.ZodNullable<z.ZodString>;
2217
+ } & {
2218
+ userCanReview: z.ZodBoolean;
2219
+ signingUrl: z.ZodNullable<z.ZodString>;
2220
+ canViewDocument: z.ZodBoolean;
2221
+ documentUrl: z.ZodNullable<z.ZodString>;
2222
+ lifecycleStage: z.ZodNativeEnum<typeof DisbursementLifecycleStage>;
2223
+ issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2224
+ issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2225
+ escrowAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2226
+ id: z.ZodString;
2227
+ __entity: z.ZodOptional<z.ZodString>;
2228
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2229
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2230
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2231
+ } & {
2232
+ company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2233
+ accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2234
+ routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2235
+ accountName: z.ZodString;
2236
+ agentEmail: z.ZodString;
2237
+ agentName: z.ZodString;
2238
+ accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2239
+ account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2240
+ id: z.ZodString;
2241
+ __entity: z.ZodOptional<z.ZodString>;
2242
+ createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2243
+ updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2244
+ deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2245
+ } & {
2246
+ name: z.ZodString;
2247
+ status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2248
+ managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2249
+ platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2250
+ onboardingReviewerId: z.ZodNullable<z.ZodString>;
2251
+ onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2252
+ allowPendingComplianceReview: z.ZodBoolean;
2253
+ }, "strip", z.ZodTypeAny, {
2254
+ status: import("./common.types").AccountStatus;
2255
+ id: string;
2256
+ createdAt: string | Date;
2257
+ updatedAt: string | Date;
2258
+ deletedAt: string | Date | null;
2259
+ name: string;
2260
+ managedBy: import("./common.types").ManagedByType | null;
2261
+ platform: import("./common.types").Platform;
2262
+ onboardingReviewerId: string | null;
2263
+ onboardingReviewAt: Date | null;
2264
+ allowPendingComplianceReview: boolean;
2265
+ __entity?: string | undefined;
2266
+ }, {
2267
+ status: import("./common.types").AccountStatus;
2268
+ id: string;
2269
+ createdAt: string | Date;
2270
+ updatedAt: string | Date;
2271
+ deletedAt: string | Date | null;
2272
+ name: string;
2273
+ managedBy: import("./common.types").ManagedByType | null;
2274
+ platform: import("./common.types").Platform;
2275
+ onboardingReviewerId: string | null;
2276
+ onboardingReviewAt: Date | null;
2277
+ allowPendingComplianceReview: boolean;
2278
+ __entity?: string | undefined;
2279
+ }>>>;
2280
+ }, "strip", z.ZodTypeAny, {
2281
+ id: string;
2282
+ createdAt: string | Date;
2283
+ updatedAt: string | Date;
2284
+ deletedAt: string | Date | null;
2285
+ accountId: string;
2286
+ accountName: string;
2287
+ agentEmail: string;
2288
+ agentName: string;
2289
+ __entity?: string | undefined;
2290
+ account?: {
2291
+ status: import("./common.types").AccountStatus;
2292
+ id: string;
2293
+ createdAt: string | Date;
2294
+ updatedAt: string | Date;
2295
+ deletedAt: string | Date | null;
2296
+ name: string;
2297
+ managedBy: import("./common.types").ManagedByType | null;
2298
+ platform: import("./common.types").Platform;
2299
+ onboardingReviewerId: string | null;
2300
+ onboardingReviewAt: Date | null;
2301
+ allowPendingComplianceReview: boolean;
2302
+ __entity?: string | undefined;
2303
+ } | null | undefined;
2304
+ accountNumber?: string | null | undefined;
2305
+ routingNumber?: string | null | undefined;
2306
+ company?: string | null | undefined;
2307
+ }, {
2308
+ id: string;
2309
+ createdAt: string | Date;
2310
+ updatedAt: string | Date;
2311
+ deletedAt: string | Date | null;
2312
+ accountId: string;
2313
+ accountName: string;
2314
+ agentEmail: string;
2315
+ agentName: string;
2316
+ __entity?: string | undefined;
2317
+ account?: {
2318
+ status: import("./common.types").AccountStatus;
2319
+ id: string;
2320
+ createdAt: string | Date;
2321
+ updatedAt: string | Date;
2322
+ deletedAt: string | Date | null;
2323
+ name: string;
2324
+ managedBy: import("./common.types").ManagedByType | null;
2325
+ platform: import("./common.types").Platform;
2326
+ onboardingReviewerId: string | null;
2327
+ onboardingReviewAt: Date | null;
2328
+ allowPendingComplianceReview: boolean;
2329
+ __entity?: string | undefined;
2330
+ } | null | undefined;
2331
+ accountNumber?: string | null | undefined;
2332
+ routingNumber?: string | null | undefined;
2333
+ company?: string | null | undefined;
2334
+ }>>>>;
2335
+ disbursementAdjustments: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2336
+ tradeDisbursements: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2337
+ disbursementReviews: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2338
+ disbursementTransactions: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2339
+ }, "strip", z.ZodTypeAny, {
2340
+ status: DisbursementStatus;
2341
+ id: string;
2342
+ createdAt: string | Date;
2343
+ updatedAt: string | Date;
2344
+ deletedAt: string | Date | null;
2345
+ accountId: string;
2346
+ name: string;
2347
+ complianceReview: ComplianceReview;
2348
+ approversCount: number;
2349
+ offeringId: string;
2350
+ reviewedById: string | null;
2351
+ createdById: string;
2352
+ requestedAmount: number;
2353
+ netAmount: number;
2354
+ disbursedAt: Date | null;
2355
+ userCanReview: boolean;
2356
+ signingUrl: string | null;
2357
+ canViewDocument: boolean;
2358
+ documentUrl: string | null;
2359
+ lifecycleStage: DisbursementLifecycleStage;
2360
+ __entity?: string | undefined;
2361
+ account?: {
2362
+ status: import("./common.types").AccountStatus;
2363
+ id: string;
2364
+ createdAt: string | Date;
2365
+ updatedAt: string | Date;
2366
+ deletedAt: string | Date | null;
2367
+ name: string;
2368
+ managedBy: import("./common.types").ManagedByType | null;
2369
+ platform: import("./common.types").Platform;
2370
+ onboardingReviewerId: string | null;
2371
+ onboardingReviewAt: Date | null;
2372
+ allowPendingComplianceReview: boolean;
2373
+ __entity?: string | undefined;
2374
+ } | null | undefined;
2375
+ offering?: any;
2376
+ issuer?: any;
2377
+ escrowAccount?: {
2378
+ id: string;
2379
+ createdAt: string | Date;
2380
+ updatedAt: string | Date;
2381
+ deletedAt: string | Date | null;
2382
+ accountId: string;
2383
+ accountName: string;
2384
+ agentEmail: string;
2385
+ agentName: string;
2386
+ __entity?: string | undefined;
2387
+ account?: {
2388
+ status: import("./common.types").AccountStatus;
2389
+ id: string;
2390
+ createdAt: string | Date;
2391
+ updatedAt: string | Date;
2392
+ deletedAt: string | Date | null;
2393
+ name: string;
2394
+ managedBy: import("./common.types").ManagedByType | null;
2395
+ platform: import("./common.types").Platform;
2396
+ onboardingReviewerId: string | null;
2397
+ onboardingReviewAt: Date | null;
2398
+ allowPendingComplianceReview: boolean;
2399
+ __entity?: string | undefined;
2400
+ } | null | undefined;
2401
+ accountNumber?: string | null | undefined;
2402
+ routingNumber?: string | null | undefined;
2403
+ company?: string | null | undefined;
2404
+ } | null | undefined;
2405
+ tradeDisbursements?: any[] | undefined;
2406
+ createdBy?: {
2407
+ id: string;
2408
+ createdAt: string | Date;
2409
+ updatedAt: string | Date;
2410
+ deletedAt: string | Date | null;
2411
+ active: boolean;
2412
+ inviteId: string | null;
2413
+ accountId: string | null;
2414
+ roleId: string | null;
2415
+ userLoginId: string | null;
2416
+ locked: boolean;
2417
+ onboarding: string | null;
2418
+ userLogin: {
2419
+ id: string;
2420
+ createdAt: string | Date;
2421
+ updatedAt: string | Date;
2422
+ deletedAt: string | Date | null;
2423
+ firstName: string;
2424
+ lastName: string;
2425
+ email: string;
2426
+ provider: string;
2427
+ lastLoginAt: string | Date | null;
2428
+ loginCount: number;
2429
+ __entity?: string | undefined;
2430
+ };
2431
+ __entity?: string | undefined;
2432
+ account?: {
2433
+ status: import("./common.types").AccountStatus;
2434
+ id: string;
2435
+ createdAt: string | Date;
2436
+ updatedAt: string | Date;
2437
+ deletedAt: string | Date | null;
2438
+ name: string;
2439
+ managedBy: import("./common.types").ManagedByType | null;
2440
+ platform: import("./common.types").Platform;
2441
+ onboardingReviewerId: string | null;
2442
+ onboardingReviewAt: Date | null;
2443
+ allowPendingComplianceReview: boolean;
2444
+ __entity?: string | undefined;
2445
+ } | undefined;
2446
+ } | null | undefined;
2447
+ issuerBankAccount?: any;
2448
+ disbursementAdjustments?: any[] | undefined;
2449
+ disbursementReviews?: any[] | undefined;
2450
+ disbursementTransactions?: any[] | undefined;
2451
+ }, {
2452
+ status: DisbursementStatus;
2453
+ id: string;
2454
+ createdAt: string | Date;
2455
+ updatedAt: string | Date;
2456
+ deletedAt: string | Date | null;
2457
+ accountId: string;
2458
+ name: string;
2459
+ complianceReview: ComplianceReview;
2460
+ approversCount: number;
2461
+ offeringId: string;
2462
+ reviewedById: string | null;
2463
+ createdById: string;
2464
+ requestedAmount: number;
2465
+ netAmount: number;
2466
+ disbursedAt: Date | null;
2467
+ userCanReview: boolean;
2468
+ signingUrl: string | null;
2469
+ canViewDocument: boolean;
2470
+ documentUrl: string | null;
2471
+ lifecycleStage: DisbursementLifecycleStage;
2472
+ __entity?: string | undefined;
2473
+ account?: {
2474
+ status: import("./common.types").AccountStatus;
2475
+ id: string;
2476
+ createdAt: string | Date;
2477
+ updatedAt: string | Date;
2478
+ deletedAt: string | Date | null;
2479
+ name: string;
2480
+ managedBy: import("./common.types").ManagedByType | null;
2481
+ platform: import("./common.types").Platform;
2482
+ onboardingReviewerId: string | null;
2483
+ onboardingReviewAt: Date | null;
2484
+ allowPendingComplianceReview: boolean;
2485
+ __entity?: string | undefined;
2486
+ } | null | undefined;
2487
+ offering?: any;
2488
+ issuer?: any;
2489
+ escrowAccount?: {
2490
+ id: string;
2491
+ createdAt: string | Date;
2492
+ updatedAt: string | Date;
2493
+ deletedAt: string | Date | null;
2494
+ accountId: string;
2495
+ accountName: string;
2496
+ agentEmail: string;
2497
+ agentName: string;
2498
+ __entity?: string | undefined;
2499
+ account?: {
2500
+ status: import("./common.types").AccountStatus;
2501
+ id: string;
2502
+ createdAt: string | Date;
2503
+ updatedAt: string | Date;
2504
+ deletedAt: string | Date | null;
2505
+ name: string;
2506
+ managedBy: import("./common.types").ManagedByType | null;
2507
+ platform: import("./common.types").Platform;
2508
+ onboardingReviewerId: string | null;
2509
+ onboardingReviewAt: Date | null;
2510
+ allowPendingComplianceReview: boolean;
2511
+ __entity?: string | undefined;
2512
+ } | null | undefined;
2513
+ accountNumber?: string | null | undefined;
2514
+ routingNumber?: string | null | undefined;
2515
+ company?: string | null | undefined;
2516
+ } | null | undefined;
2517
+ tradeDisbursements?: any[] | undefined;
2518
+ createdBy?: {
2519
+ id: string;
2520
+ createdAt: string | Date;
2521
+ updatedAt: string | Date;
2522
+ deletedAt: string | Date | null;
2523
+ active: boolean;
2524
+ inviteId: string | null;
2525
+ accountId: string | null;
2526
+ roleId: string | null;
2527
+ userLoginId: string | null;
2528
+ locked: boolean;
2529
+ onboarding: string | null;
2530
+ userLogin: {
2531
+ id: string;
2532
+ createdAt: string | Date;
2533
+ updatedAt: string | Date;
2534
+ deletedAt: string | Date | null;
2535
+ firstName: string;
2536
+ lastName: string;
2537
+ email: string;
2538
+ provider: string;
2539
+ lastLoginAt: string | Date | null;
2540
+ loginCount: number;
2541
+ __entity?: string | undefined;
2542
+ };
2543
+ __entity?: string | undefined;
2544
+ account?: {
2545
+ status: import("./common.types").AccountStatus;
2546
+ id: string;
2547
+ createdAt: string | Date;
2548
+ updatedAt: string | Date;
2549
+ deletedAt: string | Date | null;
2550
+ name: string;
2551
+ managedBy: import("./common.types").ManagedByType | null;
2552
+ platform: import("./common.types").Platform;
2553
+ onboardingReviewerId: string | null;
2554
+ onboardingReviewAt: Date | null;
2555
+ allowPendingComplianceReview: boolean;
2556
+ __entity?: string | undefined;
2557
+ } | undefined;
2558
+ } | null | undefined;
2559
+ issuerBankAccount?: any;
2560
+ disbursementAdjustments?: any[] | undefined;
2561
+ disbursementReviews?: any[] | undefined;
2562
+ disbursementTransactions?: any[] | undefined;
2563
+ }>;
2564
+ export type DisbursementDetailZod = z.infer<typeof DisbursementDetailZod>;