@pulsecharterconnect/types 0.1.24 → 0.1.26
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/Trip.d.ts +3 -0
- package/package.json +1 -1
package/dist/types/Trip.d.ts
CHANGED
|
@@ -97,8 +97,10 @@ export declare enum Gender {
|
|
|
97
97
|
export interface IParticipant {
|
|
98
98
|
id: string;
|
|
99
99
|
organizationId: string;
|
|
100
|
+
prefix?: string;
|
|
100
101
|
firstName: string;
|
|
101
102
|
lastName: string;
|
|
103
|
+
suffix?: string;
|
|
102
104
|
phoneNumber: string;
|
|
103
105
|
gender?: Gender;
|
|
104
106
|
weightInPounds?: number;
|
|
@@ -129,6 +131,7 @@ export interface ITripParticipant {
|
|
|
129
131
|
participantRole: TripParticipantRole;
|
|
130
132
|
participant: IParticipant;
|
|
131
133
|
pilotTimeout?: number;
|
|
134
|
+
pilotTimeoutTimezone?: string;
|
|
132
135
|
}
|
|
133
136
|
export interface ITripOrganRecoverySegment extends ITripSegment {
|
|
134
137
|
organRecoveryInProcessStatus: OrganRecoveryInProcessStatus;
|