@bbearai/react-native 0.8.2 → 0.8.4
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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +685 -36
- package/dist/index.mjs +738 -89
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -79,6 +79,11 @@ interface BugBearContextValue {
|
|
|
79
79
|
refreshTesterInfo: () => Promise<void>;
|
|
80
80
|
issueCounts: IssueCounts;
|
|
81
81
|
refreshIssueCounts: () => Promise<void>;
|
|
82
|
+
/** Reopen a done issue with a required reason */
|
|
83
|
+
reopenReport: (reportId: string, reason: string) => Promise<{
|
|
84
|
+
success: boolean;
|
|
85
|
+
error?: string;
|
|
86
|
+
}>;
|
|
82
87
|
/** Number of queued offline operations waiting to be sent. */
|
|
83
88
|
queuedCount: number;
|
|
84
89
|
/** URL to the BugBear web dashboard (for linking testers to the full web experience) */
|
package/dist/index.d.ts
CHANGED
|
@@ -79,6 +79,11 @@ interface BugBearContextValue {
|
|
|
79
79
|
refreshTesterInfo: () => Promise<void>;
|
|
80
80
|
issueCounts: IssueCounts;
|
|
81
81
|
refreshIssueCounts: () => Promise<void>;
|
|
82
|
+
/** Reopen a done issue with a required reason */
|
|
83
|
+
reopenReport: (reportId: string, reason: string) => Promise<{
|
|
84
|
+
success: boolean;
|
|
85
|
+
error?: string;
|
|
86
|
+
}>;
|
|
82
87
|
/** Number of queued offline operations waiting to be sent. */
|
|
83
88
|
queuedCount: number;
|
|
84
89
|
/** URL to the BugBear web dashboard (for linking testers to the full web experience) */
|