-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathbetter-auth.routes.ts
533 lines (456 loc) · 18.7 KB
/
better-auth.routes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
/**
* WARNING: This file is generated automatically. Do not edit. use/create generator plugins to override.
*/
import { api } from "encore.dev/api";
import { auth } from './encore.service.js';
interface SignInSocialParams {
callbackURL?: string
newUserCallbackURL?: string
errorCallbackURL?: string
provider: "apple" | "discord" | "facebook" | "github" | "microsoft" | "google" | "spotify" | "twitch" | "twitter" | "dropbox" | "linkedin" | "gitlab" | "tiktok" | "reddit" | "roblox" | "vk"
disableRedirect?: boolean
idToken?: any
scopes?: any[]
requestSignUp?: boolean
}
interface SignInSocialResponse {
session: string
user: any
url: string
redirect: boolean
}
// Sign in with a social provider
export const signInSocial = api(
{ method: ["POST"], path: "/auth/sign-in/social", expose: true, tags: ["/sign-in/social"] },
async (params: SignInSocialParams): Promise<{ data: SignInSocialResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.signInSocial(params) as { data: SignInSocialResponse };
}
);
interface CallbackOAuthParams {
id: string
state?: string
code?: string
device_id?: string
error?: string
error_description?: string
}
// API endpoint
export const callbackOAuth = api(
{ method: ["GET", "POST"], path: "/auth/callback/:id", expose: true, tags: ["/callback/:id"] },
async (params: CallbackOAuthParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.callbackOAuth(params) as { data: any };
}
);
interface GetSessionResponse {
session?: any
user?: any
}
// Get the current session
export const getSession = api(
{ method: ["GET"], path: "/auth/get-session", expose: true, tags: ["/get-session"] },
async (): Promise<{ data: GetSessionResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.getSession() as { data: GetSessionResponse };
}
);
interface SignOutResponse {
success?: boolean
}
// Sign out the current user
export const signOut = api(
{ method: ["POST"], path: "/auth/sign-out", expose: true, tags: ["/sign-out"] },
async (): Promise<{ data: SignOutResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.signOut() as { data: SignOutResponse };
}
);
interface SignUpEmailParams {
name: string
email: string
password: string
username?: string
displayUsername?: string
}
interface SignUpEmailResponseUser {
id: string
email: string
name: string
image?: string | null | undefined
emailVerified: boolean
createdAt: Date
updatedAt: Date
username?: string
displayUsername?: string
}
interface SignUpEmailResponse {
token: null
user: SignUpEmailResponseUser
}
// Sign up a user using email and password
export const signUpEmail = api(
{ method: ["POST"], path: "/auth/sign-up/email", expose: true, tags: ["/sign-up/email"] },
async (params: SignUpEmailParams): Promise<{ data: SignUpEmailResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.signUpEmail(params) as { data: SignUpEmailResponse };
}
);
interface SignInEmailParams {
email: string
password: string
callbackURL?: string
rememberMe?: any
}
interface SignInEmailResponse {
user: any
url: string
redirect: boolean
}
// Sign in with email and password
export const signInEmail = api(
{ method: ["POST"], path: "/auth/sign-in/email", expose: true, tags: ["/sign-in/email"] },
async (params: SignInEmailParams): Promise<{ data: SignInEmailResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.signInEmail(params) as { data: SignInEmailResponse };
}
);
interface ForgetPasswordParams {
email: string
redirectTo?: string
}
interface ForgetPasswordResponse {
status?: boolean
}
// Send a password reset email to the user
export const forgetPassword = api(
{ method: ["POST"], path: "/auth/forget-password", expose: true, tags: ["/forget-password"] },
async (params: ForgetPasswordParams): Promise<{ data: ForgetPasswordResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.forgetPassword(params) as { data: ForgetPasswordResponse };
}
);
interface ResetPasswordParams {
newPassword: string
token?: string
}
interface ResetPasswordResponse {
status?: boolean
}
// Reset the password for a user
export const resetPassword = api(
{ method: ["POST"], path: "/auth/reset-password", expose: true, tags: ["/reset-password"] },
async (params: ResetPasswordParams): Promise<{ data: ResetPasswordResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.resetPassword(params) as { data: ResetPasswordResponse };
}
);
interface VerifyEmailParams {
token: string
callbackURL?: string
}
interface VerifyEmailResponse {
user: any
status: boolean
}
// Verify the email of the user
export const verifyEmail = api(
{ method: ["GET"], path: "/auth/verify-email", expose: true, tags: ["/verify-email"] },
async (_: VerifyEmailParams): Promise<{ data: VerifyEmailResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.verifyEmail() as { data: VerifyEmailResponse };
}
);
interface SendVerificationEmailParams {
email: string
callbackURL?: string
}
interface SendVerificationEmailResponse {
status?: boolean
}
// Send a verification email to the user
export const sendVerificationEmail = api(
{ method: ["POST"], path: "/auth/send-verification-email", expose: true, tags: ["/send-verification-email"] },
async (params: SendVerificationEmailParams): Promise<{ data: SendVerificationEmailResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.sendVerificationEmail(params) as { data: SendVerificationEmailResponse };
}
);
interface ChangeEmailParams {
newEmail: string
callbackURL?: string
}
interface ChangeEmailResponse {
user?: any
status?: boolean
}
// API endpoint
export const changeEmail = api(
{ method: ["POST"], path: "/auth/change-email", expose: true, tags: ["/change-email"] },
async (params: ChangeEmailParams): Promise<{ data: ChangeEmailResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.changeEmail(params) as { data: ChangeEmailResponse };
}
);
interface ChangePasswordParams {
newPassword: string
currentPassword: string
revokeOtherSessions?: boolean
}
interface ChangePasswordResponse {
user?: any
}
// Change the password of the user
export const changePassword = api(
{ method: ["POST"], path: "/auth/change-password", expose: true, tags: ["/change-password"] },
async (params: ChangePasswordParams): Promise<{ data: ChangePasswordResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.changePassword(params) as { data: ChangePasswordResponse };
}
);
interface UpdateUserParams {
name?: string
image?: string | null
username?: string
displayUsername?: string
}
interface UpdateUserResponse {
status: boolean
}
// Update the current user
export const updateUser = api(
{ method: ["POST"], path: "/auth/update-user", expose: true, tags: ["/update-user"] },
async (params: UpdateUserParams): Promise<{ data: UpdateUserResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.updateUser(params) as { data: UpdateUserResponse };
}
);
interface DeleteUserParams {
callbackURL?: string
password?: string
token?: string
}
interface DeleteUserResponse {
}
// Delete the user
export const deleteUser = api(
{ method: ["POST"], path: "/auth/delete-user", expose: true, tags: ["/delete-user"] },
async (params: DeleteUserParams): Promise<{ data: DeleteUserResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.deleteUser(params) as { data: DeleteUserResponse };
}
);
interface ForgetPasswordCallbackParams {
token: string
callbackURL: string
}
interface ForgetPasswordCallbackResponse {
token?: string
}
// Redirects the user to the callback URL with the token
export const forgetPasswordCallback = api(
{ method: ["GET"], path: "/auth/reset-password/:token", expose: true, tags: ["/reset-password/:token"] },
async (_: ForgetPasswordCallbackParams): Promise<{ data: ForgetPasswordCallbackResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.forgetPasswordCallback() as { data: ForgetPasswordCallbackResponse };
}
);
// List all active sessions for the user
export const listSessions = api(
{ method: ["GET"], path: "/auth/list-sessions", expose: true, tags: ["/list-sessions"] },
async (): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.listSessions() as { data: any };
}
);
interface RevokeSessionParams {
token: string
}
// Revoke a single session
export const revokeSession = api(
{ method: ["POST"], path: "/auth/revoke-session", expose: true, tags: ["/revoke-session"] },
async (params: RevokeSessionParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.revokeSession(params) as { data: any };
}
);
interface RevokeSessionsResponse {
status: boolean
}
// Revoke all sessions for the user
export const revokeSessions = api(
{ method: ["POST"], path: "/auth/revoke-sessions", expose: true, tags: ["/revoke-sessions"] },
async (): Promise<{ data: RevokeSessionsResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.revokeSessions() as { data: RevokeSessionsResponse };
}
);
interface RevokeOtherSessionsResponse {
status?: boolean
}
// Revoke all other sessions for the user except the current one
export const revokeOtherSessions = api(
{ method: ["POST"], path: "/auth/revoke-other-sessions", expose: true, tags: ["/revoke-other-sessions"] },
async (): Promise<{ data: RevokeOtherSessionsResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.revokeOtherSessions() as { data: RevokeOtherSessionsResponse };
}
);
interface LinkSocialAccountParams {
callbackURL?: string
provider: "apple" | "discord" | "facebook" | "github" | "microsoft" | "google" | "spotify" | "twitch" | "twitter" | "dropbox" | "linkedin" | "gitlab" | "tiktok" | "reddit" | "roblox" | "vk"
}
interface LinkSocialAccountResponse {
url: string
redirect: boolean
}
// Link a social account to the user
export const linkSocialAccount = api(
{ method: ["POST"], path: "/auth/link-social", expose: true, tags: ["/link-social"] },
async (params: LinkSocialAccountParams): Promise<{ data: LinkSocialAccountResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.linkSocialAccount(params) as { data: LinkSocialAccountResponse };
}
);
// List all accounts linked to the user
export const listUserAccounts = api(
{ method: ["GET"], path: "/auth/list-accounts", expose: true, tags: ["/list-accounts"] },
async (): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.listUserAccounts() as { data: any };
}
);
interface DeleteUserCallbackParams {
token: string
callbackURL?: string
}
// API endpoint
export const deleteUserCallback = api(
{ method: ["GET"], path: "/auth/delete-user/callback", expose: true, tags: ["/delete-user/callback"] },
async (_: DeleteUserCallbackParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.deleteUserCallback() as { data: any };
}
);
interface UnlinkAccountParams {
providerId: string
}
// API endpoint
export const unlinkAccount = api(
{ method: ["POST"], path: "/auth/unlink-account", expose: true, tags: ["/unlink-account"] },
async (params: UnlinkAccountParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.unlinkAccount(params) as { data: any };
}
);
interface SignInUsernameParams {
username: string
password: string
rememberMe?: boolean
}
interface SignInUsernameResponse {
user?: any
session?: any
}
// Sign in with username
export const signInUsername = api(
{ method: ["POST"], path: "/auth/sign-in/username", expose: true, tags: ["/sign-in/username"] },
async (params: SignInUsernameParams): Promise<{ data: SignInUsernameResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.signInUsername(params) as { data: SignInUsernameResponse };
}
);
interface CreateApiKeyParams {
name?: string
expiresIn: any
userId?: string
prefix?: string
remaining: any
metadata?: any
refillAmount?: number
refillInterval?: number
rateLimitTimeWindow?: number
rateLimitMax?: number
rateLimitEnabled?: boolean
permissions?: any
}
// API endpoint
export const createApiKey = api(
{ method: ["POST"], path: "/auth/api-key/create", expose: true, tags: ["/api-key/create"] },
async (params: CreateApiKeyParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.createApiKey(params) as { data: any };
}
);
interface GetApiKeyParams {
id: string
}
// API endpoint
export const getApiKey = api(
{ method: ["GET"], path: "/auth/api-key/get", expose: true, tags: ["/api-key/get"] },
async (_: GetApiKeyParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.getApiKey() as { data: any };
}
);
interface UpdateApiKeyParams {
keyId: string
userId?: string
name?: string
enabled?: boolean
remaining?: number
refillAmount?: number
refillInterval?: number
metadata?: any
expiresIn?: any
rateLimitEnabled?: boolean
rateLimitTimeWindow?: number
rateLimitMax?: number
permissions?: any
}
// API endpoint
export const updateApiKey = api(
{ method: ["POST"], path: "/auth/api-key/update", expose: true, tags: ["/api-key/update"] },
async (params: UpdateApiKeyParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.updateApiKey(params) as { data: any };
}
);
interface DeleteApiKeyParams {
keyId: string
}
// API endpoint
export const deleteApiKey = api(
{ method: ["DELETE"], path: "/auth/api-key/delete", expose: true, tags: ["/api-key/delete"] },
async (params: DeleteApiKeyParams): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.deleteApiKey(params) as { data: any };
}
);
// API endpoint
export const listApiKeys = api(
{ method: ["GET"], path: "/auth/api-key/list", expose: true, tags: ["/api-key/list"] },
async (): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.listApiKeys() as { data: any };
}
);
interface OkResponse {
ok?: boolean
}
// Check if the API is working
export const ok = api(
{ method: ["GET"], path: "/auth/ok", expose: true, tags: ["/ok"] },
async (): Promise<{ data: OkResponse }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.ok() as { data: OkResponse };
}
);
// Displays an error page
export const error = api(
{ method: ["GET"], path: "/auth/error", expose: true, tags: ["/error"] },
async (): Promise<{ data: any }> => {
// Using "as" to ignore response inconsistency from OpenAPI, to be resolved with PR https://github.com/better-auth/better-auth/pull/1699
return await auth.routeHandlers.error() as { data: any };
}
);