@brndts/brndts-ads 1.14.17 → 1.14.18
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/dist/index.js +556 -186
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +556 -186
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -55202,18 +55202,18 @@ var BrowserClient = /*#__PURE__*/ function(BaseClient) {
|
|
55202
55202
|
function BrowserClient(options) {
|
55203
55203
|
_class_call_check(this, BrowserClient);
|
55204
55204
|
var _this;
|
55205
|
-
var
|
55205
|
+
var opts2 = _object_spread({
|
55206
55206
|
// We default this to true, as it is the safer scenario
|
55207
55207
|
parentSpanIsAlwaysRootSpan: true
|
55208
55208
|
}, options);
|
55209
55209
|
var sdkSource = WINDOW4.SENTRY_SDK_SOURCE || getSDKSource();
|
55210
|
-
applySdkMetadata(
|
55210
|
+
applySdkMetadata(opts2, "browser", [
|
55211
55211
|
"browser"
|
55212
55212
|
], sdkSource);
|
55213
55213
|
_this = _call_super(this, BrowserClient, [
|
55214
|
-
|
55214
|
+
opts2
|
55215
55215
|
]);
|
55216
|
-
if (
|
55216
|
+
if (opts2.sendClientReports && WINDOW4.document) {
|
55217
55217
|
WINDOW4.document.addEventListener("visibilitychange", function() {
|
55218
55218
|
if (WINDOW4.document.visibilityState === "hidden") {
|
55219
55219
|
_this._flushOutcomes();
|
@@ -55347,7 +55347,7 @@ var initMetric = function(name, value2) {
|
|
55347
55347
|
};
|
55348
55348
|
};
|
55349
55349
|
// node_modules/@sentry-internal/browser-utils/build/esm/metrics/web-vitals/lib/observe.js
|
55350
|
-
var observe = function(type, callback,
|
55350
|
+
var observe = function(type, callback, opts2) {
|
55351
55351
|
try {
|
55352
55352
|
if (PerformanceObserver.supportedEntryTypes.includes(type)) {
|
55353
55353
|
var po2 = new PerformanceObserver(function(list) {
|
@@ -55358,7 +55358,7 @@ var observe = function(type, callback, opts) {
|
|
55358
55358
|
po2.observe(Object.assign({
|
55359
55359
|
type: type,
|
55360
55360
|
buffered: true
|
55361
|
-
},
|
55361
|
+
}, opts2 || {}));
|
55362
55362
|
return po2;
|
55363
55363
|
}
|
55364
55364
|
} catch (e2) {}
|
@@ -55432,7 +55432,7 @@ var FCPThresholds = [
|
|
55432
55432
|
3e3
|
55433
55433
|
];
|
55434
55434
|
var onFCP = function(onReport) {
|
55435
|
-
var
|
55435
|
+
var opts2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
55436
55436
|
whenActivated(function() {
|
55437
55437
|
var visibilityWatcher = getVisibilityWatcher();
|
55438
55438
|
var metric = initMetric("FCP");
|
@@ -55451,7 +55451,7 @@ var onFCP = function(onReport) {
|
|
55451
55451
|
};
|
55452
55452
|
var po2 = observe("paint", handleEntries);
|
55453
55453
|
if (po2) {
|
55454
|
-
report = bindReporter(onReport, metric, FCPThresholds,
|
55454
|
+
report = bindReporter(onReport, metric, FCPThresholds, opts2.reportAllChanges);
|
55455
55455
|
}
|
55456
55456
|
});
|
55457
55457
|
};
|
@@ -55461,7 +55461,7 @@ var CLSThresholds = [
|
|
55461
55461
|
0.25
|
55462
55462
|
];
|
55463
55463
|
var onCLS = function(onReport) {
|
55464
|
-
var
|
55464
|
+
var opts2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
55465
55465
|
onFCP(runOnce(function() {
|
55466
55466
|
var metric = initMetric("CLS", 0);
|
55467
55467
|
var report;
|
@@ -55491,7 +55491,7 @@ var onCLS = function(onReport) {
|
|
55491
55491
|
};
|
55492
55492
|
var po2 = observe("layout-shift", handleEntries);
|
55493
55493
|
if (po2) {
|
55494
|
-
report = bindReporter(onReport, metric, CLSThresholds,
|
55494
|
+
report = bindReporter(onReport, metric, CLSThresholds, opts2.reportAllChanges);
|
55495
55495
|
onHidden(function() {
|
55496
55496
|
handleEntries(po2.takeRecords());
|
55497
55497
|
report(true);
|
@@ -55506,7 +55506,7 @@ var FIDThresholds = [
|
|
55506
55506
|
300
|
55507
55507
|
];
|
55508
55508
|
var onFID = function(onReport) {
|
55509
|
-
var
|
55509
|
+
var opts2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
55510
55510
|
whenActivated(function() {
|
55511
55511
|
var visibilityWatcher = getVisibilityWatcher();
|
55512
55512
|
var metric = initMetric("FID");
|
@@ -55522,7 +55522,7 @@ var onFID = function(onReport) {
|
|
55522
55522
|
entries.forEach(handleEntry);
|
55523
55523
|
};
|
55524
55524
|
var po2 = observe("first-input", handleEntries);
|
55525
|
-
report = bindReporter(onReport, metric, FIDThresholds,
|
55525
|
+
report = bindReporter(onReport, metric, FIDThresholds, opts2.reportAllChanges);
|
55526
55526
|
if (po2) {
|
55527
55527
|
onHidden(runOnce(function() {
|
55528
55528
|
handleEntries(po2.takeRecords());
|
@@ -55627,7 +55627,7 @@ var INPThresholds = [
|
|
55627
55627
|
500
|
55628
55628
|
];
|
55629
55629
|
var onINP = function(onReport) {
|
55630
|
-
var
|
55630
|
+
var opts2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
55631
55631
|
if (!("PerformanceEventTiming" in WINDOW5 && "interactionId" in PerformanceEventTiming.prototype)) {
|
55632
55632
|
return;
|
55633
55633
|
}
|
@@ -55653,9 +55653,9 @@ var onINP = function(onReport) {
|
|
55653
55653
|
// and performance. Running this callback for any interaction that spans
|
55654
55654
|
// just one or two frames is likely not worth the insight that could be
|
55655
55655
|
// gained.
|
55656
|
-
durationThreshold:
|
55656
|
+
durationThreshold: opts2.durationThreshold != null ? opts2.durationThreshold : DEFAULT_DURATION_THRESHOLD
|
55657
55657
|
});
|
55658
|
-
report = bindReporter(onReport, metric, INPThresholds,
|
55658
|
+
report = bindReporter(onReport, metric, INPThresholds, opts2.reportAllChanges);
|
55659
55659
|
if (po2) {
|
55660
55660
|
po2.observe({
|
55661
55661
|
type: "first-input",
|
@@ -55675,13 +55675,13 @@ var LCPThresholds = [
|
|
55675
55675
|
];
|
55676
55676
|
var reportedMetricIDs = {};
|
55677
55677
|
var onLCP = function(onReport) {
|
55678
|
-
var
|
55678
|
+
var opts2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
55679
55679
|
whenActivated(function() {
|
55680
55680
|
var visibilityWatcher = getVisibilityWatcher();
|
55681
55681
|
var metric = initMetric("LCP");
|
55682
55682
|
var report;
|
55683
55683
|
var handleEntries = function(entries) {
|
55684
|
-
if (!
|
55684
|
+
if (!opts2.reportAllChanges) {
|
55685
55685
|
entries = entries.slice(-1);
|
55686
55686
|
}
|
55687
55687
|
entries.forEach(function(entry) {
|
@@ -55696,7 +55696,7 @@ var onLCP = function(onReport) {
|
|
55696
55696
|
};
|
55697
55697
|
var po2 = observe("largest-contentful-paint", handleEntries);
|
55698
55698
|
if (po2) {
|
55699
|
-
report = bindReporter(onReport, metric, LCPThresholds,
|
55699
|
+
report = bindReporter(onReport, metric, LCPThresholds, opts2.reportAllChanges);
|
55700
55700
|
var stopListening = runOnce(function() {
|
55701
55701
|
if (!reportedMetricIDs[metric.id]) {
|
55702
55702
|
handleEntries(po2.takeRecords());
|
@@ -55741,9 +55741,9 @@ var whenReady = function(callback) {
|
|
55741
55741
|
}
|
55742
55742
|
};
|
55743
55743
|
var onTTFB = function(onReport) {
|
55744
|
-
var
|
55744
|
+
var opts2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
55745
55745
|
var metric = initMetric("TTFB");
|
55746
|
-
var report = bindReporter(onReport, metric, TTFBThresholds,
|
55746
|
+
var report = bindReporter(onReport, metric, TTFBThresholds, opts2.reportAllChanges);
|
55747
55747
|
whenReady(function() {
|
55748
55748
|
var navigationEntry = getNavigationEntry();
|
55749
55749
|
if (navigationEntry) {
|
@@ -62842,9 +62842,9 @@ function makeReplayLogger() {
|
|
62842
62842
|
infoTick: function() {
|
62843
62843
|
return void 0;
|
62844
62844
|
},
|
62845
|
-
setConfig: function(
|
62846
|
-
_capture =
|
62847
|
-
_trace =
|
62845
|
+
setConfig: function(opts2) {
|
62846
|
+
_capture = opts2.captureExceptions;
|
62847
|
+
_trace = opts2.traceInternals;
|
62848
62848
|
}
|
62849
62849
|
};
|
62850
62850
|
if (DEBUG_BUILD5) {
|
@@ -69360,9 +69360,9 @@ var RegionMaskPlugin = /*#__PURE__*/ function() {
|
|
69360
69360
|
}();
|
69361
69361
|
// src/Ads/Regions/Plugins/Border/RegionBorderPlugin.ts
|
69362
69362
|
var RegionBorderPlugin = /*#__PURE__*/ function() {
|
69363
|
-
function RegionBorderPlugin(
|
69363
|
+
function RegionBorderPlugin(opts2) {
|
69364
69364
|
_class_call_check(this, RegionBorderPlugin);
|
69365
|
-
this.options =
|
69365
|
+
this.options = opts2;
|
69366
69366
|
}
|
69367
69367
|
_create_class(RegionBorderPlugin, [
|
69368
69368
|
{
|
@@ -69797,6 +69797,254 @@ var TYPE_AND_DIMENSIONS = {
|
|
69797
69797
|
]
|
69798
69798
|
]
|
69799
69799
|
};
|
69800
|
+
var BREAKPOINTS = {
|
69801
|
+
"large-desktop": 1280,
|
69802
|
+
"desktop": 1024,
|
69803
|
+
"tablet": 768,
|
69804
|
+
"mobile": 0
|
69805
|
+
};
|
69806
|
+
var RULES = {
|
69807
|
+
"billboard": {
|
69808
|
+
"large-desktop": [
|
69809
|
+
[
|
69810
|
+
970,
|
69811
|
+
250
|
69812
|
+
],
|
69813
|
+
[
|
69814
|
+
970,
|
69815
|
+
90
|
69816
|
+
]
|
69817
|
+
],
|
69818
|
+
// allow billboard + super lb
|
69819
|
+
"desktop": [
|
69820
|
+
[
|
69821
|
+
970,
|
69822
|
+
250
|
69823
|
+
],
|
69824
|
+
[
|
69825
|
+
970,
|
69826
|
+
90
|
69827
|
+
]
|
69828
|
+
],
|
69829
|
+
// drop 970x250, still wide
|
69830
|
+
"tablet": [
|
69831
|
+
[
|
69832
|
+
728,
|
69833
|
+
90
|
69834
|
+
],
|
69835
|
+
[
|
69836
|
+
468,
|
69837
|
+
60
|
69838
|
+
]
|
69839
|
+
]
|
69840
|
+
},
|
69841
|
+
"leaderboard": {
|
69842
|
+
"large-desktop": [
|
69843
|
+
[
|
69844
|
+
728,
|
69845
|
+
90
|
69846
|
+
],
|
69847
|
+
[
|
69848
|
+
468,
|
69849
|
+
60
|
69850
|
+
]
|
69851
|
+
],
|
69852
|
+
"desktop": [
|
69853
|
+
[
|
69854
|
+
728,
|
69855
|
+
90
|
69856
|
+
],
|
69857
|
+
[
|
69858
|
+
468,
|
69859
|
+
60
|
69860
|
+
]
|
69861
|
+
],
|
69862
|
+
"tablet": [
|
69863
|
+
[
|
69864
|
+
728,
|
69865
|
+
90
|
69866
|
+
],
|
69867
|
+
[
|
69868
|
+
468,
|
69869
|
+
60
|
69870
|
+
]
|
69871
|
+
],
|
69872
|
+
"mobile": [
|
69873
|
+
[
|
69874
|
+
728,
|
69875
|
+
90
|
69876
|
+
],
|
69877
|
+
[
|
69878
|
+
468,
|
69879
|
+
60
|
69880
|
+
],
|
69881
|
+
[
|
69882
|
+
320,
|
69883
|
+
50
|
69884
|
+
],
|
69885
|
+
[
|
69886
|
+
300,
|
69887
|
+
50
|
69888
|
+
]
|
69889
|
+
]
|
69890
|
+
},
|
69891
|
+
"large-rectangle": {
|
69892
|
+
"large-desktop": [
|
69893
|
+
[
|
69894
|
+
300,
|
69895
|
+
600
|
69896
|
+
],
|
69897
|
+
[
|
69898
|
+
160,
|
69899
|
+
600
|
69900
|
+
]
|
69901
|
+
],
|
69902
|
+
"desktop": [
|
69903
|
+
[
|
69904
|
+
300,
|
69905
|
+
600
|
69906
|
+
],
|
69907
|
+
[
|
69908
|
+
160,
|
69909
|
+
600
|
69910
|
+
]
|
69911
|
+
],
|
69912
|
+
"tablet": [
|
69913
|
+
[
|
69914
|
+
160,
|
69915
|
+
600
|
69916
|
+
],
|
69917
|
+
[
|
69918
|
+
120,
|
69919
|
+
600
|
69920
|
+
]
|
69921
|
+
]
|
69922
|
+
},
|
69923
|
+
"medium-rectangle": {
|
69924
|
+
"large-desktop": [
|
69925
|
+
[
|
69926
|
+
300,
|
69927
|
+
250
|
69928
|
+
],
|
69929
|
+
[
|
69930
|
+
250,
|
69931
|
+
250
|
69932
|
+
],
|
69933
|
+
[
|
69934
|
+
200,
|
69935
|
+
200
|
69936
|
+
]
|
69937
|
+
],
|
69938
|
+
"desktop": [
|
69939
|
+
[
|
69940
|
+
300,
|
69941
|
+
250
|
69942
|
+
],
|
69943
|
+
[
|
69944
|
+
250,
|
69945
|
+
250
|
69946
|
+
],
|
69947
|
+
[
|
69948
|
+
200,
|
69949
|
+
200
|
69950
|
+
]
|
69951
|
+
],
|
69952
|
+
"tablet": [
|
69953
|
+
[
|
69954
|
+
300,
|
69955
|
+
250
|
69956
|
+
],
|
69957
|
+
[
|
69958
|
+
250,
|
69959
|
+
250
|
69960
|
+
],
|
69961
|
+
[
|
69962
|
+
200,
|
69963
|
+
200
|
69964
|
+
],
|
69965
|
+
[
|
69966
|
+
180,
|
69967
|
+
150
|
69968
|
+
]
|
69969
|
+
],
|
69970
|
+
"mobile": [
|
69971
|
+
[
|
69972
|
+
300,
|
69973
|
+
250
|
69974
|
+
],
|
69975
|
+
[
|
69976
|
+
250,
|
69977
|
+
250
|
69978
|
+
],
|
69979
|
+
[
|
69980
|
+
180,
|
69981
|
+
150
|
69982
|
+
],
|
69983
|
+
[
|
69984
|
+
150,
|
69985
|
+
150
|
69986
|
+
]
|
69987
|
+
]
|
69988
|
+
},
|
69989
|
+
"smartphone-banner": {
|
69990
|
+
"large-desktop": [
|
69991
|
+
[
|
69992
|
+
320,
|
69993
|
+
50
|
69994
|
+
],
|
69995
|
+
[
|
69996
|
+
300,
|
69997
|
+
50
|
69998
|
+
],
|
69999
|
+
[
|
70000
|
+
320,
|
70001
|
+
100
|
70002
|
+
]
|
70003
|
+
],
|
70004
|
+
"desktop": [
|
70005
|
+
[
|
70006
|
+
320,
|
70007
|
+
50
|
70008
|
+
],
|
70009
|
+
[
|
70010
|
+
300,
|
70011
|
+
50
|
70012
|
+
],
|
70013
|
+
[
|
70014
|
+
320,
|
70015
|
+
100
|
70016
|
+
]
|
70017
|
+
],
|
70018
|
+
"tablet": [
|
70019
|
+
[
|
70020
|
+
320,
|
70021
|
+
50
|
70022
|
+
],
|
70023
|
+
[
|
70024
|
+
300,
|
70025
|
+
50
|
70026
|
+
],
|
70027
|
+
[
|
70028
|
+
320,
|
70029
|
+
100
|
70030
|
+
]
|
70031
|
+
],
|
70032
|
+
"mobile": [
|
70033
|
+
[
|
70034
|
+
320,
|
70035
|
+
50
|
70036
|
+
],
|
70037
|
+
[
|
70038
|
+
300,
|
70039
|
+
50
|
70040
|
+
],
|
70041
|
+
[
|
70042
|
+
320,
|
70043
|
+
100
|
70044
|
+
]
|
70045
|
+
]
|
70046
|
+
}
|
70047
|
+
};
|
69800
70048
|
var REGIONS = [
|
69801
70049
|
{
|
69802
70050
|
id: 1,
|
@@ -70131,6 +70379,30 @@ var RegionDefinitions = /*#__PURE__*/ function() {
|
|
70131
70379
|
return REGIONS;
|
70132
70380
|
}
|
70133
70381
|
},
|
70382
|
+
{
|
70383
|
+
key: "BREAKPOINTS",
|
70384
|
+
get: function get() {
|
70385
|
+
return BREAKPOINTS;
|
70386
|
+
}
|
70387
|
+
},
|
70388
|
+
{
|
70389
|
+
key: "RULES",
|
70390
|
+
get: function get() {
|
70391
|
+
return RULES;
|
70392
|
+
}
|
70393
|
+
},
|
70394
|
+
{
|
70395
|
+
key: "mapping",
|
70396
|
+
value: function mapping(type) {
|
70397
|
+
return RULES[type];
|
70398
|
+
}
|
70399
|
+
},
|
70400
|
+
{
|
70401
|
+
key: "getBreakpointsSize",
|
70402
|
+
value: function getBreakpointsSize(breakpointLabel) {
|
70403
|
+
return BREAKPOINTS[breakpointLabel];
|
70404
|
+
}
|
70405
|
+
},
|
70134
70406
|
{
|
70135
70407
|
key: "approxRegionByRatio",
|
70136
70408
|
value: function approxRegionByRatio(w2, h) {
|
@@ -71610,6 +71882,13 @@ var PrebidConfigBuilder = /*#__PURE__*/ function() {
|
|
71610
71882
|
return this;
|
71611
71883
|
}
|
71612
71884
|
},
|
71885
|
+
{
|
71886
|
+
key: "setSizeConfiguration",
|
71887
|
+
value: function setSizeConfiguration(config2) {
|
71888
|
+
this.config.sizeConfig = config2;
|
71889
|
+
return this;
|
71890
|
+
}
|
71891
|
+
},
|
71613
71892
|
{
|
71614
71893
|
key: "addConsent",
|
71615
71894
|
value: function addConsent(consent) {
|
@@ -72127,6 +72406,49 @@ var Prebid = /*#__PURE__*/ function() {
|
|
72127
72406
|
}();
|
72128
72407
|
// src/Ads/Providers/Prebidjs/PrebidGAMProvider.ts
|
72129
72408
|
var FALLBACK_GAM_NETWORK_ID = "23256716895";
|
72409
|
+
function toMediaQuery(minWidth) {
|
72410
|
+
return "(min-width: ".concat(minWidth, "px)");
|
72411
|
+
}
|
72412
|
+
function buildPrebidSizeConfig(rules) {
|
72413
|
+
var byBp = {
|
72414
|
+
"large-desktop": /* @__PURE__ */ new Set(),
|
72415
|
+
"desktop": /* @__PURE__ */ new Set(),
|
72416
|
+
"tablet": /* @__PURE__ */ new Set(),
|
72417
|
+
"mobile": /* @__PURE__ */ new Set()
|
72418
|
+
};
|
72419
|
+
Object.values(rules).forEach(function(perType) {
|
72420
|
+
Object.keys(perType).forEach(function(bp) {
|
72421
|
+
var _perType_bp;
|
72422
|
+
(_perType_bp = perType[bp]) === null || _perType_bp === void 0 ? void 0 : _perType_bp.forEach(function(param) {
|
72423
|
+
var _param = _sliced_to_array(param, 2), w2 = _param[0], h = _param[1];
|
72424
|
+
return byBp[bp].add("".concat(w2, "x").concat(h));
|
72425
|
+
});
|
72426
|
+
});
|
72427
|
+
});
|
72428
|
+
var toSizes = function(set) {
|
72429
|
+
return Array.from(set).map(function(s2) {
|
72430
|
+
return s2.split("x").map(Number);
|
72431
|
+
});
|
72432
|
+
};
|
72433
|
+
var ordered = [
|
72434
|
+
"large-desktop",
|
72435
|
+
"desktop",
|
72436
|
+
"tablet",
|
72437
|
+
"mobile"
|
72438
|
+
];
|
72439
|
+
return ordered.filter(function(bp) {
|
72440
|
+
return byBp[bp].size > 0;
|
72441
|
+
}).map(function(bp) {
|
72442
|
+
return {
|
72443
|
+
// @ts-expect-error
|
72444
|
+
mediaQuery: toMediaQuery(RegionDefinitions.BREAKPOINTS[bp]),
|
72445
|
+
sizesSupported: toSizes(byBp[bp]),
|
72446
|
+
labels: [
|
72447
|
+
bp
|
72448
|
+
]
|
72449
|
+
};
|
72450
|
+
});
|
72451
|
+
}
|
72130
72452
|
var PrebidGAMEvents = /*#__PURE__*/ function() {
|
72131
72453
|
function PrebidGAMEvents() {
|
72132
72454
|
_class_call_check(this, PrebidGAMEvents);
|
@@ -72179,38 +72501,6 @@ var GPT = /*#__PURE__*/ function() {
|
|
72179
72501
|
});
|
72180
72502
|
}
|
72181
72503
|
},
|
72182
|
-
{
|
72183
|
-
key: "defineSlot",
|
72184
|
-
value: function defineSlot(slotId, size, containerId, targeting) {
|
72185
|
-
window.googletag.cmd.push(function() {
|
72186
|
-
if (window.googletag.pubads().getSlots().some(function(slot) {
|
72187
|
-
return slot.getSlotElementId() === containerId;
|
72188
|
-
})) {
|
72189
|
-
return;
|
72190
|
-
}
|
72191
|
-
var mrec1 = window.googletag.defineSlot(slotId, size, "".concat(containerId)).addService(window.googletag.pubads());
|
72192
|
-
var mrecmapping = window.googletag.sizeMapping().addSize([
|
72193
|
-
1024,
|
72194
|
-
0
|
72195
|
-
], size).addSize([
|
72196
|
-
728,
|
72197
|
-
0
|
72198
|
-
], size).addSize([
|
72199
|
-
320,
|
72200
|
-
0
|
72201
|
-
], size).addSize([
|
72202
|
-
0,
|
72203
|
-
0
|
72204
|
-
], []).build();
|
72205
|
-
mrec1 === null || mrec1 === void 0 ? void 0 : mrec1.defineSizeMapping(mrecmapping);
|
72206
|
-
if (targeting) {
|
72207
|
-
mrec1.setConfig({
|
72208
|
-
targeting: targeting
|
72209
|
-
});
|
72210
|
-
}
|
72211
|
-
});
|
72212
|
-
}
|
72213
|
-
},
|
72214
72504
|
{
|
72215
72505
|
key: "start",
|
72216
72506
|
value: function start() {
|
@@ -72228,6 +72518,70 @@ var GPT = /*#__PURE__*/ function() {
|
|
72228
72518
|
});
|
72229
72519
|
}
|
72230
72520
|
},
|
72521
|
+
{
|
72522
|
+
key: "defineSlot",
|
72523
|
+
value: function defineSlot(slotId, size, containerId, opts2) {
|
72524
|
+
window.googletag.cmd.push(function() {
|
72525
|
+
if (window.googletag.pubads().getSlots().some(function(slot) {
|
72526
|
+
return slot.getSlotElementId() === containerId;
|
72527
|
+
})) {
|
72528
|
+
return;
|
72529
|
+
}
|
72530
|
+
var mrec1 = window.googletag.defineSlot(slotId, size, "".concat(containerId)).addService(window.googletag.pubads());
|
72531
|
+
var mrecmapping;
|
72532
|
+
if (opts2 === null || opts2 === void 0 ? void 0 : opts2.mapping) {
|
72533
|
+
mrecmapping = window.googletag.sizeMapping();
|
72534
|
+
var sortedBreakpoints = Object.keys(opts2.mapping).sort(function(a, b) {
|
72535
|
+
return parseInt(RegionDefinitions.BREAKPOINTS[b], 10) - parseInt(RegionDefinitions.BREAKPOINTS[a], 10);
|
72536
|
+
});
|
72537
|
+
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
72538
|
+
try {
|
72539
|
+
for(var _iterator = sortedBreakpoints[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
72540
|
+
var bp = _step.value;
|
72541
|
+
mrecmapping = mrecmapping.addSize([
|
72542
|
+
RegionDefinitions.BREAKPOINTS[bp],
|
72543
|
+
0
|
72544
|
+
], opts2.mapping[bp]);
|
72545
|
+
}
|
72546
|
+
} catch (err) {
|
72547
|
+
_didIteratorError = true;
|
72548
|
+
_iteratorError = err;
|
72549
|
+
} finally{
|
72550
|
+
try {
|
72551
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
72552
|
+
_iterator.return();
|
72553
|
+
}
|
72554
|
+
} finally{
|
72555
|
+
if (_didIteratorError) {
|
72556
|
+
throw _iteratorError;
|
72557
|
+
}
|
72558
|
+
}
|
72559
|
+
}
|
72560
|
+
mrecmapping = mrecmapping.build();
|
72561
|
+
} else {
|
72562
|
+
window.googletag.sizeMapping().addSize([
|
72563
|
+
1024,
|
72564
|
+
0
|
72565
|
+
], size).addSize([
|
72566
|
+
728,
|
72567
|
+
0
|
72568
|
+
], size).addSize([
|
72569
|
+
320,
|
72570
|
+
0
|
72571
|
+
], size).addSize([
|
72572
|
+
0,
|
72573
|
+
0
|
72574
|
+
], []).build();
|
72575
|
+
}
|
72576
|
+
mrec1 === null || mrec1 === void 0 ? void 0 : mrec1.defineSizeMapping(mrecmapping);
|
72577
|
+
if (opts2 === null || opts2 === void 0 ? void 0 : opts2.targeting) {
|
72578
|
+
mrec1.setConfig({
|
72579
|
+
targeting: opts2 === null || opts2 === void 0 ? void 0 : opts2.targeting
|
72580
|
+
});
|
72581
|
+
}
|
72582
|
+
});
|
72583
|
+
}
|
72584
|
+
},
|
72231
72585
|
{
|
72232
72586
|
key: "queue",
|
72233
72587
|
value: function queue(callback) {
|
@@ -72288,7 +72642,7 @@ var PrebidGAM = /*#__PURE__*/ function() {
|
|
72288
72642
|
params: {}
|
72289
72643
|
}
|
72290
72644
|
]
|
72291
|
-
}).addConsent(context.consent);
|
72645
|
+
}).setSizeConfiguration(buildPrebidSizeConfig(RegionDefinitions.RULES)).addConsent(context.consent);
|
72292
72646
|
(_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : _window_pbjs.setConfig(configBuilder.build());
|
72293
72647
|
(_window_pbjs1 = window.pbjs) === null || _window_pbjs1 === void 0 ? void 0 : _window_pbjs1.enableAnalytics({
|
72294
72648
|
provider: "smartyads"
|
@@ -72335,31 +72689,6 @@ var PrebidGAM = /*#__PURE__*/ function() {
|
|
72335
72689
|
return gamNetworkId;
|
72336
72690
|
}
|
72337
72691
|
},
|
72338
|
-
{
|
72339
|
-
key: "defineSlots",
|
72340
|
-
value: function defineSlots(options) {
|
72341
|
-
var _window_pbjs_que, _window_pbjs;
|
72342
|
-
var gamNetwork = _PrebidGAM.getProperGAMNetworkId(options);
|
72343
|
-
options.units.forEach(function(unit) {
|
72344
|
-
var _unit_mediaTypes_banner;
|
72345
|
-
var sizes = ((_unit_mediaTypes_banner = unit.mediaTypes.banner) === null || _unit_mediaTypes_banner === void 0 ? void 0 : _unit_mediaTypes_banner.sizes) || [];
|
72346
|
-
GPT.defineSlot("/".concat(gamNetwork, "/banner"), sizes, unit.code);
|
72347
|
-
});
|
72348
|
-
(_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : (_window_pbjs_que = _window_pbjs.que) === null || _window_pbjs_que === void 0 ? void 0 : _window_pbjs_que.push(function() {
|
72349
|
-
var _window_pbjs;
|
72350
|
-
if ((_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : _window_pbjs.addAdUnits) {
|
72351
|
-
window.pbjs.addAdUnits(options.units.filter(function(unit) {
|
72352
|
-
var _window_pbjs;
|
72353
|
-
return !((_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : _window_pbjs.adUnits.some(function(defUnit) {
|
72354
|
-
return "".concat(unit.code) === "".concat(defUnit.code);
|
72355
|
-
}));
|
72356
|
-
}));
|
72357
|
-
} else {
|
72358
|
-
console.error("addAdUnits is not a function.");
|
72359
|
-
}
|
72360
|
-
});
|
72361
|
-
}
|
72362
|
-
},
|
72363
72692
|
{
|
72364
72693
|
key: "defineSlot",
|
72365
72694
|
value: function defineSlot(options, slotId, containerId, adType) {
|
@@ -72370,12 +72699,14 @@ var PrebidGAM = /*#__PURE__*/ function() {
|
|
72370
72699
|
return unit.code === "".concat(slotId);
|
72371
72700
|
});
|
72372
72701
|
var sizes = [];
|
72702
|
+
var mapping = void 0;
|
72373
72703
|
if (!unitDefinition) {
|
72374
72704
|
console.error("No unit definition found for slotId: ".concat(slotId));
|
72375
72705
|
return;
|
72376
72706
|
}
|
72377
72707
|
if (adType) {
|
72378
72708
|
sizes = RegionDefinitions.TYPE_AND_DIMENSIONS[adType];
|
72709
|
+
mapping = RegionDefinitions.mapping(adType);
|
72379
72710
|
} else {
|
72380
72711
|
var _unitDefinition_mediaTypes_banner;
|
72381
72712
|
sizes = ((_unitDefinition_mediaTypes_banner = unitDefinition.mediaTypes.banner) === null || _unitDefinition_mediaTypes_banner === void 0 ? void 0 : _unitDefinition_mediaTypes_banner.sizes) || [];
|
@@ -72387,7 +72718,10 @@ var PrebidGAM = /*#__PURE__*/ function() {
|
|
72387
72718
|
brndts_zid: unitDefinition.zoneId
|
72388
72719
|
};
|
72389
72720
|
}
|
72390
|
-
GPT.defineSlot("/".concat(gamNetworkId, "/").concat(adName), sizes, "".concat(containerId),
|
72721
|
+
GPT.defineSlot("/".concat(gamNetworkId, "/").concat(adName), sizes, "".concat(containerId), {
|
72722
|
+
targeting: targeting,
|
72723
|
+
mapping: mapping
|
72724
|
+
});
|
72391
72725
|
if (!((_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : _window_pbjs.adUnits.some(function(defUnit) {
|
72392
72726
|
return "".concat(containerId) === "".concat(defUnit.code);
|
72393
72727
|
}))) {
|
@@ -72395,15 +72729,51 @@ var PrebidGAM = /*#__PURE__*/ function() {
|
|
72395
72729
|
(_window_pbjs1 = window.pbjs) === null || _window_pbjs1 === void 0 ? void 0 : (_window_pbjs_que = _window_pbjs1.que) === null || _window_pbjs_que === void 0 ? void 0 : _window_pbjs_que.push(function() {
|
72396
72730
|
var _window_pbjs;
|
72397
72731
|
if ((_window_pbjs = window.pbjs) === null || _window_pbjs === void 0 ? void 0 : _window_pbjs.addAdUnits) {
|
72732
|
+
var adUnit = _object_spread_props(_object_spread({}, unitDefinition), {
|
72733
|
+
mediaTypes: _object_spread_props(_object_spread({}, unitDefinition.mediaTypes || {}), {
|
72734
|
+
banner: _object_spread_props(_object_spread({}, unitDefinition.mediaTypes.banner || {}), {
|
72735
|
+
sizes: sizes
|
72736
|
+
})
|
72737
|
+
}),
|
72738
|
+
code: "".concat(containerId)
|
72739
|
+
});
|
72740
|
+
if (mapping) {
|
72741
|
+
var mappedSizes = [];
|
72742
|
+
var sortedBreakpoints = Object.keys(mapping).sort(function(a, b) {
|
72743
|
+
return parseInt(RegionDefinitions.BREAKPOINTS[b], 10) - parseInt(RegionDefinitions.BREAKPOINTS[a], 10);
|
72744
|
+
});
|
72745
|
+
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
72746
|
+
try {
|
72747
|
+
for(var _iterator = sortedBreakpoints[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
72748
|
+
var bp = _step.value;
|
72749
|
+
mappedSizes.push({
|
72750
|
+
minViewPort: [
|
72751
|
+
RegionDefinitions.BREAKPOINTS[bp],
|
72752
|
+
0
|
72753
|
+
],
|
72754
|
+
sizes: opts.mapping[bp]
|
72755
|
+
});
|
72756
|
+
}
|
72757
|
+
} catch (err) {
|
72758
|
+
_didIteratorError = true;
|
72759
|
+
_iteratorError = err;
|
72760
|
+
} finally{
|
72761
|
+
try {
|
72762
|
+
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
72763
|
+
_iterator.return();
|
72764
|
+
}
|
72765
|
+
} finally{
|
72766
|
+
if (_didIteratorError) {
|
72767
|
+
throw _iteratorError;
|
72768
|
+
}
|
72769
|
+
}
|
72770
|
+
}
|
72771
|
+
adUnit.mediaTypes.banner.sizeConfig = mappedSizes;
|
72772
|
+
} else {
|
72773
|
+
adUnit.mediaTypes.banner.sizes = sizes;
|
72774
|
+
}
|
72398
72775
|
window.pbjs.addAdUnits([
|
72399
|
-
|
72400
|
-
mediaTypes: _object_spread_props(_object_spread({}, unitDefinition.mediaTypes || {}), {
|
72401
|
-
banner: _object_spread_props(_object_spread({}, unitDefinition.mediaTypes.banner || {}), {
|
72402
|
-
sizes: sizes
|
72403
|
-
})
|
72404
|
-
}),
|
72405
|
-
code: "".concat(containerId)
|
72406
|
-
})
|
72776
|
+
adUnit
|
72407
72777
|
]);
|
72408
72778
|
} else {
|
72409
72779
|
console.error("addAdUnits is not a function.");
|
@@ -80228,7 +80598,7 @@ var CooldownPresentation = /*#__PURE__*/ function(AbstractPresentation) {
|
|
80228
80598
|
},
|
80229
80599
|
{
|
80230
80600
|
key: "startedPresentation",
|
80231
|
-
value: function startedPresentation(
|
80601
|
+
value: function startedPresentation(opts2) {
|
80232
80602
|
this.stopRetry();
|
80233
80603
|
this.emit("pace");
|
80234
80604
|
this.presentationTimer.resume();
|
@@ -80462,11 +80832,11 @@ var DynamicDurationPresentation = /*#__PURE__*/ function(AbstractPresentation) {
|
|
80462
80832
|
},
|
80463
80833
|
{
|
80464
80834
|
key: "startedPresentation",
|
80465
|
-
value: function startedPresentation(
|
80835
|
+
value: function startedPresentation(opts2) {
|
80466
80836
|
this.stopRetry();
|
80467
80837
|
this.startPacing();
|
80468
|
-
if (
|
80469
|
-
this.presentationTimer.setDuration(
|
80838
|
+
if (opts2.expectedDuration && !this.presentationTimer.isPaused) {
|
80839
|
+
this.presentationTimer.setDuration(opts2.expectedDuration * 1e3);
|
80470
80840
|
}
|
80471
80841
|
this.presentationTimer.resume();
|
80472
80842
|
}
|
@@ -86256,8 +86626,8 @@ function pick(obj) {
|
|
86256
86626
|
}
|
86257
86627
|
var NATIVE_SET_TIMEOUT = globalThisShim.setTimeout;
|
86258
86628
|
var NATIVE_CLEAR_TIMEOUT = globalThisShim.clearTimeout;
|
86259
|
-
function installTimerFunctions(obj,
|
86260
|
-
if (
|
86629
|
+
function installTimerFunctions(obj, opts2) {
|
86630
|
+
if (opts2.useNativeTimers) {
|
86261
86631
|
obj.setTimeoutFn = NATIVE_SET_TIMEOUT.bind(globalThisShim);
|
86262
86632
|
obj.clearTimeoutFn = NATIVE_CLEAR_TIMEOUT.bind(globalThisShim);
|
86263
86633
|
} else {
|
@@ -86330,16 +86700,16 @@ var TransportError = /*#__PURE__*/ function(Error1) {
|
|
86330
86700
|
}(_wrap_native_super(Error));
|
86331
86701
|
var Transport = /*#__PURE__*/ function(Emitter) {
|
86332
86702
|
_inherits(Transport, Emitter);
|
86333
|
-
function Transport(
|
86703
|
+
function Transport(opts2) {
|
86334
86704
|
_class_call_check(this, Transport);
|
86335
86705
|
var _this;
|
86336
86706
|
_this = _call_super(this, Transport);
|
86337
86707
|
_this.writable = false;
|
86338
|
-
installTimerFunctions(_this,
|
86339
|
-
_this.opts =
|
86340
|
-
_this.query =
|
86341
|
-
_this.socket =
|
86342
|
-
_this.supportsBinary = !
|
86708
|
+
installTimerFunctions(_this, opts2);
|
86709
|
+
_this.opts = opts2;
|
86710
|
+
_this.query = opts2.query;
|
86711
|
+
_this.socket = opts2.socket;
|
86712
|
+
_this.supportsBinary = !opts2.forceBase64;
|
86343
86713
|
return _this;
|
86344
86714
|
}
|
86345
86715
|
_create_class(Transport, [
|
@@ -86653,11 +87023,11 @@ var hasCORS = value;
|
|
86653
87023
|
function empty() {}
|
86654
87024
|
var BaseXHR = /*#__PURE__*/ function(Polling) {
|
86655
87025
|
_inherits(BaseXHR, Polling);
|
86656
|
-
function BaseXHR(
|
87026
|
+
function BaseXHR(opts2) {
|
86657
87027
|
_class_call_check(this, BaseXHR);
|
86658
87028
|
var _this;
|
86659
87029
|
_this = _call_super(this, BaseXHR, [
|
86660
|
-
|
87030
|
+
opts2
|
86661
87031
|
]);
|
86662
87032
|
if (typeof location !== "undefined") {
|
86663
87033
|
var isSSL = "https:" === location.protocol;
|
@@ -86665,7 +87035,7 @@ var BaseXHR = /*#__PURE__*/ function(Polling) {
|
|
86665
87035
|
if (!port) {
|
86666
87036
|
port = isSSL ? "443" : "80";
|
86667
87037
|
}
|
86668
|
-
_this.xd = typeof location !== "undefined" &&
|
87038
|
+
_this.xd = typeof location !== "undefined" && opts2.hostname !== location.hostname || port !== opts2.port;
|
86669
87039
|
}
|
86670
87040
|
return _this;
|
86671
87041
|
}
|
@@ -86711,16 +87081,16 @@ var BaseXHR = /*#__PURE__*/ function(Polling) {
|
|
86711
87081
|
}(Polling);
|
86712
87082
|
var Request2 = /*#__PURE__*/ function(Emitter) {
|
86713
87083
|
_inherits(_Request, Emitter);
|
86714
|
-
function _Request(createRequest, uri,
|
87084
|
+
function _Request(createRequest, uri, opts2) {
|
86715
87085
|
_class_call_check(this, _Request);
|
86716
87086
|
var _this;
|
86717
87087
|
_this = _call_super(this, _Request);
|
86718
87088
|
_this.createRequest = createRequest;
|
86719
|
-
installTimerFunctions(_this,
|
86720
|
-
_this._opts =
|
86721
|
-
_this._method =
|
87089
|
+
installTimerFunctions(_this, opts2);
|
87090
|
+
_this._opts = opts2;
|
87091
|
+
_this._method = opts2.method || "GET";
|
86722
87092
|
_this._uri = uri;
|
86723
|
-
_this._data = void 0 !==
|
87093
|
+
_this._data = void 0 !== opts2.data ? opts2.data : null;
|
86724
87094
|
_this._create();
|
86725
87095
|
return _this;
|
86726
87096
|
}
|
@@ -86734,9 +87104,9 @@ var Request2 = /*#__PURE__*/ function(Emitter) {
|
|
86734
87104
|
value: function _create() {
|
86735
87105
|
var _this = this;
|
86736
87106
|
var _a;
|
86737
|
-
var
|
86738
|
-
|
86739
|
-
var xhr = this._xhr = this.createRequest(
|
87107
|
+
var opts2 = pick(this._opts, "agent", "pfx", "key", "passphrase", "cert", "ca", "ciphers", "rejectUnauthorized", "autoUnref");
|
87108
|
+
opts2.xdomain = !!this._opts.xd;
|
87109
|
+
var xhr = this._xhr = this.createRequest(opts2);
|
86740
87110
|
try {
|
86741
87111
|
xhr.open(this._method, this._uri, true);
|
86742
87112
|
try {
|
@@ -86878,13 +87248,13 @@ var hasXHR2 = function() {
|
|
86878
87248
|
}();
|
86879
87249
|
var XHR = /*#__PURE__*/ function(BaseXHR) {
|
86880
87250
|
_inherits(XHR, BaseXHR);
|
86881
|
-
function XHR(
|
87251
|
+
function XHR(opts2) {
|
86882
87252
|
_class_call_check(this, XHR);
|
86883
87253
|
var _this;
|
86884
87254
|
_this = _call_super(this, XHR, [
|
86885
|
-
|
87255
|
+
opts2
|
86886
87256
|
]);
|
86887
|
-
var forceBase64 =
|
87257
|
+
var forceBase64 = opts2 && opts2.forceBase64;
|
86888
87258
|
_this.supportsBinary = hasXHR2 && !forceBase64;
|
86889
87259
|
return _this;
|
86890
87260
|
}
|
@@ -86892,18 +87262,18 @@ var XHR = /*#__PURE__*/ function(BaseXHR) {
|
|
86892
87262
|
{
|
86893
87263
|
key: "request",
|
86894
87264
|
value: function request() {
|
86895
|
-
var
|
86896
|
-
Object.assign(
|
87265
|
+
var opts2 = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
87266
|
+
Object.assign(opts2, {
|
86897
87267
|
xd: this.xd
|
86898
87268
|
}, this.opts);
|
86899
|
-
return new Request2(newRequest, this.uri(),
|
87269
|
+
return new Request2(newRequest, this.uri(), opts2);
|
86900
87270
|
}
|
86901
87271
|
}
|
86902
87272
|
]);
|
86903
87273
|
return XHR;
|
86904
87274
|
}(BaseXHR);
|
86905
|
-
function newRequest(
|
86906
|
-
var xdomain =
|
87275
|
+
function newRequest(opts2) {
|
87276
|
+
var xdomain = opts2.xdomain;
|
86907
87277
|
try {
|
86908
87278
|
if ("undefined" !== typeof XMLHttpRequest && (!xdomain || hasCORS)) {
|
86909
87279
|
return new XMLHttpRequest();
|
@@ -86937,12 +87307,12 @@ var BaseWS = /*#__PURE__*/ function(Transport) {
|
|
86937
87307
|
value: function doOpen() {
|
86938
87308
|
var uri = this.uri();
|
86939
87309
|
var protocols = this.opts.protocols;
|
86940
|
-
var
|
87310
|
+
var opts2 = isReactNative ? {} : pick(this.opts, "agent", "perMessageDeflate", "pfx", "key", "passphrase", "cert", "ca", "ciphers", "rejectUnauthorized", "localAddress", "protocolVersion", "origin", "maxPayload", "family", "checkServerIdentity");
|
86941
87311
|
if (this.opts.extraHeaders) {
|
86942
|
-
|
87312
|
+
opts2.headers = this.opts.extraHeaders;
|
86943
87313
|
}
|
86944
87314
|
try {
|
86945
|
-
this.ws = this.createSocket(uri, protocols,
|
87315
|
+
this.ws = this.createSocket(uri, protocols, opts2);
|
86946
87316
|
} catch (err) {
|
86947
87317
|
return this.emitReserved("error", err);
|
86948
87318
|
}
|
@@ -87042,8 +87412,8 @@ var WS = /*#__PURE__*/ function(BaseWS) {
|
|
87042
87412
|
_create_class(WS, [
|
87043
87413
|
{
|
87044
87414
|
key: "createSocket",
|
87045
|
-
value: function createSocket(uri, protocols,
|
87046
|
-
return !isReactNative ? protocols ? new WebSocketCtor(uri, protocols) : new WebSocketCtor(uri) : new WebSocketCtor(uri, protocols,
|
87415
|
+
value: function createSocket(uri, protocols, opts2) {
|
87416
|
+
return !isReactNative ? protocols ? new WebSocketCtor(uri, protocols) : new WebSocketCtor(uri) : new WebSocketCtor(uri, protocols, opts2);
|
87047
87417
|
}
|
87048
87418
|
},
|
87049
87419
|
{
|
@@ -87221,7 +87591,7 @@ if (withEventListeners) {
|
|
87221
87591
|
}
|
87222
87592
|
var SocketWithoutUpgrade = /*#__PURE__*/ function(Emitter) {
|
87223
87593
|
_inherits(_SocketWithoutUpgrade, Emitter);
|
87224
|
-
function _SocketWithoutUpgrade(uri,
|
87594
|
+
function _SocketWithoutUpgrade(uri, opts2) {
|
87225
87595
|
_class_call_check(this, _SocketWithoutUpgrade);
|
87226
87596
|
var _this;
|
87227
87597
|
_this = _call_super(this, _SocketWithoutUpgrade);
|
@@ -87233,28 +87603,28 @@ var SocketWithoutUpgrade = /*#__PURE__*/ function(Emitter) {
|
|
87233
87603
|
_this._maxPayload = -1;
|
87234
87604
|
_this._pingTimeoutTime = Infinity;
|
87235
87605
|
if (uri && "object" === (typeof uri === "undefined" ? "undefined" : _type_of(uri))) {
|
87236
|
-
|
87606
|
+
opts2 = uri;
|
87237
87607
|
uri = null;
|
87238
87608
|
}
|
87239
87609
|
if (uri) {
|
87240
87610
|
var parsedUri = parse2(uri);
|
87241
|
-
|
87242
|
-
|
87243
|
-
|
87244
|
-
if (parsedUri.query)
|
87245
|
-
} else if (
|
87246
|
-
|
87247
|
-
}
|
87248
|
-
installTimerFunctions(_this,
|
87249
|
-
_this.secure = null !=
|
87250
|
-
if (
|
87251
|
-
|
87252
|
-
}
|
87253
|
-
_this.hostname =
|
87254
|
-
_this.port =
|
87611
|
+
opts2.hostname = parsedUri.host;
|
87612
|
+
opts2.secure = parsedUri.protocol === "https" || parsedUri.protocol === "wss";
|
87613
|
+
opts2.port = parsedUri.port;
|
87614
|
+
if (parsedUri.query) opts2.query = parsedUri.query;
|
87615
|
+
} else if (opts2.host) {
|
87616
|
+
opts2.hostname = parse2(opts2.host).host;
|
87617
|
+
}
|
87618
|
+
installTimerFunctions(_this, opts2);
|
87619
|
+
_this.secure = null != opts2.secure ? opts2.secure : typeof location !== "undefined" && "https:" === location.protocol;
|
87620
|
+
if (opts2.hostname && !opts2.port) {
|
87621
|
+
opts2.port = _this.secure ? "443" : "80";
|
87622
|
+
}
|
87623
|
+
_this.hostname = opts2.hostname || (typeof location !== "undefined" ? location.hostname : "localhost");
|
87624
|
+
_this.port = opts2.port || (typeof location !== "undefined" && location.port ? location.port : _this.secure ? "443" : "80");
|
87255
87625
|
_this.transports = [];
|
87256
87626
|
_this._transportsByName = {};
|
87257
|
-
|
87627
|
+
opts2.transports.forEach(function(t2) {
|
87258
87628
|
var transportName = t2.prototype.name;
|
87259
87629
|
_this.transports.push(transportName);
|
87260
87630
|
_this._transportsByName[transportName] = t2;
|
@@ -87273,7 +87643,7 @@ var SocketWithoutUpgrade = /*#__PURE__*/ function(Emitter) {
|
|
87273
87643
|
},
|
87274
87644
|
transportOptions: {},
|
87275
87645
|
closeOnBeforeunload: false
|
87276
|
-
},
|
87646
|
+
}, opts2);
|
87277
87647
|
_this.opts.path = _this.opts.path.replace(/\/$/, "") + (_this.opts.addTrailingSlash ? "/" : "");
|
87278
87648
|
if (typeof _this.opts.query === "string") {
|
87279
87649
|
_this.opts.query = decode2(_this.opts.query);
|
@@ -87317,14 +87687,14 @@ var SocketWithoutUpgrade = /*#__PURE__*/ function(Emitter) {
|
|
87317
87687
|
query.EIO = protocol;
|
87318
87688
|
query.transport = name;
|
87319
87689
|
if (this.id) query.sid = this.id;
|
87320
|
-
var
|
87690
|
+
var opts2 = Object.assign({}, this.opts, {
|
87321
87691
|
query: query,
|
87322
87692
|
socket: this,
|
87323
87693
|
hostname: this.hostname,
|
87324
87694
|
secure: this.secure,
|
87325
87695
|
port: this.port
|
87326
87696
|
}, this.opts.transportOptions[name]);
|
87327
|
-
return new this._transportsByName[name](
|
87697
|
+
return new this._transportsByName[name](opts2);
|
87328
87698
|
}
|
87329
87699
|
},
|
87330
87700
|
{
|
@@ -87826,9 +88196,9 @@ var SocketWithUpgrade = /*#__PURE__*/ function(SocketWithoutUpgrade1) {
|
|
87826
88196
|
var Socket = /*#__PURE__*/ function(SocketWithUpgrade) {
|
87827
88197
|
_inherits(Socket, SocketWithUpgrade);
|
87828
88198
|
function Socket(uri) {
|
87829
|
-
var
|
88199
|
+
var opts2 = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
87830
88200
|
_class_call_check(this, Socket);
|
87831
|
-
var o2 = (typeof uri === "undefined" ? "undefined" : _type_of(uri)) === "object" ? uri :
|
88201
|
+
var o2 = (typeof uri === "undefined" ? "undefined" : _type_of(uri)) === "object" ? uri : opts2;
|
87832
88202
|
if (!o2.transports || o2.transports && typeof o2.transports[0] === "string") {
|
87833
88203
|
o2.transports = (o2.transports || [
|
87834
88204
|
"polling",
|
@@ -88302,7 +88672,7 @@ var RESERVED_EVENTS2 = Object.freeze({
|
|
88302
88672
|
});
|
88303
88673
|
var Socket2 = /*#__PURE__*/ function(Emitter) {
|
88304
88674
|
_inherits(Socket2, Emitter);
|
88305
|
-
function Socket2(io, nsp,
|
88675
|
+
function Socket2(io, nsp, opts2) {
|
88306
88676
|
_class_call_check(this, Socket2);
|
88307
88677
|
var _this;
|
88308
88678
|
_this = _call_super(this, Socket2);
|
@@ -88317,10 +88687,10 @@ var Socket2 = /*#__PURE__*/ function(Emitter) {
|
|
88317
88687
|
_this.flags = {};
|
88318
88688
|
_this.io = io;
|
88319
88689
|
_this.nsp = nsp;
|
88320
|
-
if (
|
88321
|
-
_this.auth =
|
88690
|
+
if (opts2 && opts2.auth) {
|
88691
|
+
_this.auth = opts2.auth;
|
88322
88692
|
}
|
88323
|
-
_this._opts = Object.assign({},
|
88693
|
+
_this._opts = Object.assign({}, opts2);
|
88324
88694
|
if (_this.io._autoConnect) _this.open();
|
88325
88695
|
return _this;
|
88326
88696
|
}
|
@@ -89218,12 +89588,12 @@ var Socket2 = /*#__PURE__*/ function(Emitter) {
|
|
89218
89588
|
return Socket2;
|
89219
89589
|
}(Emitter);
|
89220
89590
|
// node_modules/socket.io-client/build/esm/contrib/backo2.js
|
89221
|
-
function Backoff(
|
89222
|
-
|
89223
|
-
this.ms =
|
89224
|
-
this.max =
|
89225
|
-
this.factor =
|
89226
|
-
this.jitter =
|
89591
|
+
function Backoff(opts2) {
|
89592
|
+
opts2 = opts2 || {};
|
89593
|
+
this.ms = opts2.min || 100;
|
89594
|
+
this.max = opts2.max || 1e4;
|
89595
|
+
this.factor = opts2.factor || 2;
|
89596
|
+
this.jitter = opts2.jitter > 0 && opts2.jitter <= 1 ? opts2.jitter : 0;
|
89227
89597
|
this.attempts = 0;
|
89228
89598
|
}
|
89229
89599
|
Backoff.prototype.duration = function() {
|
@@ -89250,7 +89620,7 @@ Backoff.prototype.setJitter = function(jitter) {
|
|
89250
89620
|
// node_modules/socket.io-client/build/esm/manager.js
|
89251
89621
|
var Manager = /*#__PURE__*/ function(Emitter) {
|
89252
89622
|
_inherits(Manager, Emitter);
|
89253
|
-
function Manager(uri,
|
89623
|
+
function Manager(uri, opts2) {
|
89254
89624
|
_class_call_check(this, Manager);
|
89255
89625
|
var _this;
|
89256
89626
|
var _a;
|
@@ -89258,30 +89628,30 @@ var Manager = /*#__PURE__*/ function(Emitter) {
|
|
89258
89628
|
_this.nsps = {};
|
89259
89629
|
_this.subs = [];
|
89260
89630
|
if (uri && "object" === (typeof uri === "undefined" ? "undefined" : _type_of(uri))) {
|
89261
|
-
|
89631
|
+
opts2 = uri;
|
89262
89632
|
uri = void 0;
|
89263
89633
|
}
|
89264
|
-
|
89265
|
-
|
89266
|
-
_this.opts =
|
89267
|
-
installTimerFunctions(_this,
|
89268
|
-
_this.reconnection(
|
89269
|
-
_this.reconnectionAttempts(
|
89270
|
-
_this.reconnectionDelay(
|
89271
|
-
_this.reconnectionDelayMax(
|
89272
|
-
_this.randomizationFactor((_a =
|
89634
|
+
opts2 = opts2 || {};
|
89635
|
+
opts2.path = opts2.path || "/socket.io";
|
89636
|
+
_this.opts = opts2;
|
89637
|
+
installTimerFunctions(_this, opts2);
|
89638
|
+
_this.reconnection(opts2.reconnection !== false);
|
89639
|
+
_this.reconnectionAttempts(opts2.reconnectionAttempts || Infinity);
|
89640
|
+
_this.reconnectionDelay(opts2.reconnectionDelay || 1e3);
|
89641
|
+
_this.reconnectionDelayMax(opts2.reconnectionDelayMax || 5e3);
|
89642
|
+
_this.randomizationFactor((_a = opts2.randomizationFactor) !== null && _a !== void 0 ? _a : 0.5);
|
89273
89643
|
_this.backoff = new Backoff({
|
89274
89644
|
min: _this.reconnectionDelay(),
|
89275
89645
|
max: _this.reconnectionDelayMax(),
|
89276
89646
|
jitter: _this.randomizationFactor()
|
89277
89647
|
});
|
89278
|
-
_this.timeout(null ==
|
89648
|
+
_this.timeout(null == opts2.timeout ? 2e4 : opts2.timeout);
|
89279
89649
|
_this._readyState = "closed";
|
89280
89650
|
_this.uri = uri;
|
89281
|
-
var _parser =
|
89651
|
+
var _parser = opts2.parser || esm_exports2;
|
89282
89652
|
_this.encoder = new _parser.Encoder();
|
89283
89653
|
_this.decoder = new _parser.Decoder();
|
89284
|
-
_this._autoConnect =
|
89654
|
+
_this._autoConnect = opts2.autoConnect !== false;
|
89285
89655
|
if (_this._autoConnect) _this.open();
|
89286
89656
|
return _this;
|
89287
89657
|
}
|
@@ -89486,10 +89856,10 @@ var Manager = /*#__PURE__*/ function(Emitter) {
|
|
89486
89856
|
* @return {Socket}
|
89487
89857
|
* @public
|
89488
89858
|
*/ key: "socket",
|
89489
|
-
value: function socket(nsp,
|
89859
|
+
value: function socket(nsp, opts2) {
|
89490
89860
|
var socket = this.nsps[nsp];
|
89491
89861
|
if (!socket) {
|
89492
|
-
socket = new Socket2(this, nsp,
|
89862
|
+
socket = new Socket2(this, nsp, opts2);
|
89493
89863
|
this.nsps[nsp] = socket;
|
89494
89864
|
} else if (this._autoConnect && !socket.active) {
|
89495
89865
|
socket.connect();
|
@@ -89662,31 +90032,31 @@ var Manager = /*#__PURE__*/ function(Emitter) {
|
|
89662
90032
|
}(Emitter);
|
89663
90033
|
// node_modules/socket.io-client/build/esm/index.js
|
89664
90034
|
var cache = {};
|
89665
|
-
function lookup2(uri,
|
90035
|
+
function lookup2(uri, opts2) {
|
89666
90036
|
if ((typeof uri === "undefined" ? "undefined" : _type_of(uri)) === "object") {
|
89667
|
-
|
90037
|
+
opts2 = uri;
|
89668
90038
|
uri = void 0;
|
89669
90039
|
}
|
89670
|
-
|
89671
|
-
var parsed = url(uri,
|
90040
|
+
opts2 = opts2 || {};
|
90041
|
+
var parsed = url(uri, opts2.path || "/socket.io");
|
89672
90042
|
var source = parsed.source;
|
89673
90043
|
var id = parsed.id;
|
89674
90044
|
var path = parsed.path;
|
89675
90045
|
var sameNamespace = cache[id] && path in cache[id]["nsps"];
|
89676
|
-
var newConnection =
|
90046
|
+
var newConnection = opts2.forceNew || opts2["force new connection"] || false === opts2.multiplex || sameNamespace;
|
89677
90047
|
var io;
|
89678
90048
|
if (newConnection) {
|
89679
|
-
io = new Manager(source,
|
90049
|
+
io = new Manager(source, opts2);
|
89680
90050
|
} else {
|
89681
90051
|
if (!cache[id]) {
|
89682
|
-
cache[id] = new Manager(source,
|
90052
|
+
cache[id] = new Manager(source, opts2);
|
89683
90053
|
}
|
89684
90054
|
io = cache[id];
|
89685
90055
|
}
|
89686
|
-
if (parsed.query && !
|
89687
|
-
|
90056
|
+
if (parsed.query && !opts2.query) {
|
90057
|
+
opts2.query = parsed.queryKey;
|
89688
90058
|
}
|
89689
|
-
return io.socket(parsed.path,
|
90059
|
+
return io.socket(parsed.path, opts2);
|
89690
90060
|
}
|
89691
90061
|
Object.assign(lookup2, {
|
89692
90062
|
Manager: Manager,
|