@pulsecharterconnect/types 0.2.15 → 0.2.17
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.
|
@@ -95,7 +95,7 @@ export declare enum EquipmentType {
|
|
|
95
95
|
export declare function getEquipmentForOrgan(organType: OrganType): EquipmentType[];
|
|
96
96
|
export type OrganTransport = {
|
|
97
97
|
organType: OrganType;
|
|
98
|
-
equipmentType?: EquipmentType;
|
|
98
|
+
equipmentType?: EquipmentType | null;
|
|
99
99
|
};
|
|
100
100
|
export declare enum SegmentLocationType {
|
|
101
101
|
RECIPIENT_TRANSPLANT_CENTER = "Recipient Transplant Center",
|
|
@@ -127,7 +127,8 @@ export declare const RECOVERY_TIME_DURATION: {
|
|
|
127
127
|
"DCD NRP": Duration<true>;
|
|
128
128
|
};
|
|
129
129
|
export type TransportationOptions = {
|
|
130
|
-
|
|
130
|
+
air: boolean;
|
|
131
|
+
jet?: boolean;
|
|
131
132
|
ground: boolean;
|
|
132
133
|
groundOptions?: GroundService[];
|
|
133
134
|
};
|