@platfformx/proto-contracts 1.0.17 → 1.0.18

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.
@@ -43,7 +43,6 @@ export interface OAuthSessionResponse {
43
43
  /** Tokens */
44
44
  export interface TokenRefreshRequest {
45
45
  refreshToken: string;
46
- userId: string;
47
46
  }
48
47
  export interface TokenRefreshResponse {
49
48
  accessToken: string;
@@ -82,7 +81,7 @@ export interface ResetPasswordResponse {
82
81
  ok: boolean;
83
82
  }
84
83
  export interface ForgotPasswordRequest {
85
- success: boolean;
84
+ email: boolean;
86
85
  }
87
86
  export interface ForgotPasswordResponse {
88
87
  ok: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -56,7 +56,6 @@ message OAuthSessionResponse {
56
56
  // Tokens
57
57
  message TokenRefreshRequest {
58
58
  string refresh_token = 1;
59
- string user_id = 2;
60
59
  }
61
60
 
62
61
  message TokenRefreshResponse {