@pulsecharterconnect/types 0.2.94 → 0.2.96

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.
@@ -126,6 +126,7 @@ export interface ITripAirSegment extends ITripSegment {
126
126
  scheduledTailNumber?: string;
127
127
  actualTailNumber?: string;
128
128
  currentLocation?: IFlightTrackingLocation;
129
+ tailNumberIsBlocked?: boolean;
129
130
  }
130
131
  export declare enum TripParticipantRole {
131
132
  SURGEON = "surgeon",
@@ -4,6 +4,7 @@ export type NotificationSettings = {
4
4
  voice: boolean;
5
5
  inApp: boolean;
6
6
  snoozeUntil?: number;
7
+ snoozeUntilTimezone?: string;
7
8
  };
8
9
  export declare enum Role {
9
10
  SUPER_ADMIN = "Super Admin",
@@ -59,6 +59,7 @@ class User {
59
59
  voice: notificationSettings.voice || false,
60
60
  inApp: notificationSettings.inApp || true,
61
61
  snoozeUntil: notificationSettings.snoozeUntil || 0,
62
+ snoozeUntilTimezone: notificationSettings.snoozeUntilTimezone || "UTC",
62
63
  };
63
64
  this.verifiedEmail = verifiedEmail || false;
64
65
  this.status = status || UserStatus.CREATED;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulsecharterconnect/types",
3
- "version": "0.2.94",
3
+ "version": "0.2.96",
4
4
  "description": "A TypeScript library for enhanced type safety.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",