@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.
- package/lib/cjs/app/CoreApp.js +1 -1
- package/lib/mjs/app/CoreApp.js +1 -1
- package/package.json +1 -1
- package/src/app/CoreApp.ts +1 -1
package/lib/cjs/app/CoreApp.js
CHANGED
|
@@ -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
|
|
1553
|
+
token
|
|
1554
1554
|
}, {
|
|
1555
1555
|
onError: (error) => {
|
|
1556
1556
|
console.error(`CoreApp.${this.name}.signout error`, error);
|
package/lib/mjs/app/CoreApp.js
CHANGED
|
@@ -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
|
|
1550
|
+
token
|
|
1551
1551
|
}, {
|
|
1552
1552
|
onError: (error) => {
|
|
1553
1553
|
console.error(`CoreApp.${this.name}.signout error`, error);
|
package/package.json
CHANGED