@absolutejs/auth 0.65.1 → 0.65.3
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/adaptive/config.d.ts +34 -0
- package/dist/adaptive/fingerprint.d.ts +2 -0
- package/dist/adaptive/inMemoryStores.d.ts +3 -0
- package/dist/adaptive/postgresStores.d.ts +245 -0
- package/dist/adaptive/types.d.ts +62 -0
- package/dist/agents/config.d.ts +49 -0
- package/dist/agents/context.d.ts +46 -0
- package/dist/agents/idJag.d.ts +49 -0
- package/dist/agents/inMemoryStores.d.ts +4 -0
- package/dist/agents/index.d.ts +13 -0
- package/dist/agents/oauthGuide.d.ts +18 -0
- package/dist/agents/oidcAdapter.d.ts +20 -0
- package/dist/agents/postgresStores.d.ts +1176 -0
- package/dist/agents/principal.d.ts +4 -0
- package/dist/agents/registration.d.ts +162 -0
- package/dist/agents/registrationClient.d.ts +50 -0
- package/dist/agents/routes.d.ts +256 -0
- package/dist/agents/types.d.ts +129 -0
- package/dist/apikeys/config.d.ts +64 -0
- package/dist/apikeys/inMemoryStores.d.ts +4 -0
- package/dist/apikeys/postgresStores.d.ts +359 -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 +21 -0
- package/dist/audit/wrap.d.ts +11 -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/import/auth0.d.ts +2 -0
- package/dist/cli/import/clerk.d.ts +2 -0
- package/dist/cli/import/index.d.ts +10 -0
- package/dist/cli/import/lucia.d.ts +2 -0
- package/dist/cli/import/nextauth.d.ts +2 -0
- package/dist/cli/import/supabase.d.ts +2 -0
- package/dist/cli/import/types.d.ts +27 -0
- package/dist/cli/migrate.d.ts +2 -0
- package/dist/cli/migrate.js.map +2 -2
- package/dist/client/components/react/SignIn.d.ts +32 -0
- package/dist/client/components/react/SignUp.d.ts +29 -0
- package/dist/client/components/react/UserButton.d.ts +36 -0
- package/dist/client/createAuthClient.d.ts +285 -0
- package/dist/client/index.d.ts +4 -0
- package/dist/client/passkeyHelpers.d.ts +19 -0
- package/dist/client/react.d.ts +87 -0
- package/dist/client/sessionExpiry.d.ts +37 -0
- package/dist/client/solid.d.ts +86 -0
- package/dist/client/svelte.d.ts +86 -0
- package/dist/client/vue.d.ts +88 -0
- 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 +94 -0
- package/dist/credentials/emailValidation.d.ts +9 -0
- package/dist/credentials/emailVerification.d.ts +83 -0
- package/dist/credentials/import.d.ts +49 -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/csrf.d.ts +10 -0
- package/dist/errors.d.ts +12 -0
- package/dist/federation/tokenStore.d.ts +29 -0
- package/dist/fga/config.d.ts +53 -0
- package/dist/fga/inMemoryStores.d.ts +3 -0
- package/dist/fga/postgresStores.d.ts +116 -0
- package/dist/fga/redisCheckCache.d.ts +11 -0
- package/dist/fga/schema.d.ts +2 -0
- package/dist/fga/types.d.ts +28 -0
- package/dist/fingerprint-client/index.d.ts +26 -0
- package/dist/htmx/configuredRoutes.d.ts +542 -0
- package/dist/htmx/index.d.ts +2 -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.d.ts +3647 -0
- package/dist/index.js +34 -4
- package/dist/index.js.map +7 -6
- package/dist/linkedProviders/inMemoryStores.d.ts +9 -0
- package/dist/linkedProviders/index.d.ts +3 -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/manifest.d.ts +18 -0
- package/dist/manifest.json +373 -0
- package/dist/mfa/backupCodes.d.ts +5 -0
- package/dist/mfa/challenge.d.ts +72 -0
- package/dist/mfa/config.d.ts +59 -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 +266 -0
- package/dist/mfa/recentAuth.d.ts +2 -0
- package/dist/mfa/rotation.d.ts +17 -0
- package/dist/mfa/routes.d.ts +239 -0
- package/dist/mfa/secret.d.ts +2 -0
- package/dist/mfa/sms.d.ts +143 -0
- package/dist/mfa/totp.d.ts +91 -0
- package/dist/mfa/types.d.ts +58 -0
- package/dist/migrations/generate.d.ts +2 -0
- package/dist/migrations/index.d.ts +6 -0
- package/dist/migrations/runner.d.ts +22 -0
- package/dist/migrations/types.d.ts +14 -0
- package/dist/oidc/clientAuth.d.ts +19 -0
- package/dist/oidc/clientIdMetadata.d.ts +28 -0
- package/dist/oidc/config.d.ts +307 -0
- package/dist/oidc/dpop.d.ts +23 -0
- package/dist/oidc/inMemoryStores.d.ts +11 -0
- package/dist/oidc/inMemoryVciStores.d.ts +3 -0
- package/dist/oidc/index.d.ts +12 -0
- package/dist/oidc/jar.d.ts +14 -0
- package/dist/oidc/keys.d.ts +50 -0
- package/dist/oidc/logout.d.ts +38 -0
- package/dist/oidc/mtls.d.ts +11 -0
- package/dist/oidc/operator.d.ts +14 -0
- package/dist/oidc/par.d.ts +28 -0
- package/dist/oidc/postgresStores.d.ts +1217 -0
- package/dist/oidc/registration.d.ts +138 -0
- package/dist/oidc/routes.d.ts +569 -0
- package/dist/oidc/types.d.ts +157 -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/inMemoryOrganizationStore.d.ts +2 -0
- package/dist/organizations/operations.d.ts +39 -0
- package/dist/organizations/postgresOrganizationStore.d.ts +340 -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/inMemoryPasswordlessTokenStore.d.ts +2 -0
- package/dist/passwordless/postgresPasswordlessTokenStore.d.ts +56 -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/plugins/denyDisposableEmail.d.ts +7 -0
- package/dist/plugins/discordAlert.d.ts +7 -0
- package/dist/plugins/geoBlock.d.ts +8 -0
- package/dist/plugins/index.d.ts +12 -0
- package/dist/plugins/pagerdutyAlert.d.ts +9 -0
- package/dist/plugins/posthogIdentify.d.ts +7 -0
- package/dist/plugins/slackAlert.d.ts +7 -0
- package/dist/portal/config.d.ts +34 -0
- package/dist/portal/inMemorySetupSessionStore.d.ts +2 -0
- package/dist/portal/operations.d.ts +10 -0
- package/dist/portal/postgresSetupSessionStore.d.ts +116 -0
- package/dist/portal/routes.d.ts +160 -0
- package/dist/portal/types.d.ts +16 -0
- package/dist/providers/clients.d.ts +1831 -0
- package/dist/providers/index.d.ts +2 -0
- package/dist/providersFromEnv.d.ts +19 -0
- package/dist/redirect.d.ts +2 -0
- package/dist/roles/config.d.ts +27 -0
- package/dist/roles/inMemoryRoleStore.d.ts +2 -0
- package/dist/roles/operations.d.ts +8 -0
- package/dist/roles/postgresRoleStore.d.ts +86 -0
- package/dist/roles/resolver.d.ts +17 -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 +73 -0
- package/dist/routes/protectRoute.d.ts +51 -0
- package/dist/routes/refresh.d.ts +74 -0
- package/dist/routes/requireAuth.d.ts +43 -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/saml.d.ts +1 -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/postgresScimTokenStore.d.ts +86 -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.d.ts +34 -0
- package/dist/server.js +32 -4
- package/dist/server.js.map +7 -6
- 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/cookieReader.d.ts +10 -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 +574 -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 +23 -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/inMemorySamlServiceProviderStore.d.ts +2 -0
- package/dist/sso/inMemorySsoConnectionStore.d.ts +2 -0
- package/dist/sso/nodeSamlAdapter.d.ts +8 -0
- package/dist/sso/oidcRoutes.d.ts +98 -0
- package/dist/sso/postgresSamlServiceProviderStore.d.ts +101 -0
- package/dist/sso/postgresSsoConnectionStore.d.ts +117 -0
- package/dist/sso/samlIdpRoutes.d.ts +139 -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 +438 -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/index.d.ts +5 -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/verification/types.d.ts +58 -0
- package/dist/webauthn/adapter.d.ts +59 -0
- package/dist/webauthn/config.d.ts +36 -0
- package/dist/webauthn/inMemoryWebAuthnCredentialStore.d.ts +2 -0
- package/dist/webauthn/postgresWebAuthnCredentialStore.d.ts +146 -0
- package/dist/webauthn/routes.d.ts +155 -0
- package/dist/webauthn/simpleWebAuthnAdapter.d.ts +3 -0
- package/dist/webauthn/types.d.ts +17 -0
- package/dist/webauthn.d.ts +1 -0
- package/dist/webhooks/config.d.ts +34 -0
- package/dist/webhooks/dispatcher.d.ts +3 -0
- package/dist/webhooks/inMemoryStore.d.ts +2 -0
- package/dist/webhooks/postgresStore.d.ts +116 -0
- package/dist/webhooks/sign.d.ts +11 -0
- package/dist/webhooks/types.d.ts +25 -0
- package/package.json +1 -1
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
import type { PublicKeyCredentialCreationOptionsJSON, PublicKeyCredentialRequestOptionsJSON } from '@simplewebauthn/browser';
|
|
2
|
+
export type AuthClientError = {
|
|
3
|
+
body: unknown;
|
|
4
|
+
message: string;
|
|
5
|
+
status: number;
|
|
6
|
+
};
|
|
7
|
+
export type AuthClientResult<T> = {
|
|
8
|
+
data: null;
|
|
9
|
+
error: AuthClientError;
|
|
10
|
+
} | {
|
|
11
|
+
data: T;
|
|
12
|
+
error: null;
|
|
13
|
+
};
|
|
14
|
+
export type AuthClientRoutes = {
|
|
15
|
+
emailVerify?: string;
|
|
16
|
+
emailVerifyRequest?: string;
|
|
17
|
+
login?: string;
|
|
18
|
+
magicLinkRequest?: string;
|
|
19
|
+
magicLinkVerify?: string;
|
|
20
|
+
mfaChallenge?: string;
|
|
21
|
+
mfaManagement?: string;
|
|
22
|
+
mfaSetup?: string;
|
|
23
|
+
mfaVerifySetup?: string;
|
|
24
|
+
passkeyAuthenticateOptions?: string;
|
|
25
|
+
passkeyAuthenticateVerify?: string;
|
|
26
|
+
passkeyList?: string;
|
|
27
|
+
passkeyRegisterOptions?: string;
|
|
28
|
+
passkeyRegisterVerify?: string;
|
|
29
|
+
passkeyRemove?: string;
|
|
30
|
+
passwordReset?: string;
|
|
31
|
+
passwordResetRequest?: string;
|
|
32
|
+
register?: string;
|
|
33
|
+
sessions?: string;
|
|
34
|
+
signout?: string;
|
|
35
|
+
status?: string;
|
|
36
|
+
};
|
|
37
|
+
export type AuthClientConfig = {
|
|
38
|
+
baseUrl?: string;
|
|
39
|
+
credentials?: RequestCredentials;
|
|
40
|
+
fetch?: typeof fetch;
|
|
41
|
+
routes?: AuthClientRoutes;
|
|
42
|
+
};
|
|
43
|
+
export declare const createAuthClient: ({ baseUrl, credentials, fetch: fetchImpl, routes }?: AuthClientConfig) => {
|
|
44
|
+
emailVerification: {
|
|
45
|
+
request: (body: {
|
|
46
|
+
email: string;
|
|
47
|
+
}) => Promise<{
|
|
48
|
+
data: null;
|
|
49
|
+
error: AuthClientError;
|
|
50
|
+
} | {
|
|
51
|
+
data: {
|
|
52
|
+
ok: true;
|
|
53
|
+
};
|
|
54
|
+
error: null;
|
|
55
|
+
}>;
|
|
56
|
+
verify: (body: {
|
|
57
|
+
token: string;
|
|
58
|
+
}) => Promise<{
|
|
59
|
+
data: null;
|
|
60
|
+
error: AuthClientError;
|
|
61
|
+
} | {
|
|
62
|
+
data: {
|
|
63
|
+
ok: true;
|
|
64
|
+
};
|
|
65
|
+
error: null;
|
|
66
|
+
}>;
|
|
67
|
+
};
|
|
68
|
+
mfa: {
|
|
69
|
+
challenge: (body: {
|
|
70
|
+
code: string;
|
|
71
|
+
}) => Promise<{
|
|
72
|
+
data: null;
|
|
73
|
+
error: AuthClientError;
|
|
74
|
+
} | {
|
|
75
|
+
data: {
|
|
76
|
+
status: "authenticated";
|
|
77
|
+
};
|
|
78
|
+
error: null;
|
|
79
|
+
}>;
|
|
80
|
+
disable: () => Promise<{
|
|
81
|
+
data: null;
|
|
82
|
+
error: AuthClientError;
|
|
83
|
+
} | {
|
|
84
|
+
data: {
|
|
85
|
+
status: "disabled";
|
|
86
|
+
};
|
|
87
|
+
error: null;
|
|
88
|
+
}>;
|
|
89
|
+
setup: () => Promise<{
|
|
90
|
+
data: null;
|
|
91
|
+
error: AuthClientError;
|
|
92
|
+
} | {
|
|
93
|
+
data: {
|
|
94
|
+
secret: string;
|
|
95
|
+
uri: string;
|
|
96
|
+
};
|
|
97
|
+
error: null;
|
|
98
|
+
}>;
|
|
99
|
+
status: () => Promise<{
|
|
100
|
+
data: null;
|
|
101
|
+
error: AuthClientError;
|
|
102
|
+
} | {
|
|
103
|
+
data: import("..").MfaStatus;
|
|
104
|
+
error: null;
|
|
105
|
+
}>;
|
|
106
|
+
verifySetup: (body: {
|
|
107
|
+
code: string;
|
|
108
|
+
}) => Promise<{
|
|
109
|
+
data: null;
|
|
110
|
+
error: AuthClientError;
|
|
111
|
+
} | {
|
|
112
|
+
data: {
|
|
113
|
+
backupCodes: string[];
|
|
114
|
+
};
|
|
115
|
+
error: null;
|
|
116
|
+
}>;
|
|
117
|
+
};
|
|
118
|
+
passkeys: {
|
|
119
|
+
authenticateOptions: () => Promise<{
|
|
120
|
+
data: null;
|
|
121
|
+
error: AuthClientError;
|
|
122
|
+
} | {
|
|
123
|
+
data: PublicKeyCredentialRequestOptionsJSON;
|
|
124
|
+
error: null;
|
|
125
|
+
}>;
|
|
126
|
+
authenticateVerify: (response: unknown) => Promise<{
|
|
127
|
+
data: null;
|
|
128
|
+
error: AuthClientError;
|
|
129
|
+
} | {
|
|
130
|
+
data: {
|
|
131
|
+
status: "authenticated";
|
|
132
|
+
};
|
|
133
|
+
error: null;
|
|
134
|
+
}>;
|
|
135
|
+
list: () => Promise<{
|
|
136
|
+
data: null;
|
|
137
|
+
error: AuthClientError;
|
|
138
|
+
} | {
|
|
139
|
+
data: unknown[];
|
|
140
|
+
error: null;
|
|
141
|
+
}>;
|
|
142
|
+
registerOptions: () => Promise<{
|
|
143
|
+
data: null;
|
|
144
|
+
error: AuthClientError;
|
|
145
|
+
} | {
|
|
146
|
+
data: PublicKeyCredentialCreationOptionsJSON;
|
|
147
|
+
error: null;
|
|
148
|
+
}>;
|
|
149
|
+
registerVerify: (response: unknown) => Promise<{
|
|
150
|
+
data: null;
|
|
151
|
+
error: AuthClientError;
|
|
152
|
+
} | {
|
|
153
|
+
data: {
|
|
154
|
+
ok: true;
|
|
155
|
+
};
|
|
156
|
+
error: null;
|
|
157
|
+
}>;
|
|
158
|
+
remove: (credentialId: string) => Promise<{
|
|
159
|
+
data: null;
|
|
160
|
+
error: AuthClientError;
|
|
161
|
+
} | {
|
|
162
|
+
data: {
|
|
163
|
+
ok: true;
|
|
164
|
+
};
|
|
165
|
+
error: null;
|
|
166
|
+
}>;
|
|
167
|
+
};
|
|
168
|
+
passwordless: {
|
|
169
|
+
requestMagicLink: (body: {
|
|
170
|
+
email: string;
|
|
171
|
+
}) => Promise<{
|
|
172
|
+
data: null;
|
|
173
|
+
error: AuthClientError;
|
|
174
|
+
} | {
|
|
175
|
+
data: {
|
|
176
|
+
ok: true;
|
|
177
|
+
};
|
|
178
|
+
error: null;
|
|
179
|
+
}>;
|
|
180
|
+
verifyMagicLink: (body: {
|
|
181
|
+
token: string;
|
|
182
|
+
}) => Promise<{
|
|
183
|
+
data: null;
|
|
184
|
+
error: AuthClientError;
|
|
185
|
+
} | {
|
|
186
|
+
data: {
|
|
187
|
+
status: "authenticated";
|
|
188
|
+
};
|
|
189
|
+
error: null;
|
|
190
|
+
}>;
|
|
191
|
+
};
|
|
192
|
+
passwordReset: {
|
|
193
|
+
confirm: (body: {
|
|
194
|
+
password: string;
|
|
195
|
+
token: string;
|
|
196
|
+
}) => Promise<{
|
|
197
|
+
data: null;
|
|
198
|
+
error: AuthClientError;
|
|
199
|
+
} | {
|
|
200
|
+
data: {
|
|
201
|
+
ok: true;
|
|
202
|
+
};
|
|
203
|
+
error: null;
|
|
204
|
+
}>;
|
|
205
|
+
request: (body: {
|
|
206
|
+
email: string;
|
|
207
|
+
}) => Promise<{
|
|
208
|
+
data: null;
|
|
209
|
+
error: AuthClientError;
|
|
210
|
+
} | {
|
|
211
|
+
data: {
|
|
212
|
+
ok: true;
|
|
213
|
+
};
|
|
214
|
+
error: null;
|
|
215
|
+
}>;
|
|
216
|
+
};
|
|
217
|
+
sessions: {
|
|
218
|
+
list: () => Promise<{
|
|
219
|
+
data: null;
|
|
220
|
+
error: AuthClientError;
|
|
221
|
+
} | {
|
|
222
|
+
data: unknown[];
|
|
223
|
+
error: null;
|
|
224
|
+
}>;
|
|
225
|
+
revoke: (sessionId: string) => Promise<{
|
|
226
|
+
data: null;
|
|
227
|
+
error: AuthClientError;
|
|
228
|
+
} | {
|
|
229
|
+
data: {
|
|
230
|
+
ok: true;
|
|
231
|
+
};
|
|
232
|
+
error: null;
|
|
233
|
+
}>;
|
|
234
|
+
};
|
|
235
|
+
signIn: {
|
|
236
|
+
email: (body: {
|
|
237
|
+
email: string;
|
|
238
|
+
password: string;
|
|
239
|
+
}) => Promise<{
|
|
240
|
+
data: null;
|
|
241
|
+
error: AuthClientError;
|
|
242
|
+
} | {
|
|
243
|
+
data: {
|
|
244
|
+
passwordCompromised?: boolean;
|
|
245
|
+
status: "authenticated" | "mfa_required";
|
|
246
|
+
};
|
|
247
|
+
error: null;
|
|
248
|
+
}>;
|
|
249
|
+
};
|
|
250
|
+
signUp: {
|
|
251
|
+
email: (body: {
|
|
252
|
+
email: string;
|
|
253
|
+
password: string;
|
|
254
|
+
[extra: string]: unknown;
|
|
255
|
+
}) => Promise<{
|
|
256
|
+
data: null;
|
|
257
|
+
error: AuthClientError;
|
|
258
|
+
} | {
|
|
259
|
+
data: {
|
|
260
|
+
status: "authenticated";
|
|
261
|
+
} | {
|
|
262
|
+
status: "verification_required";
|
|
263
|
+
};
|
|
264
|
+
error: null;
|
|
265
|
+
}>;
|
|
266
|
+
};
|
|
267
|
+
signOut: () => Promise<{
|
|
268
|
+
data: null;
|
|
269
|
+
error: AuthClientError;
|
|
270
|
+
} | {
|
|
271
|
+
data: null;
|
|
272
|
+
error: null;
|
|
273
|
+
}>;
|
|
274
|
+
status: () => Promise<{
|
|
275
|
+
data: null;
|
|
276
|
+
error: AuthClientError;
|
|
277
|
+
} | {
|
|
278
|
+
data: {
|
|
279
|
+
impersonator?: unknown;
|
|
280
|
+
user: unknown | null;
|
|
281
|
+
};
|
|
282
|
+
error: null;
|
|
283
|
+
}>;
|
|
284
|
+
};
|
|
285
|
+
export type AuthClient = ReturnType<typeof createAuthClient>;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { AuthClient, AuthClientError } from './createAuthClient';
|
|
2
|
+
export declare const runConditionalAuthentication: (client: AuthClient) => Promise<{
|
|
3
|
+
data: null;
|
|
4
|
+
error: AuthClientError;
|
|
5
|
+
} | {
|
|
6
|
+
data: {
|
|
7
|
+
status: "authenticated";
|
|
8
|
+
};
|
|
9
|
+
error: null;
|
|
10
|
+
}>;
|
|
11
|
+
export declare const runPasskeyRegistration: (client: AuthClient) => Promise<{
|
|
12
|
+
data: null;
|
|
13
|
+
error: AuthClientError;
|
|
14
|
+
} | {
|
|
15
|
+
data: {
|
|
16
|
+
ok: true;
|
|
17
|
+
};
|
|
18
|
+
error: null;
|
|
19
|
+
}>;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import type { AuthClient, AuthClientError } from './createAuthClient';
|
|
2
|
+
type Mutator<Args, Data> = (args: Args) => Promise<{
|
|
3
|
+
data: Data | null;
|
|
4
|
+
error: AuthClientError | null;
|
|
5
|
+
}>;
|
|
6
|
+
type MutationState<Args, Data> = {
|
|
7
|
+
data: Data | null;
|
|
8
|
+
error: AuthClientError | null;
|
|
9
|
+
isPending: boolean;
|
|
10
|
+
mutate: Mutator<Args, Data>;
|
|
11
|
+
reset: () => void;
|
|
12
|
+
};
|
|
13
|
+
export declare const useMagicLink: (client: AuthClient) => MutationState<{
|
|
14
|
+
email: string;
|
|
15
|
+
}, {
|
|
16
|
+
ok: true;
|
|
17
|
+
}>;
|
|
18
|
+
export declare const useMfaChallenge: (client: AuthClient) => MutationState<{
|
|
19
|
+
code: string;
|
|
20
|
+
}, {
|
|
21
|
+
status: "authenticated";
|
|
22
|
+
}>;
|
|
23
|
+
export declare const usePasskeyAutofill: (client: AuthClient) => {
|
|
24
|
+
cancel: () => void;
|
|
25
|
+
data: {
|
|
26
|
+
status: "authenticated";
|
|
27
|
+
} | null;
|
|
28
|
+
error: AuthClientError | null;
|
|
29
|
+
isPending: boolean;
|
|
30
|
+
start: () => Promise<void>;
|
|
31
|
+
};
|
|
32
|
+
export declare const usePasswordReset: (client: AuthClient) => MutationState<{
|
|
33
|
+
email: string;
|
|
34
|
+
}, {
|
|
35
|
+
ok: true;
|
|
36
|
+
}>;
|
|
37
|
+
export declare const useSessions: (client: AuthClient) => {
|
|
38
|
+
data: unknown[] | null;
|
|
39
|
+
error: AuthClientError | null;
|
|
40
|
+
isPending: boolean;
|
|
41
|
+
refetch: () => Promise<void>;
|
|
42
|
+
revoke: (sessionId: string) => Promise<{
|
|
43
|
+
data: null;
|
|
44
|
+
error: AuthClientError;
|
|
45
|
+
} | {
|
|
46
|
+
data: {
|
|
47
|
+
ok: true;
|
|
48
|
+
};
|
|
49
|
+
error: null;
|
|
50
|
+
}>;
|
|
51
|
+
};
|
|
52
|
+
export declare const useSignIn: (client: AuthClient) => MutationState<{
|
|
53
|
+
email: string;
|
|
54
|
+
password: string;
|
|
55
|
+
}, {
|
|
56
|
+
passwordCompromised?: boolean;
|
|
57
|
+
status: "authenticated" | "mfa_required";
|
|
58
|
+
}>;
|
|
59
|
+
export declare const useSignOut: (client: AuthClient) => MutationState<unknown, null>;
|
|
60
|
+
export declare const useSignUp: (client: AuthClient) => MutationState<{
|
|
61
|
+
[extra: string]: unknown;
|
|
62
|
+
email: string;
|
|
63
|
+
password: string;
|
|
64
|
+
}, {
|
|
65
|
+
status: "authenticated";
|
|
66
|
+
} | {
|
|
67
|
+
status: "verification_required";
|
|
68
|
+
}>;
|
|
69
|
+
export declare const useUpgradeToPasskey: (client: AuthClient) => {
|
|
70
|
+
error: AuthClientError | null;
|
|
71
|
+
isPending: boolean;
|
|
72
|
+
passkeys: unknown[] | null;
|
|
73
|
+
refetch: () => Promise<void>;
|
|
74
|
+
register: () => Promise<{
|
|
75
|
+
data: null;
|
|
76
|
+
error: AuthClientError;
|
|
77
|
+
} | {
|
|
78
|
+
data: {
|
|
79
|
+
ok: true;
|
|
80
|
+
};
|
|
81
|
+
error: null;
|
|
82
|
+
}>;
|
|
83
|
+
shouldPrompt: boolean;
|
|
84
|
+
};
|
|
85
|
+
export { SignIn, type SignInProps } from './components/react/SignIn';
|
|
86
|
+
export { SignUp, type SignUpProps } from './components/react/SignUp';
|
|
87
|
+
export { UserButton, type UserButtonItem, type UserButtonProps, type UserButtonUser } from './components/react/UserButton';
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
export type SessionExpiredContext = {
|
|
2
|
+
returnTo: string;
|
|
3
|
+
signInUrl: string;
|
|
4
|
+
};
|
|
5
|
+
export type SessionExpiryGuard = {
|
|
6
|
+
check: () => Promise<boolean>;
|
|
7
|
+
dispose: () => void;
|
|
8
|
+
};
|
|
9
|
+
export type SessionExpiryGuardConfig = {
|
|
10
|
+
checkIntervalMs?: number;
|
|
11
|
+
isProtectedRequest?: (url: URL) => boolean;
|
|
12
|
+
onExpired?: (context: SessionExpiredContext) => void;
|
|
13
|
+
protectedPaths?: readonly string[];
|
|
14
|
+
reason?: string;
|
|
15
|
+
reasonParam?: string;
|
|
16
|
+
returnUrlParam?: string;
|
|
17
|
+
signInPath?: string;
|
|
18
|
+
statusPath?: string;
|
|
19
|
+
};
|
|
20
|
+
export declare const buildSessionExpiredSignInUrl: ({ currentHref, reason, reasonParam, returnUrlParam, signInPath }: {
|
|
21
|
+
currentHref: string;
|
|
22
|
+
reason?: string;
|
|
23
|
+
reasonParam?: string;
|
|
24
|
+
returnUrlParam?: string;
|
|
25
|
+
signInPath?: string;
|
|
26
|
+
}) => string;
|
|
27
|
+
/**
|
|
28
|
+
* Installs one browser-wide session-expiry guard. It intercepts 401 responses
|
|
29
|
+
* only for explicitly protected same-origin requests and rechecks the auth
|
|
30
|
+
* status route when a backgrounded or bfcached page becomes active again.
|
|
31
|
+
*/
|
|
32
|
+
export declare const installSessionExpiryGuard: (config?: SessionExpiryGuardConfig) => SessionExpiryGuard;
|
|
33
|
+
export declare const isProtectedSessionRequest: ({ input, origin, protectedPaths }: {
|
|
34
|
+
input: RequestInfo | URL;
|
|
35
|
+
origin: string;
|
|
36
|
+
protectedPaths: readonly string[];
|
|
37
|
+
}) => boolean;
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { type Accessor } from 'solid-js';
|
|
2
|
+
import type { AuthClient, AuthClientError } from './createAuthClient';
|
|
3
|
+
type Mutator<Args, Data> = (args: Args) => Promise<{
|
|
4
|
+
data: Data | null;
|
|
5
|
+
error: AuthClientError | null;
|
|
6
|
+
}>;
|
|
7
|
+
type MutationState<Args, Data> = {
|
|
8
|
+
data: Accessor<Data | null>;
|
|
9
|
+
error: Accessor<AuthClientError | null>;
|
|
10
|
+
isPending: Accessor<boolean>;
|
|
11
|
+
mutate: Mutator<Args, Data>;
|
|
12
|
+
reset: () => void;
|
|
13
|
+
};
|
|
14
|
+
export declare const useMagicLink: (client: AuthClient) => MutationState<{
|
|
15
|
+
email: string;
|
|
16
|
+
}, {
|
|
17
|
+
ok: true;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const useMfaChallenge: (client: AuthClient) => MutationState<{
|
|
20
|
+
code: string;
|
|
21
|
+
}, {
|
|
22
|
+
status: "authenticated";
|
|
23
|
+
}>;
|
|
24
|
+
export declare const usePasskeyAutofill: (client: AuthClient) => {
|
|
25
|
+
cancel: () => void;
|
|
26
|
+
data: Accessor<{
|
|
27
|
+
status: "authenticated";
|
|
28
|
+
} | null>;
|
|
29
|
+
error: Accessor<AuthClientError | null>;
|
|
30
|
+
isPending: Accessor<boolean>;
|
|
31
|
+
start: () => Promise<void>;
|
|
32
|
+
};
|
|
33
|
+
export declare const usePasswordReset: (client: AuthClient) => MutationState<{
|
|
34
|
+
email: string;
|
|
35
|
+
}, {
|
|
36
|
+
ok: true;
|
|
37
|
+
}>;
|
|
38
|
+
export declare const useSessions: (client: AuthClient) => {
|
|
39
|
+
data: Accessor<unknown[] | null>;
|
|
40
|
+
error: Accessor<AuthClientError | null>;
|
|
41
|
+
isPending: Accessor<boolean>;
|
|
42
|
+
refetch: () => Promise<void>;
|
|
43
|
+
revoke: (sessionId: string) => Promise<{
|
|
44
|
+
data: null;
|
|
45
|
+
error: AuthClientError;
|
|
46
|
+
} | {
|
|
47
|
+
data: {
|
|
48
|
+
ok: true;
|
|
49
|
+
};
|
|
50
|
+
error: null;
|
|
51
|
+
}>;
|
|
52
|
+
};
|
|
53
|
+
export declare const useSignIn: (client: AuthClient) => MutationState<{
|
|
54
|
+
email: string;
|
|
55
|
+
password: string;
|
|
56
|
+
}, {
|
|
57
|
+
passwordCompromised?: boolean;
|
|
58
|
+
status: "authenticated" | "mfa_required";
|
|
59
|
+
}>;
|
|
60
|
+
export declare const useSignOut: (client: AuthClient) => MutationState<unknown, null>;
|
|
61
|
+
export declare const useSignUp: (client: AuthClient) => MutationState<{
|
|
62
|
+
[extra: string]: unknown;
|
|
63
|
+
email: string;
|
|
64
|
+
password: string;
|
|
65
|
+
}, {
|
|
66
|
+
status: "authenticated";
|
|
67
|
+
} | {
|
|
68
|
+
status: "verification_required";
|
|
69
|
+
}>;
|
|
70
|
+
export declare const useUpgradeToPasskey: (client: AuthClient) => {
|
|
71
|
+
error: Accessor<AuthClientError | null>;
|
|
72
|
+
isPending: Accessor<boolean>;
|
|
73
|
+
passkeys: Accessor<unknown[] | null>;
|
|
74
|
+
refetch: () => Promise<void>;
|
|
75
|
+
register: () => Promise<{
|
|
76
|
+
data: null;
|
|
77
|
+
error: AuthClientError;
|
|
78
|
+
} | {
|
|
79
|
+
data: {
|
|
80
|
+
ok: true;
|
|
81
|
+
};
|
|
82
|
+
error: null;
|
|
83
|
+
}>;
|
|
84
|
+
shouldPrompt: () => boolean;
|
|
85
|
+
};
|
|
86
|
+
export {};
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
import { type Writable } from 'svelte/store';
|
|
2
|
+
import type { AuthClient, AuthClientError } from './createAuthClient';
|
|
3
|
+
type Mutator<Args, Data> = (args: Args) => Promise<{
|
|
4
|
+
data: Data | null;
|
|
5
|
+
error: AuthClientError | null;
|
|
6
|
+
}>;
|
|
7
|
+
type MutationState<Args, Data> = {
|
|
8
|
+
data: Writable<Data | null>;
|
|
9
|
+
error: Writable<AuthClientError | null>;
|
|
10
|
+
isPending: Writable<boolean>;
|
|
11
|
+
mutate: Mutator<Args, Data>;
|
|
12
|
+
reset: () => void;
|
|
13
|
+
};
|
|
14
|
+
export declare const useMagicLink: (client: AuthClient) => MutationState<{
|
|
15
|
+
email: string;
|
|
16
|
+
}, {
|
|
17
|
+
ok: true;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const useMfaChallenge: (client: AuthClient) => MutationState<{
|
|
20
|
+
code: string;
|
|
21
|
+
}, {
|
|
22
|
+
status: "authenticated";
|
|
23
|
+
}>;
|
|
24
|
+
export declare const usePasskeyAutofill: (client: AuthClient) => {
|
|
25
|
+
cancel: () => void;
|
|
26
|
+
data: Writable<{
|
|
27
|
+
status: "authenticated";
|
|
28
|
+
} | null>;
|
|
29
|
+
error: Writable<AuthClientError | null>;
|
|
30
|
+
isPending: Writable<boolean>;
|
|
31
|
+
start: () => Promise<void>;
|
|
32
|
+
};
|
|
33
|
+
export declare const usePasswordReset: (client: AuthClient) => MutationState<{
|
|
34
|
+
email: string;
|
|
35
|
+
}, {
|
|
36
|
+
ok: true;
|
|
37
|
+
}>;
|
|
38
|
+
export declare const useSessions: (client: AuthClient) => {
|
|
39
|
+
data: Writable<unknown[] | null>;
|
|
40
|
+
error: Writable<AuthClientError | null>;
|
|
41
|
+
isPending: Writable<boolean>;
|
|
42
|
+
refetch: () => Promise<void>;
|
|
43
|
+
revoke: (sessionId: string) => Promise<{
|
|
44
|
+
data: null;
|
|
45
|
+
error: AuthClientError;
|
|
46
|
+
} | {
|
|
47
|
+
data: {
|
|
48
|
+
ok: true;
|
|
49
|
+
};
|
|
50
|
+
error: null;
|
|
51
|
+
}>;
|
|
52
|
+
};
|
|
53
|
+
export declare const useSignIn: (client: AuthClient) => MutationState<{
|
|
54
|
+
email: string;
|
|
55
|
+
password: string;
|
|
56
|
+
}, {
|
|
57
|
+
passwordCompromised?: boolean;
|
|
58
|
+
status: "authenticated" | "mfa_required";
|
|
59
|
+
}>;
|
|
60
|
+
export declare const useSignOut: (client: AuthClient) => MutationState<unknown, null>;
|
|
61
|
+
export declare const useSignUp: (client: AuthClient) => MutationState<{
|
|
62
|
+
[extra: string]: unknown;
|
|
63
|
+
email: string;
|
|
64
|
+
password: string;
|
|
65
|
+
}, {
|
|
66
|
+
status: "authenticated";
|
|
67
|
+
} | {
|
|
68
|
+
status: "verification_required";
|
|
69
|
+
}>;
|
|
70
|
+
export declare const useUpgradeToPasskey: (client: AuthClient) => {
|
|
71
|
+
error: Writable<AuthClientError | null>;
|
|
72
|
+
isPending: Writable<boolean>;
|
|
73
|
+
passkeys: Writable<unknown[] | null>;
|
|
74
|
+
refetch: () => Promise<void>;
|
|
75
|
+
register: () => Promise<{
|
|
76
|
+
data: null;
|
|
77
|
+
error: AuthClientError;
|
|
78
|
+
} | {
|
|
79
|
+
data: {
|
|
80
|
+
ok: true;
|
|
81
|
+
};
|
|
82
|
+
error: null;
|
|
83
|
+
}>;
|
|
84
|
+
shouldPrompt: Writable<boolean>;
|
|
85
|
+
};
|
|
86
|
+
export {};
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { type Ref } from 'vue';
|
|
2
|
+
import type { AuthClient, AuthClientError } from './createAuthClient';
|
|
3
|
+
type Mutator<Args, Data> = (args: Args) => Promise<{
|
|
4
|
+
data: Data | null;
|
|
5
|
+
error: AuthClientError | null;
|
|
6
|
+
}>;
|
|
7
|
+
type MutationState<Args, Data> = {
|
|
8
|
+
data: Ref<Data | null>;
|
|
9
|
+
error: Ref<AuthClientError | null>;
|
|
10
|
+
isPending: Ref<boolean>;
|
|
11
|
+
mutate: Mutator<Args, Data>;
|
|
12
|
+
reset: () => void;
|
|
13
|
+
};
|
|
14
|
+
export declare const useMagicLink: (client: AuthClient) => MutationState<{
|
|
15
|
+
email: string;
|
|
16
|
+
}, {
|
|
17
|
+
ok: true;
|
|
18
|
+
}>;
|
|
19
|
+
export declare const useMfaChallenge: (client: AuthClient) => MutationState<{
|
|
20
|
+
code: string;
|
|
21
|
+
}, {
|
|
22
|
+
status: "authenticated";
|
|
23
|
+
}>;
|
|
24
|
+
export declare const usePasskeyAutofill: (client: AuthClient) => {
|
|
25
|
+
cancel: () => void;
|
|
26
|
+
data: Ref<{
|
|
27
|
+
status: "authenticated";
|
|
28
|
+
} | null, {
|
|
29
|
+
status: "authenticated";
|
|
30
|
+
} | null>;
|
|
31
|
+
error: Ref<AuthClientError | null, AuthClientError | null>;
|
|
32
|
+
isPending: Ref<boolean, boolean>;
|
|
33
|
+
start: () => Promise<void>;
|
|
34
|
+
};
|
|
35
|
+
export declare const usePasswordReset: (client: AuthClient) => MutationState<{
|
|
36
|
+
email: string;
|
|
37
|
+
}, {
|
|
38
|
+
ok: true;
|
|
39
|
+
}>;
|
|
40
|
+
export declare const useSessions: (client: AuthClient) => {
|
|
41
|
+
data: Ref<unknown[] | null, unknown[] | null>;
|
|
42
|
+
error: Ref<AuthClientError | null, AuthClientError | null>;
|
|
43
|
+
isPending: Ref<boolean, boolean>;
|
|
44
|
+
refetch: () => Promise<void>;
|
|
45
|
+
revoke: (sessionId: string) => Promise<{
|
|
46
|
+
data: null;
|
|
47
|
+
error: AuthClientError;
|
|
48
|
+
} | {
|
|
49
|
+
data: {
|
|
50
|
+
ok: true;
|
|
51
|
+
};
|
|
52
|
+
error: null;
|
|
53
|
+
}>;
|
|
54
|
+
};
|
|
55
|
+
export declare const useSignIn: (client: AuthClient) => MutationState<{
|
|
56
|
+
email: string;
|
|
57
|
+
password: string;
|
|
58
|
+
}, {
|
|
59
|
+
passwordCompromised?: boolean;
|
|
60
|
+
status: "authenticated" | "mfa_required";
|
|
61
|
+
}>;
|
|
62
|
+
export declare const useSignOut: (client: AuthClient) => MutationState<unknown, null>;
|
|
63
|
+
export declare const useSignUp: (client: AuthClient) => MutationState<{
|
|
64
|
+
[extra: string]: unknown;
|
|
65
|
+
email: string;
|
|
66
|
+
password: string;
|
|
67
|
+
}, {
|
|
68
|
+
status: "authenticated";
|
|
69
|
+
} | {
|
|
70
|
+
status: "verification_required";
|
|
71
|
+
}>;
|
|
72
|
+
export declare const useUpgradeToPasskey: (client: AuthClient) => {
|
|
73
|
+
error: Ref<AuthClientError | null, AuthClientError | null>;
|
|
74
|
+
isPending: Ref<boolean, boolean>;
|
|
75
|
+
passkeys: Ref<unknown[] | null, unknown[] | null>;
|
|
76
|
+
refetch: () => Promise<void>;
|
|
77
|
+
register: () => Promise<{
|
|
78
|
+
data: null;
|
|
79
|
+
error: AuthClientError;
|
|
80
|
+
} | {
|
|
81
|
+
data: {
|
|
82
|
+
ok: true;
|
|
83
|
+
};
|
|
84
|
+
error: null;
|
|
85
|
+
}>;
|
|
86
|
+
shouldPrompt: Ref<boolean, boolean>;
|
|
87
|
+
};
|
|
88
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export type SecretCipher = {
|
|
2
|
+
decrypt: (ciphertext: string) => Promise<string>;
|
|
3
|
+
encrypt: (plaintext: string) => Promise<string>;
|
|
4
|
+
needsReencryption?: (ciphertext: string) => boolean;
|
|
5
|
+
};
|
|
6
|
+
export declare const createSecretCipher: (keyMaterial: string) => SecretCipher;
|
|
7
|
+
export declare const createVersionedSecretCipher: ({ currentVersion, keys, legacyKey }: {
|
|
8
|
+
currentVersion: number;
|
|
9
|
+
keys: Readonly<Record<number, string>>;
|
|
10
|
+
legacyKey?: string;
|
|
11
|
+
}) => SecretCipher;
|