@duckdb/node-bindings 1.2.1-alpha.17 → 1.2.2-alpha.19
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/duckdb.d.ts +1 -1
- package/package.json +6 -6
package/duckdb.d.ts
CHANGED
|
@@ -455,7 +455,7 @@ export function decimal_to_double(decimal: Decimal): number;
|
|
|
455
455
|
export function prepare(connection: Connection, query: string): Promise<PreparedStatement>;
|
|
456
456
|
|
|
457
457
|
// DUCKDB_API void duckdb_destroy_prepare(duckdb_prepared_statement *prepared_statement);
|
|
458
|
-
|
|
458
|
+
export function destroy_prepare_sync(prepared_statement: PreparedStatement): void;
|
|
459
459
|
|
|
460
460
|
// DUCKDB_API const char *duckdb_prepare_error(duckdb_prepared_statement prepared_statement);
|
|
461
461
|
// not exposed: prepare rejects promise with error
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duckdb/node-bindings",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2-alpha.19",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "./duckdb.js",
|
|
6
6
|
"types": "./duckdb.d.ts",
|
|
7
7
|
"optionalDependencies": {
|
|
8
|
-
"@duckdb/node-bindings-darwin-arm64": "1.2.
|
|
9
|
-
"@duckdb/node-bindings-linux-arm64": "1.2.
|
|
10
|
-
"@duckdb/node-bindings-
|
|
11
|
-
"@duckdb/node-bindings-
|
|
12
|
-
"@duckdb/node-bindings-win32-x64": "1.2.
|
|
8
|
+
"@duckdb/node-bindings-darwin-arm64": "1.2.2-alpha.19",
|
|
9
|
+
"@duckdb/node-bindings-linux-arm64": "1.2.2-alpha.19",
|
|
10
|
+
"@duckdb/node-bindings-darwin-x64": "1.2.2-alpha.19",
|
|
11
|
+
"@duckdb/node-bindings-linux-x64": "1.2.2-alpha.19",
|
|
12
|
+
"@duckdb/node-bindings-win32-x64": "1.2.2-alpha.19"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|