b2m-utils 0.0.166 → 0.0.168
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.
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
import Dates from "../Dates";
|
|
2
|
+
import Domain from "../Domain";
|
|
2
3
|
import File from "../File";
|
|
3
4
|
import InvoiceCte from "../InvoiceCte";
|
|
4
5
|
export type Invoice = {
|
|
5
6
|
id: number;
|
|
7
|
+
domainId: number;
|
|
6
8
|
parentId?: number;
|
|
7
9
|
number: string;
|
|
8
10
|
issuedAt: string;
|
|
9
11
|
expiredAt: string;
|
|
10
12
|
value: number;
|
|
11
13
|
fileId?: number;
|
|
14
|
+
approvedFileId?: number;
|
|
15
|
+
domains?: Domain;
|
|
12
16
|
invoice_ctes?: InvoiceCte[];
|
|
13
17
|
files?: File;
|
|
18
|
+
approvedFile?: File;
|
|
14
19
|
invoices?: Invoice;
|
|
15
20
|
other_invoices?: Invoice[];
|
|
16
21
|
} & Dates;
|