@malloydata/db-mysql 0.0.342 → 0.0.343

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
@@ -13,7 +13,8 @@ Object.defineProperty(exports, "MySQLExecutor", { enumerable: true, get: functio
13
13
  const malloy_1 = require("@malloydata/malloy");
14
14
  const mysql_connection_2 = require("./mysql_connection");
15
15
  (0, malloy_1.registerConnectionType)('mysql', {
16
- factory: (config) => {
16
+ displayName: 'MySQL',
17
+ factory: async (config) => {
17
18
  return new mysql_connection_2.MySQLConnection(config.name, {
18
19
  host: typeof config['host'] === 'string' ? config['host'] : undefined,
19
20
  port: typeof config['port'] === 'number' ? config['port'] : undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-mysql",
3
- "version": "0.0.342",
3
+ "version": "0.0.343",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -22,7 +22,7 @@
22
22
  "prepublishOnly": "npm run build"
23
23
  },
24
24
  "dependencies": {
25
- "@malloydata/malloy": "0.0.342",
25
+ "@malloydata/malloy": "0.0.343",
26
26
  "@types/node": "^22.7.4",
27
27
  "fastestsmallesttextencoderdecoder": "^1.0.22",
28
28
  "luxon": "^3.5.0",