Skip to content

Commit

Permalink
Release v8.0.2
Browse files Browse the repository at this point in the history
Release v8.0.2
  • Loading branch information
yeskay-zohocorp committed Jan 12, 2024
1 parent 9358f7b commit 8cb9bd7
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![SupportedLanguages](https://img.shields.io/badge/Platforms-iOS%20%7C%20%20Android-green.svg)](https://www.zoho.com/salesiq/help/developer-section/react-native-sdk-installation.html) [![Version](https://img.shields.io/badge/version-8.0.1-blue.svg)](https://mobilisten.io/) [![Mobilisten NPM CD](https://github.com/zoho/SalesIQ-Mobilisten-ReactNative/workflows/Mobilisten%20NPM%20CD/badge.svg)](https://github.com/zoho/SalesIQ-Mobilisten-ReactNative/actions)
[![SupportedLanguages](https://img.shields.io/badge/Platforms-iOS%20%7C%20%20Android-green.svg)](https://www.zoho.com/salesiq/help/developer-section/react-native-sdk-installation.html) [![Version](https://img.shields.io/badge/version-8.0.2-blue.svg)](https://mobilisten.io/) [![Mobilisten NPM CD](https://github.com/zoho/SalesIQ-Mobilisten-ReactNative/workflows/Mobilisten%20NPM%20CD/badge.svg)](https://github.com/zoho/SalesIQ-Mobilisten-ReactNative/actions)

# React Native module for SalesIQ Mobilisten SDK

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ repositories {
dependencies {
implementation 'com.facebook.react:react-native:+'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'com.zoho.salesiq:mobilisten:7.0.0'
implementation 'com.zoho.salesiq:mobilisten:7.0.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,11 @@ public static void refreshLauncherPropertiesForAndroid() {
});
}

@ReactMethod
public static void refreshLauncher() {

}

@ReactMethod
public void addListener(String eventName) {
// Keep: Required for RN built in Event Emitter Calls.
Expand Down
3 changes: 3 additions & 0 deletions components/zohosalesiqJSWrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,9 @@ module.exports = {
setThemeForAndroid: function (value) {
RNZohoSalesIQ.setThemeForAndroid(value)
},
refreshLauncher: function () {
RNZohoSalesIQ.refreshLauncher();
},

Chat: {
shouldOpenUrl: function (value) {
Expand Down
4 changes: 4 additions & 0 deletions ios/RNZohoSalesIQ.m
Original file line number Diff line number Diff line change
Expand Up @@ -1643,6 +1643,10 @@ + (void)handleNotificationAction: (NSDictionary *) info response:(NSString *) re
}
}

RCT_EXPORT_METHOD(refreshLauncher) {
[ZohoSalesIQ refreshLauncher];
}

//MARK:- DELEGATE METHODS - EVENTS
- (void)agentsOffline {
if (hasListeners)
Expand Down
2 changes: 1 addition & 1 deletion ios/RNZohoSalesIQ.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RNZohoSalesIQ"
s.version = "8.0.0"
s.version = "8.0.1"
s.summary = "A React-Native module for the SalesIQ Mobilisten SDK"
s.description = "A React-Native module for the SalesIQ Mobilisten SDK"
s.homepage = "https://zoho.com"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-zohosalesiq-mobilisten",
"version": "8.0.1",
"version": "8.0.2",
"description": "A React Native module for the ZohoSalesIQ Mobilisten SDK",
"bugs": {
"email": "support@zohosalesiq.com"
Expand Down

0 comments on commit 8cb9bd7

Please sign in to comment.