@kubun/db-expo 0.3.0 → 0.3.1
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/lib/index.d.ts +2 -2
- package/lib/index.d.ts.map +1 -1
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AbstractSQLiteAdapter
|
|
1
|
+
import { AbstractSQLiteAdapter } from '@kubun/db-adapter';
|
|
2
2
|
import type { Dialect } from 'kysely';
|
|
3
3
|
import { type ExpoDialectParams } from './driver.js';
|
|
4
4
|
export type AdapterParams = ExpoDialectParams;
|
|
5
|
-
export declare class ExpoAdapter extends AbstractSQLiteAdapter
|
|
5
|
+
export declare class ExpoAdapter extends AbstractSQLiteAdapter {
|
|
6
6
|
#private;
|
|
7
7
|
constructor(params: AdapterParams);
|
|
8
8
|
get dialect(): Dialect;
|
package/lib/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,qBAAqB,EAAE,MAAM,mBAAmB,CAAA;AACzD,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAErC,OAAO,EAAe,KAAK,iBAAiB,EAAE,MAAM,aAAa,CAAA;AAEjE,MAAM,MAAM,aAAa,GAAG,iBAAiB,CAAA;AAE7C,qBAAa,WAAY,SAAQ,qBAAqB;;gBAGxC,MAAM,EAAE,aAAa;IAKjC,IAAI,OAAO,IAAI,OAAO,CAErB;CACF"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubun/db-expo",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"license": "see LICENSE.md",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"type": "module",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"expo-sqlite": "~15.1.2",
|
|
19
19
|
"kysely": "^0.27.6",
|
|
20
|
-
"@kubun/db-adapter": "^0.3.
|
|
20
|
+
"@kubun/db-adapter": "^0.3.1"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"build:clean": "del lib",
|