@malloydata/db-bigquery 0.0.20-dev230107153725 → 0.0.20

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.
@@ -86,5 +86,6 @@ export declare class BigQueryConnection implements Connection, PersistSQLResults
86
86
  private createBigQueryJobAndGetResults;
87
87
  private createBigQueryJob;
88
88
  runSQLStream(sqlCommand: string, options?: Partial<BigQueryQueryOptions>): AsyncIterableIterator<QueryDataRow>;
89
+ close(): Promise<void>;
89
90
  }
90
91
  export {};
@@ -553,6 +553,9 @@ class BigQueryConnection {
553
553
  }
554
554
  return (0, malloy_1.toAsyncGenerator)(streamBigQuery);
555
555
  }
556
+ async close() {
557
+ return;
558
+ }
556
559
  }
557
560
  exports.BigQueryConnection = BigQueryConnection;
558
561
  BigQueryConnection.DEFAULT_QUERY_OPTIONS = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-bigquery",
3
- "version": "0.0.20-dev230107153725",
3
+ "version": "0.0.20",
4
4
  "license": "GPL-2.0",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  "dependencies": {
21
21
  "@google-cloud/bigquery": "^5.5.0",
22
22
  "@google-cloud/common": "^3.6.0",
23
- "@malloydata/malloy": "^0.0.20-dev230107153725",
23
+ "@malloydata/malloy": "^0.0.20",
24
24
  "gaxios": "^4.2.0"
25
25
  }
26
26
  }