@objectstack/platform-objects 7.1.0 → 7.2.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/dist/apps/index.js +3 -0
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +3 -0
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +144 -48
- package/dist/audit/index.d.ts +144 -48
- package/dist/identity/index.d.mts +183 -61
- package/dist/identity/index.d.ts +183 -61
- package/dist/identity/index.js +4 -1
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +4 -1
- package/dist/identity/index.mjs.map +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +137 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +137 -2
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +9 -3
- package/dist/integration/index.d.ts +9 -3
- package/dist/metadata/index.d.mts +3246 -7
- package/dist/metadata/index.d.ts +3246 -7
- package/dist/metadata/index.js +130 -0
- package/dist/metadata/index.js.map +1 -1
- package/dist/metadata/index.mjs +130 -1
- package/dist/metadata/index.mjs.map +1 -1
- package/dist/security/index.d.mts +63 -21
- package/dist/security/index.d.ts +63 -21
- package/dist/system/index.d.mts +27 -9
- package/dist/system/index.d.ts +27 -9
- package/package.json +2 -2
package/dist/identity/index.mjs
CHANGED
|
@@ -8,6 +8,9 @@ var SysUser = ObjectSchema.create({
|
|
|
8
8
|
icon: "user",
|
|
9
9
|
isSystem: true,
|
|
10
10
|
managedBy: "better-auth",
|
|
11
|
+
// ADR-0010 — identity table is managed by better-auth, schema must not drift.
|
|
12
|
+
_lock: "full",
|
|
13
|
+
_lockReason: "Identity table managed by better-auth \u2014 see ADR-0010.",
|
|
11
14
|
description: "User accounts for authentication",
|
|
12
15
|
displayNameField: "name",
|
|
13
16
|
titleFormat: "{name}",
|
|
@@ -599,7 +602,7 @@ var SysAccount = ObjectSchema.create({
|
|
|
599
602
|
mode: "create",
|
|
600
603
|
locations: ["list_toolbar"],
|
|
601
604
|
type: "url",
|
|
602
|
-
target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/apps/account/sys_account",
|
|
605
|
+
target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/_console/apps/account/sys_account",
|
|
603
606
|
params: [
|
|
604
607
|
{
|
|
605
608
|
name: "provider",
|