@tf2pickup-org/mumble-protocol 1.0.2 → 1.0.4
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 +17 -1
- package/dist/Mumble.d.ts +20 -15
- package/dist/Mumble.js +135 -120
- package/dist/Mumble.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [1.0.4](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.3...1.0.4) (2023-12-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependency @protobuf-ts/runtime to v2.9.2 ([dd91676](https://github.com/tf2pickup-org/mumble-protocol/commit/dd916764d4caba8f5d36f15589e202044d3945e4))
|
|
9
|
+
* **deps:** update dependency @protobuf-ts/runtime to v2.9.3 ([8f6a938](https://github.com/tf2pickup-org/mumble-protocol/commit/8f6a938a06b0bb4fa5fec5515c7795438efb8f59))
|
|
10
|
+
|
|
11
|
+
## [1.0.3](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.2...1.0.3) (2023-10-05)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **deps:** update dependency @protobuf-ts/runtime to v2.9.1 ([2fefc5a](https://github.com/tf2pickup-org/mumble-protocol/commit/2fefc5a926093d6749f76116f457593ddd6d779d))
|
|
17
|
+
* **deps:** update Mumble.proto to version 1.4.287 ([#91](https://github.com/tf2pickup-org/mumble-protocol/issues/91)) ([69241fa](https://github.com/tf2pickup-org/mumble-protocol/commit/69241faf108399d2a2b751f18be03c0c71dd605a))
|
|
18
|
+
|
|
3
19
|
## [1.0.2](https://github.com/tf2pickup-org/mumble-protocol/compare/1.0.1...1.0.2) (2023-06-20)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -47,4 +63,4 @@
|
|
|
47
63
|
|
|
48
64
|
### Bug Fixes
|
|
49
65
|
|
|
50
|
-
* **ci:** add github ci ([0a335f9](https://github.com/tf2pickup-org/mumble-protocol/commit/0a335f935cf8bbe12403e56f0929da729d5d5c42))
|
|
66
|
+
* **ci:** add github ci ([0a335f9](https://github.com/tf2pickup-org/mumble-protocol/commit/0a335f935cf8bbe12403e56f0929da729d5d5c42))
|
package/dist/Mumble.d.ts
CHANGED
|
@@ -9,11 +9,18 @@ import { MessageType } from "@protobuf-ts/runtime";
|
|
|
9
9
|
*/
|
|
10
10
|
export interface Version {
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
* Legacy version number format.
|
|
13
13
|
*
|
|
14
|
-
* @generated from protobuf field: optional uint32
|
|
14
|
+
* @generated from protobuf field: optional uint32 version_v1 = 1;
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
versionV1?: number;
|
|
17
|
+
/**
|
|
18
|
+
* New version number format.
|
|
19
|
+
* Necessary since patch level may exceed 255. (See https://github.com/mumble-voip/mumble/issues/5827)
|
|
20
|
+
*
|
|
21
|
+
* @generated from protobuf field: optional uint64 version_v2 = 5;
|
|
22
|
+
*/
|
|
23
|
+
versionV2?: bigint;
|
|
17
24
|
/**
|
|
18
25
|
* Client release name.
|
|
19
26
|
*
|
|
@@ -262,9 +269,6 @@ export interface ServerSync {
|
|
|
262
269
|
welcomeText?: string;
|
|
263
270
|
/**
|
|
264
271
|
* Current user permissions in the root channel.
|
|
265
|
-
* Note: The permissions data type usually is uin32 (e.g. in PermissionQuery and PermissionDenied messages). Here
|
|
266
|
-
* it is uint64 because of an oversight in the past. Nonetheless it should never exceed the uin32 range.
|
|
267
|
-
* See also: https://github.com/mumble-voip/mumble/issues/5139
|
|
268
272
|
*
|
|
269
273
|
* @generated from protobuf field: optional uint64 permissions = 4;
|
|
270
274
|
*/
|
|
@@ -1452,12 +1456,6 @@ export interface ServerConfig {
|
|
|
1452
1456
|
* @generated from protobuf field: optional uint32 max_users = 6;
|
|
1453
1457
|
*/
|
|
1454
1458
|
maxUsers?: number;
|
|
1455
|
-
/**
|
|
1456
|
-
* Whether using Mumble's recording feature is allowed on the server
|
|
1457
|
-
*
|
|
1458
|
-
* @generated from protobuf field: optional bool recording_allowed = 7;
|
|
1459
|
-
*/
|
|
1460
|
-
recordingAllowed?: boolean;
|
|
1461
1459
|
}
|
|
1462
1460
|
/**
|
|
1463
1461
|
* Sent by the server to inform the clients of suggested client configuration
|
|
@@ -1467,11 +1465,18 @@ export interface ServerConfig {
|
|
|
1467
1465
|
*/
|
|
1468
1466
|
export interface SuggestConfig {
|
|
1469
1467
|
/**
|
|
1470
|
-
* Suggested client version.
|
|
1468
|
+
* Suggested client version in the legacy format.
|
|
1469
|
+
*
|
|
1470
|
+
* @generated from protobuf field: optional uint32 version_v1 = 1;
|
|
1471
|
+
*/
|
|
1472
|
+
versionV1?: number;
|
|
1473
|
+
/**
|
|
1474
|
+
* Suggested client version in the new format.
|
|
1475
|
+
* Necessary since patch level may exceed 255. (See https://github.com/mumble-voip/mumble/issues/5827)
|
|
1471
1476
|
*
|
|
1472
|
-
* @generated from protobuf field: optional
|
|
1477
|
+
* @generated from protobuf field: optional uint64 version_v2 = 4;
|
|
1473
1478
|
*/
|
|
1474
|
-
|
|
1479
|
+
versionV2?: bigint;
|
|
1475
1480
|
/**
|
|
1476
1481
|
* True if the administrator suggests positional audio to be used on this
|
|
1477
1482
|
* server.
|