@dalmore/api-contracts 0.0.0-dev.64aba85 → 0.0.0-dev.651765a

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 (45) hide show
  1. package/common/types/activity.types.d.ts +26 -24
  2. package/common/types/activity.types.js +4 -0
  3. package/common/types/activity.types.js.map +1 -1
  4. package/common/types/bonus-tier.types.js +1 -2
  5. package/common/types/bonus-tier.types.js.map +1 -1
  6. package/common/types/common.types.d.ts +11 -1
  7. package/common/types/common.types.js +6 -0
  8. package/common/types/common.types.js.map +1 -1
  9. package/common/types/dashboard.types.d.ts +7 -7
  10. package/common/types/disbursements.types.d.ts +100 -626
  11. package/common/types/escrow-account.types.d.ts +17 -0
  12. package/common/types/escrow-account.types.js +3 -0
  13. package/common/types/escrow-account.types.js.map +1 -1
  14. package/common/types/file.types.d.ts +14 -11
  15. package/common/types/file.types.js +2 -0
  16. package/common/types/file.types.js.map +1 -1
  17. package/common/types/index.d.ts +1 -0
  18. package/common/types/index.js +1 -0
  19. package/common/types/index.js.map +1 -1
  20. package/common/types/individuals.types.js +5 -2
  21. package/common/types/individuals.types.js.map +1 -1
  22. package/common/types/issuer-bank-account.types.d.ts +4 -276
  23. package/common/types/issuer-offering.types.d.ts +465 -6
  24. package/common/types/issuer-offering.types.js +69 -2
  25. package/common/types/issuer-offering.types.js.map +1 -1
  26. package/common/types/job-item.types.d.ts +14 -14
  27. package/common/types/note.types.d.ts +15 -15
  28. package/common/types/offering.types.d.ts +100 -1
  29. package/common/types/offering.types.js +74 -2
  30. package/common/types/offering.types.js.map +1 -1
  31. package/common/types/reports.types.d.ts +345 -0
  32. package/common/types/reports.types.js +69 -0
  33. package/common/types/reports.types.js.map +1 -0
  34. package/common/types/task.types.d.ts +22 -22
  35. package/common/types/trade.types.d.ts +2 -0
  36. package/common/types/trade.types.js +2 -0
  37. package/common/types/trade.types.js.map +1 -1
  38. package/common/types/user.types.d.ts +29 -0
  39. package/common/types/user.types.js +3 -0
  40. package/common/types/user.types.js.map +1 -1
  41. package/contracts/clients/files/index.d.ts +3 -3
  42. package/contracts/clients/files-public/index.d.ts +3 -3
  43. package/contracts/clients/index.d.ts +41 -11
  44. package/contracts/clients/offerings/index.d.ts +35 -5
  45. 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;
@@ -2172,54 +1830,25 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
2172
1830
  };
2173
1831
  contingency: {
2174
1832
  contingencyAmount: number;
2175
- contingencyPassed: boolean;
2176
- contingencyMessage: string | null;
2177
- };
2178
- }, {
2179
- amount: {
2180
- minAmount: number;
2181
- maxAmount: number;
2182
- defaultAmount: number;
2183
- };
2184
- context: {
2185
- escrowAccount: {
2186
- id: string;
2187
- createdAt: string | Date;
2188
- updatedAt: string | Date;
2189
- deletedAt: string | Date | null;
2190
- accountId: string;
2191
- accountName: string;
2192
- agentEmail: string;
2193
- agentName: string;
2194
- __entity?: string | undefined;
2195
- account?: {
2196
- status: import("./common.types").AccountStatus;
2197
- id: string;
2198
- createdAt: string | Date;
2199
- updatedAt: string | Date;
2200
- deletedAt: string | Date | null;
2201
- name: string;
2202
- managedBy: import("./common.types").ManagedByType | null;
2203
- platform: import("./common.types").Platform;
2204
- onboardingReviewerId: string | null;
2205
- onboardingReviewAt: Date | null;
2206
- allowPendingComplianceReview: boolean;
2207
- __entity?: string | undefined;
2208
- } | null | undefined;
2209
- accountNumber?: string | null | undefined;
2210
- routingNumber?: string | null | undefined;
2211
- } | null;
2212
- destinationBank: {
1833
+ contingencyPassed: boolean;
1834
+ contingencyMessage: string | null;
1835
+ };
1836
+ }, {
1837
+ amount: {
1838
+ minAmount: number;
1839
+ maxAmount: number;
1840
+ defaultAmount: number;
1841
+ };
1842
+ context: {
1843
+ escrowAccount: {
2213
1844
  id: string;
2214
1845
  createdAt: string | Date;
2215
1846
  updatedAt: string | Date;
2216
1847
  deletedAt: string | Date | null;
2217
1848
  accountId: string;
2218
- issuerId: string;
2219
- accountNumber: string;
2220
- accountHolder: string;
2221
- routingNumber: string;
2222
- nickName: string;
1849
+ accountName: string;
1850
+ agentEmail: string;
1851
+ agentName: string;
2223
1852
  __entity?: string | undefined;
2224
1853
  account?: {
2225
1854
  status: import("./common.types").AccountStatus;
@@ -2235,10 +1864,13 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
2235
1864
  allowPendingComplianceReview: boolean;
2236
1865
  __entity?: string | undefined;
2237
1866
  } | null | undefined;
2238
- issuer?: any;
1867
+ accountNumber?: string | null | undefined;
1868
+ routingNumber?: string | null | undefined;
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;
@@ -2589,116 +2221,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2589
2221
  documentUrl: z.ZodNullable<z.ZodString>;
2590
2222
  lifecycleStage: z.ZodNativeEnum<typeof DisbursementLifecycleStage>;
2591
2223
  issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2592
- issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2593
- id: z.ZodString;
2594
- __entity: z.ZodOptional<z.ZodString>;
2595
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2596
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2597
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2598
- } & {
2599
- accountNumber: z.ZodString;
2600
- accountHolder: z.ZodString;
2601
- routingNumber: z.ZodString;
2602
- nickName: z.ZodString;
2603
- accountId: z.ZodString;
2604
- account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2605
- id: z.ZodString;
2606
- __entity: z.ZodOptional<z.ZodString>;
2607
- createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2608
- updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2609
- deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2610
- } & {
2611
- name: z.ZodString;
2612
- status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
2613
- managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
2614
- platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
2615
- onboardingReviewerId: z.ZodNullable<z.ZodString>;
2616
- onboardingReviewAt: z.ZodNullable<z.ZodDate>;
2617
- allowPendingComplianceReview: z.ZodBoolean;
2618
- }, "strip", z.ZodTypeAny, {
2619
- status: import("./common.types").AccountStatus;
2620
- id: string;
2621
- createdAt: string | Date;
2622
- updatedAt: string | Date;
2623
- deletedAt: string | Date | null;
2624
- name: string;
2625
- managedBy: import("./common.types").ManagedByType | null;
2626
- platform: import("./common.types").Platform;
2627
- onboardingReviewerId: string | null;
2628
- onboardingReviewAt: Date | null;
2629
- allowPendingComplianceReview: boolean;
2630
- __entity?: string | undefined;
2631
- }, {
2632
- status: import("./common.types").AccountStatus;
2633
- id: string;
2634
- createdAt: string | Date;
2635
- updatedAt: string | Date;
2636
- deletedAt: string | Date | null;
2637
- name: string;
2638
- managedBy: import("./common.types").ManagedByType | null;
2639
- platform: import("./common.types").Platform;
2640
- onboardingReviewerId: string | null;
2641
- onboardingReviewAt: Date | null;
2642
- allowPendingComplianceReview: boolean;
2643
- __entity?: string | undefined;
2644
- }>>>;
2645
- issuerId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
2646
- issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2647
- }, "strip", z.ZodTypeAny, {
2648
- id: string;
2649
- createdAt: string | Date;
2650
- updatedAt: string | Date;
2651
- deletedAt: string | Date | null;
2652
- accountId: string;
2653
- issuerId: string;
2654
- accountNumber: string;
2655
- accountHolder: string;
2656
- routingNumber: string;
2657
- nickName: string;
2658
- __entity?: string | undefined;
2659
- account?: {
2660
- status: import("./common.types").AccountStatus;
2661
- id: string;
2662
- createdAt: string | Date;
2663
- updatedAt: string | Date;
2664
- deletedAt: string | Date | null;
2665
- name: string;
2666
- managedBy: import("./common.types").ManagedByType | null;
2667
- platform: import("./common.types").Platform;
2668
- onboardingReviewerId: string | null;
2669
- onboardingReviewAt: Date | null;
2670
- allowPendingComplianceReview: boolean;
2671
- __entity?: string | undefined;
2672
- } | null | undefined;
2673
- issuer?: any;
2674
- }, {
2675
- id: string;
2676
- createdAt: string | Date;
2677
- updatedAt: string | Date;
2678
- deletedAt: string | Date | null;
2679
- accountId: string;
2680
- issuerId: string;
2681
- accountNumber: string;
2682
- accountHolder: string;
2683
- routingNumber: string;
2684
- nickName: string;
2685
- __entity?: string | undefined;
2686
- account?: {
2687
- status: import("./common.types").AccountStatus;
2688
- id: string;
2689
- createdAt: string | Date;
2690
- updatedAt: string | Date;
2691
- deletedAt: string | Date | null;
2692
- name: string;
2693
- managedBy: import("./common.types").ManagedByType | null;
2694
- platform: import("./common.types").Platform;
2695
- onboardingReviewerId: string | null;
2696
- onboardingReviewAt: Date | null;
2697
- allowPendingComplianceReview: boolean;
2698
- __entity?: string | undefined;
2699
- } | null | undefined;
2700
- issuer?: any;
2701
- }>>>>;
2224
+ issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2702
2225
  escrowAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2703
2226
  id: z.ZodString;
2704
2227
  __entity: z.ZodOptional<z.ZodString>;
@@ -2706,6 +2229,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2706
2229
  updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2707
2230
  deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2708
2231
  } & {
2232
+ company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2709
2233
  accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2710
2234
  routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2711
2235
  accountName: z.ZodString;
@@ -2779,6 +2303,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2779
2303
  } | null | undefined;
2780
2304
  accountNumber?: string | null | undefined;
2781
2305
  routingNumber?: string | null | undefined;
2306
+ company?: string | null | undefined;
2782
2307
  }, {
2783
2308
  id: string;
2784
2309
  createdAt: string | Date;
@@ -2805,6 +2330,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2805
2330
  } | null | undefined;
2806
2331
  accountNumber?: string | null | undefined;
2807
2332
  routingNumber?: string | null | undefined;
2333
+ company?: string | null | undefined;
2808
2334
  }>>>>;
2809
2335
  disbursementAdjustments: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2810
2336
  tradeDisbursements: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
@@ -2848,32 +2374,15 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2848
2374
  } | null | undefined;
2849
2375
  offering?: any;
2850
2376
  issuer?: any;
2851
- tradeDisbursements?: any[] | undefined;
2852
- createdBy?: {
2377
+ escrowAccount?: {
2853
2378
  id: string;
2854
2379
  createdAt: string | Date;
2855
2380
  updatedAt: string | Date;
2856
2381
  deletedAt: string | Date | null;
2857
- active: boolean;
2858
- inviteId: string | null;
2859
- accountId: string | null;
2860
- roleId: string | null;
2861
- userLoginId: string | null;
2862
- locked: boolean;
2863
- onboarding: string | null;
2864
- userLogin: {
2865
- id: string;
2866
- createdAt: string | Date;
2867
- updatedAt: string | Date;
2868
- deletedAt: string | Date | null;
2869
- firstName: string;
2870
- lastName: string;
2871
- email: string;
2872
- provider: string;
2873
- lastLoginAt: string | Date | null;
2874
- loginCount: number;
2875
- __entity?: string | undefined;
2876
- };
2382
+ accountId: string;
2383
+ accountName: string;
2384
+ agentEmail: string;
2385
+ agentName: string;
2877
2386
  __entity?: string | undefined;
2878
2387
  account?: {
2879
2388
  status: import("./common.types").AccountStatus;
@@ -2888,45 +2397,37 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2888
2397
  onboardingReviewAt: Date | null;
2889
2398
  allowPendingComplianceReview: boolean;
2890
2399
  __entity?: string | undefined;
2891
- } | undefined;
2400
+ } | null | undefined;
2401
+ accountNumber?: string | null | undefined;
2402
+ routingNumber?: string | null | undefined;
2403
+ company?: string | null | undefined;
2892
2404
  } | null | undefined;
2893
- issuerBankAccount?: {
2405
+ tradeDisbursements?: any[] | undefined;
2406
+ createdBy?: {
2894
2407
  id: string;
2895
2408
  createdAt: string | Date;
2896
2409
  updatedAt: string | Date;
2897
2410
  deletedAt: string | Date | null;
2898
- accountId: string;
2899
- issuerId: string;
2900
- accountNumber: string;
2901
- accountHolder: string;
2902
- routingNumber: string;
2903
- nickName: string;
2904
- __entity?: string | undefined;
2905
- account?: {
2906
- status: import("./common.types").AccountStatus;
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: {
2907
2419
  id: string;
2908
2420
  createdAt: string | Date;
2909
2421
  updatedAt: string | Date;
2910
2422
  deletedAt: string | Date | null;
2911
- name: string;
2912
- managedBy: import("./common.types").ManagedByType | null;
2913
- platform: import("./common.types").Platform;
2914
- onboardingReviewerId: string | null;
2915
- onboardingReviewAt: Date | null;
2916
- allowPendingComplianceReview: boolean;
2423
+ firstName: string;
2424
+ lastName: string;
2425
+ email: string;
2426
+ provider: string;
2427
+ lastLoginAt: string | Date | null;
2428
+ loginCount: number;
2917
2429
  __entity?: string | undefined;
2918
- } | null | undefined;
2919
- issuer?: any;
2920
- } | null | undefined;
2921
- escrowAccount?: {
2922
- id: string;
2923
- createdAt: string | Date;
2924
- updatedAt: string | Date;
2925
- deletedAt: string | Date | null;
2926
- accountId: string;
2927
- accountName: string;
2928
- agentEmail: string;
2929
- agentName: string;
2430
+ };
2930
2431
  __entity?: string | undefined;
2931
2432
  account?: {
2932
2433
  status: import("./common.types").AccountStatus;
@@ -2941,10 +2442,9 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2941
2442
  onboardingReviewAt: Date | null;
2942
2443
  allowPendingComplianceReview: boolean;
2943
2444
  __entity?: string | undefined;
2944
- } | null | undefined;
2945
- accountNumber?: string | null | undefined;
2946
- routingNumber?: string | null | undefined;
2445
+ } | undefined;
2947
2446
  } | null | undefined;
2447
+ issuerBankAccount?: any;
2948
2448
  disbursementAdjustments?: any[] | undefined;
2949
2449
  disbursementReviews?: any[] | undefined;
2950
2450
  disbursementTransactions?: any[] | undefined;
@@ -2986,32 +2486,15 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2986
2486
  } | null | undefined;
2987
2487
  offering?: any;
2988
2488
  issuer?: any;
2989
- tradeDisbursements?: any[] | undefined;
2990
- createdBy?: {
2489
+ escrowAccount?: {
2991
2490
  id: string;
2992
2491
  createdAt: string | Date;
2993
2492
  updatedAt: string | Date;
2994
2493
  deletedAt: string | Date | null;
2995
- active: boolean;
2996
- inviteId: string | null;
2997
- accountId: string | null;
2998
- roleId: string | null;
2999
- userLoginId: string | null;
3000
- locked: boolean;
3001
- onboarding: string | null;
3002
- userLogin: {
3003
- id: string;
3004
- createdAt: string | Date;
3005
- updatedAt: string | Date;
3006
- deletedAt: string | Date | null;
3007
- firstName: string;
3008
- lastName: string;
3009
- email: string;
3010
- provider: string;
3011
- lastLoginAt: string | Date | null;
3012
- loginCount: number;
3013
- __entity?: string | undefined;
3014
- };
2494
+ accountId: string;
2495
+ accountName: string;
2496
+ agentEmail: string;
2497
+ agentName: string;
3015
2498
  __entity?: string | undefined;
3016
2499
  account?: {
3017
2500
  status: import("./common.types").AccountStatus;
@@ -3026,45 +2509,37 @@ export declare const DisbursementDetailZod: z.ZodObject<{
3026
2509
  onboardingReviewAt: Date | null;
3027
2510
  allowPendingComplianceReview: boolean;
3028
2511
  __entity?: string | undefined;
3029
- } | undefined;
2512
+ } | null | undefined;
2513
+ accountNumber?: string | null | undefined;
2514
+ routingNumber?: string | null | undefined;
2515
+ company?: string | null | undefined;
3030
2516
  } | null | undefined;
3031
- issuerBankAccount?: {
2517
+ tradeDisbursements?: any[] | undefined;
2518
+ createdBy?: {
3032
2519
  id: string;
3033
2520
  createdAt: string | Date;
3034
2521
  updatedAt: string | Date;
3035
2522
  deletedAt: string | Date | null;
3036
- accountId: string;
3037
- issuerId: string;
3038
- accountNumber: string;
3039
- accountHolder: string;
3040
- routingNumber: string;
3041
- nickName: string;
3042
- __entity?: string | undefined;
3043
- account?: {
3044
- status: import("./common.types").AccountStatus;
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: {
3045
2531
  id: string;
3046
2532
  createdAt: string | Date;
3047
2533
  updatedAt: string | Date;
3048
2534
  deletedAt: string | Date | null;
3049
- name: string;
3050
- managedBy: import("./common.types").ManagedByType | null;
3051
- platform: import("./common.types").Platform;
3052
- onboardingReviewerId: string | null;
3053
- onboardingReviewAt: Date | null;
3054
- allowPendingComplianceReview: boolean;
2535
+ firstName: string;
2536
+ lastName: string;
2537
+ email: string;
2538
+ provider: string;
2539
+ lastLoginAt: string | Date | null;
2540
+ loginCount: number;
3055
2541
  __entity?: string | undefined;
3056
- } | null | undefined;
3057
- issuer?: any;
3058
- } | null | undefined;
3059
- escrowAccount?: {
3060
- id: string;
3061
- createdAt: string | Date;
3062
- updatedAt: string | Date;
3063
- deletedAt: string | Date | null;
3064
- accountId: string;
3065
- accountName: string;
3066
- agentEmail: string;
3067
- agentName: string;
2542
+ };
3068
2543
  __entity?: string | undefined;
3069
2544
  account?: {
3070
2545
  status: import("./common.types").AccountStatus;
@@ -3079,10 +2554,9 @@ export declare const DisbursementDetailZod: z.ZodObject<{
3079
2554
  onboardingReviewAt: Date | null;
3080
2555
  allowPendingComplianceReview: boolean;
3081
2556
  __entity?: string | undefined;
3082
- } | null | undefined;
3083
- accountNumber?: string | null | undefined;
3084
- routingNumber?: string | null | undefined;
2557
+ } | undefined;
3085
2558
  } | null | undefined;
2559
+ issuerBankAccount?: any;
3086
2560
  disbursementAdjustments?: any[] | undefined;
3087
2561
  disbursementReviews?: any[] | undefined;
3088
2562
  disbursementTransactions?: any[] | undefined;