curtain-web-api 1.0.18 → 1.0.19
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.
|
@@ -404,7 +404,7 @@ class CurtainWebAPI {
|
|
|
404
404
|
let headers = new axios_1.AxiosHeaders();
|
|
405
405
|
headers["Accept"] = "application/json";
|
|
406
406
|
headers["Content-Type"] = "application/json";
|
|
407
|
-
return axios_1.default.get(this.baseURL + "
|
|
407
|
+
return axios_1.default.get(this.baseURL + "data_filter_list/get_all_category/", { headers: headers, responseType: "json" }).then((response) => { return response; });
|
|
408
408
|
}
|
|
409
409
|
}
|
|
410
410
|
exports.CurtainWebAPI = CurtainWebAPI;
|
package/package.json
CHANGED
|
@@ -420,7 +420,7 @@ export class CurtainWebAPI {
|
|
|
420
420
|
let headers = new AxiosHeaders();
|
|
421
421
|
headers["Accept"] = "application/json";
|
|
422
422
|
headers["Content-Type"] = "application/json";
|
|
423
|
-
return axios.get(this.baseURL + "
|
|
423
|
+
return axios.get(this.baseURL + "data_filter_list/get_all_category/", {headers: headers, responseType: "json"}).then((response) => {return response;});
|
|
424
424
|
}
|
|
425
425
|
}
|
|
426
426
|
|