Fix cookie support in Node.js client (#895)

This commit is contained in:
delenius
2018-09-04 01:31:33 -07:00
committed by William Cheng
parent f7b807f980
commit 9d89387d83
96 changed files with 106 additions and 106 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -1 +1 @@
3.2.1-SNAPSHOT 3.2.3-SNAPSHOT

View File

@@ -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;

View File

@@ -1 +1 @@
3.2.1-SNAPSHOT 3.2.3-SNAPSHOT

View File

@@ -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});

View File

@@ -1 +1 @@
3.2.1-SNAPSHOT 3.2.3-SNAPSHOT

View File

@@ -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) {

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -1 +1 @@
3.2.1-SNAPSHOT 3.2.3-SNAPSHOT

View File

@@ -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;

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *

View File

@@ -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.
* *