@arbiwallet/contracts 1.0.15 → 1.0.16
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 +0 -7
- package/package.json +1 -1
- package/proto/auth.proto +0 -1
package/gen/auth.ts
CHANGED
|
@@ -73,8 +73,6 @@ export interface MeResponse {
|
|
|
73
73
|
export const AUTH_PACKAGE_NAME = "auth";
|
|
74
74
|
|
|
75
75
|
export interface AuthServiceClient {
|
|
76
|
-
telegramAuth(request: TelegramLoginWidgetAuthRequest): Observable<AuthTokensResponse>;
|
|
77
|
-
|
|
78
76
|
telegramMiniAppAuth(request: TelegramMiniAppAuthRequest): Observable<AuthTokensResponse>;
|
|
79
77
|
|
|
80
78
|
telegramLoginWidgetAuth(request: TelegramLoginWidgetAuthRequest): Observable<AuthTokensResponse>;
|
|
@@ -95,10 +93,6 @@ export interface AuthServiceClient {
|
|
|
95
93
|
}
|
|
96
94
|
|
|
97
95
|
export interface AuthServiceController {
|
|
98
|
-
telegramAuth(
|
|
99
|
-
request: TelegramLoginWidgetAuthRequest,
|
|
100
|
-
): Promise<AuthTokensResponse> | Observable<AuthTokensResponse> | AuthTokensResponse;
|
|
101
|
-
|
|
102
96
|
telegramMiniAppAuth(
|
|
103
97
|
request: TelegramMiniAppAuthRequest,
|
|
104
98
|
): Promise<AuthTokensResponse> | Observable<AuthTokensResponse> | AuthTokensResponse;
|
|
@@ -135,7 +129,6 @@ export interface AuthServiceController {
|
|
|
135
129
|
export function AuthServiceControllerMethods() {
|
|
136
130
|
return function (constructor: Function) {
|
|
137
131
|
const grpcMethods: string[] = [
|
|
138
|
-
"telegramAuth",
|
|
139
132
|
"telegramMiniAppAuth",
|
|
140
133
|
"telegramLoginWidgetAuth",
|
|
141
134
|
"googleAuth",
|
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.16",
|
|
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
|
@@ -2,7 +2,6 @@ syntax = "proto3";
|
|
|
2
2
|
package auth;
|
|
3
3
|
|
|
4
4
|
service AuthService {
|
|
5
|
-
rpc TelegramAuth (TelegramLoginWidgetAuthRequest) returns (AuthTokensResponse);
|
|
6
5
|
rpc TelegramMiniAppAuth (TelegramMiniAppAuthRequest) returns (AuthTokensResponse);
|
|
7
6
|
rpc TelegramLoginWidgetAuth (TelegramLoginWidgetAuthRequest) returns (AuthTokensResponse);
|
|
8
7
|
rpc GoogleAuth (GoogleAuthRequest) returns (AuthTokensResponse);
|