Skip to content

Commit

Permalink
Update to 5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstraw authored Sep 29, 2016
1 parent 0ea1f96 commit 27d0763
Show file tree
Hide file tree
Showing 4 changed files with 174 additions and 60 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.1",
"version": "5.0.2",
"homepage": "https://github.com/imgix/image-api-spec",
"authors": [
"Jason Eberle <[email protected]>"
Expand Down
115 changes: 86 additions & 29 deletions dist/parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,17 @@ return {
],
"expects": [
{
"type": "number",
"type": "integer",
"strict_range": {
"min": 0
"min": 2,
"max": 8192
}
},
{
"type": "unit_scalar",
"strict_range": {
"min": 0,
"max": 1
}
}
],
Expand Down Expand Up @@ -256,7 +264,8 @@ return {
"0": {
"type": "integer",
"suggested_range": {
"min": 0
"min": 1,
"max": 100
}
},
"1": {
Expand Down Expand Up @@ -338,9 +347,17 @@ return {
],
"expects": [
{
"type": "number",
"type": "integer",
"strict_range": {
"min": 0
"min": 2,
"max": 8192
}
},
{
"type": "unit_scalar",
"strict_range": {
"min": 0,
"max": 1
}
}
],
Expand Down Expand Up @@ -888,12 +905,17 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 2,
"max": 8192
}
},
{
"type": "unit_scalar",
"strict_range": {
"min": 0
"min": 0,
"max": 1
}
}
],
Expand Down Expand Up @@ -1128,12 +1150,17 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 2,
"max": 8192
}
},
{
"type": "unit_scalar",
"strict_range": {
"min": 0
"min": 0,
"max": 1
}
}
],
Expand Down Expand Up @@ -1202,12 +1229,17 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 2,
"max": 8192
}
},
{
"type": "unit_scalar",
"strict_range": {
"min": 0
"min": 0,
"max": 1
}
}
],
Expand Down Expand Up @@ -1298,7 +1330,11 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 1,
"max": 8192
}
}
],
"depends": [
Expand All @@ -1315,7 +1351,11 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 1,
"max": 8192
}
}
],
"depends": [
Expand All @@ -1332,7 +1372,11 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 1,
"max": 8192
}
}
],
"depends": [
Expand All @@ -1349,7 +1393,11 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 1,
"max": 8192
}
}
],
"depends": [
Expand Down Expand Up @@ -1580,27 +1628,27 @@ return {
"expects": [
{
"0": {
"type": "number",
"suggested_range": {
"type": "integer",
"strict_range": {
"min": 0
}
},
"1": {
"type": "number",
"suggested_range": {
"type": "integer",
"strict_range": {
"min": 0
}
},
"2": {
"type": "number",
"suggested_range": {
"min": 0
"type": "integer",
"strict_range": {
"min": 1
}
},
"3": {
"type": "number",
"suggested_range": {
"min": 0
"type": "integer",
"strict_range": {
"min": 1
}
},
"type": "list"
Expand Down Expand Up @@ -2493,12 +2541,17 @@ return {
],
"expects": [
{
"type": "number"
"type": "integer",
"strict_range": {
"min": 2,
"max": 8192
}
},
{
"type": "unit_scalar",
"strict_range": {
"min": 0
"min": 0,
"max": 1
}
}
],
Expand Down Expand Up @@ -2554,7 +2607,11 @@ return {
],
"expects": [
{
"type": "number"
"type": "number",
"suggested_range": {
"min": 1,
"max": 60
}
}
],
"experimental": true,
Expand Down Expand Up @@ -2679,7 +2736,7 @@ return {
"tsz": "txtsize",
"tt": "txttrack"
},
"version": "5.0.1"
"version": "5.0.2"
};

}));
Loading

0 comments on commit 27d0763

Please sign in to comment.