hls.js 1.6.0-beta.2.0.canary.10932 → 1.6.0-beta.2.0.canary.10933

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/hls.d.mts CHANGED
@@ -1888,6 +1888,10 @@ declare class Hls implements HlsEventEmitter {
1888
1888
  * set to true when startLoad is called before MANIFEST_PARSED event
1889
1889
  */
1890
1890
  get forceStartLoad(): boolean;
1891
+ /**
1892
+ * ContentSteering pathways getter
1893
+ */
1894
+ get pathways(): string[];
1891
1895
  /**
1892
1896
  * ContentSteering pathwayPriority getter/setter
1893
1897
  */
package/dist/hls.d.ts CHANGED
@@ -1888,6 +1888,10 @@ declare class Hls implements HlsEventEmitter {
1888
1888
  * set to true when startLoad is called before MANIFEST_PARSED event
1889
1889
  */
1890
1890
  get forceStartLoad(): boolean;
1891
+ /**
1892
+ * ContentSteering pathways getter
1893
+ */
1894
+ get pathways(): string[];
1891
1895
  /**
1892
1896
  * ContentSteering pathwayPriority getter/setter
1893
1897
  */
package/dist/hls.js CHANGED
@@ -1059,7 +1059,7 @@
1059
1059
  // Some browsers don't allow to use bind on console object anyway
1060
1060
  // fallback to default if needed
1061
1061
  try {
1062
- newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.6.0-beta.2.0.canary.10932");
1062
+ newLogger.log("Debug logs enabled for \"" + context + "\" in hls.js version " + "1.6.0-beta.2.0.canary.10933");
1063
1063
  } catch (e) {
1064
1064
  /* log fn threw an exception. All logger methods are no-ops. */
1065
1065
  return createLogger();
@@ -16348,7 +16348,7 @@
16348
16348
  return !remuxResult.audio && !remuxResult.video && !remuxResult.text && !remuxResult.id3 && !remuxResult.initSegment;
16349
16349
  }
16350
16350
 
16351
- var version = "1.6.0-beta.2.0.canary.10932";
16351
+ var version = "1.6.0-beta.2.0.canary.10933";
16352
16352
 
16353
16353
  // ensure the worker ends up in the bundle
16354
16354
  // If the worker should not be included this gets aliased to empty.js
@@ -32305,6 +32305,14 @@
32305
32305
  set: function set(newLevel) {
32306
32306
  this._startLevel = newLevel;
32307
32307
  }
32308
+ }, {
32309
+ key: "pathways",
32310
+ get: function get() {
32311
+ if (this.steering) {
32312
+ return this.steering.pathways();
32313
+ }
32314
+ return [];
32315
+ }
32308
32316
  }, {
32309
32317
  key: "pathwayPriority",
32310
32318
  get: function get() {
@@ -35451,6 +35459,15 @@
35451
35459
  return this.streamController.forceStartLoad;
35452
35460
  }
35453
35461
 
35462
+ /**
35463
+ * ContentSteering pathways getter
35464
+ */
35465
+ }, {
35466
+ key: "pathways",
35467
+ get: function get() {
35468
+ return this.levelController.pathways;
35469
+ }
35470
+
35454
35471
  /**
35455
35472
  * ContentSteering pathwayPriority getter/setter
35456
35473
  */
package/dist/hls.js.d.ts CHANGED
@@ -1888,6 +1888,10 @@ declare class Hls implements HlsEventEmitter {
1888
1888
  * set to true when startLoad is called before MANIFEST_PARSED event
1889
1889
  */
1890
1890
  get forceStartLoad(): boolean;
1891
+ /**
1892
+ * ContentSteering pathways getter
1893
+ */
1894
+ get pathways(): string[];
1891
1895
  /**
1892
1896
  * ContentSteering pathwayPriority getter/setter
1893
1897
  */