@arsedizioni/ars-utils 21.2.237 → 21.2.239

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.
@@ -3297,7 +3297,13 @@ class ClipperService {
3297
3297
  * @param params - The notes search parameters.
3298
3298
  */
3299
3299
  queryNotes(params) {
3300
- return this.httpClient.post(this._serviceUri + '/account/notes', params);
3300
+ return this.httpClient.post(this._serviceUri + '/account/notes', params).pipe(map((r) => {
3301
+ // Store teams
3302
+ if (r.success) {
3303
+ this._teams = r.value.teams;
3304
+ }
3305
+ return r;
3306
+ }));
3301
3307
  }
3302
3308
  /**
3303
3309
  * Deletes the specified document notes.