@sqb/oracle 4.21.1 → 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/helpers.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { ClientConfiguration } from '@sqb/connect';
2
- import { ConnectionAttributes } from 'oracledb';
1
+ import type { ClientConfiguration } from '@sqb/connect';
2
+ import type { ConnectionAttributes } from 'oracledb';
3
3
  export declare function clientConfigurationToDriver(config: ClientConfiguration): ConnectionAttributes;
package/ora-adapter.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import '@sqb/oracle-dialect';
2
- import { Adapter, ClientConfiguration } from '@sqb/connect';
2
+ import type { Adapter, ClientConfiguration } from '@sqb/connect';
3
3
  export declare class OraAdapter 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, QueryRequest } from '@sqb/connect';
2
2
  import oracledb from 'oracledb';
3
3
  export declare const dataTypeNames: {
4
4
  DB_TYPE_BFILE: string;
package/ora-cursor.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Adapter, RowType } from '@sqb/connect';
1
+ import type { Adapter, RowType } from '@sqb/connect';
2
2
  import { ResultSet } from 'oracledb';
3
3
  export declare class OraCursor implements Adapter.Cursor {
4
4
  private _resultSet?;
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@sqb/oracle",
3
3
  "description": "SQB serialization extension for Oracle database",
4
- "version": "4.21.1",
4
+ "version": "4.22.0",
5
5
  "author": "Panates",
6
6
  "license": "Apache-2.0",
7
7
  "dependencies": {
8
8
  "tslib": "^2.8.1"
9
9
  },
10
10
  "peerDependencies": {
11
- "@sqb/builder": "^4.21.1",
12
- "@sqb/connect": "^4.21.1",
13
- "@sqb/oracle-dialect": "^4.21.1",
11
+ "@sqb/builder": "^4.22.0",
12
+ "@sqb/connect": "^4.22.0",
13
+ "@sqb/oracle-dialect": "^4.22.0",
14
14
  "oracledb": ">= 6.4.0"
15
15
  },
16
16
  "type": "module",