bitmovin-analytics 2.50.1 → 2.52.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.
@@ -388,6 +388,27 @@ export declare class ShakaAdapter implements AdapterAPI {
388
388
  setCustomDataOnce(values: CustomDataValues): void;
389
389
  sourceChange(config: AnalyticsConfig): void;
390
390
  }
391
+ export declare class THEOplayerAdapter implements AdapterAPI {
392
+ private readonly internalAdapter;
393
+ private readonly analytics;
394
+ constructor(config: AnalyticsConfig, player: any, opts?: AnalyticsStateMachineOptions);
395
+ readonly ssai: SsaiApi;
396
+ static readonly version: string;
397
+ get version(): string;
398
+ getCurrentImpressionId(): string | undefined;
399
+ getUserId(): string | undefined;
400
+ setCustomData(values: CustomDataValues): void;
401
+ setCustomDataOnce(values: CustomDataValues): void;
402
+ sourceChange(config: AnalyticsConfig): void;
403
+ programChange(sourceMetadata: {
404
+ title?: string;
405
+ videoId?: string;
406
+ cdnProvider?: string;
407
+ path?: string;
408
+ isLive?: boolean;
409
+ customData?: CustomDataValues;
410
+ }): void;
411
+ }
391
412
  export declare class VideojsAdapter implements AdapterAPI {
392
413
  private readonly internalAdapter;
393
414
  private readonly analytics;
@@ -420,6 +441,7 @@ declare enum Player {
420
441
  JW = "jw",
421
442
  RADIANT = "radiant",
422
443
  SHAKA = "shaka",
444
+ THEOPLAYER = "theoplayer",
423
445
  VIDEOJS = "videojs"
424
446
  }
425
447
  declare const VERSION: string;
@@ -431,6 +453,7 @@ export declare const adapters: {
431
453
  HTMLVideoElementAdapter: typeof HTMLVideoElementAdapter;
432
454
  HlsAdapter: typeof HlsAdapter;
433
455
  ShakaAdapter: typeof ShakaAdapter;
456
+ THEOplayerAdapter: typeof THEOplayerAdapter;
434
457
  VideojsAdapter: typeof VideojsAdapter;
435
458
  };
436
459
  declare const _default: {