@absolutejs/auth 0.56.4 → 0.56.5

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 (211) hide show
  1. package/dist/abuse/captcha.d.ts +11 -0
  2. package/dist/abuse/config.d.ts +29 -0
  3. package/dist/actions.d.ts +27 -0
  4. package/dist/adaptive/config.d.ts +34 -0
  5. package/dist/adaptive/fingerprint.d.ts +2 -0
  6. package/dist/adaptive/inMemoryStores.d.ts +3 -0
  7. package/dist/adaptive/postgresStores.d.ts +245 -0
  8. package/dist/adaptive/types.d.ts +62 -0
  9. package/dist/agents/config.d.ts +44 -0
  10. package/dist/agents/context.d.ts +46 -0
  11. package/dist/agents/idJag.d.ts +49 -0
  12. package/dist/agents/inMemoryStores.d.ts +4 -0
  13. package/dist/agents/oidcAdapter.d.ts +12 -0
  14. package/dist/agents/postgresStores.d.ts +569 -0
  15. package/dist/agents/principal.d.ts +4 -0
  16. package/dist/agents/registration.d.ts +162 -0
  17. package/dist/agents/registrationClient.d.ts +50 -0
  18. package/dist/agents/routes.d.ts +321 -0
  19. package/dist/agents/types.d.ts +129 -0
  20. package/dist/apikeys/config.d.ts +64 -0
  21. package/dist/apikeys/inMemoryStores.d.ts +4 -0
  22. package/dist/apikeys/postgresStores.d.ts +359 -0
  23. package/dist/apikeys/routes.d.ts +83 -0
  24. package/dist/apikeys/types.d.ts +53 -0
  25. package/dist/audit/config.d.ts +9 -0
  26. package/dist/audit/export.d.ts +2 -0
  27. package/dist/audit/inMemoryAuditStore.d.ts +2 -0
  28. package/dist/audit/integrity.d.ts +19 -0
  29. package/dist/audit/postgresAuditStore.d.ts +116 -0
  30. package/dist/audit/siem.d.ts +11 -0
  31. package/dist/audit/types.d.ts +19 -0
  32. package/dist/audit/wrap.d.ts +9 -0
  33. package/dist/authContext.d.ts +193 -0
  34. package/dist/authorization/config.d.ts +19 -0
  35. package/dist/authorization/protectPermission.d.ts +52 -0
  36. package/dist/compliance/cipher.d.ts +11 -0
  37. package/dist/compliance/config.d.ts +18 -0
  38. package/dist/compliance/redaction.d.ts +8 -0
  39. package/dist/compliance/routes.d.ts +89 -0
  40. package/dist/constants.d.ts +10 -0
  41. package/dist/credentials/backgroundOps.d.ts +45 -0
  42. package/dist/credentials/config.d.ts +68 -0
  43. package/dist/credentials/emailValidation.d.ts +9 -0
  44. package/dist/credentials/emailVerification.d.ts +83 -0
  45. package/dist/credentials/import.d.ts +34 -0
  46. package/dist/credentials/inMemoryCredentialStore.d.ts +2 -0
  47. package/dist/credentials/legacyHashers.d.ts +3 -0
  48. package/dist/credentials/login.d.ts +76 -0
  49. package/dist/credentials/passwordPolicy.d.ts +15 -0
  50. package/dist/credentials/passwordReset.d.ts +87 -0
  51. package/dist/credentials/postgresCredentialStore.d.ts +235 -0
  52. package/dist/credentials/register.d.ts +54 -0
  53. package/dist/credentials/routes.d.ts +201 -0
  54. package/dist/credentials/types.d.ts +26 -0
  55. package/dist/crypto.d.ts +32 -0
  56. package/dist/errors.d.ts +12 -0
  57. package/dist/federation/tokenStore.d.ts +29 -0
  58. package/dist/fga/config.d.ts +53 -0
  59. package/dist/fga/inMemoryStores.d.ts +3 -0
  60. package/dist/fga/postgresStores.d.ts +116 -0
  61. package/dist/fga/redisCheckCache.d.ts +11 -0
  62. package/dist/fga/schema.d.ts +2 -0
  63. package/dist/fga/types.d.ts +28 -0
  64. package/dist/htmx/configuredRoutes.d.ts +542 -0
  65. package/dist/htmx/renderers.d.ts +8 -0
  66. package/dist/htmx/routes.d.ts +514 -0
  67. package/dist/htmx/types.d.ts +129 -0
  68. package/dist/linkedProviders/inMemoryStores.d.ts +9 -0
  69. package/dist/linkedProviders/neonStores.d.ts +484 -0
  70. package/dist/linkedProviders/oauthAccountResolver.d.ts +28 -0
  71. package/dist/linkedProviders/oauthResolver.d.ts +9 -0
  72. package/dist/linkedProviders/resolver.d.ts +22 -0
  73. package/dist/lockout/config.d.ts +17 -0
  74. package/dist/lockout/inMemoryLockoutStore.d.ts +2 -0
  75. package/dist/lockout/postgresLockoutStore.d.ts +71 -0
  76. package/dist/lockout/redisLockoutStore.d.ts +3 -0
  77. package/dist/lockout/types.d.ts +12 -0
  78. package/dist/mfa/backupCodes.d.ts +5 -0
  79. package/dist/mfa/challenge.d.ts +70 -0
  80. package/dist/mfa/config.d.ts +50 -0
  81. package/dist/mfa/gate.d.ts +2 -0
  82. package/dist/mfa/inMemoryMfaStore.d.ts +2 -0
  83. package/dist/mfa/management.d.ts +106 -0
  84. package/dist/mfa/postgresMfaStore.d.ts +206 -0
  85. package/dist/mfa/rotation.d.ts +17 -0
  86. package/dist/mfa/routes.d.ts +234 -0
  87. package/dist/mfa/secret.d.ts +2 -0
  88. package/dist/mfa/sms.d.ts +105 -0
  89. package/dist/mfa/totp.d.ts +91 -0
  90. package/dist/mfa/types.d.ts +23 -0
  91. package/dist/migrations/generate.d.ts +2 -0
  92. package/dist/migrations/index.d.ts +5 -0
  93. package/dist/migrations/runner.d.ts +13 -0
  94. package/dist/migrations/types.d.ts +14 -0
  95. package/dist/oidc/clientAuth.d.ts +19 -0
  96. package/dist/oidc/clientIdMetadata.d.ts +32 -0
  97. package/dist/oidc/config.d.ts +296 -0
  98. package/dist/oidc/dpop.d.ts +23 -0
  99. package/dist/oidc/inMemoryStores.d.ts +11 -0
  100. package/dist/oidc/inMemoryVciStores.d.ts +3 -0
  101. package/dist/oidc/jar.d.ts +14 -0
  102. package/dist/oidc/keys.d.ts +35 -0
  103. package/dist/oidc/logout.d.ts +38 -0
  104. package/dist/oidc/mtls.d.ts +11 -0
  105. package/dist/oidc/par.d.ts +28 -0
  106. package/dist/oidc/postgresStores.d.ts +1217 -0
  107. package/dist/oidc/registration.d.ts +138 -0
  108. package/dist/oidc/routes.d.ts +569 -0
  109. package/dist/oidc/types.d.ts +148 -0
  110. package/dist/oidc/userinfo.d.ts +21 -0
  111. package/dist/oidc/vci.d.ts +159 -0
  112. package/dist/oidc/vciRoutes.d.ts +92 -0
  113. package/dist/organizations/config.d.ts +46 -0
  114. package/dist/organizations/inMemoryOrganizationStore.d.ts +2 -0
  115. package/dist/organizations/operations.d.ts +39 -0
  116. package/dist/organizations/postgresOrganizationStore.d.ts +340 -0
  117. package/dist/organizations/routes.d.ts +299 -0
  118. package/dist/organizations/types.d.ts +45 -0
  119. package/dist/passwordless/config.d.ts +43 -0
  120. package/dist/passwordless/inMemoryPasswordlessTokenStore.d.ts +2 -0
  121. package/dist/passwordless/postgresPasswordlessTokenStore.d.ts +56 -0
  122. package/dist/passwordless/routes.d.ts +163 -0
  123. package/dist/passwordless/types.d.ts +9 -0
  124. package/dist/pluginIdentity.d.ts +2 -0
  125. package/dist/portal/config.d.ts +34 -0
  126. package/dist/portal/inMemorySetupSessionStore.d.ts +2 -0
  127. package/dist/portal/operations.d.ts +10 -0
  128. package/dist/portal/postgresSetupSessionStore.d.ts +116 -0
  129. package/dist/portal/routes.d.ts +160 -0
  130. package/dist/portal/types.d.ts +16 -0
  131. package/dist/providers/clients.d.ts +1818 -0
  132. package/dist/providersFromEnv.d.ts +19 -0
  133. package/dist/roles/config.d.ts +27 -0
  134. package/dist/roles/inMemoryRoleStore.d.ts +2 -0
  135. package/dist/roles/operations.d.ts +8 -0
  136. package/dist/roles/postgresRoleStore.d.ts +86 -0
  137. package/dist/roles/resolver.d.ts +17 -0
  138. package/dist/roles/routes.d.ts +106 -0
  139. package/dist/roles/types.d.ts +14 -0
  140. package/dist/routes/authorize.d.ts +102 -0
  141. package/dist/routes/callback.d.ts +64 -0
  142. package/dist/routes/profile.d.ts +70 -0
  143. package/dist/routes/protectRoute.d.ts +51 -0
  144. package/dist/routes/refresh.d.ts +74 -0
  145. package/dist/routes/revoke.d.ts +73 -0
  146. package/dist/routes/sessions.d.ts +103 -0
  147. package/dist/routes/signout.d.ts +70 -0
  148. package/dist/routes/stepUp.d.ts +48 -0
  149. package/dist/routes/userStatus.d.ts +72 -0
  150. package/dist/scim/config.d.ts +57 -0
  151. package/dist/scim/extensions.d.ts +30 -0
  152. package/dist/scim/inMemoryScimTokenStore.d.ts +2 -0
  153. package/dist/scim/postgresScimTokenStore.d.ts +86 -0
  154. package/dist/scim/routes.d.ts +366 -0
  155. package/dist/scim/serialize.d.ts +83 -0
  156. package/dist/scim/types.d.ts +54 -0
  157. package/dist/session/access.d.ts +33 -0
  158. package/dist/session/anonymous.d.ts +12 -0
  159. package/dist/session/cleanup.d.ts +45 -0
  160. package/dist/session/impersonation.d.ts +34 -0
  161. package/dist/session/inMemoryStore.d.ts +7 -0
  162. package/dist/session/multiSession.d.ts +27 -0
  163. package/dist/session/neonStore.d.ts +513 -0
  164. package/dist/session/promote.d.ts +23 -0
  165. package/dist/session/redisStore.d.ts +6 -0
  166. package/dist/session/sessionsConfig.d.ts +9 -0
  167. package/dist/session/state.d.ts +33 -0
  168. package/dist/session/types.d.ts +21 -0
  169. package/dist/session/userSessions.d.ts +19 -0
  170. package/dist/sso/config.d.ts +149 -0
  171. package/dist/sso/discoveryRoute.d.ts +63 -0
  172. package/dist/sso/inMemorySamlServiceProviderStore.d.ts +2 -0
  173. package/dist/sso/inMemorySsoConnectionStore.d.ts +2 -0
  174. package/dist/sso/oidcRoutes.d.ts +98 -0
  175. package/dist/sso/postgresSamlServiceProviderStore.d.ts +101 -0
  176. package/dist/sso/postgresSsoConnectionStore.d.ts +116 -0
  177. package/dist/sso/samlIdpRoutes.d.ts +139 -0
  178. package/dist/sso/samlRoutes.d.ts +179 -0
  179. package/dist/sso/types.d.ts +53 -0
  180. package/dist/stores/postgres.d.ts +5 -0
  181. package/dist/stores/redis.d.ts +5 -0
  182. package/dist/telemetry/tracing.d.ts +15 -0
  183. package/dist/tenancy.d.ts +9 -0
  184. package/dist/typeGuards.d.ts +6 -0
  185. package/dist/typebox.d.ts +4 -0
  186. package/dist/types.d.ts +421 -0
  187. package/dist/utils.d.ts +45 -0
  188. package/dist/vault/config.d.ts +20 -0
  189. package/dist/vault/inMemoryVaultStore.d.ts +2 -0
  190. package/dist/vault/postgresVaultStore.d.ts +86 -0
  191. package/dist/vault/types.d.ts +14 -0
  192. package/dist/vc/inMemoryVpStores.d.ts +2 -0
  193. package/dist/vc/openid4vp.d.ts +82 -0
  194. package/dist/vc/postgresVcStores.d.ts +300 -0
  195. package/dist/vc/sdJwt.d.ts +37 -0
  196. package/dist/vc/statusList.d.ts +29 -0
  197. package/dist/vc/statusListRoutes.d.ts +63 -0
  198. package/dist/vc/vpRoutes.d.ts +120 -0
  199. package/dist/webauthn/adapter.d.ts +59 -0
  200. package/dist/webauthn/config.d.ts +36 -0
  201. package/dist/webauthn/inMemoryWebAuthnCredentialStore.d.ts +2 -0
  202. package/dist/webauthn/postgresWebAuthnCredentialStore.d.ts +146 -0
  203. package/dist/webauthn/routes.d.ts +155 -0
  204. package/dist/webauthn/types.d.ts +17 -0
  205. package/dist/webhooks/config.d.ts +34 -0
  206. package/dist/webhooks/dispatcher.d.ts +3 -0
  207. package/dist/webhooks/inMemoryStore.d.ts +2 -0
  208. package/dist/webhooks/postgresStore.d.ts +116 -0
  209. package/dist/webhooks/sign.d.ts +11 -0
  210. package/dist/webhooks/types.d.ts +25 -0
  211. package/package.json +3 -3
@@ -0,0 +1,68 @@
1
+ import type { LockoutGuard } from '../lockout/config';
2
+ import type { AuthSessionStore } from '../session/types';
3
+ import type { OrganizationId } from '../tenancy';
4
+ import type { RouteString, StatusReturn, UserSessionId } from '../types';
5
+ import type { PasswordPolicy } from './passwordPolicy';
6
+ import type { CredentialStore } from './types';
7
+ export declare const DEFAULT_CREDENTIAL_SESSION_TTL_MS: number;
8
+ export declare const DEFAULT_RESET_TOKEN_TTL_MS: number;
9
+ export declare const DEFAULT_VERIFICATION_TOKEN_TTL_MS: number;
10
+ export type CredentialIdentity = {
11
+ email: string;
12
+ organizationId?: OrganizationId;
13
+ };
14
+ export type CredentialEmailType = 'reset_password' | 'verify_email';
15
+ export type CredentialEmailMessage = {
16
+ email: string;
17
+ expiresAt: number;
18
+ token: string;
19
+ type: CredentialEmailType;
20
+ };
21
+ export type CredentialsConfig<UserType> = {
22
+ checkBreachesOnLogin?: boolean;
23
+ credentialStore: CredentialStore;
24
+ getUserByEmail: (email: string) => Promise<UserType | null | undefined> | UserType | null | undefined;
25
+ isMfaRequired?: (user: UserType, context?: {
26
+ headers: Record<string, string | undefined>;
27
+ ip?: string;
28
+ }) => boolean | Promise<boolean>;
29
+ passwordVerifier?: (plainPassword: string, storedHash: string) => Promise<boolean>;
30
+ rehashOnLogin?: boolean;
31
+ loginRoute?: RouteString;
32
+ onCreateCredentialUser: (identity: CredentialIdentity & Record<string, unknown>) => Promise<Response | StatusReturn | UserType> | Response | StatusReturn | UserType;
33
+ onCredentialsLoginError?: (context: {
34
+ email: string;
35
+ error: unknown;
36
+ }) => void | Promise<void>;
37
+ onCredentialsLoginSuccess?: (context: {
38
+ user: UserType;
39
+ userSessionId: UserSessionId;
40
+ }) => void | Promise<void>;
41
+ onEmailVerified?: (context: {
42
+ email: string;
43
+ }) => void | Promise<void>;
44
+ onPasswordReset?: (context: {
45
+ email: string;
46
+ }) => void | Promise<void>;
47
+ onRegistrationSuccess?: (context: {
48
+ email: string;
49
+ user: UserType;
50
+ }) => void | Promise<void>;
51
+ onSendEmail: (message: CredentialEmailMessage) => void | Promise<void>;
52
+ passwordPolicy?: PasswordPolicy;
53
+ registerRoute?: RouteString;
54
+ /** When true, registration creates the account but NOT a session, and login is
55
+ * rejected until the email is verified. Default false = auto-login on register and
56
+ * verification acts as a soft, later gate. */
57
+ requireEmailVerification?: boolean;
58
+ resetPasswordRoute?: RouteString;
59
+ resetTokenDurationMs?: number;
60
+ sessionDurationMs?: number;
61
+ verificationTokenDurationMs?: number;
62
+ verifyEmailRoute?: RouteString;
63
+ };
64
+ export type CredentialRouteProps<UserType> = CredentialsConfig<UserType> & {
65
+ authSessionStore?: AuthSessionStore<UserType>;
66
+ cookieSecure?: boolean;
67
+ lockoutGuard?: LockoutGuard;
68
+ };
@@ -0,0 +1,9 @@
1
+ export type EmailValidationResult = {
2
+ ok: boolean;
3
+ reason?: 'disposable' | 'invalid_format' | 'no_mx';
4
+ };
5
+ export declare const isDisposableEmail: (email: string, extraDomains?: Iterable<string>) => boolean;
6
+ export declare const validateEmailDeliverability: (email: string, options?: {
7
+ checkMx?: boolean;
8
+ disposableDomains?: Iterable<string>;
9
+ }) => Promise<EmailValidationResult>;
@@ -0,0 +1,83 @@
1
+ import { Elysia } from 'elysia';
2
+ import { type CredentialsConfig } from './config';
3
+ export declare const credentialsEmailVerification: <UserType>({ credentialStore, onEmailVerified, onSendEmail, verificationTokenDurationMs, verifyEmailRoute }: CredentialsConfig<UserType>) => Elysia<"", {
4
+ decorator: {};
5
+ store: {};
6
+ derive: {};
7
+ resolve: {};
8
+ }, {
9
+ typebox: {};
10
+ error: {};
11
+ }, {
12
+ schema: {};
13
+ standaloneSchema: {};
14
+ macro: {};
15
+ macroFn: {};
16
+ parser: {};
17
+ response: {};
18
+ }, {
19
+ [x: string]: {
20
+ post: {
21
+ body: {
22
+ token: string;
23
+ };
24
+ params: {};
25
+ query: unknown;
26
+ headers: unknown;
27
+ response: {
28
+ 400: "Invalid or expired verification token";
29
+ 200: {
30
+ readonly status: "email_verified";
31
+ };
32
+ 422: {
33
+ type: "validation";
34
+ on: string;
35
+ summary?: string;
36
+ message?: string;
37
+ found?: unknown;
38
+ property?: string;
39
+ expected?: string;
40
+ };
41
+ };
42
+ };
43
+ };
44
+ } & {
45
+ [x: string]: {
46
+ request: {
47
+ post: {
48
+ body: {
49
+ email: string;
50
+ };
51
+ params: {};
52
+ query: unknown;
53
+ headers: unknown;
54
+ response: {
55
+ 200: {
56
+ readonly status: "verification_requested";
57
+ };
58
+ 422: {
59
+ type: "validation";
60
+ on: string;
61
+ summary?: string;
62
+ message?: string;
63
+ found?: unknown;
64
+ property?: string;
65
+ expected?: string;
66
+ };
67
+ };
68
+ };
69
+ };
70
+ };
71
+ }, {
72
+ derive: {};
73
+ resolve: {};
74
+ schema: {};
75
+ standaloneSchema: {};
76
+ response: {};
77
+ }, {
78
+ derive: {};
79
+ resolve: {};
80
+ schema: {};
81
+ standaloneSchema: {};
82
+ response: {};
83
+ }>;
@@ -0,0 +1,34 @@
1
+ import type { CredentialRecord, CredentialStore } from './types';
2
+ export type ImportableUser<UserType> = {
3
+ passwordHash?: string;
4
+ user: UserType;
5
+ };
6
+ export type ImportUserResult<UserType> = {
7
+ error: string;
8
+ ok: false;
9
+ user: UserType;
10
+ } | {
11
+ credential?: CredentialRecord;
12
+ ok: true;
13
+ user: UserType;
14
+ };
15
+ export type ImportUsersOptions<UserType> = {
16
+ onCreateUser: (input: ImportableUser<UserType>) => Promise<{
17
+ email: string;
18
+ emailVerified?: boolean;
19
+ userId?: string;
20
+ } | null>;
21
+ concurrency?: number;
22
+ credentialStore: CredentialStore;
23
+ };
24
+ export declare const importUser: <UserType>(input: ImportableUser<UserType>, options: ImportUsersOptions<UserType>) => Promise<ImportUserResult<UserType>>;
25
+ export declare const importUsers: <UserType>(inputs: readonly ImportableUser<UserType>[], options: ImportUsersOptions<UserType>) => Promise<{
26
+ failed: number;
27
+ results: ImportUserResult<UserType>[];
28
+ succeeded: number;
29
+ }>;
30
+ export declare const rehashCredentialPassword: ({ credentialStore, current, plainPassword }: {
31
+ credentialStore: CredentialStore;
32
+ current: CredentialRecord;
33
+ plainPassword: string;
34
+ }) => Promise<void>;
@@ -0,0 +1,2 @@
1
+ import type { CredentialStore } from './types';
2
+ export declare const createInMemoryCredentialStore: () => CredentialStore;
@@ -0,0 +1,3 @@
1
+ export declare const isLegacyHash: (storedHash: string) => boolean;
2
+ export declare const verifyAuth0Pbkdf2: (plainPassword: string, wrappedHash: string) => Promise<boolean>;
3
+ export declare const verifyCognitoSha256: (plainPassword: string, wrappedHash: string) => Promise<boolean>;
@@ -0,0 +1,76 @@
1
+ import { Elysia } from 'elysia';
2
+ import { type CredentialRouteProps } from './config';
3
+ export declare const credentialsLogin: <UserType>({ authSessionStore, checkBreachesOnLogin, cookieSecure, credentialStore, getUserByEmail, isMfaRequired, lockoutGuard, loginRoute, onCredentialsLoginError, onCredentialsLoginSuccess, passwordVerifier, rehashOnLogin, requireEmailVerification, sessionDurationMs }: CredentialRouteProps<UserType>) => Elysia<"", {
4
+ decorator: {};
5
+ store: {
6
+ session: import("..").SessionRecord<UserType>;
7
+ unregisteredSession: import("..").UnregisteredSessionRecord;
8
+ };
9
+ derive: {};
10
+ resolve: {};
11
+ }, {
12
+ typebox: {};
13
+ error: {};
14
+ }, {
15
+ schema: {};
16
+ standaloneSchema: {};
17
+ macro: {};
18
+ macroFn: {};
19
+ parser: {};
20
+ response: {};
21
+ }, {
22
+ [x: string]: {
23
+ post: {
24
+ body: {
25
+ email: string;
26
+ password: string;
27
+ };
28
+ params: {};
29
+ query: unknown;
30
+ headers: unknown;
31
+ response: {
32
+ 401: "Invalid email or password";
33
+ 403: {
34
+ readonly status: "email_not_verified";
35
+ };
36
+ 200: {
37
+ readonly status: "mfa_required";
38
+ } | {
39
+ readonly passwordCompromised: boolean;
40
+ readonly status: "authenticated";
41
+ };
42
+ 422: {
43
+ type: "validation";
44
+ on: string;
45
+ summary?: string;
46
+ message?: string;
47
+ found?: unknown;
48
+ property?: string;
49
+ expected?: string;
50
+ };
51
+ 429: {
52
+ readonly retryAfterMs: number | undefined;
53
+ readonly status: "account_locked";
54
+ };
55
+ };
56
+ };
57
+ };
58
+ }, {
59
+ derive: {};
60
+ resolve: {};
61
+ schema: {};
62
+ standaloneSchema: {};
63
+ response: {};
64
+ }, {
65
+ derive: {};
66
+ resolve: {};
67
+ schema: {};
68
+ standaloneSchema: {};
69
+ response: {};
70
+ } & {
71
+ derive: {};
72
+ resolve: {};
73
+ schema: {};
74
+ standaloneSchema: {};
75
+ response: {};
76
+ }>;
@@ -0,0 +1,15 @@
1
+ export type PasswordPolicy = {
2
+ checkBreaches?: boolean;
3
+ minLength?: number;
4
+ requireDigit?: boolean;
5
+ requireLowercase?: boolean;
6
+ requireSymbol?: boolean;
7
+ requireUppercase?: boolean;
8
+ };
9
+ export type PasswordPolicyViolation = 'breached' | 'missing_digit' | 'missing_lowercase' | 'missing_symbol' | 'missing_uppercase' | 'too_short';
10
+ export type PasswordPolicyResult = {
11
+ ok: boolean;
12
+ violations: PasswordPolicyViolation[];
13
+ };
14
+ export declare const evaluatePassword: (password: string, policy?: PasswordPolicy) => Promise<PasswordPolicyResult>;
15
+ export declare const isPasswordCompromised: (password: string) => Promise<boolean>;
@@ -0,0 +1,87 @@
1
+ import { Elysia } from 'elysia';
2
+ import { type CredentialsConfig } from './config';
3
+ export declare const credentialsPasswordReset: <UserType>({ credentialStore, onPasswordReset, onSendEmail, passwordPolicy, resetPasswordRoute, resetTokenDurationMs }: CredentialsConfig<UserType>) => Elysia<"", {
4
+ decorator: {};
5
+ store: {};
6
+ derive: {};
7
+ resolve: {};
8
+ }, {
9
+ typebox: {};
10
+ error: {};
11
+ }, {
12
+ schema: {};
13
+ standaloneSchema: {};
14
+ macro: {};
15
+ macroFn: {};
16
+ parser: {};
17
+ response: {};
18
+ }, {
19
+ [x: string]: {
20
+ request: {
21
+ post: {
22
+ body: {
23
+ email: string;
24
+ };
25
+ params: {};
26
+ query: unknown;
27
+ headers: unknown;
28
+ response: {
29
+ 200: {
30
+ readonly status: "reset_requested";
31
+ };
32
+ 422: {
33
+ type: "validation";
34
+ on: string;
35
+ summary?: string;
36
+ message?: string;
37
+ found?: unknown;
38
+ property?: string;
39
+ expected?: string;
40
+ };
41
+ };
42
+ };
43
+ };
44
+ };
45
+ } & {
46
+ [x: string]: {
47
+ post: {
48
+ body: {
49
+ token: string;
50
+ password: string;
51
+ };
52
+ params: {};
53
+ query: unknown;
54
+ headers: unknown;
55
+ response: {
56
+ 400: "Invalid or expired reset token" | {
57
+ readonly message: "Password does not meet the policy";
58
+ readonly violations: import("./passwordPolicy").PasswordPolicyViolation[];
59
+ };
60
+ 200: {
61
+ readonly status: "password_reset";
62
+ };
63
+ 422: {
64
+ type: "validation";
65
+ on: string;
66
+ summary?: string;
67
+ message?: string;
68
+ found?: unknown;
69
+ property?: string;
70
+ expected?: string;
71
+ };
72
+ };
73
+ };
74
+ };
75
+ }, {
76
+ derive: {};
77
+ resolve: {};
78
+ schema: {};
79
+ standaloneSchema: {};
80
+ response: {};
81
+ }, {
82
+ derive: {};
83
+ resolve: {};
84
+ schema: {};
85
+ standaloneSchema: {};
86
+ response: {};
87
+ }>;
@@ -0,0 +1,235 @@
1
+ import { type AnyPgDatabase } from '../stores/postgres';
2
+ import type { CredentialStore } from './types';
3
+ export declare const credentialsTable: import("drizzle-orm/pg-core").PgTableWithColumns<{
4
+ name: "auth_credentials";
5
+ schema: undefined;
6
+ columns: {
7
+ created_at_ms: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
8
+ name: string;
9
+ tableName: "auth_credentials";
10
+ dataType: "number int53";
11
+ data: number;
12
+ driverParam: string | number;
13
+ notNull: true;
14
+ hasDefault: false;
15
+ isPrimaryKey: false;
16
+ isAutoincrement: false;
17
+ hasRuntimeDefault: false;
18
+ enumValues: undefined;
19
+ identity: undefined;
20
+ generated: undefined;
21
+ }>;
22
+ email: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>>, {
23
+ name: string;
24
+ tableName: "auth_credentials";
25
+ dataType: "string";
26
+ data: string;
27
+ driverParam: string;
28
+ notNull: true;
29
+ hasDefault: false;
30
+ isPrimaryKey: false;
31
+ isAutoincrement: false;
32
+ hasRuntimeDefault: false;
33
+ enumValues: undefined;
34
+ identity: undefined;
35
+ generated: undefined;
36
+ }>;
37
+ email_verified: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBooleanBuilder>>, {
38
+ name: string;
39
+ tableName: "auth_credentials";
40
+ dataType: "boolean";
41
+ data: boolean;
42
+ driverParam: boolean;
43
+ notNull: true;
44
+ hasDefault: true;
45
+ isPrimaryKey: false;
46
+ isAutoincrement: false;
47
+ hasRuntimeDefault: false;
48
+ enumValues: undefined;
49
+ identity: undefined;
50
+ generated: undefined;
51
+ }>;
52
+ organization_id: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>, {
53
+ name: string;
54
+ tableName: "auth_credentials";
55
+ dataType: "string";
56
+ data: string;
57
+ driverParam: string;
58
+ notNull: false;
59
+ hasDefault: false;
60
+ isPrimaryKey: false;
61
+ isAutoincrement: false;
62
+ hasRuntimeDefault: false;
63
+ enumValues: undefined;
64
+ identity: undefined;
65
+ generated: undefined;
66
+ }>;
67
+ password_hash: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgTextBuilder<[string, ...string[]]>>, {
68
+ name: string;
69
+ tableName: "auth_credentials";
70
+ dataType: "string";
71
+ data: string;
72
+ driverParam: string;
73
+ notNull: true;
74
+ hasDefault: false;
75
+ isPrimaryKey: false;
76
+ isAutoincrement: false;
77
+ hasRuntimeDefault: false;
78
+ enumValues: undefined;
79
+ identity: undefined;
80
+ generated: undefined;
81
+ }>;
82
+ status: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").SetHasDefault<import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>>>, {
83
+ name: string;
84
+ tableName: "auth_credentials";
85
+ dataType: "string";
86
+ data: string;
87
+ driverParam: string;
88
+ notNull: true;
89
+ hasDefault: true;
90
+ isPrimaryKey: false;
91
+ isAutoincrement: false;
92
+ hasRuntimeDefault: false;
93
+ enumValues: undefined;
94
+ identity: undefined;
95
+ generated: undefined;
96
+ }>;
97
+ updated_at_ms: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
98
+ name: string;
99
+ tableName: "auth_credentials";
100
+ dataType: "number int53";
101
+ data: number;
102
+ driverParam: string | number;
103
+ notNull: true;
104
+ hasDefault: false;
105
+ isPrimaryKey: false;
106
+ isAutoincrement: false;
107
+ hasRuntimeDefault: false;
108
+ enumValues: undefined;
109
+ identity: undefined;
110
+ generated: undefined;
111
+ }>;
112
+ user_id: import("drizzle-orm/pg-core").PgBuildColumn<"auth_credentials", import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>, {
113
+ name: string;
114
+ tableName: "auth_credentials";
115
+ dataType: "string";
116
+ data: string;
117
+ driverParam: string;
118
+ notNull: false;
119
+ hasDefault: false;
120
+ isPrimaryKey: false;
121
+ isAutoincrement: false;
122
+ hasRuntimeDefault: false;
123
+ enumValues: undefined;
124
+ identity: undefined;
125
+ generated: undefined;
126
+ }>;
127
+ };
128
+ dialect: "pg";
129
+ }>;
130
+ export declare const credentialResetTokensTable: import("drizzle-orm/pg-core").PgTableWithColumns<{
131
+ name: string;
132
+ schema: undefined;
133
+ columns: {
134
+ email: import("drizzle-orm/pg-core").PgBuildColumn<string, import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>>, {
135
+ name: string;
136
+ tableName: string;
137
+ dataType: "string";
138
+ data: string;
139
+ driverParam: string;
140
+ notNull: true;
141
+ hasDefault: false;
142
+ isPrimaryKey: false;
143
+ isAutoincrement: false;
144
+ hasRuntimeDefault: false;
145
+ enumValues: undefined;
146
+ identity: undefined;
147
+ generated: undefined;
148
+ }>;
149
+ expires_at_ms: import("drizzle-orm/pg-core").PgBuildColumn<string, import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
150
+ name: string;
151
+ tableName: string;
152
+ dataType: "number int53";
153
+ data: number;
154
+ driverParam: string | number;
155
+ notNull: true;
156
+ hasDefault: false;
157
+ isPrimaryKey: false;
158
+ isAutoincrement: false;
159
+ hasRuntimeDefault: false;
160
+ enumValues: undefined;
161
+ identity: undefined;
162
+ generated: undefined;
163
+ }>;
164
+ token_hash: import("drizzle-orm/pg-core").PgBuildColumn<string, import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>>, {
165
+ name: string;
166
+ tableName: string;
167
+ dataType: "string";
168
+ data: string;
169
+ driverParam: string;
170
+ notNull: true;
171
+ hasDefault: false;
172
+ isPrimaryKey: false;
173
+ isAutoincrement: false;
174
+ hasRuntimeDefault: false;
175
+ enumValues: undefined;
176
+ identity: undefined;
177
+ generated: undefined;
178
+ }>;
179
+ };
180
+ dialect: "pg";
181
+ }>;
182
+ export declare const credentialVerificationTokensTable: import("drizzle-orm/pg-core").PgTableWithColumns<{
183
+ name: string;
184
+ schema: undefined;
185
+ columns: {
186
+ email: import("drizzle-orm/pg-core").PgBuildColumn<string, import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>>, {
187
+ name: string;
188
+ tableName: string;
189
+ dataType: "string";
190
+ data: string;
191
+ driverParam: string;
192
+ notNull: true;
193
+ hasDefault: false;
194
+ isPrimaryKey: false;
195
+ isAutoincrement: false;
196
+ hasRuntimeDefault: false;
197
+ enumValues: undefined;
198
+ identity: undefined;
199
+ generated: undefined;
200
+ }>;
201
+ expires_at_ms: import("drizzle-orm/pg-core").PgBuildColumn<string, import("drizzle-orm/pg-core").SetNotNull<import("drizzle-orm/pg-core").PgBigInt53Builder>, {
202
+ name: string;
203
+ tableName: string;
204
+ dataType: "number int53";
205
+ data: number;
206
+ driverParam: string | number;
207
+ notNull: true;
208
+ hasDefault: false;
209
+ isPrimaryKey: false;
210
+ isAutoincrement: false;
211
+ hasRuntimeDefault: false;
212
+ enumValues: undefined;
213
+ identity: undefined;
214
+ generated: undefined;
215
+ }>;
216
+ token_hash: import("drizzle-orm/pg-core").PgBuildColumn<string, import("drizzle-orm/pg-core").SetIsPrimaryKey<import("drizzle-orm/pg-core").PgVarcharBuilder<[string, ...string[]]>>, {
217
+ name: string;
218
+ tableName: string;
219
+ dataType: "string";
220
+ data: string;
221
+ driverParam: string;
222
+ notNull: true;
223
+ hasDefault: false;
224
+ isPrimaryKey: false;
225
+ isAutoincrement: false;
226
+ hasRuntimeDefault: false;
227
+ enumValues: undefined;
228
+ identity: undefined;
229
+ generated: undefined;
230
+ }>;
231
+ };
232
+ dialect: "pg";
233
+ }>;
234
+ export declare const createNeonCredentialStore: (databaseUrl: string) => CredentialStore;
235
+ export declare const createPostgresCredentialStore: <DB extends AnyPgDatabase>(db: DB) => CredentialStore;
@@ -0,0 +1,54 @@
1
+ import { Elysia } from 'elysia';
2
+ import { type CredentialRouteProps } from './config';
3
+ export declare const credentialsRegister: <UserType>({ authSessionStore, cookieSecure, credentialStore, onCreateCredentialUser, onCredentialsLoginSuccess, onRegistrationSuccess, onSendEmail, passwordPolicy, registerRoute, requireEmailVerification, sessionDurationMs, verificationTokenDurationMs }: CredentialRouteProps<UserType>) => Elysia<"", {
4
+ decorator: {};
5
+ store: {
6
+ session: import("..").SessionRecord<UserType>;
7
+ unregisteredSession: import("..").UnregisteredSessionRecord;
8
+ };
9
+ derive: {};
10
+ resolve: {};
11
+ }, {
12
+ typebox: {};
13
+ error: {};
14
+ }, {
15
+ schema: {};
16
+ standaloneSchema: {};
17
+ macro: {};
18
+ macroFn: {};
19
+ parser: {};
20
+ response: {};
21
+ }, {
22
+ [x: string]: {
23
+ post: {
24
+ body: {
25
+ email: string;
26
+ password: string;
27
+ };
28
+ params: {};
29
+ query: unknown;
30
+ headers: unknown;
31
+ response: {
32
+ [x: string]: any;
33
+ };
34
+ };
35
+ };
36
+ }, {
37
+ derive: {};
38
+ resolve: {};
39
+ schema: {};
40
+ standaloneSchema: {};
41
+ response: {};
42
+ }, {
43
+ derive: {};
44
+ resolve: {};
45
+ schema: {};
46
+ standaloneSchema: {};
47
+ response: {};
48
+ } & {
49
+ derive: {};
50
+ resolve: {};
51
+ schema: {};
52
+ standaloneSchema: {};
53
+ response: {};
54
+ }>;