forked from loafle/openapi-generator-original
Fix cookie support in Node.js client (#895)
This commit is contained in:
@@ -463,7 +463,7 @@
|
|||||||
// Attach previously saved cookies, if enabled
|
// Attach previously saved cookies, if enabled
|
||||||
if (this.enableCookies){
|
if (this.enableCookies){
|
||||||
if (typeof window === 'undefined') {
|
if (typeof window === 'undefined') {
|
||||||
this.agent.attachCookies(request);
|
this.agent._attachCookies(request);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
request.withCredentials();
|
request.withCredentials();
|
||||||
@@ -478,7 +478,7 @@
|
|||||||
try {
|
try {
|
||||||
var data = _this.deserialize(response, returnType);
|
var data = _this.deserialize(response, returnType);
|
||||||
if (_this.enableCookies && typeof window === 'undefined'){
|
if (_this.enableCookies && typeof window === 'undefined'){
|
||||||
_this.agent.saveCookies(response);
|
_this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
resolve({data: data, response: response});
|
resolve({data: data, response: response});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
@@ -494,7 +494,7 @@
|
|||||||
try {
|
try {
|
||||||
data = _this.deserialize(response, returnType);
|
data = _this.deserialize(response, returnType);
|
||||||
if (_this.enableCookies && typeof window === 'undefined'){
|
if (_this.enableCookies && typeof window === 'undefined'){
|
||||||
_this.agent.saveCookies(response);
|
_this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
error = err;
|
error = err;
|
||||||
|
|||||||
@@ -415,7 +415,7 @@ class ApiClient {
|
|||||||
// Attach previously saved cookies, if enabled
|
// Attach previously saved cookies, if enabled
|
||||||
if (this.enableCookies){
|
if (this.enableCookies){
|
||||||
if (typeof window === 'undefined') {
|
if (typeof window === 'undefined') {
|
||||||
this.agent.attachCookies(request);
|
this.agent._attachCookies(request);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
request.withCredentials();
|
request.withCredentials();
|
||||||
@@ -430,7 +430,7 @@ class ApiClient {
|
|||||||
try {
|
try {
|
||||||
var data = this.deserialize(response, returnType);
|
var data = this.deserialize(response, returnType);
|
||||||
if (this.enableCookies && typeof window === 'undefined'){
|
if (this.enableCookies && typeof window === 'undefined'){
|
||||||
this.agent.saveCookies(response);
|
this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
resolve({data, response});
|
resolve({data, response});
|
||||||
@@ -448,7 +448,7 @@ class ApiClient {
|
|||||||
try {
|
try {
|
||||||
data = this.deserialize(response, returnType);
|
data = this.deserialize(response, returnType);
|
||||||
if (this.enableCookies && typeof window === 'undefined'){
|
if (this.enableCookies && typeof window === 'undefined'){
|
||||||
this.agent.saveCookies(response);
|
this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
error = err;
|
error = err;
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
3.2.1-SNAPSHOT
|
3.2.3-SNAPSHOT
|
||||||
@@ -417,7 +417,7 @@ class ApiClient {
|
|||||||
// Attach previously saved cookies, if enabled
|
// Attach previously saved cookies, if enabled
|
||||||
if (this.enableCookies){
|
if (this.enableCookies){
|
||||||
if (typeof window === 'undefined') {
|
if (typeof window === 'undefined') {
|
||||||
this.agent.attachCookies(request);
|
this.agent._attachCookies(request);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
request.withCredentials();
|
request.withCredentials();
|
||||||
@@ -433,7 +433,7 @@ class ApiClient {
|
|||||||
try {
|
try {
|
||||||
data = this.deserialize(response, returnType);
|
data = this.deserialize(response, returnType);
|
||||||
if (this.enableCookies && typeof window === 'undefined'){
|
if (this.enableCookies && typeof window === 'undefined'){
|
||||||
this.agent.saveCookies(response);
|
this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
error = err;
|
error = err;
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
3.2.1-SNAPSHOT
|
3.2.3-SNAPSHOT
|
||||||
@@ -410,7 +410,7 @@ class ApiClient {
|
|||||||
// Attach previously saved cookies, if enabled
|
// Attach previously saved cookies, if enabled
|
||||||
if (this.enableCookies){
|
if (this.enableCookies){
|
||||||
if (typeof window === 'undefined') {
|
if (typeof window === 'undefined') {
|
||||||
this.agent.attachCookies(request);
|
this.agent._attachCookies(request);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
request.withCredentials();
|
request.withCredentials();
|
||||||
@@ -425,7 +425,7 @@ class ApiClient {
|
|||||||
try {
|
try {
|
||||||
var data = this.deserialize(response, returnType);
|
var data = this.deserialize(response, returnType);
|
||||||
if (this.enableCookies && typeof window === 'undefined'){
|
if (this.enableCookies && typeof window === 'undefined'){
|
||||||
this.agent.saveCookies(response);
|
this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
resolve({data, response});
|
resolve({data, response});
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
3.2.1-SNAPSHOT
|
3.2.3-SNAPSHOT
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
@@ -460,7 +460,7 @@
|
|||||||
// Attach previously saved cookies, if enabled
|
// Attach previously saved cookies, if enabled
|
||||||
if (this.enableCookies){
|
if (this.enableCookies){
|
||||||
if (typeof window === 'undefined') {
|
if (typeof window === 'undefined') {
|
||||||
this.agent.attachCookies(request);
|
this.agent._attachCookies(request);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
request.withCredentials();
|
request.withCredentials();
|
||||||
@@ -475,7 +475,7 @@
|
|||||||
try {
|
try {
|
||||||
var data = _this.deserialize(response, returnType);
|
var data = _this.deserialize(response, returnType);
|
||||||
if (_this.enableCookies && typeof window === 'undefined'){
|
if (_this.enableCookies && typeof window === 'undefined'){
|
||||||
_this.agent.saveCookies(response);
|
_this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
resolve({data: data, response: response});
|
resolve({data: data, response: response});
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
3.2.1-SNAPSHOT
|
3.2.3-SNAPSHOT
|
||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
@@ -469,7 +469,7 @@
|
|||||||
// Attach previously saved cookies, if enabled
|
// Attach previously saved cookies, if enabled
|
||||||
if (this.enableCookies){
|
if (this.enableCookies){
|
||||||
if (typeof window === 'undefined') {
|
if (typeof window === 'undefined') {
|
||||||
this.agent.attachCookies(request);
|
this.agent._attachCookies(request);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
request.withCredentials();
|
request.withCredentials();
|
||||||
@@ -484,7 +484,7 @@
|
|||||||
try {
|
try {
|
||||||
data = _this.deserialize(response, returnType);
|
data = _this.deserialize(response, returnType);
|
||||||
if (_this.enableCookies && typeof window === 'undefined'){
|
if (_this.enableCookies && typeof window === 'undefined'){
|
||||||
_this.agent.saveCookies(response);
|
_this.agent._saveCookies(response);
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
error = err;
|
error = err;
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||||
* https://openapi-generator.tech
|
* https://openapi-generator.tech
|
||||||
*
|
*
|
||||||
* OpenAPI Generator version: 3.2.1-SNAPSHOT
|
* OpenAPI Generator version: 3.2.3-SNAPSHOT
|
||||||
*
|
*
|
||||||
* Do not edit the class manually.
|
* Do not edit the class manually.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user