@wscsports/blaze-web-sdk 0.14.1 → 0.14.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wscsports/blaze-web-sdk",
3
- "version": "0.14.1",
3
+ "version": "0.14.3",
4
4
  "main": "publish/index",
5
5
  "types": "publish/index",
6
6
  "files": [
@@ -1065,7 +1065,7 @@ interface IAdInfoConfiguration {
1065
1065
  type: 'Story' | 'Moment';
1066
1066
  }
1067
1067
  export type IAdContext = Record<string, string>;
1068
- interface IBaseAdInfo {
1068
+ export interface IBaseAdInfo {
1069
1069
  configuration?: IAdInfoConfiguration;
1070
1070
  context?: IAdContext;
1071
1071
  externalAdServerId?: string;
@@ -3468,6 +3468,7 @@ export type IWidgetViewOptions = IWidgetViewOptionsWithLabels | IWidgetViewOptio
3468
3468
  export type WidgetType = 'Row' | 'Grid';
3469
3469
 
3470
3470
  export declare function isImaAdInfo(ad: IAdInfo): ad is IImaAdInfo;
3471
+ export declare function addContextToCustomTargeting(adInfo: IBaseAdInfo, customTargeting: Record<string, string | string[]>): void;
3471
3472
 
3472
3473
  export declare const convertCcLanguageToState: (data: IClosedCaption[] | undefined, language?: CcLanguageCode) => ClosedCaptionsState;
3473
3474
 
@@ -4501,7 +4502,6 @@ export declare class BlazeWidgetCustomLayout extends WidgetBaseLayout implements
4501
4502
  reload(): void;
4502
4503
  updateWidgetUI(): void;
4503
4504
  setMaxItemsDisplaySize(size: number): void;
4504
- setDelegations(delegates: Record<Delegation, EventListenerOrEventListenerObject>): void;
4505
4505
  updateOverrideStyles(): void;
4506
4506
  setId(id: string): void;
4507
4507
  protected handlePostContentLoad(isStoryContentType: boolean, isMomentContentType: boolean, isVideoContentType: boolean): Promise<void>;