@connectreport/connectreport-js 2.56.0 → 2.78.6
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 +3 -3
- package/api.ts +510 -23
- package/base.ts +1 -1
- package/common.ts +2 -4
- package/configuration.ts +3 -3
- package/dist/api.d.ts +256 -45
- package/dist/api.js +966 -300
- package/dist/base.d.ts +1 -1
- package/dist/base.js +4 -2
- package/dist/common.d.ts +2 -2
- package/dist/common.js +29 -28
- package/dist/configuration.d.ts +3 -3
- package/dist/configuration.js +1 -1
- package/dist/index.js +6 -3
- package/index.ts +9 -3
- package/package.json +4 -4
package/base.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ConnectReport Core API
|
|
5
5
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.78.6
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
package/common.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ConnectReport Core API
|
|
5
5
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.78.6
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -40,9 +40,7 @@ export const assertParamExists = function (functionName: string, paramName: stri
|
|
|
40
40
|
*/
|
|
41
41
|
export const setApiKeyToObject = async function (object: any, keyParamName: string, configuration?: Configuration) {
|
|
42
42
|
if (configuration && configuration.apiKey) {
|
|
43
|
-
const localVarApiKeyValue =
|
|
44
|
-
? await configuration.apiKey(keyParamName)
|
|
45
|
-
: await configuration.apiKey;
|
|
43
|
+
const localVarApiKeyValue = await configuration.apiKey;
|
|
46
44
|
object[keyParamName] = localVarApiKeyValue;
|
|
47
45
|
}
|
|
48
46
|
}
|
package/configuration.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* ConnectReport Core API
|
|
5
5
|
* Leverage core reporting, templating, and document automation capabilities of ConnectReport Server.
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 2.
|
|
7
|
+
* The version of the OpenAPI document: 2.78.6
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
|
|
16
16
|
export interface ConfigurationParameters {
|
|
17
|
-
apiKey?: string
|
|
17
|
+
apiKey?: string;
|
|
18
18
|
httpsAgent?: any;
|
|
19
19
|
username?: string;
|
|
20
20
|
password?: string;
|
|
@@ -30,7 +30,7 @@ export class Configuration {
|
|
|
30
30
|
* @param name security name
|
|
31
31
|
* @memberof Configuration
|
|
32
32
|
*/
|
|
33
|
-
apiKey?: string
|
|
33
|
+
apiKey?: string;
|
|
34
34
|
/**
|
|
35
35
|
* parameter for basic security
|
|
36
36
|
*
|