@pulsecharterconnect/types 0.0.39 → 0.0.41

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.
@@ -119,7 +119,6 @@ export interface IAircraft {
119
119
  year: number;
120
120
  maxPassengers: number;
121
121
  insurance: IInsurance[];
122
- safetyCertifications: SafetyCertifications[];
123
122
  }
124
123
  export interface ISystemAdminOrganization {
125
124
  }
@@ -139,6 +138,7 @@ export interface ITranportationOperatorOrganization {
139
138
  states?: StateCode[];
140
139
  unosRegions?: number[];
141
140
  };
141
+ safetyCertifications: SafetyCertifications[];
142
142
  }
143
143
  export interface IOrganization {
144
144
  id: string;
@@ -66,7 +66,7 @@ export declare enum LungEquipmentType {
66
66
  export type NoType = '';
67
67
  export type OrganTransport = {
68
68
  organType: OrganType;
69
- equipmentType: HeartEquipmentType | LungEquipmentType | NoType;
69
+ equipmentType?: HeartEquipmentType | LungEquipmentType | NoType;
70
70
  };
71
71
  export declare enum SegmentLocationType {
72
72
  RECIPIENT_TRANSPLANT_CENTER = "Recipient Transplant Center",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.0.39",
3
+ "version": "0.0.41",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",