@bbearai/core 0.9.0 → 0.9.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/index.js CHANGED
@@ -1520,7 +1520,7 @@ var BugBearClient = class {
1520
1520
  } : {
1521
1521
  // Standalone verification assignment (bug reported without a test case)
1522
1522
  id: item.original_report_id || item.id,
1523
- title: item.notes || "Bug Verification",
1523
+ title: item.notes?.replace(/^Verification:\s*/i, "") || "Bug Verification",
1524
1524
  testKey: "VERIFY",
1525
1525
  description: "Verify that the reported bug has been fixed",
1526
1526
  steps: [],
package/dist/index.mjs CHANGED
@@ -1474,7 +1474,7 @@ var BugBearClient = class {
1474
1474
  } : {
1475
1475
  // Standalone verification assignment (bug reported without a test case)
1476
1476
  id: item.original_report_id || item.id,
1477
- title: item.notes || "Bug Verification",
1477
+ title: item.notes?.replace(/^Verification:\s*/i, "") || "Bug Verification",
1478
1478
  testKey: "VERIFY",
1479
1479
  description: "Verify that the reported bug has been fixed",
1480
1480
  steps: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbearai/core",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Core utilities and types for BugBear QA platform",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",