@tf2pickup-org/mumble-protocol 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/Mumble.d.ts CHANGED
@@ -11,32 +11,32 @@ export interface Version {
11
11
  /**
12
12
  * Legacy version number format.
13
13
  *
14
- * @generated from protobuf field: optional uint32 version_v1 = 1;
14
+ * @generated from protobuf field: optional uint32 version_v1 = 1
15
15
  */
16
16
  versionV1?: number;
17
17
  /**
18
18
  * New version number format.
19
19
  * Necessary since patch level may exceed 255. (See https://github.com/mumble-voip/mumble/issues/5827)
20
20
  *
21
- * @generated from protobuf field: optional uint64 version_v2 = 5;
21
+ * @generated from protobuf field: optional uint64 version_v2 = 5
22
22
  */
23
23
  versionV2?: bigint;
24
24
  /**
25
25
  * Client release name.
26
26
  *
27
- * @generated from protobuf field: optional string release = 2;
27
+ * @generated from protobuf field: optional string release = 2
28
28
  */
29
29
  release?: string;
30
30
  /**
31
31
  * Client OS name.
32
32
  *
33
- * @generated from protobuf field: optional string os = 3;
33
+ * @generated from protobuf field: optional string os = 3
34
34
  */
35
35
  os?: string;
36
36
  /**
37
37
  * Client OS version.
38
38
  *
39
- * @generated from protobuf field: optional string os_version = 4;
39
+ * @generated from protobuf field: optional string os_version = 4
40
40
  */
41
41
  osVersion?: string;
42
42
  }
@@ -49,7 +49,7 @@ export interface UDPTunnel {
49
49
  /**
50
50
  * Not used.
51
51
  *
52
- * @generated from protobuf field: bytes packet = 1;
52
+ * @generated from protobuf field: required bytes packet = 1
53
53
  */
54
54
  packet: Uint8Array;
55
55
  }
@@ -62,35 +62,35 @@ export interface Authenticate {
62
62
  /**
63
63
  * UTF-8 encoded username.
64
64
  *
65
- * @generated from protobuf field: optional string username = 1;
65
+ * @generated from protobuf field: optional string username = 1
66
66
  */
67
67
  username?: string;
68
68
  /**
69
69
  * Server or user password.
70
70
  *
71
- * @generated from protobuf field: optional string password = 2;
71
+ * @generated from protobuf field: optional string password = 2
72
72
  */
73
73
  password?: string;
74
74
  /**
75
75
  * Additional access tokens for server ACL groups.
76
76
  *
77
- * @generated from protobuf field: repeated string tokens = 3;
77
+ * @generated from protobuf field: repeated string tokens = 3
78
78
  */
79
79
  tokens: string[];
80
80
  /**
81
81
  * A list of CELT bitstream version constants supported by the client.
82
82
  *
83
- * @generated from protobuf field: repeated int32 celt_versions = 4;
83
+ * @generated from protobuf field: repeated int32 celt_versions = 4
84
84
  */
85
85
  celtVersions: number[];
86
86
  /**
87
- * @generated from protobuf field: optional bool opus = 5;
87
+ * @generated from protobuf field: optional bool opus = 5 [default = false]
88
88
  */
89
89
  opus?: boolean;
90
90
  /**
91
91
  * 0 = REGULAR, 1 = BOT
92
92
  *
93
- * @generated from protobuf field: optional int32 client_type = 6;
93
+ * @generated from protobuf field: optional int32 client_type = 6 [default = 0]
94
94
  */
95
95
  clientType?: number;
96
96
  }
@@ -105,67 +105,67 @@ export interface Ping {
105
105
  /**
106
106
  * Client timestamp. Server should not attempt to decode.
107
107
  *
108
- * @generated from protobuf field: optional uint64 timestamp = 1;
108
+ * @generated from protobuf field: optional uint64 timestamp = 1
109
109
  */
110
110
  timestamp?: bigint;
111
111
  /**
112
112
  * The amount of good packets received.
113
113
  *
114
- * @generated from protobuf field: optional uint32 good = 2;
114
+ * @generated from protobuf field: optional uint32 good = 2
115
115
  */
116
116
  good?: number;
117
117
  /**
118
118
  * The amount of late packets received.
119
119
  *
120
- * @generated from protobuf field: optional uint32 late = 3;
120
+ * @generated from protobuf field: optional uint32 late = 3
121
121
  */
122
122
  late?: number;
123
123
  /**
124
124
  * The amount of packets never received.
125
125
  *
126
- * @generated from protobuf field: optional uint32 lost = 4;
126
+ * @generated from protobuf field: optional uint32 lost = 4
127
127
  */
128
128
  lost?: number;
129
129
  /**
130
130
  * The amount of nonce resyncs.
131
131
  *
132
- * @generated from protobuf field: optional uint32 resync = 5;
132
+ * @generated from protobuf field: optional uint32 resync = 5
133
133
  */
134
134
  resync?: number;
135
135
  /**
136
136
  * The total amount of UDP packets received.
137
137
  *
138
- * @generated from protobuf field: optional uint32 udp_packets = 6;
138
+ * @generated from protobuf field: optional uint32 udp_packets = 6
139
139
  */
140
140
  udpPackets?: number;
141
141
  /**
142
142
  * The total amount of TCP packets received.
143
143
  *
144
- * @generated from protobuf field: optional uint32 tcp_packets = 7;
144
+ * @generated from protobuf field: optional uint32 tcp_packets = 7
145
145
  */
146
146
  tcpPackets?: number;
147
147
  /**
148
148
  * UDP ping average.
149
149
  *
150
- * @generated from protobuf field: optional float udp_ping_avg = 8;
150
+ * @generated from protobuf field: optional float udp_ping_avg = 8
151
151
  */
152
152
  udpPingAvg?: number;
153
153
  /**
154
154
  * UDP ping variance.
155
155
  *
156
- * @generated from protobuf field: optional float udp_ping_var = 9;
156
+ * @generated from protobuf field: optional float udp_ping_var = 9
157
157
  */
158
158
  udpPingVar?: number;
159
159
  /**
160
160
  * TCP ping average.
161
161
  *
162
- * @generated from protobuf field: optional float tcp_ping_avg = 10;
162
+ * @generated from protobuf field: optional float tcp_ping_avg = 10
163
163
  */
164
164
  tcpPingAvg?: number;
165
165
  /**
166
166
  * TCP ping variance.
167
167
  *
168
- * @generated from protobuf field: optional float tcp_ping_var = 11;
168
+ * @generated from protobuf field: optional float tcp_ping_var = 11
169
169
  */
170
170
  tcpPingVar?: number;
171
171
  }
@@ -178,13 +178,13 @@ export interface Reject {
178
178
  /**
179
179
  * Rejection type.
180
180
  *
181
- * @generated from protobuf field: optional MumbleProto.Reject.RejectType type = 1;
181
+ * @generated from protobuf field: optional MumbleProto.Reject.RejectType type = 1
182
182
  */
183
183
  type?: Reject_RejectType;
184
184
  /**
185
185
  * Human readable rejection reason.
186
186
  *
187
- * @generated from protobuf field: optional string reason = 2;
187
+ * @generated from protobuf field: optional string reason = 2
188
188
  */
189
189
  reason?: string;
190
190
  }
@@ -258,19 +258,19 @@ export interface ServerSync {
258
258
  /**
259
259
  * The session of the current user.
260
260
  *
261
- * @generated from protobuf field: optional uint32 session = 1;
261
+ * @generated from protobuf field: optional uint32 session = 1
262
262
  */
263
263
  session?: number;
264
264
  /**
265
265
  * Maximum bandwidth that the user should use.
266
266
  *
267
- * @generated from protobuf field: optional uint32 max_bandwidth = 2;
267
+ * @generated from protobuf field: optional uint32 max_bandwidth = 2
268
268
  */
269
269
  maxBandwidth?: number;
270
270
  /**
271
271
  * Server welcome text.
272
272
  *
273
- * @generated from protobuf field: optional string welcome_text = 3;
273
+ * @generated from protobuf field: optional string welcome_text = 3
274
274
  */
275
275
  welcomeText?: string;
276
276
  /**
@@ -279,7 +279,7 @@ export interface ServerSync {
279
279
  * it is uint64 because of an oversight in the past. Nonetheless it should never exceed the uin32 range.
280
280
  * See also: https://github.com/mumble-voip/mumble/issues/5139
281
281
  *
282
- * @generated from protobuf field: optional uint64 permissions = 4;
282
+ * @generated from protobuf field: optional uint64 permissions = 4
283
283
  */
284
284
  permissions?: bigint;
285
285
  }
@@ -291,7 +291,7 @@ export interface ServerSync {
291
291
  */
292
292
  export interface ChannelRemove {
293
293
  /**
294
- * @generated from protobuf field: uint32 channel_id = 1;
294
+ * @generated from protobuf field: required uint32 channel_id = 1
295
295
  */
296
296
  channelId: number;
297
297
  }
@@ -306,63 +306,63 @@ export interface ChannelState {
306
306
  /**
307
307
  * Unique ID for the channel within the server.
308
308
  *
309
- * @generated from protobuf field: optional uint32 channel_id = 1;
309
+ * @generated from protobuf field: optional uint32 channel_id = 1
310
310
  */
311
311
  channelId?: number;
312
312
  /**
313
313
  * channel_id of the parent channel.
314
314
  *
315
- * @generated from protobuf field: optional uint32 parent = 2;
315
+ * @generated from protobuf field: optional uint32 parent = 2
316
316
  */
317
317
  parent?: number;
318
318
  /**
319
319
  * UTF-8 encoded channel name.
320
320
  *
321
- * @generated from protobuf field: optional string name = 3;
321
+ * @generated from protobuf field: optional string name = 3
322
322
  */
323
323
  name?: string;
324
324
  /**
325
325
  * A collection of channel id values of the linked channels. Absent during
326
326
  * the first channel listing.
327
327
  *
328
- * @generated from protobuf field: repeated uint32 links = 4;
328
+ * @generated from protobuf field: repeated uint32 links = 4
329
329
  */
330
330
  links: number[];
331
331
  /**
332
332
  * UTF-8 encoded channel description. Only if the description is less than
333
333
  * 128 bytes
334
334
  *
335
- * @generated from protobuf field: optional string description = 5;
335
+ * @generated from protobuf field: optional string description = 5
336
336
  */
337
337
  description?: string;
338
338
  /**
339
339
  * A collection of channel_id values that should be added to links.
340
340
  *
341
- * @generated from protobuf field: repeated uint32 links_add = 6;
341
+ * @generated from protobuf field: repeated uint32 links_add = 6
342
342
  */
343
343
  linksAdd: number[];
344
344
  /**
345
345
  * A collection of channel_id values that should be removed from links.
346
346
  *
347
- * @generated from protobuf field: repeated uint32 links_remove = 7;
347
+ * @generated from protobuf field: repeated uint32 links_remove = 7
348
348
  */
349
349
  linksRemove: number[];
350
350
  /**
351
351
  * True if the channel is temporary.
352
352
  *
353
- * @generated from protobuf field: optional bool temporary = 8;
353
+ * @generated from protobuf field: optional bool temporary = 8 [default = false]
354
354
  */
355
355
  temporary?: boolean;
356
356
  /**
357
357
  * Position weight to tweak the channel position in the channel list.
358
358
  *
359
- * @generated from protobuf field: optional int32 position = 9;
359
+ * @generated from protobuf field: optional int32 position = 9 [default = 0]
360
360
  */
361
361
  position?: number;
362
362
  /**
363
363
  * SHA1 hash of the description if the description is 128 bytes or more.
364
364
  *
365
- * @generated from protobuf field: optional bytes description_hash = 10;
365
+ * @generated from protobuf field: optional bytes description_hash = 10
366
366
  */
367
367
  descriptionHash?: Uint8Array;
368
368
  /**
@@ -370,19 +370,19 @@ export interface ChannelState {
370
370
  * the maximum number of users allowed in the channel is given by the
371
371
  * server's "usersperchannel" setting.
372
372
  *
373
- * @generated from protobuf field: optional uint32 max_users = 11;
373
+ * @generated from protobuf field: optional uint32 max_users = 11
374
374
  */
375
375
  maxUsers?: number;
376
376
  /**
377
377
  * Whether this channel has enter restrictions (ACL denying ENTER) set
378
378
  *
379
- * @generated from protobuf field: optional bool is_enter_restricted = 12;
379
+ * @generated from protobuf field: optional bool is_enter_restricted = 12
380
380
  */
381
381
  isEnterRestricted?: boolean;
382
382
  /**
383
383
  * Whether the receiver of this msg is considered to be able to enter this channel
384
384
  *
385
- * @generated from protobuf field: optional bool can_enter = 13;
385
+ * @generated from protobuf field: optional bool can_enter = 13
386
386
  */
387
387
  canEnter?: boolean;
388
388
  }
@@ -398,26 +398,26 @@ export interface UserRemove {
398
398
  * The user who is being kicked, identified by their session, not present
399
399
  * when no one is being kicked.
400
400
  *
401
- * @generated from protobuf field: uint32 session = 1;
401
+ * @generated from protobuf field: required uint32 session = 1
402
402
  */
403
403
  session: number;
404
404
  /**
405
405
  * The user who initiated the removal. Either the user who performs the kick
406
406
  * or the user who is currently leaving.
407
407
  *
408
- * @generated from protobuf field: optional uint32 actor = 2;
408
+ * @generated from protobuf field: optional uint32 actor = 2
409
409
  */
410
410
  actor?: number;
411
411
  /**
412
412
  * Reason for the kick, stored as the ban reason if the user is banned.
413
413
  *
414
- * @generated from protobuf field: optional string reason = 3;
414
+ * @generated from protobuf field: optional string reason = 3
415
415
  */
416
416
  reason?: string;
417
417
  /**
418
418
  * True if the kick should result in a ban.
419
419
  *
420
- * @generated from protobuf field: optional bool ban = 4;
420
+ * @generated from protobuf field: optional bool ban = 4
421
421
  */
422
422
  ban?: boolean;
423
423
  }
@@ -433,68 +433,68 @@ export interface UserState {
433
433
  * Unique user session ID of the user whose state this is, may change on
434
434
  * reconnect.
435
435
  *
436
- * @generated from protobuf field: optional uint32 session = 1;
436
+ * @generated from protobuf field: optional uint32 session = 1
437
437
  */
438
438
  session?: number;
439
439
  /**
440
440
  * The session of the user who is updating this user.
441
441
  *
442
- * @generated from protobuf field: optional uint32 actor = 2;
442
+ * @generated from protobuf field: optional uint32 actor = 2
443
443
  */
444
444
  actor?: number;
445
445
  /**
446
446
  * User name, UTF-8 encoded.
447
447
  *
448
- * @generated from protobuf field: optional string name = 3;
448
+ * @generated from protobuf field: optional string name = 3
449
449
  */
450
450
  name?: string;
451
451
  /**
452
452
  * Registered user ID if the user is registered.
453
453
  *
454
- * @generated from protobuf field: optional uint32 user_id = 4;
454
+ * @generated from protobuf field: optional uint32 user_id = 4
455
455
  */
456
456
  userId?: number;
457
457
  /**
458
458
  * Channel on which the user is.
459
459
  *
460
- * @generated from protobuf field: optional uint32 channel_id = 5;
460
+ * @generated from protobuf field: optional uint32 channel_id = 5
461
461
  */
462
462
  channelId?: number;
463
463
  /**
464
464
  * True if the user is muted by admin.
465
465
  *
466
- * @generated from protobuf field: optional bool mute = 6;
466
+ * @generated from protobuf field: optional bool mute = 6
467
467
  */
468
468
  mute?: boolean;
469
469
  /**
470
470
  * True if the user is deafened by admin.
471
471
  *
472
- * @generated from protobuf field: optional bool deaf = 7;
472
+ * @generated from protobuf field: optional bool deaf = 7
473
473
  */
474
474
  deaf?: boolean;
475
475
  /**
476
476
  * True if the user has been suppressed from talking by a reason other than
477
477
  * being muted.
478
478
  *
479
- * @generated from protobuf field: optional bool suppress = 8;
479
+ * @generated from protobuf field: optional bool suppress = 8
480
480
  */
481
481
  suppress?: boolean;
482
482
  /**
483
483
  * True if the user has muted self.
484
484
  *
485
- * @generated from protobuf field: optional bool self_mute = 9;
485
+ * @generated from protobuf field: optional bool self_mute = 9
486
486
  */
487
487
  selfMute?: boolean;
488
488
  /**
489
489
  * True if the user has deafened self.
490
490
  *
491
- * @generated from protobuf field: optional bool self_deaf = 10;
491
+ * @generated from protobuf field: optional bool self_deaf = 10
492
492
  */
493
493
  selfDeaf?: boolean;
494
494
  /**
495
495
  * User image if it is less than 128 bytes.
496
496
  *
497
- * @generated from protobuf field: optional bytes texture = 11;
497
+ * @generated from protobuf field: optional bytes texture = 11
498
498
  */
499
499
  texture?: Uint8Array;
500
500
  /**
@@ -504,74 +504,74 @@ export interface UserState {
504
504
  *
505
505
  * This value is not transmitted to clients.
506
506
  *
507
- * @generated from protobuf field: optional bytes plugin_context = 12;
507
+ * @generated from protobuf field: optional bytes plugin_context = 12
508
508
  */
509
509
  pluginContext?: Uint8Array;
510
510
  /**
511
511
  * The user's plugin-specific identity.
512
512
  * This value is not transmitted to clients.
513
513
  *
514
- * @generated from protobuf field: optional string plugin_identity = 13;
514
+ * @generated from protobuf field: optional string plugin_identity = 13
515
515
  */
516
516
  pluginIdentity?: string;
517
517
  /**
518
518
  * User comment if it is less than 128 bytes.
519
519
  *
520
- * @generated from protobuf field: optional string comment = 14;
520
+ * @generated from protobuf field: optional string comment = 14
521
521
  */
522
522
  comment?: string;
523
523
  /**
524
524
  * The hash of the user certificate.
525
525
  *
526
- * @generated from protobuf field: optional string hash = 15;
526
+ * @generated from protobuf field: optional string hash = 15
527
527
  */
528
528
  hash?: string;
529
529
  /**
530
530
  * SHA1 hash of the user comment if it 128 bytes or more.
531
531
  *
532
- * @generated from protobuf field: optional bytes comment_hash = 16;
532
+ * @generated from protobuf field: optional bytes comment_hash = 16
533
533
  */
534
534
  commentHash?: Uint8Array;
535
535
  /**
536
536
  * SHA1 hash of the user picture if it 128 bytes or more.
537
537
  *
538
- * @generated from protobuf field: optional bytes texture_hash = 17;
538
+ * @generated from protobuf field: optional bytes texture_hash = 17
539
539
  */
540
540
  textureHash?: Uint8Array;
541
541
  /**
542
542
  * True if the user is a priority speaker.
543
543
  *
544
- * @generated from protobuf field: optional bool priority_speaker = 18;
544
+ * @generated from protobuf field: optional bool priority_speaker = 18
545
545
  */
546
546
  prioritySpeaker?: boolean;
547
547
  /**
548
548
  * True if the user is currently recording.
549
549
  *
550
- * @generated from protobuf field: optional bool recording = 19;
550
+ * @generated from protobuf field: optional bool recording = 19
551
551
  */
552
552
  recording?: boolean;
553
553
  /**
554
554
  * A list of temporary access tokens to be respected when processing this request.
555
555
  *
556
- * @generated from protobuf field: repeated string temporary_access_tokens = 20;
556
+ * @generated from protobuf field: repeated string temporary_access_tokens = 20
557
557
  */
558
558
  temporaryAccessTokens: string[];
559
559
  /**
560
560
  * A list of channels the user wants to start listening to.
561
561
  *
562
- * @generated from protobuf field: repeated uint32 listening_channel_add = 21;
562
+ * @generated from protobuf field: repeated uint32 listening_channel_add = 21
563
563
  */
564
564
  listeningChannelAdd: number[];
565
565
  /**
566
566
  * a list of channels the user does no longer want to listen to.
567
567
  *
568
- * @generated from protobuf field: repeated uint32 listening_channel_remove = 22;
568
+ * @generated from protobuf field: repeated uint32 listening_channel_remove = 22
569
569
  */
570
570
  listeningChannelRemove: number[];
571
571
  /**
572
572
  * A list of volume adjustments the user has applied to listeners
573
573
  *
574
- * @generated from protobuf field: repeated MumbleProto.UserState.VolumeAdjustment listening_volume_adjustment = 23;
574
+ * @generated from protobuf field: repeated MumbleProto.UserState.VolumeAdjustment listening_volume_adjustment = 23
575
575
  */
576
576
  listeningVolumeAdjustment: UserState_VolumeAdjustment[];
577
577
  }
@@ -580,11 +580,11 @@ export interface UserState {
580
580
  */
581
581
  export interface UserState_VolumeAdjustment {
582
582
  /**
583
- * @generated from protobuf field: optional uint32 listening_channel = 1;
583
+ * @generated from protobuf field: optional uint32 listening_channel = 1
584
584
  */
585
585
  listeningChannel?: number;
586
586
  /**
587
- * @generated from protobuf field: optional float volume_adjustment = 2;
587
+ * @generated from protobuf field: optional float volume_adjustment = 2
588
588
  */
589
589
  volumeAdjustment?: number;
590
590
  }
@@ -599,14 +599,14 @@ export interface BanList {
599
599
  /**
600
600
  * List of ban entries currently in place.
601
601
  *
602
- * @generated from protobuf field: repeated MumbleProto.BanList.BanEntry bans = 1;
602
+ * @generated from protobuf field: repeated MumbleProto.BanList.BanEntry bans = 1
603
603
  */
604
604
  bans: BanList_BanEntry[];
605
605
  /**
606
606
  * True if the server should return the list, false if it should replace old
607
607
  * ban list with the one provided.
608
608
  *
609
- * @generated from protobuf field: optional bool query = 2;
609
+ * @generated from protobuf field: optional bool query = 2 [default = false]
610
610
  */
611
611
  query?: boolean;
612
612
  }
@@ -617,43 +617,43 @@ export interface BanList_BanEntry {
617
617
  /**
618
618
  * Banned IP address.
619
619
  *
620
- * @generated from protobuf field: bytes address = 1;
620
+ * @generated from protobuf field: required bytes address = 1
621
621
  */
622
622
  address: Uint8Array;
623
623
  /**
624
624
  * The length of the subnet mask for the ban.
625
625
  *
626
- * @generated from protobuf field: uint32 mask = 2;
626
+ * @generated from protobuf field: required uint32 mask = 2
627
627
  */
628
628
  mask: number;
629
629
  /**
630
630
  * User name for identification purposes (does not affect the ban).
631
631
  *
632
- * @generated from protobuf field: optional string name = 3;
632
+ * @generated from protobuf field: optional string name = 3
633
633
  */
634
634
  name?: string;
635
635
  /**
636
636
  * The certificate hash of the banned user.
637
637
  *
638
- * @generated from protobuf field: optional string hash = 4;
638
+ * @generated from protobuf field: optional string hash = 4
639
639
  */
640
640
  hash?: string;
641
641
  /**
642
642
  * Reason for the ban (does not affect the ban).
643
643
  *
644
- * @generated from protobuf field: optional string reason = 5;
644
+ * @generated from protobuf field: optional string reason = 5
645
645
  */
646
646
  reason?: string;
647
647
  /**
648
648
  * Ban start time.
649
649
  *
650
- * @generated from protobuf field: optional string start = 6;
650
+ * @generated from protobuf field: optional string start = 6
651
651
  */
652
652
  start?: string;
653
653
  /**
654
654
  * Ban duration in seconds.
655
655
  *
656
- * @generated from protobuf field: optional uint32 duration = 7;
656
+ * @generated from protobuf field: optional uint32 duration = 7
657
657
  */
658
658
  duration?: number;
659
659
  }
@@ -666,33 +666,33 @@ export interface TextMessage {
666
666
  /**
667
667
  * The message sender, identified by its session.
668
668
  *
669
- * @generated from protobuf field: optional uint32 actor = 1;
669
+ * @generated from protobuf field: optional uint32 actor = 1
670
670
  */
671
671
  actor?: number;
672
672
  /**
673
673
  * Target users for the message, identified by their session.
674
674
  *
675
- * @generated from protobuf field: repeated uint32 session = 2;
675
+ * @generated from protobuf field: repeated uint32 session = 2
676
676
  */
677
677
  session: number[];
678
678
  /**
679
679
  * The channels to which the message is sent, identified by their
680
680
  * channel_ids.
681
681
  *
682
- * @generated from protobuf field: repeated uint32 channel_id = 3;
682
+ * @generated from protobuf field: repeated uint32 channel_id = 3
683
683
  */
684
684
  channelId: number[];
685
685
  /**
686
686
  * The root channels when sending message recursively to several channels,
687
687
  * identified by their channel_ids.
688
688
  *
689
- * @generated from protobuf field: repeated uint32 tree_id = 4;
689
+ * @generated from protobuf field: repeated uint32 tree_id = 4
690
690
  */
691
691
  treeId: number[];
692
692
  /**
693
693
  * The UTF-8 encoded message. May be HTML if the server allows.
694
694
  *
695
- * @generated from protobuf field: string message = 5;
695
+ * @generated from protobuf field: required string message = 5
696
696
  */
697
697
  message: string;
698
698
  }
@@ -703,38 +703,38 @@ export interface PermissionDenied {
703
703
  /**
704
704
  * The denied permission when type is Permission.
705
705
  *
706
- * @generated from protobuf field: optional uint32 permission = 1;
706
+ * @generated from protobuf field: optional uint32 permission = 1
707
707
  */
708
708
  permission?: number;
709
709
  /**
710
710
  * channel_id for the channel where the permission was denied when type is
711
711
  * Permission.
712
712
  *
713
- * @generated from protobuf field: optional uint32 channel_id = 2;
713
+ * @generated from protobuf field: optional uint32 channel_id = 2
714
714
  */
715
715
  channelId?: number;
716
716
  /**
717
717
  * The user who was denied permissions, identified by session.
718
718
  *
719
- * @generated from protobuf field: optional uint32 session = 3;
719
+ * @generated from protobuf field: optional uint32 session = 3
720
720
  */
721
721
  session?: number;
722
722
  /**
723
723
  * Textual reason for the denial.
724
724
  *
725
- * @generated from protobuf field: optional string reason = 4;
725
+ * @generated from protobuf field: optional string reason = 4
726
726
  */
727
727
  reason?: string;
728
728
  /**
729
729
  * Type of the denial.
730
730
  *
731
- * @generated from protobuf field: optional MumbleProto.PermissionDenied.DenyType type = 5;
731
+ * @generated from protobuf field: optional MumbleProto.PermissionDenied.DenyType type = 5
732
732
  */
733
733
  type?: PermissionDenied_DenyType;
734
734
  /**
735
735
  * The name that is invalid when type is UserName.
736
736
  *
737
- * @generated from protobuf field: optional string name = 6;
737
+ * @generated from protobuf field: optional string name = 6
738
738
  */
739
739
  name?: string;
740
740
  }
@@ -834,31 +834,31 @@ export interface ACL {
834
834
  /**
835
835
  * Channel ID of the channel this message affects.
836
836
  *
837
- * @generated from protobuf field: uint32 channel_id = 1;
837
+ * @generated from protobuf field: required uint32 channel_id = 1
838
838
  */
839
839
  channelId: number;
840
840
  /**
841
841
  * True if the channel inherits its parent's ACLs.
842
842
  *
843
- * @generated from protobuf field: optional bool inherit_acls = 2;
843
+ * @generated from protobuf field: optional bool inherit_acls = 2 [default = true]
844
844
  */
845
845
  inheritAcls?: boolean;
846
846
  /**
847
847
  * User group specifications.
848
848
  *
849
- * @generated from protobuf field: repeated MumbleProto.ACL.ChanGroup groups = 3;
849
+ * @generated from protobuf field: repeated MumbleProto.ACL.ChanGroup groups = 3
850
850
  */
851
851
  groups: ACL_ChanGroup[];
852
852
  /**
853
853
  * ACL specifications.
854
854
  *
855
- * @generated from protobuf field: repeated MumbleProto.ACL.ChanACL acls = 4;
855
+ * @generated from protobuf field: repeated MumbleProto.ACL.ChanACL acls = 4
856
856
  */
857
857
  acls: ACL_ChanACL[];
858
858
  /**
859
859
  * True if the message is a query for ACLs instead of setting them.
860
860
  *
861
- * @generated from protobuf field: optional bool query = 5;
861
+ * @generated from protobuf field: optional bool query = 5 [default = false]
862
862
  */
863
863
  query?: boolean;
864
864
  }
@@ -869,44 +869,44 @@ export interface ACL_ChanGroup {
869
869
  /**
870
870
  * Name of the channel group, UTF-8 encoded.
871
871
  *
872
- * @generated from protobuf field: string name = 1;
872
+ * @generated from protobuf field: required string name = 1
873
873
  */
874
874
  name: string;
875
875
  /**
876
876
  * True if the group has been inherited from the parent (Read only).
877
877
  *
878
- * @generated from protobuf field: optional bool inherited = 2;
878
+ * @generated from protobuf field: optional bool inherited = 2 [default = true]
879
879
  */
880
880
  inherited?: boolean;
881
881
  /**
882
882
  * True if the group members are inherited.
883
883
  *
884
- * @generated from protobuf field: optional bool inherit = 3;
884
+ * @generated from protobuf field: optional bool inherit = 3 [default = true]
885
885
  */
886
886
  inherit?: boolean;
887
887
  /**
888
888
  * True if the group can be inherited by sub channels.
889
889
  *
890
- * @generated from protobuf field: optional bool inheritable = 4;
890
+ * @generated from protobuf field: optional bool inheritable = 4 [default = true]
891
891
  */
892
892
  inheritable?: boolean;
893
893
  /**
894
894
  * Users explicitly included in this group, identified by user_id.
895
895
  *
896
- * @generated from protobuf field: repeated uint32 add = 5;
896
+ * @generated from protobuf field: repeated uint32 add = 5
897
897
  */
898
898
  add: number[];
899
899
  /**
900
900
  * Users explicitly removed from this group in this channel if the group
901
901
  * has been inherited, identified by user_id.
902
902
  *
903
- * @generated from protobuf field: repeated uint32 remove = 6;
903
+ * @generated from protobuf field: repeated uint32 remove = 6
904
904
  */
905
905
  remove: number[];
906
906
  /**
907
907
  * Users inherited, identified by user_id.
908
908
  *
909
- * @generated from protobuf field: repeated uint32 inherited_members = 7;
909
+ * @generated from protobuf field: repeated uint32 inherited_members = 7
910
910
  */
911
911
  inheritedMembers: number[];
912
912
  }
@@ -917,43 +917,43 @@ export interface ACL_ChanACL {
917
917
  /**
918
918
  * True if this ACL applies to the current channel.
919
919
  *
920
- * @generated from protobuf field: optional bool apply_here = 1;
920
+ * @generated from protobuf field: optional bool apply_here = 1 [default = true]
921
921
  */
922
922
  applyHere?: boolean;
923
923
  /**
924
924
  * True if this ACL applies to the sub channels.
925
925
  *
926
- * @generated from protobuf field: optional bool apply_subs = 2;
926
+ * @generated from protobuf field: optional bool apply_subs = 2 [default = true]
927
927
  */
928
928
  applySubs?: boolean;
929
929
  /**
930
930
  * True if the ACL has been inherited from the parent.
931
931
  *
932
- * @generated from protobuf field: optional bool inherited = 3;
932
+ * @generated from protobuf field: optional bool inherited = 3 [default = true]
933
933
  */
934
934
  inherited?: boolean;
935
935
  /**
936
936
  * ID of the user that is affected by this ACL.
937
937
  *
938
- * @generated from protobuf field: optional uint32 user_id = 4;
938
+ * @generated from protobuf field: optional uint32 user_id = 4
939
939
  */
940
940
  userId?: number;
941
941
  /**
942
942
  * ID of the group that is affected by this ACL.
943
943
  *
944
- * @generated from protobuf field: optional string group = 5;
944
+ * @generated from protobuf field: optional string group = 5
945
945
  */
946
946
  group?: string;
947
947
  /**
948
948
  * Bit flag field of the permissions granted by this ACL.
949
949
  *
950
- * @generated from protobuf field: optional uint32 grant = 6;
950
+ * @generated from protobuf field: optional uint32 grant = 6
951
951
  */
952
952
  grant?: number;
953
953
  /**
954
954
  * Bit flag field of the permissions denied by this ACL.
955
955
  *
956
- * @generated from protobuf field: optional uint32 deny = 7;
956
+ * @generated from protobuf field: optional uint32 deny = 7
957
957
  */
958
958
  deny?: number;
959
959
  }
@@ -968,13 +968,13 @@ export interface QueryUsers {
968
968
  /**
969
969
  * user_ids.
970
970
  *
971
- * @generated from protobuf field: repeated uint32 ids = 1;
971
+ * @generated from protobuf field: repeated uint32 ids = 1
972
972
  */
973
973
  ids: number[];
974
974
  /**
975
975
  * User names in the same order as ids.
976
976
  *
977
- * @generated from protobuf field: repeated string names = 2;
977
+ * @generated from protobuf field: repeated string names = 2
978
978
  */
979
979
  names: string[];
980
980
  }
@@ -990,19 +990,19 @@ export interface CryptSetup {
990
990
  /**
991
991
  * Encryption key.
992
992
  *
993
- * @generated from protobuf field: optional bytes key = 1;
993
+ * @generated from protobuf field: optional bytes key = 1
994
994
  */
995
995
  key?: Uint8Array;
996
996
  /**
997
997
  * Client nonce.
998
998
  *
999
- * @generated from protobuf field: optional bytes client_nonce = 2;
999
+ * @generated from protobuf field: optional bytes client_nonce = 2
1000
1000
  */
1001
1001
  clientNonce?: Uint8Array;
1002
1002
  /**
1003
1003
  * Server nonce.
1004
1004
  *
1005
- * @generated from protobuf field: optional bytes server_nonce = 3;
1005
+ * @generated from protobuf field: optional bytes server_nonce = 3
1006
1006
  */
1007
1007
  serverNonce?: Uint8Array;
1008
1008
  }
@@ -1015,20 +1015,20 @@ export interface ContextActionModify {
1015
1015
  /**
1016
1016
  * The action identifier. Used later to initiate an action.
1017
1017
  *
1018
- * @generated from protobuf field: string action = 1;
1018
+ * @generated from protobuf field: required string action = 1
1019
1019
  */
1020
1020
  action: string;
1021
1021
  /**
1022
1022
  * The display name of the action.
1023
1023
  *
1024
- * @generated from protobuf field: optional string text = 2;
1024
+ * @generated from protobuf field: optional string text = 2
1025
1025
  */
1026
1026
  text?: string;
1027
1027
  /**
1028
1028
  * Context bit flags defining where the action should be displayed.
1029
1029
  * Flags can be OR-ed to combine different types.
1030
1030
  *
1031
- * @generated from protobuf field: optional uint32 context = 3;
1031
+ * @generated from protobuf field: optional uint32 context = 3
1032
1032
  */
1033
1033
  context?: number;
1034
1034
  /**
@@ -1037,7 +1037,7 @@ export interface ContextActionModify {
1037
1037
  * The message will be recognized as Add regardless of this field
1038
1038
  * before said release.
1039
1039
  *
1040
- * @generated from protobuf field: optional MumbleProto.ContextActionModify.Operation operation = 4;
1040
+ * @generated from protobuf field: optional MumbleProto.ContextActionModify.Operation operation = 4
1041
1041
  */
1042
1042
  operation?: ContextActionModify_Operation;
1043
1043
  }
@@ -1090,19 +1090,19 @@ export interface ContextAction {
1090
1090
  /**
1091
1091
  * The target User for the action, identified by session.
1092
1092
  *
1093
- * @generated from protobuf field: optional uint32 session = 1;
1093
+ * @generated from protobuf field: optional uint32 session = 1
1094
1094
  */
1095
1095
  session?: number;
1096
1096
  /**
1097
1097
  * The target Channel for the action, identified by channel_id.
1098
1098
  *
1099
- * @generated from protobuf field: optional uint32 channel_id = 2;
1099
+ * @generated from protobuf field: optional uint32 channel_id = 2
1100
1100
  */
1101
1101
  channelId?: number;
1102
1102
  /**
1103
1103
  * The action that should be executed.
1104
1104
  *
1105
- * @generated from protobuf field: string action = 3;
1105
+ * @generated from protobuf field: required string action = 3
1106
1106
  */
1107
1107
  action: string;
1108
1108
  }
@@ -1115,7 +1115,7 @@ export interface UserList {
1115
1115
  /**
1116
1116
  * A list of registered users.
1117
1117
  *
1118
- * @generated from protobuf field: repeated MumbleProto.UserList.User users = 1;
1118
+ * @generated from protobuf field: repeated MumbleProto.UserList.User users = 1
1119
1119
  */
1120
1120
  users: UserList_User[];
1121
1121
  }
@@ -1126,21 +1126,21 @@ export interface UserList_User {
1126
1126
  /**
1127
1127
  * Registered user ID.
1128
1128
  *
1129
- * @generated from protobuf field: uint32 user_id = 1;
1129
+ * @generated from protobuf field: required uint32 user_id = 1
1130
1130
  */
1131
1131
  userId: number;
1132
1132
  /**
1133
1133
  * Registered user name.
1134
1134
  *
1135
- * @generated from protobuf field: optional string name = 2;
1135
+ * @generated from protobuf field: optional string name = 2
1136
1136
  */
1137
1137
  name?: string;
1138
1138
  /**
1139
- * @generated from protobuf field: optional string last_seen = 3;
1139
+ * @generated from protobuf field: optional string last_seen = 3
1140
1140
  */
1141
1141
  lastSeen?: string;
1142
1142
  /**
1143
- * @generated from protobuf field: optional uint32 last_channel = 4;
1143
+ * @generated from protobuf field: optional uint32 last_channel = 4
1144
1144
  */
1145
1145
  lastChannel?: number;
1146
1146
  }
@@ -1156,13 +1156,13 @@ export interface VoiceTarget {
1156
1156
  /**
1157
1157
  * Voice target ID.
1158
1158
  *
1159
- * @generated from protobuf field: optional uint32 id = 1;
1159
+ * @generated from protobuf field: optional uint32 id = 1
1160
1160
  */
1161
1161
  id?: number;
1162
1162
  /**
1163
1163
  * The receivers that this voice target includes.
1164
1164
  *
1165
- * @generated from protobuf field: repeated MumbleProto.VoiceTarget.Target targets = 2;
1165
+ * @generated from protobuf field: repeated MumbleProto.VoiceTarget.Target targets = 2
1166
1166
  */
1167
1167
  targets: VoiceTarget_Target[];
1168
1168
  }
@@ -1173,32 +1173,32 @@ export interface VoiceTarget_Target {
1173
1173
  /**
1174
1174
  * Users that are included as targets.
1175
1175
  *
1176
- * @generated from protobuf field: repeated uint32 session = 1;
1176
+ * @generated from protobuf field: repeated uint32 session = 1
1177
1177
  */
1178
1178
  session: number[];
1179
1179
  /**
1180
1180
  * Channel that is included as a target.
1181
1181
  *
1182
- * @generated from protobuf field: optional uint32 channel_id = 2;
1182
+ * @generated from protobuf field: optional uint32 channel_id = 2
1183
1183
  */
1184
1184
  channelId?: number;
1185
1185
  /**
1186
1186
  * ACL group that is included as a target.
1187
1187
  *
1188
- * @generated from protobuf field: optional string group = 3;
1188
+ * @generated from protobuf field: optional string group = 3
1189
1189
  */
1190
1190
  group?: string;
1191
1191
  /**
1192
1192
  * True if the voice should follow links from the specified channel.
1193
1193
  *
1194
- * @generated from protobuf field: optional bool links = 4;
1194
+ * @generated from protobuf field: optional bool links = 4 [default = false]
1195
1195
  */
1196
1196
  links?: boolean;
1197
1197
  /**
1198
1198
  * True if the voice should also be sent to children of the specific
1199
1199
  * channel.
1200
1200
  *
1201
- * @generated from protobuf field: optional bool children = 5;
1201
+ * @generated from protobuf field: optional bool children = 5 [default = false]
1202
1202
  */
1203
1203
  children?: boolean;
1204
1204
  }
@@ -1213,20 +1213,20 @@ export interface PermissionQuery {
1213
1213
  /**
1214
1214
  * channel_id of the channel for which the permissions are queried.
1215
1215
  *
1216
- * @generated from protobuf field: optional uint32 channel_id = 1;
1216
+ * @generated from protobuf field: optional uint32 channel_id = 1
1217
1217
  */
1218
1218
  channelId?: number;
1219
1219
  /**
1220
1220
  * Channel permissions.
1221
1221
  *
1222
- * @generated from protobuf field: optional uint32 permissions = 2;
1222
+ * @generated from protobuf field: optional uint32 permissions = 2
1223
1223
  */
1224
1224
  permissions?: number;
1225
1225
  /**
1226
1226
  * True if the client should drop its current permission information for all
1227
1227
  * channels.
1228
1228
  *
1229
- * @generated from protobuf field: optional bool flush = 3;
1229
+ * @generated from protobuf field: optional bool flush = 3 [default = false]
1230
1230
  */
1231
1231
  flush?: boolean;
1232
1232
  }
@@ -1240,23 +1240,23 @@ export interface CodecVersion {
1240
1240
  /**
1241
1241
  * The version of the CELT Alpha codec.
1242
1242
  *
1243
- * @generated from protobuf field: int32 alpha = 1;
1243
+ * @generated from protobuf field: required int32 alpha = 1
1244
1244
  */
1245
1245
  alpha: number;
1246
1246
  /**
1247
1247
  * The version of the CELT Beta codec.
1248
1248
  *
1249
- * @generated from protobuf field: int32 beta = 2;
1249
+ * @generated from protobuf field: required int32 beta = 2
1250
1250
  */
1251
1251
  beta: number;
1252
1252
  /**
1253
1253
  * True if the user should prefer Alpha over Beta.
1254
1254
  *
1255
- * @generated from protobuf field: bool prefer_alpha = 3;
1255
+ * @generated from protobuf field: required bool prefer_alpha = 3 [default = true]
1256
1256
  */
1257
1257
  preferAlpha: boolean;
1258
1258
  /**
1259
- * @generated from protobuf field: optional bool opus = 4;
1259
+ * @generated from protobuf field: optional bool opus = 4 [default = false]
1260
1260
  */
1261
1261
  opus?: boolean;
1262
1262
  }
@@ -1269,114 +1269,114 @@ export interface UserStats {
1269
1269
  /**
1270
1270
  * User whose stats these are.
1271
1271
  *
1272
- * @generated from protobuf field: optional uint32 session = 1;
1272
+ * @generated from protobuf field: optional uint32 session = 1
1273
1273
  */
1274
1274
  session?: number;
1275
1275
  /**
1276
1276
  * True if the message contains only mutable stats (packets, ping).
1277
1277
  *
1278
- * @generated from protobuf field: optional bool stats_only = 2;
1278
+ * @generated from protobuf field: optional bool stats_only = 2 [default = false]
1279
1279
  */
1280
1280
  statsOnly?: boolean;
1281
1281
  /**
1282
1282
  * Full user certificate chain of the user certificate in DER format.
1283
1283
  *
1284
- * @generated from protobuf field: repeated bytes certificates = 3;
1284
+ * @generated from protobuf field: repeated bytes certificates = 3
1285
1285
  */
1286
1286
  certificates: Uint8Array[];
1287
1287
  /**
1288
1288
  * Packet statistics for packets received from the client.
1289
1289
  *
1290
- * @generated from protobuf field: optional MumbleProto.UserStats.Stats from_client = 4;
1290
+ * @generated from protobuf field: optional MumbleProto.UserStats.Stats from_client = 4
1291
1291
  */
1292
1292
  fromClient?: UserStats_Stats;
1293
1293
  /**
1294
1294
  * Packet statistics for packets sent by the server.
1295
1295
  *
1296
- * @generated from protobuf field: optional MumbleProto.UserStats.Stats from_server = 5;
1296
+ * @generated from protobuf field: optional MumbleProto.UserStats.Stats from_server = 5
1297
1297
  */
1298
1298
  fromServer?: UserStats_Stats;
1299
1299
  /**
1300
1300
  * Amount of UDP packets sent.
1301
1301
  *
1302
- * @generated from protobuf field: optional uint32 udp_packets = 6;
1302
+ * @generated from protobuf field: optional uint32 udp_packets = 6
1303
1303
  */
1304
1304
  udpPackets?: number;
1305
1305
  /**
1306
1306
  * Amount of TCP packets sent.
1307
1307
  *
1308
- * @generated from protobuf field: optional uint32 tcp_packets = 7;
1308
+ * @generated from protobuf field: optional uint32 tcp_packets = 7
1309
1309
  */
1310
1310
  tcpPackets?: number;
1311
1311
  /**
1312
1312
  * UDP ping average.
1313
1313
  *
1314
- * @generated from protobuf field: optional float udp_ping_avg = 8;
1314
+ * @generated from protobuf field: optional float udp_ping_avg = 8
1315
1315
  */
1316
1316
  udpPingAvg?: number;
1317
1317
  /**
1318
1318
  * UDP ping variance.
1319
1319
  *
1320
- * @generated from protobuf field: optional float udp_ping_var = 9;
1320
+ * @generated from protobuf field: optional float udp_ping_var = 9
1321
1321
  */
1322
1322
  udpPingVar?: number;
1323
1323
  /**
1324
1324
  * TCP ping average.
1325
1325
  *
1326
- * @generated from protobuf field: optional float tcp_ping_avg = 10;
1326
+ * @generated from protobuf field: optional float tcp_ping_avg = 10
1327
1327
  */
1328
1328
  tcpPingAvg?: number;
1329
1329
  /**
1330
1330
  * TCP ping variance.
1331
1331
  *
1332
- * @generated from protobuf field: optional float tcp_ping_var = 11;
1332
+ * @generated from protobuf field: optional float tcp_ping_var = 11
1333
1333
  */
1334
1334
  tcpPingVar?: number;
1335
1335
  /**
1336
1336
  * Client version.
1337
1337
  *
1338
- * @generated from protobuf field: optional MumbleProto.Version version = 12;
1338
+ * @generated from protobuf field: optional MumbleProto.Version version = 12
1339
1339
  */
1340
1340
  version?: Version;
1341
1341
  /**
1342
1342
  * A list of CELT bitstream version constants supported by the client of this
1343
1343
  * user.
1344
1344
  *
1345
- * @generated from protobuf field: repeated int32 celt_versions = 13;
1345
+ * @generated from protobuf field: repeated int32 celt_versions = 13
1346
1346
  */
1347
1347
  celtVersions: number[];
1348
1348
  /**
1349
1349
  * Client IP address.
1350
1350
  *
1351
- * @generated from protobuf field: optional bytes address = 14;
1351
+ * @generated from protobuf field: optional bytes address = 14
1352
1352
  */
1353
1353
  address?: Uint8Array;
1354
1354
  /**
1355
1355
  * Bandwidth used by this client.
1356
1356
  *
1357
- * @generated from protobuf field: optional uint32 bandwidth = 15;
1357
+ * @generated from protobuf field: optional uint32 bandwidth = 15
1358
1358
  */
1359
1359
  bandwidth?: number;
1360
1360
  /**
1361
1361
  * Connection duration.
1362
1362
  *
1363
- * @generated from protobuf field: optional uint32 onlinesecs = 16;
1363
+ * @generated from protobuf field: optional uint32 onlinesecs = 16
1364
1364
  */
1365
1365
  onlinesecs?: number;
1366
1366
  /**
1367
1367
  * Duration since last activity.
1368
1368
  *
1369
- * @generated from protobuf field: optional uint32 idlesecs = 17;
1369
+ * @generated from protobuf field: optional uint32 idlesecs = 17
1370
1370
  */
1371
1371
  idlesecs?: number;
1372
1372
  /**
1373
1373
  * True if the user has a strong certificate.
1374
1374
  *
1375
- * @generated from protobuf field: optional bool strong_certificate = 18;
1375
+ * @generated from protobuf field: optional bool strong_certificate = 18 [default = false]
1376
1376
  */
1377
1377
  strongCertificate?: boolean;
1378
1378
  /**
1379
- * @generated from protobuf field: optional bool opus = 19;
1379
+ * @generated from protobuf field: optional bool opus = 19 [default = false]
1380
1380
  */
1381
1381
  opus?: boolean;
1382
1382
  }
@@ -1387,25 +1387,25 @@ export interface UserStats_Stats {
1387
1387
  /**
1388
1388
  * The amount of good packets received.
1389
1389
  *
1390
- * @generated from protobuf field: optional uint32 good = 1;
1390
+ * @generated from protobuf field: optional uint32 good = 1
1391
1391
  */
1392
1392
  good?: number;
1393
1393
  /**
1394
1394
  * The amount of late packets received.
1395
1395
  *
1396
- * @generated from protobuf field: optional uint32 late = 2;
1396
+ * @generated from protobuf field: optional uint32 late = 2
1397
1397
  */
1398
1398
  late?: number;
1399
1399
  /**
1400
1400
  * The amount of packets never received.
1401
1401
  *
1402
- * @generated from protobuf field: optional uint32 lost = 3;
1402
+ * @generated from protobuf field: optional uint32 lost = 3
1403
1403
  */
1404
1404
  lost?: number;
1405
1405
  /**
1406
1406
  * The amount of nonce resyncs.
1407
1407
  *
1408
- * @generated from protobuf field: optional uint32 resync = 4;
1408
+ * @generated from protobuf field: optional uint32 resync = 4
1409
1409
  */
1410
1410
  resync?: number;
1411
1411
  }
@@ -1425,19 +1425,19 @@ export interface RequestBlob {
1425
1425
  /**
1426
1426
  * sessions of the requested UserState textures.
1427
1427
  *
1428
- * @generated from protobuf field: repeated uint32 session_texture = 1;
1428
+ * @generated from protobuf field: repeated uint32 session_texture = 1
1429
1429
  */
1430
1430
  sessionTexture: number[];
1431
1431
  /**
1432
1432
  * sessions of the requested UserState comments.
1433
1433
  *
1434
- * @generated from protobuf field: repeated uint32 session_comment = 2;
1434
+ * @generated from protobuf field: repeated uint32 session_comment = 2
1435
1435
  */
1436
1436
  sessionComment: number[];
1437
1437
  /**
1438
1438
  * channel_ids of the requested ChannelState descriptions.
1439
1439
  *
1440
- * @generated from protobuf field: repeated uint32 channel_description = 3;
1440
+ * @generated from protobuf field: repeated uint32 channel_description = 3
1441
1441
  */
1442
1442
  channelDescription: number[];
1443
1443
  }
@@ -1451,43 +1451,43 @@ export interface ServerConfig {
1451
1451
  /**
1452
1452
  * The maximum bandwidth the clients should use.
1453
1453
  *
1454
- * @generated from protobuf field: optional uint32 max_bandwidth = 1;
1454
+ * @generated from protobuf field: optional uint32 max_bandwidth = 1
1455
1455
  */
1456
1456
  maxBandwidth?: number;
1457
1457
  /**
1458
1458
  * Server welcome text.
1459
1459
  *
1460
- * @generated from protobuf field: optional string welcome_text = 2;
1460
+ * @generated from protobuf field: optional string welcome_text = 2
1461
1461
  */
1462
1462
  welcomeText?: string;
1463
1463
  /**
1464
1464
  * True if the server allows HTML.
1465
1465
  *
1466
- * @generated from protobuf field: optional bool allow_html = 3;
1466
+ * @generated from protobuf field: optional bool allow_html = 3
1467
1467
  */
1468
1468
  allowHtml?: boolean;
1469
1469
  /**
1470
1470
  * Maximum text message length.
1471
1471
  *
1472
- * @generated from protobuf field: optional uint32 message_length = 4;
1472
+ * @generated from protobuf field: optional uint32 message_length = 4
1473
1473
  */
1474
1474
  messageLength?: number;
1475
1475
  /**
1476
1476
  * Maximum image message length.
1477
1477
  *
1478
- * @generated from protobuf field: optional uint32 image_message_length = 5;
1478
+ * @generated from protobuf field: optional uint32 image_message_length = 5
1479
1479
  */
1480
1480
  imageMessageLength?: number;
1481
1481
  /**
1482
1482
  * The maximum number of users allowed on the server.
1483
1483
  *
1484
- * @generated from protobuf field: optional uint32 max_users = 6;
1484
+ * @generated from protobuf field: optional uint32 max_users = 6
1485
1485
  */
1486
1486
  maxUsers?: number;
1487
1487
  /**
1488
1488
  * Whether using Mumble's recording feature is allowed on the server
1489
1489
  *
1490
- * @generated from protobuf field: optional bool recording_allowed = 7;
1490
+ * @generated from protobuf field: optional bool recording_allowed = 7
1491
1491
  */
1492
1492
  recordingAllowed?: boolean;
1493
1493
  }
@@ -1501,27 +1501,27 @@ export interface SuggestConfig {
1501
1501
  /**
1502
1502
  * Suggested client version in the legacy format.
1503
1503
  *
1504
- * @generated from protobuf field: optional uint32 version_v1 = 1;
1504
+ * @generated from protobuf field: optional uint32 version_v1 = 1
1505
1505
  */
1506
1506
  versionV1?: number;
1507
1507
  /**
1508
1508
  * Suggested client version in the new format.
1509
1509
  * Necessary since patch level may exceed 255. (See https://github.com/mumble-voip/mumble/issues/5827)
1510
1510
  *
1511
- * @generated from protobuf field: optional uint64 version_v2 = 4;
1511
+ * @generated from protobuf field: optional uint64 version_v2 = 4
1512
1512
  */
1513
1513
  versionV2?: bigint;
1514
1514
  /**
1515
1515
  * True if the administrator suggests positional audio to be used on this
1516
1516
  * server.
1517
1517
  *
1518
- * @generated from protobuf field: optional bool positional = 2;
1518
+ * @generated from protobuf field: optional bool positional = 2
1519
1519
  */
1520
1520
  positional?: boolean;
1521
1521
  /**
1522
1522
  * True if the administrator suggests push to talk to be used on this server.
1523
1523
  *
1524
- * @generated from protobuf field: optional bool push_to_talk = 3;
1524
+ * @generated from protobuf field: optional bool push_to_talk = 3
1525
1525
  */
1526
1526
  pushToTalk?: boolean;
1527
1527
  }
@@ -1534,26 +1534,26 @@ export interface PluginDataTransmission {
1534
1534
  /**
1535
1535
  * The session ID of the client this message was sent from
1536
1536
  *
1537
- * @generated from protobuf field: optional uint32 senderSession = 1;
1537
+ * @generated from protobuf field: optional uint32 senderSession = 1
1538
1538
  */
1539
1539
  senderSession?: number;
1540
1540
  /**
1541
1541
  * The session IDs of the clients that should receive this message
1542
1542
  *
1543
- * @generated from protobuf field: repeated uint32 receiverSessions = 2 [packed = true];
1543
+ * @generated from protobuf field: repeated uint32 receiverSessions = 2 [packed = true]
1544
1544
  */
1545
1545
  receiverSessions: number[];
1546
1546
  /**
1547
1547
  * The data that is sent
1548
1548
  *
1549
- * @generated from protobuf field: optional bytes data = 3;
1549
+ * @generated from protobuf field: optional bytes data = 3
1550
1550
  */
1551
1551
  data?: Uint8Array;
1552
1552
  /**
1553
1553
  * The ID of the sent data. This will be used by plugins to check whether they will
1554
1554
  * process it or not
1555
1555
  *
1556
- * @generated from protobuf field: optional string dataID = 4;
1556
+ * @generated from protobuf field: optional string dataID = 4
1557
1557
  */
1558
1558
  dataID?: string;
1559
1559
  }