@pulsecharterconnect/types 0.0.20 → 0.0.21
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,8 +1,24 @@
|
|
|
1
1
|
export type OrganizationType = 'System Admin' | 'Transplant Center' | 'Transportation Operator' | 'Surgical Provider' | 'Donor Hospital';
|
|
2
2
|
export type AirService = 'Jet' | 'TurboProp' | 'Helicopter';
|
|
3
3
|
export type GroundService = 'Ambulance' | 'Limo' | 'Car' | 'Mid-Size SUV' | 'Full-Size SUV';
|
|
4
|
-
export
|
|
5
|
-
|
|
4
|
+
export declare enum SafetyRequirements {
|
|
5
|
+
ARGUS_GOLD = "ARGUS Gold",
|
|
6
|
+
ARGUS_GOLD_PLUS = "ARGUS Gold Plus",
|
|
7
|
+
ARGUS_PLATINUM = "ARGUS Platinum",
|
|
8
|
+
ISBAO_LEVEL_1 = "IS-BAO Level I",
|
|
9
|
+
ISBAO_LEVEL_2 = "IS-BAO Level II",
|
|
10
|
+
ISBAO_LEVEL_3 = "IS-BAO Level III",
|
|
11
|
+
WYVERN_WING = "WYVERN Wingman",
|
|
12
|
+
WYVERN_REGISTERED = "WYVERN Registered",
|
|
13
|
+
INDEPENDENT_AUDIT = "Independent Audit",
|
|
14
|
+
CAMTS = "CAMTS",
|
|
15
|
+
OTHER = "Other"
|
|
16
|
+
}
|
|
17
|
+
export type SafetyCertifications = {
|
|
18
|
+
certification: SafetyRequirements;
|
|
19
|
+
expirationDate: number;
|
|
20
|
+
certificationDocumentUrl: string;
|
|
21
|
+
};
|
|
6
22
|
export type Facility = {
|
|
7
23
|
id: string;
|
|
8
24
|
displayName: string;
|
|
@@ -1,6 +1,20 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Organization = void 0;
|
|
3
|
+
exports.Organization = exports.SafetyRequirements = void 0;
|
|
4
|
+
var SafetyRequirements;
|
|
5
|
+
(function (SafetyRequirements) {
|
|
6
|
+
SafetyRequirements["ARGUS_GOLD"] = "ARGUS Gold";
|
|
7
|
+
SafetyRequirements["ARGUS_GOLD_PLUS"] = "ARGUS Gold Plus";
|
|
8
|
+
SafetyRequirements["ARGUS_PLATINUM"] = "ARGUS Platinum";
|
|
9
|
+
SafetyRequirements["ISBAO_LEVEL_1"] = "IS-BAO Level I";
|
|
10
|
+
SafetyRequirements["ISBAO_LEVEL_2"] = "IS-BAO Level II";
|
|
11
|
+
SafetyRequirements["ISBAO_LEVEL_3"] = "IS-BAO Level III";
|
|
12
|
+
SafetyRequirements["WYVERN_WING"] = "WYVERN Wingman";
|
|
13
|
+
SafetyRequirements["WYVERN_REGISTERED"] = "WYVERN Registered";
|
|
14
|
+
SafetyRequirements["INDEPENDENT_AUDIT"] = "Independent Audit";
|
|
15
|
+
SafetyRequirements["CAMTS"] = "CAMTS";
|
|
16
|
+
SafetyRequirements["OTHER"] = "Other";
|
|
17
|
+
})(SafetyRequirements = exports.SafetyRequirements || (exports.SafetyRequirements = {}));
|
|
4
18
|
class Organization {
|
|
5
19
|
constructor(id, workOsId, name, type, systemAdminOrganizationDetails, transplantCenterOrganizationDetails, transportationOperatorOrganizationDetails) {
|
|
6
20
|
this.id = id;
|