@malloydata/db-postgres 0.0.112-dev231205222129 → 0.0.112-dev231206183653

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.
@@ -42,6 +42,7 @@ describe('PostgresConnection', () => {
42
42
  });
43
43
  beforeEach(async () => {
44
44
  getTableSchema = jest
45
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
45
46
  .spyOn(postgres_connection_1.PostgresConnection.prototype, 'getTableSchema')
46
47
  .mockResolvedValue({
47
48
  type: 'struct',
@@ -55,6 +56,7 @@ describe('PostgresConnection', () => {
55
56
  fields: [],
56
57
  });
57
58
  getSQLBlockSchema = jest
59
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
58
60
  .spyOn(postgres_connection_1.PostgresConnection.prototype, 'getSQLBlockSchema')
59
61
  .mockResolvedValue({
60
62
  type: 'struct',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-postgres",
3
- "version": "0.0.112-dev231205222129",
3
+ "version": "0.0.112-dev231206183653",
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.112-dev231205222129",
25
+ "@malloydata/malloy": "^0.0.112-dev231206183653",
26
26
  "@types/pg": "^8.6.1",
27
27
  "pg": "^8.7.1",
28
28
  "pg-query-stream": "4.2.3"