@wscsports/blaze-web-sdk 0.35.2 → 0.35.4

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.
Files changed (3) hide show
  1. package/index.d.ts +5 -1
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -785,6 +785,8 @@ export type ContentEntities = {
785
785
  gameId: string | null;
786
786
  teamId: string | null;
787
787
  playerId: string | null;
788
+ roundId?: string | null;
789
+ seasonId?: string | null;
788
790
  };
789
791
  export type BlazeFollowEntity = {
790
792
  storageFile: {
@@ -870,8 +872,9 @@ export interface IBlazeSDKOptions {
870
872
  apiKey: string;
871
873
  environment?: EnvironmentType;
872
874
  sendAnalytics?: boolean;
873
- previewUrl?: string;
875
+ previewStoryUrl?: string;
874
876
  previewMomentUrl?: string;
877
+ previewVideoUrl?: string;
875
878
  doNotTrack?: boolean;
876
879
  disableAnalytics?: boolean;
877
880
  disableUserActivity?: boolean;
@@ -894,6 +897,7 @@ export interface IBlazeSDKOptions {
894
897
  disableAutoLoadingContent?: boolean;
895
898
  followedEntities?: string[];
896
899
  preferredLanguage?: string;
900
+ metaPixelId?: string;
897
901
  /** Timeout in milliseconds for CDN requests. Minimum value is 10000ms — values below this threshold are ignored. */
898
902
  cdnTimeout?: number;
899
903
  }