@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.
package/dist/types/Proposal.d.ts
CHANGED
|
@@ -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[];
|
package/dist/types/Proposal.js
CHANGED
|
@@ -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";
|