@pulsecharterconnect/types 0.2.13 → 0.2.15
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.
package/dist/types/Proposal.d.ts
CHANGED
|
@@ -8,7 +8,9 @@ export interface IProposalSegment {
|
|
|
8
8
|
typeOfService: TypeOfService;
|
|
9
9
|
segmentNumber: number;
|
|
10
10
|
scheduledDepartureTime: number;
|
|
11
|
+
scheduledDepartureTimezone?: string;
|
|
11
12
|
scheduledArrivalTime: number;
|
|
13
|
+
scheduledArrivalTimezone?: string;
|
|
12
14
|
}
|
|
13
15
|
export declare enum CrewMemberTypes {
|
|
14
16
|
PILOT = "pilot",
|
|
@@ -50,11 +50,11 @@ export declare enum TransportRequestType {
|
|
|
50
50
|
}
|
|
51
51
|
export declare enum OrganType {
|
|
52
52
|
HEART = "Heart",
|
|
53
|
-
LEFT_LUNG = "Left
|
|
54
|
-
RIGHT_LUNG = "Right
|
|
55
|
-
LUNG_EN_BLOC = "Lung En Bloc",
|
|
56
|
-
LEFT_KIDNEY = "Left
|
|
57
|
-
RIGHT_KIDNEY = "Right
|
|
53
|
+
LEFT_LUNG = "Lung - Left",
|
|
54
|
+
RIGHT_LUNG = "Lung - Right",
|
|
55
|
+
LUNG_EN_BLOC = "Lung - En Bloc",
|
|
56
|
+
LEFT_KIDNEY = "Kidney - Left",
|
|
57
|
+
RIGHT_KIDNEY = "Kidney - Right",
|
|
58
58
|
LIVER = "Liver",
|
|
59
59
|
PANCREAS = "Pancreas",
|
|
60
60
|
VCA = "VCA",
|
|
@@ -57,11 +57,11 @@ var TransportRequestType;
|
|
|
57
57
|
var OrganType;
|
|
58
58
|
(function (OrganType) {
|
|
59
59
|
OrganType["HEART"] = "Heart";
|
|
60
|
-
OrganType["LEFT_LUNG"] = "Left
|
|
61
|
-
OrganType["RIGHT_LUNG"] = "Right
|
|
62
|
-
OrganType["LUNG_EN_BLOC"] = "Lung En Bloc";
|
|
63
|
-
OrganType["LEFT_KIDNEY"] = "Left
|
|
64
|
-
OrganType["RIGHT_KIDNEY"] = "Right
|
|
60
|
+
OrganType["LEFT_LUNG"] = "Lung - Left";
|
|
61
|
+
OrganType["RIGHT_LUNG"] = "Lung - Right";
|
|
62
|
+
OrganType["LUNG_EN_BLOC"] = "Lung - En Bloc";
|
|
63
|
+
OrganType["LEFT_KIDNEY"] = "Kidney - Left";
|
|
64
|
+
OrganType["RIGHT_KIDNEY"] = "Kidney - Right";
|
|
65
65
|
OrganType["LIVER"] = "Liver";
|
|
66
66
|
OrganType["PANCREAS"] = "Pancreas";
|
|
67
67
|
OrganType["VCA"] = "VCA";
|