@hiennc24/constant 1.3.29 → 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
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.3.29",
3
+ "version": "1.3.30",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {