b2m-utils 0.0.21 → 0.0.23

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,5 +1,5 @@
1
1
  export type Dates = {
2
2
  createdAt?: string;
3
- updateddAt?: string;
3
+ updatedAt?: string;
4
4
  };
5
5
  export default Dates;
@@ -0,0 +1,7 @@
1
+ import Dates from "../Dates";
2
+ export type DomainTerminal = {
3
+ id: number;
4
+ domainId: number;
5
+ name: string;
6
+ } & Dates;
7
+ export default DomainTerminal;
@@ -14,6 +14,8 @@ export * from './DomainDivision';
14
14
  export { default as DomainDivision } from './DomainDivision';
15
15
  export * from './DomainPriority';
16
16
  export { default as DomainPriority } from './DomainPriority';
17
+ export * from './DomainTerminal';
18
+ export { default as DomainTerminal } from './DomainTerminal';
17
19
  export * from './FreightPlace';
18
20
  export { default as FreightPlace } from './FreightPlace';
19
21
  export * from './FreightPlaceCountry';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "b2m-utils",
3
- "version": "0.0.21",
3
+ "version": "0.0.23",
4
4
  "description": "B2M Utils",
5
5
  "main": "build/index.js",
6
6
  "module": "build/index.esm.js",