duck-duck-scrape
Advanced tools
Comparing version 2.1.1 to 2.1.2
@@ -8,2 +8,5 @@ # Changelog | ||
## [Unreleased] | ||
## [2.1.2] - 2021-08-08 | ||
### Fixed: | ||
- License filter in searchImages is now being properly used | ||
## [2.1.1] - 2021-08-07 | ||
@@ -30,3 +33,3 @@ ### Fixed: | ||
[Unreleased]: https://github.com/Snazzah/duck-duck-scrape/compare/v2.1.1...HEAD | ||
[Unreleased]: https://github.com/Snazzah/duck-duck-scrape/compare/v2.1.2...HEAD | ||
[1.0.3]: https://github.com/Snazzah/duck-duck-scrape/releases/tag/v1.0.3 | ||
@@ -36,2 +39,3 @@ [2.0.0]: https://github.com/Snazzah/duck-duck-scrape/compare/v1.0.3...v2.0.0 | ||
[2.1.0]: https://github.com/Snazzah/duck-duck-scrape/compare/v2.0.0...v2.1.0 | ||
[2.1.1]: https://github.com/Snazzah/duck-duck-scrape/compare/v2.1.0...v2.1.1 | ||
[2.1.1]: https://github.com/Snazzah/duck-duck-scrape/compare/v2.1.0...v2.1.1 | ||
[2.1.2]: https://github.com/Snazzah/duck-duck-scrape/compare/v2.1.0...v2.1.2 |
@@ -130,3 +130,4 @@ "use strict"; | ||
options.layout ? `layout:${options.layout}` : '', | ||
options.color ? `color:${options.color}` : '' | ||
options.color ? `color:${options.color}` : '', | ||
options.license ? `license:${options.license}` : '' | ||
]; | ||
@@ -133,0 +134,0 @@ const queryObject = { |
@@ -38,3 +38,3 @@ import { NeedleOptions } from 'needle'; | ||
'utc-timestamp': string; | ||
status: '0' | '5'; | ||
status: '0' | '4' | '5'; | ||
'output-format': 'json'; | ||
@@ -41,0 +41,0 @@ description: string; |
{ | ||
"name": "duck-duck-scrape", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "Search from DuckDuckGo and use it's spice APIs.", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -164,3 +164,4 @@ import { decode } from 'html-entities'; | ||
options.layout ? `layout:${options.layout}` : '', | ||
options.color ? `color:${options.color}` : '' | ||
options.color ? `color:${options.color}` : '', | ||
options.license ? `license:${options.license}` : '' | ||
]; | ||
@@ -167,0 +168,0 @@ |
@@ -42,3 +42,3 @@ import needle, { NeedleOptions } from 'needle'; | ||
'utc-timestamp': string; | ||
status: '0' | '5'; | ||
status: '0' | '4' | '5'; | ||
'output-format': 'json'; | ||
@@ -45,0 +45,0 @@ description: string; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
137184
3789