@morlay/session-branch 0.0.3 → 0.0.4-alpha.1
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.d.mts +0 -1
- package/dist/index.mjs +0 -1
- package/package.json +4 -4
- package/src/branch.ts +0 -4
package/dist/index.d.mts
CHANGED
|
@@ -96,7 +96,6 @@ declare abstract class SessionBranch extends Service {
|
|
|
96
96
|
abstract forkFrom(sourceId: SessionId, options?: ForkFromOptions, signal?: AbortSignal): Promise<SessionId>;
|
|
97
97
|
abstract rewind(id: SessionId, toBoundary: number, signal?: AbortSignal): Promise<SessionPersistenceSnapshot>;
|
|
98
98
|
abstract timeline(sessionId: SessionId, signal?: AbortSignal): Promise<BranchTimeline>;
|
|
99
|
-
syncLiveCursor(_sessionId: SessionId): void;
|
|
100
99
|
}
|
|
101
100
|
//#endregion
|
|
102
101
|
//#region src/timeline.d.ts
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@morlay/session-branch",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4-alpha.1",
|
|
4
4
|
"description": "Provider abstraction + high-level service for rewind / retry / fork over DeepSeek Harness event-sourced sessions.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"dsh",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
32
|
"@deepseek-ai/cordis": "^4.0.2",
|
|
33
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
34
|
-
"@deepseek-ai/dsh-session": "^0.1.
|
|
35
|
-
"@deepseek-ai/dsh-session-persistence": "^0.1.
|
|
33
|
+
"@deepseek-ai/dsh-invariants": "^0.1.3-alpha.2",
|
|
34
|
+
"@deepseek-ai/dsh-session": "^0.1.3-alpha.2",
|
|
35
|
+
"@deepseek-ai/dsh-session-persistence": "^0.1.3-alpha.2"
|
|
36
36
|
},
|
|
37
37
|
"dsh": {
|
|
38
38
|
"bundle": {
|
package/src/branch.ts
CHANGED
|
@@ -28,8 +28,4 @@ export abstract class SessionBranch extends Service {
|
|
|
28
28
|
): Promise<SessionPersistenceSnapshot>;
|
|
29
29
|
|
|
30
30
|
abstract timeline(sessionId: SessionId, signal?: AbortSignal): Promise<BranchTimeline>;
|
|
31
|
-
|
|
32
|
-
syncLiveCursor(_sessionId: SessionId): void {
|
|
33
|
-
// 默认无操作。
|
|
34
|
-
}
|
|
35
31
|
}
|