@pulsecharterconnect/types 0.2.46 → 0.2.48

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.
@@ -15,8 +15,8 @@ export declare enum CaseWorkflowStepStatus {
15
15
  NOT_STARTED = "Not Started"
16
16
  }
17
17
  export declare enum CaseWorkflowStepActionLabel {
18
- CREATE_REQUEST = "Create Request",
19
- EDIT_REQUEST = "Edit Request",
18
+ CREATE_REQUEST = "Create Case",
19
+ EDIT_REQUEST = "Edit Case",
20
20
  VIEW_PROPOSALS = "View Proposals",
21
21
  CREATE_PROPOSAL = "Create Proposal",
22
22
  ADD_PASSENGERS = "Add Passengers",
@@ -18,8 +18,8 @@ var CaseWorkflowStepStatus;
18
18
  })(CaseWorkflowStepStatus = exports.CaseWorkflowStepStatus || (exports.CaseWorkflowStepStatus = {}));
19
19
  var CaseWorkflowStepActionLabel;
20
20
  (function (CaseWorkflowStepActionLabel) {
21
- CaseWorkflowStepActionLabel["CREATE_REQUEST"] = "Create Request";
22
- CaseWorkflowStepActionLabel["EDIT_REQUEST"] = "Edit Request";
21
+ CaseWorkflowStepActionLabel["CREATE_REQUEST"] = "Create Case";
22
+ CaseWorkflowStepActionLabel["EDIT_REQUEST"] = "Edit Case";
23
23
  CaseWorkflowStepActionLabel["VIEW_PROPOSALS"] = "View Proposals";
24
24
  CaseWorkflowStepActionLabel["CREATE_PROPOSAL"] = "Create Proposal";
25
25
  CaseWorkflowStepActionLabel["ADD_PASSENGERS"] = "Add Passengers";
@@ -153,6 +153,7 @@ export interface ITransportationRequest {
153
153
  surgicalServicesRequested: boolean;
154
154
  transportationOptions: TransportationOptions;
155
155
  status: TransportationRequestStatus;
156
+ cancellationReason?: string;
156
157
  createdAt?: number;
157
158
  updatedAt?: number;
158
159
  }
@@ -175,6 +176,7 @@ export declare class TransportationRequest implements ITransportationRequest {
175
176
  surgicalServicesRequested: boolean;
176
177
  transportationOptions: TransportationOptions;
177
178
  status: TransportationRequestStatus;
179
+ cancellationReason?: string | undefined;
178
180
  createdAt?: number;
179
181
  updatedAt?: number;
180
182
  constructor(transportationRequest: ITransportationRequest);
@@ -189,6 +189,7 @@ class TransportationRequest {
189
189
  transportationRequest.surgicalServicesRequested;
190
190
  this.transportationOptions = transportationRequest.transportationOptions;
191
191
  this.status = transportationRequest.status;
192
+ this.cancellationReason = transportationRequest.cancellationReason;
192
193
  this.createdAt = transportationRequest.createdAt;
193
194
  this.updatedAt = transportationRequest.updatedAt;
194
195
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.46",
3
+ "version": "0.2.48",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",