@arsedizioni/ars-utils 21.2.231 → 21.2.233
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 +22 -21
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +22 -22
- 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 +25 -24
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +13 -13
|
@@ -2626,7 +2626,7 @@ class ClipperService {
|
|
|
2626
2626
|
* @param params - The notification parameters including recipients and property details.
|
|
2627
2627
|
*/
|
|
2628
2628
|
notifyPropertyTo(params) {
|
|
2629
|
-
return this.httpClient.post(this._serviceUri + '/documents/
|
|
2629
|
+
return this.httpClient.post(this._serviceUri + '/documents/notes/notify', params);
|
|
2630
2630
|
}
|
|
2631
2631
|
/**
|
|
2632
2632
|
* Display a page the full document report
|
|
@@ -3290,41 +3290,42 @@ class ClipperService {
|
|
|
3290
3290
|
return this.httpClient.post(this._serviceUri + '/account/contacts/save', item);
|
|
3291
3291
|
}
|
|
3292
3292
|
///
|
|
3293
|
-
//
|
|
3293
|
+
// NOTES
|
|
3294
3294
|
///
|
|
3295
3295
|
/**
|
|
3296
|
-
* Retrieves document
|
|
3297
|
-
* @param params - The
|
|
3296
|
+
* Retrieves document notes matching the given search parameters.
|
|
3297
|
+
* @param params - The notes search parameters.
|
|
3298
3298
|
*/
|
|
3299
|
-
|
|
3300
|
-
return this.httpClient.post(this._serviceUri + '/account/
|
|
3299
|
+
queryNotes(params) {
|
|
3300
|
+
return this.httpClient.post(this._serviceUri + '/account/notes', params);
|
|
3301
3301
|
}
|
|
3302
3302
|
/**
|
|
3303
|
-
* Deletes the specified document
|
|
3304
|
-
* @param ids - The numeric IDs of the
|
|
3303
|
+
* Deletes the specified document notes.
|
|
3304
|
+
* @param ids - The numeric IDs of the notes to remove.
|
|
3305
3305
|
*/
|
|
3306
|
-
|
|
3307
|
-
return this.httpClient.post(this._serviceUri + '/account/
|
|
3306
|
+
deleteNotes(ids) {
|
|
3307
|
+
return this.httpClient.post(this._serviceUri + '/account/notes/delete', { ids: ids });
|
|
3308
3308
|
}
|
|
3309
3309
|
/**
|
|
3310
|
-
* Creates or updates a document
|
|
3311
|
-
* @param item - The
|
|
3310
|
+
* Creates or updates a document note.
|
|
3311
|
+
* @param item - The note data to save.
|
|
3312
3312
|
*/
|
|
3313
|
-
|
|
3314
|
-
return this.httpClient.post(this._serviceUri + '/account/
|
|
3313
|
+
saveNote(item) {
|
|
3314
|
+
return this.httpClient.post(this._serviceUri + '/account/notes/save', item);
|
|
3315
3315
|
}
|
|
3316
3316
|
/**
|
|
3317
|
-
* Retrieves the tracking history for the given document
|
|
3318
|
-
* @param id - The numeric ID of the
|
|
3317
|
+
* Retrieves the tracking history for the given document note.
|
|
3318
|
+
* @param id - The numeric ID of the note whose tracking records to retrieve.
|
|
3319
3319
|
*/
|
|
3320
|
-
|
|
3321
|
-
return this.httpClient.get(this._serviceUri + '/account/
|
|
3320
|
+
getNoteTrackings(id) {
|
|
3321
|
+
return this.httpClient.get(this._serviceUri + '/account/notes/trackings/' + id);
|
|
3322
3322
|
}
|
|
3323
3323
|
/**
|
|
3324
|
-
* Gets the count of pending tracking notifications for document
|
|
3324
|
+
* Gets the count of pending tracking notifications for document notes,
|
|
3325
|
+
* which can be used to display an unread counter in the UI.
|
|
3325
3326
|
*/
|
|
3326
|
-
|
|
3327
|
-
return this.httpClient.get(this._serviceUri + '/account/
|
|
3327
|
+
getNotesTrackingsPending() {
|
|
3328
|
+
return this.httpClient.get(this._serviceUri + '/account/notes/trackings/pending');
|
|
3328
3329
|
}
|
|
3329
3330
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: ClipperService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
3330
3331
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "21.2.10", ngImport: i0, type: ClipperService, providedIn: 'root' }); }
|