@axelor/aos-mobile-crm 9.0.7 → 9.0.8

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.
@@ -11,4 +11,4 @@ export function createCatalog({ name, catalogType, pdfFile, image, description,
11
11
  pdfFile: any;
12
12
  image: any;
13
13
  description: any;
14
- }): Promise<void>;
14
+ }): Promise<any>;
@@ -9,4 +9,4 @@ export function searchClient({ searchValue, page, userId, assigned, companyId, f
9
9
  export function getClient({ clientId }: {
10
10
  clientId: any;
11
11
  }): Promise<any>;
12
- export function updateClient(body: any): Promise<void>;
12
+ export function updateClient(body: any): Promise<any>;
@@ -11,4 +11,4 @@ export function searchContact({ searchValue, page, userId, assigned, companyId,
11
11
  export function getContact({ contactId }: {
12
12
  contactId: any;
13
13
  }): Promise<any>;
14
- export function updateContact(body: any): Promise<void>;
14
+ export function updateContact(body: any): Promise<any>;
@@ -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<void>;
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<void>;
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<void>;
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<void>;
26
+ }): Promise<any>;
27
27
  export function deletePartnerAddress({ id }: {
28
28
  id: any;
29
- }): Promise<void>;
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<void>;
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<void>;
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<void>;
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<void>;
56
+ }): Promise<any>;
@@ -12,7 +12,7 @@ export function getEvent({ eventId }: {
12
12
  }): Promise<any>;
13
13
  export function createEvent({ event }: {
14
14
  event: any;
15
- }): Promise<void>;
15
+ }): Promise<any>;
16
16
  export function updateEvent({ event }: {
17
17
  event: any;
18
- }): Promise<void>;
18
+ }): Promise<any>;
@@ -15,12 +15,12 @@ export function updateLeadScoring({ leadId, leadVersion, newScore }: {
15
15
  leadId: any;
16
16
  leadVersion: any;
17
17
  newScore: any;
18
- }): Promise<void>;
18
+ }): Promise<any>;
19
19
  export function updateLead({ lead, emailId, emailVersion }: {
20
20
  lead: any;
21
21
  emailId: any;
22
22
  emailVersion: any;
23
- }): Promise<void>;
23
+ }): Promise<any>;
24
24
  export function createLead({ lead }: {
25
25
  lead: any;
26
- }): Promise<void>;
26
+ }): Promise<any>;
@@ -15,18 +15,18 @@ export function updateOpportunityScoring({ opportunityId, opportunityVersion, ne
15
15
  opportunityId: any;
16
16
  opportunityVersion: any;
17
17
  newScore: any;
18
- }): Promise<void>;
18
+ }): Promise<any>;
19
19
  export function updateOpportunityStatus({ opportunityId, version, opportunityStatusId, }: {
20
20
  opportunityId: any;
21
21
  version: any;
22
22
  opportunityStatusId: any;
23
- }): Promise<void>;
23
+ }): Promise<any>;
24
24
  export function updateOpportunity({ opportunity }: {
25
25
  opportunity: any;
26
- }): Promise<void>;
26
+ }): Promise<any>;
27
27
  export function createOpportunity({ opportunity }: {
28
28
  opportunity: any;
29
- }): Promise<void>;
29
+ }): Promise<any>;
30
30
  export function getPartnerOpportunities({ partnerId }: {
31
31
  partnerId: any;
32
32
  }): Promise<any>;
@@ -17,4 +17,4 @@ export function searchLinkedPartnersOfContact({ contactId }: {
17
17
  export function fetchPartnerAddresses({ partnerId }: {
18
18
  partnerId: any;
19
19
  }): Promise<any>;
20
- export function createPartner(body: any): Promise<void>;
20
+ export function createPartner(body: any): Promise<any>;
@@ -15,5 +15,5 @@ export function updateProspectScoring({ partnerId, partnerVersion, newScore, }:
15
15
  partnerId: any;
16
16
  partnerVersion: any;
17
17
  newScore: any;
18
- }): Promise<void>;
19
- export function updateProspect(body: any): Promise<void>;
18
+ }): Promise<any>;
19
+ export function updateProspect(body: any): Promise<any>;
@@ -11,4 +11,4 @@ export function fetchTourById({ tourId }: {
11
11
  }): Promise<any>;
12
12
  export function validateTour({ tourId }: {
13
13
  tourId: any;
14
- }): Promise<void>;
14
+ }): Promise<any>;
@@ -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<void>;
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<void>;
14
+ }): Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axelor/aos-mobile-crm",
3
- "version": "9.0.7",
3
+ "version": "9.0.8",
4
4
  "author": "Axelor",
5
5
  "license": "AGPL-3.0-only",
6
6
  "publishConfig": {
@@ -27,8 +27,8 @@
27
27
  "react-native": "0.83.1"
28
28
  },
29
29
  "dependencies": {
30
- "@axelor/aos-mobile-core": "9.0.7",
31
- "@axelor/aos-mobile-ui": "9.0.7",
30
+ "@axelor/aos-mobile-core": "9.0.8",
31
+ "@axelor/aos-mobile-ui": "9.0.8",
32
32
  "@reduxjs/toolkit": "2.11.2"
33
33
  },
34
34
  "devDependencies": {