@arbiwallet/contracts 1.0.72 → 1.0.73
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 +2 -0
- package/package.json +1 -1
- package/proto/auth.proto +4 -1
package/gen/auth.ts
CHANGED
|
@@ -31,6 +31,7 @@ export interface GoogleAuthRequest {
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
export interface GoogleAuthStartRequest {
|
|
34
|
+
returnUrl?: string | undefined;
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
export interface GoogleAuthStartResponse {
|
|
@@ -68,6 +69,7 @@ export interface AccessTokenRequest {
|
|
|
68
69
|
export interface AuthTokensResponse {
|
|
69
70
|
accessToken: string;
|
|
70
71
|
refreshToken: string;
|
|
72
|
+
returnUrl?: string | undefined;
|
|
71
73
|
}
|
|
72
74
|
|
|
73
75
|
export interface AccessTokenResponse {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbiwallet/contracts",
|
|
3
3
|
"descriptions": "Generate and manage smart contracts for ArbiWallet",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.73",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
|
|
7
7
|
},
|
package/proto/auth.proto
CHANGED
|
@@ -35,7 +35,9 @@ message GoogleAuthRequest {
|
|
|
35
35
|
string id_token = 1;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
message GoogleAuthStartRequest {
|
|
38
|
+
message GoogleAuthStartRequest {
|
|
39
|
+
optional string return_url = 1;
|
|
40
|
+
}
|
|
39
41
|
|
|
40
42
|
message GoogleAuthStartResponse {
|
|
41
43
|
string auth_url = 1;
|
|
@@ -72,6 +74,7 @@ message AccessTokenRequest {
|
|
|
72
74
|
message AuthTokensResponse {
|
|
73
75
|
string access_token = 1;
|
|
74
76
|
string refresh_token = 2;
|
|
77
|
+
optional string return_url = 3;
|
|
75
78
|
}
|
|
76
79
|
|
|
77
80
|
message AccessTokenResponse {
|