b2m-utils 0.0.167 → 0.0.169

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.
@@ -70,6 +70,7 @@ export type Cte = {
70
70
  modal: string;
71
71
  protocolNumber?: number;
72
72
  freightValue?: number;
73
+ auditedValue?: number;
73
74
  icmsValue?: number;
74
75
  pisValue?: number;
75
76
  cofinsValue?: number;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.167",
3
+ "version": "0.0.169",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",