@requ1emz/contracts 1.0.7 → 1.0.8

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/gen/auth.ts CHANGED
@@ -16,7 +16,7 @@ export interface SendRegistrationRequest {
16
16
  }
17
17
 
18
18
  export interface SendRegistationResponse {
19
- ok: boolean;
19
+ accountId: string;
20
20
  }
21
21
 
22
22
  export interface SendLoginRequest {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@requ1emz/contracts",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/auth.proto CHANGED
@@ -14,7 +14,7 @@ message SendRegistrationRequest {
14
14
  }
15
15
 
16
16
  message SendRegistationResponse {
17
- bool ok = 1;
17
+ string account_id = 1;
18
18
  }
19
19
 
20
20
  message SendLoginRequest {