bitmovin-analytics 2.29.3-beta.1 → 2.29.4

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.
@@ -93,6 +93,9 @@ export interface AdapterAPI {
93
93
  setCustomDataOnce: (values: CustomDataValues) => void;
94
94
  sourceChange: (config: AnalyticsConfig) => void;
95
95
  }
96
+ export interface AnalyticsStateMachineOptions {
97
+ starttime: any;
98
+ }
96
99
  export interface Timespan {
97
100
  start: number;
98
101
  end: number;
@@ -356,7 +359,6 @@ export interface StateMachineCallbacks {
356
359
  setVideoTimeStartFromEvent: (event: any) => void;
357
360
  videoStartFailed: (event: Readonly<VideoStartFailedEvent>, sendRequest: boolean) => void;
358
361
  source_changing: (duration: number, state: string, event: any) => void;
359
- ready: (duration: number, state: string, event: any) => void;
360
362
  startCasting: (duration: number, event: any) => void;
361
363
  casting: (duration: number, event: any) => void;
362
364
  manualSourceChange: (event: {
@@ -559,12 +561,6 @@ declare abstract class Adapter {
559
561
  protected markPlayerInstanceAsAugmented(player: any): void;
560
562
  private guardAgainstNotInitializedAnalytics;
561
563
  }
562
- export declare class AmazonIVSAdapter extends Adapter implements AdapterAPI {
563
- constructor(config: AnalyticsConfig, player: any);
564
- }
565
- export interface AnalyticsStateMachineOptions {
566
- starttime: any;
567
- }
568
564
  export declare class Bitmovin8Adapter extends Adapter implements AdapterAPI {
569
565
  constructor(player: any, opts?: AnalyticsStateMachineOptions);
570
566
  private wrapPlayerLoad;
@@ -627,7 +623,6 @@ export declare const adapters: {
627
623
  DashjsAdapter: typeof DashjsAdapter;
628
624
  CAFv3Adapter: typeof CAFv3Adapter;
629
625
  HTMLVideoElementAdapter: typeof HTMLVideoElementAdapter;
630
- AmazonIVSAdapter: typeof AmazonIVSAdapter;
631
626
  };
632
627
  declare const _default: {
633
628
  PlayerModule: {