@duckdb/node-bindings 1.2.2-alpha.18 → 1.3.0-alpha.20

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.
Files changed (2) hide show
  1. package/duckdb.d.ts +1 -1
  2. 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
- // not exposed: destroyed in finalizer
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.2-alpha.18",
3
+ "version": "1.3.0-alpha.20",
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.2-alpha.18",
9
- "@duckdb/node-bindings-darwin-x64": "1.2.2-alpha.18",
10
- "@duckdb/node-bindings-linux-arm64": "1.2.2-alpha.18",
11
- "@duckdb/node-bindings-linux-x64": "1.2.2-alpha.18",
12
- "@duckdb/node-bindings-win32-x64": "1.2.2-alpha.18"
8
+ "@duckdb/node-bindings-darwin-arm64": "1.3.0-alpha.20",
9
+ "@duckdb/node-bindings-darwin-x64": "1.3.0-alpha.20",
10
+ "@duckdb/node-bindings-linux-arm64": "1.3.0-alpha.20",
11
+ "@duckdb/node-bindings-linux-x64": "1.3.0-alpha.20",
12
+ "@duckdb/node-bindings-win32-x64": "1.3.0-alpha.20"
13
13
  },
14
14
  "repository": {
15
15
  "type": "git",