zek 14.2.67 → 14.2.68

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/fesm2020/zek.mjs CHANGED
@@ -1148,11 +1148,13 @@ class AuthService {
1148
1148
  if (timeout < minRefreshTime) {
1149
1149
  timeout = minRefreshTime;
1150
1150
  }
1151
+ console.log('setInterval timeout', timeout);
1151
1152
  this._timerId = setInterval(this._emitRefreshToken, timeout);
1152
1153
  }
1153
1154
  }
1154
1155
  _stopRefreshTokenTimer() {
1155
1156
  if (typeof this._timerId === 'number') {
1157
+ console.log('clearInterval timerId', this._timerId);
1156
1158
  clearInterval(this._timerId);
1157
1159
  }
1158
1160
  }