@tivio/sdk-react 9.1.3-alpha2 → 9.1.3-alpha4
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/distTypes/components/ContextProvider.d.ts +8 -0
- package/dist/distTypes/components/PlayerProvider.d.ts +28 -0
- package/dist/distTypes/components/TivioProvider.d.ts +24 -0
- package/dist/distTypes/components/TivioWidget.d.ts +10 -0
- package/dist/distTypes/components/TivioWidgetError.d.ts +13 -0
- package/dist/distTypes/components/TivioWidgetLoader.d.ts +9 -0
- package/dist/distTypes/components/TvTivioProvider.d.ts +10 -0
- package/dist/distTypes/components/hooks/index.d.ts +19 -0
- package/dist/distTypes/components/hooks/playerHooks.d.ts +43 -0
- package/dist/distTypes/components/hooks/useApplyInviteCode.d.ts +18 -0
- package/dist/distTypes/components/hooks/useCancelSubscription.d.ts +5 -0
- package/dist/distTypes/components/hooks/useChannelSource.d.ts +13 -0
- package/dist/distTypes/components/hooks/useError.d.ts +10 -0
- package/dist/distTypes/components/hooks/useIsLoaded.d.ts +6 -0
- package/dist/distTypes/components/hooks/useIsMonetizationPurchased.d.ts +6 -0
- package/dist/distTypes/components/hooks/useItemsInRow.d.ts +11 -0
- package/dist/distTypes/components/hooks/useOrganizationSubscriptions.d.ts +11 -0
- package/dist/distTypes/components/hooks/usePurchaseRecovery.d.ts +15 -0
- package/dist/distTypes/components/hooks/usePurchaseSubscription.d.ts +5 -0
- package/dist/distTypes/components/hooks/useRowsInScreen.d.ts +8 -0
- package/dist/distTypes/components/hooks/useSearch.d.ts +8 -0
- package/dist/distTypes/components/hooks/useTaggedVideos.d.ts +11 -0
- package/dist/distTypes/components/hooks/useTivio.d.ts +8 -0
- package/dist/distTypes/components/hooks/useTransactionPayment.d.ts +5 -0
- package/dist/distTypes/components/hooks/useTvChannel.d.ts +10 -0
- package/dist/distTypes/components/hooks/useUser.d.ts +9 -0
- package/dist/distTypes/components/hooks/useVideo.d.ts +9 -0
- package/dist/distTypes/components/hooks/useVoucher.d.ts +48 -0
- package/dist/distTypes/config.d.ts +22 -0
- package/dist/distTypes/index.d.ts +21 -0
- package/dist/distTypes/info.d.ts +5 -0
- package/dist/distTypes/services/bundleLoader.d.ts +19 -0
- package/dist/distTypes/services/bundlePromise.d.ts +8 -0
- package/dist/distTypes/services/dependencyResolver.d.ts +17 -0
- package/dist/distTypes/services/gdpr.d.ts +4 -0
- package/dist/distTypes/services/localFetch/coreReactDomDist.d.ts +1 -0
- package/dist/distTypes/services/localFetch/none.d.ts +1 -0
- package/dist/distTypes/services/logger.d.ts +26 -0
- package/dist/distTypes/services/login.d.ts +9 -0
- package/dist/distTypes/services/packageLoader.d.ts +6 -0
- package/dist/distTypes/services/pubSub.d.ts +17 -0
- package/dist/distTypes/services/sentry.d.ts +4 -0
- package/dist/distTypes/types/bundle.types.d.ts +88 -0
- package/dist/distTypes/types/common.d.ts +14 -0
- package/dist/distTypes/types/config.types.d.ts +0 -0
- package/dist/distTypes/types/types.d.ts +19 -0
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/dist/index.d.ts +0 -6829
- package/dist/sdk-react.d.ts +0 -7177
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tivio/sdk-react",
|
3
|
-
"version": "9.1.3-
|
3
|
+
"version": "9.1.3-alpha4",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"typings": "dist/index.d.ts",
|
6
6
|
"source": "src/index.ts",
|
@@ -11,7 +11,7 @@
|
|
11
11
|
"scripts": {
|
12
12
|
"build": "yarn clean && webpack",
|
13
13
|
"build:dev": "cat ./.env.dev > ./.env && yarn build --config=webpack.config.dev.js && yarn typesRollup",
|
14
|
-
"build:prod": "cat ./.env.prod > ./.env && yarn build --config=webpack.config.prod.js
|
14
|
+
"build:prod": "cat ./.env.prod > ./.env && yarn build --config=webpack.config.prod.js",
|
15
15
|
"turbo:build:libs:dev": "yarn build:dev",
|
16
16
|
"turbo:build:libs:prod": "yarn build:prod",
|
17
17
|
"build:ci": "yarn build:prod",
|
@@ -38,7 +38,7 @@
|
|
38
38
|
"@material-ui/core": "^4.11.2",
|
39
39
|
"@material-ui/icons": "^4.11.2",
|
40
40
|
"@sentry/browser": "^6.1.0",
|
41
|
-
"@tivio/common": "1.1.
|
41
|
+
"@tivio/common": "1.1.127",
|
42
42
|
"dayjs": "^1.11.0",
|
43
43
|
"es7-object-polyfill": "^1.0.1",
|
44
44
|
"firebase": "8.10.1",
|