@bbearai/react-native 0.5.2 → 0.5.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
@@ -1,6 +1,6 @@
1
1
  import React, { ReactNode, Component, ErrorInfo } from 'react';
2
2
  import * as _bbearai_core from '@bbearai/core';
3
- import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, AppContext, captureError } from '@bbearai/core';
3
+ import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, IssueCounts, AppContext, captureError } from '@bbearai/core';
4
4
  export { AppContext, BugBearConfig, BugBearReport, DeviceInfo, MessageSenderType, ReportType, Severity, TestAssignment, TesterInfo, TesterMessage, TesterThread, ThreadPriority, ThreadType } from '@bbearai/core';
5
5
 
6
6
  interface BugBearContextValue {
@@ -73,6 +73,8 @@ interface BugBearContextValue {
73
73
  }>;
74
74
  /** Refresh tester info from server */
75
75
  refreshTesterInfo: () => Promise<void>;
76
+ issueCounts: IssueCounts;
77
+ refreshIssueCounts: () => Promise<void>;
76
78
  /** URL to the BugBear web dashboard (for linking testers to the full web experience) */
77
79
  dashboardUrl?: string;
78
80
  /** Error handler from config — wire to your error reporting service */
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import React, { ReactNode, Component, ErrorInfo } from 'react';
2
2
  import * as _bbearai_core from '@bbearai/core';
3
- import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, AppContext, captureError } from '@bbearai/core';
3
+ import { BugBearConfig, BugBearClient, TesterInfo, TestAssignment, DeviceInfo, TesterThread, TesterMessage, QASession, QAFinding, StartSessionOptions, AddFindingOptions, TesterProfileUpdate, IssueCounts, AppContext, captureError } from '@bbearai/core';
4
4
  export { AppContext, BugBearConfig, BugBearReport, DeviceInfo, MessageSenderType, ReportType, Severity, TestAssignment, TesterInfo, TesterMessage, TesterThread, ThreadPriority, ThreadType } from '@bbearai/core';
5
5
 
6
6
  interface BugBearContextValue {
@@ -73,6 +73,8 @@ interface BugBearContextValue {
73
73
  }>;
74
74
  /** Refresh tester info from server */
75
75
  refreshTesterInfo: () => Promise<void>;
76
+ issueCounts: IssueCounts;
77
+ refreshIssueCounts: () => Promise<void>;
76
78
  /** URL to the BugBear web dashboard (for linking testers to the full web experience) */
77
79
  dashboardUrl?: string;
78
80
  /** Error handler from config — wire to your error reporting service */