Skip to content

Commit

Permalink
Merge pull request #41 from imgix/SUPPORT-1021-face-pixel_face-blur_u…
Browse files Browse the repository at this point in the history
…pdates

[SUPPORT-1021] Releases `face-pixel` and `face-blur`
  • Loading branch information
vuryanh authored Jul 23, 2024
2 parents a91e94b + 376d437 commit 1e9b78f
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imgix-url-params",
"version": "11.23.0",
"version": "11.24.0",
"homepage": "https://github.com/imgix/imgix-url-params",
"authors": ["Jason Eberle <[email protected]>"],
"description": "Organized, machine-friendly documentation of imgix's URL parameters",
Expand Down
46 changes: 45 additions & 1 deletion dist/parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}(this, function () {

return {
"version": "11.23.0",
"version": "11.24.0",
"parameters": {
"ar": {
"display_name": "aspect ratio",
Expand Down Expand Up @@ -1167,6 +1167,49 @@ return {
"url": "https://docs.imgix.com/apis/url/expires",
"short_description": "A Unix timestamp specifying a UTC time. Requests made to this URL after that time will output a 404 status code."
},
"face-blur": {
"display_name": "face blur",
"category": "face-detection",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "integer",
"strict_range": {
"min": 0,
"max": 100
}
}
],
"default": 0,
"short_description": "Specifies the amount of blur to apply to detected faces. Defaults to 0."
},
"face-pixel": {
"display_name": "face pixelation",
"category": "face-detection",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "integer",
"strict_range": {
"min": 0,
"max": 100
}
}
],
"default": 0,
"aliases": [
"face-pixelate"
],
"short_description": "Specifies the pixelation amount of the face."
},
"faceindex": {
"display_name": "face index",
"category": "face-detection",
Expand Down Expand Up @@ -3890,6 +3933,7 @@ return {
"blendy": "blend-y",
"by": "blend-y",
"b": "blend",
"face-pixelate": "face-pixel",
"fillcolor": "fill-color",
"fill-generative-fallback": "fill-gen-fallback",
"fill-generative-negative-prompt": "fill-gen-neg-prompt",
Expand Down
46 changes: 45 additions & 1 deletion dist/parameters.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "11.23.0",
"version": "11.24.0",
"parameters": {
"ar": {
"display_name": "aspect ratio",
Expand Down Expand Up @@ -1151,6 +1151,49 @@
"url": "https://docs.imgix.com/apis/url/expires",
"short_description": "A Unix timestamp specifying a UTC time. Requests made to this URL after that time will output a 404 status code."
},
"face-blur": {
"display_name": "face blur",
"category": "face-detection",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "integer",
"strict_range": {
"min": 0,
"max": 100
}
}
],
"default": 0,
"short_description": "Specifies the amount of blur to apply to detected faces. Defaults to 0."
},
"face-pixel": {
"display_name": "face pixelation",
"category": "face-detection",
"available_in": [
"url",
"graph",
"output"
],
"expects": [
{
"type": "integer",
"strict_range": {
"min": 0,
"max": 100
}
}
],
"default": 0,
"aliases": [
"face-pixelate"
],
"short_description": "Specifies the pixelation amount of the face."
},
"faceindex": {
"display_name": "face index",
"category": "face-detection",
Expand Down Expand Up @@ -3874,6 +3917,7 @@
"blendy": "blend-y",
"by": "blend-y",
"b": "blend",
"face-pixelate": "face-pixel",
"fillcolor": "fill-color",
"fill-generative-fallback": "fill-gen-fallback",
"fill-generative-negative-prompt": "fill-gen-neg-prompt",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "imgix-url-params",
"version": "11.23.0",
"version": "11.24.0",
"description": "Organized, machine-friendly documentation of imgix's URL parameters",
"main": "dist/manifest.json",
"scripts": {
Expand Down

0 comments on commit 1e9b78f

Please sign in to comment.