@wscsports/blaze-web-sdk 0.1.45 → 0.1.47

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.1.45",
3
+ "version": "0.1.47",
4
4
  "main": "publish/index",
5
5
  "types": "publish/index",
6
6
  "files": [
@@ -103,6 +103,8 @@ export declare class URLManager {
103
103
  static isBackWasCalled: boolean;
104
104
  static resetLocation(): void;
105
105
  static updateLocationStoryHash(story?: IStory): void;
106
+ static removeApiKeyFromUrl(): void;
107
+ static getApiKeyFromUrl(): string;
106
108
  }
107
109
 
108
110
  export declare class BlazeAlert extends BaseWidget {
@@ -1439,6 +1441,7 @@ export * from './regex.utils';
1439
1441
  export * from './stopwatch';
1440
1442
 
1441
1443
  export declare const RegexHash: RegExp;
1444
+ export declare const RegexHashApiKey: RegExp;
1442
1445
 
1443
1446
  export declare class Stopwatch {
1444
1447
  isRunning: boolean;
@@ -1724,6 +1727,7 @@ export declare class BlazeWidgetScrollable extends BaseWidget {
1724
1727
  export declare class BlazeWidgetSDK extends BaseWidget {
1725
1728
  static isMuted: boolean;
1726
1729
  static isPlaying: boolean;
1730
+ static isPlayedByUrl: boolean;
1727
1731
  modalStoryIds: BlazeWidgetStoryModal | undefined;
1728
1732
  onResizeEvent: (this: Window, ev: UIEvent) => void;
1729
1733
  static get observedAttributes(): string[];
@@ -2071,6 +2075,7 @@ export declare class BlazeWidgetStory extends HTMLElement {
2071
2075
  goNextPage(): void;
2072
2076
  goPrevPage(): void;
2073
2077
  disconnectedCallback(): void;
2078
+ renderCtaButton(pageIndex: number): void;
2074
2079
  render(): void;
2075
2080
  }
2076
2081