@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/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.56.0
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.56.0
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 = typeof configuration.apiKey === 'function'
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.56.0
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 | Promise<string> | ((name: string) => string) | ((name: string) => Promise<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 | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
33
+ apiKey?: string;
34
34
  /**
35
35
  * parameter for basic security
36
36
  *