@arsedizioni/ars-utils 21.2.244 → 21.2.245

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.
@@ -33,9 +33,9 @@ const ClipperMessages = {
33
33
  COMMAND_CALENDAR_ADD: '$clipper-command-calendar-add',
34
34
  COMMAND_WORKING_OPEN: '$clipper-command-working-documents-open',
35
35
  COMMAND_WORKING_ADD: '$clipper-command-working-documents-add',
36
- COMMAND_PROPERTY_ADD: '$clipper-command-property-add',
37
- COMMAND_PROPERTY_DELETE: '$clipper-command-property-delete',
38
- COMMAND_PROPERTY_UPDATE: '$clipper-command-property-update',
36
+ COMMAND_NOTES_ADD: '$clipper-command-notes-add',
37
+ COMMAND_NOTES_DELETE: '$clipper-command-notes-delete',
38
+ COMMAND_NOTES_UPDATE: '$clipper-command-notes-update',
39
39
  COMMAND_SEARCH_RESTORED: '$clipper-command-search-restored',
40
40
  COMMAND_SEARCH_EXECUTED: '$clipper-command-search-executed',
41
41
  COMMAND_SEARCH_EMPTY_RESULT: '$clipper-command-search-empty-result',
@@ -2622,10 +2622,10 @@ class ClipperService {
2622
2622
  return this.httpClient.post(this._serviceUri + '/documents/send', params);
2623
2623
  }
2624
2624
  /**
2625
- * Sends an email notification about a document property update to the specified recipients.
2626
- * @param params - The notification parameters including recipients and property details.
2625
+ * Sends an email notification about a document note update to the specified recipients.
2626
+ * @param params - The notification parameters including recipients and note details.
2627
2627
  */
2628
- notifyPropertyTo(params) {
2628
+ notifyNoteTo(params) {
2629
2629
  return this.httpClient.post(this._serviceUri + '/documents/notes/notify', params);
2630
2630
  }
2631
2631
  /**