washday-sdk 0.0.176 → 0.0.177

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.
@@ -2,6 +2,7 @@ import axios from 'axios';
2
2
  // Define the type for the Axios instance
3
3
  let axiosInstance = null;
4
4
  // const BASE_URL: string = 'http://localhost:5555/';
5
+ // const BASE_URL: string = 'https://washday-backend-development.herokuapp.com/';
5
6
  const BASE_URL = 'https://washday-backend.herokuapp.com/';
6
7
  // Function to create or return the singleton instance
7
8
  const getAxiosInstance = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "washday-sdk",
3
- "version": "0.0.176",
3
+ "version": "0.0.177",
4
4
  "description": "Washday utilities functions and API",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -4,6 +4,7 @@ import axios, { AxiosInstance, AxiosRequestConfig } from 'axios';
4
4
  let axiosInstance: AxiosInstance | null = null;
5
5
 
6
6
  // const BASE_URL: string = 'http://localhost:5555/';
7
+ // const BASE_URL: string = 'https://washday-backend-development.herokuapp.com/';
7
8
  const BASE_URL: string = 'https://washday-backend.herokuapp.com/';
8
9
 
9
10
  // Function to create or return the singleton instance