@pulsecharterconnect/types 0.1.3 → 0.1.5

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.
@@ -101,6 +101,8 @@ export type Facility = {
101
101
  lng: number;
102
102
  };
103
103
  utcOffsetMinutes: number;
104
+ pickupInstructions?: string;
105
+ dropoffInstructions?: string;
104
106
  };
105
107
  export type County = {
106
108
  countyName: string;
@@ -44,7 +44,12 @@ export interface IGroundTransportationService {
44
44
  email?: string;
45
45
  };
46
46
  }
47
+ export declare enum GroundSegmentLocationType {
48
+ LOCAL = "Local",
49
+ DISTAL = "Distal"
50
+ }
47
51
  export interface IProposalGroundSegment extends IProposalSegment {
52
+ groundSegmentLocationType: GroundSegmentLocationType;
48
53
  scheduledDepartureLocation: Facility;
49
54
  scheduledArrivalLocation: Facility;
50
55
  groundTransportatationServices?: IGroundTransportationService[];
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Proposal = exports.ProposalStatus = exports.CrewMemberTypes = exports.TypeOfService = void 0;
3
+ exports.Proposal = exports.ProposalStatus = exports.GroundSegmentLocationType = exports.CrewMemberTypes = exports.TypeOfService = void 0;
4
4
  var TypeOfService;
5
5
  (function (TypeOfService) {
6
6
  TypeOfService["AIR"] = "air";
@@ -13,6 +13,11 @@ var CrewMemberTypes;
13
13
  CrewMemberTypes["COPILOT"] = "copilot";
14
14
  CrewMemberTypes["FLIGHT_ATTENDANT"] = "flight_attendant";
15
15
  })(CrewMemberTypes = exports.CrewMemberTypes || (exports.CrewMemberTypes = {}));
16
+ var GroundSegmentLocationType;
17
+ (function (GroundSegmentLocationType) {
18
+ GroundSegmentLocationType["LOCAL"] = "Local";
19
+ GroundSegmentLocationType["DISTAL"] = "Distal";
20
+ })(GroundSegmentLocationType = exports.GroundSegmentLocationType || (exports.GroundSegmentLocationType = {}));
16
21
  var ProposalStatus;
17
22
  (function (ProposalStatus) {
18
23
  ProposalStatus["CREATED"] = "created";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",