Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
c97c8e711a | |||
d5654a7bc7 | |||
c91439ab6b | |||
ad0c6a4112 |
24
changelog.md
24
changelog.md
@ -1,5 +1,29 @@
|
||||
# Changelog
|
||||
|
||||
## 2024-12-31 - 1.1.2 - fix(GermanBusinessData)
|
||||
Ensure unique ID generation for BusinessRecord
|
||||
|
||||
- Added generation of a new ID for each BusinessRecord in GermanBusinessData.
|
||||
- Ensures each business record has a unique identifier.
|
||||
|
||||
## 2024-12-31 - 1.1.1 - fix(dependencies)
|
||||
Update dependencies and devDependencies to newer versions.
|
||||
|
||||
- @git.zone/tsbuild from ^2.1.25 to ^2.2.0
|
||||
- @git.zone/tsbundle from ^2.0.5 to ^2.1.0
|
||||
- @git.zone/tsrun from ^1.2.46 to ^1.3.3
|
||||
- @git.zone/tstest from ^1.0.84 to ^1.0.90
|
||||
- @push.rocks/tapbundle from ^5.0.15 to ^5.5.4
|
||||
- @types/node from ^20.9.0 to ^22.10.2
|
||||
- @push.rocks/qenv from ^6.0.4 to ^6.1.0
|
||||
- @push.rocks/smartarchive from ^4.0.19 to ^4.0.39
|
||||
- @push.rocks/smartdata from ^5.0.33 to ^5.2.10
|
||||
- @push.rocks/smartfile from ^11.0.0 to ^11.0.23
|
||||
- @push.rocks/smartpath from ^5.0.11 to ^5.0.18
|
||||
- @push.rocks/smartpromise from ^4.0.3 to ^4.0.4
|
||||
- @push.rocks/smartrequest from ^2.0.21 to ^2.0.23
|
||||
- @push.rocks/smartstream from ^3.0.30 to ^3.2.5
|
||||
|
||||
## 2024-12-31 - 1.1.0 - feat(core)
|
||||
Enhanced data handling and retrieval features, improved usage documentation
|
||||
|
||||
|
30
package.json
30
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@fin.cx/opendata",
|
||||
"version": "1.1.0",
|
||||
"version": "1.1.2",
|
||||
"private": false,
|
||||
"description": "A TypeScript-based library for accessing and managing open business data, specifically for German companies.",
|
||||
"main": "dist_ts/index.js",
|
||||
@ -14,23 +14,23 @@
|
||||
"buildDocs": "(tsdoc)"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@git.zone/tsbuild": "^2.1.25",
|
||||
"@git.zone/tsbundle": "^2.0.5",
|
||||
"@git.zone/tsrun": "^1.2.46",
|
||||
"@git.zone/tstest": "^1.0.84",
|
||||
"@push.rocks/tapbundle": "^5.0.15",
|
||||
"@types/node": "^20.9.0"
|
||||
"@git.zone/tsbuild": "^2.2.0",
|
||||
"@git.zone/tsbundle": "^2.1.0",
|
||||
"@git.zone/tsrun": "^1.3.3",
|
||||
"@git.zone/tstest": "^1.0.90",
|
||||
"@push.rocks/tapbundle": "^5.5.4",
|
||||
"@types/node": "^22.10.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@push.rocks/qenv": "^6.0.4",
|
||||
"@push.rocks/smartarchive": "^4.0.19",
|
||||
"@push.rocks/smartdata": "^5.0.33",
|
||||
"@push.rocks/qenv": "^6.1.0",
|
||||
"@push.rocks/smartarchive": "^4.0.39",
|
||||
"@push.rocks/smartdata": "^5.2.10",
|
||||
"@push.rocks/smartdelay": "^3.0.5",
|
||||
"@push.rocks/smartfile": "^11.0.0",
|
||||
"@push.rocks/smartpath": "^5.0.11",
|
||||
"@push.rocks/smartpromise": "^4.0.3",
|
||||
"@push.rocks/smartrequest": "^2.0.21",
|
||||
"@push.rocks/smartstream": "^3.0.30"
|
||||
"@push.rocks/smartfile": "^11.0.23",
|
||||
"@push.rocks/smartpath": "^5.0.18",
|
||||
"@push.rocks/smartpromise": "^4.0.4",
|
||||
"@push.rocks/smartrequest": "^2.0.23",
|
||||
"@push.rocks/smartstream": "^3.2.5"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
12905
pnpm-lock.yaml
generated
12905
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@fin.cx/opendata',
|
||||
version: '1.1.0',
|
||||
version: '1.1.2',
|
||||
description: 'A TypeScript-based library for accessing and managing open business data, specifically for German companies.'
|
||||
}
|
||||
|
@ -57,6 +57,7 @@ export class GermanBusinessData {
|
||||
totalRecordsCounter++;
|
||||
if (totalRecordsCounter % 10000 === 0) console.log(`${totalRecordsCounter} total records.`);
|
||||
const businessRecord = new this.openDataRef.CBusinessRecord();
|
||||
businessRecord.id = await this.openDataRef.CBusinessRecord.getNewId();
|
||||
businessRecord.data.name = entry.name;
|
||||
await businessRecord.save();
|
||||
// console.log(`stored ${businessRecord.data.name}`);
|
||||
|
Reference in New Issue
Block a user