@malloydata/db-duckdb 0.0.243-dev250314154947 → 0.0.243-dev250314162617

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.
@@ -1,4 +1,4 @@
1
- import { MalloyQueryData, PersistSQLResults, PooledConnection, QueryDataRow, QueryOptionsReader, QueryRunStats, RunSQLOptions, StreamingConnection, StructDef, TestableConnection, SQLSourceDef, TableSourceDef, SQLSourceRequest } from '@malloydata/malloy';
1
+ import type { MalloyQueryData, PersistSQLResults, PooledConnection, QueryDataRow, QueryOptionsReader, QueryRunStats, RunSQLOptions, StreamingConnection, StructDef, TestableConnection, SQLSourceDef, TableSourceDef, SQLSourceRequest } from '@malloydata/malloy';
2
2
  import { BaseConnection } from '@malloydata/malloy/connection';
3
3
  export interface DuckDBQueryOptions {
4
4
  rowLimit: number;
@@ -1,6 +1,7 @@
1
1
  import { DuckDBCommon } from './duckdb_common';
2
- import { Connection, Database, TableData } from 'duckdb';
3
- import { ConnectionConfig, QueryDataRow, QueryOptionsReader, RunSQLOptions } from '@malloydata/malloy';
2
+ import type { Connection, TableData } from 'duckdb';
3
+ import { Database } from 'duckdb';
4
+ import type { ConnectionConfig, QueryDataRow, QueryOptionsReader, RunSQLOptions } from '@malloydata/malloy';
4
5
  export interface DuckDBConnectionOptions extends ConnectionConfig {
5
6
  additionalExtensions?: string[];
6
7
  databasePath?: string;
@@ -1,6 +1,6 @@
1
1
  import * as duckdb from '@duckdb/duckdb-wasm';
2
- import { FetchSchemaOptions, QueryDataRow, QueryOptionsReader, RunSQLOptions, SQLSourceDef, ConnectionConfig, TableSourceDef, SQLSourceRequest } from '@malloydata/malloy';
3
- import { StructRow } from 'apache-arrow';
2
+ import type { FetchSchemaOptions, QueryDataRow, QueryOptionsReader, RunSQLOptions, SQLSourceDef, ConnectionConfig, TableSourceDef, SQLSourceRequest } from '@malloydata/malloy';
3
+ import type { StructRow } from 'apache-arrow';
4
4
  import { DuckDBCommon } from './duckdb_common';
5
5
  /**
6
6
  * Arrow's toJSON() doesn't really do what I'd expect, since
@@ -1,7 +1,7 @@
1
1
  import * as duckdb from '@duckdb/duckdb-wasm';
2
2
  import { DuckDBWASMConnection as DuckDBWASMConnectionBase } from './duckdb_wasm_connection';
3
3
  import { MDConnection } from '@motherduck/wasm-client';
4
- import { QueryDataRow } from '@malloydata/malloy';
4
+ import type { QueryDataRow } from '@malloydata/malloy';
5
5
  export declare class DuckDBWASMConnection extends DuckDBWASMConnectionBase {
6
6
  protected _mdConnection: MDConnection | null;
7
7
  getBundles(): duckdb.DuckDBBundles;
@@ -1,4 +1,4 @@
1
- import { DuckDBBundles } from '@duckdb/duckdb-wasm';
1
+ import type { DuckDBBundles } from '@duckdb/duckdb-wasm';
2
2
  import { DuckDBWASMConnection as DuckDBWASMConnectionBase } from './duckdb_wasm_connection';
3
3
  export declare class DuckDBWASMConnection extends DuckDBWASMConnectionBase {
4
4
  getBundles(): DuckDBBundles;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-duckdb",
3
- "version": "0.0.243-dev250314154947",
3
+ "version": "0.0.243-dev250314162617",
4
4
  "license": "MIT",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -41,7 +41,7 @@
41
41
  },
42
42
  "dependencies": {
43
43
  "@duckdb/duckdb-wasm": "1.29.0",
44
- "@malloydata/malloy": "^0.0.243-dev250314154947",
44
+ "@malloydata/malloy": "^0.0.243-dev250314162617",
45
45
  "@motherduck/wasm-client": "^0.6.6",
46
46
  "apache-arrow": "^17.0.0",
47
47
  "duckdb": "1.1.1",