@platfformx/proto-contracts 1.3.10 → 1.3.11

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.
@@ -7,7 +7,7 @@ export interface IndexCategoryResponse {
7
7
  ok: boolean;
8
8
  }
9
9
  export interface IndexCategoriesRequest {
10
- category: Category[];
10
+ categories: Category[];
11
11
  }
12
12
  export interface IndexCategoriesResponse {
13
13
  ok: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.3.10",
3
+ "version": "1.3.11",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -24,7 +24,7 @@ message IndexCategoryResponse {
24
24
  }
25
25
 
26
26
  message IndexCategoriesRequest {
27
- repeated Category category = 1;
27
+ repeated Category categories = 1;
28
28
  }
29
29
 
30
30
  message IndexCategoriesResponse {