@pulsecharterconnect/types 0.2.84 → 0.2.86

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.
@@ -29,6 +29,26 @@ export interface IAirTransportationService {
29
29
  tailNumber: string;
30
30
  crew: ICrewMember[];
31
31
  }
32
+ export declare enum ProposalLocationProxmityAssociationType {
33
+ RECIPIENT_FACILITY = "Recipient Facility",
34
+ RECOVERY_LOCATION = "Recovery Location",
35
+ NONE = "None"
36
+ }
37
+ export declare enum ProposalAirSegmentType {
38
+ REPOSITIONING_ROUND_TRIP = "Repositioning Round Trip",
39
+ REPOSITIONING_ONE_WAY = "Repositioning One Way",
40
+ OUTBOUND_FROM_RECIPIENT_FACILITY_ONE_WAY = "Outbound from Recipient Facility One Way",
41
+ INBOUND_TO_RECOVERY_LOCATION = "Inbound to Recovery Location",
42
+ INBOUND_TO_RECIPIENT_LOCATION = "Inbound to Recipient Location",
43
+ EQUIPMENT_RETURN = "Equipment Return",
44
+ OTHER = "Other"
45
+ }
46
+ export interface IProposalLocationProximity {
47
+ distanceInMilesToRecipientFacility: number;
48
+ distanceInMilesToRecoveryLocation: number;
49
+ proximityThresholdInMilesUsed: number;
50
+ associatedWithLocation: ProposalLocationProxmityAssociationType;
51
+ }
32
52
  export interface IProposalAirSegment extends IProposalSegment {
33
53
  scheduledDepartureAirportCode: string;
34
54
  scheduledDepartureAirportLocation: {
@@ -36,17 +56,20 @@ export interface IProposalAirSegment extends IProposalSegment {
36
56
  lng: number;
37
57
  };
38
58
  scheduledDepartureFBO?: Facility;
59
+ scheduledDepartureProximity?: IProposalLocationProximity;
39
60
  scheduledArrivalAirportCode: string;
40
61
  scheduledArrivalAirportLocation: {
41
62
  lat: number;
42
63
  lng: number;
43
64
  };
44
65
  scheduledArrivalFBO?: Facility;
66
+ scheduledArrivalProximity?: IProposalLocationProximity;
45
67
  airTransportationServices?: IAirTransportationService;
68
+ airSegmentType?: ProposalAirSegmentType;
46
69
  }
47
70
  export interface IGroundTransportationService {
48
71
  groundService: GroundService;
49
- vechicleId?: string;
72
+ vehicleId?: string;
50
73
  driver?: {
51
74
  firstName: string;
52
75
  lastName: string;
@@ -62,7 +85,7 @@ export interface IProposalGroundSegment extends IProposalSegment {
62
85
  groundSegmentLocationType: GroundSegmentLocationType;
63
86
  scheduledDepartureLocation: Facility;
64
87
  scheduledArrivalLocation: Facility;
65
- groundTransportatationServices?: IGroundTransportationService[];
88
+ groundTransportationServices?: IGroundTransportationService[];
66
89
  }
67
90
  export declare enum ProposalStatus {
68
91
  CREATED = "created",
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.Proposal = exports.ProposalStatus = exports.GroundSegmentLocationType = exports.CrewMemberTypes = exports.TypeOfService = void 0;
3
+ exports.Proposal = exports.ProposalStatus = exports.GroundSegmentLocationType = exports.ProposalAirSegmentType = exports.ProposalLocationProxmityAssociationType = exports.CrewMemberTypes = exports.TypeOfService = void 0;
4
4
  const _1 = require("./");
5
5
  var TypeOfService;
6
6
  (function (TypeOfService) {
@@ -14,6 +14,22 @@ var CrewMemberTypes;
14
14
  CrewMemberTypes["COPILOT"] = "copilot";
15
15
  CrewMemberTypes["FLIGHT_ATTENDANT"] = "flight-attendant";
16
16
  })(CrewMemberTypes = exports.CrewMemberTypes || (exports.CrewMemberTypes = {}));
17
+ var ProposalLocationProxmityAssociationType;
18
+ (function (ProposalLocationProxmityAssociationType) {
19
+ ProposalLocationProxmityAssociationType["RECIPIENT_FACILITY"] = "Recipient Facility";
20
+ ProposalLocationProxmityAssociationType["RECOVERY_LOCATION"] = "Recovery Location";
21
+ ProposalLocationProxmityAssociationType["NONE"] = "None";
22
+ })(ProposalLocationProxmityAssociationType = exports.ProposalLocationProxmityAssociationType || (exports.ProposalLocationProxmityAssociationType = {}));
23
+ var ProposalAirSegmentType;
24
+ (function (ProposalAirSegmentType) {
25
+ ProposalAirSegmentType["REPOSITIONING_ROUND_TRIP"] = "Repositioning Round Trip";
26
+ ProposalAirSegmentType["REPOSITIONING_ONE_WAY"] = "Repositioning One Way";
27
+ ProposalAirSegmentType["OUTBOUND_FROM_RECIPIENT_FACILITY_ONE_WAY"] = "Outbound from Recipient Facility One Way";
28
+ ProposalAirSegmentType["INBOUND_TO_RECOVERY_LOCATION"] = "Inbound to Recovery Location";
29
+ ProposalAirSegmentType["INBOUND_TO_RECIPIENT_LOCATION"] = "Inbound to Recipient Location";
30
+ ProposalAirSegmentType["EQUIPMENT_RETURN"] = "Equipment Return";
31
+ ProposalAirSegmentType["OTHER"] = "Other";
32
+ })(ProposalAirSegmentType = exports.ProposalAirSegmentType || (exports.ProposalAirSegmentType = {}));
17
33
  var GroundSegmentLocationType;
18
34
  (function (GroundSegmentLocationType) {
19
35
  GroundSegmentLocationType["LOCAL"] = "Local";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.84",
3
+ "version": "0.2.86",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",