@logto/schemas 1.30.0 → 1.31.0
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/alterations/1.31.0-1753689065-add-forgot-password-methods-to-sie-table.ts +20 -0
- package/alterations-js/1.31.0-1753689065-add-forgot-password-methods-to-sie-table.js +16 -0
- package/lib/consts/subscriptions.d.ts +8 -2
- package/lib/consts/subscriptions.js +7 -1
- package/lib/db-entries/sign-in-experience.d.ts +4 -2
- package/lib/db-entries/sign-in-experience.js +5 -1
- package/lib/foundations/jsonb-types/custom-profile-fields.d.ts +73 -50
- package/lib/foundations/jsonb-types/custom-profile-fields.js +3 -2
- package/lib/foundations/jsonb-types/sign-in-experience.d.ts +6 -0
- package/lib/foundations/jsonb-types/sign-in-experience.js +6 -0
- package/lib/foundations/jsonb-types/users.d.ts +0 -94
- package/lib/foundations/jsonb-types/users.js +0 -11
- package/lib/types/consent.d.ts +0 -40
- package/lib/types/custom-profile-fields.d.ts +389 -376
- package/lib/types/custom-profile-fields.js +42 -23
- package/lib/types/interactions.d.ts +0 -120
- package/lib/types/interactions.js +0 -31
- package/lib/types/logto-config/jwt-customizer.d.ts +0 -20
- package/lib/types/sign-in-experience.d.ts +7 -6
- package/lib/types/sign-in-experience.js +4 -3
- package/lib/types/user.d.ts +0 -60
- package/lib/types/verification-records/code-verification.d.ts +73 -1
- package/lib/types/verification-records/code-verification.js +14 -0
- package/lib/types/verification-records/verification-type.d.ts +2 -0
- package/lib/types/verification-records/verification-type.js +2 -0
- package/package.json +6 -6
- package/tables/sign_in_experiences.sql +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@logto/schemas",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.31.0",
|
|
4
4
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
|
5
5
|
"license": "MPL-2.0",
|
|
6
6
|
"type": "module",
|
|
@@ -65,12 +65,12 @@
|
|
|
65
65
|
"dependencies": {
|
|
66
66
|
"@withtyped/server": "^0.14.0",
|
|
67
67
|
"nanoid": "^5.0.9",
|
|
68
|
-
"@logto/connector-kit": "^4.
|
|
69
|
-
"@logto/core-kit": "^2.6.
|
|
68
|
+
"@logto/connector-kit": "^4.5.0",
|
|
69
|
+
"@logto/core-kit": "^2.6.1",
|
|
70
70
|
"@logto/language-kit": "^1.2.0",
|
|
71
|
-
"@logto/
|
|
72
|
-
"@logto/phrases": "^1.
|
|
73
|
-
"@logto/
|
|
71
|
+
"@logto/phrases": "^1.20.0",
|
|
72
|
+
"@logto/phrases-experience": "^1.11.0",
|
|
73
|
+
"@logto/shared": "^3.3.0"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"zod": "3.24.3"
|
|
@@ -29,5 +29,6 @@ create table sign_in_experiences (
|
|
|
29
29
|
captcha_policy jsonb /* @use CaptchaPolicy */ not null default '{}'::jsonb,
|
|
30
30
|
sentinel_policy jsonb /* @use SentinelPolicy */ not null default '{}'::jsonb,
|
|
31
31
|
email_blocklist_policy jsonb /* @use EmailBlocklistPolicy */ not null default '{}'::jsonb,
|
|
32
|
+
forgot_password_methods jsonb /* @use ForgotPasswordMethods */,
|
|
32
33
|
primary key (tenant_id, id)
|
|
33
34
|
);
|