@hyext/types-ext-sdk-hy 3.14.1-beta.11 → 3.14.1-beta.15

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.
Files changed (2) hide show
  1. package/index.d.ts +4 -0
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -8026,12 +8026,14 @@ type ComponentLayout = {
8026
8026
  * @property url - 视频url
8027
8027
  * @property autoPlay - 可选,是否自动播放,默认是否
8028
8028
  * @property mutePlay - 可选,是否静音播放,默认是否
8029
+ * @property liveVodMode - 是否开启实时点播模式
8029
8030
  * @property layout - 视频组件布局
8030
8031
  */
8031
8032
  type CreateNativeVideoComponentReq = {
8032
8033
  url: string;
8033
8034
  autoPlay: boolean;
8034
8035
  mutePlay: boolean;
8036
+ liveVodMode: boolean;
8035
8037
  layout: ComponentLayout;
8036
8038
  };
8037
8039
 
@@ -8041,6 +8043,7 @@ type CreateNativeVideoComponentReq = {
8041
8043
  * @property url - 视频url
8042
8044
  * @property autoPlay - 可选,是否自动播放,默认是否
8043
8045
  * @property mutePlay - 可选,是否静音播放,默认是否
8046
+ * @property liveVodMode - 是否开启实时点播模式
8044
8047
  * @property layout - 视频组件布局
8045
8048
  */
8046
8049
  type UpdateNativeVideoComponentReq = {
@@ -8048,6 +8051,7 @@ type UpdateNativeVideoComponentReq = {
8048
8051
  url: string;
8049
8052
  autoPlay: boolean;
8050
8053
  mutePlay: boolean;
8054
+ liveVodMode: boolean;
8051
8055
  layout: ComponentLayout;
8052
8056
  };
8053
8057
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyext/types-ext-sdk-hy",
3
- "version": "3.14.1-beta.11",
3
+ "version": "3.14.1-beta.15",
4
4
  "description": "TypeScript definitions for @hyext/ext-sdk-hy",
5
5
  "types": "./index.d.ts",
6
6
  "main": "",