@axelor/aos-mobile-hr 8.2.30 → 8.2.31
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.
package/lib/api/expense-api.d.ts
CHANGED
|
@@ -19,26 +19,26 @@ export function getExpense({ ExpenseId }: {
|
|
|
19
19
|
}): Promise<any>;
|
|
20
20
|
export function createExpense({ expense }: {
|
|
21
21
|
expense: any;
|
|
22
|
-
}): Promise<
|
|
23
|
-
export function quickCreateExpense(): Promise<
|
|
22
|
+
}): Promise<any>;
|
|
23
|
+
export function quickCreateExpense(): Promise<any>;
|
|
24
24
|
export function updateExpense({ expenseId, version, expenseLineIdList }: {
|
|
25
25
|
expenseId: any;
|
|
26
26
|
version: any;
|
|
27
27
|
expenseLineIdList: any;
|
|
28
|
-
}): Promise<
|
|
28
|
+
}): Promise<any>;
|
|
29
29
|
export function sendExpense({ expenseId, version }: {
|
|
30
30
|
expenseId: any;
|
|
31
31
|
version: any;
|
|
32
|
-
}): Promise<
|
|
32
|
+
}): Promise<any>;
|
|
33
33
|
export function validateExpense({ expenseId, version }: {
|
|
34
34
|
expenseId: any;
|
|
35
35
|
version: any;
|
|
36
|
-
}): Promise<
|
|
36
|
+
}): Promise<any>;
|
|
37
37
|
export function refuseExpense({ expenseId, version, groundForRefusal }: {
|
|
38
38
|
expenseId: any;
|
|
39
39
|
version: any;
|
|
40
40
|
groundForRefusal: any;
|
|
41
|
-
}): Promise<
|
|
41
|
+
}): Promise<any>;
|
|
42
42
|
export function deleteExpense({ expenseId }: {
|
|
43
43
|
expenseId: any;
|
|
44
|
-
}): Promise<
|
|
44
|
+
}): Promise<any>;
|
|
@@ -19,10 +19,10 @@ export function getNumberExpenseLineByDate({ userId, date }: {
|
|
|
19
19
|
}): Promise<any>;
|
|
20
20
|
export function createExpenseLine({ expenseLine }: {
|
|
21
21
|
expenseLine: any;
|
|
22
|
-
}): Promise<
|
|
22
|
+
}): Promise<any>;
|
|
23
23
|
export function updateExpenseLine({ expenseLine }: {
|
|
24
24
|
expenseLine: any;
|
|
25
|
-
}): Promise<
|
|
25
|
+
}): Promise<any>;
|
|
26
26
|
export function deleteExpenseLine({ expenseLineId }: {
|
|
27
27
|
expenseLineId: any;
|
|
28
|
-
}): Promise<
|
|
28
|
+
}): Promise<any>;
|
package/lib/api/timer-api.d.ts
CHANGED
|
@@ -17,15 +17,15 @@ export function getNumberTimerByDate({ userId, date }: {
|
|
|
17
17
|
}): Promise<any>;
|
|
18
18
|
export function createTimer({ timer }: {
|
|
19
19
|
timer: any;
|
|
20
|
-
}): Promise<
|
|
20
|
+
}): Promise<any>;
|
|
21
21
|
export function updateTimer({ timer }: {
|
|
22
22
|
timer: any;
|
|
23
|
-
}): Promise<
|
|
23
|
+
}): Promise<any>;
|
|
24
24
|
export function updateTimerStatus({ timerId, version, toStatus }: {
|
|
25
25
|
timerId: any;
|
|
26
26
|
version: any;
|
|
27
27
|
toStatus: any;
|
|
28
|
-
}): Promise<
|
|
28
|
+
}): Promise<any>;
|
|
29
29
|
export function deleteTimer({ timerId }: {
|
|
30
30
|
timerId: any;
|
|
31
|
-
}): Promise<
|
|
31
|
+
}): Promise<any>;
|
|
@@ -24,21 +24,21 @@ export function createTimesheet({ fromDate, toDate, timerIdList }: {
|
|
|
24
24
|
fromDate: any;
|
|
25
25
|
toDate: any;
|
|
26
26
|
timerIdList: any;
|
|
27
|
-
}): Promise<
|
|
27
|
+
}): Promise<any>;
|
|
28
28
|
export function addTimerTimesheet({ timesheetId, version, timerIdList }: {
|
|
29
29
|
timesheetId: any;
|
|
30
30
|
version: any;
|
|
31
31
|
timerIdList: any;
|
|
32
|
-
}): Promise<
|
|
32
|
+
}): Promise<any>;
|
|
33
33
|
export function updateTimesheetStatus({ timesheetId, version, toStatus, groundForRefusal, }: {
|
|
34
34
|
timesheetId: any;
|
|
35
35
|
version: any;
|
|
36
36
|
toStatus: any;
|
|
37
37
|
groundForRefusal: any;
|
|
38
|
-
}): Promise<
|
|
38
|
+
}): Promise<any>;
|
|
39
39
|
export function deleteTimesheet({ timesheetId }: {
|
|
40
40
|
timesheetId: any;
|
|
41
|
-
}): Promise<
|
|
41
|
+
}): Promise<any>;
|
|
42
42
|
export function convertPeriodTimesheet({ timesheetId }: {
|
|
43
43
|
timesheetId: any;
|
|
44
44
|
}): Promise<any>;
|
|
@@ -5,11 +5,11 @@ export function fetchTimesheetLine({ searchValue, timesheetId, page, }: {
|
|
|
5
5
|
}): Promise<any>;
|
|
6
6
|
export function createTimesheetLine({ timesheetLine }: {
|
|
7
7
|
timesheetLine: any;
|
|
8
|
-
}): Promise<
|
|
8
|
+
}): Promise<any>;
|
|
9
9
|
export function updateTimesheetLine({ timesheetLineId, timesheetLine }: {
|
|
10
10
|
timesheetLineId: any;
|
|
11
11
|
timesheetLine: any;
|
|
12
|
-
}): Promise<
|
|
12
|
+
}): Promise<any>;
|
|
13
13
|
export function deleteTimesheetLine({ timesheetLineId }: {
|
|
14
14
|
timesheetLineId: any;
|
|
15
|
-
}): Promise<
|
|
15
|
+
}): Promise<any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axelor/aos-mobile-hr",
|
|
3
|
-
"version": "8.2.
|
|
3
|
+
"version": "8.2.31",
|
|
4
4
|
"author": "Axelor",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"publishConfig": {
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"react-native": "0.73.9"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@axelor/aos-mobile-core": "8.2.
|
|
31
|
-
"@axelor/aos-mobile-ui": "8.2.
|
|
30
|
+
"@axelor/aos-mobile-core": "8.2.31",
|
|
31
|
+
"@axelor/aos-mobile-ui": "8.2.31",
|
|
32
32
|
"@reduxjs/toolkit": "^2.2.7"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|