b2m-utils 0.0.168 → 0.0.170
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.
|
@@ -8,6 +8,7 @@ import CteType from "../CteType";
|
|
|
8
8
|
import Dates from "../Dates";
|
|
9
9
|
import Domain from "../Domain";
|
|
10
10
|
import File from "../File";
|
|
11
|
+
import InvoiceCte from "../InvoiceCte";
|
|
11
12
|
import ServiceType from "../ServiceType";
|
|
12
13
|
import User from "../User";
|
|
13
14
|
export type Cte = {
|
|
@@ -96,5 +97,6 @@ export type Cte = {
|
|
|
96
97
|
cte_audited_values?: CteAuditValue[];
|
|
97
98
|
users?: User;
|
|
98
99
|
cte_chats?: CteChat[];
|
|
100
|
+
invoice_ctes?: InvoiceCte[];
|
|
99
101
|
} & Dates;
|
|
100
102
|
export default Cte;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import Carrier from "../Carrier";
|
|
1
2
|
import Dates from "../Dates";
|
|
2
3
|
import Domain from "../Domain";
|
|
3
4
|
import File from "../File";
|
|
@@ -6,6 +7,7 @@ export type Invoice = {
|
|
|
6
7
|
id: number;
|
|
7
8
|
domainId: number;
|
|
8
9
|
parentId?: number;
|
|
10
|
+
carrierId?: number;
|
|
9
11
|
number: string;
|
|
10
12
|
issuedAt: string;
|
|
11
13
|
expiredAt: string;
|
|
@@ -18,5 +20,6 @@ export type Invoice = {
|
|
|
18
20
|
approvedFile?: File;
|
|
19
21
|
invoices?: Invoice;
|
|
20
22
|
other_invoices?: Invoice[];
|
|
23
|
+
carriers?: Carrier;
|
|
21
24
|
} & Dates;
|
|
22
25
|
export default Invoice;
|