@absolutejs/auth 0.56.3 → 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.
- package/dist/abuse/captcha.d.ts +11 -0
- package/dist/abuse/config.d.ts +29 -0
- package/dist/actions.d.ts +27 -0
- package/dist/agents/config.d.ts +44 -0
- package/dist/agents/context.d.ts +46 -0
- package/dist/agents/principal.d.ts +4 -0
- package/dist/agents/registration.d.ts +162 -0
- package/dist/agents/routes.d.ts +321 -0
- package/dist/agents/types.d.ts +129 -0
- package/dist/apikeys/config.d.ts +64 -0
- package/dist/apikeys/routes.d.ts +83 -0
- package/dist/apikeys/types.d.ts +53 -0
- package/dist/audit/config.d.ts +9 -0
- package/dist/audit/export.d.ts +2 -0
- package/dist/audit/inMemoryAuditStore.d.ts +2 -0
- package/dist/audit/integrity.d.ts +19 -0
- package/dist/audit/postgresAuditStore.d.ts +116 -0
- package/dist/audit/siem.d.ts +11 -0
- package/dist/audit/types.d.ts +19 -0
- package/dist/audit/wrap.d.ts +9 -0
- package/dist/authContext.d.ts +193 -0
- package/dist/authorization/config.d.ts +19 -0
- package/dist/authorization/protectPermission.d.ts +52 -0
- package/dist/cli/migrate.js.map +1 -1
- package/dist/compliance/cipher.d.ts +11 -0
- package/dist/compliance/config.d.ts +18 -0
- package/dist/compliance/redaction.d.ts +8 -0
- package/dist/compliance/routes.d.ts +89 -0
- package/dist/constants.d.ts +10 -0
- package/dist/credentials/backgroundOps.d.ts +45 -0
- package/dist/credentials/config.d.ts +68 -0
- package/dist/credentials/emailValidation.d.ts +9 -0
- package/dist/credentials/emailVerification.d.ts +83 -0
- package/dist/credentials/import.d.ts +34 -0
- package/dist/credentials/inMemoryCredentialStore.d.ts +2 -0
- package/dist/credentials/legacyHashers.d.ts +3 -0
- package/dist/credentials/login.d.ts +76 -0
- package/dist/credentials/passwordPolicy.d.ts +15 -0
- package/dist/credentials/passwordReset.d.ts +87 -0
- package/dist/credentials/postgresCredentialStore.d.ts +235 -0
- package/dist/credentials/register.d.ts +54 -0
- package/dist/credentials/routes.d.ts +201 -0
- package/dist/credentials/types.d.ts +26 -0
- package/dist/crypto.d.ts +32 -0
- package/dist/errors.d.ts +12 -0
- package/dist/federation/tokenStore.d.ts +29 -0
- package/dist/htmx/configuredRoutes.d.ts +542 -0
- package/dist/htmx/renderers.d.ts +8 -0
- package/dist/htmx/routes.d.ts +514 -0
- package/dist/htmx/types.d.ts +129 -0
- package/dist/index.js +31 -1
- package/dist/index.js.map +4 -4
- package/dist/linkedProviders/inMemoryStores.d.ts +9 -0
- package/dist/linkedProviders/neonStores.d.ts +484 -0
- package/dist/linkedProviders/oauthAccountResolver.d.ts +28 -0
- package/dist/linkedProviders/oauthResolver.d.ts +9 -0
- package/dist/linkedProviders/resolver.d.ts +22 -0
- package/dist/lockout/config.d.ts +17 -0
- package/dist/lockout/inMemoryLockoutStore.d.ts +2 -0
- package/dist/lockout/postgresLockoutStore.d.ts +71 -0
- package/dist/lockout/redisLockoutStore.d.ts +3 -0
- package/dist/lockout/types.d.ts +12 -0
- package/dist/mfa/backupCodes.d.ts +5 -0
- package/dist/mfa/challenge.d.ts +70 -0
- package/dist/mfa/config.d.ts +50 -0
- package/dist/mfa/gate.d.ts +2 -0
- package/dist/mfa/inMemoryMfaStore.d.ts +2 -0
- package/dist/mfa/management.d.ts +106 -0
- package/dist/mfa/postgresMfaStore.d.ts +206 -0
- package/dist/mfa/rotation.d.ts +17 -0
- package/dist/mfa/routes.d.ts +234 -0
- package/dist/mfa/secret.d.ts +2 -0
- package/dist/mfa/sms.d.ts +105 -0
- package/dist/mfa/totp.d.ts +91 -0
- package/dist/mfa/types.d.ts +23 -0
- package/dist/oidc/clientAuth.d.ts +19 -0
- package/dist/oidc/config.d.ts +296 -0
- package/dist/oidc/dpop.d.ts +23 -0
- package/dist/oidc/inMemoryVciStores.d.ts +3 -0
- package/dist/oidc/index.js +11 -1
- package/dist/oidc/index.js.map +3 -3
- package/dist/oidc/jar.d.ts +14 -0
- package/dist/oidc/keys.d.ts +35 -0
- package/dist/oidc/logout.d.ts +38 -0
- package/dist/oidc/mtls.d.ts +11 -0
- package/dist/oidc/par.d.ts +28 -0
- package/dist/oidc/registration.d.ts +138 -0
- package/dist/oidc/routes.d.ts +569 -0
- package/dist/oidc/types.d.ts +148 -0
- package/dist/oidc/userinfo.d.ts +21 -0
- package/dist/oidc/vci.d.ts +159 -0
- package/dist/oidc/vciRoutes.d.ts +92 -0
- package/dist/organizations/config.d.ts +46 -0
- package/dist/organizations/operations.d.ts +39 -0
- package/dist/organizations/routes.d.ts +299 -0
- package/dist/organizations/types.d.ts +45 -0
- package/dist/passwordless/config.d.ts +43 -0
- package/dist/passwordless/routes.d.ts +163 -0
- package/dist/passwordless/types.d.ts +9 -0
- package/dist/pluginIdentity.d.ts +2 -0
- package/dist/portal/config.d.ts +34 -0
- package/dist/portal/operations.d.ts +10 -0
- package/dist/portal/routes.d.ts +160 -0
- package/dist/portal/types.d.ts +16 -0
- package/dist/providers/clients.d.ts +1818 -0
- package/dist/providersFromEnv.d.ts +19 -0
- package/dist/roles/config.d.ts +27 -0
- package/dist/roles/operations.d.ts +8 -0
- package/dist/roles/routes.d.ts +106 -0
- package/dist/roles/types.d.ts +14 -0
- package/dist/routes/authorize.d.ts +102 -0
- package/dist/routes/callback.d.ts +64 -0
- package/dist/routes/profile.d.ts +70 -0
- package/dist/routes/protectRoute.d.ts +51 -0
- package/dist/routes/refresh.d.ts +74 -0
- package/dist/routes/revoke.d.ts +73 -0
- package/dist/routes/sessions.d.ts +103 -0
- package/dist/routes/signout.d.ts +70 -0
- package/dist/routes/stepUp.d.ts +48 -0
- package/dist/routes/userStatus.d.ts +72 -0
- package/dist/scim/config.d.ts +57 -0
- package/dist/scim/extensions.d.ts +30 -0
- package/dist/scim/inMemoryScimTokenStore.d.ts +2 -0
- package/dist/scim/routes.d.ts +366 -0
- package/dist/scim/serialize.d.ts +83 -0
- package/dist/scim/types.d.ts +54 -0
- package/dist/server.js +31 -1
- package/dist/server.js.map +4 -4
- package/dist/session/access.d.ts +33 -0
- package/dist/session/anonymous.d.ts +12 -0
- package/dist/session/cleanup.d.ts +45 -0
- package/dist/session/impersonation.d.ts +34 -0
- package/dist/session/inMemoryStore.d.ts +7 -0
- package/dist/session/multiSession.d.ts +27 -0
- package/dist/session/neonStore.d.ts +513 -0
- package/dist/session/promote.d.ts +23 -0
- package/dist/session/redisStore.d.ts +6 -0
- package/dist/session/sessionsConfig.d.ts +9 -0
- package/dist/session/state.d.ts +33 -0
- package/dist/session/types.d.ts +21 -0
- package/dist/session/userSessions.d.ts +19 -0
- package/dist/sso/config.d.ts +149 -0
- package/dist/sso/discoveryRoute.d.ts +63 -0
- package/dist/sso/oidcRoutes.d.ts +98 -0
- package/dist/sso/samlRoutes.d.ts +179 -0
- package/dist/sso/types.d.ts +53 -0
- package/dist/stores/postgres.d.ts +5 -0
- package/dist/stores/redis.d.ts +5 -0
- package/dist/telemetry/tracing.d.ts +15 -0
- package/dist/tenancy.d.ts +9 -0
- package/dist/typeGuards.d.ts +6 -0
- package/dist/typebox.d.ts +4 -0
- package/dist/types.d.ts +421 -0
- package/dist/utils.d.ts +45 -0
- package/dist/vault/config.d.ts +20 -0
- package/dist/vault/inMemoryVaultStore.d.ts +2 -0
- package/dist/vault/postgresVaultStore.d.ts +86 -0
- package/dist/vault/types.d.ts +14 -0
- package/dist/vc/inMemoryVpStores.d.ts +2 -0
- package/dist/vc/openid4vp.d.ts +82 -0
- package/dist/vc/postgresVcStores.d.ts +300 -0
- package/dist/vc/sdJwt.d.ts +37 -0
- package/dist/vc/statusList.d.ts +29 -0
- package/dist/vc/statusListRoutes.d.ts +63 -0
- package/dist/vc/vpRoutes.d.ts +120 -0
- package/dist/webauthn/adapter.d.ts +59 -0
- package/dist/webauthn/config.d.ts +36 -0
- package/dist/webauthn/routes.d.ts +155 -0
- package/dist/webauthn/types.d.ts +17 -0
- package/dist/webhooks/config.d.ts +34 -0
- package/dist/webhooks/dispatcher.d.ts +3 -0
- package/dist/webhooks/sign.d.ts +11 -0
- package/dist/webhooks/types.d.ts +25 -0
- package/package.json +3 -3
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { Elysia } from 'elysia';
|
|
2
|
+
import type { CredentialRouteProps } from './config';
|
|
3
|
+
export declare const credentialRoutes: <UserType>(config: 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
|
+
[x: string]: {
|
|
38
|
+
post: {
|
|
39
|
+
body: {
|
|
40
|
+
token: string;
|
|
41
|
+
};
|
|
42
|
+
params: {};
|
|
43
|
+
query: unknown;
|
|
44
|
+
headers: unknown;
|
|
45
|
+
response: {
|
|
46
|
+
400: "Invalid or expired verification token";
|
|
47
|
+
200: {
|
|
48
|
+
readonly status: "email_verified";
|
|
49
|
+
};
|
|
50
|
+
422: {
|
|
51
|
+
type: "validation";
|
|
52
|
+
on: string;
|
|
53
|
+
summary?: string;
|
|
54
|
+
message?: string;
|
|
55
|
+
found?: unknown;
|
|
56
|
+
property?: string;
|
|
57
|
+
expected?: string;
|
|
58
|
+
};
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
} & {
|
|
63
|
+
[x: string]: {
|
|
64
|
+
request: {
|
|
65
|
+
post: {
|
|
66
|
+
body: {
|
|
67
|
+
email: string;
|
|
68
|
+
};
|
|
69
|
+
params: {};
|
|
70
|
+
query: unknown;
|
|
71
|
+
headers: unknown;
|
|
72
|
+
response: {
|
|
73
|
+
200: {
|
|
74
|
+
readonly status: "verification_requested";
|
|
75
|
+
};
|
|
76
|
+
422: {
|
|
77
|
+
type: "validation";
|
|
78
|
+
on: string;
|
|
79
|
+
summary?: string;
|
|
80
|
+
message?: string;
|
|
81
|
+
found?: unknown;
|
|
82
|
+
property?: string;
|
|
83
|
+
expected?: string;
|
|
84
|
+
};
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
} & {
|
|
90
|
+
[x: string]: {
|
|
91
|
+
post: {
|
|
92
|
+
body: {
|
|
93
|
+
email: string;
|
|
94
|
+
password: string;
|
|
95
|
+
};
|
|
96
|
+
params: {};
|
|
97
|
+
query: unknown;
|
|
98
|
+
headers: unknown;
|
|
99
|
+
response: {
|
|
100
|
+
401: "Invalid email or password";
|
|
101
|
+
403: {
|
|
102
|
+
readonly status: "email_not_verified";
|
|
103
|
+
};
|
|
104
|
+
200: {
|
|
105
|
+
readonly status: "mfa_required";
|
|
106
|
+
} | {
|
|
107
|
+
readonly passwordCompromised: boolean;
|
|
108
|
+
readonly status: "authenticated";
|
|
109
|
+
};
|
|
110
|
+
422: {
|
|
111
|
+
type: "validation";
|
|
112
|
+
on: string;
|
|
113
|
+
summary?: string;
|
|
114
|
+
message?: string;
|
|
115
|
+
found?: unknown;
|
|
116
|
+
property?: string;
|
|
117
|
+
expected?: string;
|
|
118
|
+
};
|
|
119
|
+
429: {
|
|
120
|
+
readonly retryAfterMs: number | undefined;
|
|
121
|
+
readonly status: "account_locked";
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
} & {
|
|
127
|
+
[x: string]: {
|
|
128
|
+
request: {
|
|
129
|
+
post: {
|
|
130
|
+
body: {
|
|
131
|
+
email: string;
|
|
132
|
+
};
|
|
133
|
+
params: {};
|
|
134
|
+
query: unknown;
|
|
135
|
+
headers: unknown;
|
|
136
|
+
response: {
|
|
137
|
+
200: {
|
|
138
|
+
readonly status: "reset_requested";
|
|
139
|
+
};
|
|
140
|
+
422: {
|
|
141
|
+
type: "validation";
|
|
142
|
+
on: string;
|
|
143
|
+
summary?: string;
|
|
144
|
+
message?: string;
|
|
145
|
+
found?: unknown;
|
|
146
|
+
property?: string;
|
|
147
|
+
expected?: string;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
} & {
|
|
154
|
+
[x: string]: {
|
|
155
|
+
post: {
|
|
156
|
+
body: {
|
|
157
|
+
token: string;
|
|
158
|
+
password: string;
|
|
159
|
+
};
|
|
160
|
+
params: {};
|
|
161
|
+
query: unknown;
|
|
162
|
+
headers: unknown;
|
|
163
|
+
response: {
|
|
164
|
+
400: "Invalid or expired reset token" | {
|
|
165
|
+
readonly message: "Password does not meet the policy";
|
|
166
|
+
readonly violations: import("./passwordPolicy").PasswordPolicyViolation[];
|
|
167
|
+
};
|
|
168
|
+
200: {
|
|
169
|
+
readonly status: "password_reset";
|
|
170
|
+
};
|
|
171
|
+
422: {
|
|
172
|
+
type: "validation";
|
|
173
|
+
on: string;
|
|
174
|
+
summary?: string;
|
|
175
|
+
message?: string;
|
|
176
|
+
found?: unknown;
|
|
177
|
+
property?: string;
|
|
178
|
+
expected?: string;
|
|
179
|
+
};
|
|
180
|
+
};
|
|
181
|
+
};
|
|
182
|
+
};
|
|
183
|
+
}, {
|
|
184
|
+
derive: {};
|
|
185
|
+
resolve: {};
|
|
186
|
+
schema: {};
|
|
187
|
+
standaloneSchema: {};
|
|
188
|
+
response: {};
|
|
189
|
+
}, {
|
|
190
|
+
derive: {};
|
|
191
|
+
resolve: {};
|
|
192
|
+
schema: {};
|
|
193
|
+
standaloneSchema: {};
|
|
194
|
+
response: {};
|
|
195
|
+
} & {
|
|
196
|
+
derive: {};
|
|
197
|
+
resolve: {};
|
|
198
|
+
schema: {};
|
|
199
|
+
standaloneSchema: {};
|
|
200
|
+
response: {};
|
|
201
|
+
}>;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { OrganizationId } from '../tenancy';
|
|
2
|
+
export type CredentialStatus = 'active' | 'disabled';
|
|
3
|
+
export type CredentialRecord = {
|
|
4
|
+
createdAt: number;
|
|
5
|
+
email: string;
|
|
6
|
+
emailVerified: boolean;
|
|
7
|
+
organizationId?: OrganizationId;
|
|
8
|
+
passwordHash: string;
|
|
9
|
+
status: CredentialStatus;
|
|
10
|
+
updatedAt: number;
|
|
11
|
+
userId?: string;
|
|
12
|
+
};
|
|
13
|
+
export type CredentialToken = {
|
|
14
|
+
email: string;
|
|
15
|
+
expiresAt: number;
|
|
16
|
+
tokenHash: string;
|
|
17
|
+
};
|
|
18
|
+
export type CredentialStore = {
|
|
19
|
+
consumeResetToken: (tokenHash: string) => Promise<CredentialToken | undefined>;
|
|
20
|
+
consumeVerificationToken: (tokenHash: string) => Promise<CredentialToken | undefined>;
|
|
21
|
+
getCredentialByEmail: (email: string) => Promise<CredentialRecord | undefined>;
|
|
22
|
+
saveCredential: (credential: CredentialRecord) => Promise<void>;
|
|
23
|
+
saveResetToken: (token: CredentialToken) => Promise<void>;
|
|
24
|
+
saveVerificationToken: (token: CredentialToken) => Promise<void>;
|
|
25
|
+
setEmailVerified: (email: string) => Promise<void>;
|
|
26
|
+
};
|
package/dist/crypto.d.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare const base32Decode: (encoded: string) => Uint8Array<ArrayBuffer>;
|
|
2
|
+
export declare const base32Encode: (bytes: Uint8Array) => string;
|
|
3
|
+
export declare const constantTimeEqual: (left: string, right: string) => Promise<boolean>;
|
|
4
|
+
export declare const createTotpKeyUri: ({ accountName, digits, issuer, period, secret }: {
|
|
5
|
+
accountName: string;
|
|
6
|
+
digits?: number;
|
|
7
|
+
issuer: string;
|
|
8
|
+
period?: number;
|
|
9
|
+
secret: string;
|
|
10
|
+
}) => string;
|
|
11
|
+
export declare const decryptSecret: (ciphertext: string, keyMaterial: string) => Promise<string>;
|
|
12
|
+
export declare const encryptSecret: (plaintext: string, keyMaterial: string) => Promise<string>;
|
|
13
|
+
export declare const generateEncryptionKey: () => string;
|
|
14
|
+
export declare const generateSecureToken: (byteLength?: number) => string;
|
|
15
|
+
export declare const generateTotp: ({ digits, now, period, secret }: {
|
|
16
|
+
digits?: number;
|
|
17
|
+
now?: number;
|
|
18
|
+
period?: number;
|
|
19
|
+
secret: string;
|
|
20
|
+
}) => Promise<string>;
|
|
21
|
+
export declare const generateTotpSecret: (byteLength?: number) => string;
|
|
22
|
+
export declare const hashPassword: (password: string) => Promise<string>;
|
|
23
|
+
export declare const hashToken: (token: string) => Promise<string>;
|
|
24
|
+
export declare const verifyPassword: (password: string, hash: string) => Promise<boolean>;
|
|
25
|
+
export declare const verifyTotp: ({ digits, now, period, secret, token, window }: {
|
|
26
|
+
digits?: number;
|
|
27
|
+
now?: number;
|
|
28
|
+
period?: number;
|
|
29
|
+
secret: string;
|
|
30
|
+
token: string;
|
|
31
|
+
window?: number;
|
|
32
|
+
}) => Promise<boolean>;
|
package/dist/errors.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { AuthIntent } from './types';
|
|
2
|
+
export type AuthIdentityConflict = {
|
|
3
|
+
authProvider: string;
|
|
4
|
+
providerSubject: string;
|
|
5
|
+
existingUserAuthSub: string;
|
|
6
|
+
currentUserAuthSub?: string;
|
|
7
|
+
intent?: AuthIntent;
|
|
8
|
+
};
|
|
9
|
+
export declare class AuthIdentityConflictError extends Error {
|
|
10
|
+
conflict: AuthIdentityConflict;
|
|
11
|
+
constructor(conflict: AuthIdentityConflict);
|
|
12
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { Vault } from '../vault/config';
|
|
2
|
+
export type FederatedTokenSet = {
|
|
3
|
+
accessToken: string;
|
|
4
|
+
expiresAt?: number;
|
|
5
|
+
refreshToken?: string;
|
|
6
|
+
scopes?: string[];
|
|
7
|
+
storedAt: number;
|
|
8
|
+
tokenType?: string;
|
|
9
|
+
};
|
|
10
|
+
export type FederatedTokenStore = {
|
|
11
|
+
delete: (userId: string, provider: string, revoke?: (tokens: FederatedTokenSet) => Promise<void>) => Promise<void>;
|
|
12
|
+
get: (userId: string, provider: string) => Promise<FederatedTokenSet | undefined>;
|
|
13
|
+
list: (userId: string) => Promise<string[]>;
|
|
14
|
+
save: (userId: string, provider: string, tokens: Omit<FederatedTokenSet, 'storedAt'>) => Promise<void>;
|
|
15
|
+
};
|
|
16
|
+
export declare const createFederatedTokenStore: (vault: Vault) => FederatedTokenStore;
|
|
17
|
+
export type FederatedTokenRefresher = (refreshToken: string) => Promise<{
|
|
18
|
+
access_token: string;
|
|
19
|
+
expires_in?: number;
|
|
20
|
+
refresh_token?: string;
|
|
21
|
+
token_type?: string;
|
|
22
|
+
}>;
|
|
23
|
+
export declare const getOrRefreshFederatedTokens: ({ now, provider, refresh, store, userId }: {
|
|
24
|
+
now?: number;
|
|
25
|
+
provider: string;
|
|
26
|
+
refresh?: FederatedTokenRefresher;
|
|
27
|
+
store: FederatedTokenStore;
|
|
28
|
+
userId: string;
|
|
29
|
+
}) => Promise<FederatedTokenSet | undefined>;
|