summaryrefslogtreecommitdiff
path: root/src/clients/api_client.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/clients/api_client.ts')
-rw-r--r--src/clients/api_client.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/clients/api_client.ts b/src/clients/api_client.ts
index 81ae482..e544f16 100644
--- a/src/clients/api_client.ts
+++ b/src/clients/api_client.ts
@@ -44,6 +44,14 @@ export class ApiClient {
return response
}
+ async del(path: string) {
+ const request_url = `${ this.url }${ path }`;
+ const options = this.authorizationHeaders();
+
+ const response = await axios.delete(request_url, options);
+ return response;
+ }
+
async getProduct(id: string) {
const request_url = `${ this.url }/products/${ id }`;
const [product_response, product_reviews] = await Promise.all([