@rebilly/instruments 12.67.1 → 12.67.3
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.
- package/CHANGELOG.md +6 -1
- package/dist/index.js +2 -2
- package/dist/index.min.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [12.67.
|
|
1
|
+
## [12.67.3](https://github.com/Rebilly/rebilly/compare/instruments/core-v12.67.2...instruments/core-v12.67.3) (2025-06-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **instruments:** Add support for query string lead source attributes decoding ([#12516](https://github.com/Rebilly/rebilly/issues/12516)) ([2f303a0](https://github.com/Rebilly/rebilly/commit/2f303a0fef7d36a5e34e8a90049b5ada53637108))
|
package/dist/index.js
CHANGED
|
@@ -6300,7 +6300,7 @@ function C$1({ options: e2 }) {
|
|
|
6300
6300
|
}
|
|
6301
6301
|
function o2() {
|
|
6302
6302
|
const i = {
|
|
6303
|
-
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
6303
|
+
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@2f303a0`
|
|
6304
6304
|
};
|
|
6305
6305
|
return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
|
|
6306
6306
|
}
|
|
@@ -17024,7 +17024,7 @@ const getLeadSourceData = () => {
|
|
|
17024
17024
|
const [name, value = null] = field;
|
|
17025
17025
|
const key = name.replace(prefix, "");
|
|
17026
17026
|
if (key) {
|
|
17027
|
-
data[key] = value;
|
|
17027
|
+
data[key] = value !== null ? decodeURIComponent(value) : null;
|
|
17028
17028
|
}
|
|
17029
17029
|
return data;
|
|
17030
17030
|
}, leadSource);
|