@objectstack/platform-objects 13.0.0 → 14.5.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 +1 -1
- package/dist/apps/index.d.ts +1 -1
- package/dist/apps/index.js +525 -1200
- package/dist/apps/index.js.map +1 -1
- package/dist/apps/index.mjs +525 -1200
- package/dist/apps/index.mjs.map +1 -1
- package/dist/audit/index.d.mts +262 -10
- package/dist/audit/index.d.ts +262 -10
- package/dist/audit/index.js +14 -0
- package/dist/audit/index.js.map +1 -1
- package/dist/audit/index.mjs +14 -0
- package/dist/audit/index.mjs.map +1 -1
- package/dist/identity/index.d.mts +1403 -236
- package/dist/identity/index.d.ts +1403 -236
- package/dist/identity/index.js +177 -17
- package/dist/identity/index.js.map +1 -1
- package/dist/identity/index.mjs +177 -17
- 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 +1878 -1736
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1878 -1737
- package/dist/index.mjs.map +1 -1
- package/dist/metadata-translations/index.js +1020 -488
- package/dist/metadata-translations/index.js.map +1 -1
- package/dist/metadata-translations/index.mjs +1020 -488
- package/dist/metadata-translations/index.mjs.map +1 -1
- package/dist/pages/index.d.mts +34 -3
- package/dist/pages/index.d.ts +34 -3
- package/dist/pages/index.js +111 -0
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs +111 -1
- package/dist/pages/index.mjs.map +1 -1
- package/dist/plugin.js +1564 -1707
- package/dist/plugin.js.map +1 -1
- package/dist/plugin.mjs +1564 -1707
- package/dist/plugin.mjs.map +1 -1
- package/dist/system/index.d.mts +75 -3
- package/dist/system/index.d.ts +75 -3
- package/package.json +3 -3
package/dist/apps/index.d.mts
CHANGED
|
@@ -42,7 +42,7 @@ declare const SETUP_APP: App;
|
|
|
42
42
|
* that owns the underlying objects rather than living here (ADR-0029 K2):
|
|
43
43
|
* - `group_integrations` → `@objectstack/plugin-webhooks` (K2.a)
|
|
44
44
|
* - `group_approvals` → `@objectstack/plugin-approvals` (K2.b)
|
|
45
|
-
* - `group_access_control`
|
|
45
|
+
* - `group_access_control` Positions / Permission Sets → `@objectstack/plugin-security`
|
|
46
46
|
* - `group_access_control` Sharing Rules / Record Shares → `@objectstack/plugin-sharing`
|
|
47
47
|
* As each remaining domain moves to its capability plugin, its entries move out
|
|
48
48
|
* of this file into that plugin the same way.
|
package/dist/apps/index.d.ts
CHANGED
|
@@ -42,7 +42,7 @@ declare const SETUP_APP: App;
|
|
|
42
42
|
* that owns the underlying objects rather than living here (ADR-0029 K2):
|
|
43
43
|
* - `group_integrations` → `@objectstack/plugin-webhooks` (K2.a)
|
|
44
44
|
* - `group_approvals` → `@objectstack/plugin-approvals` (K2.b)
|
|
45
|
-
* - `group_access_control`
|
|
45
|
+
* - `group_access_control` Positions / Permission Sets → `@objectstack/plugin-security`
|
|
46
46
|
* - `group_access_control` Sharing Rules / Record Shares → `@objectstack/plugin-sharing`
|
|
47
47
|
* As each remaining domain moves to its capability plugin, its entries move out
|
|
48
48
|
* of this file into that plugin the same way.
|