@hysc/meeting 1.8.41 → 1.8.42

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.
@@ -77,6 +77,10 @@ interface OperationCustomStats {
77
77
  * 是否允许开启虚拟背景 0全员 1嘉宾 2主持人
78
78
  */
79
79
  backgroundAIEnable: 0 | 1 | 2;
80
+ /**
81
+ * 入会提示音设置
82
+ */
83
+ joinCueVoice: 0 | 1;
80
84
  }
81
85
  export default class BMRoomInfo {
82
86
  private room;
@@ -209,6 +209,11 @@ export default class BMRoomVM {
209
209
  */
210
210
  forceOpenUserMic(enable: true | false): Promise<void>;
211
211
  /**
212
+ * 入会提示音设置
213
+ * @param enable 0关闭 1开启
214
+ */
215
+ joinCueVoice(enable: 0 | 1): Promise<void>;
216
+ /**
212
217
  * 是否全员可录制
213
218
  * @param enable 0全员 1嘉宾 2仅主持人
214
219
  */
@@ -113,5 +113,6 @@ export interface CustomStats {
113
113
  forceOpenUserMic: boolean;
114
114
  forceOpenUserCamera: boolean;
115
115
  onlyOnePersonShare: number;
116
+ joinCueVoice: number;
116
117
  }
117
118
  export declare type PartialCustomStats = Partial<CustomStats>;