@arsedizioni/ars-utils 19.0.24 → 19.0.26
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/clipper.common/common/messages.d.ts +1 -0
- package/clipper.ui/ui/document-manager/document-manager.d.ts +5 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs +1 -0
- package/fesm2022/arsedizioni-ars-utils-clipper.common.mjs.map +1 -1
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs +11 -2
- package/fesm2022/arsedizioni-ars-utils-clipper.ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -21,6 +21,7 @@ export declare const ClipperMessages: {
|
|
|
21
21
|
COMMAND_HISTORY_OPEN: string;
|
|
22
22
|
COMMAND_DASHBOARD_UPDATED: string;
|
|
23
23
|
AI_CONCERN_ME: string;
|
|
24
|
+
AI_EXPLAIN: string;
|
|
24
25
|
INTEROP_RS_NEW_LAW: string;
|
|
25
26
|
INTEROP_RS_NEW_ACTIVITY: string;
|
|
26
27
|
INTEROP_RS_USAGE_REPORT: string;
|
|
@@ -103,6 +103,11 @@ export declare class ClipperDocumentManager {
|
|
|
103
103
|
*/
|
|
104
104
|
AI_concernMe(document: ClipperDocumentInfo | null): void;
|
|
105
105
|
/**
|
|
106
|
+
* AI: explain service
|
|
107
|
+
* @param document: the document
|
|
108
|
+
*/
|
|
109
|
+
AI_explain(document: ClipperDocumentInfo | null): void;
|
|
110
|
+
/**
|
|
106
111
|
* Checks if a module is supported by RS
|
|
107
112
|
* @param module : the module to check
|
|
108
113
|
* @returns: true if the module is supported
|
|
@@ -34,6 +34,7 @@ const ClipperMessages = {
|
|
|
34
34
|
COMMAND_DASHBOARD_UPDATED: '$clipper-command-dashboard-updated',
|
|
35
35
|
// AI
|
|
36
36
|
AI_CONCERN_ME: '$clipper-ai-concernme',
|
|
37
|
+
AI_EXPLAIN: '$clipper-ai-explain',
|
|
37
38
|
// Interop
|
|
38
39
|
INTEROP_RS_NEW_LAW: '$clipper-interop-rs-new-law',
|
|
39
40
|
INTEROP_RS_NEW_ACTIVITY: '$clipper-interop-rs-new-activity',
|