Browse Source

Bugfix/fix jsonpath import (#4115)

* Fix jsonpath import

* Update changelog
pull/4106/head^2
Ed 1 month ago
committed by GitHub
parent
commit
febb4119c6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      CHANGELOG.md
  2. 2
      apps/api/src/services/data-provider/manual/manual.service.ts

4
CHANGELOG.md

@ -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` - 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 ## 2.127.0 - 2024-12-08
### Added ### Added

2
apps/api/src/services/data-provider/manual/manual.service.ts

@ -29,7 +29,7 @@ import * as cheerio from 'cheerio';
import { isUUID } from 'class-validator'; import { isUUID } from 'class-validator';
import { addDays, format, isBefore } from 'date-fns'; import { addDays, format, isBefore } from 'date-fns';
import got, { Headers } from 'got'; import got, { Headers } from 'got';
import jsonpath from 'jsonpath'; import * as jsonpath from 'jsonpath';
@Injectable() @Injectable()
export class ManualService implements DataProviderInterface { export class ManualService implements DataProviderInterface {

Loading…
Cancel
Save