@tolinax/ayoune-interfaces 2024.45.0 → 2024.47.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.
@@ -38,6 +38,8 @@ export interface ICalendar extends IDefaultFields {
38
38
  google: {
39
39
  watch?: boolean;
40
40
  webReceiver?: ObjectId;
41
+ resourceId?: String;
42
+ expiration?: String;
41
43
  };
42
44
  };
43
45
  services?: Array<{
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolinax/ayoune-interfaces",
3
- "version": "2024.45.0",
3
+ "version": "2024.47.0",
4
4
  "description": "Houses TypeScript interfaces for aYOUne",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",