@platfformx/proto-contracts 1.5.10 → 1.5.12

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.
@@ -44,11 +44,11 @@ export interface GetStockResponse {
44
44
  export interface StockItem {
45
45
  productId: string;
46
46
  quantity: number;
47
- status: string;
48
47
  }
49
48
  export interface StockAvailability {
50
49
  productId: string;
51
50
  available: number;
51
+ status: string;
52
52
  }
53
53
  export declare const INVENTORY_V1_PACKAGE_NAME = "inventory.v1";
54
54
  export interface InventoryServiceClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.5.10",
3
+ "version": "1.5.12",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -67,10 +67,10 @@ message GetStockResponse {
67
67
  message StockItem {
68
68
  string product_id = 1;
69
69
  int32 quantity = 2;
70
- string status = 3;
71
70
  }
72
71
 
73
72
  message StockAvailability {
74
73
  string product_id = 1;
75
74
  int32 available = 2;
75
+ string status = 3;
76
76
  }