@platfformx/proto-contracts 1.1.7 → 1.1.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.
@@ -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;
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.8",
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 {