@clxmedia/types 1.0.191 → 1.0.193

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.
@@ -25,7 +25,18 @@ export type XperienceRightsData = {
25
25
  qualifiers: number[];
26
26
  };
27
27
  };
28
+ specialistTypes?: {
29
+ company_master_id: number;
30
+ specialist_type: SpecialistType[];
31
+ }[];
28
32
  };
33
+ export declare enum SpecialistType {
34
+ ACCOUNT_MGR = "ACCOUNT_MGR",
35
+ IMPLEMENTATION = "IMPLEMENTATION",
36
+ SEARCH = "SEARCH",
37
+ MEDIA = "MEDIA",
38
+ PERFORMANCE = "PERFORMANCE"
39
+ }
29
40
  export type CLiQUserLocatorType = "user" | "group" | "role" | "right" | "odoo_role";
30
41
  export type CLiQUserLocatorConstraint = "internal" | "external";
31
42
  export type CLiQUserLocatorRoles = "implementation_specialist" | "account_manager" | "client_service_analyst";
@@ -1,2 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SpecialistType = void 0;
4
+ var SpecialistType;
5
+ (function (SpecialistType) {
6
+ SpecialistType["ACCOUNT_MGR"] = "ACCOUNT_MGR";
7
+ SpecialistType["IMPLEMENTATION"] = "IMPLEMENTATION";
8
+ SpecialistType["SEARCH"] = "SEARCH";
9
+ SpecialistType["MEDIA"] = "MEDIA";
10
+ SpecialistType["PERFORMANCE"] = "PERFORMANCE";
11
+ })(SpecialistType || (exports.SpecialistType = SpecialistType = {}));
@@ -197,7 +197,7 @@ export type ProjectReminderConfig = {
197
197
  };
198
198
  export type CLXPriority = 'low' | 'normal' | 'urgent';
199
199
  export type CLXTaskChecklistItem = {
200
- slug: number;
200
+ guid: string;
201
201
  description: string;
202
202
  required: boolean;
203
203
  is_done: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clxmedia/types",
3
- "version": "1.0.191",
3
+ "version": "1.0.193",
4
4
  "description": "Conversion Logix TypeScript type definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -106,4 +106,4 @@
106
106
  "url": "git+https://github.com/adsupnow/clxmedia-type-definitions.git"
107
107
  },
108
108
  "bugs": "https://github.com/adsupnow/clxmedia-type-definitions"
109
- }
109
+ }