@pulsecharterconnect/types 0.2.59 → 0.2.60

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.
@@ -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 [EquipmentType.PARAGONIX_KIDNEY_VAULT];
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.59",
3
+ "version": "0.2.60",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",