curtain-web-api 1.0.17 → 1.0.18

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.
@@ -33,6 +33,7 @@ export declare class CurtainWebAPI {
33
33
  saveDataFilterList(name: string, data: string, category?: string): Promise<import("axios").AxiosResponse<any, any>>;
34
34
  getDataFilterListByID(id: number): Promise<import("axios").AxiosResponse<any, any>>;
35
35
  getDataFilterList(title?: string, searchTerm?: string, category?: string, limit?: number): Promise<import("axios").AxiosResponse<any, any>>;
36
+ getDataFilterListByCategory(category: string): Promise<import("axios").AxiosResponse<any, any>>;
36
37
  deleteDataFilterList(id: number): Promise<import("axios").AxiosResponse<any, any>>;
37
38
  downloadStats(): Promise<import("axios").AxiosResponse<any, any>>;
38
39
  postInteractomeAtlasProxy(genes: string[], filterParameter: string): Promise<import("axios").AxiosResponse<any, any>>;
@@ -355,6 +355,11 @@ class CurtainWebAPI {
355
355
  params.append("limit", limit.toString());
356
356
  return this.axiosInstance.get(this.baseURL + "data_filter_list/", { responseType: "json", params });
357
357
  }
358
+ getDataFilterListByCategory(category) {
359
+ let params = new URLSearchParams();
360
+ params.append("category_exact", category);
361
+ return this.axiosInstance.get(this.baseURL + "data_filter_list/", { responseType: "json", params });
362
+ }
358
363
  deleteDataFilterList(id) {
359
364
  let headers = new axios_1.AxiosHeaders();
360
365
  headers["Accept"] = "application/json";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "curtain-web-api",
3
- "version": "1.0.17",
3
+ "version": "1.0.18",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",
@@ -345,7 +345,12 @@ export class CurtainWebAPI {
345
345
  });
346
346
  }
347
347
 
348
- getDataFilterList(title: string = "", searchTerm: string = "", category: string = "", limit: number = 99999999) {
348
+ getDataFilterList(
349
+ title: string = "",
350
+ searchTerm: string = "",
351
+ category: string = "",
352
+ limit: number = 99999999
353
+ ) {
349
354
  let params = new URLSearchParams();
350
355
  if (title != "") {
351
356
  params.append("name", title)
@@ -361,6 +366,12 @@ export class CurtainWebAPI {
361
366
  return this.axiosInstance.get(this.baseURL + "data_filter_list/", {responseType:"json", params})
362
367
  }
363
368
 
369
+ getDataFilterListByCategory(category: string) {
370
+ let params = new URLSearchParams();
371
+ params.append("category_exact", category)
372
+ return this.axiosInstance.get(this.baseURL + "data_filter_list/", {responseType:"json", params})
373
+ }
374
+
364
375
  deleteDataFilterList(id: number) {
365
376
  let headers = new AxiosHeaders();
366
377
  headers["Accept"] = "application/json";