b2m-utils 0.0.165 → 0.0.167

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,22 @@
1
+ import Dates from "../Dates";
2
+ import Domain from "../Domain";
3
+ import File from "../File";
4
+ import InvoiceCte from "../InvoiceCte";
5
+ export type Invoice = {
6
+ id: number;
7
+ domainId: number;
8
+ parentId?: number;
9
+ number: string;
10
+ issuedAt: string;
11
+ expiredAt: string;
12
+ value: number;
13
+ fileId?: number;
14
+ approvedFileId?: number;
15
+ domains?: Domain;
16
+ invoice_ctes?: InvoiceCte[];
17
+ files?: File;
18
+ approvedFile?: File;
19
+ invoices?: Invoice;
20
+ other_invoices?: Invoice[];
21
+ } & Dates;
22
+ export default Invoice;
@@ -0,0 +1,11 @@
1
+ import Cte from "../Cte";
2
+ import Dates from "../Dates";
3
+ import Invoice from "../Invoice";
4
+ export type InvoiceCte = {
5
+ id: number;
6
+ invoiceId: number;
7
+ cteId: number;
8
+ ctes: Cte;
9
+ invoices: Invoice;
10
+ } & Dates;
11
+ export default InvoiceCte;
@@ -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';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.165",
3
+ "version": "0.0.167",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",