@pulsecharterconnect/types 0.0.29 → 0.0.31
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,8 +68,8 @@ export type OrganTransport = {
|
|
|
68
68
|
equipmentType: HeartEquipmentType | LungEquipmentType | NoType;
|
|
69
69
|
};
|
|
70
70
|
export declare enum SegmentLocationType {
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
RECIPIENT_TRANSPLANT_CENTER = "Recipient Transplant Center",
|
|
72
|
+
DONOR_RECOVERY_LOCATION = "Donor Recovery Location",
|
|
73
73
|
ADDRESS = "Address"
|
|
74
74
|
}
|
|
75
75
|
export type TransportSegment = {
|
|
@@ -105,6 +105,8 @@ export interface ITransportationRequest {
|
|
|
105
105
|
surgicalServicesRequested: boolean;
|
|
106
106
|
transportationOptions: TransportationOptions;
|
|
107
107
|
status: TransportationRequestStatus;
|
|
108
|
+
createdAt: number;
|
|
109
|
+
updatedAt: number;
|
|
108
110
|
}
|
|
109
111
|
export declare class TransportationRequest implements ITransportationRequest {
|
|
110
112
|
id: string;
|
|
@@ -123,5 +125,7 @@ export declare class TransportationRequest implements ITransportationRequest {
|
|
|
123
125
|
surgicalServicesRequested: boolean;
|
|
124
126
|
transportationOptions: TransportationOptions;
|
|
125
127
|
status: TransportationRequestStatus;
|
|
128
|
+
createdAt: number;
|
|
129
|
+
updatedAt: number;
|
|
126
130
|
constructor(transportationRequest: TransportationRequest);
|
|
127
131
|
}
|
|
@@ -73,8 +73,8 @@ var LungEquipmentType;
|
|
|
73
73
|
})(LungEquipmentType = exports.LungEquipmentType || (exports.LungEquipmentType = {}));
|
|
74
74
|
var SegmentLocationType;
|
|
75
75
|
(function (SegmentLocationType) {
|
|
76
|
-
SegmentLocationType["
|
|
77
|
-
SegmentLocationType["
|
|
76
|
+
SegmentLocationType["RECIPIENT_TRANSPLANT_CENTER"] = "Recipient Transplant Center";
|
|
77
|
+
SegmentLocationType["DONOR_RECOVERY_LOCATION"] = "Donor Recovery Location";
|
|
78
78
|
SegmentLocationType["ADDRESS"] = "Address";
|
|
79
79
|
})(SegmentLocationType = exports.SegmentLocationType || (exports.SegmentLocationType = {}));
|
|
80
80
|
var RecoveryType;
|
|
@@ -101,6 +101,8 @@ class TransportationRequest {
|
|
|
101
101
|
this.surgicalServicesRequested = transportationRequest.surgicalServicesRequested;
|
|
102
102
|
this.transportationOptions = transportationRequest.transportationOptions;
|
|
103
103
|
this.status = transportationRequest.status;
|
|
104
|
+
this.createdAt = transportationRequest.createdAt;
|
|
105
|
+
this.updatedAt = transportationRequest.updatedAt;
|
|
104
106
|
}
|
|
105
107
|
}
|
|
106
108
|
exports.TransportationRequest = TransportationRequest;
|