instabug-reactnative
Advanced tools
Comparing version 1.1.2 to 1.1.3
19
index.js
@@ -715,5 +715,5 @@ import {NativeModules, NativeAppEventEmitter, Platform} from "react-native"; | ||
* | ||
* @param {boolean} chat weather Talk to us is enable or not | ||
* @param {boolean} bug weather Report a Problem is enable or not | ||
* @param {boolean} feedback weather General Feedback is enable or not | ||
* @param {boolean} chat whether Talk to us is enable or not | ||
* @param {boolean} bug whether Report a Problem is enable or not | ||
* @param {boolean} feedback whether General Feedback is enable or not | ||
* */ | ||
@@ -745,2 +745,15 @@ setPromptOptionsEnabled: function (chat, bug, feedback) { | ||
/** | ||
* @summary Checks whether app is development/Beta testing OR live | ||
* Note: This API is iOS only | ||
* It returns in the callback false if in development or beta testing on Test Flight, and true if app is live on the | ||
* app store. | ||
* @param {function} runningLiveCallBack callback with argument as return value 'isLive' | ||
*/ | ||
isRunningLive: function(runningLiveCallBack) { | ||
if (Platform.OS === 'ios') { | ||
Instabug.isRunningLive(runningLiveCallBack) | ||
} | ||
}, | ||
/** | ||
* The event used to invoke the feedback form | ||
@@ -747,0 +760,0 @@ * @readonly |
{ | ||
"name": "instabug-reactnative", | ||
"version": "1.1.2", | ||
"version": "1.1.3", | ||
"description": "React Native plugin for integrating the Instabug SDK", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
164321
2258