bitmovin-analytics 2.54.0 → 2.55.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.
@@ -256,11 +256,15 @@ export interface AdapterAPI {
256
256
  export type AdPosition = "preroll" | "midroll" | "postroll";
257
257
  export type SsaiAdBreakMetadata = {
258
258
  adPosition?: AdPosition;
259
+ expectedPaidAds?: number;
260
+ expectedSlates?: number;
259
261
  };
260
262
  export type SsaiAdMetadata = {
261
263
  adId?: string;
262
264
  adSystem?: string;
263
265
  customData?: CustomDataValues;
266
+ durationInMs?: number;
267
+ isSlate?: boolean;
264
268
  };
265
269
  export type SsaiAdQuartile = "first" | "midpoint" | "third" | "completed";
266
270
  export type SsaiAdQuartileMetadata = {