Skip to content

Commit

Permalink
Release v10.0.1
Browse files Browse the repository at this point in the history
Release v10.0.1
  • Loading branch information
vishwa4545 committed Aug 23, 2024
1 parent 9443e96 commit 60d147d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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-10.0.0-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-10.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)

# 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'
api 'com.zoho.salesiq:mobilisten:8.0.3'
api 'com.zoho.salesiq:mobilisten:8.0.4'
}
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": "10.0.0",
"version": "10.0.1",
"description": "A React Native module for the ZohoSalesIQ Mobilisten SDK",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down
2 changes: 1 addition & 1 deletion src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export const ZSIQWrapper = {
fetchAttenderImage: function (atttenderId, fetchDefaultImage, callback) {
RNZohoSalesIQ.fetchAttenderImage(atttenderId, fetchDefaultImage, callback);
},
registerVisitor: function (visitorId, callback) {
registerVisitor: function (visitorId, callback = () => {}) {
RNZohoSalesIQ.registerVisitor(visitorId, callback);
},
setThemeColorforiOS: function (colorCode) {
Expand Down
2 changes: 1 addition & 1 deletion src/types/ZSIQWrapperTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ export interface ZSIQWrapperTypes {
*/
registerVisitor: (
visitorId: string,
callback: (error: CallbackError, result: boolean) => void
callback?: (error: CallbackError, result: boolean) => void
) => void;

/**
Expand Down

0 comments on commit 60d147d

Please sign in to comment.