@etsoo/appscript 1.5.32 → 1.5.33

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.
@@ -1550,7 +1550,7 @@ class CoreApp {
1550
1550
  if (token) {
1551
1551
  const result = await new AuthApi_1.AuthApi(this).signout({
1552
1552
  deviceId: this.deviceId,
1553
- token: this.encrypt(token)
1553
+ token
1554
1554
  }, {
1555
1555
  onError: (error) => {
1556
1556
  console.error(`CoreApp.${this.name}.signout error`, error);
@@ -1547,7 +1547,7 @@ export class CoreApp {
1547
1547
  if (token) {
1548
1548
  const result = await new AuthApi(this).signout({
1549
1549
  deviceId: this.deviceId,
1550
- token: this.encrypt(token)
1550
+ token
1551
1551
  }, {
1552
1552
  onError: (error) => {
1553
1553
  console.error(`CoreApp.${this.name}.signout error`, error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.5.32",
3
+ "version": "1.5.33",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -2125,7 +2125,7 @@ export abstract class CoreApp<
2125
2125
  const result = await new AuthApi(this).signout(
2126
2126
  {
2127
2127
  deviceId: this.deviceId,
2128
- token: this.encrypt(token)
2128
+ token
2129
2129
  },
2130
2130
  {
2131
2131
  onError: (error) => {