@clxmedia/types 1.0.111 → 1.0.112
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.
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { EnterpriseEventSlugs } from "../events";
|
|
2
2
|
export type CLXSortDirection = 'asc' | 'desc';
|
|
3
|
-
export type CLXTaskAssignmentType = 'unassigned' | 'internal' | 'external' | 'role' | 'group' | 'user';
|
|
3
|
+
export type CLXTaskAssignmentType = 'unassigned' | 'internal' | 'external' | 'role' | 'group' | 'user' | 'right';
|
|
4
4
|
export type CLXTaskAssignmentGeneral = {
|
|
5
5
|
type: 'unassigned' | 'internal' | 'external';
|
|
6
6
|
};
|
|
7
7
|
export type CLXTaskAssignmentSlug = {
|
|
8
|
-
type: 'role' | 'group';
|
|
8
|
+
type: 'role' | 'group' | 'right';
|
|
9
9
|
slug: string;
|
|
10
10
|
};
|
|
11
11
|
export type CLXTaskAssignmentUser = {
|