cliclaw 1.0.33 → 1.0.34

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cliclaw",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Telegram bot bridging AI CLIs (Claude Code, Codex) to Forum Topics",
5
5
  "main": "index.ts",
6
6
  "scripts": {
@@ -134,7 +134,7 @@ function handleProtoEvent(ps: ProtoSession, obj: any) {
134
134
  try {
135
135
  ps.proc.stdin!.write(JSON.stringify({
136
136
  id: randomUUID(),
137
- op: { type: 'exec_approval', id: callId, decision: approved ? 'approve' : 'deny' },
137
+ op: { type: 'exec_approval', id: callId, decision: approved ? 'approved' : 'denied' },
138
138
  }) + '\n')
139
139
  console.log(`[Codex approval] enviado ok`)
140
140
  } catch (e: any) {