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;
@@ -2848,6 +2857,10 @@ export declare const SignalResponse: {
2848
2857
  mime?: string | undefined;
2849
2858
  fmtpLine?: string | undefined;
2850
2859
  }[] | undefined;
2860
+ publish?: {
2861
+ mime?: string | undefined;
2862
+ fmtpLine?: string | undefined;
2863
+ }[] | undefined;
2851
2864
  } | undefined;
2852
2865
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
2853
2866
  } | undefined;
@@ -2862,6 +2875,7 @@ export declare const SignalResponse: {
2862
2875
  nodeId?: string | undefined;
2863
2876
  debugInfo?: string | undefined;
2864
2877
  } | undefined;
2878
+ sifTrailer?: Uint8Array | undefined;
2865
2879
  } | undefined;
2866
2880
  } & {
2867
2881
  $case: "join";
@@ -3111,6 +3125,10 @@ export declare const SignalResponse: {
3111
3125
  mime?: string | undefined;
3112
3126
  fmtpLine?: string | undefined;
3113
3127
  }[] | undefined;
3128
+ publish?: {
3129
+ mime?: string | undefined;
3130
+ fmtpLine?: string | undefined;
3131
+ }[] | undefined;
3114
3132
  } | undefined;
3115
3133
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
3116
3134
  } | undefined;
@@ -3124,6 +3142,13 @@ export declare const SignalResponse: {
3124
3142
  } | undefined;
3125
3143
  } & {
3126
3144
  $case: "pongResp";
3145
+ }) | ({
3146
+ subscriptionResponse?: {
3147
+ trackSid?: string | undefined;
3148
+ err?: SubscriptionError | undefined;
3149
+ } | undefined;
3150
+ } & {
3151
+ $case: "subscriptionResponse";
3127
3152
  }) | undefined;
3128
3153
  } & {
3129
3154
  message?: ({
@@ -3275,6 +3300,10 @@ export declare const SignalResponse: {
3275
3300
  mime?: string | undefined;
3276
3301
  fmtpLine?: string | undefined;
3277
3302
  }[] | undefined;
3303
+ publish?: {
3304
+ mime?: string | undefined;
3305
+ fmtpLine?: string | undefined;
3306
+ }[] | undefined;
3278
3307
  } | undefined;
3279
3308
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
3280
3309
  } | undefined;
@@ -3289,6 +3318,7 @@ export declare const SignalResponse: {
3289
3318
  nodeId?: string | undefined;
3290
3319
  debugInfo?: string | undefined;
3291
3320
  } | undefined;
3321
+ sifTrailer?: Uint8Array | undefined;
3292
3322
  } | undefined;
3293
3323
  } & {
3294
3324
  $case: "join";
@@ -3441,6 +3471,10 @@ export declare const SignalResponse: {
3441
3471
  mime?: string | undefined;
3442
3472
  fmtpLine?: string | undefined;
3443
3473
  }[] | undefined;
3474
+ publish?: {
3475
+ mime?: string | undefined;
3476
+ fmtpLine?: string | undefined;
3477
+ }[] | undefined;
3444
3478
  } | undefined;
3445
3479
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
3446
3480
  } | undefined;
@@ -3455,6 +3489,7 @@ export declare const SignalResponse: {
3455
3489
  nodeId?: string | undefined;
3456
3490
  debugInfo?: string | undefined;
3457
3491
  } | undefined;
3492
+ sifTrailer?: Uint8Array | undefined;
3458
3493
  } & {
3459
3494
  room?: ({
3460
3495
  sid?: string | undefined;
@@ -4213,6 +4248,10 @@ export declare const SignalResponse: {
4213
4248
  mime?: string | undefined;
4214
4249
  fmtpLine?: string | undefined;
4215
4250
  }[] | undefined;
4251
+ publish?: {
4252
+ mime?: string | undefined;
4253
+ fmtpLine?: string | undefined;
4254
+ }[] | undefined;
4216
4255
  } | undefined;
4217
4256
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
4218
4257
  } & {
@@ -4232,6 +4271,10 @@ export declare const SignalResponse: {
4232
4271
  mime?: string | undefined;
4233
4272
  fmtpLine?: string | undefined;
4234
4273
  }[] | undefined;
4274
+ publish?: {
4275
+ mime?: string | undefined;
4276
+ fmtpLine?: string | undefined;
4277
+ }[] | undefined;
4235
4278
  } & {
4236
4279
  codecs?: ({
4237
4280
  mime?: string | undefined;
@@ -4246,9 +4289,22 @@ export declare const SignalResponse: {
4246
4289
  mime?: string | undefined;
4247
4290
  fmtpLine?: string | undefined;
4248
4291
  }[]>]: never; }) | undefined;
4249
- } & { [K_33 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
4292
+ publish?: ({
4293
+ mime?: string | undefined;
4294
+ fmtpLine?: string | undefined;
4295
+ }[] & ({
4296
+ mime?: string | undefined;
4297
+ fmtpLine?: string | undefined;
4298
+ } & {
4299
+ mime?: string | undefined;
4300
+ fmtpLine?: string | undefined;
4301
+ } & { [K_33 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_34 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
4302
+ mime?: string | undefined;
4303
+ fmtpLine?: string | undefined;
4304
+ }[]>]: never; }) | undefined;
4305
+ } & { [K_35 in Exclude<keyof I["message"]["join"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
4250
4306
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
4251
- } & { [K_34 in Exclude<keyof I["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
4307
+ } & { [K_36 in Exclude<keyof I["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
4252
4308
  serverRegion?: string | undefined;
4253
4309
  pingTimeout?: number | undefined;
4254
4310
  pingInterval?: number | undefined;
@@ -4266,10 +4322,11 @@ export declare const SignalResponse: {
4266
4322
  region?: string | undefined;
4267
4323
  nodeId?: string | undefined;
4268
4324
  debugInfo?: string | undefined;
4269
- } & { [K_35 in Exclude<keyof I["message"]["join"]["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
4270
- } & { [K_36 in Exclude<keyof I["message"]["join"], keyof JoinResponse>]: never; }) | undefined;
4325
+ } & { [K_37 in Exclude<keyof I["message"]["join"]["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
4326
+ sifTrailer?: Uint8Array | undefined;
4327
+ } & { [K_38 in Exclude<keyof I["message"]["join"], keyof JoinResponse>]: never; }) | undefined;
4271
4328
  $case: "join";
4272
- } & { [K_37 in Exclude<keyof I["message"], "join" | "$case">]: never; }) | ({
4329
+ } & { [K_39 in Exclude<keyof I["message"], "join" | "$case">]: never; }) | ({
4273
4330
  answer?: {
4274
4331
  type?: string | undefined;
4275
4332
  sdp?: string | undefined;
@@ -4283,9 +4340,9 @@ export declare const SignalResponse: {
4283
4340
  } & {
4284
4341
  type?: string | undefined;
4285
4342
  sdp?: string | undefined;
4286
- } & { [K_38 in Exclude<keyof I["message"]["answer"], keyof SessionDescription>]: never; }) | undefined;
4343
+ } & { [K_40 in Exclude<keyof I["message"]["answer"], keyof SessionDescription>]: never; }) | undefined;
4287
4344
  $case: "answer";
4288
- } & { [K_39 in Exclude<keyof I["message"], "answer" | "$case">]: never; }) | ({
4345
+ } & { [K_41 in Exclude<keyof I["message"], "answer" | "$case">]: never; }) | ({
4289
4346
  offer?: {
4290
4347
  type?: string | undefined;
4291
4348
  sdp?: string | undefined;
@@ -4299,9 +4356,9 @@ export declare const SignalResponse: {
4299
4356
  } & {
4300
4357
  type?: string | undefined;
4301
4358
  sdp?: string | undefined;
4302
- } & { [K_40 in Exclude<keyof I["message"]["offer"], keyof SessionDescription>]: never; }) | undefined;
4359
+ } & { [K_42 in Exclude<keyof I["message"]["offer"], keyof SessionDescription>]: never; }) | undefined;
4303
4360
  $case: "offer";
4304
- } & { [K_41 in Exclude<keyof I["message"], "offer" | "$case">]: never; }) | ({
4361
+ } & { [K_43 in Exclude<keyof I["message"], "offer" | "$case">]: never; }) | ({
4305
4362
  trickle?: {
4306
4363
  candidateInit?: string | undefined;
4307
4364
  target?: SignalTarget | undefined;
@@ -4315,9 +4372,9 @@ export declare const SignalResponse: {
4315
4372
  } & {
4316
4373
  candidateInit?: string | undefined;
4317
4374
  target?: SignalTarget | undefined;
4318
- } & { [K_42 in Exclude<keyof I["message"]["trickle"], keyof TrickleRequest>]: never; }) | undefined;
4375
+ } & { [K_44 in Exclude<keyof I["message"]["trickle"], keyof TrickleRequest>]: never; }) | undefined;
4319
4376
  $case: "trickle";
4320
- } & { [K_43 in Exclude<keyof I["message"], "trickle" | "$case">]: never; }) | ({
4377
+ } & { [K_45 in Exclude<keyof I["message"], "trickle" | "$case">]: never; }) | ({
4321
4378
  update?: {
4322
4379
  participants?: {
4323
4380
  sid?: string | undefined;
@@ -4643,7 +4700,7 @@ export declare const SignalResponse: {
4643
4700
  height?: number | undefined;
4644
4701
  bitrate?: number | undefined;
4645
4702
  ssrc?: number | undefined;
4646
- } & { [K_44 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_45 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
4703
+ } & { [K_46 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_47 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
4647
4704
  quality?: VideoQuality | undefined;
4648
4705
  width?: number | undefined;
4649
4706
  height?: number | undefined;
@@ -4696,14 +4753,14 @@ export declare const SignalResponse: {
4696
4753
  height?: number | undefined;
4697
4754
  bitrate?: number | undefined;
4698
4755
  ssrc?: number | undefined;
4699
- } & { [K_46 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_47 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
4756
+ } & { [K_48 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_49 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
4700
4757
  quality?: VideoQuality | undefined;
4701
4758
  width?: number | undefined;
4702
4759
  height?: number | undefined;
4703
4760
  bitrate?: number | undefined;
4704
4761
  ssrc?: number | undefined;
4705
4762
  }[]>]: never; }) | undefined;
4706
- } & { [K_48 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_49 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
4763
+ } & { [K_50 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_51 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
4707
4764
  mimeType?: string | undefined;
4708
4765
  mid?: string | undefined;
4709
4766
  cid?: string | undefined;
@@ -4718,7 +4775,7 @@ export declare const SignalResponse: {
4718
4775
  stereo?: boolean | undefined;
4719
4776
  disableRed?: boolean | undefined;
4720
4777
  encryption?: Encryption_Type | undefined;
4721
- } & { [K_50 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_51 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"], keyof {
4778
+ } & { [K_52 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_53 in Exclude<keyof I["message"]["update"]["participants"][number]["tracks"], keyof {
4722
4779
  sid?: string | undefined;
4723
4780
  type?: TrackType | undefined;
4724
4781
  name?: string | undefined;
@@ -4769,14 +4826,14 @@ export declare const SignalResponse: {
4769
4826
  canSubscribe?: boolean | undefined;
4770
4827
  canPublish?: boolean | undefined;
4771
4828
  canPublishData?: boolean | undefined;
4772
- canPublishSources?: (TrackSource[] & TrackSource[] & { [K_52 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
4829
+ canPublishSources?: (TrackSource[] & TrackSource[] & { [K_54 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
4773
4830
  hidden?: boolean | undefined;
4774
4831
  recorder?: boolean | undefined;
4775
4832
  canUpdateMetadata?: boolean | undefined;
4776
- } & { [K_53 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
4833
+ } & { [K_55 in Exclude<keyof I["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
4777
4834
  region?: string | undefined;
4778
4835
  isPublisher?: boolean | undefined;
4779
- } & { [K_54 in Exclude<keyof I["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never; })[] & { [K_55 in Exclude<keyof I["message"]["update"]["participants"], keyof {
4836
+ } & { [K_56 in Exclude<keyof I["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never; })[] & { [K_57 in Exclude<keyof I["message"]["update"]["participants"], keyof {
4780
4837
  sid?: string | undefined;
4781
4838
  identity?: string | undefined;
4782
4839
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -4831,9 +4888,9 @@ export declare const SignalResponse: {
4831
4888
  region?: string | undefined;
4832
4889
  isPublisher?: boolean | undefined;
4833
4890
  }[]>]: never; }) | undefined;
4834
- } & { [K_56 in Exclude<keyof I["message"]["update"], "participants">]: never; }) | undefined;
4891
+ } & { [K_58 in Exclude<keyof I["message"]["update"], "participants">]: never; }) | undefined;
4835
4892
  $case: "update";
4836
- } & { [K_57 in Exclude<keyof I["message"], "update" | "$case">]: never; }) | ({
4893
+ } & { [K_59 in Exclude<keyof I["message"], "update" | "$case">]: never; }) | ({
4837
4894
  trackPublished?: {
4838
4895
  cid?: string | undefined;
4839
4896
  track?: {
@@ -4976,7 +5033,7 @@ export declare const SignalResponse: {
4976
5033
  height?: number | undefined;
4977
5034
  bitrate?: number | undefined;
4978
5035
  ssrc?: number | undefined;
4979
- } & { [K_58 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_59 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"], keyof {
5036
+ } & { [K_60 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_61 in Exclude<keyof I["message"]["trackPublished"]["track"]["layers"], keyof {
4980
5037
  quality?: VideoQuality | undefined;
4981
5038
  width?: number | undefined;
4982
5039
  height?: number | undefined;
@@ -5029,14 +5086,14 @@ export declare const SignalResponse: {
5029
5086
  height?: number | undefined;
5030
5087
  bitrate?: number | undefined;
5031
5088
  ssrc?: number | undefined;
5032
- } & { [K_60 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_61 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
5089
+ } & { [K_62 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_63 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
5033
5090
  quality?: VideoQuality | undefined;
5034
5091
  width?: number | undefined;
5035
5092
  height?: number | undefined;
5036
5093
  bitrate?: number | undefined;
5037
5094
  ssrc?: number | undefined;
5038
5095
  }[]>]: never; }) | undefined;
5039
- } & { [K_62 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_63 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"], keyof {
5096
+ } & { [K_64 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_65 in Exclude<keyof I["message"]["trackPublished"]["track"]["codecs"], keyof {
5040
5097
  mimeType?: string | undefined;
5041
5098
  mid?: string | undefined;
5042
5099
  cid?: string | undefined;
@@ -5051,10 +5108,10 @@ export declare const SignalResponse: {
5051
5108
  stereo?: boolean | undefined;
5052
5109
  disableRed?: boolean | undefined;
5053
5110
  encryption?: Encryption_Type | undefined;
5054
- } & { [K_64 in Exclude<keyof I["message"]["trackPublished"]["track"], keyof TrackInfo>]: never; }) | undefined;
5055
- } & { [K_65 in Exclude<keyof I["message"]["trackPublished"], keyof TrackPublishedResponse>]: never; }) | undefined;
5111
+ } & { [K_66 in Exclude<keyof I["message"]["trackPublished"]["track"], keyof TrackInfo>]: never; }) | undefined;
5112
+ } & { [K_67 in Exclude<keyof I["message"]["trackPublished"], keyof TrackPublishedResponse>]: never; }) | undefined;
5056
5113
  $case: "trackPublished";
5057
- } & { [K_66 in Exclude<keyof I["message"], "trackPublished" | "$case">]: never; }) | ({
5114
+ } & { [K_68 in Exclude<keyof I["message"], "trackPublished" | "$case">]: never; }) | ({
5058
5115
  leave?: {
5059
5116
  canReconnect?: boolean | undefined;
5060
5117
  reason?: DisconnectReason | undefined;
@@ -5068,9 +5125,9 @@ export declare const SignalResponse: {
5068
5125
  } & {
5069
5126
  canReconnect?: boolean | undefined;
5070
5127
  reason?: DisconnectReason | undefined;
5071
- } & { [K_67 in Exclude<keyof I["message"]["leave"], keyof LeaveRequest>]: never; }) | undefined;
5128
+ } & { [K_69 in Exclude<keyof I["message"]["leave"], keyof LeaveRequest>]: never; }) | undefined;
5072
5129
  $case: "leave";
5073
- } & { [K_68 in Exclude<keyof I["message"], "leave" | "$case">]: never; }) | ({
5130
+ } & { [K_70 in Exclude<keyof I["message"], "leave" | "$case">]: never; }) | ({
5074
5131
  mute?: {
5075
5132
  sid?: string | undefined;
5076
5133
  muted?: boolean | undefined;
@@ -5084,9 +5141,9 @@ export declare const SignalResponse: {
5084
5141
  } & {
5085
5142
  sid?: string | undefined;
5086
5143
  muted?: boolean | undefined;
5087
- } & { [K_69 in Exclude<keyof I["message"]["mute"], keyof MuteTrackRequest>]: never; }) | undefined;
5144
+ } & { [K_71 in Exclude<keyof I["message"]["mute"], keyof MuteTrackRequest>]: never; }) | undefined;
5088
5145
  $case: "mute";
5089
- } & { [K_70 in Exclude<keyof I["message"], "mute" | "$case">]: never; }) | ({
5146
+ } & { [K_72 in Exclude<keyof I["message"], "mute" | "$case">]: never; }) | ({
5090
5147
  speakersChanged?: {
5091
5148
  speakers?: {
5092
5149
  sid?: string | undefined;
@@ -5116,14 +5173,14 @@ export declare const SignalResponse: {
5116
5173
  sid?: string | undefined;
5117
5174
  level?: number | undefined;
5118
5175
  active?: boolean | undefined;
5119
- } & { [K_71 in Exclude<keyof I["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never; })[] & { [K_72 in Exclude<keyof I["message"]["speakersChanged"]["speakers"], keyof {
5176
+ } & { [K_73 in Exclude<keyof I["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never; })[] & { [K_74 in Exclude<keyof I["message"]["speakersChanged"]["speakers"], keyof {
5120
5177
  sid?: string | undefined;
5121
5178
  level?: number | undefined;
5122
5179
  active?: boolean | undefined;
5123
5180
  }[]>]: never; }) | undefined;
5124
- } & { [K_73 in Exclude<keyof I["message"]["speakersChanged"], "speakers">]: never; }) | undefined;
5181
+ } & { [K_75 in Exclude<keyof I["message"]["speakersChanged"], "speakers">]: never; }) | undefined;
5125
5182
  $case: "speakersChanged";
5126
- } & { [K_74 in Exclude<keyof I["message"], "speakersChanged" | "$case">]: never; }) | ({
5183
+ } & { [K_76 in Exclude<keyof I["message"], "speakersChanged" | "$case">]: never; }) | ({
5127
5184
  roomUpdate?: {
5128
5185
  room?: {
5129
5186
  sid?: string | undefined;
@@ -5194,7 +5251,7 @@ export declare const SignalResponse: {
5194
5251
  } & {
5195
5252
  mime?: string | undefined;
5196
5253
  fmtpLine?: string | undefined;
5197
- } & { [K_75 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_76 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
5254
+ } & { [K_77 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_78 in Exclude<keyof I["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
5198
5255
  mime?: string | undefined;
5199
5256
  fmtpLine?: string | undefined;
5200
5257
  }[]>]: never; }) | undefined;
@@ -5202,10 +5259,10 @@ export declare const SignalResponse: {
5202
5259
  numParticipants?: number | undefined;
5203
5260
  numPublishers?: number | undefined;
5204
5261
  activeRecording?: boolean | undefined;
5205
- } & { [K_77 in Exclude<keyof I["message"]["roomUpdate"]["room"], keyof Room>]: never; }) | undefined;
5206
- } & { [K_78 in Exclude<keyof I["message"]["roomUpdate"], "room">]: never; }) | undefined;
5262
+ } & { [K_79 in Exclude<keyof I["message"]["roomUpdate"]["room"], keyof Room>]: never; }) | undefined;
5263
+ } & { [K_80 in Exclude<keyof I["message"]["roomUpdate"], "room">]: never; }) | undefined;
5207
5264
  $case: "roomUpdate";
5208
- } & { [K_79 in Exclude<keyof I["message"], "roomUpdate" | "$case">]: never; }) | ({
5265
+ } & { [K_81 in Exclude<keyof I["message"], "roomUpdate" | "$case">]: never; }) | ({
5209
5266
  connectionQuality?: {
5210
5267
  updates?: {
5211
5268
  participantSid?: string | undefined;
@@ -5235,14 +5292,14 @@ export declare const SignalResponse: {
5235
5292
  participantSid?: string | undefined;
5236
5293
  quality?: ConnectionQuality | undefined;
5237
5294
  score?: number | undefined;
5238
- } & { [K_80 in Exclude<keyof I["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never; })[] & { [K_81 in Exclude<keyof I["message"]["connectionQuality"]["updates"], keyof {
5295
+ } & { [K_82 in Exclude<keyof I["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never; })[] & { [K_83 in Exclude<keyof I["message"]["connectionQuality"]["updates"], keyof {
5239
5296
  participantSid?: string | undefined;
5240
5297
  quality?: ConnectionQuality | undefined;
5241
5298
  score?: number | undefined;
5242
5299
  }[]>]: never; }) | undefined;
5243
- } & { [K_82 in Exclude<keyof I["message"]["connectionQuality"], "updates">]: never; }) | undefined;
5300
+ } & { [K_84 in Exclude<keyof I["message"]["connectionQuality"], "updates">]: never; }) | undefined;
5244
5301
  $case: "connectionQuality";
5245
- } & { [K_83 in Exclude<keyof I["message"], "connectionQuality" | "$case">]: never; }) | ({
5302
+ } & { [K_85 in Exclude<keyof I["message"], "connectionQuality" | "$case">]: never; }) | ({
5246
5303
  streamStateUpdate?: {
5247
5304
  streamStates?: {
5248
5305
  participantSid?: string | undefined;
@@ -5272,14 +5329,14 @@ export declare const SignalResponse: {
5272
5329
  participantSid?: string | undefined;
5273
5330
  trackSid?: string | undefined;
5274
5331
  state?: StreamState | undefined;
5275
- } & { [K_84 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never; })[] & { [K_85 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"], keyof {
5332
+ } & { [K_86 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never; })[] & { [K_87 in Exclude<keyof I["message"]["streamStateUpdate"]["streamStates"], keyof {
5276
5333
  participantSid?: string | undefined;
5277
5334
  trackSid?: string | undefined;
5278
5335
  state?: StreamState | undefined;
5279
5336
  }[]>]: never; }) | undefined;
5280
- } & { [K_86 in Exclude<keyof I["message"]["streamStateUpdate"], "streamStates">]: never; }) | undefined;
5337
+ } & { [K_88 in Exclude<keyof I["message"]["streamStateUpdate"], "streamStates">]: never; }) | undefined;
5281
5338
  $case: "streamStateUpdate";
5282
- } & { [K_87 in Exclude<keyof I["message"], "streamStateUpdate" | "$case">]: never; }) | ({
5339
+ } & { [K_89 in Exclude<keyof I["message"], "streamStateUpdate" | "$case">]: never; }) | ({
5283
5340
  subscribedQualityUpdate?: {
5284
5341
  trackSid?: string | undefined;
5285
5342
  subscribedQualities?: {
@@ -5321,7 +5378,7 @@ export declare const SignalResponse: {
5321
5378
  } & {
5322
5379
  quality?: VideoQuality | undefined;
5323
5380
  enabled?: boolean | undefined;
5324
- } & { [K_88 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_89 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
5381
+ } & { [K_90 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_91 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
5325
5382
  quality?: VideoQuality | undefined;
5326
5383
  enabled?: boolean | undefined;
5327
5384
  }[]>]: never; }) | undefined;
@@ -5348,20 +5405,20 @@ export declare const SignalResponse: {
5348
5405
  } & {
5349
5406
  quality?: VideoQuality | undefined;
5350
5407
  enabled?: boolean | undefined;
5351
- } & { [K_90 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_91 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
5408
+ } & { [K_92 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_93 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
5352
5409
  quality?: VideoQuality | undefined;
5353
5410
  enabled?: boolean | undefined;
5354
5411
  }[]>]: never; }) | undefined;
5355
- } & { [K_92 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never; })[] & { [K_93 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
5412
+ } & { [K_94 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never; })[] & { [K_95 in Exclude<keyof I["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
5356
5413
  codec?: string | undefined;
5357
5414
  qualities?: {
5358
5415
  quality?: VideoQuality | undefined;
5359
5416
  enabled?: boolean | undefined;
5360
5417
  }[] | undefined;
5361
5418
  }[]>]: never; }) | undefined;
5362
- } & { [K_94 in Exclude<keyof I["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never; }) | undefined;
5419
+ } & { [K_96 in Exclude<keyof I["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never; }) | undefined;
5363
5420
  $case: "subscribedQualityUpdate";
5364
- } & { [K_95 in Exclude<keyof I["message"], "subscribedQualityUpdate" | "$case">]: never; }) | ({
5421
+ } & { [K_97 in Exclude<keyof I["message"], "subscribedQualityUpdate" | "$case">]: never; }) | ({
5365
5422
  subscriptionPermissionUpdate?: {
5366
5423
  participantSid?: string | undefined;
5367
5424
  trackSid?: string | undefined;
@@ -5378,16 +5435,16 @@ export declare const SignalResponse: {
5378
5435
  participantSid?: string | undefined;
5379
5436
  trackSid?: string | undefined;
5380
5437
  allowed?: boolean | undefined;
5381
- } & { [K_96 in Exclude<keyof I["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never; }) | undefined;
5438
+ } & { [K_98 in Exclude<keyof I["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never; }) | undefined;
5382
5439
  $case: "subscriptionPermissionUpdate";
5383
- } & { [K_97 in Exclude<keyof I["message"], "subscriptionPermissionUpdate" | "$case">]: never; }) | ({
5440
+ } & { [K_99 in Exclude<keyof I["message"], "subscriptionPermissionUpdate" | "$case">]: never; }) | ({
5384
5441
  refreshToken?: string | undefined;
5385
5442
  } & {
5386
5443
  $case: "refreshToken";
5387
5444
  } & {
5388
5445
  refreshToken?: string | undefined;
5389
5446
  $case: "refreshToken";
5390
- } & { [K_98 in Exclude<keyof I["message"], "refreshToken" | "$case">]: never; }) | ({
5447
+ } & { [K_100 in Exclude<keyof I["message"], "refreshToken" | "$case">]: never; }) | ({
5391
5448
  trackUnpublished?: {
5392
5449
  trackSid?: string | undefined;
5393
5450
  } | undefined;
@@ -5398,16 +5455,16 @@ export declare const SignalResponse: {
5398
5455
  trackSid?: string | undefined;
5399
5456
  } & {
5400
5457
  trackSid?: string | undefined;
5401
- } & { [K_99 in Exclude<keyof I["message"]["trackUnpublished"], "trackSid">]: never; }) | undefined;
5458
+ } & { [K_101 in Exclude<keyof I["message"]["trackUnpublished"], "trackSid">]: never; }) | undefined;
5402
5459
  $case: "trackUnpublished";
5403
- } & { [K_100 in Exclude<keyof I["message"], "trackUnpublished" | "$case">]: never; }) | ({
5460
+ } & { [K_102 in Exclude<keyof I["message"], "trackUnpublished" | "$case">]: never; }) | ({
5404
5461
  pong?: number | undefined;
5405
5462
  } & {
5406
5463
  $case: "pong";
5407
5464
  } & {
5408
5465
  pong?: number | undefined;
5409
5466
  $case: "pong";
5410
- } & { [K_101 in Exclude<keyof I["message"], "pong" | "$case">]: never; }) | ({
5467
+ } & { [K_103 in Exclude<keyof I["message"], "pong" | "$case">]: never; }) | ({
5411
5468
  reconnect?: {
5412
5469
  iceServers?: {
5413
5470
  urls?: string[] | undefined;
@@ -5427,6 +5484,10 @@ export declare const SignalResponse: {
5427
5484
  mime?: string | undefined;
5428
5485
  fmtpLine?: string | undefined;
5429
5486
  }[] | undefined;
5487
+ publish?: {
5488
+ mime?: string | undefined;
5489
+ fmtpLine?: string | undefined;
5490
+ }[] | undefined;
5430
5491
  } | undefined;
5431
5492
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5432
5493
  } | undefined;
@@ -5453,6 +5514,10 @@ export declare const SignalResponse: {
5453
5514
  mime?: string | undefined;
5454
5515
  fmtpLine?: string | undefined;
5455
5516
  }[] | undefined;
5517
+ publish?: {
5518
+ mime?: string | undefined;
5519
+ fmtpLine?: string | undefined;
5520
+ }[] | undefined;
5456
5521
  } | undefined;
5457
5522
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5458
5523
  } | undefined;
@@ -5466,10 +5531,10 @@ export declare const SignalResponse: {
5466
5531
  username?: string | undefined;
5467
5532
  credential?: string | undefined;
5468
5533
  } & {
5469
- urls?: (string[] & string[] & { [K_102 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
5534
+ urls?: (string[] & string[] & { [K_104 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
5470
5535
  username?: string | undefined;
5471
5536
  credential?: string | undefined;
5472
- } & { [K_103 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_104 in Exclude<keyof I["message"]["reconnect"]["iceServers"], keyof {
5537
+ } & { [K_105 in Exclude<keyof I["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_106 in Exclude<keyof I["message"]["reconnect"]["iceServers"], keyof {
5473
5538
  urls?: string[] | undefined;
5474
5539
  username?: string | undefined;
5475
5540
  credential?: string | undefined;
@@ -5487,6 +5552,10 @@ export declare const SignalResponse: {
5487
5552
  mime?: string | undefined;
5488
5553
  fmtpLine?: string | undefined;
5489
5554
  }[] | undefined;
5555
+ publish?: {
5556
+ mime?: string | undefined;
5557
+ fmtpLine?: string | undefined;
5558
+ }[] | undefined;
5490
5559
  } | undefined;
5491
5560
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5492
5561
  } & {
@@ -5494,18 +5563,22 @@ export declare const SignalResponse: {
5494
5563
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
5495
5564
  } & {
5496
5565
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
5497
- } & { [K_105 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
5566
+ } & { [K_107 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
5498
5567
  screen?: ({
5499
5568
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
5500
5569
  } & {
5501
5570
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
5502
- } & { [K_106 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
5571
+ } & { [K_108 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
5503
5572
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
5504
5573
  disabledCodecs?: ({
5505
5574
  codecs?: {
5506
5575
  mime?: string | undefined;
5507
5576
  fmtpLine?: string | undefined;
5508
5577
  }[] | undefined;
5578
+ publish?: {
5579
+ mime?: string | undefined;
5580
+ fmtpLine?: string | undefined;
5581
+ }[] | undefined;
5509
5582
  } & {
5510
5583
  codecs?: ({
5511
5584
  mime?: string | undefined;
@@ -5516,16 +5589,29 @@ export declare const SignalResponse: {
5516
5589
  } & {
5517
5590
  mime?: string | undefined;
5518
5591
  fmtpLine?: string | undefined;
5519
- } & { [K_107 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_108 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
5592
+ } & { [K_109 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_110 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
5520
5593
  mime?: string | undefined;
5521
5594
  fmtpLine?: string | undefined;
5522
5595
  }[]>]: never; }) | undefined;
5523
- } & { [K_109 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
5596
+ publish?: ({
5597
+ mime?: string | undefined;
5598
+ fmtpLine?: string | undefined;
5599
+ }[] & ({
5600
+ mime?: string | undefined;
5601
+ fmtpLine?: string | undefined;
5602
+ } & {
5603
+ mime?: string | undefined;
5604
+ fmtpLine?: string | undefined;
5605
+ } & { [K_111 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_112 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
5606
+ mime?: string | undefined;
5607
+ fmtpLine?: string | undefined;
5608
+ }[]>]: never; }) | undefined;
5609
+ } & { [K_113 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
5524
5610
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5525
- } & { [K_110 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
5526
- } & { [K_111 in Exclude<keyof I["message"]["reconnect"], keyof ReconnectResponse>]: never; }) | undefined;
5611
+ } & { [K_114 in Exclude<keyof I["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
5612
+ } & { [K_115 in Exclude<keyof I["message"]["reconnect"], keyof ReconnectResponse>]: never; }) | undefined;
5527
5613
  $case: "reconnect";
5528
- } & { [K_112 in Exclude<keyof I["message"], "reconnect" | "$case">]: never; }) | ({
5614
+ } & { [K_116 in Exclude<keyof I["message"], "reconnect" | "$case">]: never; }) | ({
5529
5615
  pongResp?: {
5530
5616
  lastPingTimestamp?: number | undefined;
5531
5617
  timestamp?: number | undefined;
@@ -5539,10 +5625,26 @@ export declare const SignalResponse: {
5539
5625
  } & {
5540
5626
  lastPingTimestamp?: number | undefined;
5541
5627
  timestamp?: number | undefined;
5542
- } & { [K_113 in Exclude<keyof I["message"]["pongResp"], keyof Pong>]: never; }) | undefined;
5628
+ } & { [K_117 in Exclude<keyof I["message"]["pongResp"], keyof Pong>]: never; }) | undefined;
5543
5629
  $case: "pongResp";
5544
- } & { [K_114 in Exclude<keyof I["message"], "pongResp" | "$case">]: never; }) | undefined;
5545
- } & { [K_115 in Exclude<keyof I, "message">]: never; }>(base?: I | undefined): SignalResponse;
5630
+ } & { [K_118 in Exclude<keyof I["message"], "pongResp" | "$case">]: never; }) | ({
5631
+ subscriptionResponse?: {
5632
+ trackSid?: string | undefined;
5633
+ err?: SubscriptionError | undefined;
5634
+ } | undefined;
5635
+ } & {
5636
+ $case: "subscriptionResponse";
5637
+ } & {
5638
+ subscriptionResponse?: ({
5639
+ trackSid?: string | undefined;
5640
+ err?: SubscriptionError | undefined;
5641
+ } & {
5642
+ trackSid?: string | undefined;
5643
+ err?: SubscriptionError | undefined;
5644
+ } & { [K_119 in Exclude<keyof I["message"]["subscriptionResponse"], keyof SubscriptionResponse>]: never; }) | undefined;
5645
+ $case: "subscriptionResponse";
5646
+ } & { [K_120 in Exclude<keyof I["message"], "subscriptionResponse" | "$case">]: never; }) | undefined;
5647
+ } & { [K_121 in Exclude<keyof I, "message">]: never; }>(base?: I | undefined): SignalResponse;
5546
5648
  fromPartial<I_1 extends {
5547
5649
  message?: ({
5548
5650
  join?: {
@@ -5693,6 +5795,10 @@ export declare const SignalResponse: {
5693
5795
  mime?: string | undefined;
5694
5796
  fmtpLine?: string | undefined;
5695
5797
  }[] | undefined;
5798
+ publish?: {
5799
+ mime?: string | undefined;
5800
+ fmtpLine?: string | undefined;
5801
+ }[] | undefined;
5696
5802
  } | undefined;
5697
5803
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5698
5804
  } | undefined;
@@ -5707,6 +5813,7 @@ export declare const SignalResponse: {
5707
5813
  nodeId?: string | undefined;
5708
5814
  debugInfo?: string | undefined;
5709
5815
  } | undefined;
5816
+ sifTrailer?: Uint8Array | undefined;
5710
5817
  } | undefined;
5711
5818
  } & {
5712
5819
  $case: "join";
@@ -5956,6 +6063,10 @@ export declare const SignalResponse: {
5956
6063
  mime?: string | undefined;
5957
6064
  fmtpLine?: string | undefined;
5958
6065
  }[] | undefined;
6066
+ publish?: {
6067
+ mime?: string | undefined;
6068
+ fmtpLine?: string | undefined;
6069
+ }[] | undefined;
5959
6070
  } | undefined;
5960
6071
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
5961
6072
  } | undefined;
@@ -5969,6 +6080,13 @@ export declare const SignalResponse: {
5969
6080
  } | undefined;
5970
6081
  } & {
5971
6082
  $case: "pongResp";
6083
+ }) | ({
6084
+ subscriptionResponse?: {
6085
+ trackSid?: string | undefined;
6086
+ err?: SubscriptionError | undefined;
6087
+ } | undefined;
6088
+ } & {
6089
+ $case: "subscriptionResponse";
5972
6090
  }) | undefined;
5973
6091
  } & {
5974
6092
  message?: ({
@@ -6120,6 +6238,10 @@ export declare const SignalResponse: {
6120
6238
  mime?: string | undefined;
6121
6239
  fmtpLine?: string | undefined;
6122
6240
  }[] | undefined;
6241
+ publish?: {
6242
+ mime?: string | undefined;
6243
+ fmtpLine?: string | undefined;
6244
+ }[] | undefined;
6123
6245
  } | undefined;
6124
6246
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
6125
6247
  } | undefined;
@@ -6134,6 +6256,7 @@ export declare const SignalResponse: {
6134
6256
  nodeId?: string | undefined;
6135
6257
  debugInfo?: string | undefined;
6136
6258
  } | undefined;
6259
+ sifTrailer?: Uint8Array | undefined;
6137
6260
  } | undefined;
6138
6261
  } & {
6139
6262
  $case: "join";
@@ -6286,6 +6409,10 @@ export declare const SignalResponse: {
6286
6409
  mime?: string | undefined;
6287
6410
  fmtpLine?: string | undefined;
6288
6411
  }[] | undefined;
6412
+ publish?: {
6413
+ mime?: string | undefined;
6414
+ fmtpLine?: string | undefined;
6415
+ }[] | undefined;
6289
6416
  } | undefined;
6290
6417
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
6291
6418
  } | undefined;
@@ -6300,6 +6427,7 @@ export declare const SignalResponse: {
6300
6427
  nodeId?: string | undefined;
6301
6428
  debugInfo?: string | undefined;
6302
6429
  } | undefined;
6430
+ sifTrailer?: Uint8Array | undefined;
6303
6431
  } & {
6304
6432
  room?: ({
6305
6433
  sid?: string | undefined;
@@ -6332,7 +6460,7 @@ export declare const SignalResponse: {
6332
6460
  } & {
6333
6461
  mime?: string | undefined;
6334
6462
  fmtpLine?: string | undefined;
6335
- } & { [K_116 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_117 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"], keyof {
6463
+ } & { [K_122 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_123 in Exclude<keyof I_1["message"]["join"]["room"]["enabledCodecs"], keyof {
6336
6464
  mime?: string | undefined;
6337
6465
  fmtpLine?: string | undefined;
6338
6466
  }[]>]: never; }) | undefined;
@@ -6340,7 +6468,7 @@ export declare const SignalResponse: {
6340
6468
  numParticipants?: number | undefined;
6341
6469
  numPublishers?: number | undefined;
6342
6470
  activeRecording?: boolean | undefined;
6343
- } & { [K_118 in Exclude<keyof I_1["message"]["join"]["room"], keyof Room>]: never; }) | undefined;
6471
+ } & { [K_124 in Exclude<keyof I_1["message"]["join"]["room"], keyof Room>]: never; }) | undefined;
6344
6472
  participant?: ({
6345
6473
  sid?: string | undefined;
6346
6474
  identity?: string | undefined;
@@ -6495,7 +6623,7 @@ export declare const SignalResponse: {
6495
6623
  height?: number | undefined;
6496
6624
  bitrate?: number | undefined;
6497
6625
  ssrc?: number | undefined;
6498
- } & { [K_119 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_120 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"], keyof {
6626
+ } & { [K_125 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_126 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["layers"], keyof {
6499
6627
  quality?: VideoQuality | undefined;
6500
6628
  width?: number | undefined;
6501
6629
  height?: number | undefined;
@@ -6548,14 +6676,14 @@ export declare const SignalResponse: {
6548
6676
  height?: number | undefined;
6549
6677
  bitrate?: number | undefined;
6550
6678
  ssrc?: number | undefined;
6551
- } & { [K_121 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_122 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
6679
+ } & { [K_127 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_128 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
6552
6680
  quality?: VideoQuality | undefined;
6553
6681
  width?: number | undefined;
6554
6682
  height?: number | undefined;
6555
6683
  bitrate?: number | undefined;
6556
6684
  ssrc?: number | undefined;
6557
6685
  }[]>]: never; }) | undefined;
6558
- } & { [K_123 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_124 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"], keyof {
6686
+ } & { [K_129 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_130 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number]["codecs"], keyof {
6559
6687
  mimeType?: string | undefined;
6560
6688
  mid?: string | undefined;
6561
6689
  cid?: string | undefined;
@@ -6570,7 +6698,7 @@ export declare const SignalResponse: {
6570
6698
  stereo?: boolean | undefined;
6571
6699
  disableRed?: boolean | undefined;
6572
6700
  encryption?: Encryption_Type | undefined;
6573
- } & { [K_125 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_126 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"], keyof {
6701
+ } & { [K_131 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_132 in Exclude<keyof I_1["message"]["join"]["participant"]["tracks"], keyof {
6574
6702
  sid?: string | undefined;
6575
6703
  type?: TrackType | undefined;
6576
6704
  name?: string | undefined;
@@ -6621,14 +6749,14 @@ export declare const SignalResponse: {
6621
6749
  canSubscribe?: boolean | undefined;
6622
6750
  canPublish?: boolean | undefined;
6623
6751
  canPublishData?: boolean | undefined;
6624
- canPublishSources?: (TrackSource[] & TrackSource[] & { [K_127 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
6752
+ canPublishSources?: (TrackSource[] & TrackSource[] & { [K_133 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
6625
6753
  hidden?: boolean | undefined;
6626
6754
  recorder?: boolean | undefined;
6627
6755
  canUpdateMetadata?: boolean | undefined;
6628
- } & { [K_128 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
6756
+ } & { [K_134 in Exclude<keyof I_1["message"]["join"]["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
6629
6757
  region?: string | undefined;
6630
6758
  isPublisher?: boolean | undefined;
6631
- } & { [K_129 in Exclude<keyof I_1["message"]["join"]["participant"], keyof ParticipantInfo>]: never; }) | undefined;
6759
+ } & { [K_135 in Exclude<keyof I_1["message"]["join"]["participant"], keyof ParticipantInfo>]: never; }) | undefined;
6632
6760
  otherParticipants?: ({
6633
6761
  sid?: string | undefined;
6634
6762
  identity?: string | undefined;
@@ -6837,7 +6965,7 @@ export declare const SignalResponse: {
6837
6965
  height?: number | undefined;
6838
6966
  bitrate?: number | undefined;
6839
6967
  ssrc?: number | undefined;
6840
- } & { [K_130 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_131 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"], keyof {
6968
+ } & { [K_136 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_137 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["layers"], keyof {
6841
6969
  quality?: VideoQuality | undefined;
6842
6970
  width?: number | undefined;
6843
6971
  height?: number | undefined;
@@ -6890,14 +7018,14 @@ export declare const SignalResponse: {
6890
7018
  height?: number | undefined;
6891
7019
  bitrate?: number | undefined;
6892
7020
  ssrc?: number | undefined;
6893
- } & { [K_132 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_133 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
7021
+ } & { [K_138 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_139 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
6894
7022
  quality?: VideoQuality | undefined;
6895
7023
  width?: number | undefined;
6896
7024
  height?: number | undefined;
6897
7025
  bitrate?: number | undefined;
6898
7026
  ssrc?: number | undefined;
6899
7027
  }[]>]: never; }) | undefined;
6900
- } & { [K_134 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_135 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
7028
+ } & { [K_140 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_141 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
6901
7029
  mimeType?: string | undefined;
6902
7030
  mid?: string | undefined;
6903
7031
  cid?: string | undefined;
@@ -6912,7 +7040,7 @@ export declare const SignalResponse: {
6912
7040
  stereo?: boolean | undefined;
6913
7041
  disableRed?: boolean | undefined;
6914
7042
  encryption?: Encryption_Type | undefined;
6915
- } & { [K_136 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_137 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"], keyof {
7043
+ } & { [K_142 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_143 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["tracks"], keyof {
6916
7044
  sid?: string | undefined;
6917
7045
  type?: TrackType | undefined;
6918
7046
  name?: string | undefined;
@@ -6963,14 +7091,14 @@ export declare const SignalResponse: {
6963
7091
  canSubscribe?: boolean | undefined;
6964
7092
  canPublish?: boolean | undefined;
6965
7093
  canPublishData?: boolean | undefined;
6966
- canPublishSources?: (TrackSource[] & TrackSource[] & { [K_138 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
7094
+ canPublishSources?: (TrackSource[] & TrackSource[] & { [K_144 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
6967
7095
  hidden?: boolean | undefined;
6968
7096
  recorder?: boolean | undefined;
6969
7097
  canUpdateMetadata?: boolean | undefined;
6970
- } & { [K_139 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
7098
+ } & { [K_145 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
6971
7099
  region?: string | undefined;
6972
7100
  isPublisher?: boolean | undefined;
6973
- } & { [K_140 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number], keyof ParticipantInfo>]: never; })[] & { [K_141 in Exclude<keyof I_1["message"]["join"]["otherParticipants"], keyof {
7101
+ } & { [K_146 in Exclude<keyof I_1["message"]["join"]["otherParticipants"][number], keyof ParticipantInfo>]: never; })[] & { [K_147 in Exclude<keyof I_1["message"]["join"]["otherParticipants"], keyof {
6974
7102
  sid?: string | undefined;
6975
7103
  identity?: string | undefined;
6976
7104
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -7035,10 +7163,10 @@ export declare const SignalResponse: {
7035
7163
  username?: string | undefined;
7036
7164
  credential?: string | undefined;
7037
7165
  } & {
7038
- urls?: (string[] & string[] & { [K_142 in Exclude<keyof I_1["message"]["join"]["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
7166
+ urls?: (string[] & string[] & { [K_148 in Exclude<keyof I_1["message"]["join"]["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
7039
7167
  username?: string | undefined;
7040
7168
  credential?: string | undefined;
7041
- } & { [K_143 in Exclude<keyof I_1["message"]["join"]["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_144 in Exclude<keyof I_1["message"]["join"]["iceServers"], keyof {
7169
+ } & { [K_149 in Exclude<keyof I_1["message"]["join"]["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_150 in Exclude<keyof I_1["message"]["join"]["iceServers"], keyof {
7042
7170
  urls?: string[] | undefined;
7043
7171
  username?: string | undefined;
7044
7172
  credential?: string | undefined;
@@ -7058,6 +7186,10 @@ export declare const SignalResponse: {
7058
7186
  mime?: string | undefined;
7059
7187
  fmtpLine?: string | undefined;
7060
7188
  }[] | undefined;
7189
+ publish?: {
7190
+ mime?: string | undefined;
7191
+ fmtpLine?: string | undefined;
7192
+ }[] | undefined;
7061
7193
  } | undefined;
7062
7194
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
7063
7195
  } & {
@@ -7065,18 +7197,22 @@ export declare const SignalResponse: {
7065
7197
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
7066
7198
  } & {
7067
7199
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
7068
- } & { [K_145 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
7200
+ } & { [K_151 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
7069
7201
  screen?: ({
7070
7202
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
7071
7203
  } & {
7072
7204
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
7073
- } & { [K_146 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
7205
+ } & { [K_152 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
7074
7206
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
7075
7207
  disabledCodecs?: ({
7076
7208
  codecs?: {
7077
7209
  mime?: string | undefined;
7078
7210
  fmtpLine?: string | undefined;
7079
7211
  }[] | undefined;
7212
+ publish?: {
7213
+ mime?: string | undefined;
7214
+ fmtpLine?: string | undefined;
7215
+ }[] | undefined;
7080
7216
  } & {
7081
7217
  codecs?: ({
7082
7218
  mime?: string | undefined;
@@ -7087,13 +7223,26 @@ export declare const SignalResponse: {
7087
7223
  } & {
7088
7224
  mime?: string | undefined;
7089
7225
  fmtpLine?: string | undefined;
7090
- } & { [K_147 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_148 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
7226
+ } & { [K_153 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_154 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
7091
7227
  mime?: string | undefined;
7092
7228
  fmtpLine?: string | undefined;
7093
7229
  }[]>]: never; }) | undefined;
7094
- } & { [K_149 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
7230
+ publish?: ({
7231
+ mime?: string | undefined;
7232
+ fmtpLine?: string | undefined;
7233
+ }[] & ({
7234
+ mime?: string | undefined;
7235
+ fmtpLine?: string | undefined;
7236
+ } & {
7237
+ mime?: string | undefined;
7238
+ fmtpLine?: string | undefined;
7239
+ } & { [K_155 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_156 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
7240
+ mime?: string | undefined;
7241
+ fmtpLine?: string | undefined;
7242
+ }[]>]: never; }) | undefined;
7243
+ } & { [K_157 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
7095
7244
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
7096
- } & { [K_150 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
7245
+ } & { [K_158 in Exclude<keyof I_1["message"]["join"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
7097
7246
  serverRegion?: string | undefined;
7098
7247
  pingTimeout?: number | undefined;
7099
7248
  pingInterval?: number | undefined;
@@ -7111,10 +7260,11 @@ export declare const SignalResponse: {
7111
7260
  region?: string | undefined;
7112
7261
  nodeId?: string | undefined;
7113
7262
  debugInfo?: string | undefined;
7114
- } & { [K_151 in Exclude<keyof I_1["message"]["join"]["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
7115
- } & { [K_152 in Exclude<keyof I_1["message"]["join"], keyof JoinResponse>]: never; }) | undefined;
7263
+ } & { [K_159 in Exclude<keyof I_1["message"]["join"]["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
7264
+ sifTrailer?: Uint8Array | undefined;
7265
+ } & { [K_160 in Exclude<keyof I_1["message"]["join"], keyof JoinResponse>]: never; }) | undefined;
7116
7266
  $case: "join";
7117
- } & { [K_153 in Exclude<keyof I_1["message"], "join" | "$case">]: never; }) | ({
7267
+ } & { [K_161 in Exclude<keyof I_1["message"], "join" | "$case">]: never; }) | ({
7118
7268
  answer?: {
7119
7269
  type?: string | undefined;
7120
7270
  sdp?: string | undefined;
@@ -7128,9 +7278,9 @@ export declare const SignalResponse: {
7128
7278
  } & {
7129
7279
  type?: string | undefined;
7130
7280
  sdp?: string | undefined;
7131
- } & { [K_154 in Exclude<keyof I_1["message"]["answer"], keyof SessionDescription>]: never; }) | undefined;
7281
+ } & { [K_162 in Exclude<keyof I_1["message"]["answer"], keyof SessionDescription>]: never; }) | undefined;
7132
7282
  $case: "answer";
7133
- } & { [K_155 in Exclude<keyof I_1["message"], "answer" | "$case">]: never; }) | ({
7283
+ } & { [K_163 in Exclude<keyof I_1["message"], "answer" | "$case">]: never; }) | ({
7134
7284
  offer?: {
7135
7285
  type?: string | undefined;
7136
7286
  sdp?: string | undefined;
@@ -7144,9 +7294,9 @@ export declare const SignalResponse: {
7144
7294
  } & {
7145
7295
  type?: string | undefined;
7146
7296
  sdp?: string | undefined;
7147
- } & { [K_156 in Exclude<keyof I_1["message"]["offer"], keyof SessionDescription>]: never; }) | undefined;
7297
+ } & { [K_164 in Exclude<keyof I_1["message"]["offer"], keyof SessionDescription>]: never; }) | undefined;
7148
7298
  $case: "offer";
7149
- } & { [K_157 in Exclude<keyof I_1["message"], "offer" | "$case">]: never; }) | ({
7299
+ } & { [K_165 in Exclude<keyof I_1["message"], "offer" | "$case">]: never; }) | ({
7150
7300
  trickle?: {
7151
7301
  candidateInit?: string | undefined;
7152
7302
  target?: SignalTarget | undefined;
@@ -7160,9 +7310,9 @@ export declare const SignalResponse: {
7160
7310
  } & {
7161
7311
  candidateInit?: string | undefined;
7162
7312
  target?: SignalTarget | undefined;
7163
- } & { [K_158 in Exclude<keyof I_1["message"]["trickle"], keyof TrickleRequest>]: never; }) | undefined;
7313
+ } & { [K_166 in Exclude<keyof I_1["message"]["trickle"], keyof TrickleRequest>]: never; }) | undefined;
7164
7314
  $case: "trickle";
7165
- } & { [K_159 in Exclude<keyof I_1["message"], "trickle" | "$case">]: never; }) | ({
7315
+ } & { [K_167 in Exclude<keyof I_1["message"], "trickle" | "$case">]: never; }) | ({
7166
7316
  update?: {
7167
7317
  participants?: {
7168
7318
  sid?: string | undefined;
@@ -7488,7 +7638,7 @@ export declare const SignalResponse: {
7488
7638
  height?: number | undefined;
7489
7639
  bitrate?: number | undefined;
7490
7640
  ssrc?: number | undefined;
7491
- } & { [K_160 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_161 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
7641
+ } & { [K_168 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_169 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["layers"], keyof {
7492
7642
  quality?: VideoQuality | undefined;
7493
7643
  width?: number | undefined;
7494
7644
  height?: number | undefined;
@@ -7541,14 +7691,14 @@ export declare const SignalResponse: {
7541
7691
  height?: number | undefined;
7542
7692
  bitrate?: number | undefined;
7543
7693
  ssrc?: number | undefined;
7544
- } & { [K_162 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_163 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
7694
+ } & { [K_170 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_171 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
7545
7695
  quality?: VideoQuality | undefined;
7546
7696
  width?: number | undefined;
7547
7697
  height?: number | undefined;
7548
7698
  bitrate?: number | undefined;
7549
7699
  ssrc?: number | undefined;
7550
7700
  }[]>]: never; }) | undefined;
7551
- } & { [K_164 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_165 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
7701
+ } & { [K_172 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_173 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number]["codecs"], keyof {
7552
7702
  mimeType?: string | undefined;
7553
7703
  mid?: string | undefined;
7554
7704
  cid?: string | undefined;
@@ -7563,7 +7713,7 @@ export declare const SignalResponse: {
7563
7713
  stereo?: boolean | undefined;
7564
7714
  disableRed?: boolean | undefined;
7565
7715
  encryption?: Encryption_Type | undefined;
7566
- } & { [K_166 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_167 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"], keyof {
7716
+ } & { [K_174 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_175 in Exclude<keyof I_1["message"]["update"]["participants"][number]["tracks"], keyof {
7567
7717
  sid?: string | undefined;
7568
7718
  type?: TrackType | undefined;
7569
7719
  name?: string | undefined;
@@ -7614,14 +7764,14 @@ export declare const SignalResponse: {
7614
7764
  canSubscribe?: boolean | undefined;
7615
7765
  canPublish?: boolean | undefined;
7616
7766
  canPublishData?: boolean | undefined;
7617
- canPublishSources?: (TrackSource[] & TrackSource[] & { [K_168 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
7767
+ canPublishSources?: (TrackSource[] & TrackSource[] & { [K_176 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
7618
7768
  hidden?: boolean | undefined;
7619
7769
  recorder?: boolean | undefined;
7620
7770
  canUpdateMetadata?: boolean | undefined;
7621
- } & { [K_169 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
7771
+ } & { [K_177 in Exclude<keyof I_1["message"]["update"]["participants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
7622
7772
  region?: string | undefined;
7623
7773
  isPublisher?: boolean | undefined;
7624
- } & { [K_170 in Exclude<keyof I_1["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never; })[] & { [K_171 in Exclude<keyof I_1["message"]["update"]["participants"], keyof {
7774
+ } & { [K_178 in Exclude<keyof I_1["message"]["update"]["participants"][number], keyof ParticipantInfo>]: never; })[] & { [K_179 in Exclude<keyof I_1["message"]["update"]["participants"], keyof {
7625
7775
  sid?: string | undefined;
7626
7776
  identity?: string | undefined;
7627
7777
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -7676,9 +7826,9 @@ export declare const SignalResponse: {
7676
7826
  region?: string | undefined;
7677
7827
  isPublisher?: boolean | undefined;
7678
7828
  }[]>]: never; }) | undefined;
7679
- } & { [K_172 in Exclude<keyof I_1["message"]["update"], "participants">]: never; }) | undefined;
7829
+ } & { [K_180 in Exclude<keyof I_1["message"]["update"], "participants">]: never; }) | undefined;
7680
7830
  $case: "update";
7681
- } & { [K_173 in Exclude<keyof I_1["message"], "update" | "$case">]: never; }) | ({
7831
+ } & { [K_181 in Exclude<keyof I_1["message"], "update" | "$case">]: never; }) | ({
7682
7832
  trackPublished?: {
7683
7833
  cid?: string | undefined;
7684
7834
  track?: {
@@ -7821,7 +7971,7 @@ export declare const SignalResponse: {
7821
7971
  height?: number | undefined;
7822
7972
  bitrate?: number | undefined;
7823
7973
  ssrc?: number | undefined;
7824
- } & { [K_174 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_175 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"], keyof {
7974
+ } & { [K_182 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_183 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["layers"], keyof {
7825
7975
  quality?: VideoQuality | undefined;
7826
7976
  width?: number | undefined;
7827
7977
  height?: number | undefined;
@@ -7874,14 +8024,14 @@ export declare const SignalResponse: {
7874
8024
  height?: number | undefined;
7875
8025
  bitrate?: number | undefined;
7876
8026
  ssrc?: number | undefined;
7877
- } & { [K_176 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_177 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
8027
+ } & { [K_184 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_185 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number]["layers"], keyof {
7878
8028
  quality?: VideoQuality | undefined;
7879
8029
  width?: number | undefined;
7880
8030
  height?: number | undefined;
7881
8031
  bitrate?: number | undefined;
7882
8032
  ssrc?: number | undefined;
7883
8033
  }[]>]: never; }) | undefined;
7884
- } & { [K_178 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_179 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"], keyof {
8034
+ } & { [K_186 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_187 in Exclude<keyof I_1["message"]["trackPublished"]["track"]["codecs"], keyof {
7885
8035
  mimeType?: string | undefined;
7886
8036
  mid?: string | undefined;
7887
8037
  cid?: string | undefined;
@@ -7896,10 +8046,10 @@ export declare const SignalResponse: {
7896
8046
  stereo?: boolean | undefined;
7897
8047
  disableRed?: boolean | undefined;
7898
8048
  encryption?: Encryption_Type | undefined;
7899
- } & { [K_180 in Exclude<keyof I_1["message"]["trackPublished"]["track"], keyof TrackInfo>]: never; }) | undefined;
7900
- } & { [K_181 in Exclude<keyof I_1["message"]["trackPublished"], keyof TrackPublishedResponse>]: never; }) | undefined;
8049
+ } & { [K_188 in Exclude<keyof I_1["message"]["trackPublished"]["track"], keyof TrackInfo>]: never; }) | undefined;
8050
+ } & { [K_189 in Exclude<keyof I_1["message"]["trackPublished"], keyof TrackPublishedResponse>]: never; }) | undefined;
7901
8051
  $case: "trackPublished";
7902
- } & { [K_182 in Exclude<keyof I_1["message"], "trackPublished" | "$case">]: never; }) | ({
8052
+ } & { [K_190 in Exclude<keyof I_1["message"], "trackPublished" | "$case">]: never; }) | ({
7903
8053
  leave?: {
7904
8054
  canReconnect?: boolean | undefined;
7905
8055
  reason?: DisconnectReason | undefined;
@@ -7913,9 +8063,9 @@ export declare const SignalResponse: {
7913
8063
  } & {
7914
8064
  canReconnect?: boolean | undefined;
7915
8065
  reason?: DisconnectReason | undefined;
7916
- } & { [K_183 in Exclude<keyof I_1["message"]["leave"], keyof LeaveRequest>]: never; }) | undefined;
8066
+ } & { [K_191 in Exclude<keyof I_1["message"]["leave"], keyof LeaveRequest>]: never; }) | undefined;
7917
8067
  $case: "leave";
7918
- } & { [K_184 in Exclude<keyof I_1["message"], "leave" | "$case">]: never; }) | ({
8068
+ } & { [K_192 in Exclude<keyof I_1["message"], "leave" | "$case">]: never; }) | ({
7919
8069
  mute?: {
7920
8070
  sid?: string | undefined;
7921
8071
  muted?: boolean | undefined;
@@ -7929,9 +8079,9 @@ export declare const SignalResponse: {
7929
8079
  } & {
7930
8080
  sid?: string | undefined;
7931
8081
  muted?: boolean | undefined;
7932
- } & { [K_185 in Exclude<keyof I_1["message"]["mute"], keyof MuteTrackRequest>]: never; }) | undefined;
8082
+ } & { [K_193 in Exclude<keyof I_1["message"]["mute"], keyof MuteTrackRequest>]: never; }) | undefined;
7933
8083
  $case: "mute";
7934
- } & { [K_186 in Exclude<keyof I_1["message"], "mute" | "$case">]: never; }) | ({
8084
+ } & { [K_194 in Exclude<keyof I_1["message"], "mute" | "$case">]: never; }) | ({
7935
8085
  speakersChanged?: {
7936
8086
  speakers?: {
7937
8087
  sid?: string | undefined;
@@ -7961,14 +8111,14 @@ export declare const SignalResponse: {
7961
8111
  sid?: string | undefined;
7962
8112
  level?: number | undefined;
7963
8113
  active?: boolean | undefined;
7964
- } & { [K_187 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never; })[] & { [K_188 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"], keyof {
8114
+ } & { [K_195 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"][number], keyof SpeakerInfo>]: never; })[] & { [K_196 in Exclude<keyof I_1["message"]["speakersChanged"]["speakers"], keyof {
7965
8115
  sid?: string | undefined;
7966
8116
  level?: number | undefined;
7967
8117
  active?: boolean | undefined;
7968
8118
  }[]>]: never; }) | undefined;
7969
- } & { [K_189 in Exclude<keyof I_1["message"]["speakersChanged"], "speakers">]: never; }) | undefined;
8119
+ } & { [K_197 in Exclude<keyof I_1["message"]["speakersChanged"], "speakers">]: never; }) | undefined;
7970
8120
  $case: "speakersChanged";
7971
- } & { [K_190 in Exclude<keyof I_1["message"], "speakersChanged" | "$case">]: never; }) | ({
8121
+ } & { [K_198 in Exclude<keyof I_1["message"], "speakersChanged" | "$case">]: never; }) | ({
7972
8122
  roomUpdate?: {
7973
8123
  room?: {
7974
8124
  sid?: string | undefined;
@@ -8039,7 +8189,7 @@ export declare const SignalResponse: {
8039
8189
  } & {
8040
8190
  mime?: string | undefined;
8041
8191
  fmtpLine?: string | undefined;
8042
- } & { [K_191 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_192 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
8192
+ } & { [K_199 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_200 in Exclude<keyof I_1["message"]["roomUpdate"]["room"]["enabledCodecs"], keyof {
8043
8193
  mime?: string | undefined;
8044
8194
  fmtpLine?: string | undefined;
8045
8195
  }[]>]: never; }) | undefined;
@@ -8047,10 +8197,10 @@ export declare const SignalResponse: {
8047
8197
  numParticipants?: number | undefined;
8048
8198
  numPublishers?: number | undefined;
8049
8199
  activeRecording?: boolean | undefined;
8050
- } & { [K_193 in Exclude<keyof I_1["message"]["roomUpdate"]["room"], keyof Room>]: never; }) | undefined;
8051
- } & { [K_194 in Exclude<keyof I_1["message"]["roomUpdate"], "room">]: never; }) | undefined;
8200
+ } & { [K_201 in Exclude<keyof I_1["message"]["roomUpdate"]["room"], keyof Room>]: never; }) | undefined;
8201
+ } & { [K_202 in Exclude<keyof I_1["message"]["roomUpdate"], "room">]: never; }) | undefined;
8052
8202
  $case: "roomUpdate";
8053
- } & { [K_195 in Exclude<keyof I_1["message"], "roomUpdate" | "$case">]: never; }) | ({
8203
+ } & { [K_203 in Exclude<keyof I_1["message"], "roomUpdate" | "$case">]: never; }) | ({
8054
8204
  connectionQuality?: {
8055
8205
  updates?: {
8056
8206
  participantSid?: string | undefined;
@@ -8080,14 +8230,14 @@ export declare const SignalResponse: {
8080
8230
  participantSid?: string | undefined;
8081
8231
  quality?: ConnectionQuality | undefined;
8082
8232
  score?: number | undefined;
8083
- } & { [K_196 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never; })[] & { [K_197 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"], keyof {
8233
+ } & { [K_204 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"][number], keyof ConnectionQualityInfo>]: never; })[] & { [K_205 in Exclude<keyof I_1["message"]["connectionQuality"]["updates"], keyof {
8084
8234
  participantSid?: string | undefined;
8085
8235
  quality?: ConnectionQuality | undefined;
8086
8236
  score?: number | undefined;
8087
8237
  }[]>]: never; }) | undefined;
8088
- } & { [K_198 in Exclude<keyof I_1["message"]["connectionQuality"], "updates">]: never; }) | undefined;
8238
+ } & { [K_206 in Exclude<keyof I_1["message"]["connectionQuality"], "updates">]: never; }) | undefined;
8089
8239
  $case: "connectionQuality";
8090
- } & { [K_199 in Exclude<keyof I_1["message"], "connectionQuality" | "$case">]: never; }) | ({
8240
+ } & { [K_207 in Exclude<keyof I_1["message"], "connectionQuality" | "$case">]: never; }) | ({
8091
8241
  streamStateUpdate?: {
8092
8242
  streamStates?: {
8093
8243
  participantSid?: string | undefined;
@@ -8117,14 +8267,14 @@ export declare const SignalResponse: {
8117
8267
  participantSid?: string | undefined;
8118
8268
  trackSid?: string | undefined;
8119
8269
  state?: StreamState | undefined;
8120
- } & { [K_200 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never; })[] & { [K_201 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"], keyof {
8270
+ } & { [K_208 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"][number], keyof StreamStateInfo>]: never; })[] & { [K_209 in Exclude<keyof I_1["message"]["streamStateUpdate"]["streamStates"], keyof {
8121
8271
  participantSid?: string | undefined;
8122
8272
  trackSid?: string | undefined;
8123
8273
  state?: StreamState | undefined;
8124
8274
  }[]>]: never; }) | undefined;
8125
- } & { [K_202 in Exclude<keyof I_1["message"]["streamStateUpdate"], "streamStates">]: never; }) | undefined;
8275
+ } & { [K_210 in Exclude<keyof I_1["message"]["streamStateUpdate"], "streamStates">]: never; }) | undefined;
8126
8276
  $case: "streamStateUpdate";
8127
- } & { [K_203 in Exclude<keyof I_1["message"], "streamStateUpdate" | "$case">]: never; }) | ({
8277
+ } & { [K_211 in Exclude<keyof I_1["message"], "streamStateUpdate" | "$case">]: never; }) | ({
8128
8278
  subscribedQualityUpdate?: {
8129
8279
  trackSid?: string | undefined;
8130
8280
  subscribedQualities?: {
@@ -8166,7 +8316,7 @@ export declare const SignalResponse: {
8166
8316
  } & {
8167
8317
  quality?: VideoQuality | undefined;
8168
8318
  enabled?: boolean | undefined;
8169
- } & { [K_204 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_205 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
8319
+ } & { [K_212 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_213 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedQualities"], keyof {
8170
8320
  quality?: VideoQuality | undefined;
8171
8321
  enabled?: boolean | undefined;
8172
8322
  }[]>]: never; }) | undefined;
@@ -8193,20 +8343,20 @@ export declare const SignalResponse: {
8193
8343
  } & {
8194
8344
  quality?: VideoQuality | undefined;
8195
8345
  enabled?: boolean | undefined;
8196
- } & { [K_206 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_207 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
8346
+ } & { [K_214 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"][number], keyof SubscribedQuality>]: never; })[] & { [K_215 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number]["qualities"], keyof {
8197
8347
  quality?: VideoQuality | undefined;
8198
8348
  enabled?: boolean | undefined;
8199
8349
  }[]>]: never; }) | undefined;
8200
- } & { [K_208 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never; })[] & { [K_209 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
8350
+ } & { [K_216 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"][number], keyof SubscribedCodec>]: never; })[] & { [K_217 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"]["subscribedCodecs"], keyof {
8201
8351
  codec?: string | undefined;
8202
8352
  qualities?: {
8203
8353
  quality?: VideoQuality | undefined;
8204
8354
  enabled?: boolean | undefined;
8205
8355
  }[] | undefined;
8206
8356
  }[]>]: never; }) | undefined;
8207
- } & { [K_210 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never; }) | undefined;
8357
+ } & { [K_218 in Exclude<keyof I_1["message"]["subscribedQualityUpdate"], keyof SubscribedQualityUpdate>]: never; }) | undefined;
8208
8358
  $case: "subscribedQualityUpdate";
8209
- } & { [K_211 in Exclude<keyof I_1["message"], "subscribedQualityUpdate" | "$case">]: never; }) | ({
8359
+ } & { [K_219 in Exclude<keyof I_1["message"], "subscribedQualityUpdate" | "$case">]: never; }) | ({
8210
8360
  subscriptionPermissionUpdate?: {
8211
8361
  participantSid?: string | undefined;
8212
8362
  trackSid?: string | undefined;
@@ -8223,16 +8373,16 @@ export declare const SignalResponse: {
8223
8373
  participantSid?: string | undefined;
8224
8374
  trackSid?: string | undefined;
8225
8375
  allowed?: boolean | undefined;
8226
- } & { [K_212 in Exclude<keyof I_1["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never; }) | undefined;
8376
+ } & { [K_220 in Exclude<keyof I_1["message"]["subscriptionPermissionUpdate"], keyof SubscriptionPermissionUpdate>]: never; }) | undefined;
8227
8377
  $case: "subscriptionPermissionUpdate";
8228
- } & { [K_213 in Exclude<keyof I_1["message"], "subscriptionPermissionUpdate" | "$case">]: never; }) | ({
8378
+ } & { [K_221 in Exclude<keyof I_1["message"], "subscriptionPermissionUpdate" | "$case">]: never; }) | ({
8229
8379
  refreshToken?: string | undefined;
8230
8380
  } & {
8231
8381
  $case: "refreshToken";
8232
8382
  } & {
8233
8383
  refreshToken?: string | undefined;
8234
8384
  $case: "refreshToken";
8235
- } & { [K_214 in Exclude<keyof I_1["message"], "refreshToken" | "$case">]: never; }) | ({
8385
+ } & { [K_222 in Exclude<keyof I_1["message"], "refreshToken" | "$case">]: never; }) | ({
8236
8386
  trackUnpublished?: {
8237
8387
  trackSid?: string | undefined;
8238
8388
  } | undefined;
@@ -8243,16 +8393,16 @@ export declare const SignalResponse: {
8243
8393
  trackSid?: string | undefined;
8244
8394
  } & {
8245
8395
  trackSid?: string | undefined;
8246
- } & { [K_215 in Exclude<keyof I_1["message"]["trackUnpublished"], "trackSid">]: never; }) | undefined;
8396
+ } & { [K_223 in Exclude<keyof I_1["message"]["trackUnpublished"], "trackSid">]: never; }) | undefined;
8247
8397
  $case: "trackUnpublished";
8248
- } & { [K_216 in Exclude<keyof I_1["message"], "trackUnpublished" | "$case">]: never; }) | ({
8398
+ } & { [K_224 in Exclude<keyof I_1["message"], "trackUnpublished" | "$case">]: never; }) | ({
8249
8399
  pong?: number | undefined;
8250
8400
  } & {
8251
8401
  $case: "pong";
8252
8402
  } & {
8253
8403
  pong?: number | undefined;
8254
8404
  $case: "pong";
8255
- } & { [K_217 in Exclude<keyof I_1["message"], "pong" | "$case">]: never; }) | ({
8405
+ } & { [K_225 in Exclude<keyof I_1["message"], "pong" | "$case">]: never; }) | ({
8256
8406
  reconnect?: {
8257
8407
  iceServers?: {
8258
8408
  urls?: string[] | undefined;
@@ -8272,6 +8422,10 @@ export declare const SignalResponse: {
8272
8422
  mime?: string | undefined;
8273
8423
  fmtpLine?: string | undefined;
8274
8424
  }[] | undefined;
8425
+ publish?: {
8426
+ mime?: string | undefined;
8427
+ fmtpLine?: string | undefined;
8428
+ }[] | undefined;
8275
8429
  } | undefined;
8276
8430
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
8277
8431
  } | undefined;
@@ -8298,6 +8452,10 @@ export declare const SignalResponse: {
8298
8452
  mime?: string | undefined;
8299
8453
  fmtpLine?: string | undefined;
8300
8454
  }[] | undefined;
8455
+ publish?: {
8456
+ mime?: string | undefined;
8457
+ fmtpLine?: string | undefined;
8458
+ }[] | undefined;
8301
8459
  } | undefined;
8302
8460
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
8303
8461
  } | undefined;
@@ -8311,10 +8469,10 @@ export declare const SignalResponse: {
8311
8469
  username?: string | undefined;
8312
8470
  credential?: string | undefined;
8313
8471
  } & {
8314
- urls?: (string[] & string[] & { [K_218 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
8472
+ urls?: (string[] & string[] & { [K_226 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
8315
8473
  username?: string | undefined;
8316
8474
  credential?: string | undefined;
8317
- } & { [K_219 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_220 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"], keyof {
8475
+ } & { [K_227 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_228 in Exclude<keyof I_1["message"]["reconnect"]["iceServers"], keyof {
8318
8476
  urls?: string[] | undefined;
8319
8477
  username?: string | undefined;
8320
8478
  credential?: string | undefined;
@@ -8332,6 +8490,10 @@ export declare const SignalResponse: {
8332
8490
  mime?: string | undefined;
8333
8491
  fmtpLine?: string | undefined;
8334
8492
  }[] | undefined;
8493
+ publish?: {
8494
+ mime?: string | undefined;
8495
+ fmtpLine?: string | undefined;
8496
+ }[] | undefined;
8335
8497
  } | undefined;
8336
8498
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
8337
8499
  } & {
@@ -8339,18 +8501,22 @@ export declare const SignalResponse: {
8339
8501
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
8340
8502
  } & {
8341
8503
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
8342
- } & { [K_221 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
8504
+ } & { [K_229 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
8343
8505
  screen?: ({
8344
8506
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
8345
8507
  } & {
8346
8508
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
8347
- } & { [K_222 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
8509
+ } & { [K_230 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
8348
8510
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
8349
8511
  disabledCodecs?: ({
8350
8512
  codecs?: {
8351
8513
  mime?: string | undefined;
8352
8514
  fmtpLine?: string | undefined;
8353
8515
  }[] | undefined;
8516
+ publish?: {
8517
+ mime?: string | undefined;
8518
+ fmtpLine?: string | undefined;
8519
+ }[] | undefined;
8354
8520
  } & {
8355
8521
  codecs?: ({
8356
8522
  mime?: string | undefined;
@@ -8361,16 +8527,29 @@ export declare const SignalResponse: {
8361
8527
  } & {
8362
8528
  mime?: string | undefined;
8363
8529
  fmtpLine?: string | undefined;
8364
- } & { [K_223 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_224 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
8530
+ } & { [K_231 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_232 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
8531
+ mime?: string | undefined;
8532
+ fmtpLine?: string | undefined;
8533
+ }[]>]: never; }) | undefined;
8534
+ publish?: ({
8535
+ mime?: string | undefined;
8536
+ fmtpLine?: string | undefined;
8537
+ }[] & ({
8538
+ mime?: string | undefined;
8539
+ fmtpLine?: string | undefined;
8540
+ } & {
8541
+ mime?: string | undefined;
8542
+ fmtpLine?: string | undefined;
8543
+ } & { [K_233 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_234 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
8365
8544
  mime?: string | undefined;
8366
8545
  fmtpLine?: string | undefined;
8367
8546
  }[]>]: never; }) | undefined;
8368
- } & { [K_225 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
8547
+ } & { [K_235 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
8369
8548
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
8370
- } & { [K_226 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
8371
- } & { [K_227 in Exclude<keyof I_1["message"]["reconnect"], keyof ReconnectResponse>]: never; }) | undefined;
8549
+ } & { [K_236 in Exclude<keyof I_1["message"]["reconnect"]["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
8550
+ } & { [K_237 in Exclude<keyof I_1["message"]["reconnect"], keyof ReconnectResponse>]: never; }) | undefined;
8372
8551
  $case: "reconnect";
8373
- } & { [K_228 in Exclude<keyof I_1["message"], "reconnect" | "$case">]: never; }) | ({
8552
+ } & { [K_238 in Exclude<keyof I_1["message"], "reconnect" | "$case">]: never; }) | ({
8374
8553
  pongResp?: {
8375
8554
  lastPingTimestamp?: number | undefined;
8376
8555
  timestamp?: number | undefined;
@@ -8384,10 +8563,26 @@ export declare const SignalResponse: {
8384
8563
  } & {
8385
8564
  lastPingTimestamp?: number | undefined;
8386
8565
  timestamp?: number | undefined;
8387
- } & { [K_229 in Exclude<keyof I_1["message"]["pongResp"], keyof Pong>]: never; }) | undefined;
8566
+ } & { [K_239 in Exclude<keyof I_1["message"]["pongResp"], keyof Pong>]: never; }) | undefined;
8388
8567
  $case: "pongResp";
8389
- } & { [K_230 in Exclude<keyof I_1["message"], "pongResp" | "$case">]: never; }) | undefined;
8390
- } & { [K_231 in Exclude<keyof I_1, "message">]: never; }>(object: I_1): SignalResponse;
8568
+ } & { [K_240 in Exclude<keyof I_1["message"], "pongResp" | "$case">]: never; }) | ({
8569
+ subscriptionResponse?: {
8570
+ trackSid?: string | undefined;
8571
+ err?: SubscriptionError | undefined;
8572
+ } | undefined;
8573
+ } & {
8574
+ $case: "subscriptionResponse";
8575
+ } & {
8576
+ subscriptionResponse?: ({
8577
+ trackSid?: string | undefined;
8578
+ err?: SubscriptionError | undefined;
8579
+ } & {
8580
+ trackSid?: string | undefined;
8581
+ err?: SubscriptionError | undefined;
8582
+ } & { [K_241 in Exclude<keyof I_1["message"]["subscriptionResponse"], keyof SubscriptionResponse>]: never; }) | undefined;
8583
+ $case: "subscriptionResponse";
8584
+ } & { [K_242 in Exclude<keyof I_1["message"], "subscriptionResponse" | "$case">]: never; }) | undefined;
8585
+ } & { [K_243 in Exclude<keyof I_1, "message">]: never; }>(object: I_1): SignalResponse;
8391
8586
  };
8392
8587
  export declare const SimulcastCodec: {
8393
8588
  encode(message: SimulcastCodec, writer?: _m0.Writer): _m0.Writer;
@@ -8774,6 +8969,10 @@ export declare const JoinResponse: {
8774
8969
  mime?: string | undefined;
8775
8970
  fmtpLine?: string | undefined;
8776
8971
  }[] | undefined;
8972
+ publish?: {
8973
+ mime?: string | undefined;
8974
+ fmtpLine?: string | undefined;
8975
+ }[] | undefined;
8777
8976
  } | undefined;
8778
8977
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
8779
8978
  } | undefined;
@@ -8788,6 +8987,7 @@ export declare const JoinResponse: {
8788
8987
  nodeId?: string | undefined;
8789
8988
  debugInfo?: string | undefined;
8790
8989
  } | undefined;
8990
+ sifTrailer?: Uint8Array | undefined;
8791
8991
  } & {
8792
8992
  room?: ({
8793
8993
  sid?: string | undefined;
@@ -9546,6 +9746,10 @@ export declare const JoinResponse: {
9546
9746
  mime?: string | undefined;
9547
9747
  fmtpLine?: string | undefined;
9548
9748
  }[] | undefined;
9749
+ publish?: {
9750
+ mime?: string | undefined;
9751
+ fmtpLine?: string | undefined;
9752
+ }[] | undefined;
9549
9753
  } | undefined;
9550
9754
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
9551
9755
  } & {
@@ -9565,6 +9769,10 @@ export declare const JoinResponse: {
9565
9769
  mime?: string | undefined;
9566
9770
  fmtpLine?: string | undefined;
9567
9771
  }[] | undefined;
9772
+ publish?: {
9773
+ mime?: string | undefined;
9774
+ fmtpLine?: string | undefined;
9775
+ }[] | undefined;
9568
9776
  } & {
9569
9777
  codecs?: ({
9570
9778
  mime?: string | undefined;
@@ -9579,9 +9787,22 @@ export declare const JoinResponse: {
9579
9787
  mime?: string | undefined;
9580
9788
  fmtpLine?: string | undefined;
9581
9789
  }[]>]: never; }) | undefined;
9582
- } & { [K_33 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
9790
+ publish?: ({
9791
+ mime?: string | undefined;
9792
+ fmtpLine?: string | undefined;
9793
+ }[] & ({
9794
+ mime?: string | undefined;
9795
+ fmtpLine?: string | undefined;
9796
+ } & {
9797
+ mime?: string | undefined;
9798
+ fmtpLine?: string | undefined;
9799
+ } & { [K_33 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_34 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
9800
+ mime?: string | undefined;
9801
+ fmtpLine?: string | undefined;
9802
+ }[]>]: never; }) | undefined;
9803
+ } & { [K_35 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
9583
9804
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
9584
- } & { [K_34 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
9805
+ } & { [K_36 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
9585
9806
  serverRegion?: string | undefined;
9586
9807
  pingTimeout?: number | undefined;
9587
9808
  pingInterval?: number | undefined;
@@ -9599,8 +9820,9 @@ export declare const JoinResponse: {
9599
9820
  region?: string | undefined;
9600
9821
  nodeId?: string | undefined;
9601
9822
  debugInfo?: string | undefined;
9602
- } & { [K_35 in Exclude<keyof I["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
9603
- } & { [K_36 in Exclude<keyof I, keyof JoinResponse>]: never; }>(base?: I | undefined): JoinResponse;
9823
+ } & { [K_37 in Exclude<keyof I["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
9824
+ sifTrailer?: Uint8Array | undefined;
9825
+ } & { [K_38 in Exclude<keyof I, keyof JoinResponse>]: never; }>(base?: I | undefined): JoinResponse;
9604
9826
  fromPartial<I_1 extends {
9605
9827
  room?: {
9606
9828
  sid?: string | undefined;
@@ -9749,6 +9971,10 @@ export declare const JoinResponse: {
9749
9971
  mime?: string | undefined;
9750
9972
  fmtpLine?: string | undefined;
9751
9973
  }[] | undefined;
9974
+ publish?: {
9975
+ mime?: string | undefined;
9976
+ fmtpLine?: string | undefined;
9977
+ }[] | undefined;
9752
9978
  } | undefined;
9753
9979
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
9754
9980
  } | undefined;
@@ -9763,6 +9989,7 @@ export declare const JoinResponse: {
9763
9989
  nodeId?: string | undefined;
9764
9990
  debugInfo?: string | undefined;
9765
9991
  } | undefined;
9992
+ sifTrailer?: Uint8Array | undefined;
9766
9993
  } & {
9767
9994
  room?: ({
9768
9995
  sid?: string | undefined;
@@ -9795,7 +10022,7 @@ export declare const JoinResponse: {
9795
10022
  } & {
9796
10023
  mime?: string | undefined;
9797
10024
  fmtpLine?: string | undefined;
9798
- } & { [K_37 in Exclude<keyof I_1["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_38 in Exclude<keyof I_1["room"]["enabledCodecs"], keyof {
10025
+ } & { [K_39 in Exclude<keyof I_1["room"]["enabledCodecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_40 in Exclude<keyof I_1["room"]["enabledCodecs"], keyof {
9799
10026
  mime?: string | undefined;
9800
10027
  fmtpLine?: string | undefined;
9801
10028
  }[]>]: never; }) | undefined;
@@ -9803,7 +10030,7 @@ export declare const JoinResponse: {
9803
10030
  numParticipants?: number | undefined;
9804
10031
  numPublishers?: number | undefined;
9805
10032
  activeRecording?: boolean | undefined;
9806
- } & { [K_39 in Exclude<keyof I_1["room"], keyof Room>]: never; }) | undefined;
10033
+ } & { [K_41 in Exclude<keyof I_1["room"], keyof Room>]: never; }) | undefined;
9807
10034
  participant?: ({
9808
10035
  sid?: string | undefined;
9809
10036
  identity?: string | undefined;
@@ -9958,7 +10185,7 @@ export declare const JoinResponse: {
9958
10185
  height?: number | undefined;
9959
10186
  bitrate?: number | undefined;
9960
10187
  ssrc?: number | undefined;
9961
- } & { [K_40 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_41 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"], keyof {
10188
+ } & { [K_42 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_43 in Exclude<keyof I_1["participant"]["tracks"][number]["layers"], keyof {
9962
10189
  quality?: VideoQuality | undefined;
9963
10190
  width?: number | undefined;
9964
10191
  height?: number | undefined;
@@ -10011,14 +10238,14 @@ export declare const JoinResponse: {
10011
10238
  height?: number | undefined;
10012
10239
  bitrate?: number | undefined;
10013
10240
  ssrc?: number | undefined;
10014
- } & { [K_42 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_43 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
10241
+ } & { [K_44 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_45 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number]["layers"], keyof {
10015
10242
  quality?: VideoQuality | undefined;
10016
10243
  width?: number | undefined;
10017
10244
  height?: number | undefined;
10018
10245
  bitrate?: number | undefined;
10019
10246
  ssrc?: number | undefined;
10020
10247
  }[]>]: never; }) | undefined;
10021
- } & { [K_44 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_45 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"], keyof {
10248
+ } & { [K_46 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_47 in Exclude<keyof I_1["participant"]["tracks"][number]["codecs"], keyof {
10022
10249
  mimeType?: string | undefined;
10023
10250
  mid?: string | undefined;
10024
10251
  cid?: string | undefined;
@@ -10033,7 +10260,7 @@ export declare const JoinResponse: {
10033
10260
  stereo?: boolean | undefined;
10034
10261
  disableRed?: boolean | undefined;
10035
10262
  encryption?: Encryption_Type | undefined;
10036
- } & { [K_46 in Exclude<keyof I_1["participant"]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_47 in Exclude<keyof I_1["participant"]["tracks"], keyof {
10263
+ } & { [K_48 in Exclude<keyof I_1["participant"]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_49 in Exclude<keyof I_1["participant"]["tracks"], keyof {
10037
10264
  sid?: string | undefined;
10038
10265
  type?: TrackType | undefined;
10039
10266
  name?: string | undefined;
@@ -10084,14 +10311,14 @@ export declare const JoinResponse: {
10084
10311
  canSubscribe?: boolean | undefined;
10085
10312
  canPublish?: boolean | undefined;
10086
10313
  canPublishData?: boolean | undefined;
10087
- canPublishSources?: (TrackSource[] & TrackSource[] & { [K_48 in Exclude<keyof I_1["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
10314
+ canPublishSources?: (TrackSource[] & TrackSource[] & { [K_50 in Exclude<keyof I_1["participant"]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
10088
10315
  hidden?: boolean | undefined;
10089
10316
  recorder?: boolean | undefined;
10090
10317
  canUpdateMetadata?: boolean | undefined;
10091
- } & { [K_49 in Exclude<keyof I_1["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
10318
+ } & { [K_51 in Exclude<keyof I_1["participant"]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
10092
10319
  region?: string | undefined;
10093
10320
  isPublisher?: boolean | undefined;
10094
- } & { [K_50 in Exclude<keyof I_1["participant"], keyof ParticipantInfo>]: never; }) | undefined;
10321
+ } & { [K_52 in Exclude<keyof I_1["participant"], keyof ParticipantInfo>]: never; }) | undefined;
10095
10322
  otherParticipants?: ({
10096
10323
  sid?: string | undefined;
10097
10324
  identity?: string | undefined;
@@ -10300,7 +10527,7 @@ export declare const JoinResponse: {
10300
10527
  height?: number | undefined;
10301
10528
  bitrate?: number | undefined;
10302
10529
  ssrc?: number | undefined;
10303
- } & { [K_51 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_52 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"], keyof {
10530
+ } & { [K_53 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_54 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["layers"], keyof {
10304
10531
  quality?: VideoQuality | undefined;
10305
10532
  width?: number | undefined;
10306
10533
  height?: number | undefined;
@@ -10353,14 +10580,14 @@ export declare const JoinResponse: {
10353
10580
  height?: number | undefined;
10354
10581
  bitrate?: number | undefined;
10355
10582
  ssrc?: number | undefined;
10356
- } & { [K_53 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_54 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
10583
+ } & { [K_55 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"][number], keyof VideoLayer>]: never; })[] & { [K_56 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number]["layers"], keyof {
10357
10584
  quality?: VideoQuality | undefined;
10358
10585
  width?: number | undefined;
10359
10586
  height?: number | undefined;
10360
10587
  bitrate?: number | undefined;
10361
10588
  ssrc?: number | undefined;
10362
10589
  }[]>]: never; }) | undefined;
10363
- } & { [K_55 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_56 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
10590
+ } & { [K_57 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"][number], keyof import("./livekit_models").SimulcastCodecInfo>]: never; })[] & { [K_58 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number]["codecs"], keyof {
10364
10591
  mimeType?: string | undefined;
10365
10592
  mid?: string | undefined;
10366
10593
  cid?: string | undefined;
@@ -10375,7 +10602,7 @@ export declare const JoinResponse: {
10375
10602
  stereo?: boolean | undefined;
10376
10603
  disableRed?: boolean | undefined;
10377
10604
  encryption?: Encryption_Type | undefined;
10378
- } & { [K_57 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_58 in Exclude<keyof I_1["otherParticipants"][number]["tracks"], keyof {
10605
+ } & { [K_59 in Exclude<keyof I_1["otherParticipants"][number]["tracks"][number], keyof TrackInfo>]: never; })[] & { [K_60 in Exclude<keyof I_1["otherParticipants"][number]["tracks"], keyof {
10379
10606
  sid?: string | undefined;
10380
10607
  type?: TrackType | undefined;
10381
10608
  name?: string | undefined;
@@ -10426,14 +10653,14 @@ export declare const JoinResponse: {
10426
10653
  canSubscribe?: boolean | undefined;
10427
10654
  canPublish?: boolean | undefined;
10428
10655
  canPublishData?: boolean | undefined;
10429
- canPublishSources?: (TrackSource[] & TrackSource[] & { [K_59 in Exclude<keyof I_1["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
10656
+ canPublishSources?: (TrackSource[] & TrackSource[] & { [K_61 in Exclude<keyof I_1["otherParticipants"][number]["permission"]["canPublishSources"], keyof TrackSource[]>]: never; }) | undefined;
10430
10657
  hidden?: boolean | undefined;
10431
10658
  recorder?: boolean | undefined;
10432
10659
  canUpdateMetadata?: boolean | undefined;
10433
- } & { [K_60 in Exclude<keyof I_1["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
10660
+ } & { [K_62 in Exclude<keyof I_1["otherParticipants"][number]["permission"], keyof import("./livekit_models").ParticipantPermission>]: never; }) | undefined;
10434
10661
  region?: string | undefined;
10435
10662
  isPublisher?: boolean | undefined;
10436
- } & { [K_61 in Exclude<keyof I_1["otherParticipants"][number], keyof ParticipantInfo>]: never; })[] & { [K_62 in Exclude<keyof I_1["otherParticipants"], keyof {
10663
+ } & { [K_63 in Exclude<keyof I_1["otherParticipants"][number], keyof ParticipantInfo>]: never; })[] & { [K_64 in Exclude<keyof I_1["otherParticipants"], keyof {
10437
10664
  sid?: string | undefined;
10438
10665
  identity?: string | undefined;
10439
10666
  state?: import("./livekit_models").ParticipantInfo_State | undefined;
@@ -10498,10 +10725,10 @@ export declare const JoinResponse: {
10498
10725
  username?: string | undefined;
10499
10726
  credential?: string | undefined;
10500
10727
  } & {
10501
- urls?: (string[] & string[] & { [K_63 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
10728
+ urls?: (string[] & string[] & { [K_65 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
10502
10729
  username?: string | undefined;
10503
10730
  credential?: string | undefined;
10504
- } & { [K_64 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_65 in Exclude<keyof I_1["iceServers"], keyof {
10731
+ } & { [K_66 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_67 in Exclude<keyof I_1["iceServers"], keyof {
10505
10732
  urls?: string[] | undefined;
10506
10733
  username?: string | undefined;
10507
10734
  credential?: string | undefined;
@@ -10521,6 +10748,10 @@ export declare const JoinResponse: {
10521
10748
  mime?: string | undefined;
10522
10749
  fmtpLine?: string | undefined;
10523
10750
  }[] | undefined;
10751
+ publish?: {
10752
+ mime?: string | undefined;
10753
+ fmtpLine?: string | undefined;
10754
+ }[] | undefined;
10524
10755
  } | undefined;
10525
10756
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10526
10757
  } & {
@@ -10528,18 +10759,22 @@ export declare const JoinResponse: {
10528
10759
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10529
10760
  } & {
10530
10761
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10531
- } & { [K_66 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
10762
+ } & { [K_68 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
10532
10763
  screen?: ({
10533
10764
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10534
10765
  } & {
10535
10766
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10536
- } & { [K_67 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
10767
+ } & { [K_69 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
10537
10768
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
10538
10769
  disabledCodecs?: ({
10539
10770
  codecs?: {
10540
10771
  mime?: string | undefined;
10541
10772
  fmtpLine?: string | undefined;
10542
10773
  }[] | undefined;
10774
+ publish?: {
10775
+ mime?: string | undefined;
10776
+ fmtpLine?: string | undefined;
10777
+ }[] | undefined;
10543
10778
  } & {
10544
10779
  codecs?: ({
10545
10780
  mime?: string | undefined;
@@ -10550,13 +10785,26 @@ export declare const JoinResponse: {
10550
10785
  } & {
10551
10786
  mime?: string | undefined;
10552
10787
  fmtpLine?: string | undefined;
10553
- } & { [K_68 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_69 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
10788
+ } & { [K_70 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_71 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
10554
10789
  mime?: string | undefined;
10555
10790
  fmtpLine?: string | undefined;
10556
10791
  }[]>]: never; }) | undefined;
10557
- } & { [K_70 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
10792
+ publish?: ({
10793
+ mime?: string | undefined;
10794
+ fmtpLine?: string | undefined;
10795
+ }[] & ({
10796
+ mime?: string | undefined;
10797
+ fmtpLine?: string | undefined;
10798
+ } & {
10799
+ mime?: string | undefined;
10800
+ fmtpLine?: string | undefined;
10801
+ } & { [K_72 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_73 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
10802
+ mime?: string | undefined;
10803
+ fmtpLine?: string | undefined;
10804
+ }[]>]: never; }) | undefined;
10805
+ } & { [K_74 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
10558
10806
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10559
- } & { [K_71 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
10807
+ } & { [K_75 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
10560
10808
  serverRegion?: string | undefined;
10561
10809
  pingTimeout?: number | undefined;
10562
10810
  pingInterval?: number | undefined;
@@ -10574,8 +10822,9 @@ export declare const JoinResponse: {
10574
10822
  region?: string | undefined;
10575
10823
  nodeId?: string | undefined;
10576
10824
  debugInfo?: string | undefined;
10577
- } & { [K_72 in Exclude<keyof I_1["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
10578
- } & { [K_73 in Exclude<keyof I_1, keyof JoinResponse>]: never; }>(object: I_1): JoinResponse;
10825
+ } & { [K_76 in Exclude<keyof I_1["serverInfo"], keyof ServerInfo>]: never; }) | undefined;
10826
+ sifTrailer?: Uint8Array | undefined;
10827
+ } & { [K_77 in Exclude<keyof I_1, keyof JoinResponse>]: never; }>(object: I_1): JoinResponse;
10579
10828
  };
10580
10829
  export declare const ReconnectResponse: {
10581
10830
  encode(message: ReconnectResponse, writer?: _m0.Writer): _m0.Writer;
@@ -10601,6 +10850,10 @@ export declare const ReconnectResponse: {
10601
10850
  mime?: string | undefined;
10602
10851
  fmtpLine?: string | undefined;
10603
10852
  }[] | undefined;
10853
+ publish?: {
10854
+ mime?: string | undefined;
10855
+ fmtpLine?: string | undefined;
10856
+ }[] | undefined;
10604
10857
  } | undefined;
10605
10858
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10606
10859
  } | undefined;
@@ -10635,6 +10888,10 @@ export declare const ReconnectResponse: {
10635
10888
  mime?: string | undefined;
10636
10889
  fmtpLine?: string | undefined;
10637
10890
  }[] | undefined;
10891
+ publish?: {
10892
+ mime?: string | undefined;
10893
+ fmtpLine?: string | undefined;
10894
+ }[] | undefined;
10638
10895
  } | undefined;
10639
10896
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10640
10897
  } & {
@@ -10654,6 +10911,10 @@ export declare const ReconnectResponse: {
10654
10911
  mime?: string | undefined;
10655
10912
  fmtpLine?: string | undefined;
10656
10913
  }[] | undefined;
10914
+ publish?: {
10915
+ mime?: string | undefined;
10916
+ fmtpLine?: string | undefined;
10917
+ }[] | undefined;
10657
10918
  } & {
10658
10919
  codecs?: ({
10659
10920
  mime?: string | undefined;
@@ -10668,10 +10929,23 @@ export declare const ReconnectResponse: {
10668
10929
  mime?: string | undefined;
10669
10930
  fmtpLine?: string | undefined;
10670
10931
  }[]>]: never; }) | undefined;
10671
- } & { [K_7 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
10932
+ publish?: ({
10933
+ mime?: string | undefined;
10934
+ fmtpLine?: string | undefined;
10935
+ }[] & ({
10936
+ mime?: string | undefined;
10937
+ fmtpLine?: string | undefined;
10938
+ } & {
10939
+ mime?: string | undefined;
10940
+ fmtpLine?: string | undefined;
10941
+ } & { [K_7 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_8 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
10942
+ mime?: string | undefined;
10943
+ fmtpLine?: string | undefined;
10944
+ }[]>]: never; }) | undefined;
10945
+ } & { [K_9 in Exclude<keyof I["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
10672
10946
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10673
- } & { [K_8 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
10674
- } & { [K_9 in Exclude<keyof I, keyof ReconnectResponse>]: never; }>(base?: I | undefined): ReconnectResponse;
10947
+ } & { [K_10 in Exclude<keyof I["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
10948
+ } & { [K_11 in Exclude<keyof I, keyof ReconnectResponse>]: never; }>(base?: I | undefined): ReconnectResponse;
10675
10949
  fromPartial<I_1 extends {
10676
10950
  iceServers?: {
10677
10951
  urls?: string[] | undefined;
@@ -10691,6 +10965,10 @@ export declare const ReconnectResponse: {
10691
10965
  mime?: string | undefined;
10692
10966
  fmtpLine?: string | undefined;
10693
10967
  }[] | undefined;
10968
+ publish?: {
10969
+ mime?: string | undefined;
10970
+ fmtpLine?: string | undefined;
10971
+ }[] | undefined;
10694
10972
  } | undefined;
10695
10973
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10696
10974
  } | undefined;
@@ -10704,10 +10982,10 @@ export declare const ReconnectResponse: {
10704
10982
  username?: string | undefined;
10705
10983
  credential?: string | undefined;
10706
10984
  } & {
10707
- urls?: (string[] & string[] & { [K_10 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
10985
+ urls?: (string[] & string[] & { [K_12 in Exclude<keyof I_1["iceServers"][number]["urls"], keyof string[]>]: never; }) | undefined;
10708
10986
  username?: string | undefined;
10709
10987
  credential?: string | undefined;
10710
- } & { [K_11 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_12 in Exclude<keyof I_1["iceServers"], keyof {
10988
+ } & { [K_13 in Exclude<keyof I_1["iceServers"][number], keyof ICEServer>]: never; })[] & { [K_14 in Exclude<keyof I_1["iceServers"], keyof {
10711
10989
  urls?: string[] | undefined;
10712
10990
  username?: string | undefined;
10713
10991
  credential?: string | undefined;
@@ -10725,6 +11003,10 @@ export declare const ReconnectResponse: {
10725
11003
  mime?: string | undefined;
10726
11004
  fmtpLine?: string | undefined;
10727
11005
  }[] | undefined;
11006
+ publish?: {
11007
+ mime?: string | undefined;
11008
+ fmtpLine?: string | undefined;
11009
+ }[] | undefined;
10728
11010
  } | undefined;
10729
11011
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10730
11012
  } & {
@@ -10732,18 +11014,22 @@ export declare const ReconnectResponse: {
10732
11014
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10733
11015
  } & {
10734
11016
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10735
- } & { [K_13 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
11017
+ } & { [K_15 in Exclude<keyof I_1["clientConfiguration"]["video"], "hardwareEncoder">]: never; }) | undefined;
10736
11018
  screen?: ({
10737
11019
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10738
11020
  } & {
10739
11021
  hardwareEncoder?: import("./livekit_models").ClientConfigSetting | undefined;
10740
- } & { [K_14 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
11022
+ } & { [K_16 in Exclude<keyof I_1["clientConfiguration"]["screen"], "hardwareEncoder">]: never; }) | undefined;
10741
11023
  resumeConnection?: import("./livekit_models").ClientConfigSetting | undefined;
10742
11024
  disabledCodecs?: ({
10743
11025
  codecs?: {
10744
11026
  mime?: string | undefined;
10745
11027
  fmtpLine?: string | undefined;
10746
11028
  }[] | undefined;
11029
+ publish?: {
11030
+ mime?: string | undefined;
11031
+ fmtpLine?: string | undefined;
11032
+ }[] | undefined;
10747
11033
  } & {
10748
11034
  codecs?: ({
10749
11035
  mime?: string | undefined;
@@ -10754,14 +11040,27 @@ export declare const ReconnectResponse: {
10754
11040
  } & {
10755
11041
  mime?: string | undefined;
10756
11042
  fmtpLine?: string | undefined;
10757
- } & { [K_15 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_16 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
11043
+ } & { [K_17 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_18 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["codecs"], keyof {
10758
11044
  mime?: string | undefined;
10759
11045
  fmtpLine?: string | undefined;
10760
11046
  }[]>]: never; }) | undefined;
10761
- } & { [K_17 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], "codecs">]: never; }) | undefined;
11047
+ publish?: ({
11048
+ mime?: string | undefined;
11049
+ fmtpLine?: string | undefined;
11050
+ }[] & ({
11051
+ mime?: string | undefined;
11052
+ fmtpLine?: string | undefined;
11053
+ } & {
11054
+ mime?: string | undefined;
11055
+ fmtpLine?: string | undefined;
11056
+ } & { [K_19 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"][number], keyof import("./livekit_models").Codec>]: never; })[] & { [K_20 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"]["publish"], keyof {
11057
+ mime?: string | undefined;
11058
+ fmtpLine?: string | undefined;
11059
+ }[]>]: never; }) | undefined;
11060
+ } & { [K_21 in Exclude<keyof I_1["clientConfiguration"]["disabledCodecs"], keyof import("./livekit_models").DisabledCodecs>]: never; }) | undefined;
10762
11061
  forceRelay?: import("./livekit_models").ClientConfigSetting | undefined;
10763
- } & { [K_18 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
10764
- } & { [K_19 in Exclude<keyof I_1, keyof ReconnectResponse>]: never; }>(object: I_1): ReconnectResponse;
11062
+ } & { [K_22 in Exclude<keyof I_1["clientConfiguration"], keyof ClientConfiguration>]: never; }) | undefined;
11063
+ } & { [K_23 in Exclude<keyof I_1, keyof ReconnectResponse>]: never; }>(object: I_1): ReconnectResponse;
10765
11064
  };
10766
11065
  export declare const TrackPublishedResponse: {
10767
11066
  encode(message: TrackPublishedResponse, writer?: _m0.Writer): _m0.Writer;
@@ -14013,6 +14312,26 @@ export declare const RegionInfo: {
14013
14312
  distance?: number | undefined;
14014
14313
  } & { [K_1 in Exclude<keyof I_1, keyof RegionInfo>]: never; }>(object: I_1): RegionInfo;
14015
14314
  };
14315
+ export declare const SubscriptionResponse: {
14316
+ encode(message: SubscriptionResponse, writer?: _m0.Writer): _m0.Writer;
14317
+ decode(input: _m0.Reader | Uint8Array, length?: number): SubscriptionResponse;
14318
+ fromJSON(object: any): SubscriptionResponse;
14319
+ toJSON(message: SubscriptionResponse): unknown;
14320
+ create<I extends {
14321
+ trackSid?: string | undefined;
14322
+ err?: SubscriptionError | undefined;
14323
+ } & {
14324
+ trackSid?: string | undefined;
14325
+ err?: SubscriptionError | undefined;
14326
+ } & { [K in Exclude<keyof I, keyof SubscriptionResponse>]: never; }>(base?: I | undefined): SubscriptionResponse;
14327
+ fromPartial<I_1 extends {
14328
+ trackSid?: string | undefined;
14329
+ err?: SubscriptionError | undefined;
14330
+ } & {
14331
+ trackSid?: string | undefined;
14332
+ err?: SubscriptionError | undefined;
14333
+ } & { [K_1 in Exclude<keyof I_1, keyof SubscriptionResponse>]: never; }>(object: I_1): SubscriptionResponse;
14334
+ };
14016
14335
  type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
14017
14336
  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 {
14018
14337
  $case: string;