b2m-utils 0.0.133 → 0.0.135

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.
@@ -2,14 +2,17 @@ import CarrierDocument from "../CarrierDocument";
2
2
  import Cte from "../Cte";
3
3
  import Dates from "../Dates";
4
4
  import Domain from "../Domain";
5
+ import Ratecard from "../Ratecard";
5
6
  export type Carrier = {
6
7
  id: number;
7
8
  domainId: number;
8
9
  name: string;
9
10
  cnpj: string;
10
11
  divergenceTolerance: string;
12
+ deletedAt?: string;
11
13
  CarrierDocument?: CarrierDocument[];
12
14
  domain?: Domain;
13
15
  Cte?: Cte[];
16
+ Ratecard?: Ratecard[];
14
17
  } & Dates;
15
18
  export default Carrier;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.133",
3
+ "version": "0.0.135",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",