@tivio/sdk-react 9.1.3-alpha3 → 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.
Files changed (50) hide show
  1. package/dist/distTypes/components/ContextProvider.d.ts +8 -0
  2. package/dist/distTypes/components/PlayerProvider.d.ts +28 -0
  3. package/dist/distTypes/components/TivioProvider.d.ts +24 -0
  4. package/dist/distTypes/components/TivioWidget.d.ts +10 -0
  5. package/dist/distTypes/components/TivioWidgetError.d.ts +13 -0
  6. package/dist/distTypes/components/TivioWidgetLoader.d.ts +9 -0
  7. package/dist/distTypes/components/TvTivioProvider.d.ts +10 -0
  8. package/dist/distTypes/components/hooks/index.d.ts +19 -0
  9. package/dist/distTypes/components/hooks/playerHooks.d.ts +43 -0
  10. package/dist/distTypes/components/hooks/useApplyInviteCode.d.ts +18 -0
  11. package/dist/distTypes/components/hooks/useCancelSubscription.d.ts +5 -0
  12. package/dist/distTypes/components/hooks/useChannelSource.d.ts +13 -0
  13. package/dist/distTypes/components/hooks/useError.d.ts +10 -0
  14. package/dist/distTypes/components/hooks/useIsLoaded.d.ts +6 -0
  15. package/dist/distTypes/components/hooks/useIsMonetizationPurchased.d.ts +6 -0
  16. package/dist/distTypes/components/hooks/useItemsInRow.d.ts +11 -0
  17. package/dist/distTypes/components/hooks/useOrganizationSubscriptions.d.ts +11 -0
  18. package/dist/distTypes/components/hooks/usePurchaseRecovery.d.ts +15 -0
  19. package/dist/distTypes/components/hooks/usePurchaseSubscription.d.ts +5 -0
  20. package/dist/distTypes/components/hooks/useRowsInScreen.d.ts +8 -0
  21. package/dist/distTypes/components/hooks/useSearch.d.ts +8 -0
  22. package/dist/distTypes/components/hooks/useTaggedVideos.d.ts +11 -0
  23. package/dist/distTypes/components/hooks/useTivio.d.ts +8 -0
  24. package/dist/distTypes/components/hooks/useTransactionPayment.d.ts +5 -0
  25. package/dist/distTypes/components/hooks/useTvChannel.d.ts +10 -0
  26. package/dist/distTypes/components/hooks/useUser.d.ts +9 -0
  27. package/dist/distTypes/components/hooks/useVideo.d.ts +9 -0
  28. package/dist/distTypes/components/hooks/useVoucher.d.ts +48 -0
  29. package/dist/distTypes/config.d.ts +22 -0
  30. package/dist/distTypes/index.d.ts +21 -0
  31. package/dist/distTypes/info.d.ts +5 -0
  32. package/dist/distTypes/services/bundleLoader.d.ts +19 -0
  33. package/dist/distTypes/services/bundlePromise.d.ts +8 -0
  34. package/dist/distTypes/services/dependencyResolver.d.ts +17 -0
  35. package/dist/distTypes/services/gdpr.d.ts +4 -0
  36. package/dist/distTypes/services/localFetch/coreReactDomDist.d.ts +1 -0
  37. package/dist/distTypes/services/localFetch/none.d.ts +1 -0
  38. package/dist/distTypes/services/logger.d.ts +26 -0
  39. package/dist/distTypes/services/login.d.ts +9 -0
  40. package/dist/distTypes/services/packageLoader.d.ts +6 -0
  41. package/dist/distTypes/services/pubSub.d.ts +17 -0
  42. package/dist/distTypes/services/sentry.d.ts +4 -0
  43. package/dist/distTypes/types/bundle.types.d.ts +88 -0
  44. package/dist/distTypes/types/common.d.ts +14 -0
  45. package/dist/distTypes/types/config.types.d.ts +0 -0
  46. package/dist/distTypes/types/types.d.ts +19 -0
  47. package/dist/index.js +1 -1
  48. package/package.json +3 -3
  49. package/dist/index.d.ts +0 -6829
  50. 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-alpha3",
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 && yarn typesRollup",
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.126",
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",