@arcware-cloud/pixelstreaming-websdk 1.4.9 → 1.4.10
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/core.cjs +1 -1
- package/core.mjs +1 -1
- package/core.umd.cjs +1 -1
- package/index.cjs +3 -2
- package/index.mjs +1 -1
- package/index.umd.cjs +3 -2
- package/package.json +1 -1
- package/types/core/ArcwareConfig.d.ts +1 -1
package/index.umd.cjs
CHANGED
|
@@ -22955,7 +22955,7 @@ class ArcwareConfig extends lib_pixelstreamingfrontend_ue5_5_1.Config {
|
|
|
22955
22955
|
const mergedCustomization = Object.assign(Object.assign({}, ArcwareConfig.DEFAULT_CUSTOMIZATION), ((_e = config.customization) !== null && _e !== void 0 ? _e : {}));
|
|
22956
22956
|
const finalConfig = Object.assign(Object.assign({}, config), { initialSettings: mergedInitialSettings, settings: mergedSettings, customization: mergedCustomization });
|
|
22957
22957
|
super(finalConfig);
|
|
22958
|
-
this.VERSION = "1.4.
|
|
22958
|
+
this.VERSION = "1.4.10";
|
|
22959
22959
|
this.whiteLabellingChanged = new EventHandler_1.EventHandler();
|
|
22960
22960
|
this.signallingWlURL = "https://signalling-client.arcware.cloud/whiteLabel/";
|
|
22961
22961
|
const env = (_f = config.envName) !== null && _f !== void 0 ? _f : "ragnarok";
|
|
@@ -25987,7 +25987,8 @@ class ArcwareApplication extends lib_pixelstreamingfrontend_ui_ue5_5_1.Applicati
|
|
|
25987
25987
|
pushLetter(letter) {
|
|
25988
25988
|
var _b;
|
|
25989
25989
|
this.loveLettersQueue.push(letter);
|
|
25990
|
-
|
|
25990
|
+
console.log(this.stream.config.settings.fetchRemoteWhiteLabelling);
|
|
25991
|
+
if (!((_b = this.stream.config.settings.whiteLabelling) === null || _b === void 0 ? void 0 : _b.hideLoveLetters) ||
|
|
25991
25992
|
!this.stream.config.settings.fetchRemoteWhiteLabelling) {
|
|
25992
25993
|
if (!this.isProcessingQueue) {
|
|
25993
25994
|
this.processLoveLetterQueue();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcware-cloud/pixelstreaming-websdk",
|
|
3
3
|
"description": "WebSDK for easy implementation of pixel streaming with Arcware Cloud Services. Heavily based on the '@epicgames-ps' library.",
|
|
4
|
-
"version": "1.4.
|
|
4
|
+
"version": "1.4.10",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./index.cjs",
|
|
7
7
|
"types": "./types/index.d.ts",
|
|
@@ -32,7 +32,7 @@ export declare class ArcwareConfig extends Config {
|
|
|
32
32
|
readonly settings: Settings;
|
|
33
33
|
readonly customization: Customization;
|
|
34
34
|
private _initialSettings;
|
|
35
|
-
readonly VERSION = "1.4.
|
|
35
|
+
readonly VERSION = "1.4.10";
|
|
36
36
|
readonly whiteLabellingChanged: EventHandler<{
|
|
37
37
|
next: Partial<WhiteLabel>;
|
|
38
38
|
changed: boolean;
|