@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cc-livekit/protocol",
3
- "version": "1.42.2-2",
3
+ "version": "1.42.2-3",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "require": "dist/index.cjs",
@@ -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
- * @generated from field: bool publish_silence_audio = 1;
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
- publishSilenceAudio: boolean;
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: "publish_silence_audio", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
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
  );
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '1.42.2-2';
2
+ export const version = '1.42.2-3';