@clxmedia/types 1.0.145 → 1.0.147

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.
@@ -94,16 +94,16 @@ export type Origin = {
94
94
  };
95
95
  };
96
96
  export type ProjectNotificationRecipients = {
97
- to: ProjectNotificationRecipientLocator;
98
- cc?: ProjectNotificationRecipientLocator;
99
- bcc?: ProjectNotificationRecipientLocator;
97
+ to: ProjectNotificationRecipientLocator | ProjectNotificationRecipientLocator[];
98
+ cc?: ProjectNotificationRecipientLocator | ProjectNotificationRecipientLocator[];
99
+ bcc?: ProjectNotificationRecipientLocator | ProjectNotificationRecipientLocator[];
100
100
  };
101
101
  export type TaskNotificationRecipients = {
102
- to: TaskNotificationRecipientLocator;
103
- cc?: TaskNotificationRecipientLocator;
104
- bcc?: TaskNotificationRecipientLocator;
102
+ to: TaskNotificationRecipientLocator | TaskNotificationRecipientLocator[];
103
+ cc?: TaskNotificationRecipientLocator | TaskNotificationRecipientLocator[];
104
+ bcc?: TaskNotificationRecipientLocator | TaskNotificationRecipientLocator[];
105
105
  };
106
- export type NotificationRecipientType = 'user' | 'group' | 'right';
106
+ export type NotificationRecipientType = 'user' | 'group' | 'right' | 'odoo_role';
107
107
  export type NotificationRecipientLocator = {
108
108
  recipientType: NotificationRecipientType;
109
109
  recipient: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.145",
3
+ "version": "1.0.147",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",