@deepstrike/core 0.1.13 → 0.1.14
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/index.d.ts +2 -0
- package/package.json +8 -8
package/index.d.ts
CHANGED
|
@@ -332,6 +332,8 @@ export declare class LoopStateMachine {
|
|
|
332
332
|
* Call before `start()` to restore conversational continuity across runs.
|
|
333
333
|
*/
|
|
334
334
|
preloadHistory(messages: Array<Message>): void
|
|
335
|
+
/** Continue from preloaded history without a new user turn (mid-run recovery). */
|
|
336
|
+
resumeAfterPreload(): LoopAction
|
|
335
337
|
/**
|
|
336
338
|
* Return only messages added during the current run (since the last `preload_history`
|
|
337
339
|
* or construction). Use this to persist the session delta to `SessionStore.saveSession`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deepstrike/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "DeepStrike kernel — pre-built native addon",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
]
|
|
24
24
|
},
|
|
25
25
|
"optionalDependencies": {
|
|
26
|
-
"@deepstrike/core-darwin-arm64": "0.1.
|
|
27
|
-
"@deepstrike/core-darwin-x64": "0.1.
|
|
28
|
-
"@deepstrike/core-linux-arm64-gnu": "0.1.
|
|
29
|
-
"@deepstrike/core-linux-arm64-musl": "0.1.
|
|
30
|
-
"@deepstrike/core-linux-x64-gnu": "0.1.
|
|
31
|
-
"@deepstrike/core-linux-x64-musl": "0.1.
|
|
32
|
-
"@deepstrike/core-win32-x64-msvc": "0.1.
|
|
26
|
+
"@deepstrike/core-darwin-arm64": "0.1.14",
|
|
27
|
+
"@deepstrike/core-darwin-x64": "0.1.14",
|
|
28
|
+
"@deepstrike/core-linux-arm64-gnu": "0.1.14",
|
|
29
|
+
"@deepstrike/core-linux-arm64-musl": "0.1.14",
|
|
30
|
+
"@deepstrike/core-linux-x64-gnu": "0.1.14",
|
|
31
|
+
"@deepstrike/core-linux-x64-musl": "0.1.14",
|
|
32
|
+
"@deepstrike/core-win32-x64-msvc": "0.1.14"
|
|
33
33
|
}
|
|
34
34
|
}
|