b2m-utils 0.0.179 → 0.0.181

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.
@@ -19,6 +19,7 @@ export type Cte = {
19
19
  statusId?: number;
20
20
  typeId?: number;
21
21
  serviceTypeId?: number;
22
+ emissionDate?: string;
22
23
  cityOriginId?: number;
23
24
  cityDestinationId?: number;
24
25
  fileId: number;
@@ -92,6 +93,7 @@ export type Cte = {
92
93
  observations?: string;
93
94
  isDuplicated?: number;
94
95
  isRedelivery?: number;
96
+ hasSpecialApproval?: number;
95
97
  CteCost?: CteCost[];
96
98
  carrier?: Carrier;
97
99
  cityDestination?: City;
@@ -1,11 +1,11 @@
1
- import CteAuditedValue from "../CteAuditedValue";
1
+ import Cte from "../Cte";
2
2
  import Dates from "../Dates";
3
3
  import File from "../File";
4
4
  export type CteApprovalFile = {
5
5
  id: number;
6
- cteAuditedValueId: number;
6
+ cteId: number;
7
7
  fileId: number;
8
- cteAuditedValue?: CteAuditedValue;
8
+ cte?: Cte;
9
9
  file?: File;
10
10
  } & Dates;
11
11
  export default CteApprovalFile;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.179",
3
+ "version": "0.0.181",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",