b2m-utils 0.0.62 → 0.0.64

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.
@@ -4,6 +4,7 @@ export type DomainDispatcher = {
4
4
  id: number;
5
5
  domainId: number;
6
6
  dispatcherId: number;
7
+ deletedAt?: string;
7
8
  domain?: Domain;
8
9
  dispatcher?: Domain;
9
10
  } & Dates;
@@ -6,7 +6,8 @@ export type DomainDivision = {
6
6
  domainId: number;
7
7
  code: string;
8
8
  name: string;
9
- domain: Domain;
10
- TrackProcess: TrackProcess[];
9
+ deletedAt?: string;
10
+ domain?: Domain;
11
+ TrackProcess?: TrackProcess[];
11
12
  } & Dates;
12
13
  export default DomainDivision;
@@ -0,0 +1,10 @@
1
+ import Dates from "../Dates";
2
+ import Domain from "../Domain";
3
+ export type DomainFreightPlace = {
4
+ id: number;
5
+ domainId: number;
6
+ name: string;
7
+ deletedAt?: string;
8
+ domain?: Domain;
9
+ } & Dates;
10
+ export default DomainFreightPlace;
@@ -3,5 +3,6 @@ export type DomainPriority = {
3
3
  id: number;
4
4
  domainId: number;
5
5
  name: string;
6
+ deletedAt?: string;
6
7
  } & Dates;
7
8
  export default DomainPriority;
@@ -3,5 +3,6 @@ export type DomainTerminal = {
3
3
  id: number;
4
4
  domainId: number;
5
5
  name: string;
6
+ deletedAt?: string;
6
7
  } & Dates;
7
8
  export default DomainTerminal;
@@ -2,5 +2,6 @@ import Dates from "../Dates";
2
2
  export type FreightForwarder = {
3
3
  id: number;
4
4
  name: string;
5
+ deletedAt?: string;
5
6
  } & Dates;
6
7
  export default FreightForwarder;
@@ -4,5 +4,6 @@ export type ShippingCompany = {
4
4
  company: string;
5
5
  obsReference?: string;
6
6
  domainId?: number;
7
+ deletedAt?: string;
7
8
  } & Dates;
8
9
  export default ShippingCompany;
@@ -1,10 +1,10 @@
1
1
  import Dates from "../Dates";
2
2
  import Domain from "../Domain";
3
3
  import DomainDivision from "../DomainDivision";
4
- import FreightPlace from "../FreightPlace";
5
- import { Modal } from "../Modal";
4
+ import DomainFreightPlace from "../DomainFreightPlace";
5
+ import Modal from "../Modal";
6
6
  import ProcessFreightForwarder from "../ProcessFreightForwarder";
7
- import { SpotStatus } from "../SpotStatus";
7
+ import SpotStatus from "../SpotStatus";
8
8
  import TrackProcessContainer from "../TrackProcessContainer";
9
9
  import TrackProcessDispatcher from "../TrackProcessDispatcher";
10
10
  import TrackProcessFile from "../TrackProcessFile";
@@ -50,8 +50,8 @@ export type TrackProcess = {
50
50
  TrackProcessFile?: TrackProcessFile[];
51
51
  domainDivision?: DomainDivision;
52
52
  domain?: Domain;
53
- freightPlaceOrigin?: FreightPlace;
54
- freightPlaceDestination?: FreightPlace;
53
+ freightPlaceOrigin?: DomainFreightPlace;
54
+ freightPlaceDestination?: DomainFreightPlace;
55
55
  modal?: Modal;
56
56
  status?: SpotStatus;
57
57
  user?: User;
@@ -20,6 +20,8 @@ export * from './DomainDispatcher';
20
20
  export { default as DomainDispatcher } from './DomainDispatcher';
21
21
  export * from './DomainDivision';
22
22
  export { default as DomainDivision } from './DomainDivision';
23
+ export * from './DomainFreightPlace';
24
+ export { default as DomainFreightPlace } from './DomainFreightPlace';
23
25
  export * from './DomainNotificationUser';
24
26
  export { default as DomainNotificationUser } from './DomainNotificationUser';
25
27
  export * from './DomainPriority';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.62",
3
+ "version": "0.0.64",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",