@readytomog/contracts 1.1.3 → 1.1.4

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
@@ -41,7 +41,6 @@ export interface LogoutResponse {
41
41
 
42
42
  export interface RefreshAuthRequest {
43
43
  userId: number;
44
- refreshToken: string;
45
44
  }
46
45
 
47
46
  export interface RefreshAuthResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@readytomog/contracts",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
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
@@ -42,7 +42,6 @@ message LogoutResponse {
42
42
 
43
43
  message RefreshAuthRequest {
44
44
  int32 userId = 1;
45
- string refreshToken = 2;
46
45
  }
47
46
 
48
47
  message RefreshAuthResponse {