@bbearai/core 0.9.0 → 0.9.2
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.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1465,7 +1465,7 @@ declare class BugBearClient {
|
|
|
1465
1465
|
/**
|
|
1466
1466
|
* Get device info (override in platform-specific implementations)
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
getDeviceInfo(): DeviceInfo;
|
|
1469
1469
|
/**
|
|
1470
1470
|
* Create a fix request for Claude Code to pick up
|
|
1471
1471
|
* Called from the dashboard when user clicks "Send to Claude Code"
|
package/dist/index.d.ts
CHANGED
|
@@ -1465,7 +1465,7 @@ declare class BugBearClient {
|
|
|
1465
1465
|
/**
|
|
1466
1466
|
* Get device info (override in platform-specific implementations)
|
|
1467
1467
|
*/
|
|
1468
|
-
|
|
1468
|
+
getDeviceInfo(): DeviceInfo;
|
|
1469
1469
|
/**
|
|
1470
1470
|
* Create a fix request for Claude Code to pick up
|
|
1471
1471
|
* Called from the dashboard when user clicks "Send to Claude Code"
|
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: [],
|