livekit-client 1.9.6 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (67) hide show
  1. package/dist/livekit-client.esm.mjs +1318 -885
  2. package/dist/livekit-client.esm.mjs.map +1 -1
  3. package/dist/livekit-client.umd.js +1 -1
  4. package/dist/livekit-client.umd.js.map +1 -1
  5. package/dist/src/api/SignalClient.d.ts +2 -1
  6. package/dist/src/api/SignalClient.d.ts.map +1 -1
  7. package/dist/src/index.d.ts +1 -0
  8. package/dist/src/index.d.ts.map +1 -1
  9. package/dist/src/proto/livekit_models.d.ts +108 -10
  10. package/dist/src/proto/livekit_models.d.ts.map +1 -1
  11. package/dist/src/proto/livekit_rtc.d.ts +513 -194
  12. package/dist/src/proto/livekit_rtc.d.ts.map +1 -1
  13. package/dist/src/room/Room.d.ts +3 -2
  14. package/dist/src/room/Room.d.ts.map +1 -1
  15. package/dist/src/room/events.d.ts +5 -1
  16. package/dist/src/room/events.d.ts.map +1 -1
  17. package/dist/src/room/participant/LocalParticipant.d.ts.map +1 -1
  18. package/dist/src/room/participant/Participant.d.ts +2 -2
  19. package/dist/src/room/participant/Participant.d.ts.map +1 -1
  20. package/dist/src/room/participant/RemoteParticipant.d.ts.map +1 -1
  21. package/dist/src/room/participant/publishUtils.d.ts +8 -0
  22. package/dist/src/room/participant/publishUtils.d.ts.map +1 -1
  23. package/dist/src/room/track/LocalTrack.d.ts +32 -0
  24. package/dist/src/room/track/LocalTrack.d.ts.map +1 -1
  25. package/dist/src/room/track/LocalVideoTrack.d.ts.map +1 -1
  26. package/dist/src/room/track/RemoteTrackPublication.d.ts +4 -1
  27. package/dist/src/room/track/RemoteTrackPublication.d.ts.map +1 -1
  28. package/dist/src/room/track/TrackPublication.d.ts +2 -1
  29. package/dist/src/room/track/TrackPublication.d.ts.map +1 -1
  30. package/dist/src/room/track/options.d.ts +1 -1
  31. package/dist/src/room/track/options.d.ts.map +1 -1
  32. package/dist/src/room/track/processor/types.d.ts +19 -0
  33. package/dist/src/room/track/processor/types.d.ts.map +1 -0
  34. package/dist/src/utils/browserParser.d.ts.map +1 -1
  35. package/dist/ts4.2/src/api/SignalClient.d.ts +2 -1
  36. package/dist/ts4.2/src/index.d.ts +1 -0
  37. package/dist/ts4.2/src/proto/livekit_models.d.ts +126 -12
  38. package/dist/ts4.2/src/proto/livekit_rtc.d.ts +617 -254
  39. package/dist/ts4.2/src/room/Room.d.ts +3 -2
  40. package/dist/ts4.2/src/room/events.d.ts +5 -1
  41. package/dist/ts4.2/src/room/participant/Participant.d.ts +2 -2
  42. package/dist/ts4.2/src/room/participant/publishUtils.d.ts +8 -0
  43. package/dist/ts4.2/src/room/track/LocalTrack.d.ts +32 -0
  44. package/dist/ts4.2/src/room/track/RemoteTrackPublication.d.ts +4 -1
  45. package/dist/ts4.2/src/room/track/TrackPublication.d.ts +2 -1
  46. package/dist/ts4.2/src/room/track/options.d.ts +1 -1
  47. package/dist/ts4.2/src/room/track/processor/types.d.ts +19 -0
  48. package/package.json +14 -13
  49. package/src/api/SignalClient.ts +8 -1
  50. package/src/index.ts +1 -0
  51. package/src/proto/google/protobuf/timestamp.ts +3 -3
  52. package/src/proto/livekit_models.ts +254 -161
  53. package/src/proto/livekit_rtc.ts +334 -180
  54. package/src/room/Room.ts +26 -1
  55. package/src/room/events.ts +4 -0
  56. package/src/room/participant/LocalParticipant.ts +23 -3
  57. package/src/room/participant/Participant.ts +2 -1
  58. package/src/room/participant/RemoteParticipant.ts +4 -1
  59. package/src/room/participant/publishUtils.ts +68 -12
  60. package/src/room/track/LocalTrack.ts +120 -16
  61. package/src/room/track/LocalVideoTrack.ts +96 -33
  62. package/src/room/track/RemoteTrackPublication.ts +8 -1
  63. package/src/room/track/Track.ts +3 -3
  64. package/src/room/track/TrackPublication.ts +2 -1
  65. package/src/room/track/options.ts +1 -1
  66. package/src/room/track/processor/types.ts +20 -0
  67. package/src/utils/browserParser.ts +1 -4
@@ -1,5 +1,5 @@
1
1
  import _m0 from "protobufjs/minimal";
2
- import { ClientConfiguration, ConnectionQuality, DisconnectReason, Encryption_Type, ParticipantInfo, ParticipantTracks, Room, ServerInfo, SpeakerInfo, TrackInfo, TrackSource, TrackType, VideoLayer, VideoQuality } from "./livekit_models";
2
+ import { ClientConfiguration, ConnectionQuality, DisconnectReason, Encryption_Type, ParticipantInfo, ParticipantTracks, Room, ServerInfo, SpeakerInfo, SubscriptionError, TrackInfo, TrackSource, TrackType, VideoLayer, VideoQuality } from "./livekit_models";
3
3
  export declare const protobufPackage = "livekit";
4
4
  export declare enum SignalTarget {
5
5
  PUBLISHER = 0,
@@ -129,6 +129,9 @@ export interface SignalResponse {
129
129
  } | {
130
130
  $case: "pongResp";
131
131
  pongResp: Pong;
132
+ } | {
133
+ $case: "subscriptionResponse";
134
+ subscriptionResponse: SubscriptionResponse;
132
135
  };
133
136
  }
134
137
  export interface SimulcastCodec {
@@ -186,6 +189,8 @@ export interface JoinResponse {
186
189
  pingTimeout: number;
187
190
  pingInterval: number;
188
191
  serverInfo?: ServerInfo;
192
+ /** Server-Injected-Frame byte trailer, used to identify unencrypted frames when e2ee is enabled */
193
+ sifTrailer: Uint8Array;
189
194
  }
190
195
  export interface ReconnectResponse {
191
196
  iceServers: ICEServer[];
@@ -359,6 +364,10 @@ export interface RegionInfo {
359
364
  url: string;
360
365
  distance: number;
361
366
  }
367
+ export interface SubscriptionResponse {
368
+ trackSid: string;
369
+ err: SubscriptionError;
370
+ }
362
371
  export declare const SignalRequest: {
363
372
  encode(message: SignalRequest, writer?: _m0.Writer): _m0.Writer;
364
373
  decode(input: _m0.Reader | Uint8Array, length?: number): SignalRequest;
@@ -3120,6 +3129,10 @@ export declare const SignalResponse: {
3120
3129
  mime?: string | undefined;
3121
3130
  fmtpLine?: string | undefined;
3122
3131
  }[] | undefined;
3132
+ publish?: {
3133
+ mime?: string | undefined;
3134
+ fmtpLine?: string | undefined;
3135
+ }[] | undefined;
3123
3136
  } | undefined;
3124
3137
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
3125
3138
  } | undefined;
@@ -3134,6 +3147,7 @@ export declare const SignalResponse: {
3134
3147
  nodeId?: string | undefined;
3135
3148
  debugInfo?: string | undefined;
3136
3149
  } | undefined;
3150
+ sifTrailer?: Uint8Array | undefined;
3137
3151
  } | undefined;
3138
3152
  } & {
3139
3153
  $case: "join";
@@ -3383,6 +3397,10 @@ export declare const SignalResponse: {
3383
3397
  mime?: string | undefined;
3384
3398
  fmtpLine?: string | undefined;
3385
3399
  }[] | undefined;
3400
+ publish?: {
3401
+ mime?: string | undefined;
3402
+ fmtpLine?: string | undefined;
3403
+ }[] | undefined;
3386
3404
  } | undefined;
3387
3405
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
3388
3406
  } | undefined;
@@ -3396,6 +3414,13 @@ export declare const SignalResponse: {
3396
3414
  } | undefined;
3397
3415
  } & {
3398
3416
  $case: "pongResp";
3417
+ }) | ({
3418
+ subscriptionResponse?: {
3419
+ trackSid?: string | undefined;
3420
+ err?: SubscriptionError | undefined;
3421
+ } | undefined;
3422
+ } & {
3423
+ $case: "subscriptionResponse";
3399
3424
  }) | undefined;
3400
3425
  } & {
3401
3426
  message?: ({
@@ -3547,6 +3572,10 @@ export declare const SignalResponse: {
3547
3572
  mime?: string | undefined;
3548
3573
  fmtpLine?: string | undefined;
3549
3574
  }[] | undefined;
3575
+ publish?: {
3576
+ mime?: string | undefined;
3577
+ fmtpLine?: string | undefined;
3578
+ }[] | undefined;
3550
3579
  } | undefined;
3551
3580
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
3552
3581
  } | undefined;
@@ -3561,6 +3590,7 @@ export declare const SignalResponse: {
3561
3590
  nodeId?: string | undefined;
3562
3591
  debugInfo?: string | undefined;
3563
3592
  } | undefined;
3593
+ sifTrailer?: Uint8Array | undefined;
3564
3594
  } | undefined;
3565
3595
  } & {
3566
3596
  $case: "join";
@@ -3713,6 +3743,10 @@ export declare const SignalResponse: {
3713
3743
  mime?: string | undefined;
3714
3744
  fmtpLine?: string | undefined;
3715
3745
  }[] | undefined;
3746
+ publish?: {
3747
+ mime?: string | undefined;
3748
+ fmtpLine?: string | undefined;
3749
+ }[] | undefined;
3716
3750
  } | undefined;
3717
3751
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
3718
3752
  } | undefined;
@@ -3727,6 +3761,7 @@ export declare const SignalResponse: {
3727
3761
  nodeId?: string | undefined;
3728
3762
  debugInfo?: string | undefined;
3729
3763
  } | undefined;
3764
+ sifTrailer?: Uint8Array | undefined;
3730
3765
  } & {
3731
3766
  room?: ({
3732
3767
  sid?: string | undefined;
@@ -4543,6 +4578,10 @@ export declare const SignalResponse: {
4543
4578
  mime?: string | undefined;
4544
4579
  fmtpLine?: string | undefined;
4545
4580
  }[] | undefined;
4581
+ publish?: {
4582
+ mime?: string | undefined;
4583
+ fmtpLine?: string | undefined;
4584
+ }[] | undefined;
4546
4585
  } | undefined;
4547
4586
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
4548
4587
  } & {
@@ -4566,6 +4605,10 @@ export declare const SignalResponse: {
4566
4605
  mime?: string | undefined;
4567
4606
  fmtpLine?: string | undefined;
4568
4607
  }[] | undefined;
4608
+ publish?: {
4609
+ mime?: string | undefined;
4610
+ fmtpLine?: string | undefined;
4611
+ }[] | undefined;
4569
4612
  } & {
4570
4613
  codecs?: ({
4571
4614
  mime?: string | undefined;
@@ -4584,12 +4627,29 @@ export declare const SignalResponse: {
4584
4627
  fmtpLine?: string | undefined;
4585
4628
  }[]>]: never;
4586
4629
  }) | undefined;
4630
+ publish?: ({
4631
+ mime?: string | undefined;
4632
+ fmtpLine?: string | undefined;
4633
+ }[] & ({
4634
+ mime?: string | undefined;
4635
+ fmtpLine?: string | undefined;
4636
+ } & {
4637
+ mime?: string | undefined;
4638
+ fmtpLine?: string | undefined;
4639
+ } & {
4640
+ [K_33 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
4641
+ })[] & {
4642
+ [K_34 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
4643
+ mime?: string | undefined;
4644
+ fmtpLine?: string | undefined;
4645
+ }[]>]: never;
4646
+ }) | undefined;
4587
4647
  } & {
4588
- [K_33 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
4648
+ [K_35 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
4589
4649
  }) | undefined;
4590
4650
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
4591
4651
  } & {
4592
- [K_34 in Exclude<keyof I["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never;
4652
+ [K_36 in Exclude<keyof I["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never;
4593
4653
  }) | undefined;
4594
4654
  serverRegion?: string | undefined;
4595
4655
  pingTimeout?: number | undefined;
@@ -4609,14 +4669,15 @@ export declare const SignalResponse: {
4609
4669
  nodeId?: string | undefined;
4610
4670
  debugInfo?: string | undefined;
4611
4671
  } & {
4612
- [K_35 in Exclude<keyof I["message"]["join"]["serverInfo"], keyof ServerInfo>]: never;
4672
+ [K_37 in Exclude<keyof I["message"]["join"]["serverInfo"], keyof ServerInfo>]: never;
4613
4673
  }) | undefined;
4674
+ sifTrailer?: Uint8Array | undefined;
4614
4675
  } & {
4615
- [K_36 in Exclude<keyof I["message"]["join"], keyof JoinResponse>]: never;
4676
+ [K_38 in Exclude<keyof I["message"]["join"], keyof JoinResponse>]: never;
4616
4677
  }) | undefined;
4617
4678
  $case: "join";
4618
4679
  } & {
4619
- [K_37 in Exclude<keyof I["message"], "join" | "$case">]: never;
4680
+ [K_39 in Exclude<keyof I["message"], "join" | "$case">]: never;
4620
4681
  }) | ({
4621
4682
  answer?: {
4622
4683
  type?: string | undefined;
@@ -4632,11 +4693,11 @@ export declare const SignalResponse: {
4632
4693
  type?: string | undefined;
4633
4694
  sdp?: string | undefined;
4634
4695
  } & {
4635
- [K_38 in Exclude<keyof I["message"]["answer"], keyof SessionDescription>]: never;
4696
+ [K_40 in Exclude<keyof I["message"]["answer"], keyof SessionDescription>]: never;
4636
4697
  }) | undefined;
4637
4698
  $case: "answer";
4638
4699
  } & {
4639
- [K_39 in Exclude<keyof I["message"], "answer" | "$case">]: never;
4700
+ [K_41 in Exclude<keyof I["message"], "answer" | "$case">]: never;
4640
4701
  }) | ({
4641
4702
  offer?: {
4642
4703
  type?: string | undefined;
@@ -4652,11 +4713,11 @@ export declare const SignalResponse: {
4652
4713
  type?: string | undefined;
4653
4714
  sdp?: string | undefined;
4654
4715
  } & {
4655
- [K_40 in Exclude<keyof I["message"]["offer"], keyof SessionDescription>]: never;
4716
+ [K_42 in Exclude<keyof I["message"]["offer"], keyof SessionDescription>]: never;
4656
4717
  }) | undefined;
4657
4718
  $case: "offer";
4658
4719
  } & {
4659
- [K_41 in Exclude<keyof I["message"], "offer" | "$case">]: never;
4720
+ [K_43 in Exclude<keyof I["message"], "offer" | "$case">]: never;
4660
4721
  }) | ({
4661
4722
  trickle?: {
4662
4723
  candidateInit?: string | undefined;
@@ -4672,11 +4733,11 @@ export declare const SignalResponse: {
4672
4733
  candidateInit?: string | undefined;
4673
4734
  target?: SignalTarget | undefined;
4674
4735
  } & {
4675
- [K_42 in Exclude<keyof I["message"]["trickle"], keyof TrickleRequest>]: never;
4736
+ [K_44 in Exclude<keyof I["message"]["trickle"], keyof TrickleRequest>]: never;
4676
4737
  }) | undefined;
4677
4738
  $case: "trickle";
4678
4739
  } & {
4679
- [K_43 in Exclude<keyof I["message"], "trickle" | "$case">]: never;
4740
+ [K_45 in Exclude<keyof I["message"], "trickle" | "$case">]: never;
4680
4741
  }) | ({
4681
4742
  update?: {
4682
4743
  participants?: {
@@ -5004,9 +5065,9 @@ export declare const SignalResponse: {
5004
5065
  bitrate?: number | undefined;
5005
5066
  ssrc?: number | undefined;
5006
5067
  } & {
5007
- [K_44 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
5068
+ [K_46 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
5008
5069
  })[] & {
5009
- [K_45 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
5070
+ [K_47 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
5010
5071
  quality?: VideoQuality | undefined;
5011
5072
  width?: number | undefined;
5012
5073
  height?: number | undefined;
@@ -5061,9 +5122,9 @@ export declare const SignalResponse: {
5061
5122
  bitrate?: number | undefined;
5062
5123
  ssrc?: number | undefined;
5063
5124
  } & {
5064
- [K_46 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
5125
+ [K_48 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
5065
5126
  })[] & {
5066
- [K_47 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
5127
+ [K_49 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
5067
5128
  quality?: VideoQuality | undefined;
5068
5129
  width?: number | undefined;
5069
5130
  height?: number | undefined;
@@ -5072,9 +5133,9 @@ export declare const SignalResponse: {
5072
5133
  }[]>]: never;
5073
5134
  }) | undefined;
5074
5135
  } & {
5075
- [K_48 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
5136
+ [K_50 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
5076
5137
  })[] & {
5077
- [K_49 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
5138
+ [K_51 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
5078
5139
  mimeType?: string | undefined;
5079
5140
  mid?: string | undefined;
5080
5141
  cid?: string | undefined;
@@ -5091,9 +5152,9 @@ export declare const SignalResponse: {
5091
5152
  disableRed?: boolean | undefined;
5092
5153
  encryption?: Encryption_Type | undefined;
5093
5154
  } & {
5094
- [K_50 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never;
5155
+ [K_52 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never;
5095
5156
  })[] & {
5096
- [K_51 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"], keyof {
5157
+ [K_53 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"], keyof {
5097
5158
  sid?: string | undefined;
5098
5159
  type?: TrackType | undefined;
5099
5160
  name?: string | undefined;
@@ -5146,20 +5207,20 @@ export declare const SignalResponse: {
5146
5207
  canPublish?: boolean | undefined;
5147
5208
  canPublishData?: boolean | undefined;
5148
5209
  canPublishSources?: (TrackSource[] & TrackSource[] & {
5149
- [K_52 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
5210
+ [K_54 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
5150
5211
  }) | undefined;
5151
5212
  hidden?: boolean | undefined;
5152
5213
  recorder?: boolean | undefined;
5153
5214
  canUpdateMetadata?: boolean | undefined;
5154
5215
  } & {
5155
- [K_53 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
5216
+ [K_55 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
5156
5217
  }) | undefined;
5157
5218
  region?: string | undefined;
5158
5219
  isPublisher?: boolean | undefined;
5159
5220
  } & {
5160
- [K_54 in Exclude<keyof I["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never;
5221
+ [K_56 in Exclude<keyof I["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never;
5161
5222
  })[] & {
5162
- [K_55 in Exclude<keyof I["message"]["update"]["participants"], keyof {
5223
+ [K_57 in Exclude<keyof I["message"]["update"]["participants"], keyof {
5163
5224
  sid?: string | undefined;
5164
5225
  identity?: string | undefined;
5165
5226
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -5216,11 +5277,11 @@ export declare const SignalResponse: {
5216
5277
  }[]>]: never;
5217
5278
  }) | undefined;
5218
5279
  } & {
5219
- [K_56 in Exclude<keyof I["message"]["update"], "participants">]: never;
5280
+ [K_58 in Exclude<keyof I["message"]["update"], "participants">]: never;
5220
5281
  }) | undefined;
5221
5282
  $case: "update";
5222
5283
  } & {
5223
- [K_57 in Exclude<keyof I["message"], "update" | "$case">]: never;
5284
+ [K_59 in Exclude<keyof I["message"], "update" | "$case">]: never;
5224
5285
  }) | ({
5225
5286
  trackPublished?: {
5226
5287
  cid?: string | undefined;
@@ -5365,9 +5426,9 @@ export declare const SignalResponse: {
5365
5426
  bitrate?: number | undefined;
5366
5427
  ssrc?: number | undefined;
5367
5428
  } & {
5368
- [K_58 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never;
5429
+ [K_60 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never;
5369
5430
  })[] & {
5370
- [K_59 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"], keyof {
5431
+ [K_61 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"], keyof {
5371
5432
  quality?: VideoQuality | undefined;
5372
5433
  width?: number | undefined;
5373
5434
  height?: number | undefined;
@@ -5422,9 +5483,9 @@ export declare const SignalResponse: {
5422
5483
  bitrate?: number | undefined;
5423
5484
  ssrc?: number | undefined;
5424
5485
  } & {
5425
- [K_60 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
5486
+ [K_62 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
5426
5487
  })[] & {
5427
- [K_61 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
5488
+ [K_63 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
5428
5489
  quality?: VideoQuality | undefined;
5429
5490
  width?: number | undefined;
5430
5491
  height?: number | undefined;
@@ -5433,9 +5494,9 @@ export declare const SignalResponse: {
5433
5494
  }[]>]: never;
5434
5495
  }) | undefined;
5435
5496
  } & {
5436
- [K_62 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
5497
+ [K_64 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
5437
5498
  })[] & {
5438
- [K_63 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"], keyof {
5499
+ [K_65 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"], keyof {
5439
5500
  mimeType?: string | undefined;
5440
5501
  mid?: string | undefined;
5441
5502
  cid?: string | undefined;
@@ -5452,14 +5513,14 @@ export declare const SignalResponse: {
5452
5513
  disableRed?: boolean | undefined;
5453
5514
  encryption?: Encryption_Type | undefined;
5454
5515
  } & {
5455
- [K_64 in Exclude<keyof I["message"]["trackPublished"]["track"], keyof TrackInfo>]: never;
5516
+ [K_66 in Exclude<keyof I["message"]["trackPublished"]["track"], keyof TrackInfo>]: never;
5456
5517
  }) | undefined;
5457
5518
  } & {
5458
- [K_65 in Exclude<keyof I["message"]["trackPublished"], keyof TrackPublishedResponse>]: never;
5519
+ [K_67 in Exclude<keyof I["message"]["trackPublished"], keyof TrackPublishedResponse>]: never;
5459
5520
  }) | undefined;
5460
5521
  $case: "trackPublished";
5461
5522
  } & {
5462
- [K_66 in Exclude<keyof I["message"], "trackPublished" | "$case">]: never;
5523
+ [K_68 in Exclude<keyof I["message"], "trackPublished" | "$case">]: never;
5463
5524
  }) | ({
5464
5525
  leave?: {
5465
5526
  canReconnect?: boolean | undefined;
@@ -5475,11 +5536,11 @@ export declare const SignalResponse: {
5475
5536
  canReconnect?: boolean | undefined;
5476
5537
  reason?: DisconnectReason | undefined;
5477
5538
  } & {
5478
- [K_67 in Exclude<keyof I["message"]["leave"], keyof LeaveRequest>]: never;
5539
+ [K_69 in Exclude<keyof I["message"]["leave"], keyof LeaveRequest>]: never;
5479
5540
  }) | undefined;
5480
5541
  $case: "leave";
5481
5542
  } & {
5482
- [K_68 in Exclude<keyof I["message"], "leave" | "$case">]: never;
5543
+ [K_70 in Exclude<keyof I["message"], "leave" | "$case">]: never;
5483
5544
  }) | ({
5484
5545
  mute?: {
5485
5546
  sid?: string | undefined;
@@ -5495,11 +5556,11 @@ export declare const SignalResponse: {
5495
5556
  sid?: string | undefined;
5496
5557
  muted?: boolean | undefined;
5497
5558
  } & {
5498
- [K_69 in Exclude<keyof I["message"]["mute"], keyof MuteTrackRequest>]: never;
5559
+ [K_71 in Exclude<keyof I["message"]["mute"], keyof MuteTrackRequest>]: never;
5499
5560
  }) | undefined;
5500
5561
  $case: "mute";
5501
5562
  } & {
5502
- [K_70 in Exclude<keyof I["message"], "mute" | "$case">]: never;
5563
+ [K_72 in Exclude<keyof I["message"], "mute" | "$case">]: never;
5503
5564
  }) | ({
5504
5565
  speakersChanged?: {
5505
5566
  speakers?: {
@@ -5531,20 +5592,20 @@ export declare const SignalResponse: {
5531
5592
  level?: number | undefined;
5532
5593
  active?: boolean | undefined;
5533
5594
  } & {
5534
- [K_71 in Exclude<keyof I["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never;
5595
+ [K_73 in Exclude<keyof I["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never;
5535
5596
  })[] & {
5536
- [K_72 in Exclude<keyof I["message"]["speakersChanged"]["speakers"], keyof {
5597
+ [K_74 in Exclude<keyof I["message"]["speakersChanged"]["speakers"], keyof {
5537
5598
  sid?: string | undefined;
5538
5599
  level?: number | undefined;
5539
5600
  active?: boolean | undefined;
5540
5601
  }[]>]: never;
5541
5602
  }) | undefined;
5542
5603
  } & {
5543
- [K_73 in Exclude<keyof I["message"]["speakersChanged"], "speakers">]: never;
5604
+ [K_75 in Exclude<keyof I["message"]["speakersChanged"], "speakers">]: never;
5544
5605
  }) | undefined;
5545
5606
  $case: "speakersChanged";
5546
5607
  } & {
5547
- [K_74 in Exclude<keyof I["message"], "speakersChanged" | "$case">]: never;
5608
+ [K_76 in Exclude<keyof I["message"], "speakersChanged" | "$case">]: never;
5548
5609
  }) | ({
5549
5610
  roomUpdate?: {
5550
5611
  room?: {
@@ -5617,9 +5678,9 @@ export declare const SignalResponse: {
5617
5678
  mime?: string | undefined;
5618
5679
  fmtpLine?: string | undefined;
5619
5680
  } & {
5620
- [K_75 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
5681
+ [K_77 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
5621
5682
  })[] & {
5622
- [K_76 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
5683
+ [K_78 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
5623
5684
  mime?: string | undefined;
5624
5685
  fmtpLine?: string | undefined;
5625
5686
  }[]>]: never;
@@ -5629,14 +5690,14 @@ export declare const SignalResponse: {
5629
5690
  numPublishers?: number | undefined;
5630
5691
  activeRecording?: boolean | undefined;
5631
5692
  } & {
5632
- [K_77 in Exclude<keyof I["message"]["roomUpdate"]["room"], keyof Room>]: never;
5693
+ [K_79 in Exclude<keyof I["message"]["roomUpdate"]["room"], keyof Room>]: never;
5633
5694
  }) | undefined;
5634
5695
  } & {
5635
- [K_78 in Exclude<keyof I["message"]["roomUpdate"], "room">]: never;
5696
+ [K_80 in Exclude<keyof I["message"]["roomUpdate"], "room">]: never;
5636
5697
  }) | undefined;
5637
5698
  $case: "roomUpdate";
5638
5699
  } & {
5639
- [K_79 in Exclude<keyof I["message"], "roomUpdate" | "$case">]: never;
5700
+ [K_81 in Exclude<keyof I["message"], "roomUpdate" | "$case">]: never;
5640
5701
  }) | ({
5641
5702
  connectionQuality?: {
5642
5703
  updates?: {
@@ -5668,20 +5729,20 @@ export declare const SignalResponse: {
5668
5729
  quality?: ConnectionQuality | undefined;
5669
5730
  score?: number | undefined;
5670
5731
  } & {
5671
- [K_80 in Exclude<keyof I["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never;
5732
+ [K_82 in Exclude<keyof I["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never;
5672
5733
  })[] & {
5673
- [K_81 in Exclude<keyof I["message"]["connectionQuality"]["updates"], keyof {
5734
+ [K_83 in Exclude<keyof I["message"]["connectionQuality"]["updates"], keyof {
5674
5735
  participantSid?: string | undefined;
5675
5736
  quality?: ConnectionQuality | undefined;
5676
5737
  score?: number | undefined;
5677
5738
  }[]>]: never;
5678
5739
  }) | undefined;
5679
5740
  } & {
5680
- [K_82 in Exclude<keyof I["message"]["connectionQuality"], "updates">]: never;
5741
+ [K_84 in Exclude<keyof I["message"]["connectionQuality"], "updates">]: never;
5681
5742
  }) | undefined;
5682
5743
  $case: "connectionQuality";
5683
5744
  } & {
5684
- [K_83 in Exclude<keyof I["message"], "connectionQuality" | "$case">]: never;
5745
+ [K_85 in Exclude<keyof I["message"], "connectionQuality" | "$case">]: never;
5685
5746
  }) | ({
5686
5747
  streamStateUpdate?: {
5687
5748
  streamStates?: {
@@ -5713,20 +5774,20 @@ export declare const SignalResponse: {
5713
5774
  trackSid?: string | undefined;
5714
5775
  state?: StreamState | undefined;
5715
5776
  } & {
5716
- [K_84 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never;
5777
+ [K_86 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never;
5717
5778
  })[] & {
5718
- [K_85 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"], keyof {
5779
+ [K_87 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"], keyof {
5719
5780
  participantSid?: string | undefined;
5720
5781
  trackSid?: string | undefined;
5721
5782
  state?: StreamState | undefined;
5722
5783
  }[]>]: never;
5723
5784
  }) | undefined;
5724
5785
  } & {
5725
- [K_86 in Exclude<keyof I["message"]["streamStateUpdate"], "streamStates">]: never;
5786
+ [K_88 in Exclude<keyof I["message"]["streamStateUpdate"], "streamStates">]: never;
5726
5787
  }) | undefined;
5727
5788
  $case: "streamStateUpdate";
5728
5789
  } & {
5729
- [K_87 in Exclude<keyof I["message"], "streamStateUpdate" | "$case">]: never;
5790
+ [K_89 in Exclude<keyof I["message"], "streamStateUpdate" | "$case">]: never;
5730
5791
  }) | ({
5731
5792
  subscribedQualityUpdate?: {
5732
5793
  trackSid?: string | undefined;
@@ -5770,9 +5831,9 @@ export declare const SignalResponse: {
5770
5831
  quality?: VideoQuality | undefined;
5771
5832
  enabled?: boolean | undefined;
5772
5833
  } & {
5773
- [K_88 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never;
5834
+ [K_90 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never;
5774
5835
  })[] & {
5775
- [K_89 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
5836
+ [K_91 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
5776
5837
  quality?: VideoQuality | undefined;
5777
5838
  enabled?: boolean | undefined;
5778
5839
  }[]>]: never;
@@ -5801,17 +5862,17 @@ export declare const SignalResponse: {
5801
5862
  quality?: VideoQuality | undefined;
5802
5863
  enabled?: boolean | undefined;
5803
5864
  } & {
5804
- [K_90 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never;
5865
+ [K_92 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never;
5805
5866
  })[] & {
5806
- [K_91 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
5867
+ [K_93 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
5807
5868
  quality?: VideoQuality | undefined;
5808
5869
  enabled?: boolean | undefined;
5809
5870
  }[]>]: never;
5810
5871
  }) | undefined;
5811
5872
  } & {
5812
- [K_92 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never;
5873
+ [K_94 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never;
5813
5874
  })[] & {
5814
- [K_93 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
5875
+ [K_95 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
5815
5876
  codec?: string | undefined;
5816
5877
  qualities?: {
5817
5878
  quality?: VideoQuality | undefined;
@@ -5820,11 +5881,11 @@ export declare const SignalResponse: {
5820
5881
  }[]>]: never;
5821
5882
  }) | undefined;
5822
5883
  } & {
5823
- [K_94 in Exclude<keyof I["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never;
5884
+ [K_96 in Exclude<keyof I["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never;
5824
5885
  }) | undefined;
5825
5886
  $case: "subscribedQualityUpdate";
5826
5887
  } & {
5827
- [K_95 in Exclude<keyof I["message"], "subscribedQualityUpdate" | "$case">]: never;
5888
+ [K_97 in Exclude<keyof I["message"], "subscribedQualityUpdate" | "$case">]: never;
5828
5889
  }) | ({
5829
5890
  subscriptionPermissionUpdate?: {
5830
5891
  participantSid?: string | undefined;
@@ -5843,11 +5904,11 @@ export declare const SignalResponse: {
5843
5904
  trackSid?: string | undefined;
5844
5905
  allowed?: boolean | undefined;
5845
5906
  } & {
5846
- [K_96 in Exclude<keyof I["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never;
5907
+ [K_98 in Exclude<keyof I["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never;
5847
5908
  }) | undefined;
5848
5909
  $case: "subscriptionPermissionUpdate";
5849
5910
  } & {
5850
- [K_97 in Exclude<keyof I["message"], "subscriptionPermissionUpdate" | "$case">]: never;
5911
+ [K_99 in Exclude<keyof I["message"], "subscriptionPermissionUpdate" | "$case">]: never;
5851
5912
  }) | ({
5852
5913
  refreshToken?: string | undefined;
5853
5914
  } & {
@@ -5856,7 +5917,7 @@ export declare const SignalResponse: {
5856
5917
  refreshToken?: string | undefined;
5857
5918
  $case: "refreshToken";
5858
5919
  } & {
5859
- [K_98 in Exclude<keyof I["message"], "refreshToken" | "$case">]: never;
5920
+ [K_100 in Exclude<keyof I["message"], "refreshToken" | "$case">]: never;
5860
5921
  }) | ({
5861
5922
  trackUnpublished?: {
5862
5923
  trackSid?: string | undefined;
@@ -5869,11 +5930,11 @@ export declare const SignalResponse: {
5869
5930
  } & {
5870
5931
  trackSid?: string | undefined;
5871
5932
  } & {
5872
- [K_99 in Exclude<keyof I["message"]["trackUnpublished"], "trackSid">]: never;
5933
+ [K_101 in Exclude<keyof I["message"]["trackUnpublished"], "trackSid">]: never;
5873
5934
  }) | undefined;
5874
5935
  $case: "trackUnpublished";
5875
5936
  } & {
5876
- [K_100 in Exclude<keyof I["message"], "trackUnpublished" | "$case">]: never;
5937
+ [K_102 in Exclude<keyof I["message"], "trackUnpublished" | "$case">]: never;
5877
5938
  }) | ({
5878
5939
  pong?: number | undefined;
5879
5940
  } & {
@@ -5882,7 +5943,7 @@ export declare const SignalResponse: {
5882
5943
  pong?: number | undefined;
5883
5944
  $case: "pong";
5884
5945
  } & {
5885
- [K_101 in Exclude<keyof I["message"], "pong" | "$case">]: never;
5946
+ [K_103 in Exclude<keyof I["message"], "pong" | "$case">]: never;
5886
5947
  }) | ({
5887
5948
  reconnect?: {
5888
5949
  iceServers?: {
@@ -5903,6 +5964,10 @@ export declare const SignalResponse: {
5903
5964
  mime?: string | undefined;
5904
5965
  fmtpLine?: string | undefined;
5905
5966
  }[] | undefined;
5967
+ publish?: {
5968
+ mime?: string | undefined;
5969
+ fmtpLine?: string | undefined;
5970
+ }[] | undefined;
5906
5971
  } | undefined;
5907
5972
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5908
5973
  } | undefined;
@@ -5929,6 +5994,10 @@ export declare const SignalResponse: {
5929
5994
  mime?: string | undefined;
5930
5995
  fmtpLine?: string | undefined;
5931
5996
  }[] | undefined;
5997
+ publish?: {
5998
+ mime?: string | undefined;
5999
+ fmtpLine?: string | undefined;
6000
+ }[] | undefined;
5932
6001
  } | undefined;
5933
6002
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5934
6003
  } | undefined;
@@ -5943,14 +6012,14 @@ export declare const SignalResponse: {
5943
6012
  credential?: string | undefined;
5944
6013
  } & {
5945
6014
  urls?: (string[] & string[] & {
5946
- [K_102 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never;
6015
+ [K_104 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never;
5947
6016
  }) | undefined;
5948
6017
  username?: string | undefined;
5949
6018
  credential?: string | undefined;
5950
6019
  } & {
5951
- [K_103 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never;
6020
+ [K_105 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never;
5952
6021
  })[] & {
5953
- [K_104 in Exclude<keyof I["message"]["reconnect"]["iceServers"], keyof {
6022
+ [K_106 in Exclude<keyof I["message"]["reconnect"]["iceServers"], keyof {
5954
6023
  urls?: string[] | undefined;
5955
6024
  username?: string | undefined;
5956
6025
  credential?: string | undefined;
@@ -5969,6 +6038,10 @@ export declare const SignalResponse: {
5969
6038
  mime?: string | undefined;
5970
6039
  fmtpLine?: string | undefined;
5971
6040
  }[] | undefined;
6041
+ publish?: {
6042
+ mime?: string | undefined;
6043
+ fmtpLine?: string | undefined;
6044
+ }[] | undefined;
5972
6045
  } | undefined;
5973
6046
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5974
6047
  } & {
@@ -5977,14 +6050,14 @@ export declare const SignalResponse: {
5977
6050
  } & {
5978
6051
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
5979
6052
  } & {
5980
- [K_105 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never;
6053
+ [K_107 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never;
5981
6054
  }) | undefined;
5982
6055
  screen?: ({
5983
6056
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
5984
6057
  } & {
5985
6058
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
5986
6059
  } & {
5987
- [K_106 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
6060
+ [K_108 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
5988
6061
  }) | undefined;
5989
6062
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
5990
6063
  disabledCodecs?: ({
@@ -5992,6 +6065,10 @@ export declare const SignalResponse: {
5992
6065
  mime?: string | undefined;
5993
6066
  fmtpLine?: string | undefined;
5994
6067
  }[] | undefined;
6068
+ publish?: {
6069
+ mime?: string | undefined;
6070
+ fmtpLine?: string | undefined;
6071
+ }[] | undefined;
5995
6072
  } & {
5996
6073
  codecs?: ({
5997
6074
  mime?: string | undefined;
@@ -6003,26 +6080,43 @@ export declare const SignalResponse: {
6003
6080
  mime?: string | undefined;
6004
6081
  fmtpLine?: string | undefined;
6005
6082
  } & {
6006
- [K_107 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
6083
+ [K_109 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
6084
+ })[] & {
6085
+ [K_110 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
6086
+ mime?: string | undefined;
6087
+ fmtpLine?: string | undefined;
6088
+ }[]>]: never;
6089
+ }) | undefined;
6090
+ publish?: ({
6091
+ mime?: string | undefined;
6092
+ fmtpLine?: string | undefined;
6093
+ }[] & ({
6094
+ mime?: string | undefined;
6095
+ fmtpLine?: string | undefined;
6096
+ } & {
6097
+ mime?: string | undefined;
6098
+ fmtpLine?: string | undefined;
6099
+ } & {
6100
+ [K_111 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
6007
6101
  })[] & {
6008
- [K_108 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
6102
+ [K_112 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
6009
6103
  mime?: string | undefined;
6010
6104
  fmtpLine?: string | undefined;
6011
6105
  }[]>]: never;
6012
6106
  }) | undefined;
6013
6107
  } & {
6014
- [K_109 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
6108
+ [K_113 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
6015
6109
  }) | undefined;
6016
6110
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
6017
6111
  } & {
6018
- [K_110 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never;
6112
+ [K_114 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never;
6019
6113
  }) | undefined;
6020
6114
  } & {
6021
- [K_111 in Exclude<keyof I["message"]["reconnect"], keyof ReconnectResponse>]: never;
6115
+ [K_115 in Exclude<keyof I["message"]["reconnect"], keyof ReconnectResponse>]: never;
6022
6116
  }) | undefined;
6023
6117
  $case: "reconnect";
6024
6118
  } & {
6025
- [K_112 in Exclude<keyof I["message"], "reconnect" | "$case">]: never;
6119
+ [K_116 in Exclude<keyof I["message"], "reconnect" | "$case">]: never;
6026
6120
  }) | ({
6027
6121
  pongResp?: {
6028
6122
  lastPingTimestamp?: number | undefined;
@@ -6038,14 +6132,34 @@ export declare const SignalResponse: {
6038
6132
  lastPingTimestamp?: number | undefined;
6039
6133
  timestamp?: number | undefined;
6040
6134
  } & {
6041
- [K_113 in Exclude<keyof I["message"]["pongResp"], keyof Pong>]: never;
6135
+ [K_117 in Exclude<keyof I["message"]["pongResp"], keyof Pong>]: never;
6042
6136
  }) | undefined;
6043
6137
  $case: "pongResp";
6044
6138
  } & {
6045
- [K_114 in Exclude<keyof I["message"], "pongResp" | "$case">]: never;
6139
+ [K_118 in Exclude<keyof I["message"], "pongResp" | "$case">]: never;
6140
+ }) | ({
6141
+ subscriptionResponse?: {
6142
+ trackSid?: string | undefined;
6143
+ err?: SubscriptionError | undefined;
6144
+ } | undefined;
6145
+ } & {
6146
+ $case: "subscriptionResponse";
6147
+ } & {
6148
+ subscriptionResponse?: ({
6149
+ trackSid?: string | undefined;
6150
+ err?: SubscriptionError | undefined;
6151
+ } & {
6152
+ trackSid?: string | undefined;
6153
+ err?: SubscriptionError | undefined;
6154
+ } & {
6155
+ [K_119 in Exclude<keyof I["message"]["subscriptionResponse"], keyof SubscriptionResponse>]: never;
6156
+ }) | undefined;
6157
+ $case: "subscriptionResponse";
6158
+ } & {
6159
+ [K_120 in Exclude<keyof I["message"], "subscriptionResponse" | "$case">]: never;
6046
6160
  }) | undefined;
6047
6161
  } & {
6048
- [K_115 in Exclude<keyof I, "message">]: never;
6162
+ [K_121 in Exclude<keyof I, "message">]: never;
6049
6163
  }>(base?: I | undefined): SignalResponse;
6050
6164
  fromPartial<I_1 extends {
6051
6165
  message?: ({
@@ -6197,6 +6311,10 @@ export declare const SignalResponse: {
6197
6311
  mime?: string | undefined;
6198
6312
  fmtpLine?: string | undefined;
6199
6313
  }[] | undefined;
6314
+ publish?: {
6315
+ mime?: string | undefined;
6316
+ fmtpLine?: string | undefined;
6317
+ }[] | undefined;
6200
6318
  } | undefined;
6201
6319
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
6202
6320
  } | undefined;
@@ -6211,6 +6329,7 @@ export declare const SignalResponse: {
6211
6329
  nodeId?: string | undefined;
6212
6330
  debugInfo?: string | undefined;
6213
6331
  } | undefined;
6332
+ sifTrailer?: Uint8Array | undefined;
6214
6333
  } | undefined;
6215
6334
  } & {
6216
6335
  $case: "join";
@@ -6460,6 +6579,10 @@ export declare const SignalResponse: {
6460
6579
  mime?: string | undefined;
6461
6580
  fmtpLine?: string | undefined;
6462
6581
  }[] | undefined;
6582
+ publish?: {
6583
+ mime?: string | undefined;
6584
+ fmtpLine?: string | undefined;
6585
+ }[] | undefined;
6463
6586
  } | undefined;
6464
6587
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
6465
6588
  } | undefined;
@@ -6473,6 +6596,13 @@ export declare const SignalResponse: {
6473
6596
  } | undefined;
6474
6597
  } & {
6475
6598
  $case: "pongResp";
6599
+ }) | ({
6600
+ subscriptionResponse?: {
6601
+ trackSid?: string | undefined;
6602
+ err?: SubscriptionError | undefined;
6603
+ } | undefined;
6604
+ } & {
6605
+ $case: "subscriptionResponse";
6476
6606
  }) | undefined;
6477
6607
  } & {
6478
6608
  message?: ({
@@ -6624,6 +6754,10 @@ export declare const SignalResponse: {
6624
6754
  mime?: string | undefined;
6625
6755
  fmtpLine?: string | undefined;
6626
6756
  }[] | undefined;
6757
+ publish?: {
6758
+ mime?: string | undefined;
6759
+ fmtpLine?: string | undefined;
6760
+ }[] | undefined;
6627
6761
  } | undefined;
6628
6762
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
6629
6763
  } | undefined;
@@ -6638,6 +6772,7 @@ export declare const SignalResponse: {
6638
6772
  nodeId?: string | undefined;
6639
6773
  debugInfo?: string | undefined;
6640
6774
  } | undefined;
6775
+ sifTrailer?: Uint8Array | undefined;
6641
6776
  } | undefined;
6642
6777
  } & {
6643
6778
  $case: "join";
@@ -6790,6 +6925,10 @@ export declare const SignalResponse: {
6790
6925
  mime?: string | undefined;
6791
6926
  fmtpLine?: string | undefined;
6792
6927
  }[] | undefined;
6928
+ publish?: {
6929
+ mime?: string | undefined;
6930
+ fmtpLine?: string | undefined;
6931
+ }[] | undefined;
6793
6932
  } | undefined;
6794
6933
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
6795
6934
  } | undefined;
@@ -6804,6 +6943,7 @@ export declare const SignalResponse: {
6804
6943
  nodeId?: string | undefined;
6805
6944
  debugInfo?: string | undefined;
6806
6945
  } | undefined;
6946
+ sifTrailer?: Uint8Array | undefined;
6807
6947
  } & {
6808
6948
  room?: ({
6809
6949
  sid?: string | undefined;
@@ -6837,9 +6977,9 @@ export declare const SignalResponse: {
6837
6977
  mime?: string | undefined;
6838
6978
  fmtpLine?: string | undefined;
6839
6979
  } & {
6840
- [K_116 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
6980
+ [K_122 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
6841
6981
  })[] & {
6842
- [K_117 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"], keyof {
6982
+ [K_123 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"], keyof {
6843
6983
  mime?: string | undefined;
6844
6984
  fmtpLine?: string | undefined;
6845
6985
  }[]>]: never;
@@ -6849,7 +6989,7 @@ export declare const SignalResponse: {
6849
6989
  numPublishers?: number | undefined;
6850
6990
  activeRecording?: boolean | undefined;
6851
6991
  } & {
6852
- [K_118 in Exclude<keyof I_1["message"]["join"]["room"], keyof Room>]: never;
6992
+ [K_124 in Exclude<keyof I_1["message"]["join"]["room"], keyof Room>]: never;
6853
6993
  }) | undefined;
6854
6994
  participant?: ({
6855
6995
  sid?: string | undefined;
@@ -7006,9 +7146,9 @@ export declare const SignalResponse: {
7006
7146
  bitrate?: number | undefined;
7007
7147
  ssrc?: number | undefined;
7008
7148
  } & {
7009
- [K_119 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
7149
+ [K_125 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
7010
7150
  })[] & {
7011
- [K_120 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"], keyof {
7151
+ [K_126 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"], keyof {
7012
7152
  quality?: VideoQuality | undefined;
7013
7153
  width?: number | undefined;
7014
7154
  height?: number | undefined;
@@ -7063,9 +7203,9 @@ export declare const SignalResponse: {
7063
7203
  bitrate?: number | undefined;
7064
7204
  ssrc?: number | undefined;
7065
7205
  } & {
7066
- [K_121 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
7206
+ [K_127 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
7067
7207
  })[] & {
7068
- [K_122 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
7208
+ [K_128 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
7069
7209
  quality?: VideoQuality | undefined;
7070
7210
  width?: number | undefined;
7071
7211
  height?: number | undefined;
@@ -7074,9 +7214,9 @@ export declare const SignalResponse: {
7074
7214
  }[]>]: never;
7075
7215
  }) | undefined;
7076
7216
  } & {
7077
- [K_123 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
7217
+ [K_129 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
7078
7218
  })[] & {
7079
- [K_124 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"], keyof {
7219
+ [K_130 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"], keyof {
7080
7220
  mimeType?: string | undefined;
7081
7221
  mid?: string | undefined;
7082
7222
  cid?: string | undefined;
@@ -7093,9 +7233,9 @@ export declare const SignalResponse: {
7093
7233
  disableRed?: boolean | undefined;
7094
7234
  encryption?: Encryption_Type | undefined;
7095
7235
  } & {
7096
- [K_125 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number], keyof TrackInfo>]: never;
7236
+ [K_131 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number], keyof TrackInfo>]: never;
7097
7237
  })[] & {
7098
- [K_126 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"], keyof {
7238
+ [K_132 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"], keyof {
7099
7239
  sid?: string | undefined;
7100
7240
  type?: TrackType | undefined;
7101
7241
  name?: string | undefined;
@@ -7148,18 +7288,18 @@ export declare const SignalResponse: {
7148
7288
  canPublish?: boolean | undefined;
7149
7289
  canPublishData?: boolean | undefined;
7150
7290
  canPublishSources?: (TrackSource[] & TrackSource[] & {
7151
- [K_127 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
7291
+ [K_133 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
7152
7292
  }) | undefined;
7153
7293
  hidden?: boolean | undefined;
7154
7294
  recorder?: boolean | undefined;
7155
7295
  canUpdateMetadata?: boolean | undefined;
7156
7296
  } & {
7157
- [K_128 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
7297
+ [K_134 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
7158
7298
  }) | undefined;
7159
7299
  region?: string | undefined;
7160
7300
  isPublisher?: boolean | undefined;
7161
7301
  } & {
7162
- [K_129 in Exclude<keyof I_1["message"]["join"]["participant"], keyof ParticipantInfo>]: never;
7302
+ [K_135 in Exclude<keyof I_1["message"]["join"]["participant"], keyof ParticipantInfo>]: never;
7163
7303
  }) | undefined;
7164
7304
  otherParticipants?: ({
7165
7305
  sid?: string | undefined;
@@ -7370,9 +7510,9 @@ export declare const SignalResponse: {
7370
7510
  bitrate?: number | undefined;
7371
7511
  ssrc?: number | undefined;
7372
7512
  } & {
7373
- [K_130 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
7513
+ [K_136 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
7374
7514
  })[] & {
7375
- [K_131 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"], keyof {
7515
+ [K_137 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"], keyof {
7376
7516
  quality?: VideoQuality | undefined;
7377
7517
  width?: number | undefined;
7378
7518
  height?: number | undefined;
@@ -7427,9 +7567,9 @@ export declare const SignalResponse: {
7427
7567
  bitrate?: number | undefined;
7428
7568
  ssrc?: number | undefined;
7429
7569
  } & {
7430
- [K_132 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
7570
+ [K_138 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
7431
7571
  })[] & {
7432
- [K_133 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
7572
+ [K_139 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
7433
7573
  quality?: VideoQuality | undefined;
7434
7574
  width?: number | undefined;
7435
7575
  height?: number | undefined;
@@ -7438,9 +7578,9 @@ export declare const SignalResponse: {
7438
7578
  }[]>]: never;
7439
7579
  }) | undefined;
7440
7580
  } & {
7441
- [K_134 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
7581
+ [K_140 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
7442
7582
  })[] & {
7443
- [K_135 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
7583
+ [K_141 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
7444
7584
  mimeType?: string | undefined;
7445
7585
  mid?: string | undefined;
7446
7586
  cid?: string | undefined;
@@ -7457,9 +7597,9 @@ export declare const SignalResponse: {
7457
7597
  disableRed?: boolean | undefined;
7458
7598
  encryption?: Encryption_Type | undefined;
7459
7599
  } & {
7460
- [K_136 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never;
7600
+ [K_142 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never;
7461
7601
  })[] & {
7462
- [K_137 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"], keyof {
7602
+ [K_143 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"], keyof {
7463
7603
  sid?: string | undefined;
7464
7604
  type?: TrackType | undefined;
7465
7605
  name?: string | undefined;
@@ -7512,20 +7652,20 @@ export declare const SignalResponse: {
7512
7652
  canPublish?: boolean | undefined;
7513
7653
  canPublishData?: boolean | undefined;
7514
7654
  canPublishSources?: (TrackSource[] & TrackSource[] & {
7515
- [K_138 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
7655
+ [K_144 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
7516
7656
  }) | undefined;
7517
7657
  hidden?: boolean | undefined;
7518
7658
  recorder?: boolean | undefined;
7519
7659
  canUpdateMetadata?: boolean | undefined;
7520
7660
  } & {
7521
- [K_139 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
7661
+ [K_145 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
7522
7662
  }) | undefined;
7523
7663
  region?: string | undefined;
7524
7664
  isPublisher?: boolean | undefined;
7525
7665
  } & {
7526
- [K_140 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number], keyof ParticipantInfo>]: never;
7666
+ [K_146 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number], keyof ParticipantInfo>]: never;
7527
7667
  })[] & {
7528
- [K_141 in Exclude<keyof I_1["message"]["join"]["otherParticipants"], keyof {
7668
+ [K_147 in Exclude<keyof I_1["message"]["join"]["otherParticipants"], keyof {
7529
7669
  sid?: string | undefined;
7530
7670
  identity?: string | undefined;
7531
7671
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -7592,14 +7732,14 @@ export declare const SignalResponse: {
7592
7732
  credential?: string | undefined;
7593
7733
  } & {
7594
7734
  urls?: (string[] & string[] & {
7595
- [K_142 in Exclude<keyof I_1["message"]["join"]["iceServers"][number]["urls"], keyof string[]>]: never;
7735
+ [K_148 in Exclude<keyof I_1["message"]["join"]["iceServers"][number]["urls"], keyof string[]>]: never;
7596
7736
  }) | undefined;
7597
7737
  username?: string | undefined;
7598
7738
  credential?: string | undefined;
7599
7739
  } & {
7600
- [K_143 in Exclude<keyof I_1["message"]["join"]["iceServers"][number], keyof ICEServer>]: never;
7740
+ [K_149 in Exclude<keyof I_1["message"]["join"]["iceServers"][number], keyof ICEServer>]: never;
7601
7741
  })[] & {
7602
- [K_144 in Exclude<keyof I_1["message"]["join"]["iceServers"], keyof {
7742
+ [K_150 in Exclude<keyof I_1["message"]["join"]["iceServers"], keyof {
7603
7743
  urls?: string[] | undefined;
7604
7744
  username?: string | undefined;
7605
7745
  credential?: string | undefined;
@@ -7620,6 +7760,10 @@ export declare const SignalResponse: {
7620
7760
  mime?: string | undefined;
7621
7761
  fmtpLine?: string | undefined;
7622
7762
  }[] | undefined;
7763
+ publish?: {
7764
+ mime?: string | undefined;
7765
+ fmtpLine?: string | undefined;
7766
+ }[] | undefined;
7623
7767
  } | undefined;
7624
7768
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
7625
7769
  } & {
@@ -7628,14 +7772,14 @@ export declare const SignalResponse: {
7628
7772
  } & {
7629
7773
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
7630
7774
  } & {
7631
- [K_145 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["video"], "hardwareEncoder">]: never;
7775
+ [K_151 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["video"], "hardwareEncoder">]: never;
7632
7776
  }) | undefined;
7633
7777
  screen?: ({
7634
7778
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
7635
7779
  } & {
7636
7780
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
7637
7781
  } & {
7638
- [K_146 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
7782
+ [K_152 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
7639
7783
  }) | undefined;
7640
7784
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
7641
7785
  disabledCodecs?: ({
@@ -7643,6 +7787,10 @@ export declare const SignalResponse: {
7643
7787
  mime?: string | undefined;
7644
7788
  fmtpLine?: string | undefined;
7645
7789
  }[] | undefined;
7790
+ publish?: {
7791
+ mime?: string | undefined;
7792
+ fmtpLine?: string | undefined;
7793
+ }[] | undefined;
7646
7794
  } & {
7647
7795
  codecs?: ({
7648
7796
  mime?: string | undefined;
@@ -7654,19 +7802,36 @@ export declare const SignalResponse: {
7654
7802
  mime?: string | undefined;
7655
7803
  fmtpLine?: string | undefined;
7656
7804
  } & {
7657
- [K_147 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
7805
+ [K_153 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
7658
7806
  })[] & {
7659
- [K_148 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
7807
+ [K_154 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
7808
+ mime?: string | undefined;
7809
+ fmtpLine?: string | undefined;
7810
+ }[]>]: never;
7811
+ }) | undefined;
7812
+ publish?: ({
7813
+ mime?: string | undefined;
7814
+ fmtpLine?: string | undefined;
7815
+ }[] & ({
7816
+ mime?: string | undefined;
7817
+ fmtpLine?: string | undefined;
7818
+ } & {
7819
+ mime?: string | undefined;
7820
+ fmtpLine?: string | undefined;
7821
+ } & {
7822
+ [K_155 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
7823
+ })[] & {
7824
+ [K_156 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
7660
7825
  mime?: string | undefined;
7661
7826
  fmtpLine?: string | undefined;
7662
7827
  }[]>]: never;
7663
7828
  }) | undefined;
7664
7829
  } & {
7665
- [K_149 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
7830
+ [K_157 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
7666
7831
  }) | undefined;
7667
7832
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
7668
7833
  } & {
7669
- [K_150 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never;
7834
+ [K_158 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never;
7670
7835
  }) | undefined;
7671
7836
  serverRegion?: string | undefined;
7672
7837
  pingTimeout?: number | undefined;
@@ -7686,14 +7851,15 @@ export declare const SignalResponse: {
7686
7851
  nodeId?: string | undefined;
7687
7852
  debugInfo?: string | undefined;
7688
7853
  } & {
7689
- [K_151 in Exclude<keyof I_1["message"]["join"]["serverInfo"], keyof ServerInfo>]: never;
7854
+ [K_159 in Exclude<keyof I_1["message"]["join"]["serverInfo"], keyof ServerInfo>]: never;
7690
7855
  }) | undefined;
7856
+ sifTrailer?: Uint8Array | undefined;
7691
7857
  } & {
7692
- [K_152 in Exclude<keyof I_1["message"]["join"], keyof JoinResponse>]: never;
7858
+ [K_160 in Exclude<keyof I_1["message"]["join"], keyof JoinResponse>]: never;
7693
7859
  }) | undefined;
7694
7860
  $case: "join";
7695
7861
  } & {
7696
- [K_153 in Exclude<keyof I_1["message"], "join" | "$case">]: never;
7862
+ [K_161 in Exclude<keyof I_1["message"], "join" | "$case">]: never;
7697
7863
  }) | ({
7698
7864
  answer?: {
7699
7865
  type?: string | undefined;
@@ -7709,11 +7875,11 @@ export declare const SignalResponse: {
7709
7875
  type?: string | undefined;
7710
7876
  sdp?: string | undefined;
7711
7877
  } & {
7712
- [K_154 in Exclude<keyof I_1["message"]["answer"], keyof SessionDescription>]: never;
7878
+ [K_162 in Exclude<keyof I_1["message"]["answer"], keyof SessionDescription>]: never;
7713
7879
  }) | undefined;
7714
7880
  $case: "answer";
7715
7881
  } & {
7716
- [K_155 in Exclude<keyof I_1["message"], "answer" | "$case">]: never;
7882
+ [K_163 in Exclude<keyof I_1["message"], "answer" | "$case">]: never;
7717
7883
  }) | ({
7718
7884
  offer?: {
7719
7885
  type?: string | undefined;
@@ -7729,11 +7895,11 @@ export declare const SignalResponse: {
7729
7895
  type?: string | undefined;
7730
7896
  sdp?: string | undefined;
7731
7897
  } & {
7732
- [K_156 in Exclude<keyof I_1["message"]["offer"], keyof SessionDescription>]: never;
7898
+ [K_164 in Exclude<keyof I_1["message"]["offer"], keyof SessionDescription>]: never;
7733
7899
  }) | undefined;
7734
7900
  $case: "offer";
7735
7901
  } & {
7736
- [K_157 in Exclude<keyof I_1["message"], "offer" | "$case">]: never;
7902
+ [K_165 in Exclude<keyof I_1["message"], "offer" | "$case">]: never;
7737
7903
  }) | ({
7738
7904
  trickle?: {
7739
7905
  candidateInit?: string | undefined;
@@ -7749,11 +7915,11 @@ export declare const SignalResponse: {
7749
7915
  candidateInit?: string | undefined;
7750
7916
  target?: SignalTarget | undefined;
7751
7917
  } & {
7752
- [K_158 in Exclude<keyof I_1["message"]["trickle"], keyof TrickleRequest>]: never;
7918
+ [K_166 in Exclude<keyof I_1["message"]["trickle"], keyof TrickleRequest>]: never;
7753
7919
  }) | undefined;
7754
7920
  $case: "trickle";
7755
7921
  } & {
7756
- [K_159 in Exclude<keyof I_1["message"], "trickle" | "$case">]: never;
7922
+ [K_167 in Exclude<keyof I_1["message"], "trickle" | "$case">]: never;
7757
7923
  }) | ({
7758
7924
  update?: {
7759
7925
  participants?: {
@@ -8081,9 +8247,9 @@ export declare const SignalResponse: {
8081
8247
  bitrate?: number | undefined;
8082
8248
  ssrc?: number | undefined;
8083
8249
  } & {
8084
- [K_160 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
8250
+ [K_168 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
8085
8251
  })[] & {
8086
- [K_161 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
8252
+ [K_169 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
8087
8253
  quality?: VideoQuality | undefined;
8088
8254
  width?: number | undefined;
8089
8255
  height?: number | undefined;
@@ -8138,9 +8304,9 @@ export declare const SignalResponse: {
8138
8304
  bitrate?: number | undefined;
8139
8305
  ssrc?: number | undefined;
8140
8306
  } & {
8141
- [K_162 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
8307
+ [K_170 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
8142
8308
  })[] & {
8143
- [K_163 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
8309
+ [K_171 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
8144
8310
  quality?: VideoQuality | undefined;
8145
8311
  width?: number | undefined;
8146
8312
  height?: number | undefined;
@@ -8149,9 +8315,9 @@ export declare const SignalResponse: {
8149
8315
  }[]>]: never;
8150
8316
  }) | undefined;
8151
8317
  } & {
8152
- [K_164 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
8318
+ [K_172 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
8153
8319
  })[] & {
8154
- [K_165 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
8320
+ [K_173 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
8155
8321
  mimeType?: string | undefined;
8156
8322
  mid?: string | undefined;
8157
8323
  cid?: string | undefined;
@@ -8168,9 +8334,9 @@ export declare const SignalResponse: {
8168
8334
  disableRed?: boolean | undefined;
8169
8335
  encryption?: Encryption_Type | undefined;
8170
8336
  } & {
8171
- [K_166 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never;
8337
+ [K_174 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never;
8172
8338
  })[] & {
8173
- [K_167 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"], keyof {
8339
+ [K_175 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"], keyof {
8174
8340
  sid?: string | undefined;
8175
8341
  type?: TrackType | undefined;
8176
8342
  name?: string | undefined;
@@ -8223,20 +8389,20 @@ export declare const SignalResponse: {
8223
8389
  canPublish?: boolean | undefined;
8224
8390
  canPublishData?: boolean | undefined;
8225
8391
  canPublishSources?: (TrackSource[] & TrackSource[] & {
8226
- [K_168 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
8392
+ [K_176 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
8227
8393
  }) | undefined;
8228
8394
  hidden?: boolean | undefined;
8229
8395
  recorder?: boolean | undefined;
8230
8396
  canUpdateMetadata?: boolean | undefined;
8231
8397
  } & {
8232
- [K_169 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
8398
+ [K_177 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
8233
8399
  }) | undefined;
8234
8400
  region?: string | undefined;
8235
8401
  isPublisher?: boolean | undefined;
8236
8402
  } & {
8237
- [K_170 in Exclude<keyof I_1["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never;
8403
+ [K_178 in Exclude<keyof I_1["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never;
8238
8404
  })[] & {
8239
- [K_171 in Exclude<keyof I_1["message"]["update"]["participants"], keyof {
8405
+ [K_179 in Exclude<keyof I_1["message"]["update"]["participants"], keyof {
8240
8406
  sid?: string | undefined;
8241
8407
  identity?: string | undefined;
8242
8408
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -8293,11 +8459,11 @@ export declare const SignalResponse: {
8293
8459
  }[]>]: never;
8294
8460
  }) | undefined;
8295
8461
  } & {
8296
- [K_172 in Exclude<keyof I_1["message"]["update"], "participants">]: never;
8462
+ [K_180 in Exclude<keyof I_1["message"]["update"], "participants">]: never;
8297
8463
  }) | undefined;
8298
8464
  $case: "update";
8299
8465
  } & {
8300
- [K_173 in Exclude<keyof I_1["message"], "update" | "$case">]: never;
8466
+ [K_181 in Exclude<keyof I_1["message"], "update" | "$case">]: never;
8301
8467
  }) | ({
8302
8468
  trackPublished?: {
8303
8469
  cid?: string | undefined;
@@ -8442,9 +8608,9 @@ export declare const SignalResponse: {
8442
8608
  bitrate?: number | undefined;
8443
8609
  ssrc?: number | undefined;
8444
8610
  } & {
8445
- [K_174 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never;
8611
+ [K_182 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never;
8446
8612
  })[] & {
8447
- [K_175 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"], keyof {
8613
+ [K_183 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"], keyof {
8448
8614
  quality?: VideoQuality | undefined;
8449
8615
  width?: number | undefined;
8450
8616
  height?: number | undefined;
@@ -8499,9 +8665,9 @@ export declare const SignalResponse: {
8499
8665
  bitrate?: number | undefined;
8500
8666
  ssrc?: number | undefined;
8501
8667
  } & {
8502
- [K_176 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
8668
+ [K_184 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
8503
8669
  })[] & {
8504
- [K_177 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
8670
+ [K_185 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
8505
8671
  quality?: VideoQuality | undefined;
8506
8672
  width?: number | undefined;
8507
8673
  height?: number | undefined;
@@ -8510,9 +8676,9 @@ export declare const SignalResponse: {
8510
8676
  }[]>]: never;
8511
8677
  }) | undefined;
8512
8678
  } & {
8513
- [K_178 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
8679
+ [K_186 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
8514
8680
  })[] & {
8515
- [K_179 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"], keyof {
8681
+ [K_187 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"], keyof {
8516
8682
  mimeType?: string | undefined;
8517
8683
  mid?: string | undefined;
8518
8684
  cid?: string | undefined;
@@ -8529,14 +8695,14 @@ export declare const SignalResponse: {
8529
8695
  disableRed?: boolean | undefined;
8530
8696
  encryption?: Encryption_Type | undefined;
8531
8697
  } & {
8532
- [K_180 in Exclude<keyof I_1["message"]["trackPublished"]["track"], keyof TrackInfo>]: never;
8698
+ [K_188 in Exclude<keyof I_1["message"]["trackPublished"]["track"], keyof TrackInfo>]: never;
8533
8699
  }) | undefined;
8534
8700
  } & {
8535
- [K_181 in Exclude<keyof I_1["message"]["trackPublished"], keyof TrackPublishedResponse>]: never;
8701
+ [K_189 in Exclude<keyof I_1["message"]["trackPublished"], keyof TrackPublishedResponse>]: never;
8536
8702
  }) | undefined;
8537
8703
  $case: "trackPublished";
8538
8704
  } & {
8539
- [K_182 in Exclude<keyof I_1["message"], "trackPublished" | "$case">]: never;
8705
+ [K_190 in Exclude<keyof I_1["message"], "trackPublished" | "$case">]: never;
8540
8706
  }) | ({
8541
8707
  leave?: {
8542
8708
  canReconnect?: boolean | undefined;
@@ -8552,11 +8718,11 @@ export declare const SignalResponse: {
8552
8718
  canReconnect?: boolean | undefined;
8553
8719
  reason?: DisconnectReason | undefined;
8554
8720
  } & {
8555
- [K_183 in Exclude<keyof I_1["message"]["leave"], keyof LeaveRequest>]: never;
8721
+ [K_191 in Exclude<keyof I_1["message"]["leave"], keyof LeaveRequest>]: never;
8556
8722
  }) | undefined;
8557
8723
  $case: "leave";
8558
8724
  } & {
8559
- [K_184 in Exclude<keyof I_1["message"], "leave" | "$case">]: never;
8725
+ [K_192 in Exclude<keyof I_1["message"], "leave" | "$case">]: never;
8560
8726
  }) | ({
8561
8727
  mute?: {
8562
8728
  sid?: string | undefined;
@@ -8572,11 +8738,11 @@ export declare const SignalResponse: {
8572
8738
  sid?: string | undefined;
8573
8739
  muted?: boolean | undefined;
8574
8740
  } & {
8575
- [K_185 in Exclude<keyof I_1["message"]["mute"], keyof MuteTrackRequest>]: never;
8741
+ [K_193 in Exclude<keyof I_1["message"]["mute"], keyof MuteTrackRequest>]: never;
8576
8742
  }) | undefined;
8577
8743
  $case: "mute";
8578
8744
  } & {
8579
- [K_186 in Exclude<keyof I_1["message"], "mute" | "$case">]: never;
8745
+ [K_194 in Exclude<keyof I_1["message"], "mute" | "$case">]: never;
8580
8746
  }) | ({
8581
8747
  speakersChanged?: {
8582
8748
  speakers?: {
@@ -8608,20 +8774,20 @@ export declare const SignalResponse: {
8608
8774
  level?: number | undefined;
8609
8775
  active?: boolean | undefined;
8610
8776
  } & {
8611
- [K_187 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never;
8777
+ [K_195 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never;
8612
8778
  })[] & {
8613
- [K_188 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"], keyof {
8779
+ [K_196 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"], keyof {
8614
8780
  sid?: string | undefined;
8615
8781
  level?: number | undefined;
8616
8782
  active?: boolean | undefined;
8617
8783
  }[]>]: never;
8618
8784
  }) | undefined;
8619
8785
  } & {
8620
- [K_189 in Exclude<keyof I_1["message"]["speakersChanged"], "speakers">]: never;
8786
+ [K_197 in Exclude<keyof I_1["message"]["speakersChanged"], "speakers">]: never;
8621
8787
  }) | undefined;
8622
8788
  $case: "speakersChanged";
8623
8789
  } & {
8624
- [K_190 in Exclude<keyof I_1["message"], "speakersChanged" | "$case">]: never;
8790
+ [K_198 in Exclude<keyof I_1["message"], "speakersChanged" | "$case">]: never;
8625
8791
  }) | ({
8626
8792
  roomUpdate?: {
8627
8793
  room?: {
@@ -8694,9 +8860,9 @@ export declare const SignalResponse: {
8694
8860
  mime?: string | undefined;
8695
8861
  fmtpLine?: string | undefined;
8696
8862
  } & {
8697
- [K_191 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
8863
+ [K_199 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
8698
8864
  })[] & {
8699
- [K_192 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
8865
+ [K_200 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
8700
8866
  mime?: string | undefined;
8701
8867
  fmtpLine?: string | undefined;
8702
8868
  }[]>]: never;
@@ -8706,14 +8872,14 @@ export declare const SignalResponse: {
8706
8872
  numPublishers?: number | undefined;
8707
8873
  activeRecording?: boolean | undefined;
8708
8874
  } & {
8709
- [K_193 in Exclude<keyof I_1["message"]["roomUpdate"]["room"], keyof Room>]: never;
8875
+ [K_201 in Exclude<keyof I_1["message"]["roomUpdate"]["room"], keyof Room>]: never;
8710
8876
  }) | undefined;
8711
8877
  } & {
8712
- [K_194 in Exclude<keyof I_1["message"]["roomUpdate"], "room">]: never;
8878
+ [K_202 in Exclude<keyof I_1["message"]["roomUpdate"], "room">]: never;
8713
8879
  }) | undefined;
8714
8880
  $case: "roomUpdate";
8715
8881
  } & {
8716
- [K_195 in Exclude<keyof I_1["message"], "roomUpdate" | "$case">]: never;
8882
+ [K_203 in Exclude<keyof I_1["message"], "roomUpdate" | "$case">]: never;
8717
8883
  }) | ({
8718
8884
  connectionQuality?: {
8719
8885
  updates?: {
@@ -8745,20 +8911,20 @@ export declare const SignalResponse: {
8745
8911
  quality?: ConnectionQuality | undefined;
8746
8912
  score?: number | undefined;
8747
8913
  } & {
8748
- [K_196 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never;
8914
+ [K_204 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never;
8749
8915
  })[] & {
8750
- [K_197 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"], keyof {
8916
+ [K_205 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"], keyof {
8751
8917
  participantSid?: string | undefined;
8752
8918
  quality?: ConnectionQuality | undefined;
8753
8919
  score?: number | undefined;
8754
8920
  }[]>]: never;
8755
8921
  }) | undefined;
8756
8922
  } & {
8757
- [K_198 in Exclude<keyof I_1["message"]["connectionQuality"], "updates">]: never;
8923
+ [K_206 in Exclude<keyof I_1["message"]["connectionQuality"], "updates">]: never;
8758
8924
  }) | undefined;
8759
8925
  $case: "connectionQuality";
8760
8926
  } & {
8761
- [K_199 in Exclude<keyof I_1["message"], "connectionQuality" | "$case">]: never;
8927
+ [K_207 in Exclude<keyof I_1["message"], "connectionQuality" | "$case">]: never;
8762
8928
  }) | ({
8763
8929
  streamStateUpdate?: {
8764
8930
  streamStates?: {
@@ -8790,20 +8956,20 @@ export declare const SignalResponse: {
8790
8956
  trackSid?: string | undefined;
8791
8957
  state?: StreamState | undefined;
8792
8958
  } & {
8793
- [K_200 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never;
8959
+ [K_208 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never;
8794
8960
  })[] & {
8795
- [K_201 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"], keyof {
8961
+ [K_209 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"], keyof {
8796
8962
  participantSid?: string | undefined;
8797
8963
  trackSid?: string | undefined;
8798
8964
  state?: StreamState | undefined;
8799
8965
  }[]>]: never;
8800
8966
  }) | undefined;
8801
8967
  } & {
8802
- [K_202 in Exclude<keyof I_1["message"]["streamStateUpdate"], "streamStates">]: never;
8968
+ [K_210 in Exclude<keyof I_1["message"]["streamStateUpdate"], "streamStates">]: never;
8803
8969
  }) | undefined;
8804
8970
  $case: "streamStateUpdate";
8805
8971
  } & {
8806
- [K_203 in Exclude<keyof I_1["message"], "streamStateUpdate" | "$case">]: never;
8972
+ [K_211 in Exclude<keyof I_1["message"], "streamStateUpdate" | "$case">]: never;
8807
8973
  }) | ({
8808
8974
  subscribedQualityUpdate?: {
8809
8975
  trackSid?: string | undefined;
@@ -8847,9 +9013,9 @@ export declare const SignalResponse: {
8847
9013
  quality?: VideoQuality | undefined;
8848
9014
  enabled?: boolean | undefined;
8849
9015
  } & {
8850
- [K_204 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never;
9016
+ [K_212 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never;
8851
9017
  })[] & {
8852
- [K_205 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
9018
+ [K_213 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
8853
9019
  quality?: VideoQuality | undefined;
8854
9020
  enabled?: boolean | undefined;
8855
9021
  }[]>]: never;
@@ -8878,17 +9044,17 @@ export declare const SignalResponse: {
8878
9044
  quality?: VideoQuality | undefined;
8879
9045
  enabled?: boolean | undefined;
8880
9046
  } & {
8881
- [K_206 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never;
9047
+ [K_214 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never;
8882
9048
  })[] & {
8883
- [K_207 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
9049
+ [K_215 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
8884
9050
  quality?: VideoQuality | undefined;
8885
9051
  enabled?: boolean | undefined;
8886
9052
  }[]>]: never;
8887
9053
  }) | undefined;
8888
9054
  } & {
8889
- [K_208 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never;
9055
+ [K_216 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never;
8890
9056
  })[] & {
8891
- [K_209 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
9057
+ [K_217 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
8892
9058
  codec?: string | undefined;
8893
9059
  qualities?: {
8894
9060
  quality?: VideoQuality | undefined;
@@ -8897,11 +9063,11 @@ export declare const SignalResponse: {
8897
9063
  }[]>]: never;
8898
9064
  }) | undefined;
8899
9065
  } & {
8900
- [K_210 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never;
9066
+ [K_218 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never;
8901
9067
  }) | undefined;
8902
9068
  $case: "subscribedQualityUpdate";
8903
9069
  } & {
8904
- [K_211 in Exclude<keyof I_1["message"], "subscribedQualityUpdate" | "$case">]: never;
9070
+ [K_219 in Exclude<keyof I_1["message"], "subscribedQualityUpdate" | "$case">]: never;
8905
9071
  }) | ({
8906
9072
  subscriptionPermissionUpdate?: {
8907
9073
  participantSid?: string | undefined;
@@ -8920,11 +9086,11 @@ export declare const SignalResponse: {
8920
9086
  trackSid?: string | undefined;
8921
9087
  allowed?: boolean | undefined;
8922
9088
  } & {
8923
- [K_212 in Exclude<keyof I_1["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never;
9089
+ [K_220 in Exclude<keyof I_1["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never;
8924
9090
  }) | undefined;
8925
9091
  $case: "subscriptionPermissionUpdate";
8926
9092
  } & {
8927
- [K_213 in Exclude<keyof I_1["message"], "subscriptionPermissionUpdate" | "$case">]: never;
9093
+ [K_221 in Exclude<keyof I_1["message"], "subscriptionPermissionUpdate" | "$case">]: never;
8928
9094
  }) | ({
8929
9095
  refreshToken?: string | undefined;
8930
9096
  } & {
@@ -8933,7 +9099,7 @@ export declare const SignalResponse: {
8933
9099
  refreshToken?: string | undefined;
8934
9100
  $case: "refreshToken";
8935
9101
  } & {
8936
- [K_214 in Exclude<keyof I_1["message"], "refreshToken" | "$case">]: never;
9102
+ [K_222 in Exclude<keyof I_1["message"], "refreshToken" | "$case">]: never;
8937
9103
  }) | ({
8938
9104
  trackUnpublished?: {
8939
9105
  trackSid?: string | undefined;
@@ -8946,11 +9112,11 @@ export declare const SignalResponse: {
8946
9112
  } & {
8947
9113
  trackSid?: string | undefined;
8948
9114
  } & {
8949
- [K_215 in Exclude<keyof I_1["message"]["trackUnpublished"], "trackSid">]: never;
9115
+ [K_223 in Exclude<keyof I_1["message"]["trackUnpublished"], "trackSid">]: never;
8950
9116
  }) | undefined;
8951
9117
  $case: "trackUnpublished";
8952
9118
  } & {
8953
- [K_216 in Exclude<keyof I_1["message"], "trackUnpublished" | "$case">]: never;
9119
+ [K_224 in Exclude<keyof I_1["message"], "trackUnpublished" | "$case">]: never;
8954
9120
  }) | ({
8955
9121
  pong?: number | undefined;
8956
9122
  } & {
@@ -8959,7 +9125,7 @@ export declare const SignalResponse: {
8959
9125
  pong?: number | undefined;
8960
9126
  $case: "pong";
8961
9127
  } & {
8962
- [K_217 in Exclude<keyof I_1["message"], "pong" | "$case">]: never;
9128
+ [K_225 in Exclude<keyof I_1["message"], "pong" | "$case">]: never;
8963
9129
  }) | ({
8964
9130
  reconnect?: {
8965
9131
  iceServers?: {
@@ -8980,6 +9146,10 @@ export declare const SignalResponse: {
8980
9146
  mime?: string | undefined;
8981
9147
  fmtpLine?: string | undefined;
8982
9148
  }[] | undefined;
9149
+ publish?: {
9150
+ mime?: string | undefined;
9151
+ fmtpLine?: string | undefined;
9152
+ }[] | undefined;
8983
9153
  } | undefined;
8984
9154
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
8985
9155
  } | undefined;
@@ -9006,6 +9176,10 @@ export declare const SignalResponse: {
9006
9176
  mime?: string | undefined;
9007
9177
  fmtpLine?: string | undefined;
9008
9178
  }[] | undefined;
9179
+ publish?: {
9180
+ mime?: string | undefined;
9181
+ fmtpLine?: string | undefined;
9182
+ }[] | undefined;
9009
9183
  } | undefined;
9010
9184
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
9011
9185
  } | undefined;
@@ -9020,14 +9194,14 @@ export declare const SignalResponse: {
9020
9194
  credential?: string | undefined;
9021
9195
  } & {
9022
9196
  urls?: (string[] & string[] & {
9023
- [K_218 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never;
9197
+ [K_226 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never;
9024
9198
  }) | undefined;
9025
9199
  username?: string | undefined;
9026
9200
  credential?: string | undefined;
9027
9201
  } & {
9028
- [K_219 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never;
9202
+ [K_227 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never;
9029
9203
  })[] & {
9030
- [K_220 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"], keyof {
9204
+ [K_228 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"], keyof {
9031
9205
  urls?: string[] | undefined;
9032
9206
  username?: string | undefined;
9033
9207
  credential?: string | undefined;
@@ -9046,6 +9220,10 @@ export declare const SignalResponse: {
9046
9220
  mime?: string | undefined;
9047
9221
  fmtpLine?: string | undefined;
9048
9222
  }[] | undefined;
9223
+ publish?: {
9224
+ mime?: string | undefined;
9225
+ fmtpLine?: string | undefined;
9226
+ }[] | undefined;
9049
9227
  } | undefined;
9050
9228
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
9051
9229
  } & {
@@ -9054,14 +9232,14 @@ export declare const SignalResponse: {
9054
9232
  } & {
9055
9233
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
9056
9234
  } & {
9057
- [K_221 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never;
9235
+ [K_229 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never;
9058
9236
  }) | undefined;
9059
9237
  screen?: ({
9060
9238
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
9061
9239
  } & {
9062
9240
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
9063
9241
  } & {
9064
- [K_222 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
9242
+ [K_230 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
9065
9243
  }) | undefined;
9066
9244
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
9067
9245
  disabledCodecs?: ({
@@ -9069,6 +9247,10 @@ export declare const SignalResponse: {
9069
9247
  mime?: string | undefined;
9070
9248
  fmtpLine?: string | undefined;
9071
9249
  }[] | undefined;
9250
+ publish?: {
9251
+ mime?: string | undefined;
9252
+ fmtpLine?: string | undefined;
9253
+ }[] | undefined;
9072
9254
  } & {
9073
9255
  codecs?: ({
9074
9256
  mime?: string | undefined;
@@ -9080,26 +9262,43 @@ export declare const SignalResponse: {
9080
9262
  mime?: string | undefined;
9081
9263
  fmtpLine?: string | undefined;
9082
9264
  } & {
9083
- [K_223 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
9265
+ [K_231 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
9266
+ })[] & {
9267
+ [K_232 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
9268
+ mime?: string | undefined;
9269
+ fmtpLine?: string | undefined;
9270
+ }[]>]: never;
9271
+ }) | undefined;
9272
+ publish?: ({
9273
+ mime?: string | undefined;
9274
+ fmtpLine?: string | undefined;
9275
+ }[] & ({
9276
+ mime?: string | undefined;
9277
+ fmtpLine?: string | undefined;
9278
+ } & {
9279
+ mime?: string | undefined;
9280
+ fmtpLine?: string | undefined;
9281
+ } & {
9282
+ [K_233 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
9084
9283
  })[] & {
9085
- [K_224 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
9284
+ [K_234 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
9086
9285
  mime?: string | undefined;
9087
9286
  fmtpLine?: string | undefined;
9088
9287
  }[]>]: never;
9089
9288
  }) | undefined;
9090
9289
  } & {
9091
- [K_225 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
9290
+ [K_235 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
9092
9291
  }) | undefined;
9093
9292
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
9094
9293
  } & {
9095
- [K_226 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never;
9294
+ [K_236 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never;
9096
9295
  }) | undefined;
9097
9296
  } & {
9098
- [K_227 in Exclude<keyof I_1["message"]["reconnect"], keyof ReconnectResponse>]: never;
9297
+ [K_237 in Exclude<keyof I_1["message"]["reconnect"], keyof ReconnectResponse>]: never;
9099
9298
  }) | undefined;
9100
9299
  $case: "reconnect";
9101
9300
  } & {
9102
- [K_228 in Exclude<keyof I_1["message"], "reconnect" | "$case">]: never;
9301
+ [K_238 in Exclude<keyof I_1["message"], "reconnect" | "$case">]: never;
9103
9302
  }) | ({
9104
9303
  pongResp?: {
9105
9304
  lastPingTimestamp?: number | undefined;
@@ -9115,14 +9314,34 @@ export declare const SignalResponse: {
9115
9314
  lastPingTimestamp?: number | undefined;
9116
9315
  timestamp?: number | undefined;
9117
9316
  } & {
9118
- [K_229 in Exclude<keyof I_1["message"]["pongResp"], keyof Pong>]: never;
9317
+ [K_239 in Exclude<keyof I_1["message"]["pongResp"], keyof Pong>]: never;
9119
9318
  }) | undefined;
9120
9319
  $case: "pongResp";
9121
9320
  } & {
9122
- [K_230 in Exclude<keyof I_1["message"], "pongResp" | "$case">]: never;
9321
+ [K_240 in Exclude<keyof I_1["message"], "pongResp" | "$case">]: never;
9322
+ }) | ({
9323
+ subscriptionResponse?: {
9324
+ trackSid?: string | undefined;
9325
+ err?: SubscriptionError | undefined;
9326
+ } | undefined;
9327
+ } & {
9328
+ $case: "subscriptionResponse";
9329
+ } & {
9330
+ subscriptionResponse?: ({
9331
+ trackSid?: string | undefined;
9332
+ err?: SubscriptionError | undefined;
9333
+ } & {
9334
+ trackSid?: string | undefined;
9335
+ err?: SubscriptionError | undefined;
9336
+ } & {
9337
+ [K_241 in Exclude<keyof I_1["message"]["subscriptionResponse"], keyof SubscriptionResponse>]: never;
9338
+ }) | undefined;
9339
+ $case: "subscriptionResponse";
9340
+ } & {
9341
+ [K_242 in Exclude<keyof I_1["message"], "subscriptionResponse" | "$case">]: never;
9123
9342
  }) | undefined;
9124
9343
  } & {
9125
- [K_231 in Exclude<keyof I_1, "message">]: never;
9344
+ [K_243 in Exclude<keyof I_1, "message">]: never;
9126
9345
  }>(object: I_1): SignalResponse;
9127
9346
  };
9128
9347
  export declare const SimulcastCodec: {
@@ -9542,6 +9761,10 @@ export declare const JoinResponse: {
9542
9761
  mime?: string | undefined;
9543
9762
  fmtpLine?: string | undefined;
9544
9763
  }[] | undefined;
9764
+ publish?: {
9765
+ mime?: string | undefined;
9766
+ fmtpLine?: string | undefined;
9767
+ }[] | undefined;
9545
9768
  } | undefined;
9546
9769
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
9547
9770
  } | undefined;
@@ -9556,6 +9779,7 @@ export declare const JoinResponse: {
9556
9779
  nodeId?: string | undefined;
9557
9780
  debugInfo?: string | undefined;
9558
9781
  } | undefined;
9782
+ sifTrailer?: Uint8Array | undefined;
9559
9783
  } & {
9560
9784
  room?: ({
9561
9785
  sid?: string | undefined;
@@ -10372,6 +10596,10 @@ export declare const JoinResponse: {
10372
10596
  mime?: string | undefined;
10373
10597
  fmtpLine?: string | undefined;
10374
10598
  }[] | undefined;
10599
+ publish?: {
10600
+ mime?: string | undefined;
10601
+ fmtpLine?: string | undefined;
10602
+ }[] | undefined;
10375
10603
  } | undefined;
10376
10604
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10377
10605
  } & {
@@ -10395,6 +10623,10 @@ export declare const JoinResponse: {
10395
10623
  mime?: string | undefined;
10396
10624
  fmtpLine?: string | undefined;
10397
10625
  }[] | undefined;
10626
+ publish?: {
10627
+ mime?: string | undefined;
10628
+ fmtpLine?: string | undefined;
10629
+ }[] | undefined;
10398
10630
  } & {
10399
10631
  codecs?: ({
10400
10632
  mime?: string | undefined;
@@ -10413,12 +10645,29 @@ export declare const JoinResponse: {
10413
10645
  fmtpLine?: string | undefined;
10414
10646
  }[]>]: never;
10415
10647
  }) | undefined;
10648
+ publish?: ({
10649
+ mime?: string | undefined;
10650
+ fmtpLine?: string | undefined;
10651
+ }[] & ({
10652
+ mime?: string | undefined;
10653
+ fmtpLine?: string | undefined;
10654
+ } & {
10655
+ mime?: string | undefined;
10656
+ fmtpLine?: string | undefined;
10657
+ } & {
10658
+ [K_33 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
10659
+ })[] & {
10660
+ [K_34 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
10661
+ mime?: string | undefined;
10662
+ fmtpLine?: string | undefined;
10663
+ }[]>]: never;
10664
+ }) | undefined;
10416
10665
  } & {
10417
- [K_33 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
10666
+ [K_35 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
10418
10667
  }) | undefined;
10419
10668
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10420
10669
  } & {
10421
- [K_34 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never;
10670
+ [K_36 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never;
10422
10671
  }) | undefined;
10423
10672
  serverRegion?: string | undefined;
10424
10673
  pingTimeout?: number | undefined;
@@ -10438,10 +10687,11 @@ export declare const JoinResponse: {
10438
10687
  nodeId?: string | undefined;
10439
10688
  debugInfo?: string | undefined;
10440
10689
  } & {
10441
- [K_35 in Exclude<keyof I["serverInfo"], keyof ServerInfo>]: never;
10690
+ [K_37 in Exclude<keyof I["serverInfo"], keyof ServerInfo>]: never;
10442
10691
  }) | undefined;
10692
+ sifTrailer?: Uint8Array | undefined;
10443
10693
  } & {
10444
- [K_36 in Exclude<keyof I, keyof JoinResponse>]: never;
10694
+ [K_38 in Exclude<keyof I, keyof JoinResponse>]: never;
10445
10695
  }>(base?: I | undefined): JoinResponse;
10446
10696
  fromPartial<I_1 extends {
10447
10697
  room?: {
@@ -10591,6 +10841,10 @@ export declare const JoinResponse: {
10591
10841
  mime?: string | undefined;
10592
10842
  fmtpLine?: string | undefined;
10593
10843
  }[] | undefined;
10844
+ publish?: {
10845
+ mime?: string | undefined;
10846
+ fmtpLine?: string | undefined;
10847
+ }[] | undefined;
10594
10848
  } | undefined;
10595
10849
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10596
10850
  } | undefined;
@@ -10605,6 +10859,7 @@ export declare const JoinResponse: {
10605
10859
  nodeId?: string | undefined;
10606
10860
  debugInfo?: string | undefined;
10607
10861
  } | undefined;
10862
+ sifTrailer?: Uint8Array | undefined;
10608
10863
  } & {
10609
10864
  room?: ({
10610
10865
  sid?: string | undefined;
@@ -10638,9 +10893,9 @@ export declare const JoinResponse: {
10638
10893
  mime?: string | undefined;
10639
10894
  fmtpLine?: string | undefined;
10640
10895
  } & {
10641
- [K_37 in Exclude<keyof I_1["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
10896
+ [K_39 in Exclude<keyof I_1["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never;
10642
10897
  })[] & {
10643
- [K_38 in Exclude<keyof I_1["room"]["enabledCodecs"], keyof {
10898
+ [K_40 in Exclude<keyof I_1["room"]["enabledCodecs"], keyof {
10644
10899
  mime?: string | undefined;
10645
10900
  fmtpLine?: string | undefined;
10646
10901
  }[]>]: never;
@@ -10650,7 +10905,7 @@ export declare const JoinResponse: {
10650
10905
  numPublishers?: number | undefined;
10651
10906
  activeRecording?: boolean | undefined;
10652
10907
  } & {
10653
- [K_39 in Exclude<keyof I_1["room"], keyof Room>]: never;
10908
+ [K_41 in Exclude<keyof I_1["room"], keyof Room>]: never;
10654
10909
  }) | undefined;
10655
10910
  participant?: ({
10656
10911
  sid?: string | undefined;
@@ -10807,9 +11062,9 @@ export declare const JoinResponse: {
10807
11062
  bitrate?: number | undefined;
10808
11063
  ssrc?: number | undefined;
10809
11064
  } & {
10810
- [K_40 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
11065
+ [K_42 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
10811
11066
  })[] & {
10812
- [K_41 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"], keyof {
11067
+ [K_43 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"], keyof {
10813
11068
  quality?: VideoQuality | undefined;
10814
11069
  width?: number | undefined;
10815
11070
  height?: number | undefined;
@@ -10864,9 +11119,9 @@ export declare const JoinResponse: {
10864
11119
  bitrate?: number | undefined;
10865
11120
  ssrc?: number | undefined;
10866
11121
  } & {
10867
- [K_42 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
11122
+ [K_44 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
10868
11123
  })[] & {
10869
- [K_43 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
11124
+ [K_45 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
10870
11125
  quality?: VideoQuality | undefined;
10871
11126
  width?: number | undefined;
10872
11127
  height?: number | undefined;
@@ -10875,9 +11130,9 @@ export declare const JoinResponse: {
10875
11130
  }[]>]: never;
10876
11131
  }) | undefined;
10877
11132
  } & {
10878
- [K_44 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
11133
+ [K_46 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
10879
11134
  })[] & {
10880
- [K_45 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"], keyof {
11135
+ [K_47 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"], keyof {
10881
11136
  mimeType?: string | undefined;
10882
11137
  mid?: string | undefined;
10883
11138
  cid?: string | undefined;
@@ -10894,9 +11149,9 @@ export declare const JoinResponse: {
10894
11149
  disableRed?: boolean | undefined;
10895
11150
  encryption?: Encryption_Type | undefined;
10896
11151
  } & {
10897
- [K_46 in Exclude<keyof I_1["participant"]["tracks"][number], keyof TrackInfo>]: never;
11152
+ [K_48 in Exclude<keyof I_1["participant"]["tracks"][number], keyof TrackInfo>]: never;
10898
11153
  })[] & {
10899
- [K_47 in Exclude<keyof I_1["participant"]["tracks"], keyof {
11154
+ [K_49 in Exclude<keyof I_1["participant"]["tracks"], keyof {
10900
11155
  sid?: string | undefined;
10901
11156
  type?: TrackType | undefined;
10902
11157
  name?: string | undefined;
@@ -10949,18 +11204,18 @@ export declare const JoinResponse: {
10949
11204
  canPublish?: boolean | undefined;
10950
11205
  canPublishData?: boolean | undefined;
10951
11206
  canPublishSources?: (TrackSource[] & TrackSource[] & {
10952
- [K_48 in Exclude<keyof I_1["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
11207
+ [K_50 in Exclude<keyof I_1["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
10953
11208
  }) | undefined;
10954
11209
  hidden?: boolean | undefined;
10955
11210
  recorder?: boolean | undefined;
10956
11211
  canUpdateMetadata?: boolean | undefined;
10957
11212
  } & {
10958
- [K_49 in Exclude<keyof I_1["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
11213
+ [K_51 in Exclude<keyof I_1["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
10959
11214
  }) | undefined;
10960
11215
  region?: string | undefined;
10961
11216
  isPublisher?: boolean | undefined;
10962
11217
  } & {
10963
- [K_50 in Exclude<keyof I_1["participant"], keyof ParticipantInfo>]: never;
11218
+ [K_52 in Exclude<keyof I_1["participant"], keyof ParticipantInfo>]: never;
10964
11219
  }) | undefined;
10965
11220
  otherParticipants?: ({
10966
11221
  sid?: string | undefined;
@@ -11171,9 +11426,9 @@ export declare const JoinResponse: {
11171
11426
  bitrate?: number | undefined;
11172
11427
  ssrc?: number | undefined;
11173
11428
  } & {
11174
- [K_51 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
11429
+ [K_53 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never;
11175
11430
  })[] & {
11176
- [K_52 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"], keyof {
11431
+ [K_54 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"], keyof {
11177
11432
  quality?: VideoQuality | undefined;
11178
11433
  width?: number | undefined;
11179
11434
  height?: number | undefined;
@@ -11228,9 +11483,9 @@ export declare const JoinResponse: {
11228
11483
  bitrate?: number | undefined;
11229
11484
  ssrc?: number | undefined;
11230
11485
  } & {
11231
- [K_53 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
11486
+ [K_55 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never;
11232
11487
  })[] & {
11233
- [K_54 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
11488
+ [K_56 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
11234
11489
  quality?: VideoQuality | undefined;
11235
11490
  width?: number | undefined;
11236
11491
  height?: number | undefined;
@@ -11239,9 +11494,9 @@ export declare const JoinResponse: {
11239
11494
  }[]>]: never;
11240
11495
  }) | undefined;
11241
11496
  } & {
11242
- [K_55 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
11497
+ [K_57 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never;
11243
11498
  })[] & {
11244
- [K_56 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
11499
+ [K_58 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
11245
11500
  mimeType?: string | undefined;
11246
11501
  mid?: string | undefined;
11247
11502
  cid?: string | undefined;
@@ -11258,9 +11513,9 @@ export declare const JoinResponse: {
11258
11513
  disableRed?: boolean | undefined;
11259
11514
  encryption?: Encryption_Type | undefined;
11260
11515
  } & {
11261
- [K_57 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never;
11516
+ [K_59 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never;
11262
11517
  })[] & {
11263
- [K_58 in Exclude<keyof I_1["otherParticipants"][number]["tracks"], keyof {
11518
+ [K_60 in Exclude<keyof I_1["otherParticipants"][number]["tracks"], keyof {
11264
11519
  sid?: string | undefined;
11265
11520
  type?: TrackType | undefined;
11266
11521
  name?: string | undefined;
@@ -11313,20 +11568,20 @@ export declare const JoinResponse: {
11313
11568
  canPublish?: boolean | undefined;
11314
11569
  canPublishData?: boolean | undefined;
11315
11570
  canPublishSources?: (TrackSource[] & TrackSource[] & {
11316
- [K_59 in Exclude<keyof I_1["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
11571
+ [K_61 in Exclude<keyof I_1["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never;
11317
11572
  }) | undefined;
11318
11573
  hidden?: boolean | undefined;
11319
11574
  recorder?: boolean | undefined;
11320
11575
  canUpdateMetadata?: boolean | undefined;
11321
11576
  } & {
11322
- [K_60 in Exclude<keyof I_1["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
11577
+ [K_62 in Exclude<keyof I_1["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never;
11323
11578
  }) | undefined;
11324
11579
  region?: string | undefined;
11325
11580
  isPublisher?: boolean | undefined;
11326
11581
  } & {
11327
- [K_61 in Exclude<keyof I_1["otherParticipants"][number], keyof ParticipantInfo>]: never;
11582
+ [K_63 in Exclude<keyof I_1["otherParticipants"][number], keyof ParticipantInfo>]: never;
11328
11583
  })[] & {
11329
- [K_62 in Exclude<keyof I_1["otherParticipants"], keyof {
11584
+ [K_64 in Exclude<keyof I_1["otherParticipants"], keyof {
11330
11585
  sid?: string | undefined;
11331
11586
  identity?: string | undefined;
11332
11587
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -11393,14 +11648,14 @@ export declare const JoinResponse: {
11393
11648
  credential?: string | undefined;
11394
11649
  } & {
11395
11650
  urls?: (string[] & string[] & {
11396
- [K_63 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never;
11651
+ [K_65 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never;
11397
11652
  }) | undefined;
11398
11653
  username?: string | undefined;
11399
11654
  credential?: string | undefined;
11400
11655
  } & {
11401
- [K_64 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never;
11656
+ [K_66 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never;
11402
11657
  })[] & {
11403
- [K_65 in Exclude<keyof I_1["iceServers"], keyof {
11658
+ [K_67 in Exclude<keyof I_1["iceServers"], keyof {
11404
11659
  urls?: string[] | undefined;
11405
11660
  username?: string | undefined;
11406
11661
  credential?: string | undefined;
@@ -11421,6 +11676,10 @@ export declare const JoinResponse: {
11421
11676
  mime?: string | undefined;
11422
11677
  fmtpLine?: string | undefined;
11423
11678
  }[] | undefined;
11679
+ publish?: {
11680
+ mime?: string | undefined;
11681
+ fmtpLine?: string | undefined;
11682
+ }[] | undefined;
11424
11683
  } | undefined;
11425
11684
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11426
11685
  } & {
@@ -11429,14 +11688,14 @@ export declare const JoinResponse: {
11429
11688
  } & {
11430
11689
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
11431
11690
  } & {
11432
- [K_66 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never;
11691
+ [K_68 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never;
11433
11692
  }) | undefined;
11434
11693
  screen?: ({
11435
11694
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
11436
11695
  } & {
11437
11696
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
11438
11697
  } & {
11439
- [K_67 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
11698
+ [K_69 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
11440
11699
  }) | undefined;
11441
11700
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
11442
11701
  disabledCodecs?: ({
@@ -11444,6 +11703,10 @@ export declare const JoinResponse: {
11444
11703
  mime?: string | undefined;
11445
11704
  fmtpLine?: string | undefined;
11446
11705
  }[] | undefined;
11706
+ publish?: {
11707
+ mime?: string | undefined;
11708
+ fmtpLine?: string | undefined;
11709
+ }[] | undefined;
11447
11710
  } & {
11448
11711
  codecs?: ({
11449
11712
  mime?: string | undefined;
@@ -11455,19 +11718,36 @@ export declare const JoinResponse: {
11455
11718
  mime?: string | undefined;
11456
11719
  fmtpLine?: string | undefined;
11457
11720
  } & {
11458
- [K_68 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
11721
+ [K_70 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
11722
+ })[] & {
11723
+ [K_71 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
11724
+ mime?: string | undefined;
11725
+ fmtpLine?: string | undefined;
11726
+ }[]>]: never;
11727
+ }) | undefined;
11728
+ publish?: ({
11729
+ mime?: string | undefined;
11730
+ fmtpLine?: string | undefined;
11731
+ }[] & ({
11732
+ mime?: string | undefined;
11733
+ fmtpLine?: string | undefined;
11734
+ } & {
11735
+ mime?: string | undefined;
11736
+ fmtpLine?: string | undefined;
11737
+ } & {
11738
+ [K_72 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
11459
11739
  })[] & {
11460
- [K_69 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
11740
+ [K_73 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
11461
11741
  mime?: string | undefined;
11462
11742
  fmtpLine?: string | undefined;
11463
11743
  }[]>]: never;
11464
11744
  }) | undefined;
11465
11745
  } & {
11466
- [K_70 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
11746
+ [K_74 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
11467
11747
  }) | undefined;
11468
11748
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11469
11749
  } & {
11470
- [K_71 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never;
11750
+ [K_75 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never;
11471
11751
  }) | undefined;
11472
11752
  serverRegion?: string | undefined;
11473
11753
  pingTimeout?: number | undefined;
@@ -11487,10 +11767,11 @@ export declare const JoinResponse: {
11487
11767
  nodeId?: string | undefined;
11488
11768
  debugInfo?: string | undefined;
11489
11769
  } & {
11490
- [K_72 in Exclude<keyof I_1["serverInfo"], keyof ServerInfo>]: never;
11770
+ [K_76 in Exclude<keyof I_1["serverInfo"], keyof ServerInfo>]: never;
11491
11771
  }) | undefined;
11772
+ sifTrailer?: Uint8Array | undefined;
11492
11773
  } & {
11493
- [K_73 in Exclude<keyof I_1, keyof JoinResponse>]: never;
11774
+ [K_77 in Exclude<keyof I_1, keyof JoinResponse>]: never;
11494
11775
  }>(object: I_1): JoinResponse;
11495
11776
  };
11496
11777
  export declare const ReconnectResponse: {
@@ -11517,6 +11798,10 @@ export declare const ReconnectResponse: {
11517
11798
  mime?: string | undefined;
11518
11799
  fmtpLine?: string | undefined;
11519
11800
  }[] | undefined;
11801
+ publish?: {
11802
+ mime?: string | undefined;
11803
+ fmtpLine?: string | undefined;
11804
+ }[] | undefined;
11520
11805
  } | undefined;
11521
11806
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11522
11807
  } | undefined;
@@ -11557,6 +11842,10 @@ export declare const ReconnectResponse: {
11557
11842
  mime?: string | undefined;
11558
11843
  fmtpLine?: string | undefined;
11559
11844
  }[] | undefined;
11845
+ publish?: {
11846
+ mime?: string | undefined;
11847
+ fmtpLine?: string | undefined;
11848
+ }[] | undefined;
11560
11849
  } | undefined;
11561
11850
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11562
11851
  } & {
@@ -11580,6 +11869,10 @@ export declare const ReconnectResponse: {
11580
11869
  mime?: string | undefined;
11581
11870
  fmtpLine?: string | undefined;
11582
11871
  }[] | undefined;
11872
+ publish?: {
11873
+ mime?: string | undefined;
11874
+ fmtpLine?: string | undefined;
11875
+ }[] | undefined;
11583
11876
  } & {
11584
11877
  codecs?: ({
11585
11878
  mime?: string | undefined;
@@ -11598,15 +11891,32 @@ export declare const ReconnectResponse: {
11598
11891
  fmtpLine?: string | undefined;
11599
11892
  }[]>]: never;
11600
11893
  }) | undefined;
11894
+ publish?: ({
11895
+ mime?: string | undefined;
11896
+ fmtpLine?: string | undefined;
11897
+ }[] & ({
11898
+ mime?: string | undefined;
11899
+ fmtpLine?: string | undefined;
11900
+ } & {
11901
+ mime?: string | undefined;
11902
+ fmtpLine?: string | undefined;
11903
+ } & {
11904
+ [K_7 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
11905
+ })[] & {
11906
+ [K_8 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
11907
+ mime?: string | undefined;
11908
+ fmtpLine?: string | undefined;
11909
+ }[]>]: never;
11910
+ }) | undefined;
11601
11911
  } & {
11602
- [K_7 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
11912
+ [K_9 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
11603
11913
  }) | undefined;
11604
11914
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11605
11915
  } & {
11606
- [K_8 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never;
11916
+ [K_10 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never;
11607
11917
  }) | undefined;
11608
11918
  } & {
11609
- [K_9 in Exclude<keyof I, keyof ReconnectResponse>]: never;
11919
+ [K_11 in Exclude<keyof I, keyof ReconnectResponse>]: never;
11610
11920
  }>(base?: I | undefined): ReconnectResponse;
11611
11921
  fromPartial<I_1 extends {
11612
11922
  iceServers?: {
@@ -11627,6 +11937,10 @@ export declare const ReconnectResponse: {
11627
11937
  mime?: string | undefined;
11628
11938
  fmtpLine?: string | undefined;
11629
11939
  }[] | undefined;
11940
+ publish?: {
11941
+ mime?: string | undefined;
11942
+ fmtpLine?: string | undefined;
11943
+ }[] | undefined;
11630
11944
  } | undefined;
11631
11945
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11632
11946
  } | undefined;
@@ -11641,14 +11955,14 @@ export declare const ReconnectResponse: {
11641
11955
  credential?: string | undefined;
11642
11956
  } & {
11643
11957
  urls?: (string[] & string[] & {
11644
- [K_10 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never;
11958
+ [K_12 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never;
11645
11959
  }) | undefined;
11646
11960
  username?: string | undefined;
11647
11961
  credential?: string | undefined;
11648
11962
  } & {
11649
- [K_11 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never;
11963
+ [K_13 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never;
11650
11964
  })[] & {
11651
- [K_12 in Exclude<keyof I_1["iceServers"], keyof {
11965
+ [K_14 in Exclude<keyof I_1["iceServers"], keyof {
11652
11966
  urls?: string[] | undefined;
11653
11967
  username?: string | undefined;
11654
11968
  credential?: string | undefined;
@@ -11667,6 +11981,10 @@ export declare const ReconnectResponse: {
11667
11981
  mime?: string | undefined;
11668
11982
  fmtpLine?: string | undefined;
11669
11983
  }[] | undefined;
11984
+ publish?: {
11985
+ mime?: string | undefined;
11986
+ fmtpLine?: string | undefined;
11987
+ }[] | undefined;
11670
11988
  } | undefined;
11671
11989
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11672
11990
  } & {
@@ -11675,14 +11993,14 @@ export declare const ReconnectResponse: {
11675
11993
  } & {
11676
11994
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
11677
11995
  } & {
11678
- [K_13 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never;
11996
+ [K_15 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never;
11679
11997
  }) | undefined;
11680
11998
  screen?: ({
11681
11999
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
11682
12000
  } & {
11683
12001
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
11684
12002
  } & {
11685
- [K_14 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
12003
+ [K_16 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never;
11686
12004
  }) | undefined;
11687
12005
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
11688
12006
  disabledCodecs?: ({
@@ -11690,6 +12008,10 @@ export declare const ReconnectResponse: {
11690
12008
  mime?: string | undefined;
11691
12009
  fmtpLine?: string | undefined;
11692
12010
  }[] | undefined;
12011
+ publish?: {
12012
+ mime?: string | undefined;
12013
+ fmtpLine?: string | undefined;
12014
+ }[] | undefined;
11693
12015
  } & {
11694
12016
  codecs?: ({
11695
12017
  mime?: string | undefined;
@@ -11701,22 +12023,39 @@ export declare const ReconnectResponse: {
11701
12023
  mime?: string | undefined;
11702
12024
  fmtpLine?: string | undefined;
11703
12025
  } & {
11704
- [K_15 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
12026
+ [K_17 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never;
11705
12027
  })[] & {
11706
- [K_16 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
12028
+ [K_18 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
12029
+ mime?: string | undefined;
12030
+ fmtpLine?: string | undefined;
12031
+ }[]>]: never;
12032
+ }) | undefined;
12033
+ publish?: ({
12034
+ mime?: string | undefined;
12035
+ fmtpLine?: string | undefined;
12036
+ }[] & ({
12037
+ mime?: string | undefined;
12038
+ fmtpLine?: string | undefined;
12039
+ } & {
12040
+ mime?: string | undefined;
12041
+ fmtpLine?: string | undefined;
12042
+ } & {
12043
+ [K_19 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never;
12044
+ })[] & {
12045
+ [K_20 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
11707
12046
  mime?: string | undefined;
11708
12047
  fmtpLine?: string | undefined;
11709
12048
  }[]>]: never;
11710
12049
  }) | undefined;
11711
12050
  } & {
11712
- [K_17 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], "codecs">]: never;
12051
+ [K_21 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never;
11713
12052
  }) | undefined;
11714
12053
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
11715
12054
  } & {
11716
- [K_18 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never;
12055
+ [K_22 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never;
11717
12056
  }) | undefined;
11718
12057
  } & {
11719
- [K_19 in Exclude<keyof I_1, keyof ReconnectResponse>]: never;
12058
+ [K_23 in Exclude<keyof I_1, keyof ReconnectResponse>]: never;
11720
12059
  }>(object: I_1): ReconnectResponse;
11721
12060
  };
11722
12061
  export declare const TrackPublishedResponse: {
@@ -15381,6 +15720,30 @@ export declare const RegionInfo: {
15381
15720
  [K_1 in Exclude<keyof I_1, keyof RegionInfo>]: never;
15382
15721
  }>(object: I_1): RegionInfo;
15383
15722
  };
15723
+ export declare const SubscriptionResponse: {
15724
+ encode(message: SubscriptionResponse, writer?: _m0.Writer): _m0.Writer;
15725
+ decode(input: _m0.Reader | Uint8Array, length?: number): SubscriptionResponse;
15726
+ fromJSON(object: any): SubscriptionResponse;
15727
+ toJSON(message: SubscriptionResponse): unknown;
15728
+ create<I extends {
15729
+ trackSid?: string | undefined;
15730
+ err?: SubscriptionError | undefined;
15731
+ } & {
15732
+ trackSid?: string | undefined;
15733
+ err?: SubscriptionError | undefined;
15734
+ } & {
15735
+ [K in Exclude<keyof I, keyof SubscriptionResponse>]: never;
15736
+ }>(base?: I | undefined): SubscriptionResponse;
15737
+ fromPartial<I_1 extends {
15738
+ trackSid?: string | undefined;
15739
+ err?: SubscriptionError | undefined;
15740
+ } & {
15741
+ trackSid?: string | undefined;
15742
+ err?: SubscriptionError | undefined;
15743
+ } & {
15744
+ [K_1 in Exclude<keyof I_1, keyof SubscriptionResponse>]: never;
15745
+ }>(object: I_1): SubscriptionResponse;
15746
+ };
15384
15747
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
15385
15748
  export type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {
15386
15749
  $case: string;