@gooddata/api-client-tiger 11.46.0-alpha.3 → 11.46.0-alpha.5

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.
Files changed (36) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.js +1 -1
  3. package/esm/api-client-tiger.d.ts +1341 -429
  4. package/esm/endpoints/actions/index.d.ts +1 -1
  5. package/esm/endpoints/actions/index.d.ts.map +1 -1
  6. package/esm/endpoints/actions/index.js +1 -1
  7. package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
  8. package/esm/endpoints/entitiesObjects/index.d.ts.map +1 -1
  9. package/esm/endpoints/entitiesObjects/index.js +4 -2
  10. package/esm/endpoints/genAI/index.d.ts +2 -1
  11. package/esm/endpoints/genAI/index.d.ts.map +1 -1
  12. package/esm/endpoints/genAI/index.js +3 -1
  13. package/esm/genAI.d.ts +1 -1
  14. package/esm/genAI.d.ts.map +1 -1
  15. package/esm/genAI.js +0 -2
  16. package/esm/generated/afm-rest-api/api.d.ts +366 -266
  17. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  18. package/esm/generated/afm-rest-api/api.js +371 -268
  19. package/esm/generated/ai-json-api/api.d.ts +31 -8
  20. package/esm/generated/ai-json-api/api.d.ts.map +1 -1
  21. package/esm/generated/auth-json-api/api.d.ts +0 -511
  22. package/esm/generated/auth-json-api/api.d.ts.map +1 -1
  23. package/esm/generated/auth-json-api/api.js +0 -650
  24. package/esm/generated/automation-json-api/api.d.ts +19 -1
  25. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  26. package/esm/generated/export-json-api/api.d.ts +19 -1
  27. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  28. package/esm/generated/metadata-json-api/api.d.ts +1963 -340
  29. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  30. package/esm/generated/metadata-json-api/api.js +1946 -478
  31. package/esm/generated/scan-json-api/api.d.ts +10 -0
  32. package/esm/generated/scan-json-api/api.d.ts.map +1 -1
  33. package/esm/index.d.ts +4 -3
  34. package/esm/index.d.ts.map +1 -1
  35. package/esm/index.js +1 -1
  36. package/package.json +4 -4
@@ -292,36 +292,6 @@ export interface AllowedRelationshipType {
292
292
  }
293
293
  export type AllowedRelationshipTypeSourceTypeEnum = 'attribute' | 'metric' | 'fact' | 'label' | 'date' | 'dataset' | 'visualization' | 'dashboard';
294
294
  export type AllowedRelationshipTypeTargetTypeEnum = 'attribute' | 'metric' | 'fact' | 'label' | 'date' | 'dataset' | 'visualization' | 'dashboard';
295
- export interface AnalyticsCatalogCreatedBy {
296
- /**
297
- * Users who created any object in the catalog
298
- */
299
- 'users': Array<AnalyticsCatalogUser>;
300
- /**
301
- * Reasoning for error states
302
- */
303
- 'reasoning': string;
304
- }
305
- export interface AnalyticsCatalogTags {
306
- 'tags': Array<string>;
307
- }
308
- /**
309
- * Users who created any object in the catalog
310
- */
311
- export interface AnalyticsCatalogUser {
312
- /**
313
- * User ID of the user who created any objects
314
- */
315
- 'userId': string;
316
- /**
317
- * First name of the user who created any objects
318
- */
319
- 'firstname': string;
320
- /**
321
- * Last name of the user who created any objects
322
- */
323
- 'lastname': string;
324
- }
325
295
  /**
326
296
  * Request to run ANALYZE TABLE for tables in a database instance
327
297
  */
@@ -1073,6 +1043,22 @@ export interface DashboardContext {
1073
1043
  */
1074
1044
  'widgets': Array<WidgetDescriptor>;
1075
1045
  }
1046
+ export interface DashboardSummaryRequestDto {
1047
+ 'dashboardId': string;
1048
+ 'customUserPrompt'?: string;
1049
+ 'gooddataHost'?: string;
1050
+ 'gooddataToken'?: string;
1051
+ 'keyMetricIds'?: Array<string>;
1052
+ 'referenceQuarter'?: string;
1053
+ 'dryRun'?: boolean;
1054
+ 'temperature'?: number;
1055
+ 'aiModel'?: string;
1056
+ }
1057
+ export interface DashboardSummaryResponseDto {
1058
+ 'runId': string;
1059
+ 'status': string;
1060
+ 'message': string;
1061
+ }
1076
1062
  /**
1077
1063
  * Mapping from dimension items (either \'localIdentifier\' from \'AttributeItem\', or \"measureGroup\") to their respective values. This effectively specifies the path (location) of the data column used for sorting. Therefore values for all dimension items must be specified.
1078
1064
  */
@@ -1492,6 +1478,10 @@ export interface ExecutionSettings {
1492
1478
  export interface FailedOperation extends Operation {
1493
1479
  'error': OperationError;
1494
1480
  }
1481
+ export interface FeedbackRequestDto {
1482
+ 'sentiment': FeedbackRequestDtoSentimentEnum;
1483
+ }
1484
+ export type FeedbackRequestDtoSentimentEnum = 'POSITIVE' | 'NEGATIVE';
1495
1485
  /**
1496
1486
  * Specifies what is used for filtering.
1497
1487
  */
@@ -1948,6 +1938,31 @@ export interface KeyDriversResponse {
1948
1938
  export interface KeyDriversResult {
1949
1939
  'data': object;
1950
1940
  }
1941
+ export interface KnowledgeRecommendationsRequestDto {
1942
+ 'metricId': string;
1943
+ 'direction'?: KnowledgeRecommendationsRequestDtoDirectionEnum;
1944
+ 'comparisonType': KnowledgeRecommendationsRequestDtoComparisonTypeEnum;
1945
+ 'limit'?: number;
1946
+ 'minScore'?: number;
1947
+ 'aiModel'?: string;
1948
+ 'temperature'?: number;
1949
+ 'maxTokens'?: number;
1950
+ 'gooddataHost'?: string;
1951
+ 'gooddataToken'?: string;
1952
+ 'analyticalDashboardId'?: string;
1953
+ 'widgetId'?: string;
1954
+ 'widgetName'?: string;
1955
+ 'dryRun'?: boolean;
1956
+ 'referenceValue'?: number;
1957
+ 'analyzedValue'?: number;
1958
+ }
1959
+ export type KnowledgeRecommendationsRequestDtoDirectionEnum = 'INCREASED' | 'DECREASED';
1960
+ export type KnowledgeRecommendationsRequestDtoComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
1961
+ export interface KnowledgeRecommendationsResponseDto {
1962
+ 'runId': string;
1963
+ 'status': string;
1964
+ 'message': string;
1965
+ }
1951
1966
  export interface ListLlmProviderModelsRequest {
1952
1967
  'providerConfig': TestLlmProviderByIdRequestProviderConfig;
1953
1968
  }
@@ -6054,6 +6069,15 @@ export declare function ActionsApiAxiosParamCreator_CancelExecutions(workspaceId
6054
6069
  * @throws {RequiredError}
6055
6070
  */
6056
6071
  export declare function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6072
+ /**
6073
+ *
6074
+ * @param {string} workspaceId Workspace identifier
6075
+ * @param {string} runId
6076
+ * @param {*} [options] Override http request option.
6077
+ * @param {Configuration} [configuration] Optional configuration.
6078
+ * @throws {RequiredError}
6079
+ */
6080
+ export declare function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6057
6081
  /**
6058
6082
  * Computes change analysis for the provided execution definition.
6059
6083
  * @summary Compute change analysis
@@ -6155,15 +6179,6 @@ export declare function ActionsApiAxiosParamCreator_ComputeValidDescendants(work
6155
6179
  * @throws {RequiredError}
6156
6180
  */
6157
6181
  export declare function ActionsApiAxiosParamCreator_ComputeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6158
- /**
6159
- * Returns a list of Users who created any object for this workspace
6160
- * @summary Get Analytics Catalog CreatedBy Users
6161
- * @param {string} workspaceId Workspace identifier
6162
- * @param {*} [options] Override http request option.
6163
- * @param {Configuration} [configuration] Optional configuration.
6164
- * @throws {RequiredError}
6165
- */
6166
- export declare function ActionsApiAxiosParamCreator_CreatedBy(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6167
6182
  /**
6168
6183
  * The resource provides static structures needed for investigation of a problem with given AFM.
6169
6184
  * @summary AFM explain resource.
@@ -6176,8 +6191,8 @@ export declare function ActionsApiAxiosParamCreator_CreatedBy(workspaceId: strin
6176
6191
  */
6177
6192
  export declare function ActionsApiAxiosParamCreator_ExplainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: 'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL' | 'COMPRESSED_GRPC_MODEL_SVG' | 'GIT', options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6178
6193
  /**
6179
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
6180
- * @summary (BETA) Smart functions - Forecast
6194
+ * Computes forecasted data points from the provided execution result and parameters.
6195
+ * @summary Smart functions - Forecast
6181
6196
  * @param {string} workspaceId Workspace identifier
6182
6197
  * @param {string} resultId Input result ID to be used in the computation
6183
6198
  * @param {ForecastRequest} forecastRequest
@@ -6188,8 +6203,8 @@ export declare function ActionsApiAxiosParamCreator_ExplainAFM(workspaceId: stri
6188
6203
  */
6189
6204
  export declare function ActionsApiAxiosParamCreator_Forecast(workspaceId: string, resultId: string, forecastRequest: ForecastRequest, skipCache?: boolean, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6190
6205
  /**
6191
- * (BETA) Gets forecast result.
6192
- * @summary (BETA) Smart functions - Forecast Result
6206
+ * Gets forecast result.
6207
+ * @summary Smart functions - Forecast Result
6193
6208
  * @param {string} workspaceId Workspace identifier
6194
6209
  * @param {string} resultId Result ID
6195
6210
  * @param {number} [offset]
@@ -6208,6 +6223,15 @@ export declare function ActionsApiAxiosParamCreator_ForecastResult(workspaceId:
6208
6223
  * @throws {RequiredError}
6209
6224
  */
6210
6225
  export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId: string, workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6226
+ /**
6227
+ *
6228
+ * @param {string} workspaceId Workspace identifier
6229
+ * @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
6230
+ * @param {*} [options] Override http request option.
6231
+ * @param {Configuration} [configuration] Optional configuration.
6232
+ * @throws {RequiredError}
6233
+ */
6234
+ export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId: string, dashboardSummaryRequestDto: DashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6211
6235
  /**
6212
6236
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
6213
6237
  * @summary Generate Description for Analytics Object
@@ -6218,6 +6242,15 @@ export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(wor
6218
6242
  * @throws {RequiredError}
6219
6243
  */
6220
6244
  export declare function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId: string, generateDescriptionRequest: GenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6245
+ /**
6246
+ *
6247
+ * @param {string} workspaceId Workspace identifier
6248
+ * @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
6249
+ * @param {*} [options] Override http request option.
6250
+ * @param {Configuration} [configuration] Optional configuration.
6251
+ * @throws {RequiredError}
6252
+ */
6253
+ export declare function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId: string, knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6221
6254
  /**
6222
6255
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
6223
6256
  * @summary Generate Title for Analytics Object
@@ -6256,6 +6289,15 @@ export declare function ActionsApiAxiosParamCreator_GetQualityIssuesCalculationS
6256
6289
  * @throws {RequiredError}
6257
6290
  */
6258
6291
  export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6292
+ /**
6293
+ *
6294
+ * @param {string} workspaceId Workspace identifier
6295
+ * @param {string} runId
6296
+ * @param {*} [options] Override http request option.
6297
+ * @param {Configuration} [configuration] Optional configuration.
6298
+ * @throws {RequiredError}
6299
+ */
6300
+ export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6259
6301
  /**
6260
6302
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
6261
6303
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -6382,15 +6424,6 @@ export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId:
6382
6424
  * @throws {RequiredError}
6383
6425
  */
6384
6426
  export declare function ActionsApiAxiosParamCreator_RetrieveResultBinary(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6385
- /**
6386
- * Returns a list of tags for this workspace
6387
- * @summary Get Analytics Catalog Tags
6388
- * @param {string} workspaceId Workspace identifier
6389
- * @param {*} [options] Override http request option.
6390
- * @param {Configuration} [configuration] Optional configuration.
6391
- * @throws {RequiredError}
6392
- */
6393
- export declare function ActionsApiAxiosParamCreator_Tags(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6394
6427
  /**
6395
6428
  * Tests LLM provider connectivity with a full definition.
6396
6429
  * @summary Test LLM Provider
@@ -6428,6 +6461,16 @@ export declare function ActionsApiAxiosParamCreator_TrendingObjects(workspaceId:
6428
6461
  * @throws {RequiredError}
6429
6462
  */
6430
6463
  export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6464
+ /**
6465
+ *
6466
+ * @param {string} workspaceId Workspace identifier
6467
+ * @param {string} runId
6468
+ * @param {FeedbackRequestDto} feedbackRequestDto
6469
+ * @param {*} [options] Override http request option.
6470
+ * @param {Configuration} [configuration] Optional configuration.
6471
+ * @throws {RequiredError}
6472
+ */
6473
+ export declare function ActionsApiAxiosParamCreator_UserFeedback(workspaceId: string, runId: string, feedbackRequestDto: FeedbackRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6431
6474
  /**
6432
6475
  * Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
6433
6476
  * @summary Validate LLM Endpoint (Removed)
@@ -6545,6 +6588,18 @@ export declare function ActionsApi_CancelExecutions(axios: AxiosInstance, basePa
6545
6588
  export declare function ActionsApi_CancelWorkflow(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
6546
6589
  [key: string]: string;
6547
6590
  }>;
6591
+ /**
6592
+ *
6593
+ * @param {AxiosInstance} axios Axios instance.
6594
+ * @param {string} basePath Base path.
6595
+ * @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
6596
+ * @param {*} [options] Override http request option.
6597
+ * @param {Configuration} [configuration] Optional configuration.
6598
+ * @throws {RequiredError}
6599
+ */
6600
+ export declare function ActionsApi_CancelWorkflow1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
6601
+ [key: string]: string;
6602
+ }>;
6548
6603
  /**
6549
6604
  * Computes change analysis for the provided execution definition.
6550
6605
  * @summary Compute change analysis
@@ -6644,17 +6699,6 @@ export declare function ActionsApi_ComputeValidDescendants(axios: AxiosInstance,
6644
6699
  * @throws {RequiredError}
6645
6700
  */
6646
6701
  export declare function ActionsApi_ComputeValidObjects(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AfmValidObjectsResponse>;
6647
- /**
6648
- * Returns a list of Users who created any object for this workspace
6649
- * @summary Get Analytics Catalog CreatedBy Users
6650
- * @param {AxiosInstance} axios Axios instance.
6651
- * @param {string} basePath Base path.
6652
- * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
6653
- * @param {*} [options] Override http request option.
6654
- * @param {Configuration} [configuration] Optional configuration.
6655
- * @throws {RequiredError}
6656
- */
6657
- export declare function ActionsApi_CreatedBy(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogCreatedBy>;
6658
6702
  /**
6659
6703
  * The resource provides static structures needed for investigation of a problem with given AFM.
6660
6704
  * @summary AFM explain resource.
@@ -6667,8 +6711,8 @@ export declare function ActionsApi_CreatedBy(axios: AxiosInstance, basePath: str
6667
6711
  */
6668
6712
  export declare function ActionsApi_ExplainAFM(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiExplainAFMRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
6669
6713
  /**
6670
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
6671
- * @summary (BETA) Smart functions - Forecast
6714
+ * Computes forecasted data points from the provided execution result and parameters.
6715
+ * @summary Smart functions - Forecast
6672
6716
  * @param {AxiosInstance} axios Axios instance.
6673
6717
  * @param {string} basePath Base path.
6674
6718
  * @param {ActionsApiForecastRequest} requestParameters Request parameters.
@@ -6678,8 +6722,8 @@ export declare function ActionsApi_ExplainAFM(axios: AxiosInstance, basePath: st
6678
6722
  */
6679
6723
  export declare function ActionsApi_Forecast(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiForecastRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<SmartFunctionResponse>;
6680
6724
  /**
6681
- * (BETA) Gets forecast result.
6682
- * @summary (BETA) Smart functions - Forecast Result
6725
+ * Gets forecast result.
6726
+ * @summary Smart functions - Forecast Result
6683
6727
  * @param {AxiosInstance} axios Axios instance.
6684
6728
  * @param {string} basePath Base path.
6685
6729
  * @param {ActionsApiForecastResultRequest} requestParameters Request parameters.
@@ -6698,6 +6742,16 @@ export declare function ActionsApi_ForecastResult(axios: AxiosInstance, basePath
6698
6742
  * @throws {RequiredError}
6699
6743
  */
6700
6744
  export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
6745
+ /**
6746
+ *
6747
+ * @param {AxiosInstance} axios Axios instance.
6748
+ * @param {string} basePath Base path.
6749
+ * @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
6750
+ * @param {*} [options] Override http request option.
6751
+ * @param {Configuration} [configuration] Optional configuration.
6752
+ * @throws {RequiredError}
6753
+ */
6754
+ export declare function ActionsApi_GenerateDashboardSummary1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DashboardSummaryResponseDto>;
6701
6755
  /**
6702
6756
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
6703
6757
  * @summary Generate Description for Analytics Object
@@ -6709,6 +6763,16 @@ export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance
6709
6763
  * @throws {RequiredError}
6710
6764
  */
6711
6765
  export declare function ActionsApi_GenerateDescription(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateDescriptionResponse>;
6766
+ /**
6767
+ *
6768
+ * @param {AxiosInstance} axios Axios instance.
6769
+ * @param {string} basePath Base path.
6770
+ * @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
6771
+ * @param {*} [options] Override http request option.
6772
+ * @param {Configuration} [configuration] Optional configuration.
6773
+ * @throws {RequiredError}
6774
+ */
6775
+ export declare function ActionsApi_GenerateKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeRecommendationsResponseDto>;
6712
6776
  /**
6713
6777
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
6714
6778
  * @summary Generate Title for Analytics Object
@@ -6752,6 +6816,16 @@ export declare function ActionsApi_GetQualityIssuesCalculationStatus(axios: Axio
6752
6816
  * @throws {RequiredError}
6753
6817
  */
6754
6818
  export declare function ActionsApi_GetWorkflowStatus(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
6819
+ /**
6820
+ *
6821
+ * @param {AxiosInstance} axios Axios instance.
6822
+ * @param {string} basePath Base path.
6823
+ * @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
6824
+ * @param {*} [options] Override http request option.
6825
+ * @param {Configuration} [configuration] Optional configuration.
6826
+ * @throws {RequiredError}
6827
+ */
6828
+ export declare function ActionsApi_GetWorkflowStatus1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
6755
6829
  /**
6756
6830
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
6757
6831
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -6884,17 +6958,6 @@ export declare function ActionsApi_RetrieveResult(axios: AxiosInstance, basePath
6884
6958
  * @throws {RequiredError}
6885
6959
  */
6886
6960
  export declare function ActionsApi_RetrieveResultBinary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
6887
- /**
6888
- * Returns a list of tags for this workspace
6889
- * @summary Get Analytics Catalog Tags
6890
- * @param {AxiosInstance} axios Axios instance.
6891
- * @param {string} basePath Base path.
6892
- * @param {ActionsApiTagsRequest} requestParameters Request parameters.
6893
- * @param {*} [options] Override http request option.
6894
- * @param {Configuration} [configuration] Optional configuration.
6895
- * @throws {RequiredError}
6896
- */
6897
- export declare function ActionsApi_Tags(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogTags>;
6898
6961
  /**
6899
6962
  * Tests LLM provider connectivity with a full definition.
6900
6963
  * @summary Test LLM Provider
@@ -6939,6 +7002,18 @@ export declare function ActionsApi_TrendingObjects(axios: AxiosInstance, basePat
6939
7002
  * @throws {RequiredError}
6940
7003
  */
6941
7004
  export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
7005
+ /**
7006
+ *
7007
+ * @param {AxiosInstance} axios Axios instance.
7008
+ * @param {string} basePath Base path.
7009
+ * @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
7010
+ * @param {*} [options] Override http request option.
7011
+ * @param {Configuration} [configuration] Optional configuration.
7012
+ * @throws {RequiredError}
7013
+ */
7014
+ export declare function ActionsApi_UserFeedback(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
7015
+ [key: string]: string;
7016
+ }>;
6942
7017
  /**
6943
7018
  * Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
6944
7019
  * @summary Validate LLM Endpoint (Removed)
@@ -7050,6 +7125,16 @@ export interface ActionsApiInterface {
7050
7125
  cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
7051
7126
  [key: string]: string;
7052
7127
  }>;
7128
+ /**
7129
+ *
7130
+ * @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
7131
+ * @param {*} [options] Override http request option.
7132
+ * @throws {RequiredError}
7133
+ * @memberof ActionsApiInterface
7134
+ */
7135
+ cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
7136
+ [key: string]: string;
7137
+ }>;
7053
7138
  /**
7054
7139
  * Computes change analysis for the provided execution definition.
7055
7140
  * @summary Compute change analysis
@@ -7131,15 +7216,6 @@ export interface ActionsApiInterface {
7131
7216
  * @memberof ActionsApiInterface
7132
7217
  */
7133
7218
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
7134
- /**
7135
- * Returns a list of Users who created any object for this workspace
7136
- * @summary Get Analytics Catalog CreatedBy Users
7137
- * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
7138
- * @param {*} [options] Override http request option.
7139
- * @throws {RequiredError}
7140
- * @memberof ActionsApiInterface
7141
- */
7142
- createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
7143
7219
  /**
7144
7220
  * The resource provides static structures needed for investigation of a problem with given AFM.
7145
7221
  * @summary AFM explain resource.
@@ -7150,8 +7226,8 @@ export interface ActionsApiInterface {
7150
7226
  */
7151
7227
  explainAFM(requestParameters: ActionsApiExplainAFMRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
7152
7228
  /**
7153
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
7154
- * @summary (BETA) Smart functions - Forecast
7229
+ * Computes forecasted data points from the provided execution result and parameters.
7230
+ * @summary Smart functions - Forecast
7155
7231
  * @param {ActionsApiForecastRequest} requestParameters Request parameters.
7156
7232
  * @param {*} [options] Override http request option.
7157
7233
  * @throws {RequiredError}
@@ -7159,8 +7235,8 @@ export interface ActionsApiInterface {
7159
7235
  */
7160
7236
  forecast(requestParameters: ActionsApiForecastRequest, options?: AxiosRequestConfig): AxiosPromise<SmartFunctionResponse>;
7161
7237
  /**
7162
- * (BETA) Gets forecast result.
7163
- * @summary (BETA) Smart functions - Forecast Result
7238
+ * Gets forecast result.
7239
+ * @summary Smart functions - Forecast Result
7164
7240
  * @param {ActionsApiForecastResultRequest} requestParameters Request parameters.
7165
7241
  * @param {*} [options] Override http request option.
7166
7242
  * @throws {RequiredError}
@@ -7175,6 +7251,14 @@ export interface ActionsApiInterface {
7175
7251
  * @memberof ActionsApiInterface
7176
7252
  */
7177
7253
  generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
7254
+ /**
7255
+ *
7256
+ * @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
7257
+ * @param {*} [options] Override http request option.
7258
+ * @throws {RequiredError}
7259
+ * @memberof ActionsApiInterface
7260
+ */
7261
+ generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
7178
7262
  /**
7179
7263
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
7180
7264
  * @summary Generate Description for Analytics Object
@@ -7184,6 +7268,14 @@ export interface ActionsApiInterface {
7184
7268
  * @memberof ActionsApiInterface
7185
7269
  */
7186
7270
  generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
7271
+ /**
7272
+ *
7273
+ * @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
7274
+ * @param {*} [options] Override http request option.
7275
+ * @throws {RequiredError}
7276
+ * @memberof ActionsApiInterface
7277
+ */
7278
+ generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
7187
7279
  /**
7188
7280
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
7189
7281
  * @summary Generate Title for Analytics Object
@@ -7219,6 +7311,14 @@ export interface ActionsApiInterface {
7219
7311
  * @memberof ActionsApiInterface
7220
7312
  */
7221
7313
  getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
7314
+ /**
7315
+ *
7316
+ * @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
7317
+ * @param {*} [options] Override http request option.
7318
+ * @throws {RequiredError}
7319
+ * @memberof ActionsApiInterface
7320
+ */
7321
+ getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
7222
7322
  /**
7223
7323
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
7224
7324
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -7328,15 +7428,6 @@ export interface ActionsApiInterface {
7328
7428
  * @memberof ActionsApiInterface
7329
7429
  */
7330
7430
  retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
7331
- /**
7332
- * Returns a list of tags for this workspace
7333
- * @summary Get Analytics Catalog Tags
7334
- * @param {ActionsApiTagsRequest} requestParameters Request parameters.
7335
- * @param {*} [options] Override http request option.
7336
- * @throws {RequiredError}
7337
- * @memberof ActionsApiInterface
7338
- */
7339
- tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
7340
7431
  /**
7341
7432
  * Tests LLM provider connectivity with a full definition.
7342
7433
  * @summary Test LLM Provider
@@ -7373,6 +7464,16 @@ export interface ActionsApiInterface {
7373
7464
  * @memberof ActionsApiInterface
7374
7465
  */
7375
7466
  triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
7467
+ /**
7468
+ *
7469
+ * @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
7470
+ * @param {*} [options] Override http request option.
7471
+ * @throws {RequiredError}
7472
+ * @memberof ActionsApiInterface
7473
+ */
7474
+ userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
7475
+ [key: string]: string;
7476
+ }>;
7376
7477
  /**
7377
7478
  * Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
7378
7479
  * @summary Validate LLM Endpoint (Removed)
@@ -7582,6 +7683,25 @@ export interface ActionsApiCancelWorkflowRequest {
7582
7683
  */
7583
7684
  readonly runId: string;
7584
7685
  }
7686
+ /**
7687
+ * Request parameters for cancelWorkflow1 operation in ActionsApi.
7688
+ * @export
7689
+ * @interface ActionsApiCancelWorkflow1Request
7690
+ */
7691
+ export interface ActionsApiCancelWorkflow1Request {
7692
+ /**
7693
+ * Workspace identifier
7694
+ * @type {string}
7695
+ * @memberof ActionsApiCancelWorkflow1
7696
+ */
7697
+ readonly workspaceId: string;
7698
+ /**
7699
+ *
7700
+ * @type {string}
7701
+ * @memberof ActionsApiCancelWorkflow1
7702
+ */
7703
+ readonly runId: string;
7704
+ }
7585
7705
  /**
7586
7706
  * Request parameters for changeAnalysis operation in ActionsApi.
7587
7707
  * @export
@@ -7819,19 +7939,6 @@ export interface ActionsApiComputeValidObjectsRequest {
7819
7939
  */
7820
7940
  readonly afmValidObjectsQuery: AfmValidObjectsQuery;
7821
7941
  }
7822
- /**
7823
- * Request parameters for createdBy operation in ActionsApi.
7824
- * @export
7825
- * @interface ActionsApiCreatedByRequest
7826
- */
7827
- export interface ActionsApiCreatedByRequest {
7828
- /**
7829
- * Workspace identifier
7830
- * @type {string}
7831
- * @memberof ActionsApiCreatedBy
7832
- */
7833
- readonly workspaceId: string;
7834
- }
7835
7942
  /**
7836
7943
  * Request parameters for explainAFM operation in ActionsApi.
7837
7944
  * @export
@@ -7938,6 +8045,25 @@ export interface ActionsApiGenerateDashboardSummaryRequest {
7938
8045
  */
7939
8046
  readonly workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto;
7940
8047
  }
8048
+ /**
8049
+ * Request parameters for generateDashboardSummary1 operation in ActionsApi.
8050
+ * @export
8051
+ * @interface ActionsApiGenerateDashboardSummary1Request
8052
+ */
8053
+ export interface ActionsApiGenerateDashboardSummary1Request {
8054
+ /**
8055
+ * Workspace identifier
8056
+ * @type {string}
8057
+ * @memberof ActionsApiGenerateDashboardSummary1
8058
+ */
8059
+ readonly workspaceId: string;
8060
+ /**
8061
+ *
8062
+ * @type {DashboardSummaryRequestDto}
8063
+ * @memberof ActionsApiGenerateDashboardSummary1
8064
+ */
8065
+ readonly dashboardSummaryRequestDto: DashboardSummaryRequestDto;
8066
+ }
7941
8067
  /**
7942
8068
  * Request parameters for generateDescription operation in ActionsApi.
7943
8069
  * @export
@@ -7957,6 +8083,25 @@ export interface ActionsApiGenerateDescriptionRequest {
7957
8083
  */
7958
8084
  readonly generateDescriptionRequest: GenerateDescriptionRequest;
7959
8085
  }
8086
+ /**
8087
+ * Request parameters for generateKnowledgeRecommendations operation in ActionsApi.
8088
+ * @export
8089
+ * @interface ActionsApiGenerateKnowledgeRecommendationsRequest
8090
+ */
8091
+ export interface ActionsApiGenerateKnowledgeRecommendationsRequest {
8092
+ /**
8093
+ * Workspace identifier
8094
+ * @type {string}
8095
+ * @memberof ActionsApiGenerateKnowledgeRecommendations
8096
+ */
8097
+ readonly workspaceId: string;
8098
+ /**
8099
+ *
8100
+ * @type {KnowledgeRecommendationsRequestDto}
8101
+ * @memberof ActionsApiGenerateKnowledgeRecommendations
8102
+ */
8103
+ readonly knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto;
8104
+ }
7960
8105
  /**
7961
8106
  * Request parameters for generateTitle operation in ActionsApi.
7962
8107
  * @export
@@ -8027,6 +8172,25 @@ export interface ActionsApiGetWorkflowStatusRequest {
8027
8172
  */
8028
8173
  readonly runId: string;
8029
8174
  }
8175
+ /**
8176
+ * Request parameters for getWorkflowStatus1 operation in ActionsApi.
8177
+ * @export
8178
+ * @interface ActionsApiGetWorkflowStatus1Request
8179
+ */
8180
+ export interface ActionsApiGetWorkflowStatus1Request {
8181
+ /**
8182
+ * Workspace identifier
8183
+ * @type {string}
8184
+ * @memberof ActionsApiGetWorkflowStatus1
8185
+ */
8186
+ readonly workspaceId: string;
8187
+ /**
8188
+ *
8189
+ * @type {string}
8190
+ * @memberof ActionsApiGetWorkflowStatus1
8191
+ */
8192
+ readonly runId: string;
8193
+ }
8030
8194
  /**
8031
8195
  * Request parameters for keyDriverAnalysis operation in ActionsApi.
8032
8196
  * @export
@@ -8291,19 +8455,6 @@ export interface ActionsApiRetrieveResultBinaryRequest {
8291
8455
  */
8292
8456
  readonly xGDCCANCELTOKEN?: string;
8293
8457
  }
8294
- /**
8295
- * Request parameters for tags operation in ActionsApi.
8296
- * @export
8297
- * @interface ActionsApiTagsRequest
8298
- */
8299
- export interface ActionsApiTagsRequest {
8300
- /**
8301
- * Workspace identifier
8302
- * @type {string}
8303
- * @memberof ActionsApiTags
8304
- */
8305
- readonly workspaceId: string;
8306
- }
8307
8458
  /**
8308
8459
  * Request parameters for testLlmProvider operation in ActionsApi.
8309
8460
  * @export
@@ -8362,6 +8513,31 @@ export interface ActionsApiTriggerQualityIssuesCalculationRequest {
8362
8513
  */
8363
8514
  readonly workspaceId: string;
8364
8515
  }
8516
+ /**
8517
+ * Request parameters for userFeedback operation in ActionsApi.
8518
+ * @export
8519
+ * @interface ActionsApiUserFeedbackRequest
8520
+ */
8521
+ export interface ActionsApiUserFeedbackRequest {
8522
+ /**
8523
+ * Workspace identifier
8524
+ * @type {string}
8525
+ * @memberof ActionsApiUserFeedback
8526
+ */
8527
+ readonly workspaceId: string;
8528
+ /**
8529
+ *
8530
+ * @type {string}
8531
+ * @memberof ActionsApiUserFeedback
8532
+ */
8533
+ readonly runId: string;
8534
+ /**
8535
+ *
8536
+ * @type {FeedbackRequestDto}
8537
+ * @memberof ActionsApiUserFeedback
8538
+ */
8539
+ readonly feedbackRequestDto: FeedbackRequestDto;
8540
+ }
8365
8541
  /**
8366
8542
  * Request parameters for validateLLMEndpointById operation in ActionsApi.
8367
8543
  * @export
@@ -8466,6 +8642,16 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8466
8642
  cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
8467
8643
  [key: string]: string;
8468
8644
  }>;
8645
+ /**
8646
+ *
8647
+ * @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
8648
+ * @param {*} [options] Override http request option.
8649
+ * @throws {RequiredError}
8650
+ * @memberof ActionsApi
8651
+ */
8652
+ cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
8653
+ [key: string]: string;
8654
+ }>;
8469
8655
  /**
8470
8656
  * Computes change analysis for the provided execution definition.
8471
8657
  * @summary Compute change analysis
@@ -8547,15 +8733,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8547
8733
  * @memberof ActionsApi
8548
8734
  */
8549
8735
  computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
8550
- /**
8551
- * Returns a list of Users who created any object for this workspace
8552
- * @summary Get Analytics Catalog CreatedBy Users
8553
- * @param {ActionsApiCreatedByRequest} requestParameters Request parameters.
8554
- * @param {*} [options] Override http request option.
8555
- * @throws {RequiredError}
8556
- * @memberof ActionsApi
8557
- */
8558
- createdBy(requestParameters: ActionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
8559
8736
  /**
8560
8737
  * The resource provides static structures needed for investigation of a problem with given AFM.
8561
8738
  * @summary AFM explain resource.
@@ -8566,8 +8743,8 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8566
8743
  */
8567
8744
  explainAFM(requestParameters: ActionsApiExplainAFMRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
8568
8745
  /**
8569
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
8570
- * @summary (BETA) Smart functions - Forecast
8746
+ * Computes forecasted data points from the provided execution result and parameters.
8747
+ * @summary Smart functions - Forecast
8571
8748
  * @param {ActionsApiForecastRequest} requestParameters Request parameters.
8572
8749
  * @param {*} [options] Override http request option.
8573
8750
  * @throws {RequiredError}
@@ -8575,8 +8752,8 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8575
8752
  */
8576
8753
  forecast(requestParameters: ActionsApiForecastRequest, options?: AxiosRequestConfig): AxiosPromise<SmartFunctionResponse>;
8577
8754
  /**
8578
- * (BETA) Gets forecast result.
8579
- * @summary (BETA) Smart functions - Forecast Result
8755
+ * Gets forecast result.
8756
+ * @summary Smart functions - Forecast Result
8580
8757
  * @param {ActionsApiForecastResultRequest} requestParameters Request parameters.
8581
8758
  * @param {*} [options] Override http request option.
8582
8759
  * @throws {RequiredError}
@@ -8591,6 +8768,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8591
8768
  * @memberof ActionsApi
8592
8769
  */
8593
8770
  generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
8771
+ /**
8772
+ *
8773
+ * @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
8774
+ * @param {*} [options] Override http request option.
8775
+ * @throws {RequiredError}
8776
+ * @memberof ActionsApi
8777
+ */
8778
+ generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
8594
8779
  /**
8595
8780
  * Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
8596
8781
  * @summary Generate Description for Analytics Object
@@ -8600,6 +8785,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8600
8785
  * @memberof ActionsApi
8601
8786
  */
8602
8787
  generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
8788
+ /**
8789
+ *
8790
+ * @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
8791
+ * @param {*} [options] Override http request option.
8792
+ * @throws {RequiredError}
8793
+ * @memberof ActionsApi
8794
+ */
8795
+ generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
8603
8796
  /**
8604
8797
  * Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
8605
8798
  * @summary Generate Title for Analytics Object
@@ -8635,6 +8828,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8635
8828
  * @memberof ActionsApi
8636
8829
  */
8637
8830
  getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
8831
+ /**
8832
+ *
8833
+ * @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
8834
+ * @param {*} [options] Override http request option.
8835
+ * @throws {RequiredError}
8836
+ * @memberof ActionsApi
8837
+ */
8838
+ getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
8638
8839
  /**
8639
8840
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
8640
8841
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -8744,15 +8945,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8744
8945
  * @memberof ActionsApi
8745
8946
  */
8746
8947
  retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
8747
- /**
8748
- * Returns a list of tags for this workspace
8749
- * @summary Get Analytics Catalog Tags
8750
- * @param {ActionsApiTagsRequest} requestParameters Request parameters.
8751
- * @param {*} [options] Override http request option.
8752
- * @throws {RequiredError}
8753
- * @memberof ActionsApi
8754
- */
8755
- tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
8756
8948
  /**
8757
8949
  * Tests LLM provider connectivity with a full definition.
8758
8950
  * @summary Test LLM Provider
@@ -8789,6 +8981,16 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
8789
8981
  * @memberof ActionsApi
8790
8982
  */
8791
8983
  triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
8984
+ /**
8985
+ *
8986
+ * @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
8987
+ * @param {*} [options] Override http request option.
8988
+ * @throws {RequiredError}
8989
+ * @memberof ActionsApi
8990
+ */
8991
+ userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
8992
+ [key: string]: string;
8993
+ }>;
8792
8994
  /**
8793
8995
  * Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
8794
8996
  * @summary Validate LLM Endpoint (Removed)
@@ -9983,17 +10185,8 @@ export declare function SmartFunctionsApiAxiosParamCreator_Clustering(workspaceI
9983
10185
  */
9984
10186
  export declare function SmartFunctionsApiAxiosParamCreator_ClusteringResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
9985
10187
  /**
9986
- * Returns a list of Users who created any object for this workspace
9987
- * @summary Get Analytics Catalog CreatedBy Users
9988
- * @param {string} workspaceId Workspace identifier
9989
- * @param {*} [options] Override http request option.
9990
- * @param {Configuration} [configuration] Optional configuration.
9991
- * @throws {RequiredError}
9992
- */
9993
- export declare function SmartFunctionsApiAxiosParamCreator_CreatedBy(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
9994
- /**
9995
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
9996
- * @summary (BETA) Smart functions - Forecast
10188
+ * Computes forecasted data points from the provided execution result and parameters.
10189
+ * @summary Smart functions - Forecast
9997
10190
  * @param {string} workspaceId Workspace identifier
9998
10191
  * @param {string} resultId Input result ID to be used in the computation
9999
10192
  * @param {ForecastRequest} forecastRequest
@@ -10004,8 +10197,8 @@ export declare function SmartFunctionsApiAxiosParamCreator_CreatedBy(workspaceId
10004
10197
  */
10005
10198
  export declare function SmartFunctionsApiAxiosParamCreator_Forecast(workspaceId: string, resultId: string, forecastRequest: ForecastRequest, skipCache?: boolean, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
10006
10199
  /**
10007
- * (BETA) Gets forecast result.
10008
- * @summary (BETA) Smart functions - Forecast Result
10200
+ * Gets forecast result.
10201
+ * @summary Smart functions - Forecast Result
10009
10202
  * @param {string} workspaceId Workspace identifier
10010
10203
  * @param {string} resultId Result ID
10011
10204
  * @param {number} [offset]
@@ -10099,15 +10292,6 @@ export declare function SmartFunctionsApiAxiosParamCreator_ResolveLlmEndpoints(w
10099
10292
  * @throws {RequiredError}
10100
10293
  */
10101
10294
  export declare function SmartFunctionsApiAxiosParamCreator_ResolveLlmProviders(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
10102
- /**
10103
- * Returns a list of tags for this workspace
10104
- * @summary Get Analytics Catalog Tags
10105
- * @param {string} workspaceId Workspace identifier
10106
- * @param {*} [options] Override http request option.
10107
- * @param {Configuration} [configuration] Optional configuration.
10108
- * @throws {RequiredError}
10109
- */
10110
- export declare function SmartFunctionsApiAxiosParamCreator_Tags(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
10111
10295
  /**
10112
10296
  * Tests LLM provider connectivity with a full definition.
10113
10297
  * @summary Test LLM Provider
@@ -10262,19 +10446,8 @@ export declare function SmartFunctionsApi_Clustering(axios: AxiosInstance, baseP
10262
10446
  */
10263
10447
  export declare function SmartFunctionsApi_ClusteringResult(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ClusteringResult>;
10264
10448
  /**
10265
- * Returns a list of Users who created any object for this workspace
10266
- * @summary Get Analytics Catalog CreatedBy Users
10267
- * @param {AxiosInstance} axios Axios instance.
10268
- * @param {string} basePath Base path.
10269
- * @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
10270
- * @param {*} [options] Override http request option.
10271
- * @param {Configuration} [configuration] Optional configuration.
10272
- * @throws {RequiredError}
10273
- */
10274
- export declare function SmartFunctionsApi_CreatedBy(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogCreatedBy>;
10275
- /**
10276
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
10277
- * @summary (BETA) Smart functions - Forecast
10449
+ * Computes forecasted data points from the provided execution result and parameters.
10450
+ * @summary Smart functions - Forecast
10278
10451
  * @param {AxiosInstance} axios Axios instance.
10279
10452
  * @param {string} basePath Base path.
10280
10453
  * @param {SmartFunctionsApiForecastRequest} requestParameters Request parameters.
@@ -10284,8 +10457,8 @@ export declare function SmartFunctionsApi_CreatedBy(axios: AxiosInstance, basePa
10284
10457
  */
10285
10458
  export declare function SmartFunctionsApi_Forecast(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiForecastRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<SmartFunctionResponse>;
10286
10459
  /**
10287
- * (BETA) Gets forecast result.
10288
- * @summary (BETA) Smart functions - Forecast Result
10460
+ * Gets forecast result.
10461
+ * @summary Smart functions - Forecast Result
10289
10462
  * @param {AxiosInstance} axios Axios instance.
10290
10463
  * @param {string} basePath Base path.
10291
10464
  * @param {SmartFunctionsApiForecastResultRequest} requestParameters Request parameters.
@@ -10393,17 +10566,6 @@ export declare function SmartFunctionsApi_ResolveLlmEndpoints(axios: AxiosInstan
10393
10566
  * @throws {RequiredError}
10394
10567
  */
10395
10568
  export declare function SmartFunctionsApi_ResolveLlmProviders(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResolvedLlms>;
10396
- /**
10397
- * Returns a list of tags for this workspace
10398
- * @summary Get Analytics Catalog Tags
10399
- * @param {AxiosInstance} axios Axios instance.
10400
- * @param {string} basePath Base path.
10401
- * @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
10402
- * @param {*} [options] Override http request option.
10403
- * @param {Configuration} [configuration] Optional configuration.
10404
- * @throws {RequiredError}
10405
- */
10406
- export declare function SmartFunctionsApi_Tags(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<AnalyticsCatalogTags>;
10407
10569
  /**
10408
10570
  * Tests LLM provider connectivity with a full definition.
10409
10571
  * @summary Test LLM Provider
@@ -10559,17 +10721,8 @@ export interface SmartFunctionsApiInterface {
10559
10721
  */
10560
10722
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
10561
10723
  /**
10562
- * Returns a list of Users who created any object for this workspace
10563
- * @summary Get Analytics Catalog CreatedBy Users
10564
- * @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
10565
- * @param {*} [options] Override http request option.
10566
- * @throws {RequiredError}
10567
- * @memberof SmartFunctionsApiInterface
10568
- */
10569
- createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
10570
- /**
10571
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
10572
- * @summary (BETA) Smart functions - Forecast
10724
+ * Computes forecasted data points from the provided execution result and parameters.
10725
+ * @summary Smart functions - Forecast
10573
10726
  * @param {SmartFunctionsApiForecastRequest} requestParameters Request parameters.
10574
10727
  * @param {*} [options] Override http request option.
10575
10728
  * @throws {RequiredError}
@@ -10577,8 +10730,8 @@ export interface SmartFunctionsApiInterface {
10577
10730
  */
10578
10731
  forecast(requestParameters: SmartFunctionsApiForecastRequest, options?: AxiosRequestConfig): AxiosPromise<SmartFunctionResponse>;
10579
10732
  /**
10580
- * (BETA) Gets forecast result.
10581
- * @summary (BETA) Smart functions - Forecast Result
10733
+ * Gets forecast result.
10734
+ * @summary Smart functions - Forecast Result
10582
10735
  * @param {SmartFunctionsApiForecastResultRequest} requestParameters Request parameters.
10583
10736
  * @param {*} [options] Override http request option.
10584
10737
  * @throws {RequiredError}
@@ -10667,15 +10820,6 @@ export interface SmartFunctionsApiInterface {
10667
10820
  * @memberof SmartFunctionsApiInterface
10668
10821
  */
10669
10822
  resolveLlmProviders(requestParameters: SmartFunctionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
10670
- /**
10671
- * Returns a list of tags for this workspace
10672
- * @summary Get Analytics Catalog Tags
10673
- * @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
10674
- * @param {*} [options] Override http request option.
10675
- * @throws {RequiredError}
10676
- * @memberof SmartFunctionsApiInterface
10677
- */
10678
- tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
10679
10823
  /**
10680
10824
  * Tests LLM provider connectivity with a full definition.
10681
10825
  * @summary Test LLM Provider
@@ -10945,19 +11089,6 @@ export interface SmartFunctionsApiClusteringResultRequest {
10945
11089
  */
10946
11090
  readonly limit?: number;
10947
11091
  }
10948
- /**
10949
- * Request parameters for createdBy operation in SmartFunctionsApi.
10950
- * @export
10951
- * @interface SmartFunctionsApiCreatedByRequest
10952
- */
10953
- export interface SmartFunctionsApiCreatedByRequest {
10954
- /**
10955
- * Workspace identifier
10956
- * @type {string}
10957
- * @memberof SmartFunctionsApiCreatedBy
10958
- */
10959
- readonly workspaceId: string;
10960
- }
10961
11092
  /**
10962
11093
  * Request parameters for forecast operation in SmartFunctionsApi.
10963
11094
  * @export
@@ -11155,19 +11286,6 @@ export interface SmartFunctionsApiResolveLlmProvidersRequest {
11155
11286
  */
11156
11287
  readonly workspaceId: string;
11157
11288
  }
11158
- /**
11159
- * Request parameters for tags operation in SmartFunctionsApi.
11160
- * @export
11161
- * @interface SmartFunctionsApiTagsRequest
11162
- */
11163
- export interface SmartFunctionsApiTagsRequest {
11164
- /**
11165
- * Workspace identifier
11166
- * @type {string}
11167
- * @memberof SmartFunctionsApiTags
11168
- */
11169
- readonly workspaceId: string;
11170
- }
11171
11289
  /**
11172
11290
  * Request parameters for testLlmProvider operation in SmartFunctionsApi.
11173
11291
  * @export
@@ -11330,17 +11448,8 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
11330
11448
  */
11331
11449
  clusteringResult(requestParameters: SmartFunctionsApiClusteringResultRequest, options?: AxiosRequestConfig): AxiosPromise<ClusteringResult>;
11332
11450
  /**
11333
- * Returns a list of Users who created any object for this workspace
11334
- * @summary Get Analytics Catalog CreatedBy Users
11335
- * @param {SmartFunctionsApiCreatedByRequest} requestParameters Request parameters.
11336
- * @param {*} [options] Override http request option.
11337
- * @throws {RequiredError}
11338
- * @memberof SmartFunctionsApi
11339
- */
11340
- createdBy(requestParameters: SmartFunctionsApiCreatedByRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogCreatedBy>;
11341
- /**
11342
- * (BETA) Computes forecasted data points from the provided execution result and parameters.
11343
- * @summary (BETA) Smart functions - Forecast
11451
+ * Computes forecasted data points from the provided execution result and parameters.
11452
+ * @summary Smart functions - Forecast
11344
11453
  * @param {SmartFunctionsApiForecastRequest} requestParameters Request parameters.
11345
11454
  * @param {*} [options] Override http request option.
11346
11455
  * @throws {RequiredError}
@@ -11348,8 +11457,8 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
11348
11457
  */
11349
11458
  forecast(requestParameters: SmartFunctionsApiForecastRequest, options?: AxiosRequestConfig): AxiosPromise<SmartFunctionResponse>;
11350
11459
  /**
11351
- * (BETA) Gets forecast result.
11352
- * @summary (BETA) Smart functions - Forecast Result
11460
+ * Gets forecast result.
11461
+ * @summary Smart functions - Forecast Result
11353
11462
  * @param {SmartFunctionsApiForecastResultRequest} requestParameters Request parameters.
11354
11463
  * @param {*} [options] Override http request option.
11355
11464
  * @throws {RequiredError}
@@ -11438,15 +11547,6 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
11438
11547
  * @memberof SmartFunctionsApi
11439
11548
  */
11440
11549
  resolveLlmProviders(requestParameters: SmartFunctionsApiResolveLlmProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlms>;
11441
- /**
11442
- * Returns a list of tags for this workspace
11443
- * @summary Get Analytics Catalog Tags
11444
- * @param {SmartFunctionsApiTagsRequest} requestParameters Request parameters.
11445
- * @param {*} [options] Override http request option.
11446
- * @throws {RequiredError}
11447
- * @memberof SmartFunctionsApi
11448
- */
11449
- tags(requestParameters: SmartFunctionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AnalyticsCatalogTags>;
11450
11550
  /**
11451
11551
  * Tests LLM provider connectivity with a full definition.
11452
11552
  * @summary Test LLM Provider