@wscsports/blaze-web-sdk 0.13.1 → 0.13.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.13.1",
3
+ "version": "0.13.3",
4
4
  "main": "publish/index",
5
5
  "types": "publish/index",
6
6
  "files": [
@@ -860,6 +860,7 @@ export declare enum StoryAction {
860
860
  ShareSuccess = "share_success",
861
861
  PlaybackPause = "playback_pause",
862
862
  PlaybackPlay = "playback_play",
863
+ PlaybackInitialStart = "playback_initial_start",
863
864
  Expand = "expand",
864
865
  Minimize = "minimize",
865
866
  ClosedCaptionsOff = "cc_off",
@@ -879,6 +880,7 @@ export declare enum MomentAction {
879
880
  ShareSuccess = "share_success",
880
881
  PlaybackPause = "playback_pause",
881
882
  PlaybackPlay = "playback_play",
883
+ PlaybackInitialStart = "playback_initial_start",
882
884
  ClosedCaptionsOff = "cc_off",
883
885
  ClosedCaptionsOn = "cc_on",
884
886
  CustomActionButtonClick = "custom_action_button_click"
@@ -888,6 +890,7 @@ export declare enum VideoAction {
888
890
  VideoEnd = "video_end",
889
891
  PlaybackPause = "playback_pause",
890
892
  PlaybackPlay = "playback_play",
893
+ PlaybackInitialStart = "playback_initial_start",
891
894
  Seek = "seek",
892
895
  Like = "like",
893
896
  Unlike = "unlike",
@@ -954,6 +957,7 @@ export declare const CLOSED_CAPTIONS_LANGUAGE_CHANGE = "cc-language-change";
954
957
  export declare const WSC_STORAGE_PREFIX: string;
955
958
 
956
959
  export declare const TRANSPARENT = "transparent";
960
+ export declare const WSC_PREFIX = "wsc_";
957
961
 
958
962
  export declare const TABLET_PADDING_BOTTOM = "15px";
959
963
  export declare const DESKTOP_PADDING_BOTTOM = "40px";
@@ -1912,6 +1916,7 @@ declare abstract class ConfigServiceClass extends ConfigServiceClass_base implem
1912
1916
  private _environment;
1913
1917
  private _apiUrl;
1914
1918
  private _analyticsApiUrl;
1919
+ private _sdkStorageCDN;
1915
1920
  private _apiKey;
1916
1921
  private _previewUrl;
1917
1922
  private _previewMomentUrl;
@@ -1941,12 +1946,15 @@ declare abstract class ConfigServiceClass extends ConfigServiceClass_base implem
1941
1946
  protected constructor();
1942
1947
  init(options: IBlazeSDKOptions): Promise<void>;
1943
1948
  private readonly _russiaRegionCDN;
1944
- private _urls;
1945
- private _apiPath;
1946
- private _analyticsUrls;
1949
+ private readonly _urls;
1950
+ private readonly _analyticsUrls;
1951
+ private readonly _globalStorageCDN;
1952
+ private readonly _russiaStorageCDN;
1953
+ private readonly _sdkStorageCDNs;
1947
1954
  private getEnvUrl;
1948
1955
  private getServiceUrl;
1949
1956
  private getAnalyticsUrl;
1957
+ private throwOrLog;
1950
1958
  get environment(): EnvironmentType;
1951
1959
  private set environment(value);
1952
1960
  get sendAnalytics(): boolean;
@@ -1965,6 +1973,7 @@ declare abstract class ConfigServiceClass extends ConfigServiceClass_base implem
1965
1973
  get staticContentType(): ContentType | undefined;
1966
1974
  set staticContentType(value: ContentType);
1967
1975
  get apiUrl(): string;
1976
+ get sdkStorageCDN(): string;
1968
1977
  get apiKey(): string;
1969
1978
  get previewUrl(): string;
1970
1979
  get previewMomentsUrl(): string;
@@ -3669,6 +3678,7 @@ export declare class BlazeVideoSeekBar extends HTMLElement {
3669
3678
  constructor();
3670
3679
  connectedCallback(): void;
3671
3680
  disconnectedCallback(): void;
3681
+ private addTransitionStyle;
3672
3682
  setTheme(style: BlazeVideosPlayerSeekBarStyle): void;
3673
3683
  private createPlaybackPart;
3674
3684
  private setupEventListeners;