@slack-clone-org/contracts 1.0.13 → 1.0.14

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.
package/generated/auth.ts CHANGED
@@ -16,7 +16,7 @@ export interface SendOtpRequest {
16
16
  }
17
17
 
18
18
  export interface SendOtpResponse {
19
- message: boolean;
19
+ success: boolean;
20
20
  }
21
21
 
22
22
  export interface VerifyOtpRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slack-clone-org/contracts",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Shared gRPC contracts and TypeScript definitions for Slack Clone microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/auth.proto CHANGED
@@ -18,7 +18,7 @@ message SendOtpRequest {
18
18
  }
19
19
 
20
20
  message SendOtpResponse {
21
- bool message = 1;
21
+ bool success = 1;
22
22
  }
23
23
 
24
24
  message VerifyOtpRequest {