@hiennc24/constant 1.4.27 → 1.4.29
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.
|
@@ -340,6 +340,8 @@ declare const COLLECTIONS: {
|
|
|
340
340
|
SETTING_LEAVE_TYPE_COLLECTION_NAME: string;
|
|
341
341
|
SETTING_TIMEKEEPING_METHOD_REPOSITORY_NAME: string;
|
|
342
342
|
SETTING_TIMEKEEPING_METHOD_COLLECTION_NAME: string;
|
|
343
|
+
SETTING_TIMEKEEPING_METHOD_DETAIL_REPOSITORY_NAME: string;
|
|
344
|
+
SETTING_TIMEKEEPING_METHOD_DETAIL_COLLECTION_NAME: string;
|
|
343
345
|
SETTING_OLE_TARGET_REPOSITORY_NAME: string;
|
|
344
346
|
SETTING_OLE_TARGET_COLLECTION_NAME: string;
|
|
345
347
|
PAYSLIP_REPOSITORY_NAME: string;
|
|
@@ -435,6 +435,8 @@ const COLLECTIONS = {
|
|
|
435
435
|
SETTING_LEAVE_TYPE_COLLECTION_NAME: "setting_leave_types",
|
|
436
436
|
SETTING_TIMEKEEPING_METHOD_REPOSITORY_NAME: "settingTimekeepingMethod",
|
|
437
437
|
SETTING_TIMEKEEPING_METHOD_COLLECTION_NAME: "setting_timekeeping_methods",
|
|
438
|
+
SETTING_TIMEKEEPING_METHOD_DETAIL_REPOSITORY_NAME: "settingTimekeepingMethodDetail",
|
|
439
|
+
SETTING_TIMEKEEPING_METHOD_DETAIL_COLLECTION_NAME: "setting_timekeeping_method_details",
|
|
438
440
|
// Salary Component
|
|
439
441
|
SETTING_OLE_TARGET_REPOSITORY_NAME: "settingOleTarget",
|
|
440
442
|
SETTING_OLE_TARGET_COLLECTION_NAME: "setting_ole_targets",
|
|
@@ -1234,17 +1234,17 @@
|
|
|
1234
1234
|
"API_HCM_TIMEKEEPING_EMPLOYEES": {
|
|
1235
1235
|
"NAME": "api-hcm.timekeeping-employees",
|
|
1236
1236
|
"ACTION_UPDATE": "update",
|
|
1237
|
-
"ACTION_GET_LIST": "getList",
|
|
1238
1237
|
"ACTION_IN_SHIFT": "inShift",
|
|
1239
1238
|
"ACTION_OUT_SHIFT": "outShift",
|
|
1240
1239
|
"ACTION_GET_DETAIL": "getDetail",
|
|
1241
1240
|
"ACTION_CREATE_MANY": "createMany",
|
|
1242
1241
|
"ACTION_DELETE_MANY": "deleteMany",
|
|
1243
1242
|
"ACTION_GET_SUMMARY": "getSummary",
|
|
1243
|
+
"ACTION_GET_PAGE_LIST": "getPageList",
|
|
1244
1244
|
"ACTION_GET_PERSONAL_DATA": "getPersonalData",
|
|
1245
1245
|
"ACTION_GET_LIST_BY_MANAGERS": "getListByManagers",
|
|
1246
|
-
"
|
|
1247
|
-
"
|
|
1246
|
+
"ACTION_GET_EMPLOYEES_NOT_CONFIGURED": "getEmployeesNotConfigured",
|
|
1247
|
+
"ACTION_GET_LIST_BY_TIMEKEEPING_DETAIL_ID": "getListsByTimekeepingDetailId"
|
|
1248
1248
|
},
|
|
1249
1249
|
"API_HCM_TIMEKEEPING_COMPONENTS": {
|
|
1250
1250
|
"NAME": "api-hcm.timekeeping-components",
|
|
@@ -1307,6 +1307,22 @@
|
|
|
1307
1307
|
"ACTION_GET_APPLIED_GPS": "getAppliedGPS",
|
|
1308
1308
|
"ACTION_GET_APPLIED_WIFI": "getAppliedWIFI"
|
|
1309
1309
|
},
|
|
1310
|
+
"API_HCM_SETTING_TIMEKEEPING_METHOD_DETAILS": {
|
|
1311
|
+
"NAME": "api-hcm.setting-timekeeping-method-details",
|
|
1312
|
+
"ACTION_GET_LIST": "getList",
|
|
1313
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
1314
|
+
"ACTION_CREATE": "create",
|
|
1315
|
+
"ACTION_UPDATE": "update",
|
|
1316
|
+
"ACTION_DELETE_MANY": "deleteMany"
|
|
1317
|
+
},
|
|
1318
|
+
"API_HCM_SETTING_TIMEKEEPING_METHODS": {
|
|
1319
|
+
"NAME": "api-hcm.setting-timekeeping-methods",
|
|
1320
|
+
"ACTION_GET_LIST": "getList",
|
|
1321
|
+
"ACTION_GET_DETAIL": "getDetail",
|
|
1322
|
+
"ACTION_CREATE": "create",
|
|
1323
|
+
"ACTION_UPDATE": "update",
|
|
1324
|
+
"ACTION_DELETE_MANY": "deleteMany"
|
|
1325
|
+
},
|
|
1310
1326
|
"API_HCM_WORK_SHIFT_EMPLOYEES": {
|
|
1311
1327
|
"NAME": "api-hcm.work-shift-employees",
|
|
1312
1328
|
"ACTION_GET_LIST": "getList",
|
package/package.json
CHANGED