@tolinax/ayoune-interfaces 2024.45.0 → 2024.46.0
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.
|
@@ -226,11 +226,16 @@ interface INotificationsEmail extends INotifications {
|
|
|
226
226
|
}
|
|
227
227
|
interface IMails {
|
|
228
228
|
syncGoogleMails: boolean;
|
|
229
|
+
syncOutlookMails: boolean;
|
|
229
230
|
}
|
|
230
231
|
interface IContacts {
|
|
231
232
|
syncGoogleContacts: boolean;
|
|
232
233
|
syncOutlookContacts: boolean;
|
|
233
234
|
}
|
|
235
|
+
interface ITasks {
|
|
236
|
+
syncGoogleTasks: boolean;
|
|
237
|
+
syncOutlookTasks: boolean;
|
|
238
|
+
}
|
|
234
239
|
interface ICalendar {
|
|
235
240
|
defaultCalendar?: string;
|
|
236
241
|
syncGoogleCalendar: boolean;
|
|
@@ -539,6 +544,7 @@ export interface IUserSetting extends IDefaultFields {
|
|
|
539
544
|
mails: IMails;
|
|
540
545
|
contacts: IContacts;
|
|
541
546
|
calendar: ICalendar;
|
|
547
|
+
tasks: ITasks;
|
|
542
548
|
xing_token?: string;
|
|
543
549
|
xing_token_secret?: string;
|
|
544
550
|
gitlabUsername?: string;
|