@objectstack/platform-objects 6.7.0 → 6.8.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.d.mts +28 -1
- package/dist/apps/index.d.ts +28 -1
- package/dist/apps/index.js +271 -6
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +271 -7
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +96 -32
- package/dist/audit/index.d.ts +96 -32
- package/dist/identity/index.d.mts +121 -40
- package/dist/identity/index.d.ts +121 -40
- package/dist/identity/index.js +6 -0
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +6 -0
- 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 +316 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +316 -8
- package/dist/index.mjs.map +1 -1
- package/dist/integration/index.d.mts +6 -2
- package/dist/integration/index.d.ts +6 -2
- package/dist/metadata/index.d.mts +75 -4
- package/dist/metadata/index.d.ts +75 -4
- package/dist/metadata/index.js +38 -0
- package/dist/metadata/index.js.map +1 -1
- package/dist/metadata/index.mjs +38 -0
- package/dist/metadata/index.mjs.map +1 -1
- package/dist/security/index.d.mts +36 -12
- package/dist/security/index.d.ts +36 -12
- package/dist/security/index.js +1 -1
- package/dist/security/index.js.map +1 -1
- package/dist/security/index.mjs +1 -1
- package/dist/security/index.mjs.map +1 -1
- package/dist/system/index.d.mts +18 -6
- package/dist/system/index.d.ts +18 -6
- package/package.json +2 -2
package/dist/identity/index.js
CHANGED
|
@@ -631,6 +631,12 @@ var SysOrganization = data.ObjectSchema.create({
|
|
|
631
631
|
target: "/api/v1/auth/organization/create",
|
|
632
632
|
successMessage: "Organization created",
|
|
633
633
|
refreshAfter: true,
|
|
634
|
+
// Hidden when the deployment is provisioned in single-org mode
|
|
635
|
+
// (`OS_MULTI_ORG_ENABLED=false`). `features.multiOrgEnabled` is
|
|
636
|
+
// populated by the console/account shells from `/auth/config`;
|
|
637
|
+
// we default to visible when the flag is undefined so we don't
|
|
638
|
+
// accidentally hide the button while auth config is still loading.
|
|
639
|
+
visible: "features.multiOrgEnabled != false",
|
|
634
640
|
params: [
|
|
635
641
|
{ field: "name", required: true },
|
|
636
642
|
{ field: "slug", required: true },
|