@commonpub/layer 0.44.0 → 0.45.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/composables/useFeatures.ts +2 -2
- package/nuxt.config.ts +1 -1
- package/package.json +6 -6
|
@@ -42,7 +42,7 @@ export interface FeatureFlags {
|
|
|
42
42
|
rbac: boolean;
|
|
43
43
|
/** Act as an instance registry/directory (Phase 4). Default OFF. */
|
|
44
44
|
actAsRegistry: boolean;
|
|
45
|
-
/** Announce this instance to a registry (Phase 4). Default
|
|
45
|
+
/** Announce this instance to a registry (Phase 4). Default ON (discoverable). */
|
|
46
46
|
announceToRegistry: boolean;
|
|
47
47
|
/**
|
|
48
48
|
* Cross-instance delegated authorization. All sub-flags default false.
|
|
@@ -67,7 +67,7 @@ export const DEFAULT_FLAGS: FeatureFlags = {
|
|
|
67
67
|
layoutEngine: false,
|
|
68
68
|
rbac: false,
|
|
69
69
|
actAsRegistry: false,
|
|
70
|
-
announceToRegistry:
|
|
70
|
+
announceToRegistry: true,
|
|
71
71
|
identity: {
|
|
72
72
|
linkRemoteAccounts: false,
|
|
73
73
|
signInWithRemote: false,
|
package/nuxt.config.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commonpub/layer",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.45.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./nuxt.config.ts",
|
|
6
6
|
"files": [
|
|
@@ -54,15 +54,15 @@
|
|
|
54
54
|
"vue-router": "^4.3.0",
|
|
55
55
|
"zod": "^4.3.6",
|
|
56
56
|
"@commonpub/auth": "0.8.0",
|
|
57
|
-
"@commonpub/config": "0.
|
|
57
|
+
"@commonpub/config": "0.18.0",
|
|
58
58
|
"@commonpub/docs": "0.6.3",
|
|
59
|
-
"@commonpub/schema": "0.26.0",
|
|
60
|
-
"@commonpub/learning": "0.5.2",
|
|
61
|
-
"@commonpub/editor": "0.7.11",
|
|
62
59
|
"@commonpub/explainer": "0.7.15",
|
|
60
|
+
"@commonpub/editor": "0.7.11",
|
|
61
|
+
"@commonpub/protocol": "0.13.0",
|
|
63
62
|
"@commonpub/server": "2.73.0",
|
|
64
63
|
"@commonpub/ui": "0.9.2",
|
|
65
|
-
"@commonpub/
|
|
64
|
+
"@commonpub/learning": "0.5.2",
|
|
65
|
+
"@commonpub/schema": "0.26.0"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
68
|
"@testing-library/jest-dom": "^6.9.1",
|