@axelor/aos-mobile-stock 8.2.30 → 8.2.32

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.
@@ -18,8 +18,8 @@ export function addLineStockMove({ stockMoveId, productId, unitId, trackingNumbe
18
18
  realQty: any;
19
19
  version: any;
20
20
  fromStockLocationId: any;
21
- }): Promise<void>;
21
+ }): Promise<any>;
22
22
  export function realizeSockMove({ stockMoveId, version }: {
23
23
  stockMoveId: any;
24
24
  version: any;
25
- }): Promise<void>;
25
+ }): Promise<any>;
@@ -8,7 +8,7 @@ export function updateLine({ stockMoveLineId, version, realQty, fromStockLocatio
8
8
  version: any;
9
9
  realQty: any;
10
10
  fromStockLocationId: any;
11
- }): Promise<void>;
11
+ }): Promise<any>;
12
12
  export function fetchCustomerDeliveryLine({ customerDeliveryLineId }: {
13
13
  customerDeliveryLineId: any;
14
14
  }): Promise<any>;
@@ -14,13 +14,13 @@ export function createInternalStockMove({ companyId, fromStockLocationId, toStoc
14
14
  fromStockLocationId: any;
15
15
  toStockLocationId: any;
16
16
  lineItems: any;
17
- }): Promise<void>;
17
+ }): Promise<any>;
18
18
  export function realizeInternalMove({ stockMoveId, version }: {
19
19
  stockMoveId: any;
20
20
  version: any;
21
- }): Promise<void>;
21
+ }): Promise<any>;
22
22
  export function modifyInternalMoveNotes({ internalMoveId, version, notes, }: {
23
23
  internalMoveId: any;
24
24
  version: any;
25
25
  notes: any;
26
- }): Promise<void>;
26
+ }): Promise<any>;
@@ -10,7 +10,7 @@ export function updateInternalMoveLine({ stockMoveLineId, version, realQty, unit
10
10
  unitId: any;
11
11
  fromStockLocationId: any;
12
12
  toStockLocationId: any;
13
- }): Promise<void>;
13
+ }): Promise<any>;
14
14
  export function fetchInternalMoveLine({ internalMoveLineId }: {
15
15
  internalMoveLineId: any;
16
16
  }): Promise<any>;
@@ -12,10 +12,10 @@ export function modifyDescriptionInventory({ inventoryId, description, version,
12
12
  inventoryId: any;
13
13
  description: any;
14
14
  version: any;
15
- }): Promise<void>;
15
+ }): Promise<any>;
16
16
  export function updateInventoryStatus({ inventoryId, version, status, userId, }: {
17
17
  inventoryId: any;
18
18
  version: any;
19
19
  status: any;
20
20
  userId?: any;
21
- }): Promise<void>;
21
+ }): Promise<any>;
@@ -8,7 +8,7 @@ export function updateInventoryLineDetails({ inventoryLineId, version, realQty,
8
8
  version: any;
9
9
  realQty: any;
10
10
  description?: any;
11
- }): Promise<void>;
11
+ }): Promise<any>;
12
12
  export function createInventoryLine({ inventoryId, inventoryVersion, productId, trackingNumberId, rack, realQty, }: {
13
13
  inventoryId: any;
14
14
  inventoryVersion: any;
@@ -16,12 +16,12 @@ export function createInventoryLine({ inventoryId, inventoryVersion, productId,
16
16
  trackingNumberId?: any;
17
17
  rack?: any;
18
18
  realQty: any;
19
- }): Promise<void>;
19
+ }): Promise<any>;
20
20
  export function addTrackingNumber({ inventoryLineId, version, trackingNumber, }: {
21
21
  inventoryLineId: any;
22
22
  version: any;
23
23
  trackingNumber: any;
24
- }): Promise<void>;
24
+ }): Promise<any>;
25
25
  export function fetchInventoryLine({ inventoryLineId }: {
26
26
  inventoryLineId: any;
27
27
  }): Promise<any>;
@@ -8,7 +8,7 @@ export function updateLocker({ productId, stockLocationId, newLocker, version, }
8
8
  stockLocationId: any;
9
9
  newLocker: any;
10
10
  version: any;
11
- }): Promise<void>;
11
+ }): Promise<any>;
12
12
  export function fetchVariants({ productVariantParentId, page }: {
13
13
  productVariantParentId: any;
14
14
  page?: number;
@@ -18,11 +18,11 @@ export function getProductStockIndicators({ productId, companyId, stockLocationI
18
18
  companyId: any;
19
19
  stockLocationId: any;
20
20
  version: any;
21
- }): Promise<void>;
21
+ }): Promise<any>;
22
22
  export function fetchVariantAttributes({ productVariantId, version }: {
23
23
  productVariantId: any;
24
24
  version: any;
25
- }): Promise<void>;
25
+ }): Promise<any>;
26
26
  export function fetchProductCompanyWithId({ productId, companyId }: {
27
27
  productId: any;
28
28
  companyId: any;
@@ -15,7 +15,7 @@ export function createStockCorrection({ productId, stockLocationId, reasonId, tr
15
15
  status: any;
16
16
  realQty: any;
17
17
  comments: any;
18
- }): Promise<void>;
18
+ }): Promise<any>;
19
19
  export function updateStockCorrection({ stockCorrectionId, version, realQty, status, reasonId, comments, }: {
20
20
  stockCorrectionId: any;
21
21
  version: any;
@@ -23,9 +23,9 @@ export function updateStockCorrection({ stockCorrectionId, version, realQty, sta
23
23
  status: any;
24
24
  reasonId: any;
25
25
  comments: any;
26
- }): Promise<void>;
26
+ }): Promise<any>;
27
27
  export function updateStockCorrectionTrackingNumber({ stockCorrectionId, stockCorrectionVersion, trackingNumber, }: {
28
28
  stockCorrectionId: any;
29
29
  stockCorrectionVersion: any;
30
30
  trackingNumber: any;
31
- }): Promise<void>;
31
+ }): Promise<any>;
@@ -19,8 +19,8 @@ export function addLineStockMove({ stockMoveId, productId, unitId, trackingNumbe
19
19
  conformity: any;
20
20
  version: any;
21
21
  toStockLocationId: any;
22
- }): Promise<void>;
22
+ }): Promise<any>;
23
23
  export function realizeSockMove({ stockMoveId, version }: {
24
24
  stockMoveId: any;
25
25
  version: any;
26
- }): Promise<void>;
26
+ }): Promise<any>;
@@ -9,11 +9,11 @@ export function updateLine({ stockMoveLineId, version, realQty, conformity: _con
9
9
  realQty: any;
10
10
  conformity: any;
11
11
  toStockLocationId: any;
12
- }): Promise<void>;
12
+ }): Promise<any>;
13
13
  export function fetchSupplierArrivalLine({ supplierArrivalLineId }: {
14
14
  supplierArrivalLineId: any;
15
15
  }): Promise<any>;
16
16
  export function splitSupplierArrivalLine({ id, version }: {
17
17
  id: any;
18
18
  version: any;
19
- }): Promise<void>;
19
+ }): Promise<any>;
@@ -8,14 +8,14 @@ export function createTrackingNumber({ qty, product, trackingNumberSeq, origin,
8
8
  product: any;
9
9
  trackingNumberSeq: any;
10
10
  origin: any;
11
- }): Promise<void>;
11
+ }): Promise<any>;
12
12
  export function updateStockMoveLineTrackingNumber({ stockMoveLineId, stockMoveLineVersion, trackingNumber, }: {
13
13
  stockMoveLineId: any;
14
14
  stockMoveLineVersion: any;
15
15
  trackingNumber: any;
16
- }): Promise<void>;
16
+ }): Promise<any>;
17
17
  export function updateTrackingNumber({ id, origin, ...trackingNumber }: {
18
18
  [x: string]: any;
19
19
  id: any;
20
20
  origin: any;
21
- }): Promise<void>;
21
+ }): Promise<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axelor/aos-mobile-stock",
3
- "version": "8.2.30",
3
+ "version": "8.2.32",
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-ui": "8.2.30",
31
- "@axelor/aos-mobile-core": "8.2.30",
30
+ "@axelor/aos-mobile-ui": "8.2.32",
31
+ "@axelor/aos-mobile-core": "8.2.32",
32
32
  "@reduxjs/toolkit": "^2.2.7"
33
33
  },
34
34
  "devDependencies": {