@helyx/bot 0.2.0 → 0.2.1

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 CHANGED
@@ -1,5 +1,22 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Add explicit Planned, Testing, Beta and Live module lifecycle metadata.
8
+
9
+ Propagate lifecycle status through the hosted control contract and permit only
10
+ Live modules in hosted distributions and generated self-host projects.
11
+
12
+ - Updated dependencies
13
+ - @helyx/module-manifest@0.3.0
14
+ - @helyx/control-protocol@0.1.1
15
+ - @helyx/core@0.1.4
16
+ - @helyx/sdk@0.2.4
17
+ - @helyx/framework@0.1.4
18
+ - @helyx/platform@0.1.4
19
+
3
20
  ## 0.2.0
4
21
 
5
22
  ### Minor Changes
@@ -33,6 +33,7 @@ export function createCloudManagementModule(input) {
33
33
  return defineModule({
34
34
  manifest: {
35
35
  manifestVersion: "0.1",
36
+ releaseStatus: "live",
36
37
  id: "helyx.cloud-connect",
37
38
  name: "Helyx Cloud Connect",
38
39
  version: "0.1.0",
@@ -34,6 +34,7 @@ interface DashboardModuleDefinition {
34
34
  category: string;
35
35
  icon: string;
36
36
  availability: "available";
37
+ releaseStatus: "planned" | "testing" | "beta" | "live";
37
38
  requiredPermissions: string[];
38
39
  settings: readonly unknown[];
39
40
  commands: DashboardCommandDefinition[];
@@ -575,6 +575,7 @@ function mapDashboardModule(module) {
575
575
  category: dashboard.category[0].toUpperCase() + dashboard.category.slice(1),
576
576
  icon: dashboard.icon,
577
577
  availability: "available",
578
+ releaseStatus: module.manifest.releaseStatus,
578
579
  requiredPermissions: [...module.manifest.permissions],
579
580
  settings: dashboard.settings,
580
581
  commands: dashboardCommands(module),
@@ -28,6 +28,7 @@ export function createManagementModule(configurableModules, resources) {
28
28
  return defineModule({
29
29
  manifest: {
30
30
  manifestVersion: "0.1",
31
+ releaseStatus: "live",
31
32
  id: "helyx.management",
32
33
  name: "Helyx management",
33
34
  version: "0.1.0",
@@ -23,6 +23,7 @@ export function createPermissionsModule(configurableModules) {
23
23
  return defineModule({
24
24
  manifest: {
25
25
  manifestVersion: "0.1",
26
+ releaseStatus: "live",
26
27
  id: "helyx.permissions",
27
28
  name: "Permissions",
28
29
  version: "0.1.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@helyx/bot",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Production Discord runtime for the modular Helyx platform.",
5
5
  "keywords": [
6
6
  "helyx",
@@ -48,14 +48,14 @@
48
48
  "start": "node --env-file-if-exists=../../.env dist/index.js"
49
49
  },
50
50
  "dependencies": {
51
- "@helyx/config": "0.2.0",
52
- "@helyx/control-protocol": "0.1.0",
53
- "@helyx/core": "0.1.3",
51
+ "@helyx/config": "0.2.1",
52
+ "@helyx/control-protocol": "0.1.1",
53
+ "@helyx/core": "0.1.4",
54
54
  "@helyx/database": "0.2.0",
55
- "@helyx/framework": "0.1.3",
56
- "@helyx/module-manifest": "0.2.0",
57
- "@helyx/platform": "0.1.3",
58
- "@helyx/sdk": "0.2.3",
55
+ "@helyx/framework": "0.1.4",
56
+ "@helyx/module-manifest": "0.3.0",
57
+ "@helyx/platform": "0.1.4",
58
+ "@helyx/sdk": "0.2.4",
59
59
  "discord.js": "14.27.0",
60
60
  "fastify": "5.10.0",
61
61
  "pino": "10.3.1",