@taskora-uni/contracts 4.0.2 → 5.0.0

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.
@@ -45,8 +45,6 @@ export interface GetRegistrationStatusRequest {
45
45
  }
46
46
  export interface GetRegistrationStatusResponse {
47
47
  status: RegistrationStatus;
48
- accessToken?: string | undefined;
49
- refreshToken?: string | undefined;
50
48
  }
51
49
  export declare const AUTH_V1_PACKAGE_NAME = "auth.v1";
52
50
  export interface AuthServiceClient {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taskora-uni/contracts",
3
- "version": "4.0.2",
3
+ "version": "5.0.0",
4
4
  "description": "Shared protobuf contracts and generated TypeScript bindings for Taskora Uni backend services.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
package/proto/auth.proto CHANGED
@@ -64,6 +64,4 @@ message GetRegistrationStatusRequest {
64
64
 
65
65
  message GetRegistrationStatusResponse {
66
66
  RegistrationStatus status = 1;
67
- optional string access_token = 2;
68
- optional string refresh_token = 3;
69
67
  }