@discordjs/voice 0.15.0-dev.1677456611-ffdb197.0 → 0.15.0
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 +14 -0
- package/dist/index.d.ts +3 -9
- package/dist/index.js +920 -310
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +916 -310
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
# [@discordjs/voice@0.15.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.14.0...@discordjs/voice@0.15.0) - (2023-03-12)
|
|
6
|
+
|
|
7
|
+
## Bug Fixes
|
|
8
|
+
|
|
9
|
+
- **Voice:** Send keep alives without awaiting a response (#9202) ([c6d98fa](https://github.com/discordjs/discord.js/commit/c6d98fa0c55a482cd4a81abd6f08290c29839b1b))
|
|
10
|
+
|
|
11
|
+
## Documentation
|
|
12
|
+
|
|
13
|
+
- Fix version export (#9049) ([8b70f49](https://github.com/discordjs/discord.js/commit/8b70f497a1207e30edebdecd12b926c981c13d28))
|
|
14
|
+
|
|
15
|
+
## Features
|
|
16
|
+
|
|
17
|
+
- **website:** Add support for source file links (#9048) ([f6506e9](https://github.com/discordjs/discord.js/commit/f6506e99c496683ee0ab67db0726b105b929af38))
|
|
18
|
+
|
|
5
19
|
# [@discordjs/voice@0.14.0](https://github.com/discordjs/discord.js/compare/@discordjs/voice@0.13.0...@discordjs/voice@0.14.0) - (2022-11-28)
|
|
6
20
|
|
|
7
21
|
## Bug Fixes
|
package/dist/index.d.ts
CHANGED
|
@@ -574,10 +574,6 @@ declare class VoiceUDPSocket extends EventEmitter {
|
|
|
574
574
|
* The socket details for Discord (remote)
|
|
575
575
|
*/
|
|
576
576
|
private readonly remote;
|
|
577
|
-
/**
|
|
578
|
-
* A list of keep alives that are waiting to be acknowledged.
|
|
579
|
-
*/
|
|
580
|
-
private readonly keepAlives;
|
|
581
577
|
/**
|
|
582
578
|
* The counter used in the keep alive mechanism.
|
|
583
579
|
*/
|
|
@@ -592,18 +588,16 @@ declare class VoiceUDPSocket extends EventEmitter {
|
|
|
592
588
|
private readonly keepAliveInterval;
|
|
593
589
|
/**
|
|
594
590
|
* The time taken to receive a response to keep alive messages.
|
|
591
|
+
*
|
|
592
|
+
* @deprecated This field is no longer updated as keep alive messages are no longer tracked.
|
|
595
593
|
*/
|
|
596
594
|
ping?: number;
|
|
597
|
-
/**
|
|
598
|
-
* The debug logger function, if debugging is enabled.
|
|
599
|
-
*/
|
|
600
|
-
private readonly debug;
|
|
601
595
|
/**
|
|
602
596
|
* Creates a new VoiceUDPSocket.
|
|
603
597
|
*
|
|
604
598
|
* @param remote - Details of the remote socket
|
|
605
599
|
*/
|
|
606
|
-
constructor(remote: SocketConfig
|
|
600
|
+
constructor(remote: SocketConfig);
|
|
607
601
|
/**
|
|
608
602
|
* Called when a message is received on the UDP socket.
|
|
609
603
|
*
|