@pulsecharterconnect/types 0.1.42 → 0.1.43
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.
|
@@ -166,14 +166,14 @@ export interface IOrganization {
|
|
|
166
166
|
name: string;
|
|
167
167
|
type: OrganizationType;
|
|
168
168
|
featureFlags: IFeatureFlag[];
|
|
169
|
-
timezonePreference?:
|
|
169
|
+
timezonePreference?: ITimezonePreference;
|
|
170
170
|
systemAdminOrganizationDetails?: ISystemAdminOrganization;
|
|
171
171
|
transplantCenterOrganizationDetails?: ITransplantCenterOrganization;
|
|
172
172
|
transportationOperatorOrganizationDetails?: ITranportationOperatorOrganization;
|
|
173
173
|
createdAt?: number;
|
|
174
174
|
updatedAt?: number;
|
|
175
175
|
}
|
|
176
|
-
export interface
|
|
176
|
+
export interface ITimezonePreference {
|
|
177
177
|
displayMode: TimezoneDisplayMode;
|
|
178
178
|
organizationTimezone?: string;
|
|
179
179
|
}
|
|
@@ -183,7 +183,7 @@ export declare class Organization implements IOrganization {
|
|
|
183
183
|
name: string;
|
|
184
184
|
type: OrganizationType;
|
|
185
185
|
featureFlags: IFeatureFlag[];
|
|
186
|
-
timezonePreference?:
|
|
186
|
+
timezonePreference?: ITimezonePreference;
|
|
187
187
|
systemAdminOrganizationDetails?: ISystemAdminOrganization;
|
|
188
188
|
transplantCenterOrganizationDetails?: ITransplantCenterOrganization;
|
|
189
189
|
transportationOperatorOrganizationDetails?: ITranportationOperatorOrganization;
|