2 Commits

Author SHA1 Message Date
506a644c6b 1.1.5
Some checks failed
Default (tags) / security (push) Failing after 16s
Default (tags) / test (push) Failing after 12s
Default (tags) / release (push) Has been skipped
Default (tags) / metadata (push) Has been skipped
2025-01-01 18:40:36 +01:00
555e156b5e fix(GermanBusinessData): Add console log for total records processed at the end of the stream. 2025-01-01 18:40:36 +01:00
4 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## 2025-01-01 - 1.1.5 - fix(GermanBusinessData)
Add console log for total records processed at the end of the stream.
- Ensure that the number of records processed is logged at the end of data stream processing.
## 2024-12-31 - 1.1.4 - fix(documentation)
Update description and keywords in package.json

View File

@ -1,6 +1,6 @@
{
"name": "@fin.cx/opendata",
"version": "1.1.4",
"version": "1.1.5",
"private": false,
"description": "A TypeScript library for accessing, managing, and updating open business data, focused on German companies and integrating with MongoDB.",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@fin.cx/opendata',
version: '1.1.4',
version: '1.1.5',
description: 'A TypeScript library for accessing, managing, and updating open business data, focused on German companies and integrating with MongoDB.'
}

View File

@ -64,6 +64,7 @@ export class GermanBusinessData {
}
},
finalFunction: async (streamToolsArg) => {
console.log(`finished processing ${totalRecordsCounter} records.`);
if (!nextRest) return;
JSON.parse(nextRest);
}