@plugable-io/js 0.0.9 → 0.0.11

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/index.js CHANGED
@@ -142,7 +142,7 @@ var BucketClient = class {
142
142
  __publicField(this, "config");
143
143
  this.config = config;
144
144
  this.client = import_axios.default.create({
145
- baseURL: config.baseUrl || "http://localhost:3000/v1",
145
+ baseURL: config.baseUrl || "https://api.plugable.one/v1",
146
146
  // Enable axios to respect cache headers
147
147
  adapter: "fetch"
148
148
  // Use fetch adapter which respects browser cache
package/dist/index.mjs CHANGED
@@ -107,7 +107,7 @@ var BucketClient = class {
107
107
  __publicField(this, "config");
108
108
  this.config = config;
109
109
  this.client = axios.create({
110
- baseURL: config.baseUrl || "http://localhost:3000/v1",
110
+ baseURL: config.baseUrl || "https://api.plugable.one/v1",
111
111
  // Enable axios to respect cache headers
112
112
  adapter: "fetch"
113
113
  // Use fetch adapter which respects browser cache
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plugable-io/js",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "JavaScript client for Plugable File Management API",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",