@bbearai/core 0.9.1 → 0.9.3

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 CHANGED
@@ -1465,7 +1465,7 @@ declare class BugBearClient {
1465
1465
  /**
1466
1466
  * Get device info (override in platform-specific implementations)
1467
1467
  */
1468
- private getDeviceInfo;
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
- private getDeviceInfo;
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
@@ -1428,6 +1428,7 @@ var BugBearClient = class {
1428
1428
  skip_reason,
1429
1429
  is_verification,
1430
1430
  original_report_id,
1431
+ notes,
1431
1432
  test_case:test_cases(
1432
1433
  id,
1433
1434
  title,
package/dist/index.mjs CHANGED
@@ -1382,6 +1382,7 @@ var BugBearClient = class {
1382
1382
  skip_reason,
1383
1383
  is_verification,
1384
1384
  original_report_id,
1385
+ notes,
1385
1386
  test_case:test_cases(
1386
1387
  id,
1387
1388
  title,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bbearai/core",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "Core utilities and types for BugBear QA platform",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",