vialink-react-native-sdk 2.1.2 → 2.1.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.
|
Binary file
|
|
@@ -165,5 +165,7 @@ private fun DeepLinkData.toWritableMap(): WritableMap {
|
|
|
165
165
|
params.forEach { (k, v) -> paramsMap.putString(k, v) }
|
|
166
166
|
map.putMap("params", paramsMap)
|
|
167
167
|
shortCode?.let { map.putString("shortCode", it) }
|
|
168
|
+
// 어트리뷰션용 numeric link_id (없으면 키 자체를 누락)
|
|
169
|
+
linkId?.let { map.putInt("linkId", it) }
|
|
168
170
|
return map
|
|
169
171
|
}
|
package/dist/ViaLinkSDK.d.ts
CHANGED
package/ios/ViaLinkModule.swift
CHANGED
|
@@ -132,6 +132,7 @@ class ViaLinkModule: RCTEventEmitter {
|
|
|
132
132
|
|
|
133
133
|
extension DeepLinkData {
|
|
134
134
|
func toDictionary() -> [String: Any?] {
|
|
135
|
-
|
|
135
|
+
// 어트리뷰션용 numeric link_id 포함 — JS 측 DeepLinkData.linkId로 노출됨
|
|
136
|
+
["path": path, "params": params, "shortCode": shortCode, "linkId": linkId]
|
|
136
137
|
}
|
|
137
138
|
}
|
package/package.json
CHANGED