@sakura-skytree/leaf-eats-contracts 1.2.8 → 1.2.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.
package/gen/menu.ts CHANGED
@@ -43,7 +43,7 @@ export interface GetProductByIdRequest {
43
43
  }
44
44
 
45
45
  export interface GetProductByIdResponse {
46
- product: Product | undefined;
46
+ product?: Product | undefined;
47
47
  }
48
48
 
49
49
  export interface GetProductsByIdsRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sakura-skytree/leaf-eats-contracts",
3
- "version": "1.2.8",
3
+ "version": "1.2.9",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/",
package/proto/menu.proto CHANGED
@@ -44,7 +44,7 @@ message GetProductByIdRequest {
44
44
  }
45
45
 
46
46
  message GetProductByIdResponse {
47
- Product product = 1;
47
+ optional Product product = 1;
48
48
  }
49
49
 
50
50
  message GetProductsByIdsRequest {