@staticbackend/backend 1.4.0 → 1.4.3

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/backend.d.ts CHANGED
@@ -101,6 +101,10 @@ export declare class Backend {
101
101
  ok: boolean;
102
102
  content: any;
103
103
  }>;
104
+ count(token: string, repo: string, filters: any): Promise<{
105
+ ok: boolean;
106
+ content: any;
107
+ }>;
104
108
  sudoList(rootToken: string, repo: string, param?: ListParam): Promise<{
105
109
  ok: boolean;
106
110
  content: any;
package/dist/backend.js CHANGED
@@ -161,6 +161,11 @@ class Backend {
161
161
  return yield this.req(token, "DELETE", `/db/${repo}/${id}`);
162
162
  });
163
163
  }
164
+ count(token, repo, filters) {
165
+ return __awaiter(this, void 0, void 0, function* () {
166
+ return yield this.req(token, "POST", `/db/count/${repo}`, filters);
167
+ });
168
+ }
164
169
  sudoList(rootToken, repo, param) {
165
170
  return __awaiter(this, void 0, void 0, function* () {
166
171
  const qs = this.listParamToQuerystring(param);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staticbackend/backend",
3
- "version": "1.4.0",
3
+ "version": "1.4.3",
4
4
  "description": "Client library for StaticBackend API",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {