prostgles-client 4.0.22 → 4.0.23
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/dist/typeTests.js +1 -1
- package/lib/typeTests.ts +1 -1
- package/package.json +2 -2
package/dist/typeTests.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
const filter = {};
|
|
7
7
|
const filterCheck = (f) => { };
|
|
8
8
|
filterCheck(filter);
|
|
9
|
-
const sub = dbo.table1.
|
|
9
|
+
const sub = dbo.table1.size;
|
|
10
10
|
const f = (a) => { };
|
|
11
11
|
// f(dbo.table1)
|
|
12
12
|
const ra = (a) => {
|
package/lib/typeTests.ts
CHANGED
|
@@ -23,7 +23,7 @@ import { DBHandlerClient, TableHandlerClient } from "./prostgles";
|
|
|
23
23
|
const filterCheck = <F extends FullFilter<void, void> | undefined>(f: F) => {};
|
|
24
24
|
filterCheck(filter);
|
|
25
25
|
|
|
26
|
-
const sub: TableHandler["
|
|
26
|
+
const sub: TableHandler["size"] = dbo.table1.size
|
|
27
27
|
|
|
28
28
|
const f = <A extends TableHandler>(a: A) => {};
|
|
29
29
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prostgles-client",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.23",
|
|
4
4
|
"description": "Reactive client for Postgres",
|
|
5
5
|
"main": "dist/prostgles-full.js",
|
|
6
6
|
"types": "dist/prostgles-full.d.ts",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"pushpublish": "npm version patch --git-tag-version false && git push && npm publish"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"prostgles-types": "^4.0.
|
|
31
|
+
"prostgles-types": "^4.0.40"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/node": "^14.14.14",
|