@pulsecharterconnect/types 0.2.59 → 0.2.61
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.
|
@@ -110,6 +110,8 @@ export type Facility = {
|
|
|
110
110
|
utcOffsetMinutes: number;
|
|
111
111
|
pickupInstructions?: string;
|
|
112
112
|
dropoffInstructions?: string;
|
|
113
|
+
preferredNearbyAirportCode?: string;
|
|
114
|
+
preferredNearbyFBO?: Facility;
|
|
113
115
|
};
|
|
114
116
|
export type County = {
|
|
115
117
|
countyName: string;
|
|
@@ -94,7 +94,8 @@ export declare enum EquipmentType {
|
|
|
94
94
|
ORGANOX_METRA = "OrganOx metra",
|
|
95
95
|
ORS_LIFEPORT_LIVER = "ORS LifePort Liver",
|
|
96
96
|
PARAGONIX_LIVERGUARD = "Paragonix LIVERguard",
|
|
97
|
-
PARAGONIX_KIDNEY_VAULT = "Paragonix KidneyVault"
|
|
97
|
+
PARAGONIX_KIDNEY_VAULT = "Paragonix KidneyVault",
|
|
98
|
+
ORS_LIFEPORT_KIDNEY = "ORS LifePort Kidney"
|
|
98
99
|
}
|
|
99
100
|
export declare function getEquipmentForOrgan(organType: OrganType): EquipmentType[];
|
|
100
101
|
export type OrganTransport = {
|
|
@@ -110,6 +110,7 @@ var EquipmentType;
|
|
|
110
110
|
EquipmentType["PARAGONIX_LIVERGUARD"] = "Paragonix LIVERguard";
|
|
111
111
|
// Kidney Equipment Types
|
|
112
112
|
EquipmentType["PARAGONIX_KIDNEY_VAULT"] = "Paragonix KidneyVault";
|
|
113
|
+
EquipmentType["ORS_LIFEPORT_KIDNEY"] = "ORS LifePort Kidney";
|
|
113
114
|
})(EquipmentType = exports.EquipmentType || (exports.EquipmentType = {}));
|
|
114
115
|
function getEquipmentForOrgan(organType) {
|
|
115
116
|
switch (organType) {
|
|
@@ -136,7 +137,10 @@ function getEquipmentForOrgan(organType) {
|
|
|
136
137
|
];
|
|
137
138
|
case OrganType.LEFT_KIDNEY:
|
|
138
139
|
case OrganType.RIGHT_KIDNEY:
|
|
139
|
-
return [
|
|
140
|
+
return [
|
|
141
|
+
EquipmentType.PARAGONIX_KIDNEY_VAULT,
|
|
142
|
+
EquipmentType.ORS_LIFEPORT_KIDNEY,
|
|
143
|
+
];
|
|
140
144
|
default:
|
|
141
145
|
return [];
|
|
142
146
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulsecharterconnect/types",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.61",
|
|
4
4
|
"description": "A TypeScript library for enhanced type safety.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"types",
|
|
19
19
|
"interfaces"
|
|
20
20
|
],
|
|
21
|
-
"author": "
|
|
21
|
+
"author": "Chris Tyler",
|
|
22
22
|
"license": "MIT",
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"typescript": "^4.0.0"
|