flamerest 1.0.84 → 1.0.85
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/REST.js +1 -1
- package/package.json +1 -1
package/REST.js
CHANGED
|
@@ -490,7 +490,7 @@ class FLAMEREST {
|
|
|
490
490
|
return new Promise((resolve, reject) => { resolve(JSON.parse(window.sessionStorage.getItem("crudschema"))) });
|
|
491
491
|
}
|
|
492
492
|
|
|
493
|
-
async auth(username, password, isNeedToken) {
|
|
493
|
+
async auth(username, password, isNeedToken, pushNotificationToken) {
|
|
494
494
|
|
|
495
495
|
let resp = null;
|
|
496
496
|
if (this.token !== null && this.token !== undefined && this.token !== 'undefined' && (username === null || username === undefined)) {
|