@deepdesk/deepdesk-sdk 11.1.1-beta.5 → 11.1.1-beta.7
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 +7 -7
- package/dist/index.d.mts +6 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.esm.js +7 -7
- package/dist/index.iife.js +12 -12
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1099,6 +1099,10 @@ declare namespace Server {
|
|
|
1099
1099
|
is_enabled: boolean;
|
|
1100
1100
|
label: string;
|
|
1101
1101
|
};
|
|
1102
|
+
type Summary = {
|
|
1103
|
+
summary: string;
|
|
1104
|
+
model?: string;
|
|
1105
|
+
};
|
|
1102
1106
|
}
|
|
1103
1107
|
type ConversationMessage = CamelCaseKeys<Omit<Server.ConversationMessage, 'tags'>> & {
|
|
1104
1108
|
tags: Record<string, string> | null;
|
|
@@ -1287,7 +1291,7 @@ declare class DeepdeskAPI {
|
|
|
1287
1291
|
promptInstruction?: string;
|
|
1288
1292
|
agentId?: string;
|
|
1289
1293
|
externalConversationId?: string;
|
|
1290
|
-
}): Promise<
|
|
1294
|
+
}): Promise<CamelCaseKeys<Server.Summary>>;
|
|
1291
1295
|
/**
|
|
1292
1296
|
* Get a temporary exchange / login token
|
|
1293
1297
|
*/
|
|
@@ -1537,6 +1541,7 @@ interface State$4 {
|
|
|
1537
1541
|
|
|
1538
1542
|
type State$3 = {
|
|
1539
1543
|
data: string | null;
|
|
1544
|
+
model?: string;
|
|
1540
1545
|
fetchState: FetchState;
|
|
1541
1546
|
};
|
|
1542
1547
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1099,6 +1099,10 @@ declare namespace Server {
|
|
|
1099
1099
|
is_enabled: boolean;
|
|
1100
1100
|
label: string;
|
|
1101
1101
|
};
|
|
1102
|
+
type Summary = {
|
|
1103
|
+
summary: string;
|
|
1104
|
+
model?: string;
|
|
1105
|
+
};
|
|
1102
1106
|
}
|
|
1103
1107
|
type ConversationMessage = CamelCaseKeys<Omit<Server.ConversationMessage, 'tags'>> & {
|
|
1104
1108
|
tags: Record<string, string> | null;
|
|
@@ -1287,7 +1291,7 @@ declare class DeepdeskAPI {
|
|
|
1287
1291
|
promptInstruction?: string;
|
|
1288
1292
|
agentId?: string;
|
|
1289
1293
|
externalConversationId?: string;
|
|
1290
|
-
}): Promise<
|
|
1294
|
+
}): Promise<CamelCaseKeys<Server.Summary>>;
|
|
1291
1295
|
/**
|
|
1292
1296
|
* Get a temporary exchange / login token
|
|
1293
1297
|
*/
|
|
@@ -1537,6 +1541,7 @@ interface State$4 {
|
|
|
1537
1541
|
|
|
1538
1542
|
type State$3 = {
|
|
1539
1543
|
data: string | null;
|
|
1544
|
+
model?: string;
|
|
1540
1545
|
fetchState: FetchState;
|
|
1541
1546
|
};
|
|
1542
1547
|
|