@clxmedia/types 1.0.190 → 1.0.192
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.
|
@@ -59,4 +59,4 @@ export type CLiQUserLocatorRight = CLiQUserLocatorBase & {
|
|
|
59
59
|
export type CLiQUserLocatorRightSlug = `right:${XperienceScopes}@${XperienceAbility}`;
|
|
60
60
|
export type CLiQUserLocatorRightQualifiedSlug = `right:${XperienceScopes}@${XperienceAbility}:${CLiQUserLocatorConstraint}`;
|
|
61
61
|
export type CLiQUserLocator = CLiQUserLocatorUser | CLiQUserLocatorGroup | CLiQUserLocatorRole | CLiQUserLocatorRight | CLiQUserLocatorOdooRole;
|
|
62
|
-
export type
|
|
62
|
+
export type CLiQUserLocatorSlug = CLiQUserLocatorUserSlug | CLiQUserLocatorGroupSlug | CLiQUserLocatorRoleSlug | CLiQUserLocatorRightSlug | CLiQUserLocatorRightQualifiedSlug | CLiQUserLocatorOdooRoleSlug;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { CLiQUserLocator,
|
|
1
|
+
import type { CLiQUserLocator, CLiQUserLocatorSlug } from "../auth";
|
|
2
2
|
import { CLXFormRuleSet } from "../clxforms";
|
|
3
3
|
import type { EnterpriseEventSlugs } from "../events";
|
|
4
4
|
export type CLXSortDirection = 'asc' | 'desc';
|
|
5
5
|
export type ISODateString = `${number}-${number}-${number}`;
|
|
6
6
|
export type CLXTaskStatus = 'pending' | 'open' | 'done';
|
|
7
7
|
export type CLXTaskFilter = {
|
|
8
|
-
cliq_user_locator_slug?:
|
|
8
|
+
cliq_user_locator_slug?: CLiQUserLocatorSlug;
|
|
9
9
|
my_tasks?: boolean;
|
|
10
10
|
master_id?: number;
|
|
11
11
|
include_closed?: boolean;
|
|
@@ -197,7 +197,7 @@ export type ProjectReminderConfig = {
|
|
|
197
197
|
};
|
|
198
198
|
export type CLXPriority = 'low' | 'normal' | 'urgent';
|
|
199
199
|
export type CLXTaskChecklistItem = {
|
|
200
|
-
|
|
200
|
+
guid: string;
|
|
201
201
|
description: string;
|
|
202
202
|
required: boolean;
|
|
203
203
|
is_done: boolean;
|