@ylink-sdk/meeting 0.8.0-beta.5 → 0.8.0-beta.6

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/dist/meeting.d.ts CHANGED
@@ -2217,7 +2217,9 @@ export declare class RTSP extends Module<RTSPData, Events_24> {
2217
2217
  createRTSPAccess(params: {
2218
2218
  resolution: string;
2219
2219
  mode: string;
2220
- layout: RTSPData['defaultLayout'];
2220
+ layout: {
2221
+ type: string;
2222
+ } | LayoutContent;
2221
2223
  }): Promise<any>;
2222
2224
  /**
2223
2225
  * 修改RTSP接入
@@ -2227,7 +2229,9 @@ export declare class RTSP extends Module<RTSPData, Events_24> {
2227
2229
  index: number;
2228
2230
  resolution: string;
2229
2231
  mode: string;
2230
- layout: RTSPData['defaultLayout'];
2232
+ layout: {
2233
+ type: string;
2234
+ } | LayoutContent;
2231
2235
  }): Promise<any>;
2232
2236
  /**
2233
2237
  * 删除RTSP接入
@@ -2238,7 +2242,7 @@ export declare class RTSP extends Module<RTSPData, Events_24> {
2238
2242
  }): Promise<any>;
2239
2243
  }
2240
2244
 
2241
- declare interface RTSPAccess {
2245
+ export declare interface RTSPAccess {
2242
2246
  index: number;
2243
2247
  urls: string[];
2244
2248
  resolution: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ylink-sdk/meeting",
3
- "version": "0.8.0-beta.5",
3
+ "version": "0.8.0-beta.6",
4
4
  "description": "Meeting control of yealink",
5
5
  "main": "index.js",
6
6
  "module": "dist/meeting.esm.prod.js",