@tivio/sdk-react 9.7.0 → 9.7.1

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/dist/index.d.ts CHANGED
@@ -1643,7 +1643,8 @@ export declare enum ForbiddenReason {
1643
1643
  NAME_CONTAINS_INVALID_CHAR = "NAME_CONTAINS_INVALID_CHAR",
1644
1644
  USER_ACCOUNT_LOCKED = "USER_ACCOUNT_LOCKED",
1645
1645
  USER_NOT_FOUND = "USER_NOT_FOUND",
1646
- UNSUPPORTED_BROWSER = "UNSUPPORTED_BROWSER"
1646
+ UNSUPPORTED_BROWSER = "UNSUPPORTED_BROWSER",
1647
+ ANONYMOUS_USER = "ANONYMOUS_USER"
1647
1648
  }
1648
1649
 
1649
1650
  /**
@@ -5604,7 +5605,7 @@ export declare interface StartLiveStreamResponse {
5604
5605
  error?: string;
5605
5606
  }
5606
5607
 
5607
- export declare type StaticAdsBreak = StaticAdsBreakPostrollPreroll | StaticAdsBreakMidroll;
5608
+ export declare type StaticAdsBreak = StaticAdsBreakPostrollPreroll | StaticAdsBreakMidroll | StaticAdsBreakReplacement;
5608
5609
 
5609
5610
  export declare interface StaticAdsBreakMidroll {
5610
5611
  type: 'midroll';
@@ -5617,6 +5618,11 @@ declare interface StaticAdsBreakPostrollPreroll {
5617
5618
  url: string;
5618
5619
  }
5619
5620
 
5621
+ export declare interface StaticAdsBreakReplacement {
5622
+ type: 'replacement';
5623
+ url: string;
5624
+ }
5625
+
5620
5626
  /**
5621
5627
  * @public
5622
5628
  */