@arsedizioni/ars-utils 21.2.252 → 21.2.254

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.
@@ -2217,6 +2217,7 @@ class ClipperService {
2217
2217
  return this.availableChannels()?.filter(x => !x.suspended && !x.disabled && x.active === true);
2218
2218
  }, ...(ngDevMode ? [{ debugName: "activeChannels" }] : /* istanbul ignore next */ []));
2219
2219
  this.allowTags = signal(false, ...(ngDevMode ? [{ debugName: "allowTags" }] : /* istanbul ignore next */ []));
2220
+ this.pendingNotes = signal(0, ...(ngDevMode ? [{ debugName: "pendingNotes" }] : /* istanbul ignore next */ []));
2220
2221
  }
2221
2222
  get appUri() {
2222
2223
  return this._appUri;
@@ -3327,11 +3328,11 @@ class ClipperService {
3327
3328
  return this.httpClient.get(this._serviceUri + '/account/notes/trackings/' + id);
3328
3329
  }
3329
3330
  /**
3330
- * Gets the count of pending tracking notifications for document notes,
3331
+ * Gets the count of troubled tracking notifications for document notes,
3331
3332
  * which can be used to display an unread counter in the UI.
3332
3333
  */
3333
- getNotesTrackingsPending() {
3334
- return this.httpClient.get(this._serviceUri + '/account/notes/trackings/pending');
3334
+ countNotesTrackingsTroubled() {
3335
+ return this.httpClient.get(this._serviceUri + '/account/notes/trackings/troubled');
3335
3336
  }
3336
3337
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: ClipperService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3337
3338
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: ClipperService, providedIn: 'root' }); }