@shipsync-software/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
@@ -27,6 +27,7 @@ export interface VerifyRequest {
27
27
  export interface VerifyResponse {
28
28
  accessToken: string;
29
29
  refreshToken: string;
30
+ redirectUrl: string;
30
31
  }
31
32
 
32
33
  export const AUTH_V1_PACKAGE_NAME = "auth.v1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipsync-software/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
@@ -24,4 +24,5 @@ message VerifyRequest{
24
24
  message VerifyResponse {
25
25
  string access_token = 1;
26
26
  string refresh_token = 2;
27
+ string redirect_url = 3;
27
28
  }