bytex-sdk 1.7.4 → 1.7.6

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 +1 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -359,6 +359,7 @@ export class BytexCloud {
359
359
  */
360
360
  async download(name, password) {
361
361
  this._requireKey();
362
+ // ByteX Worker always expects .stream.btx for action=view
362
363
  const streamName = name.endsWith('.stream.btx') ? name : `${name}.stream.btx`;
363
364
  let url = `${this.workerUrl}?action=view&key=${this.apiKey}&file=${encodeURIComponent(streamName)}`;
364
365
  if (password) url += `&password=${encodeURIComponent(password)}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bytex-sdk",
3
- "version": "1.7.4",
3
+ "version": "1.7.6",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {