@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.1.24",
3
+ "version": "0.1.26",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",