bdy 1.7.47-dev → 1.7.48-dev

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bdy",
3
3
  "preferGlobal": false,
4
- "version": "1.7.47-dev",
4
+ "version": "1.7.48-dev",
5
5
  "type": "commonjs",
6
6
  "license": "MIT",
7
7
  "dependencies": {
@@ -165,7 +165,7 @@ class AgentSystem {
165
165
  const env = getVersionEnv();
166
166
  const version = getVersionWithoutEnv();
167
167
  const archive = this.getBinaryArchive();
168
- return this.downloadFile(`https://es.buddy.works/tunnel/${env}/${version}/${archive}`, archivePath);
168
+ return this.downloadFile(`https://es.buddy.works/bdy/${env}/${version}/${archive}`, archivePath);
169
169
  }
170
170
 
171
171
  saveSystemConfig(id, host, token, port) {
@@ -56,7 +56,7 @@ class AgentWindows extends AgentSystem {
56
56
  }
57
57
 
58
58
  downloadNssm() {
59
- return this.downloadFile('https://es.buddy.works/tunnel/nssm.zip', this.getNssmArchivePath());
59
+ return this.downloadFile('https://es.buddy.works/bdy/nssm.zip', this.getNssmArchivePath());
60
60
  }
61
61
 
62
62
  extractNssm() {
package/src/utils.js CHANGED
@@ -277,7 +277,7 @@ const getLatestVersion = async () => {
277
277
  setTimeout(() => {
278
278
  c.abort();
279
279
  }, 10000);
280
- const response = await fetch(`https://es.buddy.works/tunnel/${env}/latest`, {
280
+ const response = await fetch(`https://es.buddy.works/bdy/${env}/latest`, {
281
281
  method: 'GET',
282
282
  signal: c.signal,
283
283
  });