@gooddata/api-client-tiger 11.27.0-alpha.2 → 11.27.0-alpha.4
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 +6528 -6256
- package/esm/endpoints/automation/index.d.ts +1 -1
- package/esm/endpoints/automation/index.d.ts.map +1 -1
- package/esm/endpoints/automation/index.js +1 -1
- package/esm/endpoints/automation/index.js.map +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts.map +1 -1
- package/esm/endpoints/entitiesObjects/index.js +2 -0
- package/esm/endpoints/entitiesObjects/index.js.map +1 -1
- package/esm/generated/afm-rest-api/api.d.ts +346 -8
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +347 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.d.ts.map +1 -1
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/auth-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/api.d.ts +35 -1
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/api.d.ts +9 -0
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +7093 -7087
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +8987 -8993
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/result-json-api/base.d.ts.map +1 -1
- package/esm/generated/result-json-api/base.js +1 -1
- package/esm/generated/result-json-api/base.js.map +1 -1
- package/esm/index.d.ts +1 -1
- package/esm/index.d.ts.map +1 -1
- package/esm/index.js.map +1 -1
- package/package.json +5 -5
|
@@ -901,12 +901,24 @@ export interface DashboardContext {
|
|
|
901
901
|
/**
|
|
902
902
|
* Widgets currently visible on the dashboard.
|
|
903
903
|
*/
|
|
904
|
-
'widgets': Array<
|
|
904
|
+
'widgets': Array<WidgetDescriptor>;
|
|
905
|
+
}
|
|
906
|
+
export interface DashboardSummaryRequestDto {
|
|
907
|
+
'dashboardId': string;
|
|
908
|
+
'customUserPrompt'?: string;
|
|
909
|
+
'gooddataHost'?: string;
|
|
910
|
+
'gooddataToken'?: string;
|
|
911
|
+
'keyMetricIds'?: Array<string>;
|
|
912
|
+
'referenceQuarter'?: string;
|
|
913
|
+
'dryRun'?: boolean;
|
|
914
|
+
'temperature'?: number;
|
|
915
|
+
'aiModel'?: string;
|
|
916
|
+
}
|
|
917
|
+
export interface DashboardSummaryResponseDto {
|
|
918
|
+
'runId': string;
|
|
919
|
+
'status': string;
|
|
920
|
+
'message': string;
|
|
905
921
|
}
|
|
906
|
-
/**
|
|
907
|
-
* @type DashboardContextWidgetsInner
|
|
908
|
-
*/
|
|
909
|
-
export type DashboardContextWidgetsInner = InsightWidgetDescriptor | RichTextWidgetDescriptor | VisualizationSwitcherWidgetDescriptor;
|
|
910
922
|
/**
|
|
911
923
|
* 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.
|
|
912
924
|
*/
|
|
@@ -1240,6 +1252,10 @@ export interface ExecutionSettings {
|
|
|
1240
1252
|
export interface FailedOperation extends Operation {
|
|
1241
1253
|
'error': OperationError;
|
|
1242
1254
|
}
|
|
1255
|
+
export interface FeedbackRequestDto {
|
|
1256
|
+
'sentiment': FeedbackRequestDtoSentimentEnum;
|
|
1257
|
+
}
|
|
1258
|
+
export type FeedbackRequestDtoSentimentEnum = 'POSITIVE' | 'NEGATIVE';
|
|
1243
1259
|
/**
|
|
1244
1260
|
* Specifies what is used for filtering.
|
|
1245
1261
|
*/
|
|
@@ -1436,7 +1452,7 @@ export interface InlineMeasureDefinitionInline {
|
|
|
1436
1452
|
/**
|
|
1437
1453
|
* Insight widget displaying a visualization.
|
|
1438
1454
|
*/
|
|
1439
|
-
export interface InsightWidgetDescriptor
|
|
1455
|
+
export interface InsightWidgetDescriptor {
|
|
1440
1456
|
/**
|
|
1441
1457
|
* Widget object ID.
|
|
1442
1458
|
*/
|
|
@@ -1496,6 +1512,31 @@ export interface KnowledgeDocumentMetadataDto {
|
|
|
1496
1512
|
'scopes': Array<string>;
|
|
1497
1513
|
'isDisabled'?: boolean;
|
|
1498
1514
|
}
|
|
1515
|
+
export interface KnowledgeRecommendationsRequestDto {
|
|
1516
|
+
'metricId': string;
|
|
1517
|
+
'direction'?: KnowledgeRecommendationsRequestDtoDirectionEnum;
|
|
1518
|
+
'comparisonType': KnowledgeRecommendationsRequestDtoComparisonTypeEnum;
|
|
1519
|
+
'limit'?: number;
|
|
1520
|
+
'minScore'?: number;
|
|
1521
|
+
'aiModel'?: string;
|
|
1522
|
+
'temperature'?: number;
|
|
1523
|
+
'maxTokens'?: number;
|
|
1524
|
+
'gooddataHost'?: string;
|
|
1525
|
+
'gooddataToken'?: string;
|
|
1526
|
+
'analyticalDashboardId'?: string;
|
|
1527
|
+
'widgetId'?: string;
|
|
1528
|
+
'widgetName'?: string;
|
|
1529
|
+
'dryRun'?: boolean;
|
|
1530
|
+
'referenceValue'?: number;
|
|
1531
|
+
'analyzedValue'?: number;
|
|
1532
|
+
}
|
|
1533
|
+
export type KnowledgeRecommendationsRequestDtoDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
1534
|
+
export type KnowledgeRecommendationsRequestDtoComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
1535
|
+
export interface KnowledgeRecommendationsResponseDto {
|
|
1536
|
+
'runId': string;
|
|
1537
|
+
'status': string;
|
|
1538
|
+
'message': string;
|
|
1539
|
+
}
|
|
1499
1540
|
export interface KnowledgeSearchResultDto {
|
|
1500
1541
|
'filename': string;
|
|
1501
1542
|
'content': string;
|
|
@@ -1792,6 +1833,10 @@ export interface NegativeAttributeFilterNegativeAttributeFilter {
|
|
|
1792
1833
|
'notIn': AttributeFilterElements;
|
|
1793
1834
|
'localIdentifier'?: string;
|
|
1794
1835
|
'applyOnResult'?: boolean;
|
|
1836
|
+
/**
|
|
1837
|
+
* If true, indicates that the values in notInElements were filled free-form, otherwise they have been picked from existing elements.
|
|
1838
|
+
*/
|
|
1839
|
+
'usesArbitraryValues'?: boolean;
|
|
1795
1840
|
'label': AfmIdentifier;
|
|
1796
1841
|
}
|
|
1797
1842
|
export interface ObjectReference {
|
|
@@ -2009,6 +2054,10 @@ export interface PositiveAttributeFilterPositiveAttributeFilter {
|
|
|
2009
2054
|
'in': AttributeFilterElements;
|
|
2010
2055
|
'localIdentifier'?: string;
|
|
2011
2056
|
'applyOnResult'?: boolean;
|
|
2057
|
+
/**
|
|
2058
|
+
* If true, indicates that the values in inElements were filled free-form, otherwise they have been picked from existing elements.
|
|
2059
|
+
*/
|
|
2060
|
+
'usesArbitraryValues'?: boolean;
|
|
2012
2061
|
'label': AfmIdentifier;
|
|
2013
2062
|
}
|
|
2014
2063
|
/**
|
|
@@ -2285,7 +2334,7 @@ export interface ResultSpec {
|
|
|
2285
2334
|
/**
|
|
2286
2335
|
* Rich text widget displaying static content. Has no execution result.
|
|
2287
2336
|
*/
|
|
2288
|
-
export interface RichTextWidgetDescriptor
|
|
2337
|
+
export interface RichTextWidgetDescriptor {
|
|
2289
2338
|
/**
|
|
2290
2339
|
* Widget object ID.
|
|
2291
2340
|
*/
|
|
@@ -2900,7 +2949,7 @@ export interface VisualizationConfig {
|
|
|
2900
2949
|
/**
|
|
2901
2950
|
* Visualization switcher widget allowing users to toggle between multiple visualizations.
|
|
2902
2951
|
*/
|
|
2903
|
-
export interface VisualizationSwitcherWidgetDescriptor
|
|
2952
|
+
export interface VisualizationSwitcherWidgetDescriptor {
|
|
2904
2953
|
/**
|
|
2905
2954
|
* Widget object ID.
|
|
2906
2955
|
*/
|
|
@@ -3572,6 +3621,15 @@ export declare function ActionsApiAxiosParamCreator_CancelExecutions(workspaceId
|
|
|
3572
3621
|
* @throws {RequiredError}
|
|
3573
3622
|
*/
|
|
3574
3623
|
export declare function ActionsApiAxiosParamCreator_CancelWorkflow(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3624
|
+
/**
|
|
3625
|
+
*
|
|
3626
|
+
* @param {string} workspaceId Workspace identifier
|
|
3627
|
+
* @param {string} runId
|
|
3628
|
+
* @param {*} [options] Override http request option.
|
|
3629
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3630
|
+
* @throws {RequiredError}
|
|
3631
|
+
*/
|
|
3632
|
+
export declare function ActionsApiAxiosParamCreator_CancelWorkflow1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3575
3633
|
/**
|
|
3576
3634
|
* Computes change analysis for the provided execution definition.
|
|
3577
3635
|
* @summary Compute change analysis
|
|
@@ -3732,6 +3790,15 @@ export declare function ActionsApiAxiosParamCreator_ForecastResult(workspaceId:
|
|
|
3732
3790
|
* @throws {RequiredError}
|
|
3733
3791
|
*/
|
|
3734
3792
|
export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(workspaceId: string, workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3793
|
+
/**
|
|
3794
|
+
*
|
|
3795
|
+
* @param {string} workspaceId Workspace identifier
|
|
3796
|
+
* @param {DashboardSummaryRequestDto} dashboardSummaryRequestDto
|
|
3797
|
+
* @param {*} [options] Override http request option.
|
|
3798
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3799
|
+
* @throws {RequiredError}
|
|
3800
|
+
*/
|
|
3801
|
+
export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary1(workspaceId: string, dashboardSummaryRequestDto: DashboardSummaryRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3735
3802
|
/**
|
|
3736
3803
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
3737
3804
|
* @summary Generate Description for Analytics Object
|
|
@@ -3742,6 +3809,15 @@ export declare function ActionsApiAxiosParamCreator_GenerateDashboardSummary(wor
|
|
|
3742
3809
|
* @throws {RequiredError}
|
|
3743
3810
|
*/
|
|
3744
3811
|
export declare function ActionsApiAxiosParamCreator_GenerateDescription(workspaceId: string, generateDescriptionRequest: GenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3812
|
+
/**
|
|
3813
|
+
*
|
|
3814
|
+
* @param {string} workspaceId Workspace identifier
|
|
3815
|
+
* @param {KnowledgeRecommendationsRequestDto} knowledgeRecommendationsRequestDto
|
|
3816
|
+
* @param {*} [options] Override http request option.
|
|
3817
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3818
|
+
* @throws {RequiredError}
|
|
3819
|
+
*/
|
|
3820
|
+
export declare function ActionsApiAxiosParamCreator_GenerateKnowledgeRecommendations(workspaceId: string, knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3745
3821
|
/**
|
|
3746
3822
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
3747
3823
|
* @summary Generate Title for Analytics Object
|
|
@@ -3789,6 +3865,15 @@ export declare function ActionsApiAxiosParamCreator_GetQualityIssuesCalculationS
|
|
|
3789
3865
|
* @throws {RequiredError}
|
|
3790
3866
|
*/
|
|
3791
3867
|
export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3868
|
+
/**
|
|
3869
|
+
*
|
|
3870
|
+
* @param {string} workspaceId Workspace identifier
|
|
3871
|
+
* @param {string} runId
|
|
3872
|
+
* @param {*} [options] Override http request option.
|
|
3873
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
3874
|
+
* @throws {RequiredError}
|
|
3875
|
+
*/
|
|
3876
|
+
export declare function ActionsApiAxiosParamCreator_GetWorkflowStatus1(workspaceId: string, runId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
3792
3877
|
/**
|
|
3793
3878
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
3794
3879
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -4006,6 +4091,16 @@ export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculat
|
|
|
4006
4091
|
* @throws {RequiredError}
|
|
4007
4092
|
*/
|
|
4008
4093
|
export declare function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId: string, upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4094
|
+
/**
|
|
4095
|
+
*
|
|
4096
|
+
* @param {string} workspaceId Workspace identifier
|
|
4097
|
+
* @param {string} runId
|
|
4098
|
+
* @param {FeedbackRequestDto} feedbackRequestDto
|
|
4099
|
+
* @param {*} [options] Override http request option.
|
|
4100
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4101
|
+
* @throws {RequiredError}
|
|
4102
|
+
*/
|
|
4103
|
+
export declare function ActionsApiAxiosParamCreator_UserFeedback(workspaceId: string, runId: string, feedbackRequestDto: FeedbackRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
|
|
4009
4104
|
/**
|
|
4010
4105
|
* Will be soon removed and replaced by testLlmProvider.
|
|
4011
4106
|
* @summary Validate LLM Endpoint
|
|
@@ -4125,6 +4220,18 @@ export declare function ActionsApi_CancelExecutions(axios: AxiosInstance, basePa
|
|
|
4125
4220
|
export declare function ActionsApi_CancelWorkflow(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
4126
4221
|
[key: string]: string;
|
|
4127
4222
|
}>;
|
|
4223
|
+
/**
|
|
4224
|
+
*
|
|
4225
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4226
|
+
* @param {string} basePath Base path.
|
|
4227
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
4228
|
+
* @param {*} [options] Override http request option.
|
|
4229
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4230
|
+
* @throws {RequiredError}
|
|
4231
|
+
*/
|
|
4232
|
+
export declare function ActionsApi_CancelWorkflow1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
4233
|
+
[key: string]: string;
|
|
4234
|
+
}>;
|
|
4128
4235
|
/**
|
|
4129
4236
|
* Computes change analysis for the provided execution definition.
|
|
4130
4237
|
* @summary Compute change analysis
|
|
@@ -4287,6 +4394,16 @@ export declare function ActionsApi_ForecastResult(axios: AxiosInstance, basePath
|
|
|
4287
4394
|
* @throws {RequiredError}
|
|
4288
4395
|
*/
|
|
4289
4396
|
export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
4397
|
+
/**
|
|
4398
|
+
*
|
|
4399
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4400
|
+
* @param {string} basePath Base path.
|
|
4401
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
4402
|
+
* @param {*} [options] Override http request option.
|
|
4403
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4404
|
+
* @throws {RequiredError}
|
|
4405
|
+
*/
|
|
4406
|
+
export declare function ActionsApi_GenerateDashboardSummary1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<DashboardSummaryResponseDto>;
|
|
4290
4407
|
/**
|
|
4291
4408
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
4292
4409
|
* @summary Generate Description for Analytics Object
|
|
@@ -4298,6 +4415,16 @@ export declare function ActionsApi_GenerateDashboardSummary(axios: AxiosInstance
|
|
|
4298
4415
|
* @throws {RequiredError}
|
|
4299
4416
|
*/
|
|
4300
4417
|
export declare function ActionsApi_GenerateDescription(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<GenerateDescriptionResponse>;
|
|
4418
|
+
/**
|
|
4419
|
+
*
|
|
4420
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4421
|
+
* @param {string} basePath Base path.
|
|
4422
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
4423
|
+
* @param {*} [options] Override http request option.
|
|
4424
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4425
|
+
* @throws {RequiredError}
|
|
4426
|
+
*/
|
|
4427
|
+
export declare function ActionsApi_GenerateKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
4301
4428
|
/**
|
|
4302
4429
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
4303
4430
|
* @summary Generate Title for Analytics Object
|
|
@@ -4351,6 +4478,16 @@ export declare function ActionsApi_GetQualityIssuesCalculationStatus(axios: Axio
|
|
|
4351
4478
|
* @throws {RequiredError}
|
|
4352
4479
|
*/
|
|
4353
4480
|
export declare function ActionsApi_GetWorkflowStatus(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
|
|
4481
|
+
/**
|
|
4482
|
+
*
|
|
4483
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4484
|
+
* @param {string} basePath Base path.
|
|
4485
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
4486
|
+
* @param {*} [options] Override http request option.
|
|
4487
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4488
|
+
* @throws {RequiredError}
|
|
4489
|
+
*/
|
|
4490
|
+
export declare function ActionsApi_GetWorkflowStatus1(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<WorkflowStatusResponseDto>;
|
|
4354
4491
|
/**
|
|
4355
4492
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
4356
4493
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -4578,6 +4715,18 @@ export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosI
|
|
|
4578
4715
|
* @throws {RequiredError}
|
|
4579
4716
|
*/
|
|
4580
4717
|
export declare function ActionsApi_UpsertDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
4718
|
+
/**
|
|
4719
|
+
*
|
|
4720
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
4721
|
+
* @param {string} basePath Base path.
|
|
4722
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
4723
|
+
* @param {*} [options] Override http request option.
|
|
4724
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
4725
|
+
* @throws {RequiredError}
|
|
4726
|
+
*/
|
|
4727
|
+
export declare function ActionsApi_UserFeedback(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<{
|
|
4728
|
+
[key: string]: string;
|
|
4729
|
+
}>;
|
|
4581
4730
|
/**
|
|
4582
4731
|
* Will be soon removed and replaced by testLlmProvider.
|
|
4583
4732
|
* @summary Validate LLM Endpoint
|
|
@@ -4688,6 +4837,16 @@ export interface ActionsApiInterface {
|
|
|
4688
4837
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
4689
4838
|
[key: string]: string;
|
|
4690
4839
|
}>;
|
|
4840
|
+
/**
|
|
4841
|
+
*
|
|
4842
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
4843
|
+
* @param {*} [options] Override http request option.
|
|
4844
|
+
* @throws {RequiredError}
|
|
4845
|
+
* @memberof ActionsApiInterface
|
|
4846
|
+
*/
|
|
4847
|
+
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
4848
|
+
[key: string]: string;
|
|
4849
|
+
}>;
|
|
4691
4850
|
/**
|
|
4692
4851
|
* Computes change analysis for the provided execution definition.
|
|
4693
4852
|
* @summary Compute change analysis
|
|
@@ -4820,6 +4979,14 @@ export interface ActionsApiInterface {
|
|
|
4820
4979
|
* @memberof ActionsApiInterface
|
|
4821
4980
|
*/
|
|
4822
4981
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
4982
|
+
/**
|
|
4983
|
+
*
|
|
4984
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
4985
|
+
* @param {*} [options] Override http request option.
|
|
4986
|
+
* @throws {RequiredError}
|
|
4987
|
+
* @memberof ActionsApiInterface
|
|
4988
|
+
*/
|
|
4989
|
+
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
4823
4990
|
/**
|
|
4824
4991
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
4825
4992
|
* @summary Generate Description for Analytics Object
|
|
@@ -4829,6 +4996,14 @@ export interface ActionsApiInterface {
|
|
|
4829
4996
|
* @memberof ActionsApiInterface
|
|
4830
4997
|
*/
|
|
4831
4998
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
4999
|
+
/**
|
|
5000
|
+
*
|
|
5001
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
5002
|
+
* @param {*} [options] Override http request option.
|
|
5003
|
+
* @throws {RequiredError}
|
|
5004
|
+
* @memberof ActionsApiInterface
|
|
5005
|
+
*/
|
|
5006
|
+
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
4832
5007
|
/**
|
|
4833
5008
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
4834
5009
|
* @summary Generate Title for Analytics Object
|
|
@@ -4872,6 +5047,14 @@ export interface ActionsApiInterface {
|
|
|
4872
5047
|
* @memberof ActionsApiInterface
|
|
4873
5048
|
*/
|
|
4874
5049
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
5050
|
+
/**
|
|
5051
|
+
*
|
|
5052
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
5053
|
+
* @param {*} [options] Override http request option.
|
|
5054
|
+
* @throws {RequiredError}
|
|
5055
|
+
* @memberof ActionsApiInterface
|
|
5056
|
+
*/
|
|
5057
|
+
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
4875
5058
|
/**
|
|
4876
5059
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
4877
5060
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5058,6 +5241,16 @@ export interface ActionsApiInterface {
|
|
|
5058
5241
|
* @memberof ActionsApiInterface
|
|
5059
5242
|
*/
|
|
5060
5243
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
5244
|
+
/**
|
|
5245
|
+
*
|
|
5246
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
5247
|
+
* @param {*} [options] Override http request option.
|
|
5248
|
+
* @throws {RequiredError}
|
|
5249
|
+
* @memberof ActionsApiInterface
|
|
5250
|
+
*/
|
|
5251
|
+
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5252
|
+
[key: string]: string;
|
|
5253
|
+
}>;
|
|
5061
5254
|
/**
|
|
5062
5255
|
* Will be soon removed and replaced by testLlmProvider.
|
|
5063
5256
|
* @summary Validate LLM Endpoint
|
|
@@ -5268,6 +5461,25 @@ export interface ActionsApiCancelWorkflowRequest {
|
|
|
5268
5461
|
*/
|
|
5269
5462
|
readonly runId: string;
|
|
5270
5463
|
}
|
|
5464
|
+
/**
|
|
5465
|
+
* Request parameters for cancelWorkflow1 operation in ActionsApi.
|
|
5466
|
+
* @export
|
|
5467
|
+
* @interface ActionsApiCancelWorkflow1Request
|
|
5468
|
+
*/
|
|
5469
|
+
export interface ActionsApiCancelWorkflow1Request {
|
|
5470
|
+
/**
|
|
5471
|
+
* Workspace identifier
|
|
5472
|
+
* @type {string}
|
|
5473
|
+
* @memberof ActionsApiCancelWorkflow1
|
|
5474
|
+
*/
|
|
5475
|
+
readonly workspaceId: string;
|
|
5476
|
+
/**
|
|
5477
|
+
*
|
|
5478
|
+
* @type {string}
|
|
5479
|
+
* @memberof ActionsApiCancelWorkflow1
|
|
5480
|
+
*/
|
|
5481
|
+
readonly runId: string;
|
|
5482
|
+
}
|
|
5271
5483
|
/**
|
|
5272
5484
|
* Request parameters for changeAnalysis operation in ActionsApi.
|
|
5273
5485
|
* @export
|
|
@@ -5631,6 +5843,25 @@ export interface ActionsApiGenerateDashboardSummaryRequest {
|
|
|
5631
5843
|
*/
|
|
5632
5844
|
readonly workflowDashboardSummaryRequestDto: WorkflowDashboardSummaryRequestDto;
|
|
5633
5845
|
}
|
|
5846
|
+
/**
|
|
5847
|
+
* Request parameters for generateDashboardSummary1 operation in ActionsApi.
|
|
5848
|
+
* @export
|
|
5849
|
+
* @interface ActionsApiGenerateDashboardSummary1Request
|
|
5850
|
+
*/
|
|
5851
|
+
export interface ActionsApiGenerateDashboardSummary1Request {
|
|
5852
|
+
/**
|
|
5853
|
+
* Workspace identifier
|
|
5854
|
+
* @type {string}
|
|
5855
|
+
* @memberof ActionsApiGenerateDashboardSummary1
|
|
5856
|
+
*/
|
|
5857
|
+
readonly workspaceId: string;
|
|
5858
|
+
/**
|
|
5859
|
+
*
|
|
5860
|
+
* @type {DashboardSummaryRequestDto}
|
|
5861
|
+
* @memberof ActionsApiGenerateDashboardSummary1
|
|
5862
|
+
*/
|
|
5863
|
+
readonly dashboardSummaryRequestDto: DashboardSummaryRequestDto;
|
|
5864
|
+
}
|
|
5634
5865
|
/**
|
|
5635
5866
|
* Request parameters for generateDescription operation in ActionsApi.
|
|
5636
5867
|
* @export
|
|
@@ -5650,6 +5881,25 @@ export interface ActionsApiGenerateDescriptionRequest {
|
|
|
5650
5881
|
*/
|
|
5651
5882
|
readonly generateDescriptionRequest: GenerateDescriptionRequest;
|
|
5652
5883
|
}
|
|
5884
|
+
/**
|
|
5885
|
+
* Request parameters for generateKnowledgeRecommendations operation in ActionsApi.
|
|
5886
|
+
* @export
|
|
5887
|
+
* @interface ActionsApiGenerateKnowledgeRecommendationsRequest
|
|
5888
|
+
*/
|
|
5889
|
+
export interface ActionsApiGenerateKnowledgeRecommendationsRequest {
|
|
5890
|
+
/**
|
|
5891
|
+
* Workspace identifier
|
|
5892
|
+
* @type {string}
|
|
5893
|
+
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
5894
|
+
*/
|
|
5895
|
+
readonly workspaceId: string;
|
|
5896
|
+
/**
|
|
5897
|
+
*
|
|
5898
|
+
* @type {KnowledgeRecommendationsRequestDto}
|
|
5899
|
+
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
5900
|
+
*/
|
|
5901
|
+
readonly knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto;
|
|
5902
|
+
}
|
|
5653
5903
|
/**
|
|
5654
5904
|
* Request parameters for generateTitle operation in ActionsApi.
|
|
5655
5905
|
* @export
|
|
@@ -5739,6 +5989,25 @@ export interface ActionsApiGetWorkflowStatusRequest {
|
|
|
5739
5989
|
*/
|
|
5740
5990
|
readonly runId: string;
|
|
5741
5991
|
}
|
|
5992
|
+
/**
|
|
5993
|
+
* Request parameters for getWorkflowStatus1 operation in ActionsApi.
|
|
5994
|
+
* @export
|
|
5995
|
+
* @interface ActionsApiGetWorkflowStatus1Request
|
|
5996
|
+
*/
|
|
5997
|
+
export interface ActionsApiGetWorkflowStatus1Request {
|
|
5998
|
+
/**
|
|
5999
|
+
* Workspace identifier
|
|
6000
|
+
* @type {string}
|
|
6001
|
+
* @memberof ActionsApiGetWorkflowStatus1
|
|
6002
|
+
*/
|
|
6003
|
+
readonly workspaceId: string;
|
|
6004
|
+
/**
|
|
6005
|
+
*
|
|
6006
|
+
* @type {string}
|
|
6007
|
+
* @memberof ActionsApiGetWorkflowStatus1
|
|
6008
|
+
*/
|
|
6009
|
+
readonly runId: string;
|
|
6010
|
+
}
|
|
5742
6011
|
/**
|
|
5743
6012
|
* Request parameters for keyDriverAnalysis operation in ActionsApi.
|
|
5744
6013
|
* @export
|
|
@@ -6204,6 +6473,31 @@ export interface ActionsApiUpsertDocumentRequest {
|
|
|
6204
6473
|
*/
|
|
6205
6474
|
readonly upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto;
|
|
6206
6475
|
}
|
|
6476
|
+
/**
|
|
6477
|
+
* Request parameters for userFeedback operation in ActionsApi.
|
|
6478
|
+
* @export
|
|
6479
|
+
* @interface ActionsApiUserFeedbackRequest
|
|
6480
|
+
*/
|
|
6481
|
+
export interface ActionsApiUserFeedbackRequest {
|
|
6482
|
+
/**
|
|
6483
|
+
* Workspace identifier
|
|
6484
|
+
* @type {string}
|
|
6485
|
+
* @memberof ActionsApiUserFeedback
|
|
6486
|
+
*/
|
|
6487
|
+
readonly workspaceId: string;
|
|
6488
|
+
/**
|
|
6489
|
+
*
|
|
6490
|
+
* @type {string}
|
|
6491
|
+
* @memberof ActionsApiUserFeedback
|
|
6492
|
+
*/
|
|
6493
|
+
readonly runId: string;
|
|
6494
|
+
/**
|
|
6495
|
+
*
|
|
6496
|
+
* @type {FeedbackRequestDto}
|
|
6497
|
+
* @memberof ActionsApiUserFeedback
|
|
6498
|
+
*/
|
|
6499
|
+
readonly feedbackRequestDto: FeedbackRequestDto;
|
|
6500
|
+
}
|
|
6207
6501
|
/**
|
|
6208
6502
|
* Request parameters for validateLLMEndpoint operation in ActionsApi.
|
|
6209
6503
|
* @export
|
|
@@ -6325,6 +6619,16 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6325
6619
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
6326
6620
|
[key: string]: string;
|
|
6327
6621
|
}>;
|
|
6622
|
+
/**
|
|
6623
|
+
*
|
|
6624
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
6625
|
+
* @param {*} [options] Override http request option.
|
|
6626
|
+
* @throws {RequiredError}
|
|
6627
|
+
* @memberof ActionsApi
|
|
6628
|
+
*/
|
|
6629
|
+
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
6630
|
+
[key: string]: string;
|
|
6631
|
+
}>;
|
|
6328
6632
|
/**
|
|
6329
6633
|
* Computes change analysis for the provided execution definition.
|
|
6330
6634
|
* @summary Compute change analysis
|
|
@@ -6457,6 +6761,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6457
6761
|
* @memberof ActionsApi
|
|
6458
6762
|
*/
|
|
6459
6763
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
6764
|
+
/**
|
|
6765
|
+
*
|
|
6766
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
6767
|
+
* @param {*} [options] Override http request option.
|
|
6768
|
+
* @throws {RequiredError}
|
|
6769
|
+
* @memberof ActionsApi
|
|
6770
|
+
*/
|
|
6771
|
+
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
6460
6772
|
/**
|
|
6461
6773
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
6462
6774
|
* @summary Generate Description for Analytics Object
|
|
@@ -6466,6 +6778,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6466
6778
|
* @memberof ActionsApi
|
|
6467
6779
|
*/
|
|
6468
6780
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
6781
|
+
/**
|
|
6782
|
+
*
|
|
6783
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
6784
|
+
* @param {*} [options] Override http request option.
|
|
6785
|
+
* @throws {RequiredError}
|
|
6786
|
+
* @memberof ActionsApi
|
|
6787
|
+
*/
|
|
6788
|
+
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
6469
6789
|
/**
|
|
6470
6790
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
6471
6791
|
* @summary Generate Title for Analytics Object
|
|
@@ -6509,6 +6829,14 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6509
6829
|
* @memberof ActionsApi
|
|
6510
6830
|
*/
|
|
6511
6831
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6832
|
+
/**
|
|
6833
|
+
*
|
|
6834
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6835
|
+
* @param {*} [options] Override http request option.
|
|
6836
|
+
* @throws {RequiredError}
|
|
6837
|
+
* @memberof ActionsApi
|
|
6838
|
+
*/
|
|
6839
|
+
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6512
6840
|
/**
|
|
6513
6841
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6514
6842
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6695,6 +7023,16 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
6695
7023
|
* @memberof ActionsApi
|
|
6696
7024
|
*/
|
|
6697
7025
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
7026
|
+
/**
|
|
7027
|
+
*
|
|
7028
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
7029
|
+
* @param {*} [options] Override http request option.
|
|
7030
|
+
* @throws {RequiredError}
|
|
7031
|
+
* @memberof ActionsApi
|
|
7032
|
+
*/
|
|
7033
|
+
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
7034
|
+
[key: string]: string;
|
|
7035
|
+
}>;
|
|
6698
7036
|
/**
|
|
6699
7037
|
* Will be soon removed and replaced by testLlmProvider.
|
|
6700
7038
|
* @summary Validate LLM Endpoint
|