@pulsecharterconnect/types 0.2.65 → 0.2.66

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.
@@ -85,6 +85,10 @@ export interface IProposal {
85
85
  reasonForAcceptDeclineOrUpdate?: string;
86
86
  additionalInformation?: string;
87
87
  source?: "Form" | "Document";
88
+ physicianApproverName?: string;
89
+ administratorApproverName?: string;
90
+ opoCostCoverage?: number;
91
+ opoApproverName?: string;
88
92
  createdAt?: number;
89
93
  updatedAt?: number;
90
94
  }
@@ -105,6 +109,10 @@ export declare class Proposal implements IProposal {
105
109
  updatedAt?: number;
106
110
  acceptedOrDeclinedByUserId?: string;
107
111
  reasonForAcceptDeclineOrUpdate?: string;
112
+ physicianApproverName?: string;
113
+ administratorApproverName?: string;
114
+ opoCostCoverage?: number;
115
+ opoApproverName?: string;
108
116
  constructor(proposal: IProposal);
109
117
  createTripAirSegmentsFromProposal(tripAirSegments: ITripSegment[]): ITripSegment[];
110
118
  createTripGroundSegmentsFromProposal(tripGroundSegments: ITripSegment[]): ITripSegment[];
@@ -45,6 +45,10 @@ class Proposal {
45
45
  this.acceptedOrDeclinedByUserId = proposal.acceptedOrDeclinedByUserId;
46
46
  this.reasonForAcceptDeclineOrUpdate =
47
47
  proposal.reasonForAcceptDeclineOrUpdate;
48
+ this.physicianApproverName = proposal.physicianApproverName;
49
+ this.administratorApproverName = proposal.administratorApproverName;
50
+ this.opoCostCoverage = proposal.opoCostCoverage;
51
+ this.opoApproverName = proposal.opoApproverName;
48
52
  }
49
53
  createTripAirSegmentsFromProposal(tripAirSegments) {
50
54
  tripAirSegments = this.proposalSegments
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.65",
3
+ "version": "0.2.66",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",