@platfformx/proto-contracts 1.0.13 → 1.0.15
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.
|
@@ -43,11 +43,36 @@ export interface OAuthSessionResponse {
|
|
|
43
43
|
/** Tokens */
|
|
44
44
|
export interface TokenRefreshRequest {
|
|
45
45
|
refreshToken: string;
|
|
46
|
+
userId: string;
|
|
46
47
|
}
|
|
47
48
|
export interface TokenRefreshResponse {
|
|
48
49
|
accessToken: string;
|
|
49
50
|
refreshToken: string;
|
|
50
51
|
}
|
|
52
|
+
/** Send otp code */
|
|
53
|
+
export interface SendOtpRequest {
|
|
54
|
+
identifier: string;
|
|
55
|
+
type: string;
|
|
56
|
+
}
|
|
57
|
+
export interface SendOtpResponse {
|
|
58
|
+
ok: boolean;
|
|
59
|
+
}
|
|
60
|
+
export interface VerifyOtpRequest {
|
|
61
|
+
identifier: string;
|
|
62
|
+
type: string;
|
|
63
|
+
code: string;
|
|
64
|
+
}
|
|
65
|
+
export interface VerifyOtpResponse {
|
|
66
|
+
verified: boolean;
|
|
67
|
+
}
|
|
68
|
+
export interface AddIdentifierRequest {
|
|
69
|
+
userId: string;
|
|
70
|
+
identifier: string;
|
|
71
|
+
type: string;
|
|
72
|
+
}
|
|
73
|
+
export interface AddIdentifierResponse {
|
|
74
|
+
ok: boolean;
|
|
75
|
+
}
|
|
51
76
|
export interface UserCredentials {
|
|
52
77
|
email?: string | undefined;
|
|
53
78
|
phone?: string | undefined;
|
|
@@ -66,12 +91,18 @@ export interface AuthServiceClient {
|
|
|
66
91
|
authenticate(request: AuthenticationRequest): Observable<AuthenticationResponse>;
|
|
67
92
|
authenticateWithOAuth(request: OAuthSessionRequest): Observable<OAuthSessionResponse>;
|
|
68
93
|
refreshTokens(request: TokenRefreshRequest): Observable<TokenRefreshResponse>;
|
|
94
|
+
sendOtp(request: SendOtpRequest): Observable<SendOtpResponse>;
|
|
95
|
+
verifyOtp(request: VerifyOtpRequest): Observable<VerifyOtpResponse>;
|
|
96
|
+
addIdentifier(request: AddIdentifierRequest): Observable<AddIdentifierResponse>;
|
|
69
97
|
}
|
|
70
98
|
export interface AuthServiceController {
|
|
71
99
|
createAccount(request: CreateAccountRequest): Promise<CreateAccountResponse> | Observable<CreateAccountResponse> | CreateAccountResponse;
|
|
72
100
|
authenticate(request: AuthenticationRequest): Promise<AuthenticationResponse> | Observable<AuthenticationResponse> | AuthenticationResponse;
|
|
73
101
|
authenticateWithOAuth(request: OAuthSessionRequest): Promise<OAuthSessionResponse> | Observable<OAuthSessionResponse> | OAuthSessionResponse;
|
|
74
102
|
refreshTokens(request: TokenRefreshRequest): Promise<TokenRefreshResponse> | Observable<TokenRefreshResponse> | TokenRefreshResponse;
|
|
103
|
+
sendOtp(request: SendOtpRequest): Promise<SendOtpResponse> | Observable<SendOtpResponse> | SendOtpResponse;
|
|
104
|
+
verifyOtp(request: VerifyOtpRequest): Promise<VerifyOtpResponse> | Observable<VerifyOtpResponse> | VerifyOtpResponse;
|
|
105
|
+
addIdentifier(request: AddIdentifierRequest): Promise<AddIdentifierResponse> | Observable<AddIdentifierResponse> | AddIdentifierResponse;
|
|
75
106
|
}
|
|
76
107
|
export declare function AuthServiceControllerMethods(): (constructor: Function) => void;
|
|
77
108
|
export declare const AUTH_SERVICE_NAME = "AuthService";
|
|
@@ -22,7 +22,15 @@ var OAuthProvider;
|
|
|
22
22
|
exports.AUTH_SERVICE_V1_PACKAGE_NAME = "auth_service.v1";
|
|
23
23
|
function AuthServiceControllerMethods() {
|
|
24
24
|
return function (constructor) {
|
|
25
|
-
const grpcMethods = [
|
|
25
|
+
const grpcMethods = [
|
|
26
|
+
"createAccount",
|
|
27
|
+
"authenticate",
|
|
28
|
+
"authenticateWithOAuth",
|
|
29
|
+
"refreshTokens",
|
|
30
|
+
"sendOtp",
|
|
31
|
+
"verifyOtp",
|
|
32
|
+
"addIdentifier",
|
|
33
|
+
];
|
|
26
34
|
for (const method of grpcMethods) {
|
|
27
35
|
const descriptor = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
28
36
|
(0, microservices_1.GrpcMethod)("AuthService", method)(constructor.prototype[method], method, descriptor);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@platfformx/proto-contracts",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build": "tsc",
|
|
24
|
-
"generate": "mkdirp gen/ts && globstar -- protoc -I=proto proto/**/*.proto --ts_proto_out=./gen/ts --ts_proto_opt=nestJs=true,esModuleInterop=true"
|
|
24
|
+
"generate": "mkdirp src/gen/ts && globstar -- protoc -I=proto proto/**/*.proto --ts_proto_out=./src/gen/ts --ts_proto_opt=nestJs=true,esModuleInterop=true"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [],
|
|
27
27
|
"author": "",
|
|
@@ -7,6 +7,11 @@ service AuthService {
|
|
|
7
7
|
rpc Authenticate (AuthenticationRequest) returns (AuthenticationResponse);
|
|
8
8
|
rpc AuthenticateWithOAuth (OAuthSessionRequest) returns (OAuthSessionResponse);
|
|
9
9
|
rpc RefreshTokens (TokenRefreshRequest) returns (TokenRefreshResponse);
|
|
10
|
+
|
|
11
|
+
rpc SendOtp (SendOtpRequest) returns (SendOtpResponse);
|
|
12
|
+
|
|
13
|
+
rpc VerifyOtp (VerifyOtpRequest) returns (VerifyOtpResponse);
|
|
14
|
+
rpc AddIdentifier (AddIdentifierRequest) returns (AddIdentifierResponse);
|
|
10
15
|
}
|
|
11
16
|
|
|
12
17
|
// Create account
|
|
@@ -48,6 +53,7 @@ message OAuthSessionResponse {
|
|
|
48
53
|
// Tokens
|
|
49
54
|
message TokenRefreshRequest {
|
|
50
55
|
string refresh_token = 1;
|
|
56
|
+
string user_id = 2;
|
|
51
57
|
}
|
|
52
58
|
|
|
53
59
|
message TokenRefreshResponse {
|
|
@@ -55,6 +61,34 @@ message TokenRefreshResponse {
|
|
|
55
61
|
string refresh_token = 2;
|
|
56
62
|
}
|
|
57
63
|
|
|
64
|
+
// Send otp code
|
|
65
|
+
message SendOtpRequest {
|
|
66
|
+
string identifier = 1;
|
|
67
|
+
string type = 2;
|
|
68
|
+
}
|
|
69
|
+
message SendOtpResponse {
|
|
70
|
+
bool ok = 1;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
message VerifyOtpRequest {
|
|
74
|
+
string identifier = 1;
|
|
75
|
+
string type = 2;
|
|
76
|
+
string code = 3;
|
|
77
|
+
}
|
|
78
|
+
message VerifyOtpResponse {
|
|
79
|
+
bool verified = 1;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
message AddIdentifierRequest {
|
|
84
|
+
string user_id = 1;
|
|
85
|
+
string identifier = 2;
|
|
86
|
+
string type = 3;
|
|
87
|
+
}
|
|
88
|
+
message AddIdentifierResponse{
|
|
89
|
+
bool ok = 1;
|
|
90
|
+
}
|
|
91
|
+
|
|
58
92
|
// Shared
|
|
59
93
|
enum OAuthProvider {
|
|
60
94
|
OAUTH_PROVIDER_UNSPECIFIED = 0;
|
|
@@ -1,168 +0,0 @@
|
|
|
1
|
-
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
|
-
// versions:
|
|
3
|
-
// protoc-gen-ts_proto v2.11.8
|
|
4
|
-
// protoc v7.34.0
|
|
5
|
-
// source: auth-service/account.proto
|
|
6
|
-
|
|
7
|
-
/* eslint-disable */
|
|
8
|
-
import { GrpcMethod, GrpcStreamMethod } from "@nestjs/microservices";
|
|
9
|
-
import { Observable } from "rxjs";
|
|
10
|
-
|
|
11
|
-
export const protobufPackage = "auth_service.v1";
|
|
12
|
-
|
|
13
|
-
export interface GetAccountRequest {
|
|
14
|
-
userId: string;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export interface GetAccountResponse {
|
|
18
|
-
userId: string;
|
|
19
|
-
email?: string | undefined;
|
|
20
|
-
phone?: string | undefined;
|
|
21
|
-
username?: string | undefined;
|
|
22
|
-
isPhoneVerified: boolean;
|
|
23
|
-
isEmailVerified: boolean;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface InitEmailChangeRequest {
|
|
27
|
-
userId: string;
|
|
28
|
-
email: string;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
export interface InitEmailChangeResponse {
|
|
32
|
-
verificationId: string;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export interface InitPhoneChangeRequest {
|
|
36
|
-
userId: string;
|
|
37
|
-
phone: string;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export interface InitPhoneChangeResponse {
|
|
41
|
-
verificationId: string;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
export interface ConfirmEmailChangeRequest {
|
|
45
|
-
userId: string;
|
|
46
|
-
email: string;
|
|
47
|
-
verificationId: string;
|
|
48
|
-
code: string;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
export interface ConfirmEmailChangeResponse {
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export interface ConfirmPhoneChangeRequest {
|
|
55
|
-
userId: string;
|
|
56
|
-
phone: string;
|
|
57
|
-
verificationId: string;
|
|
58
|
-
code: string;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
export interface ConfirmPhoneChangeResponse {
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
export interface PatchAccountRequest {
|
|
65
|
-
userId: string;
|
|
66
|
-
username?: string | undefined;
|
|
67
|
-
displayName?: string | undefined;
|
|
68
|
-
email?: string | undefined;
|
|
69
|
-
phone?: string | undefined;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
export interface PatchAccountResponse {
|
|
73
|
-
userId: string;
|
|
74
|
-
username?: string | undefined;
|
|
75
|
-
displayName?: string | undefined;
|
|
76
|
-
phone?: string | undefined;
|
|
77
|
-
email?: string | undefined;
|
|
78
|
-
isPhoneVerified: boolean;
|
|
79
|
-
isEmailVerified: boolean;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
export interface ChangePasswordRequest {
|
|
83
|
-
userId: string;
|
|
84
|
-
oldPassword: string;
|
|
85
|
-
newPasword: string;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
export interface ChangePasswordResponse {
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
export interface LinkOAuthRequest {
|
|
92
|
-
userId: string;
|
|
93
|
-
oauthToken: string;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export interface LinkOAuthResponse {
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
export const AUTH_SERVICE_V1_PACKAGE_NAME = "auth_service.v1";
|
|
100
|
-
|
|
101
|
-
export interface AccountServiceClient {
|
|
102
|
-
getAccount(request: GetAccountRequest): Observable<GetAccountResponse>;
|
|
103
|
-
|
|
104
|
-
patchAccount(request: PatchAccountRequest): Observable<PatchAccountResponse>;
|
|
105
|
-
|
|
106
|
-
initEmailChange(request: InitEmailChangeRequest): Observable<InitEmailChangeResponse>;
|
|
107
|
-
|
|
108
|
-
initPhoneChange(request: InitPhoneChangeRequest): Observable<InitPhoneChangeResponse>;
|
|
109
|
-
|
|
110
|
-
confirmEmailChange(request: ConfirmEmailChangeRequest): Observable<ConfirmEmailChangeResponse>;
|
|
111
|
-
|
|
112
|
-
confirmPhoneChange(request: ConfirmPhoneChangeRequest): Observable<ConfirmPhoneChangeResponse>;
|
|
113
|
-
|
|
114
|
-
linkOAuth(request: LinkOAuthRequest): Observable<LinkOAuthResponse>;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
export interface AccountServiceController {
|
|
118
|
-
getAccount(
|
|
119
|
-
request: GetAccountRequest,
|
|
120
|
-
): Promise<GetAccountResponse> | Observable<GetAccountResponse> | GetAccountResponse;
|
|
121
|
-
|
|
122
|
-
patchAccount(
|
|
123
|
-
request: PatchAccountRequest,
|
|
124
|
-
): Promise<PatchAccountResponse> | Observable<PatchAccountResponse> | PatchAccountResponse;
|
|
125
|
-
|
|
126
|
-
initEmailChange(
|
|
127
|
-
request: InitEmailChangeRequest,
|
|
128
|
-
): Promise<InitEmailChangeResponse> | Observable<InitEmailChangeResponse> | InitEmailChangeResponse;
|
|
129
|
-
|
|
130
|
-
initPhoneChange(
|
|
131
|
-
request: InitPhoneChangeRequest,
|
|
132
|
-
): Promise<InitPhoneChangeResponse> | Observable<InitPhoneChangeResponse> | InitPhoneChangeResponse;
|
|
133
|
-
|
|
134
|
-
confirmEmailChange(
|
|
135
|
-
request: ConfirmEmailChangeRequest,
|
|
136
|
-
): Promise<ConfirmEmailChangeResponse> | Observable<ConfirmEmailChangeResponse> | ConfirmEmailChangeResponse;
|
|
137
|
-
|
|
138
|
-
confirmPhoneChange(
|
|
139
|
-
request: ConfirmPhoneChangeRequest,
|
|
140
|
-
): Promise<ConfirmPhoneChangeResponse> | Observable<ConfirmPhoneChangeResponse> | ConfirmPhoneChangeResponse;
|
|
141
|
-
|
|
142
|
-
linkOAuth(request: LinkOAuthRequest): Promise<LinkOAuthResponse> | Observable<LinkOAuthResponse> | LinkOAuthResponse;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
export function AccountServiceControllerMethods() {
|
|
146
|
-
return function (constructor: Function) {
|
|
147
|
-
const grpcMethods: string[] = [
|
|
148
|
-
"getAccount",
|
|
149
|
-
"patchAccount",
|
|
150
|
-
"initEmailChange",
|
|
151
|
-
"initPhoneChange",
|
|
152
|
-
"confirmEmailChange",
|
|
153
|
-
"confirmPhoneChange",
|
|
154
|
-
"linkOAuth",
|
|
155
|
-
];
|
|
156
|
-
for (const method of grpcMethods) {
|
|
157
|
-
const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
158
|
-
GrpcMethod("AccountService", method)(constructor.prototype[method], method, descriptor);
|
|
159
|
-
}
|
|
160
|
-
const grpcStreamMethods: string[] = [];
|
|
161
|
-
for (const method of grpcStreamMethods) {
|
|
162
|
-
const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
163
|
-
GrpcStreamMethod("AccountService", method)(constructor.prototype[method], method, descriptor);
|
|
164
|
-
}
|
|
165
|
-
};
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
export const ACCOUNT_SERVICE_NAME = "AccountService";
|
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
// Code generated by protoc-gen-ts_proto. DO NOT EDIT.
|
|
2
|
-
// versions:
|
|
3
|
-
// protoc-gen-ts_proto v2.11.8
|
|
4
|
-
// protoc v7.34.0
|
|
5
|
-
// source: auth-service/auth.proto
|
|
6
|
-
|
|
7
|
-
/* eslint-disable */
|
|
8
|
-
import { GrpcMethod, GrpcStreamMethod } from "@nestjs/microservices";
|
|
9
|
-
import { Observable } from "rxjs";
|
|
10
|
-
|
|
11
|
-
export const protobufPackage = "auth_service.v1";
|
|
12
|
-
|
|
13
|
-
/** Shared */
|
|
14
|
-
export enum OAuthProvider {
|
|
15
|
-
OAUTH_PROVIDER_UNSPECIFIED = 0,
|
|
16
|
-
OAUTH_PROVIDER_GOOGLE = 1,
|
|
17
|
-
OAUTH_PROVIDER_GITHUB = 2,
|
|
18
|
-
OAUTH_PROVIDER_TELEGRAM = 3,
|
|
19
|
-
UNRECOGNIZED = -1,
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/** Create account */
|
|
23
|
-
export interface CreateAccountRequest {
|
|
24
|
-
credentials: UserCredentials | undefined;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export interface CreateAccountResponse {
|
|
28
|
-
userId: string;
|
|
29
|
-
accessToken: string;
|
|
30
|
-
refreshToken: string;
|
|
31
|
-
user: UserProfile | undefined;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
/** Authenticate credentials */
|
|
35
|
-
export interface AuthenticationRequest {
|
|
36
|
-
credentials: UserCredentials | undefined;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export interface AuthenticationResponse {
|
|
40
|
-
userId: string;
|
|
41
|
-
accessToken: string;
|
|
42
|
-
refreshToken: string;
|
|
43
|
-
user: UserProfile | undefined;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
/** AuthenticateWithOAuth */
|
|
47
|
-
export interface OAuthSessionRequest {
|
|
48
|
-
provider: OAuthProvider;
|
|
49
|
-
token: string;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export interface OAuthSessionResponse {
|
|
53
|
-
userId: string;
|
|
54
|
-
accessToken: string;
|
|
55
|
-
refreshToken: string;
|
|
56
|
-
user: UserProfile | undefined;
|
|
57
|
-
isNewUser: boolean;
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
/** Tokens */
|
|
61
|
-
export interface TokenRefreshRequest {
|
|
62
|
-
refreshToken: string;
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
export interface TokenRefreshResponse {
|
|
66
|
-
accessToken: string;
|
|
67
|
-
refreshToken: string;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export interface UserCredentials {
|
|
71
|
-
email?: string | undefined;
|
|
72
|
-
phone?: string | undefined;
|
|
73
|
-
username?: string | undefined;
|
|
74
|
-
password: string;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
export interface UserProfile {
|
|
78
|
-
email?: string | undefined;
|
|
79
|
-
phone?: string | undefined;
|
|
80
|
-
username?: string | undefined;
|
|
81
|
-
displayName?: string | undefined;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
export const AUTH_SERVICE_V1_PACKAGE_NAME = "auth_service.v1";
|
|
85
|
-
|
|
86
|
-
export interface AuthServiceClient {
|
|
87
|
-
createAccount(request: CreateAccountRequest): Observable<CreateAccountResponse>;
|
|
88
|
-
|
|
89
|
-
authenticate(request: AuthenticationRequest): Observable<AuthenticationResponse>;
|
|
90
|
-
|
|
91
|
-
authenticateWithOAuth(request: OAuthSessionRequest): Observable<OAuthSessionResponse>;
|
|
92
|
-
|
|
93
|
-
refreshTokens(request: TokenRefreshRequest): Observable<TokenRefreshResponse>;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
export interface AuthServiceController {
|
|
97
|
-
createAccount(
|
|
98
|
-
request: CreateAccountRequest,
|
|
99
|
-
): Promise<CreateAccountResponse> | Observable<CreateAccountResponse> | CreateAccountResponse;
|
|
100
|
-
|
|
101
|
-
authenticate(
|
|
102
|
-
request: AuthenticationRequest,
|
|
103
|
-
): Promise<AuthenticationResponse> | Observable<AuthenticationResponse> | AuthenticationResponse;
|
|
104
|
-
|
|
105
|
-
authenticateWithOAuth(
|
|
106
|
-
request: OAuthSessionRequest,
|
|
107
|
-
): Promise<OAuthSessionResponse> | Observable<OAuthSessionResponse> | OAuthSessionResponse;
|
|
108
|
-
|
|
109
|
-
refreshTokens(
|
|
110
|
-
request: TokenRefreshRequest,
|
|
111
|
-
): Promise<TokenRefreshResponse> | Observable<TokenRefreshResponse> | TokenRefreshResponse;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
export function AuthServiceControllerMethods() {
|
|
115
|
-
return function (constructor: Function) {
|
|
116
|
-
const grpcMethods: string[] = ["createAccount", "authenticate", "authenticateWithOAuth", "refreshTokens"];
|
|
117
|
-
for (const method of grpcMethods) {
|
|
118
|
-
const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
119
|
-
GrpcMethod("AuthService", method)(constructor.prototype[method], method, descriptor);
|
|
120
|
-
}
|
|
121
|
-
const grpcStreamMethods: string[] = [];
|
|
122
|
-
for (const method of grpcStreamMethods) {
|
|
123
|
-
const descriptor: any = Reflect.getOwnPropertyDescriptor(constructor.prototype, method);
|
|
124
|
-
GrpcStreamMethod("AuthService", method)(constructor.prototype[method], method, descriptor);
|
|
125
|
-
}
|
|
126
|
-
};
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
export const AUTH_SERVICE_NAME = "AuthService";
|