@braze/web-sdk 4.8.2 → 4.8.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/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Type definitions for @braze/web-sdk v4.8.
|
|
2
|
+
* Type definitions for @braze/web-sdk v4.8.3
|
|
3
3
|
* Project: https://github.com/braze-inc/braze-web-sdk
|
|
4
4
|
* (c) Braze, Inc. 2023 - http://braze.com
|
|
5
5
|
* License available at https://github.com/braze-inc/braze-web-sdk/blob/master/LICENSE
|
package/package.json
CHANGED
package/shared-lib/logger.js
CHANGED
|
@@ -24,13 +24,13 @@ const Ge = {
|
|
|
24
24
|
},
|
|
25
25
|
warn: function(n) {
|
|
26
26
|
if (Ge.zg) {
|
|
27
|
-
const o = "Braze SDK Warning: " + n + " (v4.8.
|
|
27
|
+
const o = "Braze SDK Warning: " + n + " (v4.8.3)";
|
|
28
28
|
null != Ge.sd ? Ge.sd(o) : console.warn(o);
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
error: function(n) {
|
|
32
32
|
if (Ge.zg) {
|
|
33
|
-
const o = "Braze SDK Error: " + n + " (v4.8.
|
|
33
|
+
const o = "Braze SDK Error: " + n + " (v4.8.3)";
|
|
34
34
|
null != Ge.sd ? Ge.sd(o) : console.error(o);
|
|
35
35
|
}
|
|
36
36
|
}
|
package/src/Push/push-manager.js
CHANGED
|
@@ -169,7 +169,7 @@ export default class na {
|
|
|
169
169
|
}
|
|
170
170
|
Dn() {
|
|
171
171
|
return this.on
|
|
172
|
-
? navigator.serviceWorker.getRegistration()
|
|
172
|
+
? navigator.serviceWorker.getRegistration(this.sn)
|
|
173
173
|
: navigator.serviceWorker.register(this.sn).then(() =>
|
|
174
174
|
navigator.serviceWorker.ready.then(
|
|
175
175
|
i => (
|
|
@@ -28,7 +28,7 @@ export default class Kt {
|
|
|
28
28
|
}
|
|
29
29
|
ss() {
|
|
30
30
|
return {
|
|
31
|
-
s: "4.8.
|
|
31
|
+
s: "4.8.3",
|
|
32
32
|
l: this.ol,
|
|
33
33
|
e: this.cl,
|
|
34
34
|
a: this.gl,
|
|
@@ -42,7 +42,7 @@ export default class Kt {
|
|
|
42
42
|
static zn(t) {
|
|
43
43
|
let i = t.l;
|
|
44
44
|
return (
|
|
45
|
-
"4.8.
|
|
45
|
+
"4.8.3" !== t.s && (i = 0), new Kt(i, t.e, t.a, t.p, t.m, t.v, t.c, t.f)
|
|
46
46
|
);
|
|
47
47
|
}
|
|
48
48
|
}
|
package/src/ui/js/attach-css.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import e, { OPTIONS as L } from "../../managers/braze-instance.js";
|
|
2
2
|
export function attachCSS(n, t, o) {
|
|
3
3
|
const c = n || document.querySelector("head"),
|
|
4
|
-
s = `ab-${t}-css-definitions-${"4.8.
|
|
4
|
+
s = `ab-${t}-css-definitions-${"4.8.3".replace(/\./g, "-")}`,
|
|
5
5
|
a = c.ownerDocument || document;
|
|
6
6
|
if (null == a.getElementById(s)) {
|
|
7
7
|
const n = a.createElement("style");
|