@lightcone-ai/daemon 0.15.15 → 0.15.16

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.
@@ -97,9 +97,10 @@ export class KuaishouAdapter {
97
97
  if (!loggedIn) throw new Error('LOGIN_EXPIRED: 快手登录已过期,请重新扫码连接');
98
98
 
99
99
  await this._uploadFiles([video], 'video');
100
- // Wait for upload to complete: title field appears only after upload finishes
101
- await this._waitForSelector('[placeholder*="标题"]', 120000);
100
+ // Wait for publish form: Kuaishou video page shows description area (not a separate title field)
101
+ await this._waitForSelector('[placeholder*="描述"], [contenteditable="true"]', 120000);
102
102
 
103
+ // Kuaishou video publish has no dedicated title input; skip if field not found
103
104
  if (title) {
104
105
  await this._fillField('[placeholder*="标题"]', title);
105
106
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightcone-ai/daemon",
3
- "version": "0.15.15",
3
+ "version": "0.15.16",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {