Skip to content

Commit

Permalink
Update to 7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstraw committed Oct 27, 2016
1 parent 27d0763 commit 00869d4
Show file tree
Hide file tree
Showing 4 changed files with 146 additions and 62 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "image-api-spec",
"version": "5.0.2",
"version": "7.0.0",
"homepage": "https://github.com/imgix/image-api-spec",
"authors": [
"Jason Eberle <jason@imgix.com>"
Expand Down
102 changes: 72 additions & 30 deletions dist/parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,16 +261,20 @@ return {
],
"expects": [
{
"0": {
"type": "integer",
"suggested_range": {
"min": 1,
"max": 100
"0": [
{
"type": "integer",
"suggested_range": {
"min": 1,
"max": 100
}
}
},
"1": {
"type": "hex_color"
},
],
"1": [
{
"type": "hex_color"
}
],
"type": "list",
"length": 2
}
Expand Down Expand Up @@ -640,6 +644,20 @@ return {
"url": "https://docs.imgix.com/apis/url/adjustment/exp",
"short_description": "Adjusts the exposure of the output image."
},
"expires": {
"display_name": "URL expiration timestamp",
"category": "expiration",
"available_in": [
"url"
],
"expects": [
{
"type": "timestamp"
}
],
"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."
},
"faceindex": {
"display_name": "face index",
"category": "face_detection",
Expand Down Expand Up @@ -1627,30 +1645,54 @@ return {
],
"expects": [
{
"0": {
"type": "integer",
"strict_range": {
"min": 0
"0": [
{
"type": "integer",
"strict_range": {
"min": 0
}
},
{
"type": "string",
"possible_values": [
"left",
"center",
"right"
]
}
},
"1": {
"type": "integer",
"strict_range": {
"min": 0
],
"1": [
{
"type": "integer",
"strict_range": {
"min": 0
}
},
{
"type": "string",
"possible_values": [
"top",
"middle",
"bottom"
]
}
},
"2": {
"type": "integer",
"strict_range": {
"min": 1
],
"2": [
{
"type": "integer",
"strict_range": {
"min": 1
}
}
},
"3": {
"type": "integer",
"strict_range": {
"min": 1
],
"3": [
{
"type": "integer",
"strict_range": {
"min": 1
}
}
},
],
"type": "list"
}
],
Expand Down Expand Up @@ -2736,7 +2778,7 @@ return {
"tsz": "txtsize",
"tt": "txttrack"
},
"version": "5.0.2"
"version": "7.0.0"
};

}));
102 changes: 72 additions & 30 deletions dist/parameters.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,16 +245,20 @@
],
"expects": [
{
"0": {
"type": "integer",
"suggested_range": {
"min": 1,
"max": 100
"0": [
{
"type": "integer",
"suggested_range": {
"min": 1,
"max": 100
}
}
},
"1": {
"type": "hex_color"
},
],
"1": [
{
"type": "hex_color"
}
],
"type": "list",
"length": 2
}
Expand Down Expand Up @@ -624,6 +628,20 @@
"url": "https://docs.imgix.com/apis/url/adjustment/exp",
"short_description": "Adjusts the exposure of the output image."
},
"expires": {
"display_name": "URL expiration timestamp",
"category": "expiration",
"available_in": [
"url"
],
"expects": [
{
"type": "timestamp"
}
],
"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."
},
"faceindex": {
"display_name": "face index",
"category": "face_detection",
Expand Down Expand Up @@ -1611,30 +1629,54 @@
],
"expects": [
{
"0": {
"type": "integer",
"strict_range": {
"min": 0
"0": [
{
"type": "integer",
"strict_range": {
"min": 0
}
},
{
"type": "string",
"possible_values": [
"left",
"center",
"right"
]
}
},
"1": {
"type": "integer",
"strict_range": {
"min": 0
],
"1": [
{
"type": "integer",
"strict_range": {
"min": 0
}
},
{
"type": "string",
"possible_values": [
"top",
"middle",
"bottom"
]
}
},
"2": {
"type": "integer",
"strict_range": {
"min": 1
],
"2": [
{
"type": "integer",
"strict_range": {
"min": 1
}
}
},
"3": {
"type": "integer",
"strict_range": {
"min": 1
],
"3": [
{
"type": "integer",
"strict_range": {
"min": 1
}
}
},
],
"type": "list"
}
],
Expand Down Expand Up @@ -2720,5 +2762,5 @@
"tsz": "txtsize",
"tt": "txttrack"
},
"version": "5.0.2"
"version": "7.0.0"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "image-api-spec",
"version": "5.0.2",
"version": "7.0.0",
"description": "A single source of truth for the imgix URL API.",
"main": "dist/manifest.json",
"scripts": {
Expand Down

0 comments on commit 00869d4

Please sign in to comment.