@howells/stow-server 0.1.0 → 0.1.1

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
@@ -98,10 +98,10 @@ var StowServer = class {
98
98
  constructor(config) {
99
99
  if (typeof config === "string") {
100
100
  this.apiKey = config;
101
- this.baseUrl = "https://stow.sh";
101
+ this.baseUrl = "https://app.stow.sh";
102
102
  } else {
103
103
  this.apiKey = config.apiKey;
104
- this.baseUrl = config.baseUrl || "https://stow.sh";
104
+ this.baseUrl = config.baseUrl || "https://app.stow.sh";
105
105
  this.bucket = config.bucket;
106
106
  }
107
107
  }
package/dist/index.mjs CHANGED
@@ -73,10 +73,10 @@ var StowServer = class {
73
73
  constructor(config) {
74
74
  if (typeof config === "string") {
75
75
  this.apiKey = config;
76
- this.baseUrl = "https://stow.sh";
76
+ this.baseUrl = "https://app.stow.sh";
77
77
  } else {
78
78
  this.apiKey = config.apiKey;
79
- this.baseUrl = config.baseUrl || "https://stow.sh";
79
+ this.baseUrl = config.baseUrl || "https://app.stow.sh";
80
80
  this.bucket = config.bucket;
81
81
  }
82
82
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@howells/stow-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Server-side SDK for Stow file storage",
5
5
  "license": "MIT",
6
6
  "repository": {