digicust_types 1.7.300 → 1.7.301

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,13 @@
1
+ import { AddressModel } from "../measures";
2
+ export interface Airport {
3
+ name?: string;
4
+ address?: AddressModel;
5
+ keywords?: string[];
6
+ IATA?: string;
7
+ identCode?: string;
8
+ website?: string;
9
+ hasRailTerminal?: boolean;
10
+ hasRoadTerminal?: boolean;
11
+ hasAirport?: boolean;
12
+ hasPostalExchangeOffice?: boolean;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -12,3 +12,5 @@ export * from "./transit-item.model";
12
12
  export * from "./type-of-business";
13
13
  export * from "./preference";
14
14
  export * from "./constellationOfParticipants.model";
15
+ export * from "./airport.model";
16
+ export * from "./port.model";
@@ -28,3 +28,5 @@ __exportStar(require("./transit-item.model"), exports);
28
28
  __exportStar(require("./type-of-business"), exports);
29
29
  __exportStar(require("./preference"), exports);
30
30
  __exportStar(require("./constellationOfParticipants.model"), exports);
31
+ __exportStar(require("./airport.model"), exports);
32
+ __exportStar(require("./port.model"), exports);
@@ -0,0 +1,14 @@
1
+ import { AddressModel } from "../measures";
2
+ export interface Port {
3
+ name?: string;
4
+ address?: AddressModel;
5
+ keywords?: string[];
6
+ /** Part of the UN/Locode */
7
+ country?: string;
8
+ /** Part of the UN/Locode */
9
+ location?: string;
10
+ hasRailTerminal?: boolean;
11
+ hasRoadTerminal?: boolean;
12
+ hasAirport?: boolean;
13
+ hasPostalExchangeOffice?: boolean;
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "digicust_types",
3
- "version": "1.7.300",
3
+ "version": "1.7.301",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",