Skip to content

Commit

Permalink
chore(postgres): upgrade to containers 0.1.0 (#237)
Browse files Browse the repository at this point in the history
Approved by @skinny85
  • Loading branch information
eladb authored May 18, 2024
1 parent e76f7c8 commit 3444cc7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
12 changes: 6 additions & 6 deletions postgres/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions postgres/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@winglibs/postgres",
"version": "0.1.4",
"version": "0.1.5",
"description": "Postgres support for Wing",
"repository": {
"type": "git",
Expand All @@ -14,7 +14,7 @@
"peerDependencies": {
"@rybickic/cdktf-provider-neon": "^2.0.0",
"@cdktf/provider-aws": "^19.12.0",
"@winglibs/containers": "^0.0.27",
"@winglibs/containers": "^0.1.0",
"pg": "^8.11.3",
"cdktf": "^0.20.6"
},
Expand Down
1 change: 1 addition & 0 deletions postgres/pg.extern.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export default interface extern {
_query: (query: string, creds: ConnectionOptions) => Promise<(readonly (Readonly<Record<string, Readonly<any>>>)[])>,
_queryWithConnectionString: (query: string, connectionString: string) => Promise<(readonly (Readonly<Record<string, Readonly<any>>>)[])>,
}
export interface ConnectionOptions {
readonly database: string;
Expand Down

0 comments on commit 3444cc7

Please sign in to comment.