@duckdb/node-bindings 1.3.2-alpha.26 → 1.4.0-r.1
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 +5 -5
- package/package.json +6 -6
package/duckdb.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export enum Type {
|
|
|
83
83
|
TIME_TZ = 30,
|
|
84
84
|
TIMESTAMP_TZ = 31,
|
|
85
85
|
ANY = 34,
|
|
86
|
-
|
|
86
|
+
BIGNUM = 35,
|
|
87
87
|
SQLNULL = 36,
|
|
88
88
|
}
|
|
89
89
|
|
|
@@ -670,8 +670,8 @@ export function create_hugeint(input: bigint): Value;
|
|
|
670
670
|
// DUCKDB_C_API duckdb_value duckdb_create_uhugeint(duckdb_uhugeint input);
|
|
671
671
|
export function create_uhugeint(input: bigint): Value;
|
|
672
672
|
|
|
673
|
-
// DUCKDB_C_API duckdb_value
|
|
674
|
-
export function
|
|
673
|
+
// DUCKDB_C_API duckdb_value duckdb_create_bignum(duckdb_bignum input);
|
|
674
|
+
export function create_bignum(input: bigint): Value;
|
|
675
675
|
|
|
676
676
|
// DUCKDB_C_API duckdb_value duckdb_create_decimal(duckdb_decimal input);
|
|
677
677
|
export function create_decimal(input: Decimal): Value;
|
|
@@ -751,8 +751,8 @@ export function get_hugeint(value: Value): bigint;
|
|
|
751
751
|
// DUCKDB_C_API duckdb_uhugeint duckdb_get_uhugeint(duckdb_value val);
|
|
752
752
|
export function get_uhugeint(value: Value): bigint;
|
|
753
753
|
|
|
754
|
-
// DUCKDB_C_API
|
|
755
|
-
export function
|
|
754
|
+
// DUCKDB_C_API duckdb_bignum duckdb_get_bignum(duckdb_value val);
|
|
755
|
+
export function get_bignum(value: Value): bigint;
|
|
756
756
|
|
|
757
757
|
// DUCKDB_C_API duckdb_decimal duckdb_get_decimal(duckdb_value val);
|
|
758
758
|
export function get_decimal(value: Value): Decimal;
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duckdb/node-bindings",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0-r.1",
|
|
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.
|
|
9
|
-
"@duckdb/node-bindings-darwin-x64": "1.
|
|
10
|
-
"@duckdb/node-bindings-linux-arm64": "1.
|
|
11
|
-
"@duckdb/node-bindings-linux-x64": "1.
|
|
12
|
-
"@duckdb/node-bindings-win32-x64": "1.
|
|
8
|
+
"@duckdb/node-bindings-darwin-arm64": "1.4.0-r.1",
|
|
9
|
+
"@duckdb/node-bindings-darwin-x64": "1.4.0-r.1",
|
|
10
|
+
"@duckdb/node-bindings-linux-arm64": "1.4.0-r.1",
|
|
11
|
+
"@duckdb/node-bindings-linux-x64": "1.4.0-r.1",
|
|
12
|
+
"@duckdb/node-bindings-win32-x64": "1.4.0-r.1"
|
|
13
13
|
},
|
|
14
14
|
"repository": {
|
|
15
15
|
"type": "git",
|