@malloydata/db-postgres 0.0.79-dev230822044438 → 0.0.79-dev230822184259
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.
|
@@ -3,7 +3,7 @@ import { Client } from 'pg';
|
|
|
3
3
|
interface PostgresQueryConfiguration {
|
|
4
4
|
rowLimit?: number;
|
|
5
5
|
}
|
|
6
|
-
|
|
6
|
+
type PostgresQueryConfigurationReader = PostgresQueryConfiguration | (() => PostgresQueryConfiguration) | (() => Promise<PostgresQueryConfiguration>);
|
|
7
7
|
interface PostgresConnectionConfiguration {
|
|
8
8
|
host?: string;
|
|
9
9
|
port?: number;
|
|
@@ -11,7 +11,7 @@ interface PostgresConnectionConfiguration {
|
|
|
11
11
|
password?: string;
|
|
12
12
|
databaseName?: string;
|
|
13
13
|
}
|
|
14
|
-
|
|
14
|
+
type PostgresConnectionConfigurationReader = PostgresConnectionConfiguration | (() => Promise<PostgresConnectionConfiguration>);
|
|
15
15
|
export declare class PostgresConnection implements Connection, StreamingConnection, PersistSQLResults {
|
|
16
16
|
private isSetup;
|
|
17
17
|
private schemaCache;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-postgres",
|
|
3
|
-
"version": "0.0.79-
|
|
3
|
+
"version": "0.0.79-dev230822184259",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"prepublishOnly": "npm run build"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@malloydata/malloy": "^0.0.79-
|
|
22
|
+
"@malloydata/malloy": "^0.0.79-dev230822184259",
|
|
23
23
|
"@types/pg": "^8.6.1",
|
|
24
24
|
"pg": "^8.7.1",
|
|
25
25
|
"pg-query-stream": "4.2.3"
|