@pulsecharterconnect/types 0.1.11 → 0.1.13

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.
@@ -68,6 +68,7 @@ export interface IProposal {
68
68
  requestForProposalId: string;
69
69
  transportationOperatorId: string;
70
70
  price: number;
71
+ markupPercentage: number;
71
72
  proposalStatus: ProposalStatus;
72
73
  proposalSegments: Array<IProposalAirSegment | IProposalGroundSegment>;
73
74
  createdAt?: number;
@@ -78,6 +79,7 @@ export declare class Proposal implements IProposal {
78
79
  requestForProposalId: string;
79
80
  transportationOperatorId: string;
80
81
  price: number;
82
+ markupPercentage: number;
81
83
  proposalStatus: ProposalStatus;
82
84
  proposalSegments: Array<IProposalAirSegment | IProposalGroundSegment>;
83
85
  createdAt?: number;
@@ -34,6 +34,7 @@ class Proposal {
34
34
  this.requestForProposalId = proposal.requestForProposalId;
35
35
  this.transportationOperatorId = proposal.transportationOperatorId;
36
36
  this.price = proposal.price;
37
+ this.markupPercentage = proposal.markupPercentage;
37
38
  this.proposalStatus = proposal.proposalStatus;
38
39
  this.proposalSegments = proposal.proposalSegments;
39
40
  this.createdAt = proposal.createdAt;
@@ -1,5 +1,5 @@
1
1
  import { Facility, GroundService } from "./Organization";
2
- import { IGroundTransportationService, IProposalSegment } from "./Proposal";
2
+ import { IProposalSegment } from "./Proposal";
3
3
  export declare enum TripStatus {
4
4
  PREPARATION = "preparation",
5
5
  IN_PROGRESS = "in-progress",
@@ -123,7 +123,6 @@ export interface ITripOrganRecoverySegment extends ITripSegment {
123
123
  estimatedOrganRecoveryTime: number;
124
124
  actualOrganRecoveryTime: number;
125
125
  surgicalTeam: ITripParticipant[];
126
- organRecoveryServices?: IGroundTransportationService[];
127
126
  }
128
127
  export interface ITrip {
129
128
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",