@hiennc24/constant 1.4.20 → 1.4.22

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.
@@ -320,6 +320,10 @@ declare const COLLECTIONS: {
320
320
  OLE_DETAIL_COLLECTION_NAME: string;
321
321
  OLE_REPOSITORY_NAME: string;
322
322
  OLE_COLLECTION_NAME: string;
323
+ OLE_COMMENT_REPOSITORY_NAME: string;
324
+ OLE_COMMENT_COLLECTION_NAME: string;
325
+ OLE_HISTORY_REPOSITORY_NAME: string;
326
+ OLE_HISTORY_COLLECTION_NAME: string;
323
327
  SALARY_COMPONENT_REPOSITORY_NAME: string;
324
328
  SALARY_COMPONENT_COLLECTION_NAME: string;
325
329
  HCM_SETTING_REPOSITORY_NAME: string;
@@ -411,6 +411,12 @@ const COLLECTIONS = {
411
411
  OLE_DETAIL_COLLECTION_NAME: "ole_details",
412
412
  OLE_REPOSITORY_NAME: "ole",
413
413
  OLE_COLLECTION_NAME: "oles",
414
+ // OLE Comments
415
+ OLE_COMMENT_REPOSITORY_NAME: "oleComment",
416
+ OLE_COMMENT_COLLECTION_NAME: "ole_comments",
417
+ // OLE Histories
418
+ OLE_HISTORY_REPOSITORY_NAME: "oleHistory",
419
+ OLE_HISTORY_COLLECTION_NAME: "ole_histories",
414
420
  // Salary Component
415
421
  SALARY_COMPONENT_REPOSITORY_NAME: "salaryComponent",
416
422
  SALARY_COMPONENT_COLLECTION_NAME: "salary_components",
@@ -1065,10 +1065,26 @@
1065
1065
  "ACTION_GET_OLE_DETAIL": "getOleDetail",
1066
1066
  "ACTION_UPDATE_OLE_DETAIL": "updateOleDetail",
1067
1067
  "ACTION_CONFIRM_OLE_DETAIL": "confirmOleDetail",
1068
+ "ACTION_UPDATE_GOAL_RESULT_FOR_MANY": "updateGoalResultForMany",
1069
+ "ACTION_CONFIRM_OLE_DETAIL_WORKSPACE": "confirmOleDetailWorkspace",
1068
1070
  "ACTION_GET_OLE_DETAIL_LIST_FOR_EMPLOYEE": "getOleDetailListForEmployee",
1069
1071
  "ACTION_GET_OLE_DETAIL_FOR_EMPLOYEE_BY_ID": "getOleDetailForEmployeeById",
1070
- "ACTION_UPDATE_GOAL_RESULT_FOR_MANY": "updateGoalResultForMany",
1071
- "ACTION_CONFIRM_OLE_DETAIL_WORKSPACE": "confirmOleDetailWorkspace"
1072
+ "ACTION_GET_OLE_COMMENTS": "getOleComments",
1073
+ "ACTION_CREATE_OLE_COMMENT": "createOleComment",
1074
+ "ACTION_UPDATE_OLE_COMMENT": "updateOleComment",
1075
+ "ACTION_DELETE_OLE_COMMENT": "deleteOleComment",
1076
+ "ACTION_GET_OLE_HISTORIES": "getOleHistories"
1077
+ },
1078
+ "API_HCM_OLE_COMMENTS": {
1079
+ "ACTION_GET_LIST_COMMENTS_BY_OLE_DETAIL_ID": "getListCommentsByOleDetailId",
1080
+ "ACTION_CREATE": "create",
1081
+ "ACTION_UPDATE": "update",
1082
+ "ACTION_DELETE": "delete",
1083
+ "ACTION_REPLY": "reply"
1084
+ },
1085
+ "API_HCM_OLE_HISTORY": {
1086
+ "ACTION_CREATE": "createHistory",
1087
+ "ACTION_GET_LIST_BY_OLE_DETAIL_ID": "getListByOleDetailId"
1072
1088
  },
1073
1089
  "API_HCM_OLE": {
1074
1090
  "NAME": "api-hcm.oles",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.4.20",
3
+ "version": "1.4.22",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {