@kubun/db-postgres 0.3.0 → 0.3.2
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 +3 -3
package/lib/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { AbstractPostgresAdapter
|
|
1
|
+
import { AbstractPostgresAdapter } from '@kubun/db-adapter';
|
|
2
2
|
import type { Dialect } from 'kysely';
|
|
3
3
|
import { type Options, type PostgresType } from 'postgres';
|
|
4
4
|
export type AdapterParams = {
|
|
5
5
|
url: string;
|
|
6
6
|
options?: Options<Record<string, PostgresType>>;
|
|
7
7
|
};
|
|
8
|
-
export declare class PostgresAdapter extends AbstractPostgresAdapter
|
|
8
|
+
export declare class PostgresAdapter extends AbstractPostgresAdapter {
|
|
9
9
|
#private;
|
|
10
10
|
constructor(params: AdapterParams);
|
|
11
11
|
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,uBAAuB,EAAE,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,uBAAuB,EAAE,MAAM,mBAAmB,CAAA;AAC3D,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,QAAQ,CAAA;AAErC,OAAiB,EAAE,KAAK,OAAO,EAAE,KAAK,YAAY,EAAE,MAAM,UAAU,CAAA;AAEpE,MAAM,MAAM,aAAa,GAAG;IAC1B,GAAG,EAAE,MAAM,CAAA;IACX,OAAO,CAAC,EAAE,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,YAAY,CAAC,CAAC,CAAA;CAChD,CAAA;AAED,qBAAa,eAAgB,SAAQ,uBAAuB;;gBAG9C,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-postgres",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"license": "see LICENSE.md",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"type": "module",
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
],
|
|
16
16
|
"sideEffects": false,
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"kysely": "^0.
|
|
18
|
+
"kysely": "^0.28.2",
|
|
19
19
|
"kysely-postgres-js": "^2.0.0",
|
|
20
20
|
"postgres": "^3.4.5",
|
|
21
|
-
"@kubun/db-adapter": "^0.3.
|
|
21
|
+
"@kubun/db-adapter": "^0.3.2"
|
|
22
22
|
},
|
|
23
23
|
"scripts": {
|
|
24
24
|
"build:clean": "del lib",
|