@pulsecharterconnect/types 0.1.21 → 0.1.23
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Facility, GroundService } from "./Organization";
|
|
2
|
+
export declare const DISTANCE_THRESHOLD_MILES_AIR_VS_GROUND = 100;
|
|
2
3
|
export declare enum TransportationRequestStatus {
|
|
3
4
|
CREATED = "created",
|
|
4
5
|
AWAITING_SURGICAL_SERVICES_APPROVAL = "awaiting-surgical-services-approval",
|
|
@@ -64,10 +65,15 @@ export declare enum LungEquipmentType {
|
|
|
64
65
|
PARAGONIX_BAROGUARD = "Paragonix BAROguard",
|
|
65
66
|
XVIVO = "XVIVO"
|
|
66
67
|
}
|
|
68
|
+
export declare enum LiverEquipmentType {
|
|
69
|
+
TRANSMEDICS_OCS_LIVER = "TransMedics OCS Liver",
|
|
70
|
+
ORGANOX_METRA = "OrganOx metra",
|
|
71
|
+
ORS_LIFEPORT_LIVER = "ORS LifePort Liver"
|
|
72
|
+
}
|
|
67
73
|
export type NoType = "";
|
|
68
74
|
export type OrganTransport = {
|
|
69
75
|
organType: OrganType;
|
|
70
|
-
equipmentType?: HeartEquipmentType | LungEquipmentType | NoType;
|
|
76
|
+
equipmentType?: HeartEquipmentType | LungEquipmentType | LiverEquipmentType | NoType;
|
|
71
77
|
};
|
|
72
78
|
export declare enum SegmentLocationType {
|
|
73
79
|
RECIPIENT_TRANSPLANT_CENTER = "Recipient Transplant Center",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TransportationRequest = exports.RecoveryType = exports.SegmentLocationType = exports.LungEquipmentType = exports.HeartEquipmentType = exports.OrganType = exports.TransportRequestType = exports.OrganRecoveryStatus = exports.TransportationRequestProposalStatus = exports.TransportationRequestStatus = void 0;
|
|
3
|
+
exports.TransportationRequest = exports.RecoveryType = exports.SegmentLocationType = exports.LiverEquipmentType = exports.LungEquipmentType = exports.HeartEquipmentType = exports.OrganType = exports.TransportRequestType = exports.OrganRecoveryStatus = exports.TransportationRequestProposalStatus = exports.TransportationRequestStatus = exports.DISTANCE_THRESHOLD_MILES_AIR_VS_GROUND = void 0;
|
|
4
|
+
exports.DISTANCE_THRESHOLD_MILES_AIR_VS_GROUND = 100;
|
|
4
5
|
var TransportationRequestStatus;
|
|
5
6
|
(function (TransportationRequestStatus) {
|
|
6
7
|
TransportationRequestStatus["CREATED"] = "created";
|
|
@@ -73,6 +74,12 @@ var LungEquipmentType;
|
|
|
73
74
|
LungEquipmentType["PARAGONIX_BAROGUARD"] = "Paragonix BAROguard";
|
|
74
75
|
LungEquipmentType["XVIVO"] = "XVIVO";
|
|
75
76
|
})(LungEquipmentType = exports.LungEquipmentType || (exports.LungEquipmentType = {}));
|
|
77
|
+
var LiverEquipmentType;
|
|
78
|
+
(function (LiverEquipmentType) {
|
|
79
|
+
LiverEquipmentType["TRANSMEDICS_OCS_LIVER"] = "TransMedics OCS Liver";
|
|
80
|
+
LiverEquipmentType["ORGANOX_METRA"] = "OrganOx metra";
|
|
81
|
+
LiverEquipmentType["ORS_LIFEPORT_LIVER"] = "ORS LifePort Liver";
|
|
82
|
+
})(LiverEquipmentType = exports.LiverEquipmentType || (exports.LiverEquipmentType = {}));
|
|
76
83
|
var SegmentLocationType;
|
|
77
84
|
(function (SegmentLocationType) {
|
|
78
85
|
SegmentLocationType["RECIPIENT_TRANSPLANT_CENTER"] = "Recipient Transplant Center";
|