notifly-sdk 3.5.0 → 3.5.1
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.
|
@@ -35,7 +35,7 @@ class NotiflySdkModule internal constructor(private val reactContext: ReactAppli
|
|
|
35
35
|
Notifly.setSdkType(NotiflyControlTokenImpl(), NotiflySdkWrapperType.REACT_NATIVE)
|
|
36
36
|
Notifly.setSdkVersion(
|
|
37
37
|
NotiflyControlTokenImpl(),
|
|
38
|
-
"3.5.
|
|
38
|
+
"3.5.1"
|
|
39
39
|
)
|
|
40
40
|
|
|
41
41
|
Notifly.initialize(context, projectId, username, password)
|
package/ios/NotiflySdk.swift
CHANGED
|
@@ -6,7 +6,7 @@ class NotiflyReactNativeSdk: NSObject {
|
|
|
6
6
|
@objc(initialize:withUsername:withPassword:withResolver:withRejecter:)
|
|
7
7
|
func initialize(projectId: String, username: String, password: String, resolve: RCTPromiseResolveBlock, reject _: RCTPromiseRejectBlock) {
|
|
8
8
|
Notifly.setSdkType(type: "react_native")
|
|
9
|
-
Notifly.setSdkVersion(version: "3.5.
|
|
9
|
+
Notifly.setSdkVersion(version: "3.5.1") // TODO: get version from package.json
|
|
10
10
|
Notifly.initialize(projectId: projectId, username: username, password: password)
|
|
11
11
|
resolve(nil)
|
|
12
12
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "notifly-sdk",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "Notifly SDK for React Native",
|
|
5
5
|
"main": "lib/commonjs/index",
|
|
6
6
|
"module": "lib/module/index",
|
|
@@ -155,10 +155,5 @@
|
|
|
155
155
|
}
|
|
156
156
|
]
|
|
157
157
|
]
|
|
158
|
-
},
|
|
159
|
-
"codegenConfig": {
|
|
160
|
-
"name": "RNNotiflyReactNativeSdkSpec",
|
|
161
|
-
"type": "modules",
|
|
162
|
-
"jsSrcsDir": "src"
|
|
163
158
|
}
|
|
164
159
|
}
|