@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.mjs
CHANGED
|
@@ -629,6 +629,12 @@ var SysOrganization = ObjectSchema.create({
|
|
|
629
629
|
target: "/api/v1/auth/organization/create",
|
|
630
630
|
successMessage: "Organization created",
|
|
631
631
|
refreshAfter: true,
|
|
632
|
+
// Hidden when the deployment is provisioned in single-org mode
|
|
633
|
+
// (`OS_MULTI_ORG_ENABLED=false`). `features.multiOrgEnabled` is
|
|
634
|
+
// populated by the console/account shells from `/auth/config`;
|
|
635
|
+
// we default to visible when the flag is undefined so we don't
|
|
636
|
+
// accidentally hide the button while auth config is still loading.
|
|
637
|
+
visible: "features.multiOrgEnabled != false",
|
|
632
638
|
params: [
|
|
633
639
|
{ field: "name", required: true },
|
|
634
640
|
{ field: "slug", required: true },
|