testit-api-client 7.3.0-TMS-5.8 → 7.3.1-TMS-5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.MD +1 -1
- package/dist/ApiClient.js +8 -3
- package/package.json +1 -1
package/README.MD
CHANGED
package/dist/ApiClient.js
CHANGED
|
@@ -25,7 +25,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
|
25
25
|
*/
|
|
26
26
|
/**
|
|
27
27
|
* @module ApiClient
|
|
28
|
-
* @version
|
|
28
|
+
* @version 7.3.0-TMS-5.8
|
|
29
29
|
*/
|
|
30
30
|
/**
|
|
31
31
|
* Manages low level client-server communications, parameter marshalling, etc. There should not be any need for an
|
|
@@ -55,10 +55,15 @@ var ApiClient = /*#__PURE__*/function () {
|
|
|
55
55
|
* @type {Array.<String>}
|
|
56
56
|
*/
|
|
57
57
|
this.authentications = {
|
|
58
|
-
'
|
|
58
|
+
'PrivateToken': {
|
|
59
59
|
type: 'apiKey',
|
|
60
60
|
'in': 'header',
|
|
61
61
|
name: 'Authorization'
|
|
62
|
+
},
|
|
63
|
+
'Cookies': {
|
|
64
|
+
type: 'apiKey',
|
|
65
|
+
'in': 'query',
|
|
66
|
+
name: 'session'
|
|
62
67
|
}
|
|
63
68
|
};
|
|
64
69
|
|
|
@@ -68,7 +73,7 @@ var ApiClient = /*#__PURE__*/function () {
|
|
|
68
73
|
* @default {}
|
|
69
74
|
*/
|
|
70
75
|
this.defaultHeaders = {
|
|
71
|
-
'User-Agent': 'OpenAPI-Generator
|
|
76
|
+
'User-Agent': 'OpenAPI-Generator/7.3.0-TMS-5.8/Javascript'
|
|
72
77
|
};
|
|
73
78
|
|
|
74
79
|
/**
|