@sudocode-ai/types 0.1.15 → 0.1.16
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 +1 -1
- package/src/agents.d.ts +5 -0
- package/dist/claude-to-ag-ui.d.ts +0 -90
- package/dist/claude-to-ag-ui.d.ts.map +0 -1
- package/dist/claude-to-ag-ui.js +0 -153
- package/dist/claude-to-ag-ui.js.map +0 -1
- package/dist/crdt.d.ts +0 -117
- package/dist/crdt.d.ts.map +0 -1
- package/dist/crdt.js +0 -8
- package/dist/crdt.js.map +0 -1
- package/dist/history.d.ts +0 -72
- package/dist/history.d.ts.map +0 -1
- package/dist/history.js +0 -7
- package/dist/history.js.map +0 -1
package/package.json
CHANGED
package/src/agents.d.ts
CHANGED
|
@@ -252,6 +252,11 @@ export interface CursorConfig extends BaseAgentConfig {
|
|
|
252
252
|
model?: string;
|
|
253
253
|
/** Additional text to append to user prompts */
|
|
254
254
|
appendPrompt?: string;
|
|
255
|
+
/**
|
|
256
|
+
* Automatically approve all MCP servers.
|
|
257
|
+
* Only works with --print/headless mode.
|
|
258
|
+
*/
|
|
259
|
+
approveMcps?: boolean;
|
|
255
260
|
/** Maximum idle time before cleanup */
|
|
256
261
|
idleTimeout?: number;
|
|
257
262
|
/** Retry configuration for failed spawns */
|
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Claude to AG-UI Transformation Logic
|
|
3
|
-
*
|
|
4
|
-
* Shared transformation functions for converting raw Claude stream-json messages
|
|
5
|
-
* to AG-UI events. Used by both:
|
|
6
|
-
* - Backend: Real-time transformation for SSE streaming
|
|
7
|
-
* - Frontend: Historical transformation for log replay
|
|
8
|
-
*
|
|
9
|
-
* @module claude-to-ag-ui
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
* Claude stream-json message format
|
|
13
|
-
* Based on Claude Code CLI output structure
|
|
14
|
-
*/
|
|
15
|
-
export interface ClaudeStreamMessage {
|
|
16
|
-
type: "assistant" | "tool_result" | "result" | "error";
|
|
17
|
-
message?: {
|
|
18
|
-
id?: string;
|
|
19
|
-
model?: string;
|
|
20
|
-
role?: string;
|
|
21
|
-
content?: Array<{
|
|
22
|
-
type: "text" | "tool_use";
|
|
23
|
-
text?: string;
|
|
24
|
-
id?: string;
|
|
25
|
-
name?: string;
|
|
26
|
-
input?: any;
|
|
27
|
-
}>;
|
|
28
|
-
stop_reason?: string;
|
|
29
|
-
stop_sequence?: string | null;
|
|
30
|
-
};
|
|
31
|
-
result?: {
|
|
32
|
-
tool_use_id?: string;
|
|
33
|
-
content?: Array<{
|
|
34
|
-
type: string;
|
|
35
|
-
text?: string;
|
|
36
|
-
}>;
|
|
37
|
-
};
|
|
38
|
-
usage?: {
|
|
39
|
-
input_tokens?: number;
|
|
40
|
-
output_tokens?: number;
|
|
41
|
-
cache_read_input_tokens?: number;
|
|
42
|
-
cache_creation_input_tokens?: number;
|
|
43
|
-
};
|
|
44
|
-
error?: {
|
|
45
|
-
message: string;
|
|
46
|
-
type?: string;
|
|
47
|
-
};
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* AG-UI Event types
|
|
51
|
-
* Minimal interface needed for transformation
|
|
52
|
-
*/
|
|
53
|
-
export interface AgUiEvent {
|
|
54
|
-
type: string;
|
|
55
|
-
timestamp: number;
|
|
56
|
-
[key: string]: any;
|
|
57
|
-
}
|
|
58
|
-
/**
|
|
59
|
-
* Transform a single Claude stream-json message to AG-UI events
|
|
60
|
-
*
|
|
61
|
-
* @param message - Raw Claude message from stream-json output
|
|
62
|
-
* @param startSequence - Starting sequence number for events
|
|
63
|
-
* @returns Array of AG-UI events (may be empty for unhandled message types)
|
|
64
|
-
*
|
|
65
|
-
* @example
|
|
66
|
-
* ```typescript
|
|
67
|
-
* const message = JSON.parse(line);
|
|
68
|
-
* const events = transformClaudeMessageToAgUi(message, 0);
|
|
69
|
-
* events.forEach(event => console.log(event));
|
|
70
|
-
* ```
|
|
71
|
-
*/
|
|
72
|
-
export declare function transformClaudeMessageToAgUi(message: ClaudeStreamMessage, startSequence: number): AgUiEvent[];
|
|
73
|
-
/**
|
|
74
|
-
* Parse array of raw execution logs (NDJSON format) to AG-UI events
|
|
75
|
-
*
|
|
76
|
-
* Processes each line as a separate Claude message and transforms to AG-UI events.
|
|
77
|
-
* Handles parse errors gracefully by logging warnings and continuing.
|
|
78
|
-
*
|
|
79
|
-
* @param rawLogs - Array of NDJSON log lines
|
|
80
|
-
* @returns Promise resolving to array of AG-UI events
|
|
81
|
-
*
|
|
82
|
-
* @example
|
|
83
|
-
* ```typescript
|
|
84
|
-
* const logs = await fetch('/api/executions/123/logs').then(r => r.json());
|
|
85
|
-
* const events = await parseExecutionLogs(logs.logs);
|
|
86
|
-
* console.log(`Parsed ${events.length} events`);
|
|
87
|
-
* ```
|
|
88
|
-
*/
|
|
89
|
-
export declare function parseExecutionLogs(rawLogs: string[]): Promise<AgUiEvent[]>;
|
|
90
|
-
//# sourceMappingURL=claude-to-ag-ui.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"claude-to-ag-ui.d.ts","sourceRoot":"","sources":["../src/claude-to-ag-ui.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH;;;GAGG;AACH,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,WAAW,GAAG,aAAa,GAAG,QAAQ,GAAG,OAAO,CAAC;IACvD,OAAO,CAAC,EAAE;QACR,EAAE,CAAC,EAAE,MAAM,CAAC;QACZ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,OAAO,CAAC,EAAE,KAAK,CAAC;YACd,IAAI,EAAE,MAAM,GAAG,UAAU,CAAC;YAC1B,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,EAAE,CAAC,EAAE,MAAM,CAAC;YACZ,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,KAAK,CAAC,EAAE,GAAG,CAAC;SACb,CAAC,CAAC;QACH,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,aAAa,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;KAC/B,CAAC;IACF,MAAM,CAAC,EAAE;QACP,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,OAAO,CAAC,EAAE,KAAK,CAAC;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,IAAI,CAAC,EAAE,MAAM,CAAA;SAAE,CAAC,CAAC;KAClD,CAAC;IACF,KAAK,CAAC,EAAE;QACN,YAAY,CAAC,EAAE,MAAM,CAAC;QACtB,aAAa,CAAC,EAAE,MAAM,CAAC;QACvB,uBAAuB,CAAC,EAAE,MAAM,CAAC;QACjC,2BAA2B,CAAC,EAAE,MAAM,CAAC;KACtC,CAAC;IACF,KAAK,CAAC,EAAE;QACN,OAAO,EAAE,MAAM,CAAC;QAChB,IAAI,CAAC,EAAE,MAAM,CAAC;KACf,CAAC;CACH;AAED;;;GAGG;AACH,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED;;;;;;;;;;;;;GAaG;AACH,wBAAgB,4BAA4B,CAC1C,OAAO,EAAE,mBAAmB,EAC5B,aAAa,EAAE,MAAM,GACpB,SAAS,EAAE,CAoGb;AAED;;;;;;;;;;;;;;;GAeG;AACH,wBAAsB,kBAAkB,CACtC,OAAO,EAAE,MAAM,EAAE,GAChB,OAAO,CAAC,SAAS,EAAE,CAAC,CAiCtB"}
|
package/dist/claude-to-ag-ui.js
DELETED
|
@@ -1,153 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Claude to AG-UI Transformation Logic
|
|
3
|
-
*
|
|
4
|
-
* Shared transformation functions for converting raw Claude stream-json messages
|
|
5
|
-
* to AG-UI events. Used by both:
|
|
6
|
-
* - Backend: Real-time transformation for SSE streaming
|
|
7
|
-
* - Frontend: Historical transformation for log replay
|
|
8
|
-
*
|
|
9
|
-
* @module claude-to-ag-ui
|
|
10
|
-
*/
|
|
11
|
-
/**
|
|
12
|
-
* Transform a single Claude stream-json message to AG-UI events
|
|
13
|
-
*
|
|
14
|
-
* @param message - Raw Claude message from stream-json output
|
|
15
|
-
* @param startSequence - Starting sequence number for events
|
|
16
|
-
* @returns Array of AG-UI events (may be empty for unhandled message types)
|
|
17
|
-
*
|
|
18
|
-
* @example
|
|
19
|
-
* ```typescript
|
|
20
|
-
* const message = JSON.parse(line);
|
|
21
|
-
* const events = transformClaudeMessageToAgUi(message, 0);
|
|
22
|
-
* events.forEach(event => console.log(event));
|
|
23
|
-
* ```
|
|
24
|
-
*/
|
|
25
|
-
export function transformClaudeMessageToAgUi(message, startSequence) {
|
|
26
|
-
const events = [];
|
|
27
|
-
const timestamp = Date.now();
|
|
28
|
-
switch (message.type) {
|
|
29
|
-
case "assistant": {
|
|
30
|
-
// Extract content blocks from assistant message
|
|
31
|
-
const content = message.message?.content || [];
|
|
32
|
-
for (const block of content) {
|
|
33
|
-
if (block.type === "text" && block.text) {
|
|
34
|
-
// Text message → TEXT_MESSAGE_CONTENT event
|
|
35
|
-
events.push({
|
|
36
|
-
type: "CUSTOM",
|
|
37
|
-
timestamp,
|
|
38
|
-
name: "TEXT_MESSAGE_CONTENT",
|
|
39
|
-
value: {
|
|
40
|
-
content: block.text,
|
|
41
|
-
},
|
|
42
|
-
});
|
|
43
|
-
}
|
|
44
|
-
else if (block.type === "tool_use") {
|
|
45
|
-
// Tool use → TOOL_CALL_START + TOOL_CALL_ARGS events
|
|
46
|
-
const toolId = block.id || `tool-${Date.now()}`;
|
|
47
|
-
events.push({
|
|
48
|
-
type: "TOOL_CALL_START",
|
|
49
|
-
timestamp,
|
|
50
|
-
toolCallId: toolId,
|
|
51
|
-
toolCallName: block.name || "unknown",
|
|
52
|
-
}, {
|
|
53
|
-
type: "TOOL_CALL_ARGS",
|
|
54
|
-
timestamp,
|
|
55
|
-
toolCallId: toolId,
|
|
56
|
-
delta: JSON.stringify(block.input || {}),
|
|
57
|
-
});
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
break;
|
|
61
|
-
}
|
|
62
|
-
case "tool_result": {
|
|
63
|
-
// Tool result → TOOL_CALL_END + TOOL_CALL_RESULT events
|
|
64
|
-
const toolUseId = message.result?.tool_use_id || "unknown";
|
|
65
|
-
const resultContent = message.result?.content || [];
|
|
66
|
-
const resultText = resultContent.find((c) => c.type === "text")?.text || "";
|
|
67
|
-
events.push({
|
|
68
|
-
type: "TOOL_CALL_END",
|
|
69
|
-
timestamp,
|
|
70
|
-
toolCallId: toolUseId,
|
|
71
|
-
}, {
|
|
72
|
-
type: "TOOL_CALL_RESULT",
|
|
73
|
-
timestamp,
|
|
74
|
-
messageId: `msg-${toolUseId}`,
|
|
75
|
-
toolCallId: toolUseId,
|
|
76
|
-
content: resultText,
|
|
77
|
-
});
|
|
78
|
-
break;
|
|
79
|
-
}
|
|
80
|
-
case "result": {
|
|
81
|
-
// Result message with usage → USAGE_UPDATE event
|
|
82
|
-
if (message.usage) {
|
|
83
|
-
const usage = message.usage;
|
|
84
|
-
events.push({
|
|
85
|
-
type: "CUSTOM",
|
|
86
|
-
timestamp,
|
|
87
|
-
name: "USAGE_UPDATE",
|
|
88
|
-
value: {
|
|
89
|
-
inputTokens: usage.input_tokens || 0,
|
|
90
|
-
outputTokens: usage.output_tokens || 0,
|
|
91
|
-
cacheTokens: usage.cache_read_input_tokens || 0,
|
|
92
|
-
totalTokens: (usage.input_tokens || 0) + (usage.output_tokens || 0),
|
|
93
|
-
},
|
|
94
|
-
});
|
|
95
|
-
}
|
|
96
|
-
break;
|
|
97
|
-
}
|
|
98
|
-
case "error": {
|
|
99
|
-
// Error message → RUN_ERROR event
|
|
100
|
-
events.push({
|
|
101
|
-
type: "RUN_ERROR",
|
|
102
|
-
timestamp,
|
|
103
|
-
message: message.error?.message || "Unknown error",
|
|
104
|
-
errorType: message.error?.type,
|
|
105
|
-
});
|
|
106
|
-
break;
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
return events;
|
|
110
|
-
}
|
|
111
|
-
/**
|
|
112
|
-
* Parse array of raw execution logs (NDJSON format) to AG-UI events
|
|
113
|
-
*
|
|
114
|
-
* Processes each line as a separate Claude message and transforms to AG-UI events.
|
|
115
|
-
* Handles parse errors gracefully by logging warnings and continuing.
|
|
116
|
-
*
|
|
117
|
-
* @param rawLogs - Array of NDJSON log lines
|
|
118
|
-
* @returns Promise resolving to array of AG-UI events
|
|
119
|
-
*
|
|
120
|
-
* @example
|
|
121
|
-
* ```typescript
|
|
122
|
-
* const logs = await fetch('/api/executions/123/logs').then(r => r.json());
|
|
123
|
-
* const events = await parseExecutionLogs(logs.logs);
|
|
124
|
-
* console.log(`Parsed ${events.length} events`);
|
|
125
|
-
* ```
|
|
126
|
-
*/
|
|
127
|
-
export async function parseExecutionLogs(rawLogs) {
|
|
128
|
-
const events = [];
|
|
129
|
-
let sequence = 0;
|
|
130
|
-
for (let i = 0; i < rawLogs.length; i++) {
|
|
131
|
-
const line = rawLogs[i].trim();
|
|
132
|
-
// Skip empty lines
|
|
133
|
-
if (!line) {
|
|
134
|
-
continue;
|
|
135
|
-
}
|
|
136
|
-
try {
|
|
137
|
-
// Parse JSON line
|
|
138
|
-
const message = JSON.parse(line);
|
|
139
|
-
// Transform to AG-UI events
|
|
140
|
-
const agUiEvents = transformClaudeMessageToAgUi(message, sequence);
|
|
141
|
-
// Accumulate events
|
|
142
|
-
events.push(...agUiEvents);
|
|
143
|
-
sequence += agUiEvents.length;
|
|
144
|
-
}
|
|
145
|
-
catch (error) {
|
|
146
|
-
// Log warning but continue processing
|
|
147
|
-
console.warn(`[parseExecutionLogs] Failed to parse log line ${i + 1}:`, error instanceof Error ? error.message : String(error));
|
|
148
|
-
// Don't throw - continue with remaining logs
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
return events;
|
|
152
|
-
}
|
|
153
|
-
//# sourceMappingURL=claude-to-ag-ui.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"claude-to-ag-ui.js","sourceRoot":"","sources":["../src/claude-to-ag-ui.ts"],"names":[],"mappings":"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"}
|
package/dist/crdt.d.ts
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CRDT Type Definitions
|
|
3
|
-
*
|
|
4
|
-
* Shared type definitions for CRDT state synchronization between
|
|
5
|
-
* the coordinator and agents.
|
|
6
|
-
*/
|
|
7
|
-
import { IssueStatus } from './index.js';
|
|
8
|
-
/**
|
|
9
|
-
* Issue state in CRDT
|
|
10
|
-
*/
|
|
11
|
-
export interface IssueState {
|
|
12
|
-
id: string;
|
|
13
|
-
title: string;
|
|
14
|
-
content: string;
|
|
15
|
-
status: IssueStatus;
|
|
16
|
-
priority: number;
|
|
17
|
-
parent?: string;
|
|
18
|
-
archived: boolean;
|
|
19
|
-
createdAt: number;
|
|
20
|
-
updatedAt: number;
|
|
21
|
-
lastModifiedBy: string;
|
|
22
|
-
version: number;
|
|
23
|
-
tempStatus?: string;
|
|
24
|
-
tempProgress?: {
|
|
25
|
-
current: number;
|
|
26
|
-
total: number;
|
|
27
|
-
message?: string;
|
|
28
|
-
};
|
|
29
|
-
}
|
|
30
|
-
/**
|
|
31
|
-
* Spec state in CRDT
|
|
32
|
-
*/
|
|
33
|
-
export interface SpecState {
|
|
34
|
-
id: string;
|
|
35
|
-
title: string;
|
|
36
|
-
content: string;
|
|
37
|
-
priority: number;
|
|
38
|
-
parent?: string;
|
|
39
|
-
createdAt: number;
|
|
40
|
-
updatedAt: number;
|
|
41
|
-
lastModifiedBy: string;
|
|
42
|
-
version: number;
|
|
43
|
-
tempSections?: Record<string, string>;
|
|
44
|
-
tempDiff?: string;
|
|
45
|
-
}
|
|
46
|
-
/**
|
|
47
|
-
* Execution state in CRDT
|
|
48
|
-
*/
|
|
49
|
-
export interface ExecutionState {
|
|
50
|
-
id: string;
|
|
51
|
-
issueId?: string;
|
|
52
|
-
specId?: string;
|
|
53
|
-
status: 'preparing' | 'running' | 'paused' | 'completed' | 'failed' | 'cancelled';
|
|
54
|
-
phase?: string;
|
|
55
|
-
progress?: {
|
|
56
|
-
current: number;
|
|
57
|
-
total: number;
|
|
58
|
-
message?: string;
|
|
59
|
-
};
|
|
60
|
-
startedAt: number;
|
|
61
|
-
updatedAt: number;
|
|
62
|
-
completedAt?: number;
|
|
63
|
-
agentId: string;
|
|
64
|
-
}
|
|
65
|
-
/**
|
|
66
|
-
* Agent metadata in CRDT
|
|
67
|
-
*/
|
|
68
|
-
export interface AgentMetadata {
|
|
69
|
-
id: string;
|
|
70
|
-
executionId?: string;
|
|
71
|
-
status: 'initializing' | 'idle' | 'working' | 'disconnected';
|
|
72
|
-
lastHeartbeat: number;
|
|
73
|
-
connectedAt: number;
|
|
74
|
-
disconnectedAt?: number;
|
|
75
|
-
worktreePath?: string;
|
|
76
|
-
}
|
|
77
|
-
/**
|
|
78
|
-
* Feedback state in CRDT
|
|
79
|
-
*/
|
|
80
|
-
export interface FeedbackState {
|
|
81
|
-
id: string;
|
|
82
|
-
specId: string;
|
|
83
|
-
issueId: string;
|
|
84
|
-
type: 'comment' | 'suggestion' | 'request';
|
|
85
|
-
content: string;
|
|
86
|
-
anchorLine?: number;
|
|
87
|
-
anchorText?: string;
|
|
88
|
-
createdAt: number;
|
|
89
|
-
updatedAt: number;
|
|
90
|
-
lastModifiedBy: string;
|
|
91
|
-
}
|
|
92
|
-
/**
|
|
93
|
-
* CRDT Agent configuration
|
|
94
|
-
*/
|
|
95
|
-
export interface CRDTAgentConfig {
|
|
96
|
-
agentId: string;
|
|
97
|
-
coordinatorUrl?: string;
|
|
98
|
-
coordinatorHost?: string;
|
|
99
|
-
coordinatorPort?: number;
|
|
100
|
-
heartbeatInterval?: number;
|
|
101
|
-
maxReconnectAttempts?: number;
|
|
102
|
-
reconnectBaseDelay?: number;
|
|
103
|
-
reconnectMaxDelay?: number;
|
|
104
|
-
connectionTimeout?: number;
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* CRDT Coordinator configuration
|
|
108
|
-
*/
|
|
109
|
-
export interface CRDTCoordinatorConfig {
|
|
110
|
-
port?: number;
|
|
111
|
-
host?: string;
|
|
112
|
-
persistInterval?: number;
|
|
113
|
-
gcInterval?: number;
|
|
114
|
-
executionTTL?: number;
|
|
115
|
-
agentTTL?: number;
|
|
116
|
-
}
|
|
117
|
-
//# sourceMappingURL=crdt.d.ts.map
|
package/dist/crdt.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"crdt.d.ts","sourceRoot":"","sources":["../src/crdt.ts"],"names":[],"mappings":"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"}
|
package/dist/crdt.js
DELETED
package/dist/crdt.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"crdt.js","sourceRoot":"","sources":["../src/crdt.ts"],"names":[],"mappings":"AAAA;;;;;GAKG"}
|
package/dist/history.d.ts
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* CRDT History Type Definitions
|
|
3
|
-
*
|
|
4
|
-
* Types for in-memory CRDT update history tracking.
|
|
5
|
-
*/
|
|
6
|
-
/**
|
|
7
|
-
* Record of a single CRDT update with metadata
|
|
8
|
-
*/
|
|
9
|
-
export interface CRDTUpdateRecord {
|
|
10
|
-
id: string;
|
|
11
|
-
entityType: 'issue' | 'spec' | 'feedback';
|
|
12
|
-
entityId: string;
|
|
13
|
-
updateData: Uint8Array;
|
|
14
|
-
clientId: string;
|
|
15
|
-
timestamp: number;
|
|
16
|
-
contentSnapshot?: {
|
|
17
|
-
title: string;
|
|
18
|
-
content: string;
|
|
19
|
-
[key: string]: any;
|
|
20
|
-
};
|
|
21
|
-
}
|
|
22
|
-
/**
|
|
23
|
-
* In-memory history storage structure
|
|
24
|
-
*/
|
|
25
|
-
export interface UpdateHistory {
|
|
26
|
-
updates: CRDTUpdateRecord[];
|
|
27
|
-
entityIndex: Map<string, number[]>;
|
|
28
|
-
clientIndex: Map<string, number[]>;
|
|
29
|
-
oldestTimestamp: number;
|
|
30
|
-
newestTimestamp: number;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* Metadata about the history state
|
|
34
|
-
*/
|
|
35
|
-
export interface HistoryMetadata {
|
|
36
|
-
oldestTimestamp: number;
|
|
37
|
-
newestTimestamp: number;
|
|
38
|
-
totalUpdates: number;
|
|
39
|
-
retentionWindowMs: number;
|
|
40
|
-
entitiesTracked: number;
|
|
41
|
-
memoryUsageMB: number;
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* Document version at a specific timestamp
|
|
45
|
-
*/
|
|
46
|
-
export interface VersionInfo {
|
|
47
|
-
timestamp: number;
|
|
48
|
-
title: string;
|
|
49
|
-
content: string;
|
|
50
|
-
lastModifiedBy: string;
|
|
51
|
-
[key: string]: any;
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* Diff chunk between two versions
|
|
55
|
-
*/
|
|
56
|
-
export interface DiffChunk {
|
|
57
|
-
type: 'added' | 'removed' | 'unchanged';
|
|
58
|
-
value: string;
|
|
59
|
-
count: number;
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* Line-by-line blame/attribution information
|
|
63
|
-
*/
|
|
64
|
-
export interface BlameInfo {
|
|
65
|
-
lines: Array<{
|
|
66
|
-
lineNumber: number;
|
|
67
|
-
author: string;
|
|
68
|
-
timestamp: number;
|
|
69
|
-
line: string;
|
|
70
|
-
}>;
|
|
71
|
-
}
|
|
72
|
-
//# sourceMappingURL=history.d.ts.map
|
package/dist/history.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"history.d.ts","sourceRoot":"","sources":["../src/history.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,UAAU,EAAE,OAAO,GAAG,MAAM,GAAG,UAAU,CAAC;IAC1C,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,UAAU,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE;QAChB,KAAK,EAAE,MAAM,CAAC;QACd,OAAO,EAAE,MAAM,CAAC;QAChB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;KACpB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,WAAW,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACnC,WAAW,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACnC,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,eAAe;IAC9B,eAAe,EAAE,MAAM,CAAC;IACxB,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,iBAAiB,EAAE,MAAM,CAAC;IAC1B,eAAe,EAAE,MAAM,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,cAAc,EAAE,MAAM,CAAC;IACvB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,CAAC;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED;;GAEG;AACH,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,KAAK,CAAC;QACX,UAAU,EAAE,MAAM,CAAC;QACnB,MAAM,EAAE,MAAM,CAAC;QACf,SAAS,EAAE,MAAM,CAAC;QAClB,IAAI,EAAE,MAAM,CAAC;KACd,CAAC,CAAC;CACJ"}
|
package/dist/history.js
DELETED
package/dist/history.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"history.js","sourceRoot":"","sources":["../src/history.ts"],"names":[],"mappings":"AAAA;;;;GAIG"}
|