@dalmore/api-contracts 0.0.0-dev.685c0b3 → 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/account-setting.types.d.ts +64 -0
- package/common/types/account-setting.types.js +8 -0
- package/common/types/account-setting.types.js.map +1 -1
- package/common/types/account.types.d.ts +38 -2
- package/common/types/account.types.js +3 -0
- package/common/types/account.types.js.map +1 -1
- package/common/types/activity.types.d.ts +25 -24
- package/common/types/activity.types.js +2 -0
- package/common/types/activity.types.js.map +1 -1
- package/common/types/asset.types.d.ts +298 -0
- package/common/types/asset.types.js +191 -42
- package/common/types/asset.types.js.map +1 -1
- package/common/types/auth.types.d.ts +1 -1
- package/common/types/auth.types.js +1 -1
- package/common/types/auth.types.js.map +1 -1
- package/common/types/bonus-tier.types.d.ts +45 -4
- package/common/types/bonus-tier.types.js +14 -7
- package/common/types/bonus-tier.types.js.map +1 -1
- package/common/types/cap-table.types.d.ts +8 -8
- package/common/types/common.types.d.ts +19 -2
- package/common/types/common.types.js +12 -0
- package/common/types/common.types.js.map +1 -1
- package/common/types/comply-advantage-api.types.d.ts +133 -466
- package/common/types/comply-advantage-api.types.js +24 -3
- package/common/types/comply-advantage-api.types.js.map +1 -1
- package/common/types/dashboard.types.d.ts +7 -7
- package/common/types/data-record.types.d.ts +4 -4
- package/common/types/disbursements.types.d.ts +596 -392
- package/common/types/disbursements.types.js +37 -0
- package/common/types/disbursements.types.js.map +1 -1
- package/common/types/file.types.d.ts +9 -9
- package/common/types/investor-account.types.d.ts +4 -4
- package/common/types/issuer-bank-account.types.d.ts +4 -276
- package/common/types/issuer-offering.types.d.ts +719 -3
- package/common/types/issuer-offering.types.js +139 -4
- package/common/types/issuer-offering.types.js.map +1 -1
- package/common/types/job-item.types.d.ts +14 -14
- package/common/types/note.types.d.ts +15 -15
- package/common/types/offering.types.d.ts +320 -1
- package/common/types/offering.types.js +150 -11
- package/common/types/offering.types.js.map +1 -1
- package/common/types/signer.types.d.ts +23 -11
- package/common/types/signer.types.js +16 -1
- package/common/types/signer.types.js.map +1 -1
- package/common/types/site.types.d.ts +20 -0
- package/common/types/task.types.d.ts +22 -22
- package/common/types/trade-line-item.types.d.ts +18 -1
- package/common/types/trade-line-item.types.js +12 -1
- package/common/types/trade-line-item.types.js.map +1 -1
- package/common/types/trade.types.d.ts +62 -45
- package/common/types/trade.types.js +11 -4
- package/common/types/trade.types.js.map +1 -1
- package/common/types/transaction.types.d.ts +80 -1
- package/common/types/transaction.types.js +22 -2
- package/common/types/transaction.types.js.map +1 -1
- package/common/types/user.types.d.ts +5 -0
- package/common/types/user.types.js +1 -0
- package/common/types/user.types.js.map +1 -1
- package/contracts/clients/assets/index.d.ts +88 -0
- package/contracts/clients/files/index.d.ts +3 -3
- package/contracts/clients/files-public/index.d.ts +3 -3
- package/contracts/clients/index.d.ts +355 -10
- package/contracts/clients/offerings/index.d.ts +252 -1
- package/contracts/clients/trades/index.d.ts +9 -3
- 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;
|
|
@@ -2209,36 +1856,9 @@ export declare const DisbursementPreviewZod: z.ZodObject<{
|
|
|
2209
1856
|
accountNumber?: string | null | undefined;
|
|
2210
1857
|
routingNumber?: string | null | undefined;
|
|
2211
1858
|
} | null;
|
|
2212
|
-
destinationBank: {
|
|
2213
|
-
id: string;
|
|
2214
|
-
createdAt: string | Date;
|
|
2215
|
-
updatedAt: string | Date;
|
|
2216
|
-
deletedAt: string | Date | null;
|
|
2217
|
-
accountId: string;
|
|
2218
|
-
issuerId: string;
|
|
2219
|
-
accountNumber: string;
|
|
2220
|
-
accountHolder: string;
|
|
2221
|
-
routingNumber: string;
|
|
2222
|
-
nickName: string;
|
|
2223
|
-
__entity?: string | undefined;
|
|
2224
|
-
account?: {
|
|
2225
|
-
status: import("./common.types").AccountStatus;
|
|
2226
|
-
id: string;
|
|
2227
|
-
createdAt: string | Date;
|
|
2228
|
-
updatedAt: string | Date;
|
|
2229
|
-
deletedAt: string | Date | null;
|
|
2230
|
-
name: string;
|
|
2231
|
-
managedBy: import("./common.types").ManagedByType | null;
|
|
2232
|
-
platform: import("./common.types").Platform;
|
|
2233
|
-
onboardingReviewerId: string | null;
|
|
2234
|
-
onboardingReviewAt: Date | null;
|
|
2235
|
-
allowPendingComplianceReview: boolean;
|
|
2236
|
-
__entity?: string | undefined;
|
|
2237
|
-
} | null | undefined;
|
|
2238
|
-
issuer?: any;
|
|
2239
|
-
} | null;
|
|
2240
1859
|
offering?: any;
|
|
2241
1860
|
issuer?: any;
|
|
1861
|
+
destinationBank?: any;
|
|
2242
1862
|
};
|
|
2243
1863
|
balance: {
|
|
2244
1864
|
pending: number;
|
|
@@ -2341,3 +1961,587 @@ export declare const EligibleOfferingsFiltersZod: z.ZodObject<{
|
|
|
2341
1961
|
search?: string | undefined;
|
|
2342
1962
|
}>;
|
|
2343
1963
|
export type EligibleOfferingsFiltersZod = z.infer<typeof EligibleOfferingsFiltersZod>;
|
|
1964
|
+
export declare enum DisbursementLifecycleStage {
|
|
1965
|
+
CREATED = "CREATED",
|
|
1966
|
+
ISSUER_REVIEW = "ISSUER_REVIEW",
|
|
1967
|
+
COMPLIANCE_REVIEW = "COMPLIANCE_REVIEW",
|
|
1968
|
+
ESCROW_REVIEW = "ESCROW_REVIEW",
|
|
1969
|
+
COMPLETE = "COMPLETE"
|
|
1970
|
+
}
|
|
1971
|
+
export declare const DisbursementDetailZod: z.ZodObject<{
|
|
1972
|
+
id: z.ZodString;
|
|
1973
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
1974
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
1975
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
1976
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
1977
|
+
} & {
|
|
1978
|
+
name: z.ZodString;
|
|
1979
|
+
status: z.ZodNativeEnum<typeof DisbursementStatus>;
|
|
1980
|
+
requestedAmount: z.ZodNumber;
|
|
1981
|
+
netAmount: z.ZodNumber;
|
|
1982
|
+
complianceReview: z.ZodNativeEnum<typeof ComplianceReview>;
|
|
1983
|
+
approversCount: z.ZodNumber;
|
|
1984
|
+
disbursedAt: z.ZodNullable<z.ZodDate>;
|
|
1985
|
+
accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
1986
|
+
account: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
1987
|
+
id: z.ZodString;
|
|
1988
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
1989
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
1990
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
1991
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
1992
|
+
} & {
|
|
1993
|
+
name: z.ZodString;
|
|
1994
|
+
status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
|
|
1995
|
+
managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
|
|
1996
|
+
platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
|
|
1997
|
+
onboardingReviewerId: z.ZodNullable<z.ZodString>;
|
|
1998
|
+
onboardingReviewAt: z.ZodNullable<z.ZodDate>;
|
|
1999
|
+
allowPendingComplianceReview: z.ZodBoolean;
|
|
2000
|
+
}, "strip", z.ZodTypeAny, {
|
|
2001
|
+
status: import("./common.types").AccountStatus;
|
|
2002
|
+
id: string;
|
|
2003
|
+
createdAt: string | Date;
|
|
2004
|
+
updatedAt: string | Date;
|
|
2005
|
+
deletedAt: string | Date | null;
|
|
2006
|
+
name: string;
|
|
2007
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2008
|
+
platform: import("./common.types").Platform;
|
|
2009
|
+
onboardingReviewerId: string | null;
|
|
2010
|
+
onboardingReviewAt: Date | null;
|
|
2011
|
+
allowPendingComplianceReview: boolean;
|
|
2012
|
+
__entity?: string | undefined;
|
|
2013
|
+
}, {
|
|
2014
|
+
status: import("./common.types").AccountStatus;
|
|
2015
|
+
id: string;
|
|
2016
|
+
createdAt: string | Date;
|
|
2017
|
+
updatedAt: string | Date;
|
|
2018
|
+
deletedAt: string | Date | null;
|
|
2019
|
+
name: string;
|
|
2020
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2021
|
+
platform: import("./common.types").Platform;
|
|
2022
|
+
onboardingReviewerId: string | null;
|
|
2023
|
+
onboardingReviewAt: Date | null;
|
|
2024
|
+
allowPendingComplianceReview: boolean;
|
|
2025
|
+
__entity?: string | undefined;
|
|
2026
|
+
}>>>>;
|
|
2027
|
+
offeringId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
2028
|
+
offering: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
|
|
2029
|
+
createdById: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
2030
|
+
createdBy: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2031
|
+
id: z.ZodString;
|
|
2032
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2033
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2034
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2035
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2036
|
+
} & {
|
|
2037
|
+
userLoginId: z.ZodNullable<z.ZodString>;
|
|
2038
|
+
roleId: z.ZodNullable<z.ZodString>;
|
|
2039
|
+
inviteId: z.ZodNullable<z.ZodString>;
|
|
2040
|
+
accountId: z.ZodNullable<z.ZodString>;
|
|
2041
|
+
onboarding: z.ZodNullable<z.ZodString>;
|
|
2042
|
+
account: z.ZodOptional<z.ZodObject<{
|
|
2043
|
+
id: z.ZodString;
|
|
2044
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2045
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2046
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2047
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2048
|
+
} & {
|
|
2049
|
+
name: z.ZodString;
|
|
2050
|
+
status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
|
|
2051
|
+
managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
|
|
2052
|
+
platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
|
|
2053
|
+
onboardingReviewerId: z.ZodNullable<z.ZodString>;
|
|
2054
|
+
onboardingReviewAt: z.ZodNullable<z.ZodDate>;
|
|
2055
|
+
allowPendingComplianceReview: z.ZodBoolean;
|
|
2056
|
+
}, "strip", z.ZodTypeAny, {
|
|
2057
|
+
status: import("./common.types").AccountStatus;
|
|
2058
|
+
id: string;
|
|
2059
|
+
createdAt: string | Date;
|
|
2060
|
+
updatedAt: string | Date;
|
|
2061
|
+
deletedAt: string | Date | null;
|
|
2062
|
+
name: string;
|
|
2063
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2064
|
+
platform: import("./common.types").Platform;
|
|
2065
|
+
onboardingReviewerId: string | null;
|
|
2066
|
+
onboardingReviewAt: Date | null;
|
|
2067
|
+
allowPendingComplianceReview: boolean;
|
|
2068
|
+
__entity?: string | undefined;
|
|
2069
|
+
}, {
|
|
2070
|
+
status: import("./common.types").AccountStatus;
|
|
2071
|
+
id: string;
|
|
2072
|
+
createdAt: string | Date;
|
|
2073
|
+
updatedAt: string | Date;
|
|
2074
|
+
deletedAt: string | Date | null;
|
|
2075
|
+
name: string;
|
|
2076
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2077
|
+
platform: import("./common.types").Platform;
|
|
2078
|
+
onboardingReviewerId: string | null;
|
|
2079
|
+
onboardingReviewAt: Date | null;
|
|
2080
|
+
allowPendingComplianceReview: boolean;
|
|
2081
|
+
__entity?: string | undefined;
|
|
2082
|
+
}>>;
|
|
2083
|
+
active: z.ZodBoolean;
|
|
2084
|
+
locked: z.ZodBoolean;
|
|
2085
|
+
userLogin: z.ZodObject<{
|
|
2086
|
+
id: z.ZodString;
|
|
2087
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2088
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2089
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2090
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2091
|
+
} & {
|
|
2092
|
+
firstName: z.ZodString;
|
|
2093
|
+
lastName: z.ZodString;
|
|
2094
|
+
email: z.ZodString;
|
|
2095
|
+
provider: z.ZodString;
|
|
2096
|
+
lastLoginAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2097
|
+
loginCount: z.ZodNumber;
|
|
2098
|
+
}, "strip", z.ZodTypeAny, {
|
|
2099
|
+
id: string;
|
|
2100
|
+
createdAt: string | Date;
|
|
2101
|
+
updatedAt: string | Date;
|
|
2102
|
+
deletedAt: string | Date | null;
|
|
2103
|
+
firstName: string;
|
|
2104
|
+
lastName: string;
|
|
2105
|
+
email: string;
|
|
2106
|
+
provider: string;
|
|
2107
|
+
lastLoginAt: string | Date | null;
|
|
2108
|
+
loginCount: number;
|
|
2109
|
+
__entity?: string | undefined;
|
|
2110
|
+
}, {
|
|
2111
|
+
id: string;
|
|
2112
|
+
createdAt: string | Date;
|
|
2113
|
+
updatedAt: string | Date;
|
|
2114
|
+
deletedAt: string | Date | null;
|
|
2115
|
+
firstName: string;
|
|
2116
|
+
lastName: string;
|
|
2117
|
+
email: string;
|
|
2118
|
+
provider: string;
|
|
2119
|
+
lastLoginAt: string | Date | null;
|
|
2120
|
+
loginCount: number;
|
|
2121
|
+
__entity?: string | undefined;
|
|
2122
|
+
}>;
|
|
2123
|
+
}, "strip", z.ZodTypeAny, {
|
|
2124
|
+
id: string;
|
|
2125
|
+
createdAt: string | Date;
|
|
2126
|
+
updatedAt: string | Date;
|
|
2127
|
+
deletedAt: string | Date | null;
|
|
2128
|
+
active: boolean;
|
|
2129
|
+
inviteId: string | null;
|
|
2130
|
+
accountId: string | null;
|
|
2131
|
+
roleId: string | null;
|
|
2132
|
+
userLoginId: string | null;
|
|
2133
|
+
locked: boolean;
|
|
2134
|
+
onboarding: string | null;
|
|
2135
|
+
userLogin: {
|
|
2136
|
+
id: string;
|
|
2137
|
+
createdAt: string | Date;
|
|
2138
|
+
updatedAt: string | Date;
|
|
2139
|
+
deletedAt: string | Date | null;
|
|
2140
|
+
firstName: string;
|
|
2141
|
+
lastName: string;
|
|
2142
|
+
email: string;
|
|
2143
|
+
provider: string;
|
|
2144
|
+
lastLoginAt: string | Date | null;
|
|
2145
|
+
loginCount: number;
|
|
2146
|
+
__entity?: string | undefined;
|
|
2147
|
+
};
|
|
2148
|
+
__entity?: string | undefined;
|
|
2149
|
+
account?: {
|
|
2150
|
+
status: import("./common.types").AccountStatus;
|
|
2151
|
+
id: string;
|
|
2152
|
+
createdAt: string | Date;
|
|
2153
|
+
updatedAt: string | Date;
|
|
2154
|
+
deletedAt: string | Date | null;
|
|
2155
|
+
name: string;
|
|
2156
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2157
|
+
platform: import("./common.types").Platform;
|
|
2158
|
+
onboardingReviewerId: string | null;
|
|
2159
|
+
onboardingReviewAt: Date | null;
|
|
2160
|
+
allowPendingComplianceReview: boolean;
|
|
2161
|
+
__entity?: string | undefined;
|
|
2162
|
+
} | undefined;
|
|
2163
|
+
}, {
|
|
2164
|
+
id: string;
|
|
2165
|
+
createdAt: string | Date;
|
|
2166
|
+
updatedAt: string | Date;
|
|
2167
|
+
deletedAt: string | Date | null;
|
|
2168
|
+
active: boolean;
|
|
2169
|
+
inviteId: string | null;
|
|
2170
|
+
accountId: string | null;
|
|
2171
|
+
roleId: string | null;
|
|
2172
|
+
userLoginId: string | null;
|
|
2173
|
+
locked: boolean;
|
|
2174
|
+
onboarding: string | null;
|
|
2175
|
+
userLogin: {
|
|
2176
|
+
id: string;
|
|
2177
|
+
createdAt: string | Date;
|
|
2178
|
+
updatedAt: string | Date;
|
|
2179
|
+
deletedAt: string | Date | null;
|
|
2180
|
+
firstName: string;
|
|
2181
|
+
lastName: string;
|
|
2182
|
+
email: string;
|
|
2183
|
+
provider: string;
|
|
2184
|
+
lastLoginAt: string | Date | null;
|
|
2185
|
+
loginCount: number;
|
|
2186
|
+
__entity?: string | undefined;
|
|
2187
|
+
};
|
|
2188
|
+
__entity?: string | undefined;
|
|
2189
|
+
account?: {
|
|
2190
|
+
status: import("./common.types").AccountStatus;
|
|
2191
|
+
id: string;
|
|
2192
|
+
createdAt: string | Date;
|
|
2193
|
+
updatedAt: string | Date;
|
|
2194
|
+
deletedAt: string | Date | null;
|
|
2195
|
+
name: string;
|
|
2196
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2197
|
+
platform: import("./common.types").Platform;
|
|
2198
|
+
onboardingReviewerId: string | null;
|
|
2199
|
+
onboardingReviewAt: Date | null;
|
|
2200
|
+
allowPendingComplianceReview: boolean;
|
|
2201
|
+
__entity?: string | undefined;
|
|
2202
|
+
} | undefined;
|
|
2203
|
+
}>>>;
|
|
2204
|
+
reviewedById: z.ZodNullable<z.ZodString>;
|
|
2205
|
+
} & {
|
|
2206
|
+
userCanReview: z.ZodBoolean;
|
|
2207
|
+
signingUrl: z.ZodNullable<z.ZodString>;
|
|
2208
|
+
canViewDocument: z.ZodBoolean;
|
|
2209
|
+
documentUrl: z.ZodNullable<z.ZodString>;
|
|
2210
|
+
lifecycleStage: z.ZodNativeEnum<typeof DisbursementLifecycleStage>;
|
|
2211
|
+
issuer: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
|
|
2212
|
+
issuerBankAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<any>>>;
|
|
2213
|
+
escrowAccount: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
|
|
2214
|
+
id: z.ZodString;
|
|
2215
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2216
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2217
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2218
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2219
|
+
} & {
|
|
2220
|
+
accountNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2221
|
+
routingNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2222
|
+
accountName: z.ZodString;
|
|
2223
|
+
agentEmail: z.ZodString;
|
|
2224
|
+
agentName: z.ZodString;
|
|
2225
|
+
accountId: z.ZodLazy<z.ZodEffects<z.ZodString, string, string>>;
|
|
2226
|
+
account: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
2227
|
+
id: z.ZodString;
|
|
2228
|
+
__entity: z.ZodOptional<z.ZodString>;
|
|
2229
|
+
createdAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2230
|
+
updatedAt: z.ZodUnion<[z.ZodString, z.ZodDate]>;
|
|
2231
|
+
deletedAt: z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodDate]>>;
|
|
2232
|
+
} & {
|
|
2233
|
+
name: z.ZodString;
|
|
2234
|
+
status: z.ZodNativeEnum<typeof import("./common.types").AccountStatus>;
|
|
2235
|
+
managedBy: z.ZodNullable<z.ZodNativeEnum<typeof import("./common.types").ManagedByType>>;
|
|
2236
|
+
platform: z.ZodNativeEnum<typeof import("./common.types").Platform>;
|
|
2237
|
+
onboardingReviewerId: z.ZodNullable<z.ZodString>;
|
|
2238
|
+
onboardingReviewAt: z.ZodNullable<z.ZodDate>;
|
|
2239
|
+
allowPendingComplianceReview: z.ZodBoolean;
|
|
2240
|
+
}, "strip", z.ZodTypeAny, {
|
|
2241
|
+
status: import("./common.types").AccountStatus;
|
|
2242
|
+
id: string;
|
|
2243
|
+
createdAt: string | Date;
|
|
2244
|
+
updatedAt: string | Date;
|
|
2245
|
+
deletedAt: string | Date | null;
|
|
2246
|
+
name: string;
|
|
2247
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2248
|
+
platform: import("./common.types").Platform;
|
|
2249
|
+
onboardingReviewerId: string | null;
|
|
2250
|
+
onboardingReviewAt: Date | null;
|
|
2251
|
+
allowPendingComplianceReview: boolean;
|
|
2252
|
+
__entity?: string | undefined;
|
|
2253
|
+
}, {
|
|
2254
|
+
status: import("./common.types").AccountStatus;
|
|
2255
|
+
id: string;
|
|
2256
|
+
createdAt: string | Date;
|
|
2257
|
+
updatedAt: string | Date;
|
|
2258
|
+
deletedAt: string | Date | null;
|
|
2259
|
+
name: string;
|
|
2260
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2261
|
+
platform: import("./common.types").Platform;
|
|
2262
|
+
onboardingReviewerId: string | null;
|
|
2263
|
+
onboardingReviewAt: Date | null;
|
|
2264
|
+
allowPendingComplianceReview: boolean;
|
|
2265
|
+
__entity?: string | undefined;
|
|
2266
|
+
}>>>;
|
|
2267
|
+
}, "strip", z.ZodTypeAny, {
|
|
2268
|
+
id: string;
|
|
2269
|
+
createdAt: string | Date;
|
|
2270
|
+
updatedAt: string | Date;
|
|
2271
|
+
deletedAt: string | Date | null;
|
|
2272
|
+
accountId: string;
|
|
2273
|
+
accountName: string;
|
|
2274
|
+
agentEmail: string;
|
|
2275
|
+
agentName: string;
|
|
2276
|
+
__entity?: string | undefined;
|
|
2277
|
+
account?: {
|
|
2278
|
+
status: import("./common.types").AccountStatus;
|
|
2279
|
+
id: string;
|
|
2280
|
+
createdAt: string | Date;
|
|
2281
|
+
updatedAt: string | Date;
|
|
2282
|
+
deletedAt: string | Date | null;
|
|
2283
|
+
name: string;
|
|
2284
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2285
|
+
platform: import("./common.types").Platform;
|
|
2286
|
+
onboardingReviewerId: string | null;
|
|
2287
|
+
onboardingReviewAt: Date | null;
|
|
2288
|
+
allowPendingComplianceReview: boolean;
|
|
2289
|
+
__entity?: string | undefined;
|
|
2290
|
+
} | null | undefined;
|
|
2291
|
+
accountNumber?: string | null | undefined;
|
|
2292
|
+
routingNumber?: string | null | undefined;
|
|
2293
|
+
}, {
|
|
2294
|
+
id: string;
|
|
2295
|
+
createdAt: string | Date;
|
|
2296
|
+
updatedAt: string | Date;
|
|
2297
|
+
deletedAt: string | Date | null;
|
|
2298
|
+
accountId: string;
|
|
2299
|
+
accountName: string;
|
|
2300
|
+
agentEmail: string;
|
|
2301
|
+
agentName: string;
|
|
2302
|
+
__entity?: string | undefined;
|
|
2303
|
+
account?: {
|
|
2304
|
+
status: import("./common.types").AccountStatus;
|
|
2305
|
+
id: string;
|
|
2306
|
+
createdAt: string | Date;
|
|
2307
|
+
updatedAt: string | Date;
|
|
2308
|
+
deletedAt: string | Date | null;
|
|
2309
|
+
name: string;
|
|
2310
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2311
|
+
platform: import("./common.types").Platform;
|
|
2312
|
+
onboardingReviewerId: string | null;
|
|
2313
|
+
onboardingReviewAt: Date | null;
|
|
2314
|
+
allowPendingComplianceReview: boolean;
|
|
2315
|
+
__entity?: string | undefined;
|
|
2316
|
+
} | null | undefined;
|
|
2317
|
+
accountNumber?: string | null | undefined;
|
|
2318
|
+
routingNumber?: string | null | undefined;
|
|
2319
|
+
}>>>>;
|
|
2320
|
+
disbursementAdjustments: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
2321
|
+
tradeDisbursements: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
2322
|
+
disbursementReviews: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
2323
|
+
disbursementTransactions: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
2324
|
+
}, "strip", z.ZodTypeAny, {
|
|
2325
|
+
status: DisbursementStatus;
|
|
2326
|
+
id: string;
|
|
2327
|
+
createdAt: string | Date;
|
|
2328
|
+
updatedAt: string | Date;
|
|
2329
|
+
deletedAt: string | Date | null;
|
|
2330
|
+
accountId: string;
|
|
2331
|
+
name: string;
|
|
2332
|
+
complianceReview: ComplianceReview;
|
|
2333
|
+
approversCount: number;
|
|
2334
|
+
offeringId: string;
|
|
2335
|
+
reviewedById: string | null;
|
|
2336
|
+
createdById: string;
|
|
2337
|
+
requestedAmount: number;
|
|
2338
|
+
netAmount: number;
|
|
2339
|
+
disbursedAt: Date | null;
|
|
2340
|
+
userCanReview: boolean;
|
|
2341
|
+
signingUrl: string | null;
|
|
2342
|
+
canViewDocument: boolean;
|
|
2343
|
+
documentUrl: string | null;
|
|
2344
|
+
lifecycleStage: DisbursementLifecycleStage;
|
|
2345
|
+
__entity?: string | undefined;
|
|
2346
|
+
account?: {
|
|
2347
|
+
status: import("./common.types").AccountStatus;
|
|
2348
|
+
id: string;
|
|
2349
|
+
createdAt: string | Date;
|
|
2350
|
+
updatedAt: string | Date;
|
|
2351
|
+
deletedAt: string | Date | null;
|
|
2352
|
+
name: string;
|
|
2353
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2354
|
+
platform: import("./common.types").Platform;
|
|
2355
|
+
onboardingReviewerId: string | null;
|
|
2356
|
+
onboardingReviewAt: Date | null;
|
|
2357
|
+
allowPendingComplianceReview: boolean;
|
|
2358
|
+
__entity?: string | undefined;
|
|
2359
|
+
} | null | undefined;
|
|
2360
|
+
offering?: any;
|
|
2361
|
+
issuer?: any;
|
|
2362
|
+
escrowAccount?: {
|
|
2363
|
+
id: string;
|
|
2364
|
+
createdAt: string | Date;
|
|
2365
|
+
updatedAt: string | Date;
|
|
2366
|
+
deletedAt: string | Date | null;
|
|
2367
|
+
accountId: string;
|
|
2368
|
+
accountName: string;
|
|
2369
|
+
agentEmail: string;
|
|
2370
|
+
agentName: string;
|
|
2371
|
+
__entity?: string | undefined;
|
|
2372
|
+
account?: {
|
|
2373
|
+
status: import("./common.types").AccountStatus;
|
|
2374
|
+
id: string;
|
|
2375
|
+
createdAt: string | Date;
|
|
2376
|
+
updatedAt: string | Date;
|
|
2377
|
+
deletedAt: string | Date | null;
|
|
2378
|
+
name: string;
|
|
2379
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2380
|
+
platform: import("./common.types").Platform;
|
|
2381
|
+
onboardingReviewerId: string | null;
|
|
2382
|
+
onboardingReviewAt: Date | null;
|
|
2383
|
+
allowPendingComplianceReview: boolean;
|
|
2384
|
+
__entity?: string | undefined;
|
|
2385
|
+
} | null | undefined;
|
|
2386
|
+
accountNumber?: string | null | undefined;
|
|
2387
|
+
routingNumber?: string | null | undefined;
|
|
2388
|
+
} | null | undefined;
|
|
2389
|
+
tradeDisbursements?: any[] | undefined;
|
|
2390
|
+
createdBy?: {
|
|
2391
|
+
id: string;
|
|
2392
|
+
createdAt: string | Date;
|
|
2393
|
+
updatedAt: string | Date;
|
|
2394
|
+
deletedAt: string | Date | null;
|
|
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: {
|
|
2403
|
+
id: string;
|
|
2404
|
+
createdAt: string | Date;
|
|
2405
|
+
updatedAt: string | Date;
|
|
2406
|
+
deletedAt: string | Date | null;
|
|
2407
|
+
firstName: string;
|
|
2408
|
+
lastName: string;
|
|
2409
|
+
email: string;
|
|
2410
|
+
provider: string;
|
|
2411
|
+
lastLoginAt: string | Date | null;
|
|
2412
|
+
loginCount: number;
|
|
2413
|
+
__entity?: string | undefined;
|
|
2414
|
+
};
|
|
2415
|
+
__entity?: string | undefined;
|
|
2416
|
+
account?: {
|
|
2417
|
+
status: import("./common.types").AccountStatus;
|
|
2418
|
+
id: string;
|
|
2419
|
+
createdAt: string | Date;
|
|
2420
|
+
updatedAt: string | Date;
|
|
2421
|
+
deletedAt: string | Date | null;
|
|
2422
|
+
name: string;
|
|
2423
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2424
|
+
platform: import("./common.types").Platform;
|
|
2425
|
+
onboardingReviewerId: string | null;
|
|
2426
|
+
onboardingReviewAt: Date | null;
|
|
2427
|
+
allowPendingComplianceReview: boolean;
|
|
2428
|
+
__entity?: string | undefined;
|
|
2429
|
+
} | undefined;
|
|
2430
|
+
} | null | undefined;
|
|
2431
|
+
issuerBankAccount?: any;
|
|
2432
|
+
disbursementAdjustments?: any[] | undefined;
|
|
2433
|
+
disbursementReviews?: any[] | undefined;
|
|
2434
|
+
disbursementTransactions?: any[] | undefined;
|
|
2435
|
+
}, {
|
|
2436
|
+
status: DisbursementStatus;
|
|
2437
|
+
id: string;
|
|
2438
|
+
createdAt: string | Date;
|
|
2439
|
+
updatedAt: string | Date;
|
|
2440
|
+
deletedAt: string | Date | null;
|
|
2441
|
+
accountId: string;
|
|
2442
|
+
name: string;
|
|
2443
|
+
complianceReview: ComplianceReview;
|
|
2444
|
+
approversCount: number;
|
|
2445
|
+
offeringId: string;
|
|
2446
|
+
reviewedById: string | null;
|
|
2447
|
+
createdById: string;
|
|
2448
|
+
requestedAmount: number;
|
|
2449
|
+
netAmount: number;
|
|
2450
|
+
disbursedAt: Date | null;
|
|
2451
|
+
userCanReview: boolean;
|
|
2452
|
+
signingUrl: string | null;
|
|
2453
|
+
canViewDocument: boolean;
|
|
2454
|
+
documentUrl: string | null;
|
|
2455
|
+
lifecycleStage: DisbursementLifecycleStage;
|
|
2456
|
+
__entity?: string | undefined;
|
|
2457
|
+
account?: {
|
|
2458
|
+
status: import("./common.types").AccountStatus;
|
|
2459
|
+
id: string;
|
|
2460
|
+
createdAt: string | Date;
|
|
2461
|
+
updatedAt: string | Date;
|
|
2462
|
+
deletedAt: string | Date | null;
|
|
2463
|
+
name: string;
|
|
2464
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2465
|
+
platform: import("./common.types").Platform;
|
|
2466
|
+
onboardingReviewerId: string | null;
|
|
2467
|
+
onboardingReviewAt: Date | null;
|
|
2468
|
+
allowPendingComplianceReview: boolean;
|
|
2469
|
+
__entity?: string | undefined;
|
|
2470
|
+
} | null | undefined;
|
|
2471
|
+
offering?: any;
|
|
2472
|
+
issuer?: any;
|
|
2473
|
+
escrowAccount?: {
|
|
2474
|
+
id: string;
|
|
2475
|
+
createdAt: string | Date;
|
|
2476
|
+
updatedAt: string | Date;
|
|
2477
|
+
deletedAt: string | Date | null;
|
|
2478
|
+
accountId: string;
|
|
2479
|
+
accountName: string;
|
|
2480
|
+
agentEmail: string;
|
|
2481
|
+
agentName: string;
|
|
2482
|
+
__entity?: string | undefined;
|
|
2483
|
+
account?: {
|
|
2484
|
+
status: import("./common.types").AccountStatus;
|
|
2485
|
+
id: string;
|
|
2486
|
+
createdAt: string | Date;
|
|
2487
|
+
updatedAt: string | Date;
|
|
2488
|
+
deletedAt: string | Date | null;
|
|
2489
|
+
name: string;
|
|
2490
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2491
|
+
platform: import("./common.types").Platform;
|
|
2492
|
+
onboardingReviewerId: string | null;
|
|
2493
|
+
onboardingReviewAt: Date | null;
|
|
2494
|
+
allowPendingComplianceReview: boolean;
|
|
2495
|
+
__entity?: string | undefined;
|
|
2496
|
+
} | null | undefined;
|
|
2497
|
+
accountNumber?: string | null | undefined;
|
|
2498
|
+
routingNumber?: string | null | undefined;
|
|
2499
|
+
} | null | undefined;
|
|
2500
|
+
tradeDisbursements?: any[] | undefined;
|
|
2501
|
+
createdBy?: {
|
|
2502
|
+
id: string;
|
|
2503
|
+
createdAt: string | Date;
|
|
2504
|
+
updatedAt: string | Date;
|
|
2505
|
+
deletedAt: string | Date | null;
|
|
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: {
|
|
2514
|
+
id: string;
|
|
2515
|
+
createdAt: string | Date;
|
|
2516
|
+
updatedAt: string | Date;
|
|
2517
|
+
deletedAt: string | Date | null;
|
|
2518
|
+
firstName: string;
|
|
2519
|
+
lastName: string;
|
|
2520
|
+
email: string;
|
|
2521
|
+
provider: string;
|
|
2522
|
+
lastLoginAt: string | Date | null;
|
|
2523
|
+
loginCount: number;
|
|
2524
|
+
__entity?: string | undefined;
|
|
2525
|
+
};
|
|
2526
|
+
__entity?: string | undefined;
|
|
2527
|
+
account?: {
|
|
2528
|
+
status: import("./common.types").AccountStatus;
|
|
2529
|
+
id: string;
|
|
2530
|
+
createdAt: string | Date;
|
|
2531
|
+
updatedAt: string | Date;
|
|
2532
|
+
deletedAt: string | Date | null;
|
|
2533
|
+
name: string;
|
|
2534
|
+
managedBy: import("./common.types").ManagedByType | null;
|
|
2535
|
+
platform: import("./common.types").Platform;
|
|
2536
|
+
onboardingReviewerId: string | null;
|
|
2537
|
+
onboardingReviewAt: Date | null;
|
|
2538
|
+
allowPendingComplianceReview: boolean;
|
|
2539
|
+
__entity?: string | undefined;
|
|
2540
|
+
} | undefined;
|
|
2541
|
+
} | null | undefined;
|
|
2542
|
+
issuerBankAccount?: any;
|
|
2543
|
+
disbursementAdjustments?: any[] | undefined;
|
|
2544
|
+
disbursementReviews?: any[] | undefined;
|
|
2545
|
+
disbursementTransactions?: any[] | undefined;
|
|
2546
|
+
}>;
|
|
2547
|
+
export type DisbursementDetailZod = z.infer<typeof DisbursementDetailZod>;
|