b2m-utils 0.0.92 → 0.0.95

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,7 +2,6 @@ import City from "../City";
2
2
  import Currency from "../Currency";
3
3
  import Dates from "../Dates";
4
4
  import Domain from "../Domain";
5
- import DomainSlaLocation from "../DomainSlaLocation";
6
5
  import DomainSlaRegion from "../DomainSlaRegion";
7
6
  import Modal from "../Modal";
8
7
  import ShippingCompany from "../ShippingCompany";
@@ -13,9 +12,9 @@ export type SlaFreight = {
13
12
  cteNumber: number;
14
13
  modalId: number;
15
14
  cityOriginId: number;
16
- originLocationId: number;
15
+ originLocation: string;
17
16
  cityDestinationId: number;
18
- destinationLocationId: number;
17
+ destinationLocation: string;
19
18
  weight: number;
20
19
  commodityValue: number;
21
20
  commodityValueCurrencyId: number;
@@ -30,8 +29,6 @@ export type SlaFreight = {
30
29
  cteCostCurrency?: Currency;
31
30
  domainSlaRegion?: DomainSlaRegion;
32
31
  domain?: Domain;
33
- destinationLocation?: DomainSlaLocation;
34
- originLocation?: DomainSlaLocation;
35
32
  modal?: Modal;
36
33
  shippingCompany?: ShippingCompany;
37
34
  } & Dates;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.92",
3
+ "version": "0.0.95",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",