@effect-auth/core 0.1.0-alpha.3 → 0.1.0-alpha.4
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/README.md +148 -13
- package/dist/ApiKey.d.ts +207 -0
- package/dist/ApiKey.d.ts.map +1 -0
- package/dist/ApiKey.js +275 -0
- package/dist/ApiKey.js.map +1 -0
- package/dist/AuditLog.d.ts +204 -1
- package/dist/AuditLog.d.ts.map +1 -1
- package/dist/AuditLog.js +170 -0
- package/dist/AuditLog.js.map +1 -1
- package/dist/AuthConfig.d.ts +0 -9
- package/dist/AuthConfig.d.ts.map +1 -1
- package/dist/AuthConfig.js +1 -14
- package/dist/AuthConfig.js.map +1 -1
- package/dist/AuthFlow.d.ts +220 -51
- package/dist/AuthFlow.d.ts.map +1 -1
- package/dist/AuthFlow.js +550 -22
- package/dist/AuthFlow.js.map +1 -1
- package/dist/AuthKernel.d.ts +1 -1
- package/dist/Challenge.d.ts +5 -1
- package/dist/Challenge.d.ts.map +1 -1
- package/dist/Challenge.js +58 -48
- package/dist/Challenge.js.map +1 -1
- package/dist/Client.d.ts +242 -1
- package/dist/Client.d.ts.map +1 -1
- package/dist/Client.js +489 -1
- package/dist/Client.js.map +1 -1
- package/dist/D1Kysely.d.ts +1 -1
- package/dist/D1Kysely.d.ts.map +1 -1
- package/dist/EffectQbSqliteStorage.d.ts +115 -3
- package/dist/EffectQbSqliteStorage.d.ts.map +1 -1
- package/dist/EffectQbSqliteStorage.js +314 -4
- package/dist/EffectQbSqliteStorage.js.map +1 -1
- package/dist/EmailOtp.d.ts +5 -2
- package/dist/EmailOtp.d.ts.map +1 -1
- package/dist/EmailOtp.js +11 -4
- package/dist/EmailOtp.js.map +1 -1
- package/dist/EmailVerification.d.ts +2 -2
- package/dist/EmailVerification.d.ts.map +1 -1
- package/dist/EmailVerification.js +2 -3
- package/dist/EmailVerification.js.map +1 -1
- package/dist/HttpApi/Api.d.ts +1161 -19
- package/dist/HttpApi/Api.d.ts.map +1 -1
- package/dist/HttpApi/Api.js +1433 -20
- package/dist/HttpApi/Api.js.map +1 -1
- package/dist/HttpApi/Endpoints.d.ts +611 -0
- package/dist/HttpApi/Endpoints.d.ts.map +1 -1
- package/dist/HttpApi/Endpoints.js +242 -1
- package/dist/HttpApi/Endpoints.js.map +1 -1
- package/dist/HttpApi/Schemas.d.ts +704 -0
- package/dist/HttpApi/Schemas.d.ts.map +1 -1
- package/dist/HttpApi/Schemas.js +435 -1
- package/dist/HttpApi/Schemas.js.map +1 -1
- package/dist/HttpApi/Security.d.ts +13 -1
- package/dist/HttpApi/Security.d.ts.map +1 -1
- package/dist/HttpApi/Security.js +107 -16
- package/dist/HttpApi/Security.js.map +1 -1
- package/dist/HttpApi/Transport.d.ts +36 -2
- package/dist/HttpApi/Transport.d.ts.map +1 -1
- package/dist/HttpApi/Transport.js +151 -9
- package/dist/HttpApi/Transport.js.map +1 -1
- package/dist/Jwt.d.ts +271 -0
- package/dist/Jwt.d.ts.map +1 -0
- package/dist/Jwt.js +512 -0
- package/dist/Jwt.js.map +1 -0
- package/dist/KyselyStorage.d.ts +134 -1
- package/dist/KyselyStorage.d.ts.map +1 -1
- package/dist/KyselyStorage.js +918 -4
- package/dist/KyselyStorage.js.map +1 -1
- package/dist/LoginApproval.d.ts +314 -0
- package/dist/LoginApproval.d.ts.map +1 -0
- package/dist/LoginApproval.js +551 -0
- package/dist/LoginApproval.js.map +1 -0
- package/dist/LoginNotification.d.ts +183 -0
- package/dist/LoginNotification.d.ts.map +1 -0
- package/dist/LoginNotification.js +329 -0
- package/dist/LoginNotification.js.map +1 -0
- package/dist/LoginRisk.d.ts +73 -0
- package/dist/LoginRisk.d.ts.map +1 -0
- package/dist/LoginRisk.js +57 -0
- package/dist/LoginRisk.js.map +1 -0
- package/dist/MagicLink.d.ts +85 -0
- package/dist/MagicLink.d.ts.map +1 -0
- package/dist/MagicLink.js +206 -0
- package/dist/MagicLink.js.map +1 -0
- package/dist/Mailer.d.ts +33 -2
- package/dist/Mailer.d.ts.map +1 -1
- package/dist/Mailer.js +107 -0
- package/dist/Mailer.js.map +1 -1
- package/dist/Passkey.d.ts +334 -0
- package/dist/Passkey.d.ts.map +1 -0
- package/dist/Passkey.js +422 -0
- package/dist/Passkey.js.map +1 -0
- package/dist/Password.d.ts +138 -8
- package/dist/Password.d.ts.map +1 -1
- package/dist/Password.js +397 -8
- package/dist/Password.js.map +1 -1
- package/dist/RecoveryCode.d.ts +169 -0
- package/dist/RecoveryCode.d.ts.map +1 -0
- package/dist/RecoveryCode.js +299 -0
- package/dist/RecoveryCode.js.map +1 -0
- package/dist/RefreshToken.d.ts +222 -0
- package/dist/RefreshToken.d.ts.map +1 -0
- package/dist/RefreshToken.js +342 -0
- package/dist/RefreshToken.js.map +1 -0
- package/dist/Sessions.d.ts +52 -2
- package/dist/Sessions.d.ts.map +1 -1
- package/dist/Sessions.js +123 -1
- package/dist/Sessions.js.map +1 -1
- package/dist/StepUp.d.ts +44 -0
- package/dist/StepUp.d.ts.map +1 -0
- package/dist/StepUp.js +82 -0
- package/dist/StepUp.js.map +1 -0
- package/dist/Storage.d.ts +14 -1
- package/dist/Storage.d.ts.map +1 -1
- package/dist/Storage.js.map +1 -1
- package/dist/StorageMigrations.d.ts +9 -1
- package/dist/StorageMigrations.d.ts.map +1 -1
- package/dist/StorageMigrations.js +159 -0
- package/dist/StorageMigrations.js.map +1 -1
- package/dist/Testing.d.ts +1 -1
- package/dist/Totp.d.ts +220 -0
- package/dist/Totp.d.ts.map +1 -0
- package/dist/Totp.js +477 -0
- package/dist/Totp.js.map +1 -0
- package/dist/TrustedDevice.d.ts +115 -0
- package/dist/TrustedDevice.d.ts.map +1 -0
- package/dist/TrustedDevice.js +222 -0
- package/dist/TrustedDevice.js.map +1 -0
- package/dist/alchemy/cloudflare/Email.d.ts +25 -0
- package/dist/alchemy/cloudflare/Email.d.ts.map +1 -0
- package/dist/alchemy/cloudflare/Email.js +117 -0
- package/dist/alchemy/cloudflare/Email.js.map +1 -0
- package/dist/cloudflare/Email.d.ts +25 -0
- package/dist/cloudflare/Email.d.ts.map +1 -0
- package/dist/cloudflare/Email.js +153 -0
- package/dist/cloudflare/Email.js.map +1 -0
- package/dist/index.d.ts +12 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/migrations/0003_auth_login_approval_review.sql +22 -0
- package/migrations/0004_auth_trusted_device.sql +12 -0
- package/migrations/0005_auth_passkey.sql +17 -0
- package/migrations/0006_auth_totp_factor.sql +17 -0
- package/migrations/0007_auth_recovery_code.sql +13 -0
- package/migrations/0008_auth_api_key.sql +17 -0
- package/migrations/0009_auth_refresh_token.sql +21 -0
- package/migrations/0010_auth_jwt_revocation.sql +8 -0
- package/package.json +57 -1
package/dist/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export const packageName = "@effect-auth/core";
|
|
2
|
+
export * from "./ApiKey.js";
|
|
2
3
|
export * from "./AuditLog.js";
|
|
3
4
|
export * from "./AuthConfig.js";
|
|
4
5
|
export * from "./AuthFlow.js";
|
|
@@ -8,11 +9,22 @@ export * from "./Crypto.js";
|
|
|
8
9
|
export * from "./EmailOtp.js";
|
|
9
10
|
export * from "./EmailVerification.js";
|
|
10
11
|
export * from "./Identifiers.js";
|
|
12
|
+
export * from "./Jwt.js";
|
|
13
|
+
export * from "./LoginApproval.js";
|
|
14
|
+
export * from "./LoginNotification.js";
|
|
15
|
+
export * from "./LoginRisk.js";
|
|
11
16
|
export * from "./Mailer.js";
|
|
17
|
+
export * from "./MagicLink.js";
|
|
12
18
|
export * from "./Password.js";
|
|
19
|
+
export * from "./Passkey.js";
|
|
13
20
|
export * from "./Policy.js";
|
|
14
21
|
export * from "./Privacy.js";
|
|
22
|
+
export * from "./RecoveryCode.js";
|
|
23
|
+
export * from "./RefreshToken.js";
|
|
15
24
|
export * from "./Sessions.js";
|
|
16
25
|
export * from "./Storage.js";
|
|
26
|
+
export * from "./StepUp.js";
|
|
27
|
+
export * from "./Totp.js";
|
|
28
|
+
export * from "./TrustedDevice.js";
|
|
17
29
|
export * from "./WaitUntil.js";
|
|
18
30
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,mBAA4B,CAAC;AAExD,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,WAAW,GAAG,mBAA4B,CAAC;AAExD,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,eAAe,CAAC;AAC9B,cAAc,iBAAiB,CAAC;AAChC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,UAAU,CAAC;AACzB,cAAc,oBAAoB,CAAC;AACnC,cAAc,wBAAwB,CAAC;AACvC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,cAAc,CAAC;AAC7B,cAAc,mBAAmB,CAAC;AAClC,cAAc,mBAAmB,CAAC;AAClC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
create table if not exists auth_login_approval_review (
|
|
2
|
+
approval_challenge_id text primary key,
|
|
3
|
+
flow_id text not null,
|
|
4
|
+
user_id text not null,
|
|
5
|
+
channel text not null,
|
|
6
|
+
reason text not null,
|
|
7
|
+
session_binding text not null,
|
|
8
|
+
same_device_required integer not null,
|
|
9
|
+
status text not null,
|
|
10
|
+
created_at integer not null,
|
|
11
|
+
expires_at integer not null,
|
|
12
|
+
reviewed_at integer,
|
|
13
|
+
reviewed_by text,
|
|
14
|
+
denied_reason text,
|
|
15
|
+
risk text,
|
|
16
|
+
metadata text,
|
|
17
|
+
review_metadata text
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
create index if not exists auth_login_approval_review_flow_id_idx on auth_login_approval_review (flow_id);
|
|
21
|
+
create index if not exists auth_login_approval_review_user_id_idx on auth_login_approval_review (user_id);
|
|
22
|
+
create index if not exists auth_login_approval_review_status_expires_at_idx on auth_login_approval_review (status, expires_at);
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
create table if not exists auth_trusted_device (
|
|
2
|
+
user_id text not null,
|
|
3
|
+
token_hash text not null,
|
|
4
|
+
created_at integer not null,
|
|
5
|
+
last_seen_at integer not null,
|
|
6
|
+
expires_at integer not null,
|
|
7
|
+
metadata text,
|
|
8
|
+
primary key (user_id, token_hash)
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
create index if not exists auth_trusted_device_user_id_idx on auth_trusted_device (user_id);
|
|
12
|
+
create index if not exists auth_trusted_device_expires_at_idx on auth_trusted_device (expires_at);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
create table if not exists auth_passkey_credential (
|
|
2
|
+
id text primary key,
|
|
3
|
+
user_id text not null,
|
|
4
|
+
credential_id text not null,
|
|
5
|
+
public_key text not null,
|
|
6
|
+
sign_count integer not null,
|
|
7
|
+
transports text,
|
|
8
|
+
backed_up integer,
|
|
9
|
+
created_at integer not null,
|
|
10
|
+
last_used_at integer,
|
|
11
|
+
revoked_at integer,
|
|
12
|
+
metadata text
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
create unique index if not exists auth_passkey_credential_credential_id_idx on auth_passkey_credential (credential_id);
|
|
16
|
+
create index if not exists auth_passkey_credential_user_id_idx on auth_passkey_credential (user_id);
|
|
17
|
+
create index if not exists auth_passkey_credential_revoked_at_idx on auth_passkey_credential (revoked_at);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
create table if not exists auth_totp_factor (
|
|
2
|
+
id text primary key,
|
|
3
|
+
user_id text not null,
|
|
4
|
+
secret text not null,
|
|
5
|
+
algorithm text not null,
|
|
6
|
+
digits integer not null,
|
|
7
|
+
period integer not null,
|
|
8
|
+
created_at integer not null,
|
|
9
|
+
confirmed_at integer,
|
|
10
|
+
last_used_at integer,
|
|
11
|
+
revoked_at integer,
|
|
12
|
+
metadata text
|
|
13
|
+
);
|
|
14
|
+
|
|
15
|
+
create index if not exists auth_totp_factor_user_id_idx on auth_totp_factor (user_id);
|
|
16
|
+
create index if not exists auth_totp_factor_confirmed_at_idx on auth_totp_factor (confirmed_at);
|
|
17
|
+
create index if not exists auth_totp_factor_revoked_at_idx on auth_totp_factor (revoked_at);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
create table if not exists auth_recovery_code (
|
|
2
|
+
id text primary key,
|
|
3
|
+
user_id text not null,
|
|
4
|
+
code_hash text not null,
|
|
5
|
+
created_at integer not null,
|
|
6
|
+
used_at integer,
|
|
7
|
+
revoked_at integer,
|
|
8
|
+
metadata text
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
create index if not exists auth_recovery_code_user_id_idx on auth_recovery_code (user_id);
|
|
12
|
+
create index if not exists auth_recovery_code_used_at_idx on auth_recovery_code (used_at);
|
|
13
|
+
create index if not exists auth_recovery_code_revoked_at_idx on auth_recovery_code (revoked_at);
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
create table if not exists auth_api_key (
|
|
2
|
+
id text primary key,
|
|
3
|
+
user_id text not null,
|
|
4
|
+
prefix text not null,
|
|
5
|
+
secret_hash text not null,
|
|
6
|
+
scopes text not null,
|
|
7
|
+
created_at integer not null,
|
|
8
|
+
expires_at integer,
|
|
9
|
+
last_used_at integer,
|
|
10
|
+
revoked_at integer,
|
|
11
|
+
metadata text
|
|
12
|
+
);
|
|
13
|
+
|
|
14
|
+
create unique index if not exists auth_api_key_prefix_idx on auth_api_key (prefix);
|
|
15
|
+
create index if not exists auth_api_key_user_id_idx on auth_api_key (user_id);
|
|
16
|
+
create index if not exists auth_api_key_expires_at_idx on auth_api_key (expires_at);
|
|
17
|
+
create index if not exists auth_api_key_revoked_at_idx on auth_api_key (revoked_at);
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
create table if not exists auth_refresh_token (
|
|
2
|
+
id text primary key,
|
|
3
|
+
family_id text not null,
|
|
4
|
+
user_id text not null,
|
|
5
|
+
secret_hash text not null,
|
|
6
|
+
created_at integer not null,
|
|
7
|
+
expires_at integer not null,
|
|
8
|
+
last_used_at integer,
|
|
9
|
+
rotated_at integer,
|
|
10
|
+
replaced_by_id text,
|
|
11
|
+
revoked_at integer,
|
|
12
|
+
reuse_detected_at integer,
|
|
13
|
+
metadata text
|
|
14
|
+
);
|
|
15
|
+
|
|
16
|
+
create unique index if not exists auth_refresh_token_secret_hash_idx on auth_refresh_token (secret_hash);
|
|
17
|
+
create index if not exists auth_refresh_token_family_id_idx on auth_refresh_token (family_id);
|
|
18
|
+
create index if not exists auth_refresh_token_user_id_idx on auth_refresh_token (user_id);
|
|
19
|
+
create index if not exists auth_refresh_token_expires_at_idx on auth_refresh_token (expires_at);
|
|
20
|
+
create index if not exists auth_refresh_token_rotated_at_idx on auth_refresh_token (rotated_at);
|
|
21
|
+
create index if not exists auth_refresh_token_revoked_at_idx on auth_refresh_token (revoked_at);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-auth/core",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.4",
|
|
4
4
|
"description": "Composable Effect-first authentication primitives.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
@@ -17,6 +17,10 @@
|
|
|
17
17
|
"types": "./dist/index.d.ts",
|
|
18
18
|
"default": "./dist/index.js"
|
|
19
19
|
},
|
|
20
|
+
"./ApiKey": {
|
|
21
|
+
"types": "./dist/ApiKey.d.ts",
|
|
22
|
+
"default": "./dist/ApiKey.js"
|
|
23
|
+
},
|
|
20
24
|
"./AuditLog": {
|
|
21
25
|
"types": "./dist/AuditLog.d.ts",
|
|
22
26
|
"default": "./dist/AuditLog.js"
|
|
@@ -41,10 +45,18 @@
|
|
|
41
45
|
"types": "./dist/alchemy/cloudflare/RateLimitDurableObject.d.ts",
|
|
42
46
|
"default": "./dist/alchemy/cloudflare/RateLimitDurableObject.js"
|
|
43
47
|
},
|
|
48
|
+
"./AlchemyCloudflareEmail": {
|
|
49
|
+
"types": "./dist/alchemy/cloudflare/Email.d.ts",
|
|
50
|
+
"default": "./dist/alchemy/cloudflare/Email.js"
|
|
51
|
+
},
|
|
44
52
|
"./CloudflareRateLimitDurableObject": {
|
|
45
53
|
"types": "./dist/cloudflare/RateLimitDurableObject.d.ts",
|
|
46
54
|
"default": "./dist/cloudflare/RateLimitDurableObject.js"
|
|
47
55
|
},
|
|
56
|
+
"./CloudflareEmail": {
|
|
57
|
+
"types": "./dist/cloudflare/Email.d.ts",
|
|
58
|
+
"default": "./dist/cloudflare/Email.js"
|
|
59
|
+
},
|
|
48
60
|
"./Client": {
|
|
49
61
|
"types": "./dist/Client.d.ts",
|
|
50
62
|
"default": "./dist/Client.js"
|
|
@@ -77,6 +89,22 @@
|
|
|
77
89
|
"types": "./dist/Identifiers.d.ts",
|
|
78
90
|
"default": "./dist/Identifiers.js"
|
|
79
91
|
},
|
|
92
|
+
"./LoginApproval": {
|
|
93
|
+
"types": "./dist/LoginApproval.d.ts",
|
|
94
|
+
"default": "./dist/LoginApproval.js"
|
|
95
|
+
},
|
|
96
|
+
"./LoginNotification": {
|
|
97
|
+
"types": "./dist/LoginNotification.d.ts",
|
|
98
|
+
"default": "./dist/LoginNotification.js"
|
|
99
|
+
},
|
|
100
|
+
"./LoginRisk": {
|
|
101
|
+
"types": "./dist/LoginRisk.d.ts",
|
|
102
|
+
"default": "./dist/LoginRisk.js"
|
|
103
|
+
},
|
|
104
|
+
"./Jwt": {
|
|
105
|
+
"types": "./dist/Jwt.d.ts",
|
|
106
|
+
"default": "./dist/Jwt.js"
|
|
107
|
+
},
|
|
80
108
|
"./HttpApi": {
|
|
81
109
|
"types": "./dist/HttpApi.d.ts",
|
|
82
110
|
"default": "./dist/HttpApi.js"
|
|
@@ -85,6 +113,10 @@
|
|
|
85
113
|
"types": "./dist/Mailer.d.ts",
|
|
86
114
|
"default": "./dist/Mailer.js"
|
|
87
115
|
},
|
|
116
|
+
"./MagicLink": {
|
|
117
|
+
"types": "./dist/MagicLink.d.ts",
|
|
118
|
+
"default": "./dist/MagicLink.js"
|
|
119
|
+
},
|
|
88
120
|
"./Policy": {
|
|
89
121
|
"types": "./dist/Policy.d.ts",
|
|
90
122
|
"default": "./dist/Policy.js"
|
|
@@ -97,6 +129,14 @@
|
|
|
97
129
|
"types": "./dist/RateLimiter.d.ts",
|
|
98
130
|
"default": "./dist/RateLimiter.js"
|
|
99
131
|
},
|
|
132
|
+
"./RecoveryCode": {
|
|
133
|
+
"types": "./dist/RecoveryCode.d.ts",
|
|
134
|
+
"default": "./dist/RecoveryCode.js"
|
|
135
|
+
},
|
|
136
|
+
"./RefreshToken": {
|
|
137
|
+
"types": "./dist/RefreshToken.d.ts",
|
|
138
|
+
"default": "./dist/RefreshToken.js"
|
|
139
|
+
},
|
|
100
140
|
"./KyselyStorage": {
|
|
101
141
|
"types": "./dist/KyselyStorage.d.ts",
|
|
102
142
|
"default": "./dist/KyselyStorage.js"
|
|
@@ -105,6 +145,10 @@
|
|
|
105
145
|
"types": "./dist/Password.d.ts",
|
|
106
146
|
"default": "./dist/Password.js"
|
|
107
147
|
},
|
|
148
|
+
"./Passkey": {
|
|
149
|
+
"types": "./dist/Passkey.d.ts",
|
|
150
|
+
"default": "./dist/Passkey.js"
|
|
151
|
+
},
|
|
108
152
|
"./Sessions": {
|
|
109
153
|
"types": "./dist/Sessions.d.ts",
|
|
110
154
|
"default": "./dist/Sessions.js"
|
|
@@ -113,6 +157,10 @@
|
|
|
113
157
|
"types": "./dist/Storage.d.ts",
|
|
114
158
|
"default": "./dist/Storage.js"
|
|
115
159
|
},
|
|
160
|
+
"./StepUp": {
|
|
161
|
+
"types": "./dist/StepUp.d.ts",
|
|
162
|
+
"default": "./dist/StepUp.js"
|
|
163
|
+
},
|
|
116
164
|
"./StorageMigrations": {
|
|
117
165
|
"types": "./dist/StorageMigrations.d.ts",
|
|
118
166
|
"default": "./dist/StorageMigrations.js"
|
|
@@ -121,6 +169,14 @@
|
|
|
121
169
|
"types": "./dist/Testing.d.ts",
|
|
122
170
|
"default": "./dist/Testing.js"
|
|
123
171
|
},
|
|
172
|
+
"./Totp": {
|
|
173
|
+
"types": "./dist/Totp.d.ts",
|
|
174
|
+
"default": "./dist/Totp.js"
|
|
175
|
+
},
|
|
176
|
+
"./TrustedDevice": {
|
|
177
|
+
"types": "./dist/TrustedDevice.d.ts",
|
|
178
|
+
"default": "./dist/TrustedDevice.js"
|
|
179
|
+
},
|
|
124
180
|
"./package.json": {
|
|
125
181
|
"default": "./package.json"
|
|
126
182
|
}
|