yedra 0.18.2 → 0.18.3
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.
|
@@ -17,7 +17,7 @@ declare class YedraWebSocket {
|
|
|
17
17
|
* Send binary data over the WebSocket connection;
|
|
18
18
|
* @param message - The message that will be sent.
|
|
19
19
|
*/
|
|
20
|
-
send(message:
|
|
20
|
+
send(message: Uint8Array<ArrayBufferLike> | string): void;
|
|
21
21
|
/**
|
|
22
22
|
* Closes the WebSocket.
|
|
23
23
|
* @param code - The close code. Must be one of:
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yedra",
|
|
3
|
-
"version": "0.18.
|
|
3
|
+
"version": "0.18.3",
|
|
4
4
|
"repository": "github:0codekit/yedra",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"devDependencies": {
|
|
7
|
-
"@biomejs/biome": "^2.3.
|
|
8
|
-
"@types/bun": "^1.3.
|
|
9
|
-
"@types/node": "^24.10.
|
|
7
|
+
"@biomejs/biome": "^2.3.6",
|
|
8
|
+
"@types/bun": "^1.3.2",
|
|
9
|
+
"@types/node": "^24.10.1",
|
|
10
10
|
"@types/uuid": "^11.0.0",
|
|
11
11
|
"@types/ws": "^8.18.1",
|
|
12
12
|
"typescript": "^5.9.3"
|