dingrtc 3.9.12 → 3.9.13
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/index.d.ts +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.js +2 -2
- package/dist/index.umd.js +2 -2
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -2515,8 +2515,8 @@ declare class ServiceManager extends EventEmitter<ChannelEvens> {
|
|
|
2515
2515
|
dismissGroup(groupId: string): Promise<void>;
|
|
2516
2516
|
mixGroupAudio(streamId: string, label: string, operation: 'mix' | 'unmix'): Promise<signal_msg.IResponse>;
|
|
2517
2517
|
setGroupProperties(groupId: string, properties: signal_msg.IGroupProperty): Promise<signal_msg.ISetGroupPropertiesResponse>;
|
|
2518
|
-
publishToGroup(
|
|
2519
|
-
unpublishFromGroup(
|
|
2518
|
+
publishToGroup(groupId?: string, autoUnpublishFromChannel?: boolean): Promise<void>;
|
|
2519
|
+
unpublishFromGroup(groupId: string, autoPublishToChannel?: boolean): Promise<void>;
|
|
2520
2520
|
}
|
|
2521
2521
|
|
|
2522
2522
|
/**
|