@sqb/postgres 4.21.0 → 4.22.0

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sqb/postgres",
3
3
  "description": "SQB serialization extension for PostgreSQL database",
4
- "version": "4.21.0",
4
+ "version": "4.22.0",
5
5
  "author": "Panates",
6
6
  "license": "Apache-2.0",
7
7
  "dependencies": {
@@ -9,9 +9,9 @@
9
9
  "tslib": "^2.8.1"
10
10
  },
11
11
  "peerDependencies": {
12
- "@sqb/builder": "^4.21.0",
13
- "@sqb/connect": "^4.21.0",
14
- "@sqb/postgres-dialect": "^4.21.0",
12
+ "@sqb/builder": "^4.22.0",
13
+ "@sqb/connect": "^4.22.0",
14
+ "@sqb/postgres-dialect": "^4.22.0",
15
15
  "postgrejs": ">=2.15.1 <3.0.0"
16
16
  },
17
17
  "type": "module",
package/pg-adapter.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import '@sqb/postgres-dialect';
2
- import { Adapter, ClientConfiguration, DataType } from '@sqb/connect';
2
+ import { type Adapter, type ClientConfiguration, DataType } from '@sqb/connect';
3
3
  export declare class PgAdapter implements Adapter {
4
4
  driver: string;
5
5
  dialect: string;
@@ -1,4 +1,4 @@
1
- import { Adapter, QueryRequest } from '@sqb/connect';
1
+ import { type Adapter, type QueryRequest } from '@sqb/connect';
2
2
  import { Connection, FieldInfo } from 'postgrejs';
3
3
  export declare class PgConnection implements Adapter.Connection {
4
4
  private intlcon?;