@absolutejs/auth 0.55.5 → 0.55.6

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.
Files changed (53) hide show
  1. package/README.md +6 -1
  2. package/dist/agents/context.d.ts +8 -8
  3. package/dist/agents/index.js +36 -6
  4. package/dist/agents/index.js.map +6 -5
  5. package/dist/agents/routes.d.ts +134 -27
  6. package/dist/apikeys/routes.d.ts +2 -2
  7. package/dist/authContext.d.ts +193 -0
  8. package/dist/authorization/protectPermission.d.ts +4 -4
  9. package/dist/compliance/routes.d.ts +2 -2
  10. package/dist/credentials/login.d.ts +6 -6
  11. package/dist/credentials/register.d.ts +2 -2
  12. package/dist/credentials/routes.d.ts +6 -6
  13. package/dist/htmx/configuredRoutes.d.ts +542 -0
  14. package/dist/htmx/routes.d.ts +4 -4
  15. package/dist/index.d.ts +3399 -8
  16. package/dist/index.js +658 -508
  17. package/dist/index.js.map +15 -12
  18. package/dist/mfa/challenge.d.ts +2 -2
  19. package/dist/mfa/management.d.ts +2 -2
  20. package/dist/mfa/routes.d.ts +4 -4
  21. package/dist/mfa/sms.d.ts +4 -4
  22. package/dist/mfa/totp.d.ts +2 -2
  23. package/dist/oidc/routes.d.ts +14 -14
  24. package/dist/organizations/routes.d.ts +4 -3
  25. package/dist/passwordless/routes.d.ts +7 -6
  26. package/dist/pluginIdentity.d.ts +2 -0
  27. package/dist/portal/routes.d.ts +3 -3
  28. package/dist/roles/routes.d.ts +4 -3
  29. package/dist/routes/callback.d.ts +2 -2
  30. package/dist/routes/profile.d.ts +2 -2
  31. package/dist/routes/protectRoute.d.ts +6 -6
  32. package/dist/routes/refresh.d.ts +3 -3
  33. package/dist/routes/revoke.d.ts +3 -3
  34. package/dist/routes/sessions.d.ts +5 -5
  35. package/dist/routes/signout.d.ts +3 -3
  36. package/dist/routes/stepUp.d.ts +4 -4
  37. package/dist/routes/userStatus.d.ts +2 -2
  38. package/dist/server.d.ts +6 -6
  39. package/dist/server.js +657 -508
  40. package/dist/server.js.map +16 -13
  41. package/dist/session/access.d.ts +3 -3
  42. package/dist/session/cleanup.d.ts +3 -3
  43. package/dist/session/state.d.ts +3 -3
  44. package/dist/session/types.d.ts +1 -0
  45. package/dist/sso/discoveryRoute.d.ts +1 -1
  46. package/dist/sso/oidcRoutes.d.ts +4 -4
  47. package/dist/sso/samlIdpRoutes.d.ts +3 -3
  48. package/dist/sso/samlRoutes.d.ts +7 -6
  49. package/dist/webauthn/routes.d.ts +2 -2
  50. package/package.json +1 -1
  51. package/dist/authInstance.d.ts +0 -7
  52. package/dist/serverConfig.d.ts +0 -10
  53. package/dist/session/internalData.d.ts +0 -34
@@ -0,0 +1,542 @@
1
+ import { Elysia } from 'elysia';
2
+ import type { AuthSessionStore } from '../session/types';
3
+ import type { AuthHtmxConfig, AuthHtmxUser } from './types';
4
+ export declare const createConfiguredAuthHtmxRoutes: <UserType>({ authSessionStore, config }: {
5
+ authSessionStore?: AuthSessionStore<UserType>;
6
+ config?: AuthHtmxConfig;
7
+ }) => Elysia<"", {
8
+ decorator: {};
9
+ store: {};
10
+ derive: {};
11
+ resolve: {};
12
+ }, {
13
+ typebox: {};
14
+ error: {};
15
+ }, {
16
+ schema: {};
17
+ standaloneSchema: {};
18
+ macro: {};
19
+ macroFn: {};
20
+ parser: {};
21
+ response: {};
22
+ }, {}, {
23
+ derive: {};
24
+ resolve: {};
25
+ schema: {};
26
+ standaloneSchema: {};
27
+ response: {};
28
+ }, {
29
+ derive: {};
30
+ resolve: {};
31
+ schema: {};
32
+ standaloneSchema: {};
33
+ response: {};
34
+ }> | Elysia<"", {
35
+ decorator: {};
36
+ store: {
37
+ session: import("..").SessionRecord<AuthHtmxUser>;
38
+ unregisteredSession: import("..").UnregisteredSessionRecord;
39
+ };
40
+ derive: {
41
+ readonly protectRoute: <AuthReturn, AuthFailReturn>(handleAuth: (user: AuthHtmxUser) => AuthReturn | Promise<AuthReturn>, handleAuthFail?: ((error: {
42
+ readonly code: "Bad Request";
43
+ readonly message: "Cookies are missing";
44
+ } | {
45
+ readonly code: "Unauthorized";
46
+ readonly message: "User is not authenticated";
47
+ }) => AuthFailReturn) | undefined) => Promise<import("elysia").ElysiaCustomStatusResponse<"Bad Request", "Cookies are missing", 400> | import("elysia").ElysiaCustomStatusResponse<"Unauthorized", "User is not authenticated", 401> | AuthReturn | NonNullable<AuthFailReturn>>;
48
+ };
49
+ resolve: {};
50
+ }, {
51
+ typebox: {};
52
+ error: {};
53
+ }, {
54
+ schema: {};
55
+ standaloneSchema: {};
56
+ macro: {};
57
+ macroFn: {};
58
+ parser: {};
59
+ response: {};
60
+ } & {
61
+ schema: import("elysia").UnwrapRoute<{
62
+ cookie: import("@sinclair/typebox").TObject<{
63
+ user_session_id: import("@sinclair/typebox").TOptional<import("@sinclair/typebox").TTemplateLiteralSyntax<"${string}-${string}-${string}-${string}-${string}">>;
64
+ }>;
65
+ }, {}, "">;
66
+ standaloneSchema: {};
67
+ macro: {};
68
+ macroFn: {};
69
+ parser: {};
70
+ response: import("elysia").ExtractErrorFromHandle<{
71
+ readonly protectRoute: <AuthReturn, AuthFailReturn>(handleAuth: (user: AuthHtmxUser) => AuthReturn | Promise<AuthReturn>, handleAuthFail?: ((error: {
72
+ readonly code: "Bad Request";
73
+ readonly message: "Cookies are missing";
74
+ } | {
75
+ readonly code: "Unauthorized";
76
+ readonly message: "User is not authenticated";
77
+ }) => AuthFailReturn) | undefined) => Promise<import("elysia").ElysiaCustomStatusResponse<"Bad Request", "Cookies are missing", 400> | import("elysia").ElysiaCustomStatusResponse<"Unauthorized", "User is not authenticated", 401> | AuthReturn | NonNullable<AuthFailReturn>>;
78
+ }>;
79
+ }, {
80
+ htmx: {
81
+ login: {
82
+ get: {
83
+ body: unknown;
84
+ params: {};
85
+ query: unknown;
86
+ headers: unknown;
87
+ response: {
88
+ 200: Response;
89
+ 422: {
90
+ type: "validation";
91
+ on: string;
92
+ summary?: string;
93
+ message?: string;
94
+ found?: unknown;
95
+ property?: string;
96
+ expected?: string;
97
+ };
98
+ };
99
+ };
100
+ };
101
+ };
102
+ } & {
103
+ htmx: {
104
+ link: {
105
+ get: {
106
+ body: unknown;
107
+ params: {};
108
+ query: unknown;
109
+ headers: unknown;
110
+ response: {
111
+ 200: Response;
112
+ 422: {
113
+ type: "validation";
114
+ on: string;
115
+ summary?: string;
116
+ message?: string;
117
+ found?: unknown;
118
+ property?: string;
119
+ expected?: string;
120
+ };
121
+ };
122
+ };
123
+ };
124
+ };
125
+ } & {
126
+ htmx: {
127
+ "connector-links": {
128
+ get: {
129
+ body: unknown;
130
+ params: {};
131
+ query: unknown;
132
+ headers: unknown;
133
+ response: {
134
+ 200: Response;
135
+ 422: {
136
+ type: "validation";
137
+ on: string;
138
+ summary?: string;
139
+ message?: string;
140
+ found?: unknown;
141
+ property?: string;
142
+ expected?: string;
143
+ };
144
+ };
145
+ };
146
+ };
147
+ };
148
+ } & {
149
+ htmx: {
150
+ "auth-menu": {
151
+ get: {
152
+ body: unknown;
153
+ params: {};
154
+ query: unknown;
155
+ headers: unknown;
156
+ response: {
157
+ 400: "Cookies are missing";
158
+ 401: "User is not authenticated";
159
+ 200: Response;
160
+ 422: {
161
+ type: "validation";
162
+ on: string;
163
+ summary?: string;
164
+ message?: string;
165
+ found?: unknown;
166
+ property?: string;
167
+ expected?: string;
168
+ };
169
+ };
170
+ };
171
+ };
172
+ };
173
+ } & {
174
+ htmx: {
175
+ me: {
176
+ get: {
177
+ body: unknown;
178
+ params: {};
179
+ query: unknown;
180
+ headers: unknown;
181
+ response: {
182
+ 400: "Cookies are missing";
183
+ 401: "User is not authenticated";
184
+ 200: Response;
185
+ 422: {
186
+ type: "validation";
187
+ on: string;
188
+ summary?: string;
189
+ message?: string;
190
+ found?: unknown;
191
+ property?: string;
192
+ expected?: string;
193
+ };
194
+ };
195
+ };
196
+ };
197
+ };
198
+ } & {
199
+ htmx: {
200
+ account: {
201
+ get: {
202
+ body: unknown;
203
+ params: {};
204
+ query: unknown;
205
+ headers: unknown;
206
+ response: {
207
+ 400: "Cookies are missing";
208
+ 401: "User is not authenticated";
209
+ 200: Response;
210
+ 422: {
211
+ type: "validation";
212
+ on: string;
213
+ summary?: string;
214
+ message?: string;
215
+ found?: unknown;
216
+ property?: string;
217
+ expected?: string;
218
+ };
219
+ };
220
+ };
221
+ };
222
+ };
223
+ } & {
224
+ htmx: {
225
+ identities: {
226
+ get: {
227
+ body: unknown;
228
+ params: {};
229
+ query: unknown;
230
+ headers: unknown;
231
+ response: {
232
+ 400: "Cookies are missing";
233
+ 401: "User is not authenticated";
234
+ 200: {} | Response;
235
+ 422: {
236
+ type: "validation";
237
+ on: string;
238
+ summary?: string;
239
+ message?: string;
240
+ found?: unknown;
241
+ property?: string;
242
+ expected?: string;
243
+ };
244
+ };
245
+ };
246
+ };
247
+ };
248
+ } & {
249
+ htmx: {
250
+ identities: {
251
+ ":id": {
252
+ primary: {
253
+ post: {
254
+ body: unknown;
255
+ params: {
256
+ id: string;
257
+ } & {};
258
+ query: unknown;
259
+ headers: unknown;
260
+ response: {
261
+ 400: "Cookies are missing";
262
+ 401: "User is not authenticated";
263
+ 200: {} | Response;
264
+ 422: {
265
+ type: "validation";
266
+ on: string;
267
+ summary?: string;
268
+ message?: string;
269
+ found?: unknown;
270
+ property?: string;
271
+ expected?: string;
272
+ };
273
+ };
274
+ };
275
+ };
276
+ };
277
+ };
278
+ };
279
+ } & {
280
+ htmx: {
281
+ identities: {
282
+ ":id": {
283
+ delete: {
284
+ body: unknown;
285
+ params: {
286
+ id: string;
287
+ } & {};
288
+ query: unknown;
289
+ headers: unknown;
290
+ response: {
291
+ 400: "Cookies are missing";
292
+ 401: "User is not authenticated";
293
+ 200: {} | Response;
294
+ 422: {
295
+ type: "validation";
296
+ on: string;
297
+ summary?: string;
298
+ message?: string;
299
+ found?: unknown;
300
+ property?: string;
301
+ expected?: string;
302
+ };
303
+ };
304
+ };
305
+ };
306
+ };
307
+ };
308
+ } & {
309
+ htmx: {
310
+ merge: {
311
+ ":id": {
312
+ post: {
313
+ body: unknown;
314
+ params: {
315
+ id: string;
316
+ } & {};
317
+ query: unknown;
318
+ headers: unknown;
319
+ response: {
320
+ 400: "Cookies are missing";
321
+ 401: "User is not authenticated";
322
+ 200: {} | Response;
323
+ 422: {
324
+ type: "validation";
325
+ on: string;
326
+ summary?: string;
327
+ message?: string;
328
+ found?: unknown;
329
+ property?: string;
330
+ expected?: string;
331
+ };
332
+ };
333
+ };
334
+ };
335
+ };
336
+ };
337
+ } & {
338
+ htmx: {
339
+ merge: {
340
+ ":id": {
341
+ delete: {
342
+ body: unknown;
343
+ params: {
344
+ id: string;
345
+ } & {};
346
+ query: unknown;
347
+ headers: unknown;
348
+ response: {
349
+ 400: "Cookies are missing";
350
+ 401: "User is not authenticated";
351
+ 200: {} | Response;
352
+ 422: {
353
+ type: "validation";
354
+ on: string;
355
+ summary?: string;
356
+ message?: string;
357
+ found?: unknown;
358
+ property?: string;
359
+ expected?: string;
360
+ };
361
+ };
362
+ };
363
+ };
364
+ };
365
+ };
366
+ } & {
367
+ htmx: {
368
+ "connector-list": {
369
+ get: {
370
+ body: unknown;
371
+ params: {};
372
+ query: unknown;
373
+ headers: unknown;
374
+ response: {
375
+ 400: "Cookies are missing";
376
+ 401: "User is not authenticated";
377
+ 200: Response;
378
+ 422: {
379
+ type: "validation";
380
+ on: string;
381
+ summary?: string;
382
+ message?: string;
383
+ found?: unknown;
384
+ property?: string;
385
+ expected?: string;
386
+ };
387
+ };
388
+ };
389
+ };
390
+ };
391
+ } & {
392
+ htmx: {
393
+ connectors: {
394
+ grants: {
395
+ ":id": {
396
+ delete: {
397
+ body: unknown;
398
+ params: {
399
+ id: string;
400
+ } & {};
401
+ query: unknown;
402
+ headers: unknown;
403
+ response: {
404
+ 400: "Cookies are missing";
405
+ 401: "User is not authenticated";
406
+ 200: {} | Response;
407
+ 422: {
408
+ type: "validation";
409
+ on: string;
410
+ summary?: string;
411
+ message?: string;
412
+ found?: unknown;
413
+ property?: string;
414
+ expected?: string;
415
+ };
416
+ };
417
+ };
418
+ };
419
+ };
420
+ };
421
+ };
422
+ } & {
423
+ htmx: {
424
+ connectors: {
425
+ bindings: {
426
+ ":id": {
427
+ delete: {
428
+ body: unknown;
429
+ params: {
430
+ id: string;
431
+ } & {};
432
+ query: unknown;
433
+ headers: unknown;
434
+ response: {
435
+ 400: "Cookies are missing";
436
+ 401: "User is not authenticated";
437
+ 200: {} | Response;
438
+ 422: {
439
+ type: "validation";
440
+ on: string;
441
+ summary?: string;
442
+ message?: string;
443
+ found?: unknown;
444
+ property?: string;
445
+ expected?: string;
446
+ };
447
+ };
448
+ };
449
+ };
450
+ };
451
+ };
452
+ };
453
+ } & {
454
+ htmx: {
455
+ "login-redirect": {
456
+ get: {
457
+ body: unknown;
458
+ params: {};
459
+ query: unknown;
460
+ headers: unknown;
461
+ response: {
462
+ 200: Response;
463
+ 422: {
464
+ type: "validation";
465
+ on: string;
466
+ summary?: string;
467
+ message?: string;
468
+ found?: unknown;
469
+ property?: string;
470
+ expected?: string;
471
+ };
472
+ };
473
+ };
474
+ };
475
+ };
476
+ } & {
477
+ htmx: {
478
+ "delete-account": {
479
+ post: {
480
+ body: unknown;
481
+ params: {};
482
+ query: unknown;
483
+ headers: unknown;
484
+ response: {
485
+ 400: "Cookies are missing";
486
+ 401: "User is not authenticated";
487
+ 200: {} | Response;
488
+ 422: {
489
+ type: "validation";
490
+ on: string;
491
+ summary?: string;
492
+ message?: string;
493
+ found?: unknown;
494
+ property?: string;
495
+ expected?: string;
496
+ };
497
+ };
498
+ };
499
+ };
500
+ };
501
+ } & {
502
+ htmx: {
503
+ signout: {
504
+ get: {
505
+ body: unknown;
506
+ params: {};
507
+ query: unknown;
508
+ headers: unknown;
509
+ response: {
510
+ 200: Response;
511
+ 422: {
512
+ type: "validation";
513
+ on: string;
514
+ summary?: string;
515
+ message?: string;
516
+ found?: unknown;
517
+ property?: string;
518
+ expected?: string;
519
+ };
520
+ };
521
+ };
522
+ };
523
+ };
524
+ }, {
525
+ derive: {};
526
+ resolve: {};
527
+ schema: {};
528
+ standaloneSchema: {};
529
+ response: {};
530
+ }, {
531
+ derive: {};
532
+ resolve: {};
533
+ schema: {};
534
+ standaloneSchema: {};
535
+ response: {};
536
+ } & {
537
+ derive: {};
538
+ resolve: {};
539
+ schema: {};
540
+ standaloneSchema: {};
541
+ response: {};
542
+ }>;
@@ -1,13 +1,13 @@
1
1
  import { Elysia } from 'elysia';
2
- import type { AuthSessionStore } from '../session/types';
2
+ import type { AuthSessionSource } from '../session/types';
3
3
  import type { AuthHtmxConfig, AuthHtmxUser } from './types';
4
4
  export declare const createAuthHtmxRoutes: <UserType extends AuthHtmxUser>(config: AuthHtmxConfig & {
5
- authSessionStore?: AuthSessionStore<UserType>;
5
+ authSessionStore?: AuthSessionSource<UserType>;
6
6
  }) => Elysia<"", {
7
7
  decorator: {};
8
8
  store: {
9
- session: import("../session/internalData").InternalSessionRecord<UserType>;
10
- unregisteredSession: import("../session/internalData").InternalUnregisteredSessionRecord;
9
+ session: import("..").SessionRecord<UserType>;
10
+ unregisteredSession: import("..").UnregisteredSessionRecord;
11
11
  };
12
12
  derive: {
13
13
  readonly protectRoute: <AuthReturn, AuthFailReturn>(handleAuth: (user: UserType) => AuthReturn | Promise<AuthReturn>, handleAuthFail?: ((error: {