@eternalvisionshining/contracts 1.0.7 → 1.0.8

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/account.ts CHANGED
@@ -58,7 +58,7 @@ export interface InitPhoneChangeResponse {
58
58
  }
59
59
 
60
60
  export interface ConfirmPhoneChangeRequest {
61
- email: string;
61
+ phone: string;
62
62
  code: string;
63
63
  userId: string;
64
64
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eternalvisionshining/contracts",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "protocol buffers definitions and generating TypeScript types",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -54,7 +54,7 @@ message InitPhoneChangeResponse {
54
54
  }
55
55
 
56
56
  message ConfirmPhoneChangeRequest {
57
- string email = 1;
57
+ string phone = 1;
58
58
  string code = 2;
59
59
  string user_id = 3;
60
60
  }