codesesh 0.11.0 → 0.13.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 +7 -1
- package/dist/{chunk-BIXOP5QX.js → chunk-BV65IEWZ.js} +429 -192
- package/dist/chunk-BV65IEWZ.js.map +1 -0
- package/dist/{dist-T737I76S.js → dist-VD54GDPO.js} +22 -2
- package/dist/index.js +1058 -442
- package/dist/index.js.map +1 -1
- package/dist/scan-refresh-worker.js +35 -9
- package/dist/scan-refresh-worker.js.map +1 -1
- package/dist/search-index-worker.js +6 -1
- package/dist/search-index-worker.js.map +1 -1
- package/dist/smart-tag-worker.js +1 -1
- package/dist/web/assets/index-ZikfLnUo.js +113 -0
- package/dist/web/assets/index-y6Zx3LT1.css +2 -0
- package/dist/web/assets/markdown-dR4kAewZ.js +14 -0
- package/dist/web/assets/react-DBHwgW7V.js +1821 -0
- package/dist/web/assets/syntax-C_RLNYQn.js +6 -0
- package/dist/web/assets/vendor-bXsb4Kz4.js +40 -0
- package/dist/web/index.html +6 -6
- package/package.json +9 -8
- package/dist/chunk-BIXOP5QX.js.map +0 -1
- package/dist/web/assets/index-DlZEB-Op.css +0 -2
- package/dist/web/assets/index-O6YSX0s1.js +0 -113
- package/dist/web/assets/markdown-Bm__FT1K.js +0 -14
- package/dist/web/assets/react-CGUTVnhO.js +0 -1821
- package/dist/web/assets/syntax-Cjw-OADI.js +0 -6
- package/dist/web/assets/vendor-CR3FdUHs.js +0 -40
- /package/dist/{dist-T737I76S.js.map → dist-VD54GDPO.js.map} +0 -0
|
@@ -25,8 +25,10 @@ import {
|
|
|
25
25
|
createProjectScopeMatcher,
|
|
26
26
|
createRegisteredAgents,
|
|
27
27
|
deleteBookmark,
|
|
28
|
+
ensureSessionTagsSync,
|
|
28
29
|
estimateCostForTokens,
|
|
29
30
|
estimateTokenCost,
|
|
31
|
+
executeSessionSearch,
|
|
30
32
|
extractFileActivityOccurrences,
|
|
31
33
|
extractSessionFileActivity,
|
|
32
34
|
fallbackDisplayName,
|
|
@@ -39,10 +41,13 @@ import {
|
|
|
39
41
|
firstVisibleLine,
|
|
40
42
|
getAgentByName,
|
|
41
43
|
getAgentInfoMap,
|
|
44
|
+
getAgentLastFullSyncAt,
|
|
42
45
|
getCacheInfo,
|
|
46
|
+
getCachePath2,
|
|
43
47
|
getCursorDataPath,
|
|
44
48
|
getParsedSession,
|
|
45
49
|
getPricingRegistry,
|
|
50
|
+
getProjectIdentityKey,
|
|
46
51
|
getRegisteredAgents,
|
|
47
52
|
getSessionActivityTime,
|
|
48
53
|
getSessionAgentName,
|
|
@@ -51,6 +56,7 @@ import {
|
|
|
51
56
|
hasBillablePricing,
|
|
52
57
|
importBookmarks,
|
|
53
58
|
isAgentCacheInitialized,
|
|
59
|
+
isProjectIdentityKind,
|
|
54
60
|
isSqliteAvailable,
|
|
55
61
|
listBookmarks,
|
|
56
62
|
listCachedProjectGroups,
|
|
@@ -59,7 +65,10 @@ import {
|
|
|
59
65
|
loadCachedSessionData,
|
|
60
66
|
loadCachedSessions,
|
|
61
67
|
markAgentCacheInitialized,
|
|
68
|
+
markAgentFullSyncCompleted,
|
|
69
|
+
matchesProjectIdentity,
|
|
62
70
|
matchesProjectScope,
|
|
71
|
+
matchesScanWindow,
|
|
63
72
|
normalizeGitRemote,
|
|
64
73
|
normalizeTitleText,
|
|
65
74
|
openDb,
|
|
@@ -83,6 +92,7 @@ import {
|
|
|
83
92
|
searchFileActivitySessions,
|
|
84
93
|
searchSessions,
|
|
85
94
|
sessionSignature,
|
|
95
|
+
setFtsIntegrityCheckedPath,
|
|
86
96
|
skipped,
|
|
87
97
|
skippedSession,
|
|
88
98
|
sortSessions,
|
|
@@ -93,7 +103,7 @@ import {
|
|
|
93
103
|
toLocalDateKey,
|
|
94
104
|
upsertBookmark,
|
|
95
105
|
withEstimatedSessionCost
|
|
96
|
-
} from "./chunk-
|
|
106
|
+
} from "./chunk-BV65IEWZ.js";
|
|
97
107
|
export {
|
|
98
108
|
BaseAgent,
|
|
99
109
|
BookmarkStorageUnavailableError,
|
|
@@ -120,8 +130,10 @@ export {
|
|
|
120
130
|
createProjectScopeMatcher,
|
|
121
131
|
createRegisteredAgents,
|
|
122
132
|
deleteBookmark,
|
|
133
|
+
ensureSessionTagsSync,
|
|
123
134
|
estimateCostForTokens,
|
|
124
135
|
estimateTokenCost,
|
|
136
|
+
executeSessionSearch,
|
|
125
137
|
extractFileActivityOccurrences,
|
|
126
138
|
extractSessionFileActivity,
|
|
127
139
|
fallbackDisplayName,
|
|
@@ -134,10 +146,13 @@ export {
|
|
|
134
146
|
firstVisibleLine,
|
|
135
147
|
getAgentByName,
|
|
136
148
|
getAgentInfoMap,
|
|
149
|
+
getAgentLastFullSyncAt,
|
|
137
150
|
getCacheInfo,
|
|
151
|
+
getCachePath2 as getCachePath,
|
|
138
152
|
getCursorDataPath,
|
|
139
153
|
getParsedSession,
|
|
140
154
|
getPricingRegistry,
|
|
155
|
+
getProjectIdentityKey,
|
|
141
156
|
getRegisteredAgents,
|
|
142
157
|
getSessionActivityTime,
|
|
143
158
|
getSessionAgentName,
|
|
@@ -146,6 +161,7 @@ export {
|
|
|
146
161
|
hasBillablePricing,
|
|
147
162
|
importBookmarks,
|
|
148
163
|
isAgentCacheInitialized,
|
|
164
|
+
isProjectIdentityKind,
|
|
149
165
|
isSqliteAvailable,
|
|
150
166
|
listBookmarks,
|
|
151
167
|
listCachedProjectGroups,
|
|
@@ -154,7 +170,10 @@ export {
|
|
|
154
170
|
loadCachedSessionData,
|
|
155
171
|
loadCachedSessions,
|
|
156
172
|
markAgentCacheInitialized,
|
|
173
|
+
markAgentFullSyncCompleted,
|
|
174
|
+
matchesProjectIdentity,
|
|
157
175
|
matchesProjectScope,
|
|
176
|
+
matchesScanWindow,
|
|
158
177
|
normalizeGitRemote,
|
|
159
178
|
normalizeTitleText,
|
|
160
179
|
openDb,
|
|
@@ -178,6 +197,7 @@ export {
|
|
|
178
197
|
searchFileActivitySessions,
|
|
179
198
|
searchSessions,
|
|
180
199
|
sessionSignature,
|
|
200
|
+
setFtsIntegrityCheckedPath,
|
|
181
201
|
skipped,
|
|
182
202
|
skippedSession,
|
|
183
203
|
sortSessions,
|
|
@@ -189,4 +209,4 @@ export {
|
|
|
189
209
|
upsertBookmark,
|
|
190
210
|
withEstimatedSessionCost
|
|
191
211
|
};
|
|
192
|
-
//# sourceMappingURL=dist-
|
|
212
|
+
//# sourceMappingURL=dist-VD54GDPO.js.map
|