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