fixes for allowable values
This commit is contained in:
8
dist/lib/swagger.js
vendored
8
dist/lib/swagger.js
vendored
@@ -1,5 +1,5 @@
|
||||
// swagger.js
|
||||
// version 2.0.15
|
||||
// version 2.0.16
|
||||
|
||||
var __bind = function(fn, me){
|
||||
return function(){
|
||||
@@ -636,7 +636,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
|
||||
param.allowableValues = {};
|
||||
param.allowableValues.descriptiveValues = [];
|
||||
|
||||
for(j = 0; j < enumValue.length; j++) {
|
||||
for(var j = 0; j < enumValue.length; j++) {
|
||||
var v = enumValue[j];
|
||||
if(param.defaultValue != null) {
|
||||
param.allowableValues.descriptiveValues.push ({
|
||||
@@ -652,7 +652,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
|
||||
}
|
||||
}
|
||||
}
|
||||
if(param.allowableValues != null) {
|
||||
else if(param.allowableValues != null) {
|
||||
if(param.allowableValues.valueType === "RANGE")
|
||||
param.isRange = true;
|
||||
else
|
||||
@@ -660,7 +660,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
|
||||
if(param.allowableValues != null) {
|
||||
param.allowableValues.descriptiveValues = [];
|
||||
if(param.allowableValues.values) {
|
||||
for(j = 0; j < param.allowableValues.values.length; j++){
|
||||
for(var j = 0; j < param.allowableValues.values.length; j++){
|
||||
var v = param.allowableValues.values[j];
|
||||
if(param.defaultValue != null) {
|
||||
param.allowableValues.descriptiveValues.push ({
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// swagger.js
|
||||
// version 2.0.15
|
||||
// version 2.0.16
|
||||
|
||||
var __bind = function(fn, me){
|
||||
return function(){
|
||||
@@ -636,7 +636,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
|
||||
param.allowableValues = {};
|
||||
param.allowableValues.descriptiveValues = [];
|
||||
|
||||
for(j = 0; j < enumValue.length; j++) {
|
||||
for(var j = 0; j < enumValue.length; j++) {
|
||||
var v = enumValue[j];
|
||||
if(param.defaultValue != null) {
|
||||
param.allowableValues.descriptiveValues.push ({
|
||||
@@ -652,7 +652,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
|
||||
}
|
||||
}
|
||||
}
|
||||
if(param.allowableValues != null) {
|
||||
else if(param.allowableValues != null) {
|
||||
if(param.allowableValues.valueType === "RANGE")
|
||||
param.isRange = true;
|
||||
else
|
||||
@@ -660,7 +660,7 @@ var SwaggerOperation = function(nickname, path, method, parameters, summary, not
|
||||
if(param.allowableValues != null) {
|
||||
param.allowableValues.descriptiveValues = [];
|
||||
if(param.allowableValues.values) {
|
||||
for(j = 0; j < param.allowableValues.values.length; j++){
|
||||
for(var j = 0; j < param.allowableValues.values.length; j++){
|
||||
var v = param.allowableValues.values[j];
|
||||
if(param.defaultValue != null) {
|
||||
param.allowableValues.descriptiveValues.push ({
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "swagger-ui",
|
||||
"version": "2.0.9",
|
||||
"version": "2.0.10",
|
||||
"description": "Swagger UI is a dependency-free collection of HTML, Javascript, and CSS assets that dynamically generate beautiful documentation from a Swagger-compliant API",
|
||||
"scripts": {
|
||||
"build": "PATH=$PATH:./node_modules/.bin cake dist",
|
||||
@@ -19,7 +19,7 @@
|
||||
"readmeFilename": "README.md",
|
||||
"dependencies": {
|
||||
"coffee-script": "~1.5.0",
|
||||
"swagger-client": "2.0.14",
|
||||
"swagger-client": "2.0.16",
|
||||
"handlebars": "~1.0.10",
|
||||
"less": "~1.4.2"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user