infobip-mobile-messaging-react-native-plugin 13.0.0 → 13.0.2

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/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.5
1
+ 2.7.8
package/README.md CHANGED
@@ -10,18 +10,18 @@ The document describes library integration steps for your React Native project.
10
10
  * [Initialization configuration](#initialization-configuration)
11
11
 
12
12
  ## Requirements
13
- - node (v16.10.0 or higher)
14
- - ruby (2.6.10 or higher)
13
+ - node (v20.16.0 or higher)
14
+ - ruby (2.7.8 or higher)
15
15
  - React Native (v0.75.4)
16
16
 
17
17
  For iOS project:
18
- - Xcode and Command Line Tools (16.1)
18
+ - Xcode and Command Line Tools (16.x)
19
19
  - CocoaPods (v1.15.2)
20
20
  - Minimum deployment target 12.4
21
21
 
22
22
  For Android project:
23
- - Android Studio (Bumblebee | 2021.1.1)
24
- - Gradle (v8.5.2)
23
+ - Android Studio (Ladybug | 2024.2.1)
24
+ - Gradle (v8.8)
25
25
  - Supported API Levels: 21 (Android 5.0 - [Lollipop](https://developer.android.com/about/versions/lollipop)) - 34 ([Android 14.0](https://developer.android.com/about/versions/14))
26
26
 
27
27
  ## Quick start guide
@@ -134,10 +134,14 @@ class ReactNativeMobileMessaging: RCTEventEmitter {
134
134
  if configuration.logging {
135
135
  MobileMessaging.logger = MMDefaultLogger()
136
136
  }
137
-
137
+
138
138
  if configuration.inAppChatEnabled {
139
139
  mobileMessaging = mobileMessaging?.withInAppChat()
140
140
  }
141
+
142
+ if configuration.fullFeaturedInAppsEnabled {
143
+ mobileMessaging = mobileMessaging?.withFullFeaturedInApps()
144
+ }
141
145
 
142
146
  if let webViewSettings = configuration.webViewSettings {
143
147
  mobileMessaging?.webViewSettings.configureWith(rawConfig: webViewSettings)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "infobip-mobile-messaging-react-native-plugin",
3
3
  "title": "Infobip Mobile Messaging React Native Plugin",
4
- "version": "13.0.0",
4
+ "version": "13.0.2",
5
5
  "description": "Infobip Mobile Messaging React Native Plugin",
6
6
  "main": "./src/index.js",
7
7
  "scripts": {
package/src/index.d.ts CHANGED
@@ -326,11 +326,7 @@ declare namespace MobileMessagingReactNative {
326
326
  inputTextAppearance: string;
327
327
  }
328
328
 
329
- export enum ChatMultithreadStrategy {
330
- active = "ACTIVE",
331
- all = "ALL",
332
- allPlusNew = "ALL_PLUS_NEW"
333
- }
329
+ export type ChatMultithreadStrategy = 'ACTIVE' | 'ALL' | 'ALL_PLUS_NEW';
334
330
 
335
331
  interface Api {
336
332