@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
|
package/dist/control-server.d.ts
CHANGED
|
@@ -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[];
|
package/dist/control-server.js
CHANGED
|
@@ -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),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@helyx/bot",
|
|
3
|
-
"version": "0.2.
|
|
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.
|
|
52
|
-
"@helyx/control-protocol": "0.1.
|
|
53
|
-
"@helyx/core": "0.1.
|
|
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.
|
|
56
|
-
"@helyx/module-manifest": "0.
|
|
57
|
-
"@helyx/platform": "0.1.
|
|
58
|
-
"@helyx/sdk": "0.2.
|
|
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",
|