@platfformx/proto-contracts 1.0.17 → 1.0.19
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
|
-
|
|
84
|
+
email: string;
|
|
86
85
|
}
|
|
87
86
|
export interface ForgotPasswordResponse {
|
|
88
87
|
ok: boolean;
|
package/package.json
CHANGED
|
@@ -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,7 +102,7 @@ message ResetPasswordResponse {
|
|
|
103
102
|
|
|
104
103
|
}
|
|
105
104
|
message ForgotPasswordRequest {
|
|
106
|
-
|
|
105
|
+
string email = 1;
|
|
107
106
|
}
|
|
108
107
|
message ForgotPasswordResponse {
|
|
109
108
|
bool ok = 1;
|