@gooddata/api-client-tiger 11.41.0-alpha.1 → 11.41.0-alpha.2
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/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +531 -176
- package/esm/endpoints/genAI/index.d.ts +2 -2
- package/esm/endpoints/genAI/index.js +2 -2
- package/esm/genAI.d.ts +3 -1
- package/esm/genAI.js +21 -5
- package/esm/generated/afm-rest-api/api.d.ts +334 -0
- package/esm/generated/afm-rest-api/api.js +347 -0
- package/esm/generated/ai-json-api/api.d.ts +73 -0
- package/esm/generated/ai-json-api/api.js +74 -0
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +4 -0
- package/esm/generated/metadata-json-api/api.d.ts +169 -158
- package/esm/index.d.ts +3 -3
- package/package.json +4 -4
|
@@ -184,6 +184,10 @@ export interface AutomationAlertAfm {
|
|
|
184
184
|
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
185
185
|
*/
|
|
186
186
|
'auxMeasures'?: Array<AutomationMeasureItem>;
|
|
187
|
+
/**
|
|
188
|
+
* Parameters to be used in the computation.
|
|
189
|
+
*/
|
|
190
|
+
'parameters'?: Array<AutomationParameterItem>;
|
|
187
191
|
}
|
|
188
192
|
/**
|
|
189
193
|
* @type AutomationAlertCondition
|