@sakura-skytree/leaf-eats-contracts 1.2.1 → 1.2.2

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.
package/gen/restaurant.ts CHANGED
@@ -83,7 +83,8 @@ export interface Product {
83
83
  }
84
84
 
85
85
  export interface CategoryItems {
86
- category: Category | undefined;
86
+ id: string;
87
+ title: string;
87
88
  products: Product[];
88
89
  }
89
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sakura-skytree/leaf-eats-contracts",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/",
@@ -84,6 +84,7 @@ message Product {
84
84
  }
85
85
 
86
86
  message CategoryItems {
87
- Category category = 1;
88
- repeated Product products = 2;
87
+ string id = 1;
88
+ string title = 2;
89
+ repeated Product products = 3;
89
90
  }