@deepdesk/deepdesk-sdk 17.2.1-beta.0 → 17.2.1-beta.2
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 +2 -2
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.iife.js +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -624,7 +624,7 @@ declare namespace Server {
|
|
|
624
624
|
interface CallToAction {
|
|
625
625
|
label: string;
|
|
626
626
|
event: string;
|
|
627
|
-
value
|
|
627
|
+
value?: string;
|
|
628
628
|
}
|
|
629
629
|
type ResponseFormat = 'text' | 'json-object' | 'json-schema:cues' | 'json-schema:knowledge-assist';
|
|
630
630
|
interface LegacyCue {
|
|
@@ -936,12 +936,15 @@ type SendEventArgumentMap = {
|
|
|
936
936
|
cueText: string;
|
|
937
937
|
}>;
|
|
938
938
|
'Assistant response used': Event$1<RuleEventMeta & {
|
|
939
|
+
originalText: string;
|
|
939
940
|
usedText: string;
|
|
940
941
|
}>;
|
|
941
942
|
'Assistant response copied': Event$1<RuleEventMeta & {
|
|
943
|
+
originalText: string;
|
|
942
944
|
copiedText: string;
|
|
943
945
|
}>;
|
|
944
946
|
'Assistant call to action': Event$1<RuleEventMeta & {
|
|
947
|
+
originalText: string;
|
|
945
948
|
eventName: string;
|
|
946
949
|
value: string;
|
|
947
950
|
}>;
|
package/dist/index.d.ts
CHANGED
|
@@ -624,7 +624,7 @@ declare namespace Server {
|
|
|
624
624
|
interface CallToAction {
|
|
625
625
|
label: string;
|
|
626
626
|
event: string;
|
|
627
|
-
value
|
|
627
|
+
value?: string;
|
|
628
628
|
}
|
|
629
629
|
type ResponseFormat = 'text' | 'json-object' | 'json-schema:cues' | 'json-schema:knowledge-assist';
|
|
630
630
|
interface LegacyCue {
|
|
@@ -936,12 +936,15 @@ type SendEventArgumentMap = {
|
|
|
936
936
|
cueText: string;
|
|
937
937
|
}>;
|
|
938
938
|
'Assistant response used': Event$1<RuleEventMeta & {
|
|
939
|
+
originalText: string;
|
|
939
940
|
usedText: string;
|
|
940
941
|
}>;
|
|
941
942
|
'Assistant response copied': Event$1<RuleEventMeta & {
|
|
943
|
+
originalText: string;
|
|
942
944
|
copiedText: string;
|
|
943
945
|
}>;
|
|
944
946
|
'Assistant call to action': Event$1<RuleEventMeta & {
|
|
947
|
+
originalText: string;
|
|
945
948
|
eventName: string;
|
|
946
949
|
value: string;
|
|
947
950
|
}>;
|