@tivio/sdk-react 9.8.0 → 10.1.0
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/CHANGELOG.md +9 -45
- package/README.md +5 -839
- package/README.md.bak +5 -839
- package/dist/index.d.ts +1511 -582
- package/dist/index.js +1 -1
- package/dist/sdk-react.d.ts +1665 -636
- package/package.json +11 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,49 +1,13 @@
|
|
|
1
1
|
## Changelog
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
* minor:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
*
|
|
8
|
-
*
|
|
9
|
-
* minor:
|
|
10
|
-
* minor:
|
|
11
|
-
|
|
12
|
-
## 9.7.1
|
|
13
|
-
* patch: add replacement type to ad static config
|
|
14
|
-
|
|
15
|
-
## 9.7.0
|
|
16
|
-
* minor: add optional enableGtmPlayerEvents parameter into TivioConfig
|
|
17
|
-
* minor: add companion-ads events
|
|
18
|
-
* minor: add replacement of VAST macros and Vasterix templates
|
|
19
|
-
* minor: add possibility to use Single Sign-On (SSO) for all subdomains under the same parent domain
|
|
20
|
-
* minor: add optional enableGtmPlayerEvents parameter into TivioConfig
|
|
21
|
-
* minor: add getTagsByIds method
|
|
22
|
-
|
|
23
|
-
## 9.6.0
|
|
24
|
-
* minor: change ad_started and ad_ended events to ad-started and ad-ended
|
|
25
|
-
* patch: fix crash when custom token in cookies is expired or invalid
|
|
26
|
-
* minor: add userAuthCallbacks -> onGoToLogin and onGoToRegistration to WebPlayerProps
|
|
27
|
-
|
|
28
|
-
## 9.5.0
|
|
29
|
-
* minor: add possibility to use Single Sign-On (SSO) for all subdomains under the same parent domain
|
|
30
|
-
* minor: add staticAdsConfig to source types
|
|
31
|
-
* minor: add ad_started and ad_ended events to video controller
|
|
32
|
-
* minor: add ctaElement to ad_started event
|
|
33
|
-
* minor: add customAdMetadata to ad_started event
|
|
34
|
-
|
|
35
|
-
## 9.4.0
|
|
36
|
-
* minor: add support for multiple urls in external sources
|
|
37
|
-
|
|
38
|
-
## 9.3.1
|
|
39
|
-
* patch: fix documentation
|
|
40
|
-
|
|
41
|
-
## 9.3.0
|
|
42
|
-
* minor: add getFavorites, getWatchPositions, getWatchHistory methods to user entity
|
|
43
|
-
* minor: add GetUserProfileDataOptions type to exported types
|
|
44
|
-
* minor: add FavoriteWithData and WatchPositionWithData types to exported types
|
|
45
|
-
* minor: add profileId to FavoriteWithData and WatchPositionWithData types
|
|
46
|
-
* minor: update documentation
|
|
2
|
+
* 10.1.0
|
|
3
|
+
* minor: expose useInteractiveWidget, usePollWidget, useQuizWidget, useRemoteController
|
|
4
|
+
* minor: expose useRemoteController hook
|
|
5
|
+
|
|
6
|
+
* 10.0.0
|
|
7
|
+
* major: **BREAKING** new purchase flow — `PurchasableMonetization.frequency` is now a structured object (`{ unit, value, title }`) instead of a plain `MONETIZATION_FREQUENCY` enum value. Replace `frequency === MONETIZATION_FREQUENCY.X` checks with `frequency?.unit === MONETIZATION_FREQUENCY.X`. The new `value` and `title` fields make it easier to render recurring prices (e.g. "9.99 € / 3 months") without hand-rolling the period label.
|
|
8
|
+
* major: **BREAKING** `TileProps` renamed to `TileComponentProps` to avoid a naming collision with the `TileProps` exported from row types
|
|
9
|
+
* minor: support Single Sign-On (SSO) across all subdomains under the same parent domain
|
|
10
|
+
* minor: add `getTagsByIds` method for batch tag lookup
|
|
47
11
|
|
|
48
12
|
* 9.2.0
|
|
49
13
|
* minor: remove deprecated TivioWidget component
|