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

@@ -91,7 +91,7 @@ apiInstance.createUsersWithArrayInput(body, callback);
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**[User]**](Array.md)| List of user object |
**body** | [**[User]**](User.md)| List of user object |
### Return type
@@ -136,7 +136,7 @@ apiInstance.createUsersWithListInput(body, callback);
Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
**body** | [**[User]**](Array.md)| List of user object |
**body** | [**[User]**](User.md)| List of user object |
### Return type

View File

@@ -609,7 +609,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

@@ -100,7 +100,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
* @param {module:api/UserApi~createUsersWithArrayInputCallback} callback The callback function, accepting three arguments: error, data, response
*/
this.createUsersWithArrayInput = function(body, callback) {
@@ -142,7 +142,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
* @param {module:api/UserApi~createUsersWithListInputCallback} callback The callback function, accepting three arguments: error, data, response
*/
this.createUsersWithListInput = function(body, callback) {