@cc-livekit/protocol 1.42.2-1 → 1.42.2-3
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.cjs +9 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +16 -2
- package/dist/index.d.mts +16 -2
- package/dist/index.d.ts +16 -2
- package/dist/index.mjs +9 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/gen/livekit_temptalk_pb.d.ts +16 -2
- package/src/gen/livekit_temptalk_pb.js +2 -1
- package/src/gen/version.js +1 -1
package/package.json
CHANGED
|
@@ -225,9 +225,23 @@ export declare class TTCallResponseBody extends Message<TTCallResponseBody> {
|
|
|
225
225
|
*/
|
|
226
226
|
export declare class TTCallOptions extends Message<TTCallOptions> {
|
|
227
227
|
/**
|
|
228
|
-
*
|
|
228
|
+
* If true, the SDK automatically publishes a silent (muted) audio track
|
|
229
|
+
* right after the room is connected.
|
|
230
|
+
*
|
|
231
|
+
* @generated from field: bool auto_publish_silence_audio = 1;
|
|
232
|
+
*/
|
|
233
|
+
autoPublishSilenceAudio: boolean;
|
|
234
|
+
|
|
235
|
+
/**
|
|
236
|
+
* Controls whether the SDK publishes a silent audio track when the user raises hand.
|
|
237
|
+
*
|
|
238
|
+
* Effective only when `auto_publish_silence_audio` is false:
|
|
239
|
+
* - true: do NOT publish a silent track on raise-hand.
|
|
240
|
+
* - false: publish a silent track on raise-hand.
|
|
241
|
+
*
|
|
242
|
+
* @generated from field: bool disable_silence_on_raise_hand = 2;
|
|
229
243
|
*/
|
|
230
|
-
|
|
244
|
+
disableSilenceOnRaiseHand: boolean;
|
|
231
245
|
|
|
232
246
|
constructor(data?: PartialMessage<TTCallOptions>);
|
|
233
247
|
|
|
@@ -85,7 +85,8 @@ export const TTCallResponseBody = /*@__PURE__*/ proto3.makeMessageType(
|
|
|
85
85
|
export const TTCallOptions = /*@__PURE__*/ proto3.makeMessageType(
|
|
86
86
|
"livekit.TTCallOptions",
|
|
87
87
|
() => [
|
|
88
|
-
{ no: 1, name: "
|
|
88
|
+
{ no: 1, name: "auto_publish_silence_audio", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
89
|
+
{ no: 2, name: "disable_silence_on_raise_hand", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
89
90
|
],
|
|
90
91
|
);
|
|
91
92
|
|
package/src/gen/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '1.42.2-
|
|
2
|
+
export const version = '1.42.2-3';
|