b2m-utils 0.0.16 → 0.0.18

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,6 @@
1
+ import Dates from "../Dates";
2
+ export type ShipmentType = {
3
+ id: number;
4
+ name: string;
5
+ } & Dates;
6
+ export default ShipmentType;
@@ -4,24 +4,32 @@ export * from './Auth';
4
4
  export { default as Auth } from './Auth';
5
5
  export * from './ContainerType';
6
6
  export { default as ContainerType } from './ContainerType';
7
+ export * from './Currency';
8
+ export { default as Currency } from './Currency';
7
9
  export * from './Dates';
8
10
  export { default as Dates } from './Dates';
9
11
  export * from './Domain';
10
12
  export { default as Domain } from './Domain';
11
13
  export * from './DomainDivision';
12
14
  export { default as DomainDivision } from './DomainDivision';
15
+ export * from './DomainPriority';
16
+ export { default as DomainPriority } from './DomainPriority';
13
17
  export * from './FreightPlace';
14
18
  export { default as FreightPlace } from './FreightPlace';
15
19
  export * from './FreightPlaceCountry';
16
20
  export { default as FreightPlaceCountry } from './FreightPlaceCountry';
17
21
  export * from './FreightPlaceRegion';
18
22
  export { default as FreightPlaceRegion } from './FreightPlaceRegion';
23
+ export * from './Incoterm';
24
+ export { default as Incoterm } from './Incoterm';
19
25
  export * from './Modal';
20
26
  export { default as Modal } from './Modal';
21
27
  export * from './ProcessFreightForwarder';
22
28
  export { default as ProcessFreightForwarder } from './ProcessFreightForwarder';
23
29
  export * from './ProcessShippingCompany';
24
30
  export { default as ProcessShippingCompany } from './ProcessShippingCompany';
31
+ export * from './Shipowner';
32
+ export { default as Shipowner } from './Shipowner';
25
33
  export * from './SpotStatus';
26
34
  export { default as SpotStatus } from './SpotStatus';
27
35
  export * from './TrackProcess';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.16",
3
+ "version": "0.0.18",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",