@tf2pickup-org/mumble-protocol 1.0.5 → 1.0.7
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/CHANGELOG.md +15 -0
- package/dist/Mumble.d.ts +44 -0
- package/dist/Mumble.js +501 -429
- package/dist/Mumble.js.map +1 -1
- package/dist/index.js +1 -17
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +5 -4
- package/tsconfig.json +5 -4
- package/.yarnrc.yml +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
|
1
|
+
# Changelog
|
|
1
2
|
|
|
3
|
+
## [1.0.7](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.6...1.0.7) (2025-01-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **build:** migrate to esm properly ([712b49e](https://github.com/tf2pickup-org/mumble-protocol/commit/712b49ec23e4260dd0e5577598aa96a13b7ad591))
|
|
9
|
+
|
|
10
|
+
## [1.0.6](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.5...1.0.6) (2025-01-02)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **build:** migrate to esm ([#97](https://github.com/tf2pickup-org/mumble-protocol/issues/97)) ([bf6cc6c](https://github.com/tf2pickup-org/mumble-protocol/commit/bf6cc6c67e906750ce1188e50641bb98d9fe86dd))
|
|
16
|
+
* update Mumble.proto to version 1.5.735 ([#98](https://github.com/tf2pickup-org/mumble-protocol/issues/98)) ([58df9bb](https://github.com/tf2pickup-org/mumble-protocol/commit/58df9bb512a1fc0a8e2f675be044f2b523f6b2f7))
|
|
2
17
|
|
|
3
18
|
## [1.0.5](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.4...1.0.5) (2024-05-27)
|
|
4
19
|
|
package/dist/Mumble.d.ts
CHANGED
|
@@ -87,6 +87,12 @@ export interface Authenticate {
|
|
|
87
87
|
* @generated from protobuf field: optional bool opus = 5;
|
|
88
88
|
*/
|
|
89
89
|
opus?: boolean;
|
|
90
|
+
/**
|
|
91
|
+
* 0 = REGULAR, 1 = BOT
|
|
92
|
+
*
|
|
93
|
+
* @generated from protobuf field: optional int32 client_type = 6;
|
|
94
|
+
*/
|
|
95
|
+
clientType?: number;
|
|
90
96
|
}
|
|
91
97
|
/**
|
|
92
98
|
* Sent by the client to notify the server that the client is still alive.
|
|
@@ -269,6 +275,9 @@ export interface ServerSync {
|
|
|
269
275
|
welcomeText?: string;
|
|
270
276
|
/**
|
|
271
277
|
* Current user permissions in the root channel.
|
|
278
|
+
* Note: The permissions data type usually is uin32 (e.g. in PermissionQuery and PermissionDenied messages). Here
|
|
279
|
+
* it is uint64 because of an oversight in the past. Nonetheless it should never exceed the uin32 range.
|
|
280
|
+
* See also: https://github.com/mumble-voip/mumble/issues/5139
|
|
272
281
|
*
|
|
273
282
|
* @generated from protobuf field: optional uint64 permissions = 4;
|
|
274
283
|
*/
|
|
@@ -559,6 +568,25 @@ export interface UserState {
|
|
|
559
568
|
* @generated from protobuf field: repeated uint32 listening_channel_remove = 22;
|
|
560
569
|
*/
|
|
561
570
|
listeningChannelRemove: number[];
|
|
571
|
+
/**
|
|
572
|
+
* A list of volume adjustments the user has applied to listeners
|
|
573
|
+
*
|
|
574
|
+
* @generated from protobuf field: repeated MumbleProto.UserState.VolumeAdjustment listening_volume_adjustment = 23;
|
|
575
|
+
*/
|
|
576
|
+
listeningVolumeAdjustment: UserState_VolumeAdjustment[];
|
|
577
|
+
}
|
|
578
|
+
/**
|
|
579
|
+
* @generated from protobuf message MumbleProto.UserState.VolumeAdjustment
|
|
580
|
+
*/
|
|
581
|
+
export interface UserState_VolumeAdjustment {
|
|
582
|
+
/**
|
|
583
|
+
* @generated from protobuf field: optional uint32 listening_channel = 1;
|
|
584
|
+
*/
|
|
585
|
+
listeningChannel?: number;
|
|
586
|
+
/**
|
|
587
|
+
* @generated from protobuf field: optional float volume_adjustment = 2;
|
|
588
|
+
*/
|
|
589
|
+
volumeAdjustment?: number;
|
|
562
590
|
}
|
|
563
591
|
/**
|
|
564
592
|
* Relays information on the bans. The client may send the BanList message to
|
|
@@ -1456,6 +1484,12 @@ export interface ServerConfig {
|
|
|
1456
1484
|
* @generated from protobuf field: optional uint32 max_users = 6;
|
|
1457
1485
|
*/
|
|
1458
1486
|
maxUsers?: number;
|
|
1487
|
+
/**
|
|
1488
|
+
* Whether using Mumble's recording feature is allowed on the server
|
|
1489
|
+
*
|
|
1490
|
+
* @generated from protobuf field: optional bool recording_allowed = 7;
|
|
1491
|
+
*/
|
|
1492
|
+
recordingAllowed?: boolean;
|
|
1459
1493
|
}
|
|
1460
1494
|
/**
|
|
1461
1495
|
* Sent by the server to inform the clients of suggested client configuration
|
|
@@ -1623,6 +1657,16 @@ declare class UserState$Type extends MessageType<UserState> {
|
|
|
1623
1657
|
* @generated MessageType for protobuf message MumbleProto.UserState
|
|
1624
1658
|
*/
|
|
1625
1659
|
export declare const UserState: UserState$Type;
|
|
1660
|
+
declare class UserState_VolumeAdjustment$Type extends MessageType<UserState_VolumeAdjustment> {
|
|
1661
|
+
constructor();
|
|
1662
|
+
create(value?: PartialMessage<UserState_VolumeAdjustment>): UserState_VolumeAdjustment;
|
|
1663
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UserState_VolumeAdjustment): UserState_VolumeAdjustment;
|
|
1664
|
+
internalBinaryWrite(message: UserState_VolumeAdjustment, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
1665
|
+
}
|
|
1666
|
+
/**
|
|
1667
|
+
* @generated MessageType for protobuf message MumbleProto.UserState.VolumeAdjustment
|
|
1668
|
+
*/
|
|
1669
|
+
export declare const UserState_VolumeAdjustment: UserState_VolumeAdjustment$Type;
|
|
1626
1670
|
declare class BanList$Type extends MessageType<BanList> {
|
|
1627
1671
|
constructor();
|
|
1628
1672
|
create(value?: PartialMessage<BanList>): BanList;
|