Comparing version 2.18.0 to 2.18.1
@@ -0,1 +1,8 @@ | ||
# v2.18.1 | ||
[2024-08-12] | ||
### Changes | ||
* Applied publint to check package.json ([`8ce6bf1`](https://github.com/panates/postgrejs/commit/8ce6bf1e67a02bed513f1238e20a62895862bb5c)) | ||
# v2.18.0 | ||
@@ -2,0 +9,0 @@ [2024-08-12] |
{ | ||
"name": "postgrejs", | ||
"description": "Professional PostgreSQL client NodeJS", | ||
"version": "2.18.0", | ||
"version": "2.18.1", | ||
"author": "Panates", | ||
@@ -9,5 +9,5 @@ "license": "MIT", | ||
"doublylinked": "^2.5.4", | ||
"lightning-pool": "^4.7.0", | ||
"lightning-pool": "^4.7.3", | ||
"postgres-bytea": "^3.0.0", | ||
"power-tasks": "^1.10.0", | ||
"power-tasks": "^1.10.1", | ||
"putil-merge": "^3.13.0", | ||
@@ -18,12 +18,20 @@ "putil-promisify": "^1.10.1", | ||
}, | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./types/index.d.ts", | ||
"default": "./esm/index.js" | ||
}, | ||
"require": { | ||
"types": "./types/index.d.ts", | ||
"default": "./cjs/index.js" | ||
}, | ||
"default": "./esm/index.js" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"main": "./cjs/index.js", | ||
"module": "./esm/index.js", | ||
"types": "./types/index.d.ts", | ||
"exports": { | ||
".": { | ||
"require": "./cjs/index.js", | ||
"import": "./esm/index.js", | ||
"types": "./types/index.d.ts" | ||
} | ||
}, | ||
"homepage": "https://postgrejs.panates.com/", | ||
@@ -30,0 +38,0 @@ "contributors": [ |
@@ -1,4 +0,4 @@ | ||
import type { BindParam } from '../connection/bind-param'; | ||
import type { BindParam } from '../connection/bind-param.js'; | ||
import type { DataFormat } from '../constants.js'; | ||
import type { DataTypeMap } from '../data-type-map'; | ||
import type { DataTypeMap } from '../data-type-map.js'; | ||
import type { DataMappingOptions } from './data-mapping-options.js'; | ||
@@ -5,0 +5,0 @@ export interface QueryOptions extends DataMappingOptions { |
@@ -1,2 +0,2 @@ | ||
import type { Cursor } from '../connection/cursor'; | ||
import type { Cursor } from '../connection/cursor.js'; | ||
import type { CommandResult } from './command-result.js'; | ||
@@ -3,0 +3,0 @@ export interface QueryResult extends CommandResult { |
@@ -1,2 +0,2 @@ | ||
import type { DataTypeMap } from '../data-type-map'; | ||
import type { DataTypeMap } from '../data-type-map.js'; | ||
import type { DataMappingOptions } from './data-mapping-options.js'; | ||
@@ -3,0 +3,0 @@ export interface ScriptExecuteOptions extends DataMappingOptions { |
@@ -1,2 +0,2 @@ | ||
import type { DataTypeMap } from '../data-type-map'; | ||
import type { DataTypeMap } from '../data-type-map.js'; | ||
import type { OID } from '../types.js'; | ||
@@ -3,0 +3,0 @@ export interface StatementPrepareOptions { |
import type { DataMappingOptions } from './interfaces/data-mapping-options.js'; | ||
import type { SmartBuffer } from './protocol/smart-buffer'; | ||
import type { SmartBuffer } from './protocol/smart-buffer.js'; | ||
export type OID = number; | ||
@@ -4,0 +4,0 @@ export type Maybe<T> = T | undefined; |
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
422884
216
Yes
+ Addedts-gems@3.6.0(transitive)
- Removedts-gems@3.10.0(transitive)
Updatedlightning-pool@^4.7.3
Updatedpower-tasks@^1.10.1