@platfformx/proto-contracts 1.0.18 → 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.
@@ -81,7 +81,7 @@ export interface ResetPasswordResponse {
81
81
  ok: boolean;
82
82
  }
83
83
  export interface ForgotPasswordRequest {
84
- email: boolean;
84
+ email: string;
85
85
  }
86
86
  export interface ForgotPasswordResponse {
87
87
  ok: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platfformx/proto-contracts",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -102,7 +102,7 @@ message ResetPasswordResponse {
102
102
 
103
103
  }
104
104
  message ForgotPasswordRequest {
105
- bool email = 1;
105
+ string email = 1;
106
106
  }
107
107
  message ForgotPasswordResponse {
108
108
  bool ok = 1;