@observablehq/notebook-kit 1.7.10 → 1.7.11

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/dist/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/observablehq/notebook-kit.git"
7
7
  },
8
- "version": "1.7.10",
8
+ "version": "1.7.11",
9
9
  "type": "module",
10
10
  "scripts": {
11
11
  "test": "vitest",
@@ -22,3 +22,6 @@ export class DuckDBClient {
22
22
  }[]>;
23
23
  readonly dialect: string;
24
24
  }
25
+ export namespace DuckDBClient {
26
+ let name: string;
27
+ }
@@ -172,6 +172,7 @@ export class DuckDBClient {
172
172
  return this.of.apply(this, arguments).then((db) => db.sql.bind(db));
173
173
  }
174
174
  }
175
+ Object.defineProperty(DuckDBClient, "name", { value: "DuckDBClient" }); // prevent mangling
175
176
  Object.defineProperty(DuckDBClient.prototype, "dialect", { value: "duckdb" });
176
177
  // async function registerExtensions(db, extensions) {
177
178
  // const {mainModule} = await bundle;
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/observablehq/notebook-kit.git"
7
7
  },
8
- "version": "1.7.10",
8
+ "version": "1.7.11",
9
9
  "type": "module",
10
10
  "scripts": {
11
11
  "test": "vitest",