b2m-utils 0.0.123 → 0.0.124

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.
@@ -1,9 +1,15 @@
1
1
  import Dates from "../Dates";
2
+ import Domain from "../Domain";
3
+ import ShippingCompanyRegion from "../ShippingCompanyRegion";
4
+ import ShippingCompanyRegionCity from "../ShippingCompanyRegionCity";
2
5
  export type ShippingCompany = {
3
6
  id: number;
4
7
  company: string;
5
8
  obsReference?: string;
6
9
  domainId?: number;
7
10
  deletedAt?: string;
11
+ domain?: Domain;
12
+ ShippingCompanyRegionCity?: ShippingCompanyRegionCity[];
13
+ ShippingCompanyRegion?: ShippingCompanyRegion[];
8
14
  } & Dates;
9
15
  export default ShippingCompany;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.123",
3
+ "version": "0.0.124",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",