@malloydata/db-duckdb 0.0.342 → 0.0.344

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/dist/index.js +2 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -28,7 +28,8 @@ Object.defineProperty(exports, "DuckDBConnection", { enumerable: true, get: func
28
28
  const malloy_1 = require("@malloydata/malloy");
29
29
  const duckdb_connection_2 = require("./duckdb_connection");
30
30
  (0, malloy_1.registerConnectionType)('duckdb', {
31
- factory: (config) => {
31
+ displayName: 'DuckDB',
32
+ factory: async (config) => {
32
33
  const options = { ...config };
33
34
  // Map user-friendly "path" to the constructor's "databasePath"
34
35
  if ('path' in options && !('databasePath' in options)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-duckdb",
3
- "version": "0.0.342",
3
+ "version": "0.0.344",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -46,7 +46,7 @@
46
46
  "dependencies": {
47
47
  "@duckdb/duckdb-wasm": "1.33.1-dev13.0",
48
48
  "@duckdb/node-api": "1.4.3-r.1",
49
- "@malloydata/malloy": "0.0.342",
49
+ "@malloydata/malloy": "0.0.344",
50
50
  "@motherduck/wasm-client": "^0.6.6",
51
51
  "apache-arrow": "^17.0.0",
52
52
  "web-worker": "^1.3.0"