@hiennc24/constant 1.3.66 → 1.4.0
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.
|
@@ -334,6 +334,8 @@ declare const COLLECTIONS: {
|
|
|
334
334
|
REQUEST_CATEGORY_COLLECTION_NAME: string;
|
|
335
335
|
REQUEST_PROCESS_REPOSITORY_NAME: string;
|
|
336
336
|
REQUEST_PROCESS_COLLECTION_NAME: string;
|
|
337
|
+
REQUEST_APPROVE_REPOSITORY_NAME: string;
|
|
338
|
+
REQUEST_APPROVE_COLLECTION_NAME: string;
|
|
337
339
|
PAYROLL_REPOSITORY_NAME: string;
|
|
338
340
|
PAYROLL_COLLECTION_NAME: string;
|
|
339
341
|
PAYROLL_DETAIL_REPOSITORY_NAME: string;
|
|
@@ -429,6 +429,8 @@ const COLLECTIONS = {
|
|
|
429
429
|
REQUEST_CATEGORY_COLLECTION_NAME: "request_categories",
|
|
430
430
|
REQUEST_PROCESS_REPOSITORY_NAME: "requestProcess",
|
|
431
431
|
REQUEST_PROCESS_COLLECTION_NAME: "request_processes",
|
|
432
|
+
REQUEST_APPROVE_REPOSITORY_NAME: "requestApprove",
|
|
433
|
+
REQUEST_APPROVE_COLLECTION_NAME: "request_approves",
|
|
432
434
|
// Payroll
|
|
433
435
|
PAYROLL_REPOSITORY_NAME: "payroll",
|
|
434
436
|
PAYROLL_COLLECTION_NAME: "payrolls",
|
|
@@ -843,6 +843,7 @@
|
|
|
843
843
|
"ACTION_UPDATE_MANY": "updateMany",
|
|
844
844
|
"ACTION_CREATE_PROCESS": "createProcess",
|
|
845
845
|
"ACTION_UPDATE_PROCESS": "updateProcess",
|
|
846
|
+
"ACTION_DELETE_PROCESS": "deleteProcess",
|
|
846
847
|
"ACTION_GET_PROCESS_DETAIL": "getProcessDetail",
|
|
847
848
|
"ACTION_GET_VALUE_BY_CONDITION_TYPE": "getValueByConditionType",
|
|
848
849
|
"ACTION_GET_LIST_PROCESS_BY_CATEGORY": "getListProcessByCategory"
|