postgresql-client
Advanced tools
Comparing version 2.10.2 to 2.10.3
@@ -0,1 +1,9 @@ | ||
# v2.10.3 | ||
[2024-01-12] | ||
### Changes | ||
* Updated dependencies ([`b1ec82a`](https://github.com/panates/postgresql-client/commit/b1ec82a3967dfa789583248c2d9096c40c333601)) | ||
* Minor typing change ([`f036aa8`](https://github.com/panates/postgresql-client/commit/f036aa833d8b973fd5e1cc8d229cac4b199a5c48)) | ||
# v2.10.2 | ||
@@ -2,0 +10,0 @@ [2024-01-08] |
{ | ||
"name": "postgresql-client", | ||
"description": "Enterprise level PostgreSQL client for JavaScript", | ||
"version": "2.10.2", | ||
"version": "2.10.3", | ||
"author": "Panates", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
/// <reference types="node" /> | ||
import type { PoolConfiguration as LPoolConfiguration } from "lightning-pool"; | ||
import type tls from 'tls'; | ||
import { SmartBufferConfig } from '../protocol/smart-buffer.js'; | ||
import type { ConnectionOptions as TlsConnectionOptions } from 'tls'; | ||
import type { SmartBufferConfig } from '../protocol/smart-buffer.js'; | ||
import type { DebugLogger } from '../types.js'; | ||
@@ -13,3 +13,3 @@ export interface DatabaseConnectionParams { | ||
applicationName?: string; | ||
ssl?: tls.ConnectionOptions; | ||
ssl?: TlsConnectionOptions; | ||
timezone?: string; | ||
@@ -16,0 +16,0 @@ schema?: string; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
414727