@vizbeetv/sdk-qa 7.8.36 → 7.8.37
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/README.md +12 -12
- package/chromecast/index.js +1 -1
- package/chromecast-v2/es5/index.js +1 -1
- package/chromecast-v2/es6/index.js +1 -1
- package/lg/es5/index.js +1 -1
- package/lg/es6/index.js +1 -1
- package/package.json +1 -1
- package/samsung/es5/index.js +1 -1
- package/samsung/es6/index.js +1 -1
- package/vizio/index.js +1 -1
- package/xbox/es5/index.js +1 -1
- package/xbox/es6/index.js +1 -1
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
# @
|
|
1
|
+
# @vizbeetv/sdk-qa
|
|
2
2
|
|
|
3
3
|
Vizbee TV SDK — pre-built platform bundles distributed as a single npm package with subpath exports.
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
7
|
```sh
|
|
8
|
-
npm install @
|
|
8
|
+
npm install @vizbeetv/sdk-qa
|
|
9
9
|
```
|
|
10
10
|
|
|
11
11
|
## Usage
|
|
@@ -16,52 +16,52 @@ Import the subpath that matches your target platform. Each subpath resolves to a
|
|
|
16
16
|
|
|
17
17
|
```js
|
|
18
18
|
// ES5 — Tizen 2.x / Chrome 38+ (default)
|
|
19
|
-
import vizbee from '@
|
|
19
|
+
import vizbee from '@vizbeetv/sdk-qa/samsung';
|
|
20
20
|
|
|
21
21
|
// ES6 — Tizen 5.5+ / Chrome 72+
|
|
22
|
-
import vizbee from '@
|
|
22
|
+
import vizbee from '@vizbeetv/sdk-qa/samsung/es6';
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
### LG (WebOS)
|
|
26
26
|
|
|
27
27
|
```js
|
|
28
28
|
// ES5 — WebOS 3.x / Chrome 38+ (default)
|
|
29
|
-
import vizbee from '@
|
|
29
|
+
import vizbee from '@vizbeetv/sdk-qa/lg';
|
|
30
30
|
|
|
31
31
|
// ES6 — WebOS 6+ / Chrome 72+
|
|
32
|
-
import vizbee from '@
|
|
32
|
+
import vizbee from '@vizbeetv/sdk-qa/lg/es6';
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
### Vizio SmartCast
|
|
36
36
|
|
|
37
37
|
```js
|
|
38
|
-
import vizbee from '@
|
|
38
|
+
import vizbee from '@vizbeetv/sdk-qa/vizio';
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
### Xbox
|
|
42
42
|
|
|
43
43
|
```js
|
|
44
44
|
// ES5 (default)
|
|
45
|
-
import vizbee from '@
|
|
45
|
+
import vizbee from '@vizbeetv/sdk-qa/xbox';
|
|
46
46
|
|
|
47
47
|
// ES6
|
|
48
|
-
import vizbee from '@
|
|
48
|
+
import vizbee from '@vizbeetv/sdk-qa/xbox/es6';
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
### Chromecast CAF (v3)
|
|
52
52
|
|
|
53
53
|
```js
|
|
54
|
-
import vizbee from '@
|
|
54
|
+
import vizbee from '@vizbeetv/sdk-qa/chromecast';
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
### Chromecast v2 (MediaManager)
|
|
58
58
|
|
|
59
59
|
```js
|
|
60
60
|
// ES5 (default)
|
|
61
|
-
import vizbee from '@
|
|
61
|
+
import vizbee from '@vizbeetv/sdk-qa/chromecast-v2';
|
|
62
62
|
|
|
63
63
|
// ES6
|
|
64
|
-
import vizbee from '@
|
|
64
|
+
import vizbee from '@vizbeetv/sdk-qa/chromecast-v2/es6';
|
|
65
65
|
```
|
|
66
66
|
|
|
67
67
|
## Platform reference
|