chayns-api 2.4.29 → 2.4.30

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.
@@ -584,6 +584,7 @@ class AppWrapper {
584
584
  storageRemoveItem: async (key, accessMode) => {
585
585
  this.appCall(73, {
586
586
  key,
587
+ object: ['iOS', 'Mac OS'].includes(this.values.device.os) ? JSON.stringify(null) : undefined,
587
588
  accessMode
588
589
  }, {
589
590
  awaitResult: false
@@ -551,6 +551,7 @@ export class AppWrapper {
551
551
  storageRemoveItem: async (key, accessMode) => {
552
552
  this.appCall(73, {
553
553
  key,
554
+ object: ['iOS', 'Mac OS'].includes(this.values.device.os) ? JSON.stringify(null) : undefined,
554
555
  accessMode
555
556
  }, {
556
557
  awaitResult: false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chayns-api",
3
- "version": "2.4.29",
3
+ "version": "2.4.30",
4
4
  "description": "new chayns api",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",