b2m-utils 0.0.165 → 0.0.166
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.
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import Dates from "../Dates";
|
|
2
|
+
import File from "../File";
|
|
3
|
+
import InvoiceCte from "../InvoiceCte";
|
|
4
|
+
export type Invoice = {
|
|
5
|
+
id: number;
|
|
6
|
+
parentId?: number;
|
|
7
|
+
number: string;
|
|
8
|
+
issuedAt: string;
|
|
9
|
+
expiredAt: string;
|
|
10
|
+
value: number;
|
|
11
|
+
fileId?: number;
|
|
12
|
+
invoice_ctes?: InvoiceCte[];
|
|
13
|
+
files?: File;
|
|
14
|
+
invoices?: Invoice;
|
|
15
|
+
other_invoices?: Invoice[];
|
|
16
|
+
} & Dates;
|
|
17
|
+
export default Invoice;
|
package/build/types/index.d.ts
CHANGED
|
@@ -94,10 +94,14 @@ export * from './FreightsResultType';
|
|
|
94
94
|
export { default as FreightsResultType } from './FreightsResultType';
|
|
95
95
|
export * from './FreightsStatsType';
|
|
96
96
|
export { default as FreightsStatsType } from './FreightsStatsType';
|
|
97
|
-
export * from './InvoiceType';
|
|
98
|
-
export { default as InvoiceType } from './InvoiceType';
|
|
99
97
|
export * from './Incoterm';
|
|
100
98
|
export { default as Incoterm } from './Incoterm';
|
|
99
|
+
export * from './Invoice';
|
|
100
|
+
export { default as Invoice } from './Invoice';
|
|
101
|
+
export * from './InvoiceCte';
|
|
102
|
+
export { default as InvoiceCte } from './InvoiceCte';
|
|
103
|
+
export * from './InvoiceType';
|
|
104
|
+
export { default as InvoiceType } from './InvoiceType';
|
|
101
105
|
export * from './Menu';
|
|
102
106
|
export { default as Menu } from './Menu';
|
|
103
107
|
export * from './Modal';
|