@sqb/sqljs 4.21.1 → 4.23.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/sqljs",
3
3
  "description": "SQB serialization extension for sql.js driver",
4
- "version": "4.21.1",
4
+ "version": "4.23.0",
5
5
  "author": "Panates",
6
6
  "license": "Apache-2.0",
7
7
  "dependencies": {
@@ -9,10 +9,10 @@
9
9
  "tslib": "^2.8.1"
10
10
  },
11
11
  "peerDependencies": {
12
- "@sqb/builder": "^4.21.1",
13
- "@sqb/connect": "^4.21.1",
14
- "@sqb/sqlite-dialect": "^4.21.1",
15
- "sql.js": "^1.13.0"
12
+ "@sqb/builder": "^4.23.0",
13
+ "@sqb/connect": "^4.23.0",
14
+ "@sqb/sqlite-dialect": "^4.23.0",
15
+ "sql.js": "^1.14.1"
16
16
  },
17
17
  "type": "module",
18
18
  "module": "./index.js",
@@ -1,5 +1,5 @@
1
1
  import '@sqb/sqlite-dialect';
2
- import { Adapter, ClientConfiguration } from '@sqb/connect';
2
+ import type { Adapter, ClientConfiguration } from '@sqb/connect';
3
3
  export declare class SqljsAdapter 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 { Database } from 'sql.js';
3
3
  export declare class SqljsConnection implements Adapter.Connection {
4
4
  private _onClose;
package/sqljs-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
  export declare class SqljsCursor implements Adapter.Cursor {
3
3
  private _stmt?;
4
4
  private readonly _rowType;