@hiennc24/constant 1.4.21 → 1.4.23
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,19 @@
|
|
|
1075
1075
|
"ACTION_DELETE_OLE_COMMENT": "deleteOleComment",
|
|
1076
1076
|
"ACTION_GET_OLE_HISTORIES": "getOleHistories"
|
|
1077
1077
|
},
|
|
1078
|
+
"API_HCM_OLE_COMMENTS": {
|
|
1079
|
+
"NAME": "api-hcm.ole-comments",
|
|
1080
|
+
"ACTION_GET_LIST_COMMENTS_BY_OLE_DETAIL_ID": "getListCommentsByOleDetailId",
|
|
1081
|
+
"ACTION_CREATE": "create",
|
|
1082
|
+
"ACTION_UPDATE": "update",
|
|
1083
|
+
"ACTION_DELETE": "delete",
|
|
1084
|
+
"ACTION_REPLY": "reply"
|
|
1085
|
+
},
|
|
1086
|
+
"API_HCM_OLE_HISTORY": {
|
|
1087
|
+
"NAME": "api-hcm.ole-histories",
|
|
1088
|
+
"ACTION_CREATE": "createHistory",
|
|
1089
|
+
"ACTION_GET_LIST_BY_OLE_DETAIL_ID": "getListByOleDetailId"
|
|
1090
|
+
},
|
|
1078
1091
|
"API_HCM_OLE": {
|
|
1079
1092
|
"NAME": "api-hcm.oles",
|
|
1080
1093
|
"ACTION_GET_PAGE": "getPage",
|