@staticbackend/backend 1.4.0 → 1.5.0-alpha.0
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 +12 -0
- package/dist/backend.js +21 -4
- package/package.json +1 -1
package/dist/backend.d.ts
CHANGED
|
@@ -101,6 +101,18 @@ export declare class Backend {
|
|
|
101
101
|
ok: boolean;
|
|
102
102
|
content: any;
|
|
103
103
|
}>;
|
|
104
|
+
deleteBulk(token: string, repo: string, filters: any): Promise<{
|
|
105
|
+
ok: boolean;
|
|
106
|
+
content: any;
|
|
107
|
+
}>;
|
|
108
|
+
count(token: string, repo: string, filters: any): Promise<{
|
|
109
|
+
ok: boolean;
|
|
110
|
+
content: any;
|
|
111
|
+
}>;
|
|
112
|
+
search(token: string, repo: string, keywords: string): Promise<{
|
|
113
|
+
ok: boolean;
|
|
114
|
+
content: any;
|
|
115
|
+
}>;
|
|
104
116
|
sudoList(rootToken: string, repo: string, param?: ListParam): Promise<{
|
|
105
117
|
ok: boolean;
|
|
106
118
|
content: any;
|
package/dist/backend.js
CHANGED
|
@@ -39,7 +39,7 @@ class Backend {
|
|
|
39
39
|
}
|
|
40
40
|
let headers = {
|
|
41
41
|
"Content-Type": ct,
|
|
42
|
-
"SB-PUBLIC-KEY": this.pubKey
|
|
42
|
+
"SB-PUBLIC-KEY": this.pubKey,
|
|
43
43
|
};
|
|
44
44
|
if (token) {
|
|
45
45
|
headers["Authorization"] = `Bearer ${token}`;
|
|
@@ -47,7 +47,7 @@ class Backend {
|
|
|
47
47
|
const resp = yield fetch(`${this.baseURL}${path}`, {
|
|
48
48
|
method: method,
|
|
49
49
|
headers: headers,
|
|
50
|
-
body: rawBody
|
|
50
|
+
body: rawBody,
|
|
51
51
|
});
|
|
52
52
|
var content = null;
|
|
53
53
|
if (resp.status > 299) {
|
|
@@ -161,6 +161,23 @@ class Backend {
|
|
|
161
161
|
return yield this.req(token, "DELETE", `/db/${repo}/${id}`);
|
|
162
162
|
});
|
|
163
163
|
}
|
|
164
|
+
deleteBulk(token, repo, filters) {
|
|
165
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
166
|
+
const x = Buffer.from(JSON.stringify(filters)).toString("base64");
|
|
167
|
+
return yield this.req(token, "DELETE", `/db/${repo}?bulk=1&x=${x}`);
|
|
168
|
+
});
|
|
169
|
+
}
|
|
170
|
+
count(token, repo, filters) {
|
|
171
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
172
|
+
return yield this.req(token, "POST", `/db/count/${repo}`, filters);
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
search(token, repo, keywords) {
|
|
176
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
177
|
+
const data = { col: repo, keywords: keywords };
|
|
178
|
+
return yield this.req(token, "POST", "/search", data);
|
|
179
|
+
});
|
|
180
|
+
}
|
|
164
181
|
sudoList(rootToken, repo, param) {
|
|
165
182
|
return __awaiter(this, void 0, void 0, function* () {
|
|
166
183
|
const qs = this.listParamToQuerystring(param);
|
|
@@ -200,7 +217,7 @@ class Backend {
|
|
|
200
217
|
let fd = new formData();
|
|
201
218
|
fd.append("file", buf, {
|
|
202
219
|
contentType: "application/octect-stream",
|
|
203
|
-
filename: "file-upload"
|
|
220
|
+
filename: "file-upload",
|
|
204
221
|
});
|
|
205
222
|
const ct = `multipart/form-data; boundary=${fd.getBoundary()}`;
|
|
206
223
|
return yield this.rawreq(ct, token, "POST", "/storage/upload", fd);
|
|
@@ -221,7 +238,7 @@ class Backend {
|
|
|
221
238
|
let fd = new formData();
|
|
222
239
|
fd.append("file", buf, {
|
|
223
240
|
contentType: "application/octect-stream",
|
|
224
|
-
filename: "file-upload"
|
|
241
|
+
filename: "file-upload",
|
|
225
242
|
});
|
|
226
243
|
fd.append("width", maxWidth);
|
|
227
244
|
const ct = `multipart/form-data; boundary=${fd.getBoundary()}`;
|