@rebilly/instruments 12.0.1 → 12.2.0
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 +3 -3
- package/dist/index.js +3 -3
- package/dist/index.min.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.0
|
|
1
|
+
## [12.2.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v12.1.0...instruments/core-v12.2.0) (2024-11-26)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#8740](https://github.com/Rebilly/rebilly/issues/8740)) ([e0b7123](https://github.com/Rebilly/rebilly/commit/e0b7123076aa95556a6cefdd4aa8fcce7ac3f5ff))
|
package/dist/index.js
CHANGED
|
@@ -1925,11 +1925,11 @@ async function loadFramepay({
|
|
|
1925
1925
|
resolve(window.Framepay);
|
|
1926
1926
|
} else {
|
|
1927
1927
|
const framepayStyle = document.createElement("link");
|
|
1928
|
-
framepayStyle.setAttribute("href", styleLink
|
|
1928
|
+
framepayStyle.setAttribute("href", styleLink || DEFAULT_STYLE_LINK);
|
|
1929
1929
|
framepayStyle.setAttribute("rel", "stylesheet");
|
|
1930
1930
|
document.head.prepend(framepayStyle);
|
|
1931
1931
|
const framepayScript = document.createElement("script");
|
|
1932
|
-
framepayScript.setAttribute("src", scriptLink
|
|
1932
|
+
framepayScript.setAttribute("src", scriptLink || DEFAULT_SCRIPT_LINK);
|
|
1933
1933
|
framepayScript.onload = () => resolve(window.Framepay);
|
|
1934
1934
|
framepayScript.onerror = () => reject(
|
|
1935
1935
|
new Error(
|
|
@@ -6288,7 +6288,7 @@ function C$1({ options: e2 }) {
|
|
|
6288
6288
|
}
|
|
6289
6289
|
function o2() {
|
|
6290
6290
|
const i = {
|
|
6291
|
-
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
6291
|
+
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@e0b7123`
|
|
6292
6292
|
};
|
|
6293
6293
|
return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
|
|
6294
6294
|
}
|