@saritasa/crm-delmar-core-sdk 0.2.115 → 0.2.118
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.
package/README.md
CHANGED
|
@@ -37,8 +37,8 @@ export interface ExportUsersStartCreateRequestParams {
|
|
|
37
37
|
departmentIn?: Array<number>;
|
|
38
38
|
id?: number;
|
|
39
39
|
idIn?: Array<number>;
|
|
40
|
-
isAccountManager?:
|
|
41
|
-
isProjectManager?:
|
|
40
|
+
isAccountManager?: boolean;
|
|
41
|
+
isProjectManager?: boolean;
|
|
42
42
|
isStaff?: boolean;
|
|
43
43
|
isStaffIn?: Array<boolean>;
|
|
44
44
|
ordering?: string;
|
|
@@ -24,8 +24,8 @@ export interface UsersCreateRequestParams {
|
|
|
24
24
|
export interface UsersDailyTabularReportListRequestParams {
|
|
25
25
|
id: number;
|
|
26
26
|
period: string;
|
|
27
|
-
isAccountManager?:
|
|
28
|
-
isProjectManager?:
|
|
27
|
+
isAccountManager?: boolean;
|
|
28
|
+
isProjectManager?: boolean;
|
|
29
29
|
}
|
|
30
30
|
export interface UsersExpectedPeriodsApproversListRequestParams {
|
|
31
31
|
id: number;
|
|
@@ -41,8 +41,8 @@ export interface UsersListRequestParams {
|
|
|
41
41
|
departmentIn?: Array<number>;
|
|
42
42
|
id?: number;
|
|
43
43
|
idIn?: Array<number>;
|
|
44
|
-
isAccountManager?:
|
|
45
|
-
isProjectManager?:
|
|
44
|
+
isAccountManager?: boolean;
|
|
45
|
+
isProjectManager?: boolean;
|
|
46
46
|
isStaff?: boolean;
|
|
47
47
|
isStaffIn?: Array<boolean>;
|
|
48
48
|
limit?: number;
|
|
@@ -84,8 +84,8 @@ export interface UsersUtilizationChartListRequestParams {
|
|
|
84
84
|
departmentIn?: Array<number>;
|
|
85
85
|
id?: number;
|
|
86
86
|
idIn?: Array<number>;
|
|
87
|
-
isAccountManager?:
|
|
88
|
-
isProjectManager?:
|
|
87
|
+
isAccountManager?: boolean;
|
|
88
|
+
isProjectManager?: boolean;
|
|
89
89
|
isStaff?: boolean;
|
|
90
90
|
isStaffIn?: Array<boolean>;
|
|
91
91
|
role?: number;
|
package/package.json
CHANGED