@platfformx/proto-contracts 1.3.6 → 1.3.7

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.
@@ -38,6 +38,7 @@ export interface CreateCategoriesRequest {
38
38
  export interface CreateCategoriesResponse {
39
39
  }
40
40
  export interface GetCategoriesRequest {
41
+ categories: CategoryResponse[];
41
42
  }
42
43
  export interface GetCategoriesResponse {
43
44
  categories: CategoryResponse[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -61,6 +61,7 @@ message CreateCategoriesResponse {
61
61
 
62
62
  }
63
63
  message GetCategoriesRequest {
64
+ repeated CategoryResponse categories = 1;
64
65
 
65
66
  }
66
67
  message GetCategoriesResponse {