@ylink-sdk/meeting 0.8.0-beta.5 → 0.8.0-beta.7
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 +9 -3
- package/package.json +1 -1
package/dist/meeting.d.ts
CHANGED
|
@@ -1746,6 +1746,7 @@ export declare interface PresetLayout {
|
|
|
1746
1746
|
isApplyToHost?: boolean;
|
|
1747
1747
|
isApplyToAttendee?: boolean;
|
|
1748
1748
|
isApplyToAudience?: boolean;
|
|
1749
|
+
isApplyToRecord?: boolean;
|
|
1749
1750
|
}
|
|
1750
1751
|
|
|
1751
1752
|
export declare interface PresetLayoutUpdate {
|
|
@@ -2217,7 +2218,9 @@ export declare class RTSP extends Module<RTSPData, Events_24> {
|
|
|
2217
2218
|
createRTSPAccess(params: {
|
|
2218
2219
|
resolution: string;
|
|
2219
2220
|
mode: string;
|
|
2220
|
-
layout:
|
|
2221
|
+
layout: {
|
|
2222
|
+
type: string;
|
|
2223
|
+
} | LayoutContent;
|
|
2221
2224
|
}): Promise<any>;
|
|
2222
2225
|
/**
|
|
2223
2226
|
* 修改RTSP接入
|
|
@@ -2227,7 +2230,9 @@ export declare class RTSP extends Module<RTSPData, Events_24> {
|
|
|
2227
2230
|
index: number;
|
|
2228
2231
|
resolution: string;
|
|
2229
2232
|
mode: string;
|
|
2230
|
-
layout:
|
|
2233
|
+
layout: {
|
|
2234
|
+
type: string;
|
|
2235
|
+
} | LayoutContent;
|
|
2231
2236
|
}): Promise<any>;
|
|
2232
2237
|
/**
|
|
2233
2238
|
* 删除RTSP接入
|
|
@@ -2238,7 +2243,7 @@ export declare class RTSP extends Module<RTSPData, Events_24> {
|
|
|
2238
2243
|
}): Promise<any>;
|
|
2239
2244
|
}
|
|
2240
2245
|
|
|
2241
|
-
declare interface RTSPAccess {
|
|
2246
|
+
export declare interface RTSPAccess {
|
|
2242
2247
|
index: number;
|
|
2243
2248
|
urls: string[];
|
|
2244
2249
|
resolution: string;
|
|
@@ -2324,6 +2329,7 @@ export declare interface SettingData {
|
|
|
2324
2329
|
};
|
|
2325
2330
|
avcSetting: {
|
|
2326
2331
|
showSiteIcon: boolean;
|
|
2332
|
+
showSiteIconLock: boolean;
|
|
2327
2333
|
showSelfEnabled: boolean;
|
|
2328
2334
|
speakerShowSelf: boolean;
|
|
2329
2335
|
};
|