@zvndev/powdb-client 0.7.1 → 0.7.2
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ import * as tls from "node:tls";
|
|
|
18
18
|
import { EventEmitter } from "node:events";
|
|
19
19
|
import { type TypedRow, type TypedSchema } from "./typed.js";
|
|
20
20
|
/** Client library version. Compared to the server's reported version. */
|
|
21
|
-
export declare const CLIENT_VERSION = "0.7.
|
|
21
|
+
export declare const CLIENT_VERSION = "0.7.2";
|
|
22
22
|
export type QueryResult = {
|
|
23
23
|
kind: "rows";
|
|
24
24
|
columns: string[];
|
package/dist/index.js
CHANGED
|
@@ -21,7 +21,7 @@ import { encode, tryDecode, } from "./protocol.js";
|
|
|
21
21
|
import { PowDBError } from "./errors.js";
|
|
22
22
|
import { coerceRows, } from "./typed.js";
|
|
23
23
|
/** Client library version. Compared to the server's reported version. */
|
|
24
|
-
export const CLIENT_VERSION = "0.7.
|
|
24
|
+
export const CLIENT_VERSION = "0.7.2";
|
|
25
25
|
function socketChunkToBuffer(chunk) {
|
|
26
26
|
return typeof chunk === "string" ? Buffer.from(chunk) : chunk;
|
|
27
27
|
}
|