@zvndev/powdb-client 0.10.0 → 0.11.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/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { EventEmitter } from "node:events";
|
|
|
19
19
|
import { type SyncRepairAction, type WireRetainedUnit, type WireSyncStatus } from "./protocol.js";
|
|
20
20
|
import { type TypedRow, type TypedSchema } from "./typed.js";
|
|
21
21
|
/** Client library version. Compared to the server's reported version. */
|
|
22
|
-
export declare const CLIENT_VERSION = "0.
|
|
22
|
+
export declare const CLIENT_VERSION = "0.11.0";
|
|
23
23
|
export type QueryResult = {
|
|
24
24
|
kind: "rows";
|
|
25
25
|
columns: string[];
|
package/dist/cjs/index.js
CHANGED
|
@@ -58,7 +58,7 @@ const errors_js_1 = require("./errors.js");
|
|
|
58
58
|
const script_js_1 = require("./script.js");
|
|
59
59
|
const typed_js_1 = require("./typed.js");
|
|
60
60
|
/** Client library version. Compared to the server's reported version. */
|
|
61
|
-
exports.CLIENT_VERSION = "0.
|
|
61
|
+
exports.CLIENT_VERSION = "0.11.0";
|
|
62
62
|
/** Transaction-control statements a `transactional` script may not contain. */
|
|
63
63
|
const TX_CONTROL_RE = /^(begin|commit|rollback)\b/i;
|
|
64
64
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,7 @@ import { EventEmitter } from "node:events";
|
|
|
19
19
|
import { type SyncRepairAction, type WireRetainedUnit, type WireSyncStatus } from "./protocol.js";
|
|
20
20
|
import { type TypedRow, type TypedSchema } from "./typed.js";
|
|
21
21
|
/** Client library version. Compared to the server's reported version. */
|
|
22
|
-
export declare const CLIENT_VERSION = "0.
|
|
22
|
+
export declare const CLIENT_VERSION = "0.11.0";
|
|
23
23
|
export type QueryResult = {
|
|
24
24
|
kind: "rows";
|
|
25
25
|
columns: string[];
|
package/dist/index.js
CHANGED
|
@@ -22,7 +22,7 @@ import { PowDBError, PowDBScriptError, isPowDBError } from "./errors.js";
|
|
|
22
22
|
import { splitStatements } from "./script.js";
|
|
23
23
|
import { coerceRows, } from "./typed.js";
|
|
24
24
|
/** Client library version. Compared to the server's reported version. */
|
|
25
|
-
export const CLIENT_VERSION = "0.
|
|
25
|
+
export const CLIENT_VERSION = "0.11.0";
|
|
26
26
|
/** Transaction-control statements a `transactional` script may not contain. */
|
|
27
27
|
const TX_CONTROL_RE = /^(begin|commit|rollback)\b/i;
|
|
28
28
|
/**
|