joist-utils 1.20.0 → 1.21.2

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.
@@ -17,7 +17,7 @@ export declare type ConnectionEnv = DatabaseUrl | DbSettings;
17
17
  * load it somehow; that's fine, but is more complex than knex expects, so we simplify it to "just a string",
18
18
  * which is what we provide anyway.
19
19
  */
20
- export declare type ConnectionConfig = Omit<PgConnectionConfig, "password"> & {
20
+ export declare type ConnectionConfig = Omit<PgConnectionConfig, "password" | "types"> & {
21
21
  password: string | undefined;
22
22
  };
23
23
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "joist-utils",
3
- "version": "1.20.0",
3
+ "version": "1.21.2",
4
4
  "license": "MIT",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -8,7 +8,7 @@
8
8
  "build"
9
9
  ],
10
10
  "dependencies": {
11
- "pg": "^8.7.1",
11
+ "pg": "^8.7.3",
12
12
  "pg-connection-string": "^2.5.0"
13
13
  },
14
14
  "scripts": {