@lightcone-ai/daemon 0.15.61 → 0.15.62

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": "@lightcone-ai/daemon",
3
- "version": "0.15.61",
3
+ "version": "0.15.62",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -6,6 +6,7 @@ import {
6
6
  mkdirSync,
7
7
  readFileSync,
8
8
  readdirSync,
9
+ rmSync,
9
10
  statSync,
10
11
  unlinkSync,
11
12
  writeFileSync,
@@ -1529,7 +1529,7 @@ server.tool('request_approval',
1529
1529
  platform: z.string().describe('Target platform, e.g. "x", "xhs", "email"'),
1530
1530
  description: z.string().describe('Human-readable summary of what will happen if approved'),
1531
1531
  payload: z.record(z.any()).describe('Full action parameters (content, media_urls, etc.)'),
1532
- credential_id: z.string().optional().describe('Which credential ID to use for execution'),
1532
+ credential_id: z.string().optional().describe('Which account/credential to use. For publishing, prefer a workspace account_id or real credential UUID. Role aliases like primary/test are accepted only if they uniquely match a workspace account.'),
1533
1533
  },
1534
1534
  async ({ action_type, platform, description, payload, credential_id }) => {
1535
1535
  try {