b2m-utils 0.0.88 → 0.0.89

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,10 +2,12 @@ import City from "../City";
2
2
  import Dates from "../Dates";
3
3
  import Domain from "../Domain";
4
4
  import DomainSlaRegion from "../DomainSlaRegion";
5
+ import ShippingCompany from "../ShippingCompany";
5
6
  import State from "../State";
6
7
  export type DomainSlaRoute = {
7
8
  id: number;
8
9
  domainId: number;
10
+ shippingCompanyId: number;
9
11
  cityOriginId: number;
10
12
  regionId: number;
11
13
  stateDestinationId: number;
@@ -13,6 +15,7 @@ export type DomainSlaRoute = {
13
15
  city?: City;
14
16
  domainSlaRegion?: DomainSlaRegion;
15
17
  domain?: Domain;
18
+ shippingCompany?: ShippingCompany;
16
19
  state?: State;
17
20
  } & Dates;
18
21
  export default DomainSlaRoute;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.88",
3
+ "version": "0.0.89",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",