@teja-app/api-client 0.0.1-dev.20260110175150.531d373 → 0.0.1-dev.20260115141101.2e5949c
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.
|
@@ -3,6 +3,7 @@ export declare class AuthService {
|
|
|
3
3
|
/**
|
|
4
4
|
* Login identity
|
|
5
5
|
* Authenticate and get available tenants
|
|
6
|
+
* @returns any Response for status 200
|
|
6
7
|
* @throws ApiError
|
|
7
8
|
*/
|
|
8
9
|
static postAuthLoginIdentity({ requestBody, }: {
|
|
@@ -10,10 +11,26 @@ export declare class AuthService {
|
|
|
10
11
|
email: string;
|
|
11
12
|
password: string;
|
|
12
13
|
};
|
|
13
|
-
}): CancelablePromise<
|
|
14
|
+
}): CancelablePromise<{
|
|
15
|
+
success: boolean;
|
|
16
|
+
data: {
|
|
17
|
+
identityId: string;
|
|
18
|
+
email: string;
|
|
19
|
+
globalRole: string;
|
|
20
|
+
availableTenants: Array<{
|
|
21
|
+
membershipId: string;
|
|
22
|
+
tenantId: string;
|
|
23
|
+
displayName: (string | null);
|
|
24
|
+
fullName: (string | null);
|
|
25
|
+
isActive: boolean;
|
|
26
|
+
}>;
|
|
27
|
+
mfaRequired: boolean;
|
|
28
|
+
};
|
|
29
|
+
}>;
|
|
14
30
|
/**
|
|
15
31
|
* Select tenant
|
|
16
32
|
* Select tenant and get JWT tokens
|
|
33
|
+
* @returns any Response for status 200
|
|
17
34
|
* @throws ApiError
|
|
18
35
|
*/
|
|
19
36
|
static postAuthSelectTenant({ requestBody, }: {
|
|
@@ -22,40 +39,83 @@ export declare class AuthService {
|
|
|
22
39
|
membershipId: string;
|
|
23
40
|
rememberMe?: boolean;
|
|
24
41
|
};
|
|
25
|
-
}): CancelablePromise<
|
|
42
|
+
}): CancelablePromise<{
|
|
43
|
+
success: boolean;
|
|
44
|
+
data: {
|
|
45
|
+
accessToken: string;
|
|
46
|
+
refreshToken: string;
|
|
47
|
+
user: {
|
|
48
|
+
identityId: string;
|
|
49
|
+
membershipId: string;
|
|
50
|
+
tenantId: string;
|
|
51
|
+
email: string;
|
|
52
|
+
fullName: (string | null);
|
|
53
|
+
displayName: (string | null);
|
|
54
|
+
globalRole: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
}>;
|
|
26
58
|
/**
|
|
27
59
|
* Logout
|
|
28
60
|
* Logout and invalidate refresh token
|
|
61
|
+
* @returns any Response for status 200
|
|
29
62
|
* @throws ApiError
|
|
30
63
|
*/
|
|
31
64
|
static postAuthLogout({ requestBody, }: {
|
|
32
65
|
requestBody: {
|
|
33
66
|
refreshToken: string;
|
|
34
67
|
};
|
|
35
|
-
}): CancelablePromise<
|
|
68
|
+
}): CancelablePromise<{
|
|
69
|
+
success: boolean;
|
|
70
|
+
message: string;
|
|
71
|
+
}>;
|
|
36
72
|
/**
|
|
37
73
|
* Refresh token
|
|
38
74
|
* Get new access token using refresh token
|
|
75
|
+
* @returns any Response for status 200
|
|
39
76
|
* @throws ApiError
|
|
40
77
|
*/
|
|
41
78
|
static postAuthRefresh({ requestBody, }: {
|
|
42
79
|
requestBody: {
|
|
43
80
|
refreshToken: string;
|
|
44
81
|
};
|
|
45
|
-
}): CancelablePromise<
|
|
82
|
+
}): CancelablePromise<{
|
|
83
|
+
success: boolean;
|
|
84
|
+
data: {
|
|
85
|
+
accessToken: string;
|
|
86
|
+
refreshToken: string;
|
|
87
|
+
expiresIn: number;
|
|
88
|
+
};
|
|
89
|
+
}>;
|
|
46
90
|
/**
|
|
47
91
|
* Switch tenant
|
|
48
92
|
* Switch to a different tenant
|
|
93
|
+
* @returns any Response for status 200
|
|
49
94
|
* @throws ApiError
|
|
50
95
|
*/
|
|
51
96
|
static postAuthSwitchTenant({ requestBody, }: {
|
|
52
97
|
requestBody: {
|
|
53
98
|
targetTenantId: string;
|
|
54
99
|
};
|
|
55
|
-
}): CancelablePromise<
|
|
100
|
+
}): CancelablePromise<{
|
|
101
|
+
success: boolean;
|
|
102
|
+
data: {
|
|
103
|
+
success: boolean;
|
|
104
|
+
accessToken: string;
|
|
105
|
+
refreshToken: string;
|
|
106
|
+
membership: {
|
|
107
|
+
id: string;
|
|
108
|
+
tenantId: string;
|
|
109
|
+
firstName: string;
|
|
110
|
+
lastName: string;
|
|
111
|
+
isActive: boolean;
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
}>;
|
|
56
115
|
/**
|
|
57
116
|
* Change password
|
|
58
117
|
* Change current user's password
|
|
118
|
+
* @returns any Response for status 200
|
|
59
119
|
* @throws ApiError
|
|
60
120
|
*/
|
|
61
121
|
static postAuthChangePassword({ requestBody, }: {
|
|
@@ -63,66 +123,127 @@ export declare class AuthService {
|
|
|
63
123
|
currentPassword: string;
|
|
64
124
|
newPassword: string;
|
|
65
125
|
};
|
|
66
|
-
}): CancelablePromise<
|
|
126
|
+
}): CancelablePromise<{
|
|
127
|
+
success: boolean;
|
|
128
|
+
message: string;
|
|
129
|
+
}>;
|
|
67
130
|
/**
|
|
68
131
|
* Get profile
|
|
69
132
|
* Get current user profile
|
|
133
|
+
* @returns any Response for status 200
|
|
70
134
|
* @throws ApiError
|
|
71
135
|
*/
|
|
72
|
-
static getAuthProfile(): CancelablePromise<
|
|
136
|
+
static getAuthProfile(): CancelablePromise<{
|
|
137
|
+
success: boolean;
|
|
138
|
+
data: {
|
|
139
|
+
id: string;
|
|
140
|
+
email: string;
|
|
141
|
+
firstName: string;
|
|
142
|
+
lastName: string;
|
|
143
|
+
fullName: string;
|
|
144
|
+
role: string;
|
|
145
|
+
permissions: Array<string>;
|
|
146
|
+
tenantId: (string | null);
|
|
147
|
+
isActive: boolean;
|
|
148
|
+
emailVerified: boolean;
|
|
149
|
+
mfaEnabled: boolean;
|
|
150
|
+
isLocked: boolean;
|
|
151
|
+
lockedUntil: (string | null);
|
|
152
|
+
mustChangePassword: boolean;
|
|
153
|
+
lastLoginAt: (string | null);
|
|
154
|
+
preferences: Record<string, any>;
|
|
155
|
+
createdAt: string;
|
|
156
|
+
updatedAt: string;
|
|
157
|
+
};
|
|
158
|
+
}>;
|
|
73
159
|
/**
|
|
74
160
|
* Get sessions
|
|
75
161
|
* Get active sessions for current user
|
|
162
|
+
* @returns any Response for status 200
|
|
76
163
|
* @throws ApiError
|
|
77
164
|
*/
|
|
78
|
-
static getAuthSessions(): CancelablePromise<
|
|
165
|
+
static getAuthSessions(): CancelablePromise<{
|
|
166
|
+
success: boolean;
|
|
167
|
+
data: {
|
|
168
|
+
sessions: Array<{
|
|
169
|
+
id: string;
|
|
170
|
+
ipAddress?: string;
|
|
171
|
+
userAgent?: string;
|
|
172
|
+
deviceInfo?: Record<string, any>;
|
|
173
|
+
lastActivityAt: string;
|
|
174
|
+
createdAt: string;
|
|
175
|
+
isIdle: boolean;
|
|
176
|
+
}>;
|
|
177
|
+
};
|
|
178
|
+
}>;
|
|
79
179
|
/**
|
|
80
180
|
* Revoke session
|
|
81
181
|
* Revoke a specific session
|
|
182
|
+
* @returns any Response for status 200
|
|
82
183
|
* @throws ApiError
|
|
83
184
|
*/
|
|
84
185
|
static deleteAuthSessionsBySessionId({ sessionId, }: {
|
|
85
186
|
sessionId: string;
|
|
86
|
-
}): CancelablePromise<
|
|
187
|
+
}): CancelablePromise<{
|
|
188
|
+
success: boolean;
|
|
189
|
+
message: string;
|
|
190
|
+
}>;
|
|
87
191
|
/**
|
|
88
192
|
* Revoke all sessions
|
|
89
193
|
* Revoke all sessions for current user
|
|
194
|
+
* @returns any Response for status 200
|
|
90
195
|
* @throws ApiError
|
|
91
196
|
*/
|
|
92
|
-
static postAuthSessionsRevokeAll(): CancelablePromise<
|
|
197
|
+
static postAuthSessionsRevokeAll(): CancelablePromise<{
|
|
198
|
+
success: boolean;
|
|
199
|
+
message: string;
|
|
200
|
+
}>;
|
|
93
201
|
/**
|
|
94
202
|
* Verify email
|
|
95
203
|
* Verify email address with token
|
|
204
|
+
* @returns any Response for status 200
|
|
96
205
|
* @throws ApiError
|
|
97
206
|
*/
|
|
98
207
|
static postAuthVerifyEmail({ requestBody, }: {
|
|
99
208
|
requestBody: {
|
|
100
209
|
token: string;
|
|
101
210
|
};
|
|
102
|
-
}): CancelablePromise<
|
|
211
|
+
}): CancelablePromise<{
|
|
212
|
+
success: boolean;
|
|
213
|
+
message: string;
|
|
214
|
+
}>;
|
|
103
215
|
/**
|
|
104
216
|
* Resend verification
|
|
105
217
|
* Resend email verification link
|
|
218
|
+
* @returns any Response for status 200
|
|
106
219
|
* @throws ApiError
|
|
107
220
|
*/
|
|
108
221
|
static postAuthResendVerification({ requestBody, }: {
|
|
109
222
|
requestBody: {
|
|
110
223
|
email: string;
|
|
111
224
|
};
|
|
112
|
-
}): CancelablePromise<
|
|
225
|
+
}): CancelablePromise<{
|
|
226
|
+
success: boolean;
|
|
227
|
+
message: string;
|
|
228
|
+
}>;
|
|
113
229
|
/**
|
|
114
230
|
* Forgot password
|
|
115
231
|
* Request password reset email
|
|
232
|
+
* @returns any Response for status 200
|
|
116
233
|
* @throws ApiError
|
|
117
234
|
*/
|
|
118
235
|
static postAuthForgotPassword({ requestBody, }: {
|
|
119
236
|
requestBody: {
|
|
120
237
|
email: string;
|
|
121
238
|
};
|
|
122
|
-
}): CancelablePromise<
|
|
239
|
+
}): CancelablePromise<{
|
|
240
|
+
success: boolean;
|
|
241
|
+
message: string;
|
|
242
|
+
}>;
|
|
123
243
|
/**
|
|
124
244
|
* Reset password
|
|
125
245
|
* Reset password using reset token
|
|
246
|
+
* @returns any Response for status 200
|
|
126
247
|
* @throws ApiError
|
|
127
248
|
*/
|
|
128
249
|
static postAuthResetPassword({ requestBody, }: {
|
|
@@ -130,26 +251,45 @@ export declare class AuthService {
|
|
|
130
251
|
token: string;
|
|
131
252
|
newPassword: string;
|
|
132
253
|
};
|
|
133
|
-
}): CancelablePromise<
|
|
254
|
+
}): CancelablePromise<{
|
|
255
|
+
success: boolean;
|
|
256
|
+
message: string;
|
|
257
|
+
}>;
|
|
134
258
|
/**
|
|
135
259
|
* Validate reset token
|
|
136
260
|
* Validate password reset token is valid
|
|
261
|
+
* @returns any Response for status 200
|
|
137
262
|
* @throws ApiError
|
|
138
263
|
*/
|
|
139
264
|
static postAuthValidateResetToken({ requestBody, }: {
|
|
140
265
|
requestBody: {
|
|
141
266
|
token: string;
|
|
142
267
|
};
|
|
143
|
-
}): CancelablePromise<
|
|
268
|
+
}): CancelablePromise<{
|
|
269
|
+
success: boolean;
|
|
270
|
+
data: {
|
|
271
|
+
valid: boolean;
|
|
272
|
+
email?: string;
|
|
273
|
+
};
|
|
274
|
+
}>;
|
|
144
275
|
/**
|
|
145
276
|
* Setup MFA
|
|
146
277
|
* Generate MFA secret and QR code
|
|
278
|
+
* @returns any Response for status 200
|
|
147
279
|
* @throws ApiError
|
|
148
280
|
*/
|
|
149
|
-
static postAuthMfaSetup(): CancelablePromise<
|
|
281
|
+
static postAuthMfaSetup(): CancelablePromise<{
|
|
282
|
+
success: boolean;
|
|
283
|
+
data: {
|
|
284
|
+
secret: string;
|
|
285
|
+
qrCode: string;
|
|
286
|
+
backupCodes?: Array<string>;
|
|
287
|
+
};
|
|
288
|
+
}>;
|
|
150
289
|
/**
|
|
151
290
|
* Enable MFA
|
|
152
291
|
* Enable MFA by verifying secret and code
|
|
292
|
+
* @returns any Response for status 200
|
|
153
293
|
* @throws ApiError
|
|
154
294
|
*/
|
|
155
295
|
static postAuthMfaEnable({ requestBody, }: {
|
|
@@ -157,10 +297,17 @@ export declare class AuthService {
|
|
|
157
297
|
secret: string;
|
|
158
298
|
code: string;
|
|
159
299
|
};
|
|
160
|
-
}): CancelablePromise<
|
|
300
|
+
}): CancelablePromise<{
|
|
301
|
+
success: boolean;
|
|
302
|
+
message: string;
|
|
303
|
+
data: {
|
|
304
|
+
backupCodes: Array<string>;
|
|
305
|
+
};
|
|
306
|
+
}>;
|
|
161
307
|
/**
|
|
162
308
|
* Verify MFA
|
|
163
309
|
* Verify MFA code during login
|
|
310
|
+
* @returns any Response for status 200
|
|
164
311
|
* @throws ApiError
|
|
165
312
|
*/
|
|
166
313
|
static postAuthMfaVerify({ requestBody, }: {
|
|
@@ -169,44 +316,92 @@ export declare class AuthService {
|
|
|
169
316
|
membershipId: string;
|
|
170
317
|
code: string;
|
|
171
318
|
};
|
|
172
|
-
}): CancelablePromise<
|
|
319
|
+
}): CancelablePromise<{
|
|
320
|
+
success: boolean;
|
|
321
|
+
message: string;
|
|
322
|
+
data: {
|
|
323
|
+
accessToken: string;
|
|
324
|
+
refreshToken: string;
|
|
325
|
+
user: {
|
|
326
|
+
identityId: string;
|
|
327
|
+
membershipId: string;
|
|
328
|
+
tenantId: string;
|
|
329
|
+
email: string;
|
|
330
|
+
fullName: (string | null);
|
|
331
|
+
displayName: (string | null);
|
|
332
|
+
globalRole: string;
|
|
333
|
+
};
|
|
334
|
+
usedBackupCode: boolean;
|
|
335
|
+
};
|
|
336
|
+
}>;
|
|
173
337
|
/**
|
|
174
338
|
* Disable MFA
|
|
175
339
|
* Disable MFA for current user
|
|
340
|
+
* @returns any Response for status 200
|
|
176
341
|
* @throws ApiError
|
|
177
342
|
*/
|
|
178
343
|
static deleteAuthMfa({ requestBody, }: {
|
|
179
344
|
requestBody: {
|
|
180
345
|
code: string;
|
|
181
346
|
};
|
|
182
|
-
}): CancelablePromise<
|
|
347
|
+
}): CancelablePromise<{
|
|
348
|
+
success: boolean;
|
|
349
|
+
message: string;
|
|
350
|
+
}>;
|
|
183
351
|
/**
|
|
184
352
|
* OAuth Google
|
|
185
353
|
* Initiate OAuth flow with Google
|
|
354
|
+
* @returns any Response for status 200
|
|
186
355
|
* @throws ApiError
|
|
187
356
|
*/
|
|
188
357
|
static getAuthOauthGoogle({ mode, returnUrl, }: {
|
|
189
358
|
mode?: 'login' | 'link';
|
|
190
359
|
returnUrl?: string;
|
|
191
|
-
}): CancelablePromise<
|
|
360
|
+
}): CancelablePromise<{
|
|
361
|
+
success: boolean;
|
|
362
|
+
data: {
|
|
363
|
+
authorizationUrl: string;
|
|
364
|
+
state: string;
|
|
365
|
+
};
|
|
366
|
+
}>;
|
|
192
367
|
/**
|
|
193
368
|
* Unlink OAuth Google
|
|
194
369
|
* Unlink Google OAuth from account
|
|
370
|
+
* @returns any Response for status 200
|
|
195
371
|
* @throws ApiError
|
|
196
372
|
*/
|
|
197
|
-
static deleteAuthOauthGoogle(): CancelablePromise<
|
|
373
|
+
static deleteAuthOauthGoogle(): CancelablePromise<{
|
|
374
|
+
success: boolean;
|
|
375
|
+
message: string;
|
|
376
|
+
}>;
|
|
198
377
|
/**
|
|
199
378
|
* OAuth callback
|
|
200
379
|
* Handle OAuth callback from provider
|
|
380
|
+
* @returns any Response for status 200
|
|
201
381
|
* @throws ApiError
|
|
202
382
|
*/
|
|
203
383
|
static getAuthOauthCallback({ code, state, }: {
|
|
204
384
|
code: string;
|
|
205
385
|
state: string;
|
|
206
|
-
}): CancelablePromise<
|
|
386
|
+
}): CancelablePromise<{
|
|
387
|
+
success: boolean;
|
|
388
|
+
data: {
|
|
389
|
+
mode: 'login' | 'link';
|
|
390
|
+
isNewUser: boolean;
|
|
391
|
+
identityId: string;
|
|
392
|
+
email: string;
|
|
393
|
+
returnUrl: string;
|
|
394
|
+
availableTenants?: Array<{
|
|
395
|
+
membershipId: string;
|
|
396
|
+
tenantId: string;
|
|
397
|
+
displayName: (string | null);
|
|
398
|
+
}>;
|
|
399
|
+
};
|
|
400
|
+
}>;
|
|
207
401
|
/**
|
|
208
402
|
* Link OAuth
|
|
209
403
|
* Link OAuth provider to existing account
|
|
404
|
+
* @returns any Response for status 200
|
|
210
405
|
* @throws ApiError
|
|
211
406
|
*/
|
|
212
407
|
static postAuthOauthLink({ requestBody, }: {
|
|
@@ -214,6 +409,9 @@ export declare class AuthService {
|
|
|
214
409
|
code: string;
|
|
215
410
|
state: string;
|
|
216
411
|
};
|
|
217
|
-
}): CancelablePromise<
|
|
412
|
+
}): CancelablePromise<{
|
|
413
|
+
success: boolean;
|
|
414
|
+
message: string;
|
|
415
|
+
}>;
|
|
218
416
|
}
|
|
219
417
|
//# sourceMappingURL=AuthService.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/AuthService.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAGnE,qBAAa,WAAW;IACpB
|
|
1
|
+
{"version":3,"file":"AuthService.d.ts","sourceRoot":"","sources":["../../../src/generated/services/AuthService.ts"],"names":[],"mappings":"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"}
|
|
@@ -4,6 +4,7 @@ export class AuthService {
|
|
|
4
4
|
/**
|
|
5
5
|
* Login identity
|
|
6
6
|
* Authenticate and get available tenants
|
|
7
|
+
* @returns any Response for status 200
|
|
7
8
|
* @throws ApiError
|
|
8
9
|
*/
|
|
9
10
|
static postAuthLoginIdentity({ requestBody, }) {
|
|
@@ -17,6 +18,7 @@ export class AuthService {
|
|
|
17
18
|
/**
|
|
18
19
|
* Select tenant
|
|
19
20
|
* Select tenant and get JWT tokens
|
|
21
|
+
* @returns any Response for status 200
|
|
20
22
|
* @throws ApiError
|
|
21
23
|
*/
|
|
22
24
|
static postAuthSelectTenant({ requestBody, }) {
|
|
@@ -30,6 +32,7 @@ export class AuthService {
|
|
|
30
32
|
/**
|
|
31
33
|
* Logout
|
|
32
34
|
* Logout and invalidate refresh token
|
|
35
|
+
* @returns any Response for status 200
|
|
33
36
|
* @throws ApiError
|
|
34
37
|
*/
|
|
35
38
|
static postAuthLogout({ requestBody, }) {
|
|
@@ -43,6 +46,7 @@ export class AuthService {
|
|
|
43
46
|
/**
|
|
44
47
|
* Refresh token
|
|
45
48
|
* Get new access token using refresh token
|
|
49
|
+
* @returns any Response for status 200
|
|
46
50
|
* @throws ApiError
|
|
47
51
|
*/
|
|
48
52
|
static postAuthRefresh({ requestBody, }) {
|
|
@@ -56,6 +60,7 @@ export class AuthService {
|
|
|
56
60
|
/**
|
|
57
61
|
* Switch tenant
|
|
58
62
|
* Switch to a different tenant
|
|
63
|
+
* @returns any Response for status 200
|
|
59
64
|
* @throws ApiError
|
|
60
65
|
*/
|
|
61
66
|
static postAuthSwitchTenant({ requestBody, }) {
|
|
@@ -69,6 +74,7 @@ export class AuthService {
|
|
|
69
74
|
/**
|
|
70
75
|
* Change password
|
|
71
76
|
* Change current user's password
|
|
77
|
+
* @returns any Response for status 200
|
|
72
78
|
* @throws ApiError
|
|
73
79
|
*/
|
|
74
80
|
static postAuthChangePassword({ requestBody, }) {
|
|
@@ -82,6 +88,7 @@ export class AuthService {
|
|
|
82
88
|
/**
|
|
83
89
|
* Get profile
|
|
84
90
|
* Get current user profile
|
|
91
|
+
* @returns any Response for status 200
|
|
85
92
|
* @throws ApiError
|
|
86
93
|
*/
|
|
87
94
|
static getAuthProfile() {
|
|
@@ -93,6 +100,7 @@ export class AuthService {
|
|
|
93
100
|
/**
|
|
94
101
|
* Get sessions
|
|
95
102
|
* Get active sessions for current user
|
|
103
|
+
* @returns any Response for status 200
|
|
96
104
|
* @throws ApiError
|
|
97
105
|
*/
|
|
98
106
|
static getAuthSessions() {
|
|
@@ -104,6 +112,7 @@ export class AuthService {
|
|
|
104
112
|
/**
|
|
105
113
|
* Revoke session
|
|
106
114
|
* Revoke a specific session
|
|
115
|
+
* @returns any Response for status 200
|
|
107
116
|
* @throws ApiError
|
|
108
117
|
*/
|
|
109
118
|
static deleteAuthSessionsBySessionId({ sessionId, }) {
|
|
@@ -118,6 +127,7 @@ export class AuthService {
|
|
|
118
127
|
/**
|
|
119
128
|
* Revoke all sessions
|
|
120
129
|
* Revoke all sessions for current user
|
|
130
|
+
* @returns any Response for status 200
|
|
121
131
|
* @throws ApiError
|
|
122
132
|
*/
|
|
123
133
|
static postAuthSessionsRevokeAll() {
|
|
@@ -129,6 +139,7 @@ export class AuthService {
|
|
|
129
139
|
/**
|
|
130
140
|
* Verify email
|
|
131
141
|
* Verify email address with token
|
|
142
|
+
* @returns any Response for status 200
|
|
132
143
|
* @throws ApiError
|
|
133
144
|
*/
|
|
134
145
|
static postAuthVerifyEmail({ requestBody, }) {
|
|
@@ -142,6 +153,7 @@ export class AuthService {
|
|
|
142
153
|
/**
|
|
143
154
|
* Resend verification
|
|
144
155
|
* Resend email verification link
|
|
156
|
+
* @returns any Response for status 200
|
|
145
157
|
* @throws ApiError
|
|
146
158
|
*/
|
|
147
159
|
static postAuthResendVerification({ requestBody, }) {
|
|
@@ -155,6 +167,7 @@ export class AuthService {
|
|
|
155
167
|
/**
|
|
156
168
|
* Forgot password
|
|
157
169
|
* Request password reset email
|
|
170
|
+
* @returns any Response for status 200
|
|
158
171
|
* @throws ApiError
|
|
159
172
|
*/
|
|
160
173
|
static postAuthForgotPassword({ requestBody, }) {
|
|
@@ -168,6 +181,7 @@ export class AuthService {
|
|
|
168
181
|
/**
|
|
169
182
|
* Reset password
|
|
170
183
|
* Reset password using reset token
|
|
184
|
+
* @returns any Response for status 200
|
|
171
185
|
* @throws ApiError
|
|
172
186
|
*/
|
|
173
187
|
static postAuthResetPassword({ requestBody, }) {
|
|
@@ -181,6 +195,7 @@ export class AuthService {
|
|
|
181
195
|
/**
|
|
182
196
|
* Validate reset token
|
|
183
197
|
* Validate password reset token is valid
|
|
198
|
+
* @returns any Response for status 200
|
|
184
199
|
* @throws ApiError
|
|
185
200
|
*/
|
|
186
201
|
static postAuthValidateResetToken({ requestBody, }) {
|
|
@@ -194,6 +209,7 @@ export class AuthService {
|
|
|
194
209
|
/**
|
|
195
210
|
* Setup MFA
|
|
196
211
|
* Generate MFA secret and QR code
|
|
212
|
+
* @returns any Response for status 200
|
|
197
213
|
* @throws ApiError
|
|
198
214
|
*/
|
|
199
215
|
static postAuthMfaSetup() {
|
|
@@ -205,6 +221,7 @@ export class AuthService {
|
|
|
205
221
|
/**
|
|
206
222
|
* Enable MFA
|
|
207
223
|
* Enable MFA by verifying secret and code
|
|
224
|
+
* @returns any Response for status 200
|
|
208
225
|
* @throws ApiError
|
|
209
226
|
*/
|
|
210
227
|
static postAuthMfaEnable({ requestBody, }) {
|
|
@@ -218,6 +235,7 @@ export class AuthService {
|
|
|
218
235
|
/**
|
|
219
236
|
* Verify MFA
|
|
220
237
|
* Verify MFA code during login
|
|
238
|
+
* @returns any Response for status 200
|
|
221
239
|
* @throws ApiError
|
|
222
240
|
*/
|
|
223
241
|
static postAuthMfaVerify({ requestBody, }) {
|
|
@@ -231,6 +249,7 @@ export class AuthService {
|
|
|
231
249
|
/**
|
|
232
250
|
* Disable MFA
|
|
233
251
|
* Disable MFA for current user
|
|
252
|
+
* @returns any Response for status 200
|
|
234
253
|
* @throws ApiError
|
|
235
254
|
*/
|
|
236
255
|
static deleteAuthMfa({ requestBody, }) {
|
|
@@ -244,6 +263,7 @@ export class AuthService {
|
|
|
244
263
|
/**
|
|
245
264
|
* OAuth Google
|
|
246
265
|
* Initiate OAuth flow with Google
|
|
266
|
+
* @returns any Response for status 200
|
|
247
267
|
* @throws ApiError
|
|
248
268
|
*/
|
|
249
269
|
static getAuthOauthGoogle({ mode, returnUrl, }) {
|
|
@@ -259,6 +279,7 @@ export class AuthService {
|
|
|
259
279
|
/**
|
|
260
280
|
* Unlink OAuth Google
|
|
261
281
|
* Unlink Google OAuth from account
|
|
282
|
+
* @returns any Response for status 200
|
|
262
283
|
* @throws ApiError
|
|
263
284
|
*/
|
|
264
285
|
static deleteAuthOauthGoogle() {
|
|
@@ -270,6 +291,7 @@ export class AuthService {
|
|
|
270
291
|
/**
|
|
271
292
|
* OAuth callback
|
|
272
293
|
* Handle OAuth callback from provider
|
|
294
|
+
* @returns any Response for status 200
|
|
273
295
|
* @throws ApiError
|
|
274
296
|
*/
|
|
275
297
|
static getAuthOauthCallback({ code, state, }) {
|
|
@@ -285,6 +307,7 @@ export class AuthService {
|
|
|
285
307
|
/**
|
|
286
308
|
* Link OAuth
|
|
287
309
|
* Link OAuth provider to existing account
|
|
310
|
+
* @returns any Response for status 200
|
|
288
311
|
* @throws ApiError
|
|
289
312
|
*/
|
|
290
313
|
static postAuthOauthLink({ requestBody, }) {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AuthService.js","sourceRoot":"","sources":["../../../src/generated/services/AuthService.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAC1C,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,MAAM,OAAO,WAAW;IACpB
|
|
1
|
+
{"version":3,"file":"AuthService.js","sourceRoot":"","sources":["../../../src/generated/services/AuthService.ts"],"names":[],"mappings":"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"}
|