@atls/auth-rpc 0.0.1 → 0.0.2
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/CHANGELOG.md +12 -0
- package/dist/config.d.ts +1 -1
- package/dist/config.js +2 -2
- package/dist/gen/abstractions/index.d.ts +1 -1
- package/dist/gen/abstractions/index.js +1 -1
- package/dist/gen/connect/index.d.ts +2 -2
- package/dist/gen/connect/index.js +2 -2
- package/dist/gen/connect/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.d.ts +28 -28
- package/dist/gen/connect/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.js +29 -29
- package/dist/gen/connect/{team/firstfood → tech/atls}/auth/v1/auth.service_connect.d.ts +1 -1
- package/dist/gen/connect/{team/firstfood → tech/atls}/auth/v1/auth.service_connect.js +1 -1
- package/dist/gen/interfaces/index.d.ts +1 -1
- package/package.json +2 -2
- package/src/config.ts +3 -3
- package/src/gen/abstractions/index.ts +1 -1
- package/src/gen/abstractions/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.ts +31 -31
- package/src/gen/connect/index.ts +2 -2
- package/src/gen/connect/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.ts +60 -60
- package/src/gen/connect/{team/firstfood → tech/atls}/auth/v1/auth.service_connect.ts +17 -17
- package/src/gen/interfaces/index.ts +1 -1
- package/src/gen/interfaces/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.ts +31 -31
- package/{team/firstfood → tech/atls}/auth/v1/auth.payloads.proto +1 -1
- package/{team/firstfood → tech/atls}/auth/v1/auth.service.proto +2 -2
- /package/dist/gen/abstractions/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.d.ts +0 -0
- /package/dist/gen/abstractions/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.js +0 -0
- /package/dist/gen/interfaces/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.d.ts +0 -0
- /package/dist/gen/interfaces/{team/firstfood → tech/atls}/auth/v1/auth.payloads_pb.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [0.0.2](https://github.com/atls/services/compare/@atls/auth-rpc@0.0.1...@atls/auth-rpc@0.0.2) (2026-02-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* **auth:** rpc packages naming ([#50](https://github.com/atls/services/issues/50)) ([dbac5bc](https://github.com/atls/services/commit/dbac5bc6a7a5ebab4cedb937926500f2b7e2562f))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
3
15
|
## 0.0.1 (2026-02-03)
|
|
4
16
|
|
|
5
17
|
|
package/dist/config.d.ts
CHANGED
package/dist/config.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import path from 'node:path';
|
|
2
2
|
const dirname = path.dirname(new URL(import.meta.url).pathname);
|
|
3
|
-
export const packageName = '
|
|
3
|
+
export const packageName = 'tech.atls.auth.v1';
|
|
4
4
|
export const serviceName = 'AuthService';
|
|
5
|
-
export const servicePath = path.join(dirname, '../
|
|
5
|
+
export const servicePath = path.join(dirname, '../tech/atls/auth/v1/auth.service.proto');
|
|
6
6
|
export const includeDirs = [path.join(dirname, '../')];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './tech/atls/auth/v1/auth.payloads_pb.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./
|
|
1
|
+
export * from "./tech/atls/auth/v1/auth.payloads_pb.js";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from './
|
|
2
|
-
export * from './
|
|
1
|
+
export * from './tech/atls/auth/v1/auth.payloads_pb.js';
|
|
2
|
+
export * from './tech/atls/auth/v1/auth.service_connect.js';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./
|
|
2
|
-
export * from "./
|
|
1
|
+
export * from "./tech/atls/auth/v1/auth.payloads_pb.js";
|
|
2
|
+
export * from "./tech/atls/auth/v1/auth.service_connect.js";
|
|
@@ -17,7 +17,7 @@ export declare class LoginUserByEmailRequest extends Message<LoginUserByEmailReq
|
|
|
17
17
|
authProcessId?: string;
|
|
18
18
|
constructor(data?: PartialMessage<LoginUserByEmailRequest>);
|
|
19
19
|
static readonly runtime: typeof proto3;
|
|
20
|
-
static readonly typeName = "
|
|
20
|
+
static readonly typeName = "tech.atls.auth.v1.LoginUserByEmailRequest";
|
|
21
21
|
static readonly fields: FieldList;
|
|
22
22
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoginUserByEmailRequest;
|
|
23
23
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoginUserByEmailRequest;
|
|
@@ -28,7 +28,7 @@ export declare class LoginUserByEmailResponse extends Message<LoginUserByEmailRe
|
|
|
28
28
|
sessionToken: string;
|
|
29
29
|
constructor(data?: PartialMessage<LoginUserByEmailResponse>);
|
|
30
30
|
static readonly runtime: typeof proto3;
|
|
31
|
-
static readonly typeName = "
|
|
31
|
+
static readonly typeName = "tech.atls.auth.v1.LoginUserByEmailResponse";
|
|
32
32
|
static readonly fields: FieldList;
|
|
33
33
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoginUserByEmailResponse;
|
|
34
34
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoginUserByEmailResponse;
|
|
@@ -39,7 +39,7 @@ export declare class LoginUserByPhoneRequest extends Message<LoginUserByPhoneReq
|
|
|
39
39
|
phone: string;
|
|
40
40
|
constructor(data?: PartialMessage<LoginUserByPhoneRequest>);
|
|
41
41
|
static readonly runtime: typeof proto3;
|
|
42
|
-
static readonly typeName = "
|
|
42
|
+
static readonly typeName = "tech.atls.auth.v1.LoginUserByPhoneRequest";
|
|
43
43
|
static readonly fields: FieldList;
|
|
44
44
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoginUserByPhoneRequest;
|
|
45
45
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoginUserByPhoneRequest;
|
|
@@ -50,7 +50,7 @@ export declare class LoginUserByPhoneResponse extends Message<LoginUserByPhoneRe
|
|
|
50
50
|
authProcessId: string;
|
|
51
51
|
constructor(data?: PartialMessage<LoginUserByPhoneResponse>);
|
|
52
52
|
static readonly runtime: typeof proto3;
|
|
53
|
-
static readonly typeName = "
|
|
53
|
+
static readonly typeName = "tech.atls.auth.v1.LoginUserByPhoneResponse";
|
|
54
54
|
static readonly fields: FieldList;
|
|
55
55
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoginUserByPhoneResponse;
|
|
56
56
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoginUserByPhoneResponse;
|
|
@@ -63,7 +63,7 @@ export declare class ConfirmLoginCodeRequest extends Message<ConfirmLoginCodeReq
|
|
|
63
63
|
identifier: string;
|
|
64
64
|
constructor(data?: PartialMessage<ConfirmLoginCodeRequest>);
|
|
65
65
|
static readonly runtime: typeof proto3;
|
|
66
|
-
static readonly typeName = "
|
|
66
|
+
static readonly typeName = "tech.atls.auth.v1.ConfirmLoginCodeRequest";
|
|
67
67
|
static readonly fields: FieldList;
|
|
68
68
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfirmLoginCodeRequest;
|
|
69
69
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfirmLoginCodeRequest;
|
|
@@ -74,7 +74,7 @@ export declare class ConfirmLoginCodeResponse extends Message<ConfirmLoginCodeRe
|
|
|
74
74
|
sessionToken: string;
|
|
75
75
|
constructor(data?: PartialMessage<ConfirmLoginCodeResponse>);
|
|
76
76
|
static readonly runtime: typeof proto3;
|
|
77
|
-
static readonly typeName = "
|
|
77
|
+
static readonly typeName = "tech.atls.auth.v1.ConfirmLoginCodeResponse";
|
|
78
78
|
static readonly fields: FieldList;
|
|
79
79
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfirmLoginCodeResponse;
|
|
80
80
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfirmLoginCodeResponse;
|
|
@@ -86,7 +86,7 @@ export declare class RegisterUserByEmailRequest extends Message<RegisterUserByEm
|
|
|
86
86
|
password: string;
|
|
87
87
|
constructor(data?: PartialMessage<RegisterUserByEmailRequest>);
|
|
88
88
|
static readonly runtime: typeof proto3;
|
|
89
|
-
static readonly typeName = "
|
|
89
|
+
static readonly typeName = "tech.atls.auth.v1.RegisterUserByEmailRequest";
|
|
90
90
|
static readonly fields: FieldList;
|
|
91
91
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegisterUserByEmailRequest;
|
|
92
92
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegisterUserByEmailRequest;
|
|
@@ -99,7 +99,7 @@ export declare class RegisterUserByEmailResponse extends Message<RegisterUserByE
|
|
|
99
99
|
accountId: string;
|
|
100
100
|
constructor(data?: PartialMessage<RegisterUserByEmailResponse>);
|
|
101
101
|
static readonly runtime: typeof proto3;
|
|
102
|
-
static readonly typeName = "
|
|
102
|
+
static readonly typeName = "tech.atls.auth.v1.RegisterUserByEmailResponse";
|
|
103
103
|
static readonly fields: FieldList;
|
|
104
104
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegisterUserByEmailResponse;
|
|
105
105
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegisterUserByEmailResponse;
|
|
@@ -110,7 +110,7 @@ export declare class RegisterUserByPhoneRequest extends Message<RegisterUserByPh
|
|
|
110
110
|
phone: string;
|
|
111
111
|
constructor(data?: PartialMessage<RegisterUserByPhoneRequest>);
|
|
112
112
|
static readonly runtime: typeof proto3;
|
|
113
|
-
static readonly typeName = "
|
|
113
|
+
static readonly typeName = "tech.atls.auth.v1.RegisterUserByPhoneRequest";
|
|
114
114
|
static readonly fields: FieldList;
|
|
115
115
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegisterUserByPhoneRequest;
|
|
116
116
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegisterUserByPhoneRequest;
|
|
@@ -123,7 +123,7 @@ export declare class RegisterUserByPhoneResponse extends Message<RegisterUserByP
|
|
|
123
123
|
accountId: string;
|
|
124
124
|
constructor(data?: PartialMessage<RegisterUserByPhoneResponse>);
|
|
125
125
|
static readonly runtime: typeof proto3;
|
|
126
|
-
static readonly typeName = "
|
|
126
|
+
static readonly typeName = "tech.atls.auth.v1.RegisterUserByPhoneResponse";
|
|
127
127
|
static readonly fields: FieldList;
|
|
128
128
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RegisterUserByPhoneResponse;
|
|
129
129
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RegisterUserByPhoneResponse;
|
|
@@ -134,7 +134,7 @@ export declare class SendRecoveryCodeRequest extends Message<SendRecoveryCodeReq
|
|
|
134
134
|
email: string;
|
|
135
135
|
constructor(data?: PartialMessage<SendRecoveryCodeRequest>);
|
|
136
136
|
static readonly runtime: typeof proto3;
|
|
137
|
-
static readonly typeName = "
|
|
137
|
+
static readonly typeName = "tech.atls.auth.v1.SendRecoveryCodeRequest";
|
|
138
138
|
static readonly fields: FieldList;
|
|
139
139
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendRecoveryCodeRequest;
|
|
140
140
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendRecoveryCodeRequest;
|
|
@@ -145,7 +145,7 @@ export declare class SendRecoveryCodeResponse extends Message<SendRecoveryCodeRe
|
|
|
145
145
|
authProcessId: string;
|
|
146
146
|
constructor(data?: PartialMessage<SendRecoveryCodeResponse>);
|
|
147
147
|
static readonly runtime: typeof proto3;
|
|
148
|
-
static readonly typeName = "
|
|
148
|
+
static readonly typeName = "tech.atls.auth.v1.SendRecoveryCodeResponse";
|
|
149
149
|
static readonly fields: FieldList;
|
|
150
150
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendRecoveryCodeResponse;
|
|
151
151
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendRecoveryCodeResponse;
|
|
@@ -157,7 +157,7 @@ export declare class ConfirmRecoveryCodeRequest extends Message<ConfirmRecoveryC
|
|
|
157
157
|
code: string;
|
|
158
158
|
constructor(data?: PartialMessage<ConfirmRecoveryCodeRequest>);
|
|
159
159
|
static readonly runtime: typeof proto3;
|
|
160
|
-
static readonly typeName = "
|
|
160
|
+
static readonly typeName = "tech.atls.auth.v1.ConfirmRecoveryCodeRequest";
|
|
161
161
|
static readonly fields: FieldList;
|
|
162
162
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfirmRecoveryCodeRequest;
|
|
163
163
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfirmRecoveryCodeRequest;
|
|
@@ -168,7 +168,7 @@ export declare class ConfirmRecoveryCodeResponse extends Message<ConfirmRecovery
|
|
|
168
168
|
sessionToken: string;
|
|
169
169
|
constructor(data?: PartialMessage<ConfirmRecoveryCodeResponse>);
|
|
170
170
|
static readonly runtime: typeof proto3;
|
|
171
|
-
static readonly typeName = "
|
|
171
|
+
static readonly typeName = "tech.atls.auth.v1.ConfirmRecoveryCodeResponse";
|
|
172
172
|
static readonly fields: FieldList;
|
|
173
173
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfirmRecoveryCodeResponse;
|
|
174
174
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfirmRecoveryCodeResponse;
|
|
@@ -179,7 +179,7 @@ export declare class SendVerificationCodeRequest extends Message<SendVerificatio
|
|
|
179
179
|
email: string;
|
|
180
180
|
constructor(data?: PartialMessage<SendVerificationCodeRequest>);
|
|
181
181
|
static readonly runtime: typeof proto3;
|
|
182
|
-
static readonly typeName = "
|
|
182
|
+
static readonly typeName = "tech.atls.auth.v1.SendVerificationCodeRequest";
|
|
183
183
|
static readonly fields: FieldList;
|
|
184
184
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendVerificationCodeRequest;
|
|
185
185
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendVerificationCodeRequest;
|
|
@@ -190,7 +190,7 @@ export declare class SendVerificationCodeResponse extends Message<SendVerificati
|
|
|
190
190
|
authProcessId: string;
|
|
191
191
|
constructor(data?: PartialMessage<SendVerificationCodeResponse>);
|
|
192
192
|
static readonly runtime: typeof proto3;
|
|
193
|
-
static readonly typeName = "
|
|
193
|
+
static readonly typeName = "tech.atls.auth.v1.SendVerificationCodeResponse";
|
|
194
194
|
static readonly fields: FieldList;
|
|
195
195
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SendVerificationCodeResponse;
|
|
196
196
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SendVerificationCodeResponse;
|
|
@@ -202,7 +202,7 @@ export declare class ConfirmVerificationCodeRequest extends Message<ConfirmVerif
|
|
|
202
202
|
code: string;
|
|
203
203
|
constructor(data?: PartialMessage<ConfirmVerificationCodeRequest>);
|
|
204
204
|
static readonly runtime: typeof proto3;
|
|
205
|
-
static readonly typeName = "
|
|
205
|
+
static readonly typeName = "tech.atls.auth.v1.ConfirmVerificationCodeRequest";
|
|
206
206
|
static readonly fields: FieldList;
|
|
207
207
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfirmVerificationCodeRequest;
|
|
208
208
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfirmVerificationCodeRequest;
|
|
@@ -213,7 +213,7 @@ export declare class ConfirmVerificationCodeResponse extends Message<ConfirmVeri
|
|
|
213
213
|
success: boolean;
|
|
214
214
|
constructor(data?: PartialMessage<ConfirmVerificationCodeResponse>);
|
|
215
215
|
static readonly runtime: typeof proto3;
|
|
216
|
-
static readonly typeName = "
|
|
216
|
+
static readonly typeName = "tech.atls.auth.v1.ConfirmVerificationCodeResponse";
|
|
217
217
|
static readonly fields: FieldList;
|
|
218
218
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): ConfirmVerificationCodeResponse;
|
|
219
219
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): ConfirmVerificationCodeResponse;
|
|
@@ -225,7 +225,7 @@ export declare class UpdateUserEmailRequest extends Message<UpdateUserEmailReque
|
|
|
225
225
|
sessionToken: string;
|
|
226
226
|
constructor(data?: PartialMessage<UpdateUserEmailRequest>);
|
|
227
227
|
static readonly runtime: typeof proto3;
|
|
228
|
-
static readonly typeName = "
|
|
228
|
+
static readonly typeName = "tech.atls.auth.v1.UpdateUserEmailRequest";
|
|
229
229
|
static readonly fields: FieldList;
|
|
230
230
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateUserEmailRequest;
|
|
231
231
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateUserEmailRequest;
|
|
@@ -236,7 +236,7 @@ export declare class UpdateUserEmailResponse extends Message<UpdateUserEmailResp
|
|
|
236
236
|
authProcessId: string;
|
|
237
237
|
constructor(data?: PartialMessage<UpdateUserEmailResponse>);
|
|
238
238
|
static readonly runtime: typeof proto3;
|
|
239
|
-
static readonly typeName = "
|
|
239
|
+
static readonly typeName = "tech.atls.auth.v1.UpdateUserEmailResponse";
|
|
240
240
|
static readonly fields: FieldList;
|
|
241
241
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateUserEmailResponse;
|
|
242
242
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateUserEmailResponse;
|
|
@@ -248,7 +248,7 @@ export declare class UpdateUserPasswordRequest extends Message<UpdateUserPasswor
|
|
|
248
248
|
sessionToken: string;
|
|
249
249
|
constructor(data?: PartialMessage<UpdateUserPasswordRequest>);
|
|
250
250
|
static readonly runtime: typeof proto3;
|
|
251
|
-
static readonly typeName = "
|
|
251
|
+
static readonly typeName = "tech.atls.auth.v1.UpdateUserPasswordRequest";
|
|
252
252
|
static readonly fields: FieldList;
|
|
253
253
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateUserPasswordRequest;
|
|
254
254
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateUserPasswordRequest;
|
|
@@ -259,7 +259,7 @@ export declare class UpdateUserPasswordResponse extends Message<UpdateUserPasswo
|
|
|
259
259
|
success: boolean;
|
|
260
260
|
constructor(data?: PartialMessage<UpdateUserPasswordResponse>);
|
|
261
261
|
static readonly runtime: typeof proto3;
|
|
262
|
-
static readonly typeName = "
|
|
262
|
+
static readonly typeName = "tech.atls.auth.v1.UpdateUserPasswordResponse";
|
|
263
263
|
static readonly fields: FieldList;
|
|
264
264
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): UpdateUserPasswordResponse;
|
|
265
265
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): UpdateUserPasswordResponse;
|
|
@@ -270,7 +270,7 @@ export declare class DeleteUserAccountRequest extends Message<DeleteUserAccountR
|
|
|
270
270
|
accountId: string;
|
|
271
271
|
constructor(data?: PartialMessage<DeleteUserAccountRequest>);
|
|
272
272
|
static readonly runtime: typeof proto3;
|
|
273
|
-
static readonly typeName = "
|
|
273
|
+
static readonly typeName = "tech.atls.auth.v1.DeleteUserAccountRequest";
|
|
274
274
|
static readonly fields: FieldList;
|
|
275
275
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteUserAccountRequest;
|
|
276
276
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteUserAccountRequest;
|
|
@@ -281,7 +281,7 @@ export declare class DeleteUserAccountResponse extends Message<DeleteUserAccount
|
|
|
281
281
|
success: boolean;
|
|
282
282
|
constructor(data?: PartialMessage<DeleteUserAccountResponse>);
|
|
283
283
|
static readonly runtime: typeof proto3;
|
|
284
|
-
static readonly typeName = "
|
|
284
|
+
static readonly typeName = "tech.atls.auth.v1.DeleteUserAccountResponse";
|
|
285
285
|
static readonly fields: FieldList;
|
|
286
286
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteUserAccountResponse;
|
|
287
287
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteUserAccountResponse;
|
|
@@ -292,7 +292,7 @@ export declare class GetUserAccountRequest extends Message<GetUserAccountRequest
|
|
|
292
292
|
sessionToken: string;
|
|
293
293
|
constructor(data?: PartialMessage<GetUserAccountRequest>);
|
|
294
294
|
static readonly runtime: typeof proto3;
|
|
295
|
-
static readonly typeName = "
|
|
295
|
+
static readonly typeName = "tech.atls.auth.v1.GetUserAccountRequest";
|
|
296
296
|
static readonly fields: FieldList;
|
|
297
297
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetUserAccountRequest;
|
|
298
298
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetUserAccountRequest;
|
|
@@ -305,7 +305,7 @@ export declare class GetUserAccountResponse extends Message<GetUserAccountRespon
|
|
|
305
305
|
phone?: string;
|
|
306
306
|
constructor(data?: PartialMessage<GetUserAccountResponse>);
|
|
307
307
|
static readonly runtime: typeof proto3;
|
|
308
|
-
static readonly typeName = "
|
|
308
|
+
static readonly typeName = "tech.atls.auth.v1.GetUserAccountResponse";
|
|
309
309
|
static readonly fields: FieldList;
|
|
310
310
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): GetUserAccountResponse;
|
|
311
311
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): GetUserAccountResponse;
|
|
@@ -318,7 +318,7 @@ export declare class LoginUserByProviderRequest extends Message<LoginUserByProvi
|
|
|
318
318
|
nonce: string;
|
|
319
319
|
constructor(data?: PartialMessage<LoginUserByProviderRequest>);
|
|
320
320
|
static readonly runtime: typeof proto3;
|
|
321
|
-
static readonly typeName = "
|
|
321
|
+
static readonly typeName = "tech.atls.auth.v1.LoginUserByProviderRequest";
|
|
322
322
|
static readonly fields: FieldList;
|
|
323
323
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoginUserByProviderRequest;
|
|
324
324
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoginUserByProviderRequest;
|
|
@@ -331,7 +331,7 @@ export declare class LoginUserByProviderResponse extends Message<LoginUserByProv
|
|
|
331
331
|
authProcessId?: string;
|
|
332
332
|
constructor(data?: PartialMessage<LoginUserByProviderResponse>);
|
|
333
333
|
static readonly runtime: typeof proto3;
|
|
334
|
-
static readonly typeName = "
|
|
334
|
+
static readonly typeName = "tech.atls.auth.v1.LoginUserByProviderResponse";
|
|
335
335
|
static readonly fields: FieldList;
|
|
336
336
|
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): LoginUserByProviderResponse;
|
|
337
337
|
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): LoginUserByProviderResponse;
|
|
@@ -6,7 +6,7 @@ export var ProviderType;
|
|
|
6
6
|
ProviderType[ProviderType["GOOGLE"] = 1] = "GOOGLE";
|
|
7
7
|
ProviderType[ProviderType["APPLE"] = 2] = "APPLE";
|
|
8
8
|
})(ProviderType || (ProviderType = {}));
|
|
9
|
-
proto3.util.setEnumType(ProviderType, '
|
|
9
|
+
proto3.util.setEnumType(ProviderType, 'tech.atls.auth.v1.ProviderType', [
|
|
10
10
|
{ no: 0, name: 'PROVIDER_TYPE_UNSPECIFIED' },
|
|
11
11
|
{ no: 1, name: 'PROVIDER_TYPE_GOOGLE' },
|
|
12
12
|
{ no: 2, name: 'PROVIDER_TYPE_APPLE' },
|
|
@@ -20,7 +20,7 @@ export class LoginUserByEmailRequest extends Message {
|
|
|
20
20
|
proto3.util.initPartial(data, this);
|
|
21
21
|
}
|
|
22
22
|
static runtime = proto3;
|
|
23
|
-
static typeName = '
|
|
23
|
+
static typeName = 'tech.atls.auth.v1.LoginUserByEmailRequest';
|
|
24
24
|
static fields = proto3.util.newFieldList(() => [
|
|
25
25
|
{ no: 1, name: 'email', kind: 'scalar', T: 9 },
|
|
26
26
|
{ no: 2, name: 'password', kind: 'scalar', T: 9 },
|
|
@@ -46,7 +46,7 @@ export class LoginUserByEmailResponse extends Message {
|
|
|
46
46
|
proto3.util.initPartial(data, this);
|
|
47
47
|
}
|
|
48
48
|
static runtime = proto3;
|
|
49
|
-
static typeName = '
|
|
49
|
+
static typeName = 'tech.atls.auth.v1.LoginUserByEmailResponse';
|
|
50
50
|
static fields = proto3.util.newFieldList(() => [
|
|
51
51
|
{ no: 1, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
52
52
|
]);
|
|
@@ -70,7 +70,7 @@ export class LoginUserByPhoneRequest extends Message {
|
|
|
70
70
|
proto3.util.initPartial(data, this);
|
|
71
71
|
}
|
|
72
72
|
static runtime = proto3;
|
|
73
|
-
static typeName = '
|
|
73
|
+
static typeName = 'tech.atls.auth.v1.LoginUserByPhoneRequest';
|
|
74
74
|
static fields = proto3.util.newFieldList(() => [
|
|
75
75
|
{ no: 1, name: 'phone', kind: 'scalar', T: 9 },
|
|
76
76
|
]);
|
|
@@ -94,7 +94,7 @@ export class LoginUserByPhoneResponse extends Message {
|
|
|
94
94
|
proto3.util.initPartial(data, this);
|
|
95
95
|
}
|
|
96
96
|
static runtime = proto3;
|
|
97
|
-
static typeName = '
|
|
97
|
+
static typeName = 'tech.atls.auth.v1.LoginUserByPhoneResponse';
|
|
98
98
|
static fields = proto3.util.newFieldList(() => [
|
|
99
99
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
100
100
|
]);
|
|
@@ -120,7 +120,7 @@ export class ConfirmLoginCodeRequest extends Message {
|
|
|
120
120
|
proto3.util.initPartial(data, this);
|
|
121
121
|
}
|
|
122
122
|
static runtime = proto3;
|
|
123
|
-
static typeName = '
|
|
123
|
+
static typeName = 'tech.atls.auth.v1.ConfirmLoginCodeRequest';
|
|
124
124
|
static fields = proto3.util.newFieldList(() => [
|
|
125
125
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
126
126
|
{ no: 2, name: 'code', kind: 'scalar', T: 9 },
|
|
@@ -146,7 +146,7 @@ export class ConfirmLoginCodeResponse extends Message {
|
|
|
146
146
|
proto3.util.initPartial(data, this);
|
|
147
147
|
}
|
|
148
148
|
static runtime = proto3;
|
|
149
|
-
static typeName = '
|
|
149
|
+
static typeName = 'tech.atls.auth.v1.ConfirmLoginCodeResponse';
|
|
150
150
|
static fields = proto3.util.newFieldList(() => [
|
|
151
151
|
{ no: 1, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
152
152
|
]);
|
|
@@ -171,7 +171,7 @@ export class RegisterUserByEmailRequest extends Message {
|
|
|
171
171
|
proto3.util.initPartial(data, this);
|
|
172
172
|
}
|
|
173
173
|
static runtime = proto3;
|
|
174
|
-
static typeName = '
|
|
174
|
+
static typeName = 'tech.atls.auth.v1.RegisterUserByEmailRequest';
|
|
175
175
|
static fields = proto3.util.newFieldList(() => [
|
|
176
176
|
{ no: 1, name: 'email', kind: 'scalar', T: 9 },
|
|
177
177
|
{ no: 2, name: 'password', kind: 'scalar', T: 9 },
|
|
@@ -198,7 +198,7 @@ export class RegisterUserByEmailResponse extends Message {
|
|
|
198
198
|
proto3.util.initPartial(data, this);
|
|
199
199
|
}
|
|
200
200
|
static runtime = proto3;
|
|
201
|
-
static typeName = '
|
|
201
|
+
static typeName = 'tech.atls.auth.v1.RegisterUserByEmailResponse';
|
|
202
202
|
static fields = proto3.util.newFieldList(() => [
|
|
203
203
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
204
204
|
{ no: 2, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
@@ -224,7 +224,7 @@ export class RegisterUserByPhoneRequest extends Message {
|
|
|
224
224
|
proto3.util.initPartial(data, this);
|
|
225
225
|
}
|
|
226
226
|
static runtime = proto3;
|
|
227
|
-
static typeName = '
|
|
227
|
+
static typeName = 'tech.atls.auth.v1.RegisterUserByPhoneRequest';
|
|
228
228
|
static fields = proto3.util.newFieldList(() => [
|
|
229
229
|
{ no: 1, name: 'phone', kind: 'scalar', T: 9 },
|
|
230
230
|
]);
|
|
@@ -250,7 +250,7 @@ export class RegisterUserByPhoneResponse extends Message {
|
|
|
250
250
|
proto3.util.initPartial(data, this);
|
|
251
251
|
}
|
|
252
252
|
static runtime = proto3;
|
|
253
|
-
static typeName = '
|
|
253
|
+
static typeName = 'tech.atls.auth.v1.RegisterUserByPhoneResponse';
|
|
254
254
|
static fields = proto3.util.newFieldList(() => [
|
|
255
255
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
256
256
|
{ no: 2, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
@@ -276,7 +276,7 @@ export class SendRecoveryCodeRequest extends Message {
|
|
|
276
276
|
proto3.util.initPartial(data, this);
|
|
277
277
|
}
|
|
278
278
|
static runtime = proto3;
|
|
279
|
-
static typeName = '
|
|
279
|
+
static typeName = 'tech.atls.auth.v1.SendRecoveryCodeRequest';
|
|
280
280
|
static fields = proto3.util.newFieldList(() => [
|
|
281
281
|
{ no: 1, name: 'email', kind: 'scalar', T: 9 },
|
|
282
282
|
]);
|
|
@@ -300,7 +300,7 @@ export class SendRecoveryCodeResponse extends Message {
|
|
|
300
300
|
proto3.util.initPartial(data, this);
|
|
301
301
|
}
|
|
302
302
|
static runtime = proto3;
|
|
303
|
-
static typeName = '
|
|
303
|
+
static typeName = 'tech.atls.auth.v1.SendRecoveryCodeResponse';
|
|
304
304
|
static fields = proto3.util.newFieldList(() => [
|
|
305
305
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
306
306
|
]);
|
|
@@ -325,7 +325,7 @@ export class ConfirmRecoveryCodeRequest extends Message {
|
|
|
325
325
|
proto3.util.initPartial(data, this);
|
|
326
326
|
}
|
|
327
327
|
static runtime = proto3;
|
|
328
|
-
static typeName = '
|
|
328
|
+
static typeName = 'tech.atls.auth.v1.ConfirmRecoveryCodeRequest';
|
|
329
329
|
static fields = proto3.util.newFieldList(() => [
|
|
330
330
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
331
331
|
{ no: 2, name: 'code', kind: 'scalar', T: 9 },
|
|
@@ -350,7 +350,7 @@ export class ConfirmRecoveryCodeResponse extends Message {
|
|
|
350
350
|
proto3.util.initPartial(data, this);
|
|
351
351
|
}
|
|
352
352
|
static runtime = proto3;
|
|
353
|
-
static typeName = '
|
|
353
|
+
static typeName = 'tech.atls.auth.v1.ConfirmRecoveryCodeResponse';
|
|
354
354
|
static fields = proto3.util.newFieldList(() => [
|
|
355
355
|
{ no: 1, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
356
356
|
]);
|
|
@@ -374,7 +374,7 @@ export class SendVerificationCodeRequest extends Message {
|
|
|
374
374
|
proto3.util.initPartial(data, this);
|
|
375
375
|
}
|
|
376
376
|
static runtime = proto3;
|
|
377
|
-
static typeName = '
|
|
377
|
+
static typeName = 'tech.atls.auth.v1.SendVerificationCodeRequest';
|
|
378
378
|
static fields = proto3.util.newFieldList(() => [
|
|
379
379
|
{ no: 1, name: 'email', kind: 'scalar', T: 9 },
|
|
380
380
|
]);
|
|
@@ -398,7 +398,7 @@ export class SendVerificationCodeResponse extends Message {
|
|
|
398
398
|
proto3.util.initPartial(data, this);
|
|
399
399
|
}
|
|
400
400
|
static runtime = proto3;
|
|
401
|
-
static typeName = '
|
|
401
|
+
static typeName = 'tech.atls.auth.v1.SendVerificationCodeResponse';
|
|
402
402
|
static fields = proto3.util.newFieldList(() => [
|
|
403
403
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
404
404
|
]);
|
|
@@ -423,7 +423,7 @@ export class ConfirmVerificationCodeRequest extends Message {
|
|
|
423
423
|
proto3.util.initPartial(data, this);
|
|
424
424
|
}
|
|
425
425
|
static runtime = proto3;
|
|
426
|
-
static typeName = '
|
|
426
|
+
static typeName = 'tech.atls.auth.v1.ConfirmVerificationCodeRequest';
|
|
427
427
|
static fields = proto3.util.newFieldList(() => [
|
|
428
428
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
429
429
|
{ no: 2, name: 'code', kind: 'scalar', T: 9 },
|
|
@@ -448,7 +448,7 @@ export class ConfirmVerificationCodeResponse extends Message {
|
|
|
448
448
|
proto3.util.initPartial(data, this);
|
|
449
449
|
}
|
|
450
450
|
static runtime = proto3;
|
|
451
|
-
static typeName = '
|
|
451
|
+
static typeName = 'tech.atls.auth.v1.ConfirmVerificationCodeResponse';
|
|
452
452
|
static fields = proto3.util.newFieldList(() => [
|
|
453
453
|
{ no: 1, name: 'success', kind: 'scalar', T: 8 },
|
|
454
454
|
]);
|
|
@@ -473,7 +473,7 @@ export class UpdateUserEmailRequest extends Message {
|
|
|
473
473
|
proto3.util.initPartial(data, this);
|
|
474
474
|
}
|
|
475
475
|
static runtime = proto3;
|
|
476
|
-
static typeName = '
|
|
476
|
+
static typeName = 'tech.atls.auth.v1.UpdateUserEmailRequest';
|
|
477
477
|
static fields = proto3.util.newFieldList(() => [
|
|
478
478
|
{ no: 1, name: 'email', kind: 'scalar', T: 9 },
|
|
479
479
|
{ no: 2, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
@@ -498,7 +498,7 @@ export class UpdateUserEmailResponse extends Message {
|
|
|
498
498
|
proto3.util.initPartial(data, this);
|
|
499
499
|
}
|
|
500
500
|
static runtime = proto3;
|
|
501
|
-
static typeName = '
|
|
501
|
+
static typeName = 'tech.atls.auth.v1.UpdateUserEmailResponse';
|
|
502
502
|
static fields = proto3.util.newFieldList(() => [
|
|
503
503
|
{ no: 1, name: 'authProcessId', kind: 'scalar', T: 9 },
|
|
504
504
|
]);
|
|
@@ -523,7 +523,7 @@ export class UpdateUserPasswordRequest extends Message {
|
|
|
523
523
|
proto3.util.initPartial(data, this);
|
|
524
524
|
}
|
|
525
525
|
static runtime = proto3;
|
|
526
|
-
static typeName = '
|
|
526
|
+
static typeName = 'tech.atls.auth.v1.UpdateUserPasswordRequest';
|
|
527
527
|
static fields = proto3.util.newFieldList(() => [
|
|
528
528
|
{ no: 1, name: 'password', kind: 'scalar', T: 9 },
|
|
529
529
|
{ no: 2, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
@@ -548,7 +548,7 @@ export class UpdateUserPasswordResponse extends Message {
|
|
|
548
548
|
proto3.util.initPartial(data, this);
|
|
549
549
|
}
|
|
550
550
|
static runtime = proto3;
|
|
551
|
-
static typeName = '
|
|
551
|
+
static typeName = 'tech.atls.auth.v1.UpdateUserPasswordResponse';
|
|
552
552
|
static fields = proto3.util.newFieldList(() => [
|
|
553
553
|
{ no: 1, name: 'success', kind: 'scalar', T: 8 },
|
|
554
554
|
]);
|
|
@@ -572,7 +572,7 @@ export class DeleteUserAccountRequest extends Message {
|
|
|
572
572
|
proto3.util.initPartial(data, this);
|
|
573
573
|
}
|
|
574
574
|
static runtime = proto3;
|
|
575
|
-
static typeName = '
|
|
575
|
+
static typeName = 'tech.atls.auth.v1.DeleteUserAccountRequest';
|
|
576
576
|
static fields = proto3.util.newFieldList(() => [
|
|
577
577
|
{ no: 1, name: 'accountId', kind: 'scalar', T: 9 },
|
|
578
578
|
]);
|
|
@@ -596,7 +596,7 @@ export class DeleteUserAccountResponse extends Message {
|
|
|
596
596
|
proto3.util.initPartial(data, this);
|
|
597
597
|
}
|
|
598
598
|
static runtime = proto3;
|
|
599
|
-
static typeName = '
|
|
599
|
+
static typeName = 'tech.atls.auth.v1.DeleteUserAccountResponse';
|
|
600
600
|
static fields = proto3.util.newFieldList(() => [
|
|
601
601
|
{ no: 1, name: 'success', kind: 'scalar', T: 8 },
|
|
602
602
|
]);
|
|
@@ -620,7 +620,7 @@ export class GetUserAccountRequest extends Message {
|
|
|
620
620
|
proto3.util.initPartial(data, this);
|
|
621
621
|
}
|
|
622
622
|
static runtime = proto3;
|
|
623
|
-
static typeName = '
|
|
623
|
+
static typeName = 'tech.atls.auth.v1.GetUserAccountRequest';
|
|
624
624
|
static fields = proto3.util.newFieldList(() => [
|
|
625
625
|
{ no: 1, name: 'sessionToken', kind: 'scalar', T: 9 },
|
|
626
626
|
]);
|
|
@@ -646,7 +646,7 @@ export class GetUserAccountResponse extends Message {
|
|
|
646
646
|
proto3.util.initPartial(data, this);
|
|
647
647
|
}
|
|
648
648
|
static runtime = proto3;
|
|
649
|
-
static typeName = '
|
|
649
|
+
static typeName = 'tech.atls.auth.v1.GetUserAccountResponse';
|
|
650
650
|
static fields = proto3.util.newFieldList(() => [
|
|
651
651
|
{ no: 1, name: 'id', kind: 'scalar', T: 9 },
|
|
652
652
|
{ no: 2, name: 'email', kind: 'scalar', T: 9, opt: true },
|
|
@@ -674,7 +674,7 @@ export class LoginUserByProviderRequest extends Message {
|
|
|
674
674
|
proto3.util.initPartial(data, this);
|
|
675
675
|
}
|
|
676
676
|
static runtime = proto3;
|
|
677
|
-
static typeName = '
|
|
677
|
+
static typeName = 'tech.atls.auth.v1.LoginUserByProviderRequest';
|
|
678
678
|
static fields = proto3.util.newFieldList(() => [
|
|
679
679
|
{ no: 1, name: 'provider', kind: 'enum', T: proto3.getEnumType(ProviderType) },
|
|
680
680
|
{ no: 2, name: 'idToken', kind: 'scalar', T: 9 },
|
|
@@ -702,7 +702,7 @@ export class LoginUserByProviderResponse extends Message {
|
|
|
702
702
|
proto3.util.initPartial(data, this);
|
|
703
703
|
}
|
|
704
704
|
static runtime = proto3;
|
|
705
|
-
static typeName = '
|
|
705
|
+
static typeName = 'tech.atls.auth.v1.LoginUserByProviderResponse';
|
|
706
706
|
static fields = proto3.util.newFieldList(() => [
|
|
707
707
|
{ no: 1, name: 'sessionToken', kind: 'scalar', T: 9, opt: true },
|
|
708
708
|
{ no: 2, name: 'accountId', kind: 'scalar', T: 9, opt: true },
|
|
@@ -28,7 +28,7 @@ import { UpdateUserEmailResponse } from './auth.payloads_pb.js';
|
|
|
28
28
|
import { UpdateUserPasswordRequest } from './auth.payloads_pb.js';
|
|
29
29
|
import { UpdateUserPasswordResponse } from './auth.payloads_pb.js';
|
|
30
30
|
export declare const AuthService: {
|
|
31
|
-
readonly typeName: "
|
|
31
|
+
readonly typeName: "tech.atls.auth.v1.AuthService";
|
|
32
32
|
readonly methods: {
|
|
33
33
|
readonly loginUserByEmail: {
|
|
34
34
|
readonly name: "LoginUserByEmail";
|
|
@@ -28,7 +28,7 @@ import { UpdateUserEmailResponse } from './auth.payloads_pb.js';
|
|
|
28
28
|
import { UpdateUserPasswordRequest } from './auth.payloads_pb.js';
|
|
29
29
|
import { UpdateUserPasswordResponse } from './auth.payloads_pb.js';
|
|
30
30
|
export const AuthService = {
|
|
31
|
-
typeName: '
|
|
31
|
+
typeName: 'tech.atls.auth.v1.AuthService',
|
|
32
32
|
methods: {
|
|
33
33
|
loginUserByEmail: {
|
|
34
34
|
name: 'LoginUserByEmail',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type * from './
|
|
1
|
+
export type * from './tech/atls/auth/v1/auth.payloads_pb.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atls/auth-rpc",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"license": "BSD-3-Clause",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@atls/protoc-gen-abstractions": "0.0.3",
|
|
22
|
-
"@atls/protoc-gen-config": "0.0.
|
|
22
|
+
"@atls/protoc-gen-config": "0.0.3",
|
|
23
23
|
"@atls/protoc-gen-interfaces": "0.0.7",
|
|
24
24
|
"@bufbuild/buf": "1.50.1",
|
|
25
25
|
"@bufbuild/protobuf": "1.10.0",
|
package/src/config.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// @generated by protoc-gen-config 0.0.1 with parameter "target=ts"
|
|
2
|
-
// @generated from file
|
|
2
|
+
// @generated from file tech/atls/auth/v1/auth.service.proto (package tech.atls.auth.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
|
|
@@ -7,10 +7,10 @@ import path from 'node:path'
|
|
|
7
7
|
|
|
8
8
|
const dirname = path.dirname(new URL(import.meta.url).pathname)
|
|
9
9
|
|
|
10
|
-
export const packageName = '
|
|
10
|
+
export const packageName = 'tech.atls.auth.v1'
|
|
11
11
|
|
|
12
12
|
export const serviceName = 'AuthService'
|
|
13
13
|
|
|
14
|
-
export const servicePath = path.join(dirname, '../
|
|
14
|
+
export const servicePath = path.join(dirname, '../tech/atls/auth/v1/auth.service.proto')
|
|
15
15
|
|
|
16
16
|
export const includeDirs = [path.join(dirname, '../')]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './tech/atls/auth/v1/auth.payloads_pb.js'
|