prostgles-client 4.0.22 → 4.0.24

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/README.md CHANGED
@@ -5,7 +5,8 @@
5
5
  [![npm version](https://img.shields.io/npm/v/prostgles-client.svg?style=flat)](https://www.npmjs.com/package/prostgles-client)
6
6
  [![Dependency Status](https://david-dm.org/prostgles/prostgles-client-js/status.svg)](https://david-dm.org/prostgles/prostgles-client-js/status.svg#info=dependencies)
7
7
  [![Known Vulnerabilities](https://snyk.io/test/github/prostgles/prostgles-client-js/badge.svg)](https://snyk.io/test/github/prostgles/prostgles-client-js)
8
- ![tests](https://github.com/prostgles/prostgles-server-js/workflows/tests/badge.svg?branch=master)
8
+ ![Tests](https://github.com/prostgles/prostgles-server-js/actions/workflows/main.yml/badge.svg)
9
+
9
10
 
10
11
 
11
12
  ## Installation
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.count;
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["count"] = dbo.table1.count
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.22",
3
+ "version": "4.0.24",
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.38"
31
+ "prostgles-types": "^4.0.40"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@types/node": "^14.14.14",