@malloydata/db-postgres 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
@@ -29,7 +29,8 @@ Object.defineProperty(exports, "PooledPostgresConnection", { enumerable: true, g
29
29
  const malloy_1 = require("@malloydata/malloy");
30
30
  const postgres_connection_2 = require("./postgres_connection");
31
31
  (0, malloy_1.registerConnectionType)('postgres', {
32
- factory: (config) => {
32
+ displayName: 'PostgreSQL',
33
+ factory: async (config) => {
33
34
  return new postgres_connection_2.PostgresConnection(config);
34
35
  },
35
36
  properties: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-postgres",
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/pg": "^8.6.1",
27
27
  "pg": "^8.7.1",
28
28
  "pg-query-stream": "4.2.3"