@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.
@@ -10,6 +10,9 @@ var SysUser = data.ObjectSchema.create({
10
10
  icon: "user",
11
11
  isSystem: true,
12
12
  managedBy: "better-auth",
13
+ // ADR-0010 — identity table is managed by better-auth, schema must not drift.
14
+ _lock: "full",
15
+ _lockReason: "Identity table managed by better-auth \u2014 see ADR-0010.",
13
16
  description: "User accounts for authentication",
14
17
  displayNameField: "name",
15
18
  titleFormat: "{name}",
@@ -601,7 +604,7 @@ var SysAccount = data.ObjectSchema.create({
601
604
  mode: "create",
602
605
  locations: ["list_toolbar"],
603
606
  type: "url",
604
- target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/apps/account/sys_account",
607
+ target: "/api/v1/auth/sign-in/social?provider=${param.provider}&callbackURL=${ctx.origin}/_console/apps/account/sys_account",
605
608
  params: [
606
609
  {
607
610
  name: "provider",