ccqa 1.46.0 → 1.46.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.
package/dist/bin/ccqa.mjs CHANGED
@@ -21372,6 +21372,7 @@ function comparePerspectivesSkeleton(local, remote) {
21372
21372
  }
21373
21373
  const fields = [];
21374
21374
  if (remoteSpec.title !== spec.title) fields.push("title");
21375
+ if ((remoteSpec.disabled ?? false) !== (spec.disabled ?? false)) fields.push("disabled");
21375
21376
  if (remoteSpec.status.mode !== spec.status.mode || remoteSpec.status.traced !== spec.status.traced || remoteSpec.status.generated !== spec.status.generated || remoteSpec.status.target !== spec.status.target) fields.push(`status (local: ${formatStatus(spec.status)}, hub: ${formatStatus(remoteSpec.status)})`);
21376
21377
  if (fields.length > 0) issues.push(`${key}: out of date — ${fields.join(", ")}`);
21377
21378
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccqa",
3
- "version": "1.46.0",
3
+ "version": "1.46.1",
4
4
  "type": "module",
5
5
  "description": "Browser test recorder powered by Claude Code and agent-browser",
6
6
  "repository": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccqa",
3
- "version": "1.46.0",
3
+ "version": "1.46.1",
4
4
  "type": "module",
5
5
  "description": "Browser test recorder powered by Claude Code and agent-browser",
6
6
  "repository": {