@ray-js/adapter 1.6.29 → 1.6.30
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.
@@ -5,7 +5,17 @@ export interface IpcPlayerProps extends BaseProps, DiffLayer {
|
|
5
5
|
deviceId: string;
|
6
6
|
autoplay?: boolean;
|
7
7
|
muted?: boolean;
|
8
|
-
|
8
|
+
/**
|
9
|
+
* 清晰度,
|
10
|
+
* 'SS', // 省流量 ------- ss
|
11
|
+
* 'SD', // 标清 ---- normal
|
12
|
+
* 'HD', // 高清 --- hd
|
13
|
+
* 'UD', // 超清 --- ud
|
14
|
+
* 'SSP', // 超超清 --- ssp
|
15
|
+
* 'AUTO', // 自动 --- auto
|
16
|
+
* 'AUDIO', // 音频模式 - audio
|
17
|
+
*/
|
18
|
+
clarity?: 'ss' | 'normal' | 'hd' | 'ud' | 'ssp' | 'auto' | 'audio';
|
9
19
|
soundMode?: 'speaker' | 'ear';
|
10
20
|
orientation?: 'vertical' | 'horizontal';
|
11
21
|
objectFit?: 'contain' | 'fillCrop';
|
@@ -5,7 +5,17 @@ export interface IpcPlayerProps extends BaseProps, DiffLayer {
|
|
5
5
|
deviceId: string;
|
6
6
|
autoplay?: boolean;
|
7
7
|
muted?: boolean;
|
8
|
-
|
8
|
+
/**
|
9
|
+
* 清晰度,
|
10
|
+
* 'SS', // 省流量 ------- ss
|
11
|
+
* 'SD', // 标清 ---- normal
|
12
|
+
* 'HD', // 高清 --- hd
|
13
|
+
* 'UD', // 超清 --- ud
|
14
|
+
* 'SSP', // 超超清 --- ssp
|
15
|
+
* 'AUTO', // 自动 --- auto
|
16
|
+
* 'AUDIO', // 音频模式 - audio
|
17
|
+
*/
|
18
|
+
clarity?: 'ss' | 'normal' | 'hd' | 'ud' | 'ssp' | 'auto' | 'audio';
|
9
19
|
soundMode?: 'speaker' | 'ear';
|
10
20
|
orientation?: 'vertical' | 'horizontal';
|
11
21
|
objectFit?: 'contain' | 'fillCrop';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ray-js/adapter",
|
3
|
-
"version": "1.6.
|
3
|
+
"version": "1.6.30",
|
4
4
|
"description": "Ray adapter for tuya",
|
5
5
|
"keywords": [
|
6
6
|
"ray"
|
@@ -36,7 +36,7 @@
|
|
36
36
|
"@ray-core/types": "^0.4.8"
|
37
37
|
},
|
38
38
|
"devDependencies": {
|
39
|
-
"@ray-js/types": "1.6.
|
39
|
+
"@ray-js/types": "1.6.30",
|
40
40
|
"concurrently": "^6.5.1"
|
41
41
|
},
|
42
42
|
"publishConfig": {
|
@@ -44,5 +44,5 @@
|
|
44
44
|
"registry": "https://registry.npmjs.com"
|
45
45
|
},
|
46
46
|
"esnext": "./esm/index.js",
|
47
|
-
"gitHead": "
|
47
|
+
"gitHead": "6db627db6ff0dffe0a249fbfc07b0281454e82c9"
|
48
48
|
}
|