bitmovin-analytics 2.43.0 → 2.43.2
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/README.md +5 -5
- package/bitmovin-analytics-bitmovin-player-web-x.d.ts +109 -0
- package/bitmovin-analytics-bitmovin-player-web-x.js +12 -0
- package/bitmovin-analytics-bitmovin-player-web-x.js.map +1 -0
- package/bitmovin-analytics-bitmovin-player.d.ts +232 -0
- package/bitmovin-analytics-bitmovin-player.js +12 -0
- package/bitmovin-analytics-bitmovin-player.js.map +1 -0
- package/bitmovin-analytics.d.ts +9 -9
- package/bitmovin-analytics.js +12 -0
- package/bitmovin-analytics.js.map +1 -0
- package/package.json +1 -1
- package/bitmovinanalytics.min.js +0 -12
- package/bitmovinanalytics.min.js.map +0 -1
package/bitmovin-analytics.d.ts
CHANGED
|
@@ -189,6 +189,15 @@ export declare class Bitmovin8Adapter implements AdapterAPI {
|
|
|
189
189
|
setCustomDataOnce(values: CustomDataValues): void;
|
|
190
190
|
sourceChange(config: AnalyticsConfig): void;
|
|
191
191
|
}
|
|
192
|
+
export declare const PlayerModule: {
|
|
193
|
+
readonly name: "analytics";
|
|
194
|
+
readonly module: {
|
|
195
|
+
readonly Analytics: typeof Bitmovin8Adapter;
|
|
196
|
+
};
|
|
197
|
+
readonly hooks: {
|
|
198
|
+
readonly setup: (module: any, player: any) => Promise<any>;
|
|
199
|
+
};
|
|
200
|
+
};
|
|
192
201
|
export declare const BitmovinPwxAnalyticsPackage: any;
|
|
193
202
|
export declare class CAFv3Adapter implements AdapterAPI {
|
|
194
203
|
private readonly internalAdapter;
|
|
@@ -300,15 +309,6 @@ declare enum Player {
|
|
|
300
309
|
SHAKA = "shaka",
|
|
301
310
|
VIDEOJS = "videojs"
|
|
302
311
|
}
|
|
303
|
-
export declare const PlayerModule: {
|
|
304
|
-
readonly name: "analytics";
|
|
305
|
-
readonly module: {
|
|
306
|
-
readonly Analytics: typeof Bitmovin8Adapter;
|
|
307
|
-
};
|
|
308
|
-
readonly hooks: {
|
|
309
|
-
readonly setup: (module: any, player: any) => Promise<any>;
|
|
310
|
-
};
|
|
311
|
-
};
|
|
312
312
|
declare const VERSION: string;
|
|
313
313
|
export declare const adapters: {
|
|
314
314
|
AmazonIVSAdapter: typeof AmazonIVSAdapter;
|