b2m-utils 0.0.23 → 0.0.24

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.
@@ -0,0 +1,8 @@
1
+ import Dates from "../Dates";
2
+ export type ShippingCompany = {
3
+ id: number;
4
+ company: string;
5
+ obsReference?: string;
6
+ domainId?: number;
7
+ } & Dates;
8
+ export default ShippingCompany;
@@ -34,6 +34,8 @@ export * from './ShipmentType';
34
34
  export { default as ShipmentType } from './ShipmentType';
35
35
  export * from './Shipowner';
36
36
  export { default as Shipowner } from './Shipowner';
37
+ export * from './ShippingCompany';
38
+ export { default as ShippingCompany } from './ShippingCompany';
37
39
  export * from './SpotStatus';
38
40
  export { default as SpotStatus } from './SpotStatus';
39
41
  export * from './TrackProcess';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",