@deepdesk/deepdesk-sdk 18.2.0 → 18.2.1-beta.0
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/dist/index.cjs.js +8 -8
- package/dist/index.d.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.esm.js +8 -8
- package/dist/index.iife.js +27 -27
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -971,6 +971,15 @@ type SendEventArgumentMap = {
|
|
|
971
971
|
'entities found': Event$1<{
|
|
972
972
|
entities: Entity[];
|
|
973
973
|
}>;
|
|
974
|
+
'entity copied': Event$1<{
|
|
975
|
+
entity: Entity;
|
|
976
|
+
type: 'copy';
|
|
977
|
+
}>;
|
|
978
|
+
'suggestion feedback': Event$1<{
|
|
979
|
+
text: string;
|
|
980
|
+
source: string;
|
|
981
|
+
context?: string;
|
|
982
|
+
}>;
|
|
974
983
|
'style suggested': Event$1<{
|
|
975
984
|
keywordMatches: {
|
|
976
985
|
keyword: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -971,6 +971,15 @@ type SendEventArgumentMap = {
|
|
|
971
971
|
'entities found': Event$1<{
|
|
972
972
|
entities: Entity[];
|
|
973
973
|
}>;
|
|
974
|
+
'entity copied': Event$1<{
|
|
975
|
+
entity: Entity;
|
|
976
|
+
type: 'copy';
|
|
977
|
+
}>;
|
|
978
|
+
'suggestion feedback': Event$1<{
|
|
979
|
+
text: string;
|
|
980
|
+
source: string;
|
|
981
|
+
context?: string;
|
|
982
|
+
}>;
|
|
974
983
|
'style suggested': Event$1<{
|
|
975
984
|
keywordMatches: {
|
|
976
985
|
keyword: string;
|