@platfformx/proto-contracts 1.4.8 → 1.4.9

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.
@@ -21,7 +21,7 @@ export interface GetProductsResponse {
21
21
  products: ProductResponse[];
22
22
  }
23
23
  export interface GetProductsByIdsRequest {
24
- productIds: string[];
24
+ productsIds: string[];
25
25
  }
26
26
  export interface GetProductsByIdsResponse {
27
27
  products: ProductResponse[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.4.8",
3
+ "version": "1.4.9",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -41,7 +41,7 @@ message GetProductsResponse {
41
41
  }
42
42
 
43
43
  message GetProductsByIdsRequest {
44
- repeated string product_ids = 1;
44
+ repeated string products_ids = 1;
45
45
  }
46
46
  message GetProductsByIdsResponse {
47
47
  repeated ProductResponse products = 1;