@frockbot/client-core 0.3.8 → 0.3.9
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 +6 -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.9",
|
|
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.9",
|
|
17
|
+
"@frockbot/connection-core": "0.3.9",
|
|
18
|
+
"@frockbot/kernel-contracts": "0.3.9",
|
|
19
|
+
"@frockbot/protocol": "0.3.9",
|
|
20
20
|
"vue": "3.5.41"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -134,6 +134,12 @@ export interface ClientRun {
|
|
|
134
134
|
* as an ordinary message it has not reached yet.
|
|
135
135
|
*/
|
|
136
136
|
queued?: true;
|
|
137
|
+
/**
|
|
138
|
+
* The answer the Bot has written so far, present only while the Turn is
|
|
139
|
+
* still running. It is the same bubble `responseText` becomes when the Turn
|
|
140
|
+
* settles, so the thread never draws both.
|
|
141
|
+
*/
|
|
142
|
+
partialText?: string;
|
|
137
143
|
recovery?: { action: "resume"; message: string };
|
|
138
144
|
}
|
|
139
145
|
|