@platfformx/proto-contracts 1.0.16 → 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.16",
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 {
@@ -103,10 +102,10 @@ message ResetPasswordResponse {
103
102
 
104
103
  }
105
104
  message ForgotPasswordRequest {
106
- bool success = 1;
105
+ bool email = 1;
107
106
  }
108
107
  message ForgotPasswordResponse {
109
- bool ok =1;
108
+ bool ok = 1;
110
109
  }
111
110
 
112
111
  // Shared