Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SUPPORT-1021] Releases face-pixel and face-blur #41

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading