autokap 1.8.0 → 1.8.1

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/cli.js +6 -0
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -417,6 +417,12 @@ program
417
417
  headed: opts.headed,
418
418
  allowUploadFailure: opts.allowUploadFailure,
419
419
  regenerateTts: opts.regenerateTts,
420
+ // Each preset runs under its own ephemeral runId, which is NOT a
421
+ // capture_runs row in a cloud batch (the parent cloud run owns the row),
422
+ // so the per-preset error-log export would 404. Failure telemetry for
423
+ // cloud recaptures is persisted server-side from the `preset_end:failed`
424
+ // checkpoint instead — disable the doomed local export here.
425
+ exportDebugLogs: false,
420
426
  onProgress: (event) => {
421
427
  const checkpoint = cloudCaptureProgressCheckpoint(event);
422
428
  if (!checkpoint)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autokap",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "description": "AI-powered CLI tool for capturing clean screenshots of websites",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",