@echoes-io/mcp-server 1.4.1 → 1.4.2
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.
|
@@ -74,6 +74,7 @@ export async function timelineSync(args, tracker) {
|
|
|
74
74
|
};
|
|
75
75
|
}
|
|
76
76
|
catch (_error) {
|
|
77
|
+
console.error(`Error parsing chapter file ${file}:`, _error instanceof Error ? _error.message : _error);
|
|
77
78
|
errors++;
|
|
78
79
|
return null;
|
|
79
80
|
}
|
|
@@ -122,7 +123,7 @@ export async function timelineSync(args, tracker) {
|
|
|
122
123
|
chapter: chNumber,
|
|
123
124
|
pov: chapterData.metadata.pov || 'Unknown',
|
|
124
125
|
title: chapterData.metadata.title || 'Untitled',
|
|
125
|
-
date:
|
|
126
|
+
date: chapterData.metadata.date || '',
|
|
126
127
|
summary: chapterData.metadata.summary || '',
|
|
127
128
|
location: chapterData.metadata.location || '',
|
|
128
129
|
outfit: chapterData.metadata.outfit || '',
|
|
@@ -144,6 +145,7 @@ export async function timelineSync(args, tracker) {
|
|
|
144
145
|
}
|
|
145
146
|
}
|
|
146
147
|
catch (_error) {
|
|
148
|
+
console.error(`Error creating/updating chapter ${arcName}/ep${ep.number}/ch${chNumber}:`, _error instanceof Error ? _error.message : _error);
|
|
147
149
|
errors++;
|
|
148
150
|
}
|
|
149
151
|
}
|
package/package.json
CHANGED