@sqb/oracle 4.26.1 → 5.0.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.
Files changed (2) hide show
  1. package/ora-cursor.d.ts +1 -1
  2. package/package.json +4 -4
package/ora-cursor.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { Adapter, RowType } from '@sqb/connect';
2
- import { ResultSet } from 'oracledb';
2
+ import type { ResultSet } from 'oracledb';
3
3
  export declare class OraCursor implements Adapter.Cursor {
4
4
  private _resultSet?;
5
5
  private readonly _rowType;
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.26.1",
4
+ "version": "5.0.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.26.1",
12
- "@sqb/connect": "^4.26.1",
13
- "@sqb/oracle-dialect": "^4.26.1",
11
+ "@sqb/builder": "^5.0.0",
12
+ "@sqb/connect": "^5.0.0",
13
+ "@sqb/oracle-dialect": "^5.0.0",
14
14
  "oracledb": ">= 6.4.0"
15
15
  },
16
16
  "type": "module",