@shgroup/dsh-serenity-hooks 1.30.8 → 1.30.9

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/dsh.plugin.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "id": "dsh-serenity-hooks",
3
- "version": "1.30.8",
3
+ "version": "1.30.9",
4
4
  "main": "lib/index.js",
5
5
  "description": "宁静号 ACC harness(Native Cordis 插件):真实 DSH 工具 container_fs/logbook/dashboard/container_git/msm/praxis/handyman/localstore/container_admin/autopilot-trajectory + 拦截缝机械约束(safe-mode/路径守卫)+ 高级设定面板(双端口网关/账号管理)+ Skiff 认知子集角色(实验性)。适配 DSH 公开版(0.1.0-rc,deepseek-ai/deepseek-harness)。",
6
6
  "engines": {
@@ -71,6 +71,16 @@ export interface AdvancedSettings {
71
71
  gateway: GatewaySettings;
72
72
  persona: PersonaSettings;
73
73
  publicAsk: PublicAskSettings;
74
+ /** 主动发送入口(v1.30.9):**只绑 127.0.0.1** 的独立监听器——CCC 的 MSM 用它发消息给指定用户 */
75
+ weixinApi: WeixinApiSettings;
76
+ }
77
+ /**
78
+ * 主动发送入口配置(v1.30.9,S142 用户需求"微信桥支持被调用发消息")。
79
+ * 只监听 loopback(公网网关 3081 不可达),故不做密钥;`enabled:false` 或 `port:0` 关闭。
80
+ */
81
+ export interface WeixinApiSettings {
82
+ enabled: boolean;
83
+ port: number;
74
84
  }
75
85
  /** 默认值(工厂——每次返回新对象,防止调用方意外共享引用) */
76
86
  export declare function defaultAdvancedSettings(): AdvancedSettings;