@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.
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +7 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +15 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs +2 -2
- package/fesm2022/arsedizioni-ars-utils-ui.application.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +6 -3
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +4 -1
|
@@ -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.
|