bytex-sdk 1.7.4 → 1.7.5

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.
Files changed (2) hide show
  1. package/index.js +4 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -359,7 +359,10 @@ export class BytexCloud {
359
359
  */
360
360
  async download(name, password) {
361
361
  this._requireKey();
362
- const streamName = name.endsWith('.stream.btx') ? name : `${name}.stream.btx`;
362
+ // Only append .stream.btx if it's a media file or doesn't have an extension
363
+ const isDataFile = name.endsWith('.json') || name.endsWith('.txt') || name.endsWith('.csv');
364
+ const streamName = (isDataFile || name.endsWith('.stream.btx')) ? name : `${name}.stream.btx`;
365
+
363
366
  let url = `${this.workerUrl}?action=view&key=${this.apiKey}&file=${encodeURIComponent(streamName)}`;
364
367
  if (password) url += `&password=${encodeURIComponent(password)}`;
365
368
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bytex-sdk",
3
- "version": "1.7.4",
3
+ "version": "1.7.5",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {