@hiennc24/constant 1.4.4 → 1.4.6

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.
@@ -58,6 +58,8 @@ declare const COLLECTIONS: {
58
58
  EMPLOYEE_HISTORY_COLLECTION_NAME: string;
59
59
  EMPLOYEE_SETTING_REPOSITORY_NAME: string;
60
60
  EMPLOYEE_SETTING_COLLECTION_NAME: string;
61
+ EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: string;
62
+ EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: string;
61
63
  ORGANIZATION_REPOSITORY_NAME: string;
62
64
  ORGANIZATION_COLLECTION_NAME: string;
63
65
  DEPARTMENT_REPOSITORY_NAME: string;
@@ -76,6 +76,8 @@ const COLLECTIONS = {
76
76
  EMPLOYEE_HISTORY_COLLECTION_NAME: "employee_histories",
77
77
  EMPLOYEE_SETTING_REPOSITORY_NAME: "employeeSetting",
78
78
  EMPLOYEE_SETTING_COLLECTION_NAME: "employee_settings",
79
+ EMPLOYEE_CHANGE_HISTORY_REPOSITORY_NAME: "employeeChangeHistory",
80
+ EMPLOYEE_CHANGE_HISTORY_COLLECTION_NAME: "employee_change_histories",
79
81
  // Organization
80
82
  ORGANIZATION_REPOSITORY_NAME: "organization",
81
83
  ORGANIZATION_COLLECTION_NAME: "organizations",
@@ -865,6 +865,7 @@
865
865
  },
866
866
  "SVC_REQUEST_MANAGEMENT": {
867
867
  "NAME": "api-hcm.svc-request-management",
868
+ "ACTION_SEND": "send",
868
869
  "ACTION_CREATE": "create",
869
870
  "ACTION_UPDATE": "update",
870
871
  "ACTION_REJECT": "reject",
@@ -1412,6 +1413,12 @@
1412
1413
  "ACTION_CREATE": "create",
1413
1414
  "ACTION_COUNT": "count"
1414
1415
  },
1416
+ "SVC_ORGANIZATION_EMPLOYEE_CHANGE_HISTORIES": {
1417
+ "NAME": "svc-organization.employee-change-histories",
1418
+ "ACTION_GET_LIST": "getList",
1419
+ "ACTION_GET_CRITICAL_CHANGES": "getCriticalChanges",
1420
+ "ACTION_GET_ANALYTICS_CHANGES": "getAnalyticsChange"
1421
+ },
1415
1422
  "SVC_ORGANIZATION_EMPLOYEE_HISTORIES": {
1416
1423
  "NAME": "svc-organization.employee-histories"
1417
1424
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.4.4",
3
+ "version": "1.4.6",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {