forked from loafle/openapi-generator-original
* Update version to 4.0.2-SNAPSHOT * Update samples * Change AppVeyor script (test of gradle sample) * Fix release version bump script (gradle plugin, sample poms) * Include sonatype snapshots in maven examples which reference 4.0.2-SNAPSHOT
102 lines
3.2 KiB
JavaScript
102 lines
3.2 KiB
JavaScript
/**
|
|
* OpenAPI Petstore
|
|
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
*
|
|
* OpenAPI Generator version: 4.0.2-SNAPSHOT
|
|
*
|
|
* Do not edit the class manually.
|
|
*
|
|
*/
|
|
|
|
(function(root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD. Register as an anonymous module.
|
|
define(['ApiClient', 'model/Client'], factory);
|
|
} else if (typeof module === 'object' && module.exports) {
|
|
// CommonJS-like environments that support module.exports, like Node.
|
|
module.exports = factory(require('../ApiClient'), require('../model/Client'));
|
|
} else {
|
|
// Browser globals (root is window)
|
|
if (!root.OpenApiPetstore) {
|
|
root.OpenApiPetstore = {};
|
|
}
|
|
root.OpenApiPetstore.AnotherFakeApi = factory(root.OpenApiPetstore.ApiClient, root.OpenApiPetstore.Client);
|
|
}
|
|
}(this, function(ApiClient, Client) {
|
|
'use strict';
|
|
|
|
/**
|
|
* AnotherFake service.
|
|
* @module api/AnotherFakeApi
|
|
* @version 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* Constructs a new AnotherFakeApi.
|
|
* @alias module:api/AnotherFakeApi
|
|
* @class
|
|
* @param {module:ApiClient} [apiClient] Optional API client implementation to use,
|
|
* default to {@link module:ApiClient#instance} if unspecified.
|
|
*/
|
|
var exports = function(apiClient) {
|
|
this.apiClient = apiClient || ApiClient.instance;
|
|
|
|
|
|
|
|
/**
|
|
* To test special tags
|
|
* To test special tags and operation ID starting with number
|
|
* @param {module:model/Client} body client model
|
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Client} and HTTP response
|
|
*/
|
|
this.call123testSpecialTagsWithHttpInfo = function(body) {
|
|
var postBody = body;
|
|
// verify the required parameter 'body' is set
|
|
if (body === undefined || body === null) {
|
|
throw new Error("Missing the required parameter 'body' when calling call123testSpecialTags");
|
|
}
|
|
|
|
var pathParams = {
|
|
};
|
|
var queryParams = {
|
|
};
|
|
var collectionQueryParams = {
|
|
};
|
|
var headerParams = {
|
|
};
|
|
var formParams = {
|
|
};
|
|
|
|
var authNames = [];
|
|
var contentTypes = ['application/json'];
|
|
var accepts = ['application/json'];
|
|
var returnType = Client;
|
|
return this.apiClient.callApi(
|
|
'/another-fake/dummy', 'PATCH',
|
|
pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody,
|
|
authNames, contentTypes, accepts, returnType, null
|
|
);
|
|
}
|
|
|
|
/**
|
|
* To test special tags
|
|
* To test special tags and operation ID starting with number
|
|
* @param {module:model/Client} body client model
|
|
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Client}
|
|
*/
|
|
this.call123testSpecialTags = function(body) {
|
|
return this.call123testSpecialTagsWithHttpInfo(body)
|
|
.then(function(response_and_data) {
|
|
return response_and_data.data;
|
|
});
|
|
}
|
|
};
|
|
|
|
return exports;
|
|
}));
|