@hiennc24/constant 1.4.21 → 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",
@@ -1075,6 +1075,17 @@
1075
1075
  "ACTION_DELETE_OLE_COMMENT": "deleteOleComment",
1076
1076
  "ACTION_GET_OLE_HISTORIES": "getOleHistories"
1077
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"
1088
+ },
1078
1089
  "API_HCM_OLE": {
1079
1090
  "NAME": "api-hcm.oles",
1080
1091
  "ACTION_GET_PAGE": "getPage",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.4.21",
3
+ "version": "1.4.22",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {