tagworks-sdk-v1-react 1.1.10 → 1.1.11
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.
|
@@ -24,8 +24,8 @@ class DataBundleModule: NSObject, RCTBridgeModule {
|
|
|
24
24
|
return true
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
// @objc static func
|
|
28
|
-
@objc static func
|
|
27
|
+
// @objc static func constantsToExport() -> [AnyHashable: Any]! {
|
|
28
|
+
@objc static func constantsToExport() -> [String: String]! {
|
|
29
29
|
// 상수값을 반환합니다. JavaScript로 전달됩니다.
|
|
30
30
|
return [
|
|
31
31
|
"EVENT_TAG_NAME": "OBZEN_EVENT_NAME",
|
|
@@ -20,8 +20,8 @@ class StandardEventModule: NSObject, RCTBridgeModule {
|
|
|
20
20
|
return true
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
// @objc static func
|
|
24
|
-
@objc static func
|
|
23
|
+
// @objc static func constantsToExport() -> [AnyHashable: Any]! {
|
|
24
|
+
@objc static func constantsToExport() -> [String: String]! {
|
|
25
25
|
// 상수값을 반환합니다. JavaScript로 전달됩니다.
|
|
26
26
|
return [
|
|
27
27
|
"PAGE_VIEW" : "PageView",
|
package/ios/TagWorksModule.swift
CHANGED
|
@@ -22,8 +22,8 @@ class TagWorksModule: NSObject, RCTBridgeModule {
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
// MARK: 이벤트 상수 선언
|
|
25
|
-
// @objc static func
|
|
26
|
-
@objc static func
|
|
25
|
+
// @objc static func constantsToExport() -> [AnyHashable: Any]! {
|
|
26
|
+
@objc static func constantsToExport() -> [String: String]! {
|
|
27
27
|
// 상수값을 반환합니다. JavaScript로 전달됩니다.
|
|
28
28
|
return [
|
|
29
29
|
"EVENT_TYPE_PAGE": "EVENT_TYPE_PAGE",
|