@tsocial/tvweb-sdk.nbcci 0.0.0-beta.20251110-142903 → 0.0.0-beta.20251113-122618

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.
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ export declare function UIOnly(): React.JSX.Element;
3
+ export declare function WithAPI(): React.JSX.Element;
4
+ declare const _default: {
5
+ title: string;
6
+ };
7
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ export declare function UIOnly(): React.JSX.Element;
3
+ export declare function WithAPI(): React.JSX.Element;
4
+ declare const _default: {
5
+ title: string;
6
+ };
7
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export declare function UIOnly(): React.JSX.Element;
3
+ declare const _default: {
4
+ title: string;
5
+ };
6
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ export declare function UIOnly(): React.JSX.Element;
3
+ export declare function WithAPI(): React.JSX.Element;
4
+ declare const _default: {
5
+ title: string;
6
+ };
7
+ export default _default;
@@ -0,0 +1,4 @@
1
+ export default class TVWebSDK extends BaseTVWebSDK {
2
+ constructor(props: any);
3
+ }
4
+ import { BaseTVWebSDK } from '@tsocial/tvweb-core';
@@ -0,0 +1,4 @@
1
+ import 'react-app-polyfill/stable';
2
+ export * from '@tsocial/tvweb-core';
3
+ export * from '@tsocial/tvweb-ui';
4
+ export { default as SDK } from './SDK';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsocial/tvweb-sdk.nbcci",
3
- "version": "0.0.0-beta.20251110-142903",
3
+ "version": "0.0.0-beta.20251113-122618",
4
4
  "description": "TV Web SDK - The Standalone SDK",
5
5
  "keywords": [],
6
6
  "author": "Nha Hoang <nha.hoang@trustingsocial.com>",
@@ -13,9 +13,16 @@
13
13
  "access": "public"
14
14
  },
15
15
  "files": [
16
- "build/tvweb-sdk.standalone.min.js",
16
+ "build",
17
17
  "assets"
18
18
  ],
19
+ "exports": {
20
+ ".": {
21
+ "types": "./build/types/index.d.ts",
22
+ "import": "./build/tvweb-sdk.nbcci.esm.min.js",
23
+ "require": "./build/tvweb-sdk.nbcci.cjs.min.js"
24
+ }
25
+ },
19
26
  "scripts": {
20
27
  "build": "yarn run tvweb-builder --type standalone --libName TVWebSDK --typescript",
21
28
  "pack": "tvweb-builder --type standalone --libName TVWebSDK --defaultAssetRoot ./assets",
@@ -23,14 +30,14 @@
23
30
  },
24
31
  "devDependencies": {
25
32
  "@tsocial/trustvision-sdk": "2.12.4",
26
- "@tsocial/tvweb-builder": "0.0.0-beta.20251110-142903",
27
- "@tsocial/tvweb-core": "0.0.0-beta.20251110-142903",
28
- "@tsocial/tvweb-ui": "0.0.0-beta.20251110-142903",
33
+ "@tsocial/tvweb-builder": "0.0.0-beta.20251113-122618",
34
+ "@tsocial/tvweb-core": "0.0.0-beta.20251113-122618",
35
+ "@tsocial/tvweb-ui": "0.0.0-beta.20251113-122618",
29
36
  "invariant": "^2.2.4",
30
37
  "react": "^16.14.0",
31
38
  "react-app-polyfill": "^2.0.0",
32
39
  "react-dom": "^16.14.0",
33
40
  "styled-components": "^6.1.12"
34
41
  },
35
- "gitHead": "01429217a5da038489e4152a04165b162f31fe0b"
42
+ "gitHead": "e77eacea44b492b82bc896b260028fb938ca2a7d"
36
43
  }