codesesh 0.13.0 → 0.15.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.
- package/README.md +2 -0
- package/dist/{chunk-BV65IEWZ.js → chunk-NBCLV4CX.js} +1255 -1220
- package/dist/chunk-NBCLV4CX.js.map +1 -0
- package/dist/{dist-VD54GDPO.js → dist-5356XOFP.js} +17 -10
- package/dist/index.js +959 -867
- package/dist/index.js.map +1 -1
- package/dist/scan-refresh-worker.js +1 -1
- package/dist/search-index-worker.js +1 -1
- package/dist/smart-tag-worker.js +1 -1
- package/dist/web/assets/index-B6p64k_Q.js +113 -0
- package/dist/web/assets/index-DiFr4_5-.css +2 -0
- package/dist/web/assets/react-3acXkZNw.js +1821 -0
- package/dist/web/assets/vendor-CShgXaOi.js +40 -0
- package/dist/web/index.html +4 -4
- package/package.json +1 -1
- package/dist/chunk-BV65IEWZ.js.map +0 -1
- package/dist/web/assets/index-ZikfLnUo.js +0 -113
- package/dist/web/assets/index-y6Zx3LT1.css +0 -2
- package/dist/web/assets/react-DBHwgW7V.js +0 -1821
- package/dist/web/assets/vendor-bXsb4Kz4.js +0 -40
- /package/dist/{dist-VD54GDPO.js.map → dist-5356XOFP.js.map} +0 -0
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
BaseAgent,
|
|
4
|
-
BookmarkStorageUnavailableError,
|
|
5
4
|
DASHBOARD_RECENT_LIMIT,
|
|
6
5
|
DatabaseSessionSource,
|
|
7
6
|
FileSystemSessionSource,
|
|
7
|
+
SESSION_ALIAS_MAX_LENGTH,
|
|
8
|
+
StateStorageUnavailableError,
|
|
8
9
|
applyMessageCost,
|
|
9
10
|
applyMessageCosts,
|
|
10
11
|
attachMissingProjectIdentities,
|
|
@@ -25,6 +26,7 @@ import {
|
|
|
25
26
|
createProjectScopeMatcher,
|
|
26
27
|
createRegisteredAgents,
|
|
27
28
|
deleteBookmark,
|
|
29
|
+
deleteSessionAlias,
|
|
28
30
|
ensureSessionTagsSync,
|
|
29
31
|
estimateCostForTokens,
|
|
30
32
|
estimateTokenCost,
|
|
@@ -34,7 +36,6 @@ import {
|
|
|
34
36
|
fallbackDisplayName,
|
|
35
37
|
filterSessions,
|
|
36
38
|
filterSessionsByProjectScope,
|
|
37
|
-
filtered,
|
|
38
39
|
filteredSession,
|
|
39
40
|
firstExisting,
|
|
40
41
|
firstUserMessageTitle,
|
|
@@ -61,6 +62,7 @@ import {
|
|
|
61
62
|
listBookmarks,
|
|
62
63
|
listCachedProjectGroups,
|
|
63
64
|
listFileActivity,
|
|
65
|
+
listSessionAliases,
|
|
64
66
|
listSessionFileActivity,
|
|
65
67
|
loadCachedSessionData,
|
|
66
68
|
loadCachedSessions,
|
|
@@ -69,13 +71,14 @@ import {
|
|
|
69
71
|
matchesProjectIdentity,
|
|
70
72
|
matchesProjectScope,
|
|
71
73
|
matchesScanWindow,
|
|
74
|
+
mergeSearchQueryOptions,
|
|
72
75
|
normalizeGitRemote,
|
|
76
|
+
normalizeSessionAlias,
|
|
73
77
|
normalizeTitleText,
|
|
74
78
|
openDb,
|
|
75
79
|
openDbReadOnly,
|
|
76
80
|
parseJsonlLines,
|
|
77
81
|
parseSearchQuery,
|
|
78
|
-
parsed,
|
|
79
82
|
parsedSession,
|
|
80
83
|
perf,
|
|
81
84
|
pricingResolver,
|
|
@@ -93,7 +96,6 @@ import {
|
|
|
93
96
|
searchSessions,
|
|
94
97
|
sessionSignature,
|
|
95
98
|
setFtsIntegrityCheckedPath,
|
|
96
|
-
skipped,
|
|
97
99
|
skippedSession,
|
|
98
100
|
sortSessions,
|
|
99
101
|
startOfLocalDay,
|
|
@@ -102,14 +104,17 @@ import {
|
|
|
102
104
|
syncSessionSearchIndexChanges,
|
|
103
105
|
toLocalDateKey,
|
|
104
106
|
upsertBookmark,
|
|
107
|
+
upsertSessionAlias,
|
|
105
108
|
withEstimatedSessionCost
|
|
106
|
-
} from "./chunk-
|
|
109
|
+
} from "./chunk-NBCLV4CX.js";
|
|
107
110
|
export {
|
|
108
111
|
BaseAgent,
|
|
109
|
-
BookmarkStorageUnavailableError,
|
|
112
|
+
StateStorageUnavailableError as BookmarkStorageUnavailableError,
|
|
110
113
|
DASHBOARD_RECENT_LIMIT,
|
|
111
114
|
DatabaseSessionSource,
|
|
112
115
|
FileSystemSessionSource,
|
|
116
|
+
SESSION_ALIAS_MAX_LENGTH,
|
|
117
|
+
StateStorageUnavailableError,
|
|
113
118
|
applyMessageCost,
|
|
114
119
|
applyMessageCosts,
|
|
115
120
|
attachMissingProjectIdentities,
|
|
@@ -130,6 +135,7 @@ export {
|
|
|
130
135
|
createProjectScopeMatcher,
|
|
131
136
|
createRegisteredAgents,
|
|
132
137
|
deleteBookmark,
|
|
138
|
+
deleteSessionAlias,
|
|
133
139
|
ensureSessionTagsSync,
|
|
134
140
|
estimateCostForTokens,
|
|
135
141
|
estimateTokenCost,
|
|
@@ -139,7 +145,6 @@ export {
|
|
|
139
145
|
fallbackDisplayName,
|
|
140
146
|
filterSessions,
|
|
141
147
|
filterSessionsByProjectScope,
|
|
142
|
-
filtered,
|
|
143
148
|
filteredSession,
|
|
144
149
|
firstExisting,
|
|
145
150
|
firstUserMessageTitle,
|
|
@@ -166,6 +171,7 @@ export {
|
|
|
166
171
|
listBookmarks,
|
|
167
172
|
listCachedProjectGroups,
|
|
168
173
|
listFileActivity,
|
|
174
|
+
listSessionAliases,
|
|
169
175
|
listSessionFileActivity,
|
|
170
176
|
loadCachedSessionData,
|
|
171
177
|
loadCachedSessions,
|
|
@@ -174,13 +180,14 @@ export {
|
|
|
174
180
|
matchesProjectIdentity,
|
|
175
181
|
matchesProjectScope,
|
|
176
182
|
matchesScanWindow,
|
|
183
|
+
mergeSearchQueryOptions,
|
|
177
184
|
normalizeGitRemote,
|
|
185
|
+
normalizeSessionAlias,
|
|
178
186
|
normalizeTitleText,
|
|
179
187
|
openDb,
|
|
180
188
|
openDbReadOnly,
|
|
181
189
|
parseJsonlLines,
|
|
182
190
|
parseSearchQuery,
|
|
183
|
-
parsed,
|
|
184
191
|
parsedSession,
|
|
185
192
|
perf,
|
|
186
193
|
pricingResolver,
|
|
@@ -198,7 +205,6 @@ export {
|
|
|
198
205
|
searchSessions,
|
|
199
206
|
sessionSignature,
|
|
200
207
|
setFtsIntegrityCheckedPath,
|
|
201
|
-
skipped,
|
|
202
208
|
skippedSession,
|
|
203
209
|
sortSessions,
|
|
204
210
|
startOfLocalDay,
|
|
@@ -207,6 +213,7 @@ export {
|
|
|
207
213
|
syncSessionSearchIndexChanges,
|
|
208
214
|
toLocalDateKey,
|
|
209
215
|
upsertBookmark,
|
|
216
|
+
upsertSessionAlias,
|
|
210
217
|
withEstimatedSessionCost
|
|
211
218
|
};
|
|
212
|
-
//# sourceMappingURL=dist-
|
|
219
|
+
//# sourceMappingURL=dist-5356XOFP.js.map
|