@platfformx/proto-contracts 1.1.7 → 1.1.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.
@@ -74,7 +74,6 @@ export interface OAuthSessionResponse {
74
74
  /** Logout */
75
75
  export interface LogoutRequest {
76
76
  userId: string;
77
- accessToken: string;
78
77
  }
79
78
  export interface LogoutResponse {
80
79
  success: boolean;
@@ -22,7 +22,6 @@ export interface ConfirmEmailChangeRequest {
22
22
  userId: string;
23
23
  email: string;
24
24
  verificationId: string;
25
- code: string;
26
25
  }
27
26
  export interface ConfirmEmailChangeResponse {
28
27
  ok: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.1.7",
3
+ "version": "1.1.9",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -97,7 +97,6 @@ message OAuthSessionResponse {
97
97
  // Logout
98
98
  message LogoutRequest {
99
99
  string user_id = 1;
100
- string access_token = 2;
101
100
  }
102
101
 
103
102
  message LogoutResponse {
@@ -38,9 +38,7 @@ message InitEmailChangeResponse {
38
38
  message ConfirmEmailChangeRequest {
39
39
  string user_id = 1;
40
40
  string email = 2;
41
- string verification_id = 3;
42
- string code = 4;
43
-
41
+ string verification_id = 3;
44
42
  }
45
43
 
46
44
  message ConfirmEmailChangeResponse {