b2m-utils 0.0.15 → 0.0.17

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 Currency = {
3
+ id: number;
4
+ name: number;
5
+ code: string;
6
+ isActive: boolean;
7
+ } & Dates;
8
+ export default Currency;
@@ -0,0 +1,7 @@
1
+ import Dates from "../Dates";
2
+ export type DomainPriority = {
3
+ id: number;
4
+ domainId: number;
5
+ name: string;
6
+ } & Dates;
7
+ export default DomainPriority;
@@ -0,0 +1,6 @@
1
+ import Dates from "../Dates";
2
+ export type Incoterm = {
3
+ id: number;
4
+ name: string;
5
+ } & Dates;
6
+ export default Incoterm;
@@ -0,0 +1,6 @@
1
+ import Dates from "../Dates";
2
+ export type Shipowner = {
3
+ id: number;
4
+ name: string;
5
+ } & Dates;
6
+ export default Shipowner;
@@ -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.15",
3
+ "version": "0.0.17",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",