@7365admin1/layer-common 4.2.8-staging.276 → 4.2.8
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/CHANGELOG.md +10 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @iservice365/layer-common
|
|
2
2
|
|
|
3
|
+
## 4.2.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 04fefda: Remove five `:message-fn` bindings that no component declares. `WorkOrderCreate` and `FeedbackForm` have no `messageFn` prop and never read `$attrs`/`useAttrs`, so the bound function fell through to fallthrough attributes and was stringified onto the root DOM element instead of ever being called.
|
|
8
|
+
|
|
3
9
|
## 4.2.7
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -521,11 +527,11 @@
|
|
|
521
527
|
`utils/console-tier.ts` + `composables/useConsoleTier.ts` mirror the server's
|
|
522
528
|
own rule from two endpoints the console already calls, unprojected:
|
|
523
529
|
|
|
524
|
-
|
|
525
|
-
|
|
530
|
+
GET /api/members/user/:user/app/admin the Seven365 staff membership
|
|
531
|
+
GET /api/roles/id/:role that membership's role document
|
|
526
532
|
|
|
527
|
-
|
|
528
|
-
|
|
533
|
+
owner = member.type === "admin" && role.type === "admin" && role.default === true
|
|
534
|
+
staff = member.type === "admin" && role.type === "admin"
|
|
529
535
|
|
|
530
536
|
`role.default` is the marker because it is the only property of a platform
|
|
531
537
|
staff role no API caller can set - `role.controller.ts` validates create and
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@7365admin1/layer-common",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "4.2.8
|
|
5
|
+
"version": "4.2.8",
|
|
6
6
|
"author": "7365admin1",
|
|
7
7
|
"main": "./nuxt.config.ts",
|
|
8
8
|
"//files": "What a consumer extending this layer actually loads. Without this npm ships the whole working tree - the changesets, the CI workflows, the render harness in tools/ and any scratch directory that happened to exist at publish time. Nuxt resolves a layer by directory, so every runtime directory below has to stay listed; adding a new top-level runtime directory means adding it here too.",
|