Browse Source
Bugfix/fix jsonpath import (#4115)
* Fix jsonpath import
* Update changelog
pull/4106/head^2
Ed
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
5 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/services/data-provider/manual/manual.service.ts
|
|
@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 |
|
|
|
|
|
|
|
- Upgraded `@internationalized/number` from version `3.5.2` to `3.6.0` |
|
|
|
|
|
|
|
### Fixed |
|
|
|
|
|
|
|
- Fixed the import of `jsonpath` to support REST APIs (`JSON`) via the scraper configuration |
|
|
|
|
|
|
|
## 2.127.0 - 2024-12-08 |
|
|
|
|
|
|
|
### Added |
|
|
|
|
|
@ -29,7 +29,7 @@ import * as cheerio from 'cheerio'; |
|
|
|
import { isUUID } from 'class-validator'; |
|
|
|
import { addDays, format, isBefore } from 'date-fns'; |
|
|
|
import got, { Headers } from 'got'; |
|
|
|
import jsonpath from 'jsonpath'; |
|
|
|
import * as jsonpath from 'jsonpath'; |
|
|
|
|
|
|
|
@Injectable() |
|
|
|
export class ManualService implements DataProviderInterface { |
|
|
|