@tivio/sdk-react 5.0.0 → 5.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +231 -0
- package/{changelog.md → README.md.bak} +332 -56
- package/dist/index.d.ts +10 -0
- package/dist/index.js +1 -1
- package/dist/sdk-react.d.ts +10 -0
- package/package.json +3 -3
package/dist/sdk-react.d.ts
CHANGED
@@ -3149,6 +3149,16 @@ export declare type UseChannelSource = (tvChannelId: string) => {
|
|
3149
3149
|
error: Error | null;
|
3150
3150
|
};
|
3151
3151
|
|
3152
|
+
/**
|
3153
|
+
* Use channel source
|
3154
|
+
* @param tvChannelId
|
3155
|
+
* @public
|
3156
|
+
*/
|
3157
|
+
export declare const useChannelSource: (tvChannelId: string) => {
|
3158
|
+
source: ChannelSourcePojo | null;
|
3159
|
+
error: Error | null;
|
3160
|
+
};
|
3161
|
+
|
3152
3162
|
/**
|
3153
3163
|
* @public
|
3154
3164
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@tivio/sdk-react",
|
3
|
-
"version": "5.0.
|
3
|
+
"version": "5.0.2",
|
4
4
|
"main": "dist/index.js",
|
5
5
|
"typings": "dist/index.d.ts",
|
6
6
|
"source": "src/index.ts",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"build:dev": "cat ./.env.dev > ./.env && yarn build --config=webpack.config.dev.js && yarn typesRollup",
|
14
14
|
"build:prod": "cat ./.env.prod > ./.env && yarn build --config=webpack.config.prod.js && yarn typesRollup",
|
15
15
|
"build:local": "bash ./scripts/build_with_local_bundle.sh && yarn typesRollup",
|
16
|
-
"release": "ts-node ./scripts/release.ts -p=sdk-react",
|
16
|
+
"release": "ts-node ./scripts/release.ts -p=sdk-react -c=README.md",
|
17
17
|
"release:patch": "yarn release -r=patch",
|
18
18
|
"release:minor": "yarn release -r=minor",
|
19
19
|
"release:major": "yarn release -r=major",
|
@@ -33,7 +33,7 @@
|
|
33
33
|
"@material-ui/core": "^4.11.2",
|
34
34
|
"@material-ui/icons": "^4.11.2",
|
35
35
|
"@sentry/browser": "^6.1.0",
|
36
|
-
"@tivio/common": "
|
36
|
+
"@tivio/common": "1.1.104",
|
37
37
|
"dayjs": "^1.11.0",
|
38
38
|
"es7-object-polyfill": "^1.0.1",
|
39
39
|
"firebase": "8.10.1",
|