diff --git a/package.json b/package.json index ae3dd6e..cbc46ff 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "embed-react-native-sdk", - "version": "5.0.2-alpha-3", + "version": "5.0.2-alpha-4", "description": "React Native SDK for Embedding TS", "main": "dist/index.cjs.js", "module": "dist/index.esm.js", diff --git a/src/index.ts b/src/index.ts index 57662b7..20dc6e9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,14 +1,16 @@ +import { ConversationEmbed } from "./ConversationEmbed"; import { useLiveboardRef } from "./hooks/useLiveboardRef"; import { init } from "./init"; import { LiveboardEmbed, LiveboardEmbedRef } from "./LiveboardEmbed"; import { Action, AuthType, ViewConfig, HostEvent } from "./types"; -export { init, LiveboardEmbed, useLiveboardRef, AuthType, ViewConfig, Action, HostEvent }; +export { init, ConversationEmbed, LiveboardEmbed, useLiveboardRef, AuthType, ViewConfig, Action, HostEvent }; export type { LiveboardEmbedRef }; const EmbedReactNativeSDK = { init, LiveboardEmbed, useLiveboardRef, + ConversationEmbed }; -export default EmbedReactNativeSDK; \ No newline at end of file +export default EmbedReactNativeSDK;