@frockbot/client-core 0.3.6 → 0.3.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.
- package/package.json +5 -5
- package/src/index.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/client-core",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.8",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@frockbot/configuration-core": "0.3.
|
|
17
|
-
"@frockbot/connection-core": "0.3.
|
|
18
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
19
|
-
"@frockbot/protocol": "0.3.
|
|
16
|
+
"@frockbot/configuration-core": "0.3.8",
|
|
17
|
+
"@frockbot/connection-core": "0.3.8",
|
|
18
|
+
"@frockbot/kernel-contracts": "0.3.8",
|
|
19
|
+
"@frockbot/protocol": "0.3.8",
|
|
20
20
|
"vue": "3.5.41"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -183,6 +183,11 @@ export interface AgentTransport {
|
|
|
183
183
|
nativeReturnNonce?: string;
|
|
184
184
|
}): Promise<ClientStartConnectionResult>;
|
|
185
185
|
listRuns?(botId: string): Promise<ClientRun[]>;
|
|
186
|
+
/**
|
|
187
|
+
* Puts the current conversation down and starts the next one. Memory is
|
|
188
|
+
* kept; only the history the next Turn carries is new.
|
|
189
|
+
*/
|
|
190
|
+
startConversation?(botId: string): Promise<void>;
|
|
186
191
|
listAnnouncements?(botId: string): Promise<ClientAnnouncement[]>;
|
|
187
192
|
lookupRun?(botId: string, runId: string): Promise<ClientRun | undefined>;
|
|
188
193
|
fenceRunAdmission?(
|