@arsedizioni/ars-utils 21.2.244 → 21.2.246
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 -6
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +44 -41
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs +1 -1
- package/fesm2022/arsedizioni-ars-utils-core.mjs.map +1 -1
- package/package.json +1 -1
- package/types/arsedizioni-ars-utils-clipper.common.d.ts +7 -7
- package/types/arsedizioni-ars-utils-clipper.ui.d.ts +19 -19
- package/types/arsedizioni-ars-utils-core.d.ts +1 -1
|
@@ -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
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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
|
|
2626
|
-
* @param params - The notification parameters including recipients and
|
|
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
|
-
|
|
2628
|
+
notifyNoteTo(params) {
|
|
2629
2629
|
return this.httpClient.post(this._serviceUri + '/documents/notes/notify', params);
|
|
2630
2630
|
}
|
|
2631
2631
|
/**
|