fix: resolve all TypeScript linting errors

- Fix searchTemplatesByMetadata calls to pass limit/offset as separate params
- Fix syntax errors with brace placement in test files
- Add type annotations for implicit any types
- All tests passing and TypeScript compilation successful
This commit is contained in:
czlonkowski
2025-09-15 09:52:13 +02:00
parent aaf7c83301
commit 297acb039e
3 changed files with 35 additions and 124 deletions

View File

@@ -463,7 +463,7 @@ describe('MetadataGenerator', () => {
const userMessage = request.body.messages[1].content;
// Should limit to top 10 groups
const summaryLine = userMessage.split('\n').find(line =>
const summaryLine = userMessage.split('\n').find((line: string) =>
line.includes('Nodes Used (50)')
);