@tivio/sdk-react 3.2.2 → 3.2.3
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +1 -0
- package/README.md.bak +1 -0
- package/dist/components/hooks/index.d.ts +1 -0
- package/dist/components/hooks/useLastVideoByWidgetId.d.ts +3 -0
- package/dist/components/hooks/usePurchaseRecovery.d.ts +11 -0
- package/dist/config.d.ts +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -1
- package/dist/info.d.ts +2 -0
- package/dist/services/bundleLoader.d.ts +1 -1
- package/dist/types/bundle.types.d.ts +28 -1
- package/package.json +6 -2
- package/dist/device/tizen.d.ts +0 -7
- package/doc/changelog.md +0 -0
package/README.md
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
## Changelog
|
4
4
|
|
5
|
+
* patch: deprecated `useLastVideoByWidgetId`
|
5
6
|
* v3.2.2
|
6
7
|
* minor: useRowsInScreen, useItemsInRow, useTaggedVideos - hasNextPage and loading added to pagination
|
7
8
|
* minor: useRowsInScreen, useItemsInRow, useTaggedVideos - implementation moved to remote bundle
|
package/README.md.bak
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
## Changelog
|
4
4
|
|
5
|
+
* patch: deprecated `useLastVideoByWidgetId`
|
5
6
|
* v3.2.2
|
6
7
|
* minor: useRowsInScreen, useItemsInRow, useTaggedVideos - hasNextPage and loading added to pagination
|
7
8
|
* minor: useRowsInScreen, useItemsInRow, useTaggedVideos - implementation moved to remote bundle
|
@@ -6,6 +6,7 @@ export * from './useSearch';
|
|
6
6
|
export * from './useItemsInRow';
|
7
7
|
export * from './useCancelSubscription';
|
8
8
|
export * from './useTransactionPayment';
|
9
|
+
export * from './usePurchaseRecovery';
|
9
10
|
export * from './usePurchaseSubscription';
|
10
11
|
export * from './contentHooks';
|
11
12
|
export * from './playerHooks';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
export declare function usePurchaseRecovery(): {
|
2
|
+
purchaseRecoveryResult?: string | undefined;
|
3
|
+
loading: boolean;
|
4
|
+
error?: any;
|
5
|
+
purchaseRecovery: (monetizationId: string) => Promise<string>;
|
6
|
+
} | {
|
7
|
+
purchaseRecoveryResult: undefined;
|
8
|
+
loading: true;
|
9
|
+
error: undefined;
|
10
|
+
purchaseRecovery: () => void;
|
11
|
+
};
|
package/dist/config.d.ts
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
* Copyright (c) 2021, nangu.TV, a.s. All rights reserved.
|
3
3
|
* nangu.TV, a.s PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
4
4
|
*/
|
5
|
+
/// <reference types="react" />
|
5
6
|
import type { Config as ExternalConfig, InternalConfig } from './types/bundle.types';
|
6
7
|
import type { Currency } from '@tivio/common';
|
7
8
|
export declare const defaultConf: {
|
package/dist/index.d.ts
CHANGED