react-native-firework-sdk 1.3.1-beta.3 → 1.3.1-beta.4

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.
@@ -36,7 +36,7 @@ class FireworkSDKModule: RCTEventEmitter, FireworkVideoSDKDelegate {
36
36
  #if DEBUG
37
37
  let formatter = DateFormatter()
38
38
  formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
39
- sendEvent(withName: FWEventName.LogMessage.rawValue, body: ["message": "[iOS] Call initializeSDK"])
39
+ sendEvent(withName: FWEventName.LogMessage.rawValue, body: ["message": "[iOS] Call initializeSDK \(formatter.string(from: Date()))"])
40
40
  #endif
41
41
 
42
42
  DispatchQueue.main.async {
@@ -114,7 +114,7 @@ class FireworkSDKModule: RCTEventEmitter, FireworkVideoSDKDelegate {
114
114
  #if DEBUG
115
115
  let formatter = DateFormatter()
116
116
  formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
117
- sendEvent(withName: FWEventName.LogMessage.rawValue, body: ["message": "[iOS] Send SDK initialization successful event"])
117
+ sendEvent(withName: FWEventName.LogMessage.rawValue, body: ["message": "[iOS] Send SDK initialization successful event \(formatter.string(from: Date()))"])
118
118
  #endif
119
119
 
120
120
  sendEvent(withName: FWEventName.SDKInit.rawValue, body: [:])
@@ -124,7 +124,7 @@ class FireworkSDKModule: RCTEventEmitter, FireworkVideoSDKDelegate {
124
124
  #if DEBUG
125
125
  let formatter = DateFormatter()
126
126
  formatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"
127
- sendEvent(withName: FWEventName.LogMessage.rawValue, body: ["message": "[iOS] Send SDK initialization failure event"])
127
+ sendEvent(withName: FWEventName.LogMessage.rawValue, body: ["message": "[iOS] Send SDK initialization failure event \(formatter.string(from: Date()))"])
128
128
  #endif
129
129
 
130
130
  sendEvent(withName: FWEventName.SDKInit.rawValue, body: ["error": ["name": error.jsErrorName, "reason": error.recoverySuggestion ?? "default"]])
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-firework-sdk",
3
- "version": "1.3.1-beta.3",
3
+ "version": "1.3.1-beta.4",
4
4
  "description": "Firework React Native SDK",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",