ofiere-openclaw-plugin 4.22.0 → 4.23.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/tools.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ofiere-openclaw-plugin",
3
- "version": "4.22.0",
3
+ "version": "4.23.0",
4
4
  "type": "module",
5
5
  "description": "OpenClaw plugin for Ofiere PM - 13 meta-tools covering tasks, agents, projects, scheduling, knowledge, workflows, notifications, memory, prompts, constellation, space file management, execution plan builder, and SOP management",
6
6
  "keywords": ["openclaw", "ofiere", "project-management", "agents", "plugin"],
package/src/tools.ts CHANGED
@@ -2428,7 +2428,7 @@ async function dispatchReportDirect(
2428
2428
  channelTypes: string[],
2429
2429
  ): Promise<{ sent: string[]; failed: string[] }> {
2430
2430
  // Query agent's active channel bindings
2431
- let query = supabase.from("channel_bindings").select("channel_type, channel_account_id, agent_id, channel_config")
2431
+ let query = supabase.from("channel_bindings").select("channel_type, channel_account_id, agent_id, channel_config, thread_id")
2432
2432
  .eq("user_id", userId)
2433
2433
  .eq("agent_id", agentId)
2434
2434
  .eq("notifications_enabled", true)
@@ -2474,6 +2474,7 @@ async function dispatchReportDirect(
2474
2474
  channelType: b.channel_type,
2475
2475
  accountId: effectiveAccountId,
2476
2476
  message: msg,
2477
+ ...(b.thread_id ? { threadId: b.thread_id } : {}),
2477
2478
  }),
2478
2479
  });
2479
2480
  if (res.ok) sent.push(b.channel_type);