@dalmore/api-contracts 0.0.0-dev.ada6a86 → 0.0.0-dev.ade8992

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 (73) hide show
  1. package/common/types/account-setting.types.d.ts +17 -66
  2. package/common/types/account-setting.types.js +2 -31
  3. package/common/types/account-setting.types.js.map +1 -1
  4. package/common/types/account.types.d.ts +32 -23
  5. package/common/types/account.types.js +1 -0
  6. package/common/types/account.types.js.map +1 -1
  7. package/common/types/activity.types.d.ts +35 -25
  8. package/common/types/activity.types.js +13 -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/bonus-tier.types.d.ts +11 -0
  14. package/common/types/bonus-tier.types.js +14 -7
  15. package/common/types/bonus-tier.types.js.map +1 -1
  16. package/common/types/cap-table.types.d.ts +15 -0
  17. package/common/types/cap-table.types.js +17 -0
  18. package/common/types/cap-table.types.js.map +1 -1
  19. package/common/types/common.types.d.ts +326 -5
  20. package/common/types/common.types.js +54 -1
  21. package/common/types/common.types.js.map +1 -1
  22. package/common/types/comply-advantage-api.types.d.ts +133 -466
  23. package/common/types/comply-advantage-api.types.js +24 -3
  24. package/common/types/comply-advantage-api.types.js.map +1 -1
  25. package/common/types/dashboard.types.d.ts +7 -7
  26. package/common/types/data-record.types.d.ts +4 -4
  27. package/common/types/disbursements.types.d.ts +106 -626
  28. package/common/types/disbursements.types.js +3 -0
  29. package/common/types/disbursements.types.js.map +1 -1
  30. package/common/types/escrow-account.types.d.ts +17 -0
  31. package/common/types/escrow-account.types.js +3 -0
  32. package/common/types/escrow-account.types.js.map +1 -1
  33. package/common/types/file.types.d.ts +35 -11
  34. package/common/types/file.types.js +11 -0
  35. package/common/types/file.types.js.map +1 -1
  36. package/common/types/index.d.ts +2 -0
  37. package/common/types/index.js +2 -0
  38. package/common/types/index.js.map +1 -1
  39. package/common/types/individuals.types.js +5 -2
  40. package/common/types/individuals.types.js.map +1 -1
  41. package/common/types/issuer-bank-account.types.d.ts +4 -276
  42. package/common/types/issuer-offering.types.d.ts +664 -5
  43. package/common/types/issuer-offering.types.js +128 -17
  44. package/common/types/issuer-offering.types.js.map +1 -1
  45. package/common/types/job-item.types.d.ts +14 -14
  46. package/common/types/note.types.d.ts +15 -15
  47. package/common/types/offering-submission.types.d.ts +198 -0
  48. package/common/types/offering-submission.types.js +16 -3
  49. package/common/types/offering-submission.types.js.map +1 -1
  50. package/common/types/offering.types.d.ts +323 -1
  51. package/common/types/offering.types.js +128 -11
  52. package/common/types/offering.types.js.map +1 -1
  53. package/common/types/reports.types.d.ts +345 -0
  54. package/common/types/reports.types.js +69 -0
  55. package/common/types/reports.types.js.map +1 -0
  56. package/common/types/signer.types.d.ts +8 -8
  57. package/common/types/site.types.d.ts +5 -0
  58. package/common/types/task.types.d.ts +22 -22
  59. package/common/types/trade.types.d.ts +2 -0
  60. package/common/types/trade.types.js +2 -0
  61. package/common/types/trade.types.js.map +1 -1
  62. package/common/types/transaction.types.d.ts +80 -1
  63. package/common/types/transaction.types.js +22 -2
  64. package/common/types/transaction.types.js.map +1 -1
  65. package/common/types/user.types.d.ts +97 -59
  66. package/common/types/user.types.js +5 -1
  67. package/common/types/user.types.js.map +1 -1
  68. package/contracts/clients/assets/index.d.ts +22 -0
  69. package/contracts/clients/files/index.d.ts +3 -3
  70. package/contracts/clients/files-public/index.d.ts +3 -3
  71. package/contracts/clients/index.d.ts +248 -10
  72. package/contracts/clients/offerings/index.d.ts +220 -4
  73. 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;
@@ -2585,118 +2217,11 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2585
2217
  } & {
2586
2218
  userCanReview: z.ZodBoolean;
2587
2219
  signingUrl: z.ZodNullable<z.ZodString>;
2220
+ canViewDocument: z.ZodBoolean;
2221
+ documentUrl: z.ZodNullable<z.ZodString>;
2588
2222
  lifecycleStage: z.ZodNativeEnum<typeof DisbursementLifecycleStage>;
2589
2223
  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
- }>>>>;
2224
+ issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
2700
2225
  escrowAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2701
2226
  id: z.ZodString;
2702
2227
  __entity: z.ZodOptional<z.ZodString>;
@@ -2704,6 +2229,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2704
2229
  updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
2705
2230
  deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
2706
2231
  } & {
2232
+ company: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2707
2233
  accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2708
2234
  routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2709
2235
  accountName: z.ZodString;
@@ -2777,6 +2303,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2777
2303
  } | null | undefined;
2778
2304
  accountNumber?: string | null | undefined;
2779
2305
  routingNumber?: string | null | undefined;
2306
+ company?: string | null | undefined;
2780
2307
  }, {
2781
2308
  id: string;
2782
2309
  createdAt: string | Date;
@@ -2803,6 +2330,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2803
2330
  } | null | undefined;
2804
2331
  accountNumber?: string | null | undefined;
2805
2332
  routingNumber?: string | null | undefined;
2333
+ company?: string | null | undefined;
2806
2334
  }>>>>;
2807
2335
  disbursementAdjustments: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
2808
2336
  tradeDisbursements: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
@@ -2826,6 +2354,8 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2826
2354
  disbursedAt: Date | null;
2827
2355
  userCanReview: boolean;
2828
2356
  signingUrl: string | null;
2357
+ canViewDocument: boolean;
2358
+ documentUrl: string | null;
2829
2359
  lifecycleStage: DisbursementLifecycleStage;
2830
2360
  __entity?: string | undefined;
2831
2361
  account?: {
@@ -2844,32 +2374,15 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2844
2374
  } | null | undefined;
2845
2375
  offering?: any;
2846
2376
  issuer?: any;
2847
- tradeDisbursements?: any[] | undefined;
2848
- createdBy?: {
2377
+ escrowAccount?: {
2849
2378
  id: string;
2850
2379
  createdAt: string | Date;
2851
2380
  updatedAt: string | Date;
2852
2381
  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
- };
2382
+ accountId: string;
2383
+ accountName: string;
2384
+ agentEmail: string;
2385
+ agentName: string;
2873
2386
  __entity?: string | undefined;
2874
2387
  account?: {
2875
2388
  status: import("./common.types").AccountStatus;
@@ -2884,45 +2397,37 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2884
2397
  onboardingReviewAt: Date | null;
2885
2398
  allowPendingComplianceReview: boolean;
2886
2399
  __entity?: string | undefined;
2887
- } | undefined;
2400
+ } | null | undefined;
2401
+ accountNumber?: string | null | undefined;
2402
+ routingNumber?: string | null | undefined;
2403
+ company?: string | null | undefined;
2888
2404
  } | null | undefined;
2889
- issuerBankAccount?: {
2405
+ tradeDisbursements?: any[] | undefined;
2406
+ createdBy?: {
2890
2407
  id: string;
2891
2408
  createdAt: string | Date;
2892
2409
  updatedAt: string | Date;
2893
2410
  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;
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: {
2903
2419
  id: string;
2904
2420
  createdAt: string | Date;
2905
2421
  updatedAt: string | Date;
2906
2422
  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;
2423
+ firstName: string;
2424
+ lastName: string;
2425
+ email: string;
2426
+ provider: string;
2427
+ lastLoginAt: string | Date | null;
2428
+ loginCount: number;
2913
2429
  __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;
2430
+ };
2926
2431
  __entity?: string | undefined;
2927
2432
  account?: {
2928
2433
  status: import("./common.types").AccountStatus;
@@ -2937,10 +2442,9 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2937
2442
  onboardingReviewAt: Date | null;
2938
2443
  allowPendingComplianceReview: boolean;
2939
2444
  __entity?: string | undefined;
2940
- } | null | undefined;
2941
- accountNumber?: string | null | undefined;
2942
- routingNumber?: string | null | undefined;
2445
+ } | undefined;
2943
2446
  } | null | undefined;
2447
+ issuerBankAccount?: any;
2944
2448
  disbursementAdjustments?: any[] | undefined;
2945
2449
  disbursementReviews?: any[] | undefined;
2946
2450
  disbursementTransactions?: any[] | undefined;
@@ -2962,6 +2466,8 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2962
2466
  disbursedAt: Date | null;
2963
2467
  userCanReview: boolean;
2964
2468
  signingUrl: string | null;
2469
+ canViewDocument: boolean;
2470
+ documentUrl: string | null;
2965
2471
  lifecycleStage: DisbursementLifecycleStage;
2966
2472
  __entity?: string | undefined;
2967
2473
  account?: {
@@ -2980,32 +2486,15 @@ export declare const DisbursementDetailZod: z.ZodObject<{
2980
2486
  } | null | undefined;
2981
2487
  offering?: any;
2982
2488
  issuer?: any;
2983
- tradeDisbursements?: any[] | undefined;
2984
- createdBy?: {
2489
+ escrowAccount?: {
2985
2490
  id: string;
2986
2491
  createdAt: string | Date;
2987
2492
  updatedAt: string | Date;
2988
2493
  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
- };
2494
+ accountId: string;
2495
+ accountName: string;
2496
+ agentEmail: string;
2497
+ agentName: string;
3009
2498
  __entity?: string | undefined;
3010
2499
  account?: {
3011
2500
  status: import("./common.types").AccountStatus;
@@ -3020,45 +2509,37 @@ export declare const DisbursementDetailZod: z.ZodObject<{
3020
2509
  onboardingReviewAt: Date | null;
3021
2510
  allowPendingComplianceReview: boolean;
3022
2511
  __entity?: string | undefined;
3023
- } | undefined;
2512
+ } | null | undefined;
2513
+ accountNumber?: string | null | undefined;
2514
+ routingNumber?: string | null | undefined;
2515
+ company?: string | null | undefined;
3024
2516
  } | null | undefined;
3025
- issuerBankAccount?: {
2517
+ tradeDisbursements?: any[] | undefined;
2518
+ createdBy?: {
3026
2519
  id: string;
3027
2520
  createdAt: string | Date;
3028
2521
  updatedAt: string | Date;
3029
2522
  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;
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: {
3039
2531
  id: string;
3040
2532
  createdAt: string | Date;
3041
2533
  updatedAt: string | Date;
3042
2534
  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;
2535
+ firstName: string;
2536
+ lastName: string;
2537
+ email: string;
2538
+ provider: string;
2539
+ lastLoginAt: string | Date | null;
2540
+ loginCount: number;
3049
2541
  __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;
2542
+ };
3062
2543
  __entity?: string | undefined;
3063
2544
  account?: {
3064
2545
  status: import("./common.types").AccountStatus;
@@ -3073,10 +2554,9 @@ export declare const DisbursementDetailZod: z.ZodObject<{
3073
2554
  onboardingReviewAt: Date | null;
3074
2555
  allowPendingComplianceReview: boolean;
3075
2556
  __entity?: string | undefined;
3076
- } | null | undefined;
3077
- accountNumber?: string | null | undefined;
3078
- routingNumber?: string | null | undefined;
2557
+ } | undefined;
3079
2558
  } | null | undefined;
2559
+ issuerBankAccount?: any;
3080
2560
  disbursementAdjustments?: any[] | undefined;
3081
2561
  disbursementReviews?: any[] | undefined;
3082
2562
  disbursementTransactions?: any[] | undefined;