@hiennc24/constant 1.3.49 → 1.3.50

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.
@@ -322,6 +322,8 @@ declare const COLLECTIONS: {
322
322
  SETTING_WORKING_DAY_COLLECTION_NAME: string;
323
323
  SETTING_HOLIDAY_REPOSITORY_NAME: string;
324
324
  SETTING_HOLIDAY_COLLECTION_NAME: string;
325
+ PAYSLIP_REPOSITORY_NAME: string;
326
+ PAYSLIP_COLLECTION_NAME: string;
325
327
  PAYROLL_REPOSITORY_NAME: string;
326
328
  PAYROLL_COLLECTION_NAME: string;
327
329
  PAYROLL_DETAIL_REPOSITORY_NAME: string;
@@ -414,6 +414,9 @@ const COLLECTIONS = {
414
414
  SETTING_WORKING_DAY_COLLECTION_NAME: "setting_working_days",
415
415
  SETTING_HOLIDAY_REPOSITORY_NAME: "settingHoliday",
416
416
  SETTING_HOLIDAY_COLLECTION_NAME: "setting_holidays",
417
+ // Payslips
418
+ PAYSLIP_REPOSITORY_NAME: "paysLip",
419
+ PAYSLIP_COLLECTION_NAME: "payslips",
417
420
  // Payroll
418
421
  PAYROLL_REPOSITORY_NAME: "payroll",
419
422
  PAYROLL_COLLECTION_NAME: "payrolls",
@@ -987,6 +987,17 @@
987
987
  "ACTION_CREATE": "create",
988
988
  "ACTION_UPDATE": "update"
989
989
  },
990
+ "API_HCM_PAYSLIPS": {
991
+ "NAME": "api-hcm.payslips",
992
+ "ACTION_CREATE": "create",
993
+ "ACTION_UPDATE": "update",
994
+ "ACTION_GET_LIST": "getList",
995
+ "ACTION_GET_DETAIL": "getDetail",
996
+ "ACTION_DELETE_MANY": "deleteMany",
997
+ "ACTION_SEND_PAYSLIPS": "sendPayslips",
998
+ "ACTION_UPDATE_STATUS": "updateStatus",
999
+ "ACTION_GET_PAYROLL_DATA_BY_PERIOD": "getPayrollDataByPeriod"
1000
+ },
990
1001
  "API_HCM_PAYROLL_SETTINGS": {
991
1002
  "NAME": "api-hcm.payrollSettings",
992
1003
  "ACTION_GET": "get",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hiennc24/constant",
3
- "version": "1.3.49",
3
+ "version": "1.3.50",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "scripts": {