@axelor/aos-mobile-crm 8.3.22 → 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.
- package/lib/api/catalog-api.d.ts +1 -1
- package/lib/api/client-api.d.ts +1 -1
- package/lib/api/contact-api.d.ts +1 -1
- package/lib/api/contact-info-api.d.ts +9 -9
- package/lib/api/event-api.d.ts +2 -2
- package/lib/api/leads-api.d.ts +3 -3
- package/lib/api/opportunities-api.d.ts +4 -4
- package/lib/api/prospect-api.d.ts +2 -2
- package/lib/api/tour-api.d.ts +1 -1
- package/lib/api/tour-line-api.d.ts +2 -2
- package/package.json +3 -3
package/lib/api/catalog-api.d.ts
CHANGED
package/lib/api/client-api.d.ts
CHANGED
package/lib/api/contact-api.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export function getAddress({ country, city, zip, streetName }: {
|
|
|
3
3
|
city: any;
|
|
4
4
|
zip: any;
|
|
5
5
|
streetName: any;
|
|
6
|
-
}): Promise<
|
|
6
|
+
}): Promise<any>;
|
|
7
7
|
export function updateAddress({ isLead, id, version, partnerAddress, country, city, zip, streetName, }: {
|
|
8
8
|
isLead: any;
|
|
9
9
|
id: any;
|
|
@@ -13,20 +13,20 @@ export function updateAddress({ isLead, id, version, partnerAddress, country, ci
|
|
|
13
13
|
city: any;
|
|
14
14
|
zip: any;
|
|
15
15
|
streetName: any;
|
|
16
|
-
}): Promise<
|
|
16
|
+
}): Promise<any>;
|
|
17
17
|
export function updatePartnerAddress({ id, version, address }: {
|
|
18
18
|
id: any;
|
|
19
19
|
version: any;
|
|
20
20
|
address: any;
|
|
21
|
-
}): Promise<
|
|
21
|
+
}): Promise<any>;
|
|
22
22
|
export function updateMainAddress({ modelName, id, body }: {
|
|
23
23
|
modelName: any;
|
|
24
24
|
id: any;
|
|
25
25
|
body: any;
|
|
26
|
-
}): Promise<
|
|
26
|
+
}): Promise<any>;
|
|
27
27
|
export function deletePartnerAddress({ id }: {
|
|
28
28
|
id: any;
|
|
29
|
-
}): Promise<
|
|
29
|
+
}): Promise<any>;
|
|
30
30
|
export function addPartnerAddress({ partnerId, partnerVersion, country, city, zip, streetName, }: {
|
|
31
31
|
partnerId: any;
|
|
32
32
|
partnerVersion: any;
|
|
@@ -34,23 +34,23 @@ export function addPartnerAddress({ partnerId, partnerVersion, country, city, zi
|
|
|
34
34
|
city: any;
|
|
35
35
|
zip: any;
|
|
36
36
|
streetName: any;
|
|
37
|
-
}): Promise<
|
|
37
|
+
}): Promise<any>;
|
|
38
38
|
export function updateEmail({ id, version, email, partner }: {
|
|
39
39
|
id: any;
|
|
40
40
|
version: any;
|
|
41
41
|
email: any;
|
|
42
42
|
partner: any;
|
|
43
|
-
}): Promise<
|
|
43
|
+
}): Promise<any>;
|
|
44
44
|
export function linkEmail({ id, version, email, isLead }: {
|
|
45
45
|
id: any;
|
|
46
46
|
version: any;
|
|
47
47
|
email: any;
|
|
48
48
|
isLead: any;
|
|
49
|
-
}): Promise<
|
|
49
|
+
}): Promise<any>;
|
|
50
50
|
export function updatePartner({ id, version, mobilePhone, fixedPhone, webSite, }: {
|
|
51
51
|
id: any;
|
|
52
52
|
version: any;
|
|
53
53
|
mobilePhone: any;
|
|
54
54
|
fixedPhone: any;
|
|
55
55
|
webSite: any;
|
|
56
|
-
}): Promise<
|
|
56
|
+
}): Promise<any>;
|
package/lib/api/event-api.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export function getEvent({ eventId }: {
|
|
|
12
12
|
}): Promise<any>;
|
|
13
13
|
export function createEvent({ event }: {
|
|
14
14
|
event: any;
|
|
15
|
-
}): Promise<
|
|
15
|
+
}): Promise<any>;
|
|
16
16
|
export function updateEvent({ event }: {
|
|
17
17
|
event: any;
|
|
18
|
-
}): Promise<
|
|
18
|
+
}): Promise<any>;
|
package/lib/api/leads-api.d.ts
CHANGED
|
@@ -14,12 +14,12 @@ export function updateLeadScoring({ leadId, leadVersion, newScore }: {
|
|
|
14
14
|
leadId: any;
|
|
15
15
|
leadVersion: any;
|
|
16
16
|
newScore: any;
|
|
17
|
-
}): Promise<
|
|
17
|
+
}): Promise<any>;
|
|
18
18
|
export function updateLead({ lead, emailId, emailVersion }: {
|
|
19
19
|
lead: any;
|
|
20
20
|
emailId: any;
|
|
21
21
|
emailVersion: any;
|
|
22
|
-
}): Promise<
|
|
22
|
+
}): Promise<any>;
|
|
23
23
|
export function createLead({ lead }: {
|
|
24
24
|
lead: any;
|
|
25
|
-
}): Promise<
|
|
25
|
+
}): Promise<any>;
|
|
@@ -14,18 +14,18 @@ export function updateOpportunityScoring({ opportunityId, opportunityVersion, ne
|
|
|
14
14
|
opportunityId: any;
|
|
15
15
|
opportunityVersion: any;
|
|
16
16
|
newScore: any;
|
|
17
|
-
}): Promise<
|
|
17
|
+
}): Promise<any>;
|
|
18
18
|
export function updateOpportunityStatus({ opportunityId, version, opportunityStatusId, }: {
|
|
19
19
|
opportunityId: any;
|
|
20
20
|
version: any;
|
|
21
21
|
opportunityStatusId: any;
|
|
22
|
-
}): Promise<
|
|
22
|
+
}): Promise<any>;
|
|
23
23
|
export function updateOpportunity({ opportunity }: {
|
|
24
24
|
opportunity: any;
|
|
25
|
-
}): Promise<
|
|
25
|
+
}): Promise<any>;
|
|
26
26
|
export function createOpportunity({ opportunity }: {
|
|
27
27
|
opportunity: any;
|
|
28
|
-
}): Promise<
|
|
28
|
+
}): Promise<any>;
|
|
29
29
|
export function getPartnerOpportunities({ partnerId }: {
|
|
30
30
|
partnerId: any;
|
|
31
31
|
}): Promise<any>;
|
|
@@ -14,7 +14,7 @@ export function updateProspectScoring({ partnerId, partnerVersion, newScore, }:
|
|
|
14
14
|
partnerId: any;
|
|
15
15
|
partnerVersion: any;
|
|
16
16
|
newScore: any;
|
|
17
|
-
}): Promise<
|
|
17
|
+
}): Promise<any>;
|
|
18
18
|
export function updateProspect({ id, version, leadScoringSelect, name, fixedPhone, webSite, description, email, emailId, emailVersion, }: {
|
|
19
19
|
id: any;
|
|
20
20
|
version: any;
|
|
@@ -26,4 +26,4 @@ export function updateProspect({ id, version, leadScoringSelect, name, fixedPhon
|
|
|
26
26
|
email: any;
|
|
27
27
|
emailId: any;
|
|
28
28
|
emailVersion: any;
|
|
29
|
-
}): Promise<
|
|
29
|
+
}): Promise<any>;
|
package/lib/api/tour-api.d.ts
CHANGED
|
@@ -6,9 +6,9 @@ export function searchTourLine({ page, tourId, numberElementsByPage, isValidated
|
|
|
6
6
|
}): Promise<any>;
|
|
7
7
|
export function validateTourLine({ tourLineId }: {
|
|
8
8
|
tourLineId: any;
|
|
9
|
-
}): Promise<
|
|
9
|
+
}): Promise<any>;
|
|
10
10
|
export function updateTourLine({ tourLineId, tourLineVersion, event }: {
|
|
11
11
|
tourLineId: any;
|
|
12
12
|
tourLineVersion: any;
|
|
13
13
|
event: any;
|
|
14
|
-
}): Promise<
|
|
14
|
+
}): Promise<any>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axelor/aos-mobile-crm",
|
|
3
|
-
"version": "8.3.
|
|
3
|
+
"version": "8.3.24",
|
|
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.3.
|
|
31
|
-
"@axelor/aos-mobile-ui": "8.3.
|
|
30
|
+
"@axelor/aos-mobile-core": "8.3.24",
|
|
31
|
+
"@axelor/aos-mobile-ui": "8.3.24",
|
|
32
32
|
"@reduxjs/toolkit": "^2.2.7"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|