Merge remote-tracking branch 'origin/4.1.x' into sync_41x_50x

This commit is contained in:
wing328
2019-06-27 18:27:20 +08:00
1243 changed files with 38715 additions and 15082 deletions

View File

@@ -87,7 +87,7 @@ apiInstance.createUsersWithArrayInput(body).then(function() {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**[User]**](Array.md)| List of user object |
**body** | [**[User]**](User.md)| List of user object |
### Return type
@@ -130,7 +130,7 @@ apiInstance.createUsersWithListInput(body).then(function() {
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**[User]**](Array.md)| List of user object |
**body** | [**[User]**](User.md)| List of user object |
### Return type

View File

@@ -598,7 +598,8 @@
];
};
exports.getBasePathFromSettings = function(index, variables={}) {
exports.getBasePathFromSettings = function(index, variables) {
var variables = variables || {};
var servers = this.hostSettings();
// check array index out of bound

View File

@@ -99,7 +99,7 @@
/**
* Creates list of users with given input array
* @param {Array.<User>} body List of user object
* @param {Array.<module:model/User>} body List of user object
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
*/
this.createUsersWithArrayInputWithHttpInfo = function(body) {
@@ -133,7 +133,7 @@
/**
* Creates list of users with given input array
* @param {Array.<User>} body List of user object
* @param {Array.<module:model/User>} body List of user object
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
*/
this.createUsersWithArrayInput = function(body) {
@@ -146,7 +146,7 @@
/**
* Creates list of users with given input array
* @param {Array.<User>} body List of user object
* @param {Array.<module:model/User>} body List of user object
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing HTTP response
*/
this.createUsersWithListInputWithHttpInfo = function(body) {
@@ -180,7 +180,7 @@
/**
* Creates list of users with given input array
* @param {Array.<User>} body List of user object
* @param {Array.<module:model/User>} body List of user object
* @return {Promise} a {@link https://www.promisejs.org/|Promise}
*/
this.createUsersWithListInput = function(body) {