@overmap-ai/core 1.0.53-add-agent-conversations.7 → 1.0.53-add-agent-conversations.8
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.
|
@@ -16,11 +16,13 @@ export type PromptAgentResponse = {
|
|
|
16
16
|
* Only returned for new conversations.
|
|
17
17
|
*/
|
|
18
18
|
conversation: AgentUserConversation;
|
|
19
|
+
response: never;
|
|
19
20
|
} | {
|
|
20
21
|
/**
|
|
21
22
|
* The response from the agent for existing conversations. Can be directly added to a TipTap editor.
|
|
22
23
|
*/
|
|
23
24
|
response: JSONContent;
|
|
25
|
+
conversation: never;
|
|
24
26
|
};
|
|
25
27
|
export interface AgentProfile extends OptionalFileModel {
|
|
26
28
|
/**
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Core functionality for Overmap",
|
|
4
4
|
"author": "Wôrdn Inc.",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
|
-
"version": "1.0.53-add-agent-conversations.
|
|
6
|
+
"version": "1.0.53-add-agent-conversations.8",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "dist/overmap-core.umd.cjs",
|
|
9
9
|
"module": "dist/overmap-core.js",
|