chayns-api 1.0.41 → 1.0.42

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.
@@ -397,7 +397,7 @@ class AppWrapper {
397
397
  id: options.id,
398
398
  showName: options.showName,
399
399
  position: options.position,
400
- params: options.params
400
+ params: new URLSearchParams(options.params).toString() || undefined
401
401
  }, {
402
402
  awaitResult: false
403
403
  });
@@ -353,7 +353,7 @@ export class AppWrapper {
353
353
  id: options.id,
354
354
  showName: options.showName,
355
355
  position: options.position,
356
- params: options.params
356
+ params: new URLSearchParams(options.params).toString() || undefined
357
357
  }, {
358
358
  awaitResult: false
359
359
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",