@sakura-skytree/leaf-eats-contracts 1.1.3 → 1.1.4

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/profile.ts CHANGED
@@ -19,6 +19,7 @@ export interface GetProfileResponse {
19
19
  }
20
20
 
21
21
  export interface UpdateProfileRequest {
22
+ accountId: string;
22
23
  name?: string | undefined;
23
24
  address?: string | undefined;
24
25
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sakura-skytree/leaf-eats-contracts",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/",
@@ -17,8 +17,9 @@ message GetProfileResponse{
17
17
  }
18
18
 
19
19
  message UpdateProfileRequest{
20
- optional string name = 1;
21
- optional string address = 2;
20
+ string account_id = 1;
21
+ optional string name = 2;
22
+ optional string address = 3;
22
23
  }
23
24
 
24
25
  message UpdateProfileResponse{