codesesh 0.15.0 → 0.17.0

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.
@@ -1,219 +0,0 @@
1
- #!/usr/bin/env node
2
- import {
3
- BaseAgent,
4
- DASHBOARD_RECENT_LIMIT,
5
- DatabaseSessionSource,
6
- FileSystemSessionSource,
7
- SESSION_ALIAS_MAX_LENGTH,
8
- StateStorageUnavailableError,
9
- applyMessageCost,
10
- applyMessageCosts,
11
- attachMissingProjectIdentities,
12
- basenameTitle,
13
- buildAgentCacheMeta,
14
- buildDashboard,
15
- buildProjectGroups,
16
- classifySessionTags,
17
- cleanDisplayText,
18
- cleanInternalText,
19
- cleanMessagePart,
20
- cleanMessageParts,
21
- cleanParsedMessage,
22
- cleanParsedMessages,
23
- clearCache,
24
- computeIdentity,
25
- computeSessionDiff,
26
- createProjectScopeMatcher,
27
- createRegisteredAgents,
28
- deleteBookmark,
29
- deleteSessionAlias,
30
- ensureSessionTagsSync,
31
- estimateCostForTokens,
32
- estimateTokenCost,
33
- executeSessionSearch,
34
- extractFileActivityOccurrences,
35
- extractSessionFileActivity,
36
- fallbackDisplayName,
37
- filterSessions,
38
- filterSessionsByProjectScope,
39
- filteredSession,
40
- firstExisting,
41
- firstUserMessageTitle,
42
- firstVisibleLine,
43
- getAgentByName,
44
- getAgentInfoMap,
45
- getAgentLastFullSyncAt,
46
- getCacheInfo,
47
- getCachePath2,
48
- getCursorDataPath,
49
- getParsedSession,
50
- getPricingRegistry,
51
- getProjectIdentityKey,
52
- getRegisteredAgents,
53
- getSessionActivityTime,
54
- getSessionAgentName,
55
- getSmartTagSourceTimestamp,
56
- getTotalTokens,
57
- hasBillablePricing,
58
- importBookmarks,
59
- isAgentCacheInitialized,
60
- isProjectIdentityKind,
61
- isSqliteAvailable,
62
- listBookmarks,
63
- listCachedProjectGroups,
64
- listFileActivity,
65
- listSessionAliases,
66
- listSessionFileActivity,
67
- loadCachedSessionData,
68
- loadCachedSessions,
69
- markAgentCacheInitialized,
70
- markAgentFullSyncCompleted,
71
- matchesProjectIdentity,
72
- matchesProjectScope,
73
- matchesScanWindow,
74
- mergeSearchQueryOptions,
75
- normalizeGitRemote,
76
- normalizeSessionAlias,
77
- normalizeTitleText,
78
- openDb,
79
- openDbReadOnly,
80
- parseJsonlLines,
81
- parseSearchQuery,
82
- parsedSession,
83
- perf,
84
- pricingResolver,
85
- readJsonlFile,
86
- realFs,
87
- refreshPricingCache,
88
- registerAgent,
89
- resolveProviderRoots,
90
- resolveSessionTitle,
91
- saveCachedSessionChanges,
92
- saveCachedSessions,
93
- scanSessions,
94
- scanSessionsAsync,
95
- searchFileActivitySessions,
96
- searchSessions,
97
- sessionSignature,
98
- setFtsIntegrityCheckedPath,
99
- skippedSession,
100
- sortSessions,
101
- startOfLocalDay,
102
- summarizeFileActivity,
103
- syncSessionSearchIndex,
104
- syncSessionSearchIndexChanges,
105
- toLocalDateKey,
106
- upsertBookmark,
107
- upsertSessionAlias,
108
- withEstimatedSessionCost
109
- } from "./chunk-NBCLV4CX.js";
110
- export {
111
- BaseAgent,
112
- StateStorageUnavailableError as BookmarkStorageUnavailableError,
113
- DASHBOARD_RECENT_LIMIT,
114
- DatabaseSessionSource,
115
- FileSystemSessionSource,
116
- SESSION_ALIAS_MAX_LENGTH,
117
- StateStorageUnavailableError,
118
- applyMessageCost,
119
- applyMessageCosts,
120
- attachMissingProjectIdentities,
121
- basenameTitle,
122
- buildAgentCacheMeta,
123
- buildDashboard,
124
- buildProjectGroups,
125
- classifySessionTags,
126
- cleanDisplayText,
127
- cleanInternalText,
128
- cleanMessagePart,
129
- cleanMessageParts,
130
- cleanParsedMessage,
131
- cleanParsedMessages,
132
- clearCache,
133
- computeIdentity,
134
- computeSessionDiff,
135
- createProjectScopeMatcher,
136
- createRegisteredAgents,
137
- deleteBookmark,
138
- deleteSessionAlias,
139
- ensureSessionTagsSync,
140
- estimateCostForTokens,
141
- estimateTokenCost,
142
- executeSessionSearch,
143
- extractFileActivityOccurrences,
144
- extractSessionFileActivity,
145
- fallbackDisplayName,
146
- filterSessions,
147
- filterSessionsByProjectScope,
148
- filteredSession,
149
- firstExisting,
150
- firstUserMessageTitle,
151
- firstVisibleLine,
152
- getAgentByName,
153
- getAgentInfoMap,
154
- getAgentLastFullSyncAt,
155
- getCacheInfo,
156
- getCachePath2 as getCachePath,
157
- getCursorDataPath,
158
- getParsedSession,
159
- getPricingRegistry,
160
- getProjectIdentityKey,
161
- getRegisteredAgents,
162
- getSessionActivityTime,
163
- getSessionAgentName,
164
- getSmartTagSourceTimestamp,
165
- getTotalTokens,
166
- hasBillablePricing,
167
- importBookmarks,
168
- isAgentCacheInitialized,
169
- isProjectIdentityKind,
170
- isSqliteAvailable,
171
- listBookmarks,
172
- listCachedProjectGroups,
173
- listFileActivity,
174
- listSessionAliases,
175
- listSessionFileActivity,
176
- loadCachedSessionData,
177
- loadCachedSessions,
178
- markAgentCacheInitialized,
179
- markAgentFullSyncCompleted,
180
- matchesProjectIdentity,
181
- matchesProjectScope,
182
- matchesScanWindow,
183
- mergeSearchQueryOptions,
184
- normalizeGitRemote,
185
- normalizeSessionAlias,
186
- normalizeTitleText,
187
- openDb,
188
- openDbReadOnly,
189
- parseJsonlLines,
190
- parseSearchQuery,
191
- parsedSession,
192
- perf,
193
- pricingResolver,
194
- readJsonlFile,
195
- realFs,
196
- refreshPricingCache,
197
- registerAgent,
198
- resolveProviderRoots,
199
- resolveSessionTitle,
200
- saveCachedSessionChanges,
201
- saveCachedSessions,
202
- scanSessions,
203
- scanSessionsAsync,
204
- searchFileActivitySessions,
205
- searchSessions,
206
- sessionSignature,
207
- setFtsIntegrityCheckedPath,
208
- skippedSession,
209
- sortSessions,
210
- startOfLocalDay,
211
- summarizeFileActivity,
212
- syncSessionSearchIndex,
213
- syncSessionSearchIndexChanges,
214
- toLocalDateKey,
215
- upsertBookmark,
216
- upsertSessionAlias,
217
- withEstimatedSessionCost
218
- };
219
- //# sourceMappingURL=dist-5356XOFP.js.map