@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.
@@ -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/properties/notify', params);
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
- // PROPERTIES
3293
+ // NOTES
3294
3294
  ///
3295
3295
  /**
3296
- * Retrieves document properties matching the given search parameters.
3297
- * @param params - The properties search parameters.
3296
+ * Retrieves document notes matching the given search parameters.
3297
+ * @param params - The notes search parameters.
3298
3298
  */
3299
- queryProperties(params) {
3300
- return this.httpClient.post(this._serviceUri + '/account/properties', params);
3299
+ queryNotes(params) {
3300
+ return this.httpClient.post(this._serviceUri + '/account/notes', params);
3301
3301
  }
3302
3302
  /**
3303
- * Deletes the specified document properties.
3304
- * @param ids - The numeric IDs of the properties to remove.
3303
+ * Deletes the specified document notes.
3304
+ * @param ids - The numeric IDs of the notes to remove.
3305
3305
  */
3306
- deleteProperties(ids) {
3307
- return this.httpClient.post(this._serviceUri + '/account/properties/delete', { ids: ids });
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 property.
3311
- * @param item - The property data to save.
3310
+ * Creates or updates a document note.
3311
+ * @param item - The note data to save.
3312
3312
  */
3313
- saveProperty(item) {
3314
- return this.httpClient.post(this._serviceUri + '/account/properties/save', item);
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 property.
3318
- * @param id - The numeric ID of the property whose tracking records to retrieve.
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
- getPropertyTrackings(id) {
3321
- return this.httpClient.get(this._serviceUri + '/account/properties/trackings/' + id);
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 properties, which can be used to display an unread counter in the UI.
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
- getPropertiesTrackingsPending() {
3327
- return this.httpClient.get(this._serviceUri + '/account/properties/trackings/pending');
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' }); }