@arsedizioni/ars-utils 21.2.205 → 21.2.207
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 +6 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +28 -5
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +4 -0
|
@@ -3328,6 +3328,12 @@ class ClipperService {
|
|
|
3328
3328
|
getPropertyTrackings(id) {
|
|
3329
3329
|
return this.httpClient.get(this._serviceUri + '/account/properties/trackings/' + id);
|
|
3330
3330
|
}
|
|
3331
|
+
/**
|
|
3332
|
+
* Gets the count of pending tracking notifications for document properties, which can be used to display an unread counter in the UI.
|
|
3333
|
+
*/
|
|
3334
|
+
getPropertiesTrackingsPending() {
|
|
3335
|
+
return this.httpClient.get(this._serviceUri + '/account/properties/trackings/pending');
|
|
3336
|
+
}
|
|
3331
3337
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClipperService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3332
3338
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.9", ngImport: i0, type: ClipperService, providedIn: 'root' }); }
|
|
3333
3339
|
}
|