@malloydata/db-bigquery 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, "BigQueryConnection", { enumerable: true, get: fu
28
28
  const malloy_1 = require("@malloydata/malloy");
29
29
  const bigquery_connection_2 = require("./bigquery_connection");
30
30
  (0, malloy_1.registerConnectionType)('bigquery', {
31
- factory: (config) => {
31
+ displayName: 'BigQuery',
32
+ factory: async (config) => {
32
33
  return new bigquery_connection_2.BigQueryConnection(config);
33
34
  },
34
35
  properties: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-bigquery",
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",
@@ -25,7 +25,7 @@
25
25
  "@google-cloud/bigquery": "^7.3.0",
26
26
  "@google-cloud/common": "^5.0.1",
27
27
  "@google-cloud/paginator": "^5.0.0",
28
- "@malloydata/malloy": "0.0.342",
28
+ "@malloydata/malloy": "0.0.344",
29
29
  "gaxios": "^4.2.0"
30
30
  }
31
31
  }