Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Mar 10, 2023
1 parent 1c213b2 commit 9ef569e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pg-promise",
"version": "11.3.0",
"version": "11.4.0",
"description": "PostgreSQL interface for Node.js",
"main": "lib/index.js",
"typings": "typescript/pg-promise.d.ts",
Expand Down Expand Up @@ -42,21 +42,21 @@
},
"dependencies": {
"assert-options": "0.8.0",
"pg": "8.9.0",
"pg": "8.10.0",
"pg-minify": "1.6.2",
"spex": "3.2.0"
},
"devDependencies": {
"@types/node": "18.14.0",
"@types/node": "18.15.0",
"bluebird": "3.7.2",
"coveralls": "3.1.1",
"cspell": "6.26.3",
"eslint": "8.34.0",
"cspell": "6.28.0",
"eslint": "8.35.0",
"istanbul": "0.4.5",
"jasmine-node": "3.0.0",
"jsdoc": "4.0.2",
"JSONStream": "1.3.5",
"pg-query-stream": "4.3.0",
"pg-query-stream": "4.4.0",
"tslint": "6.1.3",
"typescript": "4.9.5"
}
Expand Down
3 changes: 3 additions & 0 deletions typescript/pg-subset.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ declare namespace pg {

end(cb: (err: Error) => any): any;

log: () => void;

readonly options: { [name: string]: any }; // connection options

readonly ended: boolean;
Expand All @@ -297,6 +299,7 @@ declare namespace pg {
readonly waitingCount: number;
readonly idleCount: number;
readonly totalCount: number;
readonly expiredCount: number;
}

interface IQuery {
Expand Down

0 comments on commit 9ef569e

Please sign in to comment.