@wahooks/channel 2.1.1 → 2.1.2

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/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -533,7 +533,8 @@ mcp.setRequestHandler(CallToolRequestSchema, async (req) => {
533
533
  }
534
534
  case "wahooks_schedule_reminder": {
535
535
  const id = `rem_${Date.now().toString(36)}`;
536
- const oneTime = args.one_time === "true";
536
+ const rawOneTime = args.one_time;
537
+ const oneTime = rawOneTime === true || rawOneTime === "true";
537
538
  // Calculate next run
538
539
  let nextRunAt;
539
540
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wahooks/channel",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "WhatsApp channel for Claude Code — chat with Claude via WhatsApp",
5
5
  "type": "module",
6
6
  "bin": {