@cc-livekit/protocol 1.42.2-2 → 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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +11 -2
- package/dist/index.d.mts +11 -2
- package/dist/index.d.ts +11 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/gen/livekit_temptalk_pb.d.ts +11 -2
- package/src/gen/livekit_temptalk_pb.js +1 -1
- package/src/gen/version.js +1 -1
package/package.json
CHANGED
|
@@ -225,11 +225,20 @@ 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;
|
|
229
232
|
*/
|
|
230
|
-
|
|
233
|
+
autoPublishSilenceAudio: boolean;
|
|
231
234
|
|
|
232
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
|
+
*
|
|
233
242
|
* @generated from field: bool disable_silence_on_raise_hand = 2;
|
|
234
243
|
*/
|
|
235
244
|
disableSilenceOnRaiseHand: boolean;
|
|
@@ -85,7 +85,7 @@ 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
89
|
{ no: 2, name: "disable_silence_on_raise_hand", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
90
90
|
],
|
|
91
91
|
);
|
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';
|