chayns-api 2.0.2 → 2.0.3

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.
@@ -443,7 +443,7 @@ class AppWrapper {
443
443
  id: options.id,
444
444
  showName: options.showName,
445
445
  position: options.position,
446
- params: new URLSearchParams(options.params).toString() || undefined
446
+ params: [new URLSearchParams(options.params).toString()] || undefined
447
447
  }, {
448
448
  awaitResult: false
449
449
  });
@@ -407,7 +407,7 @@ export class AppWrapper {
407
407
  id: options.id,
408
408
  showName: options.showName,
409
409
  position: options.position,
410
- params: new URLSearchParams(options.params).toString() || undefined
410
+ params: [new URLSearchParams(options.params).toString()] || undefined
411
411
  }, {
412
412
  awaitResult: false
413
413
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",