@dalmore/api-contracts 0.0.0-dev.64aba85 → 0.0.0-dev.6f65580
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/common/types/bonus-tier.types.js +1 -2
- package/common/types/bonus-tier.types.js.map +1 -1
- package/common/types/disbursements.types.d.ts +83 -626
- package/common/types/issuer-bank-account.types.d.ts +4 -276
- package/common/types/issuer-offering.types.d.ts +453 -1
- package/common/types/issuer-offering.types.js +67 -1
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/offering.types.d.ts +99 -0
- package/common/types/offering.types.js +72 -2
- package/common/types/offering.types.js.map +1 -1
- package/contracts/clients/index.d.ts +35 -0
- package/contracts/clients/offerings/index.d.ts +35 -0
- 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>;
|
|
@@ -1414,116 +1414,7 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
|
|
|
1414
1414
|
accountNumber?: string | null | undefined;
|
|
1415
1415
|
routingNumber?: string | null | undefined;
|
|
1416
1416
|
}>>>;
|
|
1417
|
-
destinationBank: z.ZodNullable<z.ZodLazy<
|
|
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
|
-
}>>>;
|
|
1417
|
+
destinationBank: z.ZodNullable<z.ZodLazy<any>>;
|
|
1527
1418
|
}, "strip", z.ZodTypeAny, {
|
|
1528
1419
|
escrowAccount: {
|
|
1529
1420
|
id: string;
|
|
@@ -1552,36 +1443,9 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
|
|
|
1552
1443
|
accountNumber?: string | null | undefined;
|
|
1553
1444
|
routingNumber?: string | null | undefined;
|
|
1554
1445
|
} | 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;
|
|
1582
|
-
} | null;
|
|
1583
1446
|
offering?: any;
|
|
1584
1447
|
issuer?: any;
|
|
1448
|
+
destinationBank?: any;
|
|
1585
1449
|
}, {
|
|
1586
1450
|
escrowAccount: {
|
|
1587
1451
|
id: string;
|
|
@@ -1610,36 +1474,9 @@ export declare const DisbursementPreviewContextZod: z.ZodObject<{
|
|
|
1610
1474
|
accountNumber?: string | null | undefined;
|
|
1611
1475
|
routingNumber?: string | null | undefined;
|
|
1612
1476
|
} | 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;
|
|
1640
|
-
} | null;
|
|
1641
1477
|
offering?: any;
|
|
1642
1478
|
issuer?: any;
|
|
1479
|
+
destinationBank?: any;
|
|
1643
1480
|
}>;
|
|
1644
1481
|
export type DisbursementPreviewContextZod = z.infer<typeof DisbursementPreviewContextZod>;
|
|
1645
1482
|
export declare const DisbursementPreviewBalanceZod: z.ZodObject<{
|
|
@@ -1812,116 +1649,7 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
|
|
|
1812
1649
|
accountNumber?: string | null | undefined;
|
|
1813
1650
|
routingNumber?: string | null | undefined;
|
|
1814
1651
|
}>>>;
|
|
1815
|
-
destinationBank: z.ZodNullable<z.ZodLazy<
|
|
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
|
-
}>>>;
|
|
1652
|
+
destinationBank: z.ZodNullable<z.ZodLazy<any>>;
|
|
1925
1653
|
}, "strip", z.ZodTypeAny, {
|
|
1926
1654
|
escrowAccount: {
|
|
1927
1655
|
id: string;
|
|
@@ -1950,36 +1678,9 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
|
|
|
1950
1678
|
accountNumber?: string | null | undefined;
|
|
1951
1679
|
routingNumber?: string | null | undefined;
|
|
1952
1680
|
} | 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;
|
|
1980
|
-
} | null;
|
|
1981
1681
|
offering?: any;
|
|
1982
1682
|
issuer?: any;
|
|
1683
|
+
destinationBank?: any;
|
|
1983
1684
|
}, {
|
|
1984
1685
|
escrowAccount: {
|
|
1985
1686
|
id: string;
|
|
@@ -2008,36 +1709,9 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
|
|
|
2008
1709
|
accountNumber?: string | null | undefined;
|
|
2009
1710
|
routingNumber?: string | null | undefined;
|
|
2010
1711
|
} | 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;
|
|
2038
|
-
} | null;
|
|
2039
1712
|
offering?: any;
|
|
2040
1713
|
issuer?: any;
|
|
1714
|
+
destinationBank?: any;
|
|
2041
1715
|
}>;
|
|
2042
1716
|
balance: z.ZodObject<{
|
|
2043
1717
|
totalRaised: z.ZodNumber;
|
|
@@ -2128,36 +1802,9 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
|
|
|
2128
1802
|
accountNumber?: string | null | undefined;
|
|
2129
1803
|
routingNumber?: string | null | undefined;
|
|
2130
1804
|
} | 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;
|
|
2158
|
-
} | null;
|
|
2159
1805
|
offering?: any;
|
|
2160
1806
|
issuer?: any;
|
|
1807
|
+
destinationBank?: any;
|
|
2161
1808
|
};
|
|
2162
1809
|
balance: {
|
|
2163
1810
|
pending: number;
|
|
@@ -2172,54 +1819,25 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
|
|
|
2172
1819
|
};
|
|
2173
1820
|
contingency: {
|
|
2174
1821
|
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: {
|
|
1822
|
+
contingencyPassed: boolean;
|
|
1823
|
+
contingencyMessage: string | null;
|
|
1824
|
+
};
|
|
1825
|
+
}, {
|
|
1826
|
+
amount: {
|
|
1827
|
+
minAmount: number;
|
|
1828
|
+
maxAmount: number;
|
|
1829
|
+
defaultAmount: number;
|
|
1830
|
+
};
|
|
1831
|
+
context: {
|
|
1832
|
+
escrowAccount: {
|
|
2213
1833
|
id: string;
|
|
2214
1834
|
createdAt: string | Date;
|
|
2215
1835
|
updatedAt: string | Date;
|
|
2216
1836
|
deletedAt: string | Date | null;
|
|
2217
1837
|
accountId: string;
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
routingNumber: string;
|
|
2222
|
-
nickName: string;
|
|
1838
|
+
accountName: string;
|
|
1839
|
+
agentEmail: string;
|
|
1840
|
+
agentName: string;
|
|
2223
1841
|
__entity?: string | undefined;
|
|
2224
1842
|
account?: {
|
|
2225
1843
|
status: import("./common.types").AccountStatus;
|
|
@@ -2235,10 +1853,12 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
|
|
|
2235
1853
|
allowPendingComplianceReview: boolean;
|
|
2236
1854
|
__entity?: string | undefined;
|
|
2237
1855
|
} | null | undefined;
|
|
2238
|
-
|
|
1856
|
+
accountNumber?: string | null | undefined;
|
|
1857
|
+
routingNumber?: string | null | undefined;
|
|
2239
1858
|
} | null;
|
|
2240
1859
|
offering?: any;
|
|
2241
1860
|
issuer?: any;
|
|
1861
|
+
destinationBank?: any;
|
|
2242
1862
|
};
|
|
2243
1863
|
balance: {
|
|
2244
1864
|
pending: number;
|
|
@@ -2589,116 +2209,7 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
2589
2209
|
documentUrl: z.ZodNullable<z.ZodString>;
|
|
2590
2210
|
lifecycleStage: z.ZodNativeEnum<typeof DisbursementLifecycleStage>;
|
|
2591
2211
|
issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
|
|
2592
|
-
issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<
|
|
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
|
-
}>>>>;
|
|
2212
|
+
issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
|
|
2702
2213
|
escrowAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
2703
2214
|
id: z.ZodString;
|
|
2704
2215
|
__entity: z.ZodOptional<z.ZodString>;
|
|
@@ -2848,32 +2359,15 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
2848
2359
|
} | null | undefined;
|
|
2849
2360
|
offering?: any;
|
|
2850
2361
|
issuer?: any;
|
|
2851
|
-
|
|
2852
|
-
createdBy?: {
|
|
2362
|
+
escrowAccount?: {
|
|
2853
2363
|
id: string;
|
|
2854
2364
|
createdAt: string | Date;
|
|
2855
2365
|
updatedAt: string | Date;
|
|
2856
2366
|
deletedAt: string | Date | null;
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
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
|
-
};
|
|
2367
|
+
accountId: string;
|
|
2368
|
+
accountName: string;
|
|
2369
|
+
agentEmail: string;
|
|
2370
|
+
agentName: string;
|
|
2877
2371
|
__entity?: string | undefined;
|
|
2878
2372
|
account?: {
|
|
2879
2373
|
status: import("./common.types").AccountStatus;
|
|
@@ -2888,45 +2382,36 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
2888
2382
|
onboardingReviewAt: Date | null;
|
|
2889
2383
|
allowPendingComplianceReview: boolean;
|
|
2890
2384
|
__entity?: string | undefined;
|
|
2891
|
-
} | undefined;
|
|
2385
|
+
} | null | undefined;
|
|
2386
|
+
accountNumber?: string | null | undefined;
|
|
2387
|
+
routingNumber?: string | null | undefined;
|
|
2892
2388
|
} | null | undefined;
|
|
2893
|
-
|
|
2389
|
+
tradeDisbursements?: any[] | undefined;
|
|
2390
|
+
createdBy?: {
|
|
2894
2391
|
id: string;
|
|
2895
2392
|
createdAt: string | Date;
|
|
2896
2393
|
updatedAt: string | Date;
|
|
2897
2394
|
deletedAt: string | Date | null;
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
status: import("./common.types").AccountStatus;
|
|
2395
|
+
active: boolean;
|
|
2396
|
+
inviteId: string | null;
|
|
2397
|
+
accountId: string | null;
|
|
2398
|
+
roleId: string | null;
|
|
2399
|
+
userLoginId: string | null;
|
|
2400
|
+
locked: boolean;
|
|
2401
|
+
onboarding: string | null;
|
|
2402
|
+
userLogin: {
|
|
2907
2403
|
id: string;
|
|
2908
2404
|
createdAt: string | Date;
|
|
2909
2405
|
updatedAt: string | Date;
|
|
2910
2406
|
deletedAt: string | Date | null;
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2407
|
+
firstName: string;
|
|
2408
|
+
lastName: string;
|
|
2409
|
+
email: string;
|
|
2410
|
+
provider: string;
|
|
2411
|
+
lastLoginAt: string | Date | null;
|
|
2412
|
+
loginCount: number;
|
|
2917
2413
|
__entity?: string | undefined;
|
|
2918
|
-
}
|
|
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;
|
|
2414
|
+
};
|
|
2930
2415
|
__entity?: string | undefined;
|
|
2931
2416
|
account?: {
|
|
2932
2417
|
status: import("./common.types").AccountStatus;
|
|
@@ -2941,10 +2426,9 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
2941
2426
|
onboardingReviewAt: Date | null;
|
|
2942
2427
|
allowPendingComplianceReview: boolean;
|
|
2943
2428
|
__entity?: string | undefined;
|
|
2944
|
-
} |
|
|
2945
|
-
accountNumber?: string | null | undefined;
|
|
2946
|
-
routingNumber?: string | null | undefined;
|
|
2429
|
+
} | undefined;
|
|
2947
2430
|
} | null | undefined;
|
|
2431
|
+
issuerBankAccount?: any;
|
|
2948
2432
|
disbursementAdjustments?: any[] | undefined;
|
|
2949
2433
|
disbursementReviews?: any[] | undefined;
|
|
2950
2434
|
disbursementTransactions?: any[] | undefined;
|
|
@@ -2986,32 +2470,15 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
2986
2470
|
} | null | undefined;
|
|
2987
2471
|
offering?: any;
|
|
2988
2472
|
issuer?: any;
|
|
2989
|
-
|
|
2990
|
-
createdBy?: {
|
|
2473
|
+
escrowAccount?: {
|
|
2991
2474
|
id: string;
|
|
2992
2475
|
createdAt: string | Date;
|
|
2993
2476
|
updatedAt: string | Date;
|
|
2994
2477
|
deletedAt: string | Date | null;
|
|
2995
|
-
|
|
2996
|
-
|
|
2997
|
-
|
|
2998
|
-
|
|
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
|
-
};
|
|
2478
|
+
accountId: string;
|
|
2479
|
+
accountName: string;
|
|
2480
|
+
agentEmail: string;
|
|
2481
|
+
agentName: string;
|
|
3015
2482
|
__entity?: string | undefined;
|
|
3016
2483
|
account?: {
|
|
3017
2484
|
status: import("./common.types").AccountStatus;
|
|
@@ -3026,45 +2493,36 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
3026
2493
|
onboardingReviewAt: Date | null;
|
|
3027
2494
|
allowPendingComplianceReview: boolean;
|
|
3028
2495
|
__entity?: string | undefined;
|
|
3029
|
-
} | undefined;
|
|
2496
|
+
} | null | undefined;
|
|
2497
|
+
accountNumber?: string | null | undefined;
|
|
2498
|
+
routingNumber?: string | null | undefined;
|
|
3030
2499
|
} | null | undefined;
|
|
3031
|
-
|
|
2500
|
+
tradeDisbursements?: any[] | undefined;
|
|
2501
|
+
createdBy?: {
|
|
3032
2502
|
id: string;
|
|
3033
2503
|
createdAt: string | Date;
|
|
3034
2504
|
updatedAt: string | Date;
|
|
3035
2505
|
deletedAt: string | Date | null;
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3039
|
-
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
status: import("./common.types").AccountStatus;
|
|
2506
|
+
active: boolean;
|
|
2507
|
+
inviteId: string | null;
|
|
2508
|
+
accountId: string | null;
|
|
2509
|
+
roleId: string | null;
|
|
2510
|
+
userLoginId: string | null;
|
|
2511
|
+
locked: boolean;
|
|
2512
|
+
onboarding: string | null;
|
|
2513
|
+
userLogin: {
|
|
3045
2514
|
id: string;
|
|
3046
2515
|
createdAt: string | Date;
|
|
3047
2516
|
updatedAt: string | Date;
|
|
3048
2517
|
deletedAt: string | Date | null;
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
2518
|
+
firstName: string;
|
|
2519
|
+
lastName: string;
|
|
2520
|
+
email: string;
|
|
2521
|
+
provider: string;
|
|
2522
|
+
lastLoginAt: string | Date | null;
|
|
2523
|
+
loginCount: number;
|
|
3055
2524
|
__entity?: string | undefined;
|
|
3056
|
-
}
|
|
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;
|
|
2525
|
+
};
|
|
3068
2526
|
__entity?: string | undefined;
|
|
3069
2527
|
account?: {
|
|
3070
2528
|
status: import("./common.types").AccountStatus;
|
|
@@ -3079,10 +2537,9 @@ export declare const DisbursementDetailZod: z.ZodObject<{
|
|
|
3079
2537
|
onboardingReviewAt: Date | null;
|
|
3080
2538
|
allowPendingComplianceReview: boolean;
|
|
3081
2539
|
__entity?: string | undefined;
|
|
3082
|
-
} |
|
|
3083
|
-
accountNumber?: string | null | undefined;
|
|
3084
|
-
routingNumber?: string | null | undefined;
|
|
2540
|
+
} | undefined;
|
|
3085
2541
|
} | null | undefined;
|
|
2542
|
+
issuerBankAccount?: any;
|
|
3086
2543
|
disbursementAdjustments?: any[] | undefined;
|
|
3087
2544
|
disbursementReviews?: any[] | undefined;
|
|
3088
2545
|
disbursementTransactions?: any[] | undefined;
|