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.
Files changed (2) hide show
  1. package/REST.js +1 -1
  2. 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)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "flamerest",
3
- "version": "1.0.84",
3
+ "version": "1.0.85",
4
4
  "description": "",
5
5
  "main": "REST.js",
6
6
  "typings": "./REST.d.ts",