@axelor/aos-mobile-intervention 8.3.23 → 8.3.24
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.
|
@@ -24,17 +24,17 @@ export function getEquipmentById({ equipmentId }: {
|
|
|
24
24
|
}): Promise<any>;
|
|
25
25
|
export function saveEquipment({ equipment }: {
|
|
26
26
|
equipment: any;
|
|
27
|
-
}): Promise<
|
|
27
|
+
}): Promise<any>;
|
|
28
28
|
export function archiveEquipment({ equipmentId, equipmentVersion }: {
|
|
29
29
|
equipmentId: any;
|
|
30
30
|
equipmentVersion: any;
|
|
31
|
-
}): Promise<
|
|
31
|
+
}): Promise<any>;
|
|
32
32
|
export function copyEquipment({ equipmentId }: {
|
|
33
33
|
equipmentId: any;
|
|
34
|
-
}): Promise<
|
|
34
|
+
}): Promise<any>;
|
|
35
35
|
export function deleteEquipment({ equipmentId }: {
|
|
36
36
|
equipmentId: any;
|
|
37
|
-
}): Promise<
|
|
37
|
+
}): Promise<any>;
|
|
38
38
|
export function searchEquipmentToLink({ page, searchValue, equipmentSet, partnerId, }: {
|
|
39
39
|
page?: number;
|
|
40
40
|
searchValue: any;
|
|
@@ -6,9 +6,9 @@ export function createEquipmentPicture({ equipmentId, version, metaFileId, }: {
|
|
|
6
6
|
equipmentId: any;
|
|
7
7
|
version: any;
|
|
8
8
|
metaFileId: any;
|
|
9
|
-
}): Promise<
|
|
9
|
+
}): Promise<any>;
|
|
10
10
|
export function deleteEquipmentPicture({ equipmentId, version, pictureId, }: {
|
|
11
11
|
equipmentId: any;
|
|
12
12
|
version: any;
|
|
13
13
|
pictureId: any;
|
|
14
|
-
}): Promise<
|
|
14
|
+
}): Promise<any>;
|
|
@@ -24,14 +24,14 @@ export function updateInterventionStatus({ interventionId, version, targetStatus
|
|
|
24
24
|
interventionId: any;
|
|
25
25
|
version: any;
|
|
26
26
|
targetStatus: any;
|
|
27
|
-
}): Promise<
|
|
27
|
+
}): Promise<any>;
|
|
28
28
|
export function linkEquipment({ interventionId, interventionVersion, equipmentId, }: {
|
|
29
29
|
interventionId: any;
|
|
30
30
|
interventionVersion: any;
|
|
31
31
|
equipmentId: any;
|
|
32
|
-
}): Promise<
|
|
32
|
+
}): Promise<any>;
|
|
33
33
|
export function unlinkEquipment({ interventionId, interventionVersion, equipmentId, }: {
|
|
34
34
|
interventionId: any;
|
|
35
35
|
interventionVersion: any;
|
|
36
36
|
equipmentId: any;
|
|
37
|
-
}): Promise<
|
|
37
|
+
}): Promise<any>;
|
|
@@ -10,10 +10,10 @@ export function fetchInterventionNoteById({ interventionNoteId }: {
|
|
|
10
10
|
export function fetchInterventionNoteType(): Promise<any>;
|
|
11
11
|
export function createInterventionNote({ interventionNote }: {
|
|
12
12
|
interventionNote: any;
|
|
13
|
-
}): Promise<
|
|
13
|
+
}): Promise<any>;
|
|
14
14
|
export function updateInterventionNote({ interventionNote }: {
|
|
15
15
|
interventionNote: any;
|
|
16
|
-
}): Promise<
|
|
16
|
+
}): Promise<any>;
|
|
17
17
|
export function deleteInterventionNote({ interventionNoteId }: {
|
|
18
18
|
interventionNoteId: any;
|
|
19
|
-
}): Promise<
|
|
19
|
+
}): Promise<any>;
|
|
@@ -8,7 +8,7 @@ export function fetchQuestionById({ questionId }: {
|
|
|
8
8
|
}): Promise<any>;
|
|
9
9
|
export function updateQuestion({ question }: {
|
|
10
10
|
question: any;
|
|
11
|
-
}): Promise<
|
|
11
|
+
}): Promise<any>;
|
|
12
12
|
export function fetchRange({ interventionId }: {
|
|
13
13
|
interventionId: any;
|
|
14
14
|
}): Promise<any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axelor/aos-mobile-intervention",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.24",
|
|
4
4
|
"author": "Axelor",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"publishConfig": {
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"react-native": "0.73.9"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@axelor/aos-mobile-core": "8.3.
|
|
31
|
-
"@axelor/aos-mobile-crm": "8.3.
|
|
32
|
-
"@axelor/aos-mobile-ui": "8.3.
|
|
30
|
+
"@axelor/aos-mobile-core": "8.3.24",
|
|
31
|
+
"@axelor/aos-mobile-crm": "8.3.24",
|
|
32
|
+
"@axelor/aos-mobile-ui": "8.3.24",
|
|
33
33
|
"@reduxjs/toolkit": "^2.2.7"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|