@platfformx/proto-contracts 1.1.8 → 1.1.10

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.
@@ -20,9 +20,7 @@ export interface InitEmailChangeResponse {
20
20
  }
21
21
  export interface ConfirmEmailChangeRequest {
22
22
  userId: string;
23
- email: string;
24
23
  verificationId: string;
25
- code: string;
26
24
  }
27
25
  export interface ConfirmEmailChangeResponse {
28
26
  ok: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.1.8",
3
+ "version": "1.1.10",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,10 +37,7 @@ message InitEmailChangeResponse {
37
37
 
38
38
  message ConfirmEmailChangeRequest {
39
39
  string user_id = 1;
40
- string email = 2;
41
- string verification_id = 3;
42
- string code = 4;
43
-
40
+ string verification_id = 3;
44
41
  }
45
42
 
46
43
  message ConfirmEmailChangeResponse {