@hiennc24/constant 1.3.28 → 1.3.30

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.
@@ -56,6 +56,8 @@ declare const COLLECTIONS: {
56
56
  EMPLOYEE_PROFILE_COLLECTION_NAME: string;
57
57
  EMPLOYEE_HISTORY_REPOSITORY_NAME: string;
58
58
  EMPLOYEE_HISTORY_COLLECTION_NAME: string;
59
+ EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: string;
60
+ EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: string;
59
61
  EMPLOYEE_SETTING_REPOSITORY_NAME: string;
60
62
  EMPLOYEE_SETTING_COLLECTION_NAME: string;
61
63
  ORGANIZATION_REPOSITORY_NAME: string;
@@ -74,6 +74,8 @@ const COLLECTIONS = {
74
74
  EMPLOYEE_PROFILE_COLLECTION_NAME: "employee_profiles",
75
75
  EMPLOYEE_HISTORY_REPOSITORY_NAME: "employeeHistory",
76
76
  EMPLOYEE_HISTORY_COLLECTION_NAME: "employee_histories",
77
+ EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: "employeeChangeHistory",
78
+ EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: "employee_change_histories",
77
79
  EMPLOYEE_SETTING_REPOSITORY_NAME: "employeeSetting",
78
80
  EMPLOYEE_SETTING_COLLECTION_NAME: "employee_settings",
79
81
  // Organization
@@ -1303,6 +1303,12 @@
1303
1303
  "ACTION_CREATE": "create",
1304
1304
  "ACTION_COUNT": "count"
1305
1305
  },
1306
+ "SVC_ORGANIZATION_EMPLOYEE_CHANGE_HISTORIES": {
1307
+ "NAME": "svc-organization.employee-change-histories",
1308
+ "ACTION_GET_LIST": "getList",
1309
+ "ACTION_GET_CRITICAL_CHANGES": "getCriticalChanges",
1310
+ "ACTION_GET_ANALYTICS_CHANGES": "getAnalyticsChange"
1311
+ },
1306
1312
  "SVC_ORGANIZATION_EMPLOYEE_HISTORIES": {
1307
1313
  "NAME": "svc-organization.employee-histories"
1308
1314
  },
@@ -1328,7 +1334,6 @@
1328
1334
  "ACTION_GET_LIST_DEPARTMENT": "getListDepartment",
1329
1335
  "ACTION_CREATE_DEPARTMENT": "createDepartment",
1330
1336
  "ACTION_CLONE_DEPARTMENT": "cloneDepartment",
1331
- "ACTION_GET_DEPARTMENT_LISTS_FOR_EMPLOYEE": "getDepartmentListsForEmployee",
1332
1337
  "ACTION_GET_DEPARTMENT_FLAT_LISTS": "getDepartmentFlatLists",
1333
1338
  "ACTION_GET_TREE_DEPARTMENTS": "getTreeDepartments",
1334
1339
  "ACTION_GET_DEPARTMENT_DETAIL": "getDepartmentDetail",
@@ -1338,7 +1343,9 @@
1338
1343
  "ACTION_DELETE_DEPARTMENT": "deleteDepartment",
1339
1344
  "ACTION_UPDATE_DEPARTMENT": "updateDepartment",
1340
1345
  "ACTION_GET_LIST_BY_POSITION": "getListByPosition",
1341
- "ACTION_GET_LIST_BY_POSITION_LIST": "getListDepartmentByPositionList"
1346
+ "ACTION_GET_LIST_BY_POSITION_LIST": "getListDepartmentByPositionList",
1347
+ "ACTION_GET_DEPARTMENT_LISTS_FOR_EMPLOYEE": "getDepartmentListsForEmployee",
1348
+ "ACTION_VALIDATE_DEPARTMENT_POSITION_EMPLOYEES": "validateDepartmentPositionEmployees"
1342
1349
  },
1343
1350
  "SVC_ORGANIZATION_POSITIONS": {
1344
1351
  "NAME": "svc-organization.positions",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.3.28",
3
+ "version": "1.3.30",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {