@aicore/cocodb-ws-client
Advanced tools
Comparing version 1.0.10 to 1.0.11
{ | ||
"name": "@aicore/cocodb-ws-client", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"description": "Websocket client for cocoDb", | ||
@@ -50,9 +50,9 @@ "main": "src/index.js", | ||
"devDependencies": { | ||
"@commitlint/cli": "17.4.2", | ||
"@commitlint/config-conventional": "17.4.2", | ||
"c8": "7.12.0", | ||
"@commitlint/cli": "17.4.3", | ||
"@commitlint/config-conventional": "17.4.3", | ||
"c8": "7.13.0", | ||
"chai": "4.3.7", | ||
"cli-color": "2.0.3", | ||
"documentation": "14.0.1", | ||
"eslint": "8.33.0", | ||
"eslint": "8.34.0", | ||
"glob": "8.1.0", | ||
@@ -64,3 +64,3 @@ "husky": "8.0.3", | ||
"@aicore/libcommonutils": "1.0.19", | ||
"ws": "8.12.0" | ||
"ws": "8.12.1" | ||
}, | ||
@@ -67,0 +67,0 @@ "optionalDependencies": { |
@@ -286,2 +286,4 @@ import {WS} from "./WebSocket.js"; | ||
export function sendMessage(message) { | ||
// make a copy as the user may start modifying the object while we are sending it. | ||
message = structuredClone(message); | ||
return new Promise(function (resolve, reject) { | ||
@@ -288,0 +290,0 @@ if(bufferRequests){ |
71808
703