@gooddata/api-client-tiger 11.26.0-alpha.2 → 11.26.0-alpha.3

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.
@@ -711,6 +711,10 @@ export interface ChatResult {
711
711
  */
712
712
  'chatHistoryInteractionId'?: string;
713
713
  'reasoning'?: Reasoning;
714
+ /**
715
+ * Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
716
+ */
717
+ 'toolCallEvents'?: Array<ToolCallEventResult>;
714
718
  }
715
719
  export interface ChatUsageResponse {
716
720
  /**
@@ -886,6 +890,23 @@ export interface CreatedVisualizations {
886
890
  */
887
891
  'suggestions': Array<Suggestion>;
888
892
  }
893
+ /**
894
+ * Dashboard the user is currently viewing.
895
+ */
896
+ export interface DashboardContext {
897
+ /**
898
+ * Dashboard object ID.
899
+ */
900
+ 'id': string;
901
+ /**
902
+ * Widgets currently visible on the dashboard.
903
+ */
904
+ 'widgets': Array<DashboardContextWidgetsInner>;
905
+ }
906
+ /**
907
+ * @type DashboardContextWidgetsInner
908
+ */
909
+ export type DashboardContextWidgetsInner = InsightWidgetDescriptor | RichTextWidgetDescriptor | VisualizationSwitcherWidgetDescriptor;
889
910
  /**
890
911
  * 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.
891
912
  */
@@ -1412,6 +1433,27 @@ export interface InlineMeasureDefinitionInline {
1412
1433
  */
1413
1434
  'maql': string;
1414
1435
  }
1436
+ /**
1437
+ * Insight widget displaying a visualization.
1438
+ */
1439
+ export interface InsightWidgetDescriptor extends WidgetDescriptor {
1440
+ /**
1441
+ * Widget object ID.
1442
+ */
1443
+ 'widgetId': string;
1444
+ /**
1445
+ * Widget title as displayed on the dashboard.
1446
+ */
1447
+ 'title': string;
1448
+ /**
1449
+ * Signed result ID for this widget\'s cached execution result.
1450
+ */
1451
+ 'resultId'?: string;
1452
+ /**
1453
+ * Visualization object ID referenced by this insight widget.
1454
+ */
1455
+ 'visualizationId': string;
1456
+ }
1415
1457
  export interface KeyDriversDimension {
1416
1458
  'label': RestApiIdentifier;
1417
1459
  'labelName': string;
@@ -1752,6 +1794,24 @@ export interface NegativeAttributeFilterNegativeAttributeFilter {
1752
1794
  'applyOnResult'?: boolean;
1753
1795
  'label': AfmIdentifier;
1754
1796
  }
1797
+ export interface ObjectReference {
1798
+ /**
1799
+ * Type of the referenced object.
1800
+ */
1801
+ 'type': ObjectReferenceTypeEnum;
1802
+ /**
1803
+ * Object identifier (e.g. widget ID, metric ID).
1804
+ */
1805
+ 'id': string;
1806
+ }
1807
+ export type ObjectReferenceTypeEnum = 'WIDGET' | 'METRIC' | 'ATTRIBUTE' | 'DASHBOARD';
1808
+ export interface ObjectReferenceGroup {
1809
+ 'context'?: ObjectReference;
1810
+ /**
1811
+ * Objects the user explicitly referenced within this context.
1812
+ */
1813
+ 'objects': Array<ObjectReference>;
1814
+ }
1755
1815
  /**
1756
1816
  * Configuration for OpenAI provider.
1757
1817
  */
@@ -2197,6 +2257,19 @@ export interface ResultSpec {
2197
2257
  'dimensions': Array<Dimension>;
2198
2258
  'totals'?: Array<Total>;
2199
2259
  }
2260
+ /**
2261
+ * Rich text widget displaying static content. Has no execution result.
2262
+ */
2263
+ export interface RichTextWidgetDescriptor extends WidgetDescriptor {
2264
+ /**
2265
+ * Widget object ID.
2266
+ */
2267
+ 'widgetId': string;
2268
+ /**
2269
+ * Widget title as displayed on the dashboard.
2270
+ */
2271
+ 'title': string;
2272
+ }
2200
2273
  /**
2201
2274
  * Question -> Use Case routing. May contain final answer is a special use case is not required.
2202
2275
  */
@@ -2550,6 +2623,23 @@ export interface Thought {
2550
2623
  */
2551
2624
  'text': string;
2552
2625
  }
2626
+ /**
2627
+ * Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
2628
+ */
2629
+ export interface ToolCallEventResult {
2630
+ /**
2631
+ * Name of the tool function that was called.
2632
+ */
2633
+ 'functionName': string;
2634
+ /**
2635
+ * JSON-encoded arguments passed to the tool function.
2636
+ */
2637
+ 'functionArguments': string;
2638
+ /**
2639
+ * Result returned by the tool function.
2640
+ */
2641
+ 'result': string;
2642
+ }
2553
2643
  /**
2554
2644
  * Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension`
2555
2645
  */
@@ -2679,6 +2769,12 @@ export interface TriggerQualityIssuesCalculationResponse {
2679
2769
  'status': TriggerQualityIssuesCalculationResponseStatusEnum;
2680
2770
  }
2681
2771
  export type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'DISABLED';
2772
+ /**
2773
+ * Ambient UI state: what the user is currently looking at (dashboard, visible widgets).
2774
+ */
2775
+ export interface UIContext {
2776
+ 'dashboard'?: DashboardContext;
2777
+ }
2682
2778
  export interface UpsertKnowledgeDocumentRequestDto {
2683
2779
  'filename': string;
2684
2780
  'content': string;
@@ -2693,10 +2789,15 @@ export interface UpsertKnowledgeDocumentResponseDto {
2693
2789
  'numChunks': number;
2694
2790
  }
2695
2791
  /**
2696
- * User context, which can affect the behavior of the underlying AI features.
2792
+ * User context with ambient UI state (view) and explicitly referenced objects.
2697
2793
  */
2698
2794
  export interface UserContext {
2699
- 'activeObject': ActiveObjectIdentification;
2795
+ 'view'?: UIContext;
2796
+ /**
2797
+ * Groups of explicitly referenced objects, each optionally scoped by a context (e.g. a dashboard context with widget references).
2798
+ */
2799
+ 'referencedObjects'?: Array<ObjectReferenceGroup>;
2800
+ 'activeObject'?: ActiveObjectIdentification;
2700
2801
  }
2701
2802
  export interface ValidateByItem {
2702
2803
  /**
@@ -2771,6 +2872,31 @@ export interface VisualizationConfig {
2771
2872
  'clustering'?: ClusteringConfig;
2772
2873
  'whatIf'?: WhatIfScenarioConfig;
2773
2874
  }
2875
+ /**
2876
+ * Visualization switcher widget allowing users to toggle between multiple visualizations.
2877
+ */
2878
+ export interface VisualizationSwitcherWidgetDescriptor extends WidgetDescriptor {
2879
+ /**
2880
+ * Widget object ID.
2881
+ */
2882
+ 'widgetId': string;
2883
+ /**
2884
+ * Widget title as displayed on the dashboard.
2885
+ */
2886
+ 'title': string;
2887
+ /**
2888
+ * Signed result ID for the currently active visualization\'s execution result.
2889
+ */
2890
+ 'resultId'?: string;
2891
+ /**
2892
+ * ID of the currently active visualization in the switcher.
2893
+ */
2894
+ 'activeVisualizationId': string;
2895
+ /**
2896
+ * IDs of all visualizations available in the switcher.
2897
+ */
2898
+ 'visualizationIds': Array<string>;
2899
+ }
2774
2900
  /**
2775
2901
  * Measure adjustments for this scenario
2776
2902
  */
@@ -2814,6 +2940,14 @@ export interface WhatIfScenarioItem {
2814
2940
  */
2815
2941
  'adjustments': Array<WhatIfMeasureAdjustmentConfig>;
2816
2942
  }
2943
+ /**
2944
+ * Descriptor for a widget on the dashboard.
2945
+ */
2946
+ export interface WidgetDescriptor {
2947
+ 'title': string;
2948
+ 'widgetId': string;
2949
+ 'widgetType': string;
2950
+ }
2817
2951
  export interface WorkflowDashboardSummaryRequestDto {
2818
2952
  'dashboardId': string;
2819
2953
  'keyMetricIds'?: Array<string>;
@@ -3728,7 +3862,7 @@ export declare function ActionsApiAxiosParamCreator_OutlierDetectionResult(works
3728
3862
  */
3729
3863
  export declare function ActionsApiAxiosParamCreator_PatchDocument(workspaceId: string, filename: string, patchKnowledgeDocumentRequestDto: PatchKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3730
3864
  /**
3731
- * Returns a list of available LLM Endpoints
3865
+ * Will be soon removed and replaced by LlmProvider-based resolution.
3732
3866
  * @summary Get Active LLM Endpoints for this workspace
3733
3867
  * @param {string} workspaceId Workspace identifier
3734
3868
  * @param {*} [options] Override http request option.
@@ -3747,19 +3881,30 @@ export declare function ActionsApiAxiosParamCreator_ResolveLlmEndpoints(workspac
3747
3881
  */
3748
3882
  export declare function ActionsApiAxiosParamCreator_RetrieveExecutionMetadata(workspaceId: string, resultId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3749
3883
  /**
3750
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
3884
+ * Gets a single execution result.
3751
3885
  * @summary Get a single execution result
3752
3886
  * @param {string} workspaceId Workspace identifier
3753
3887
  * @param {string} resultId Result ID
3754
- * @param {string} [xGDCCANCELTOKEN]
3755
3888
  * @param {Array<number>} [offset] Request page with these offsets. Format is offset&#x3D;1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
3756
3889
  * @param {Array<number>} [limit] Return only this number of items. Format is limit&#x3D;1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
3757
3890
  * @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
3891
+ * @param {string} [xGDCCANCELTOKEN]
3892
+ * @param {*} [options] Override http request option.
3893
+ * @param {Configuration} [configuration] Optional configuration.
3894
+ * @throws {RequiredError}
3895
+ */
3896
+ export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3897
+ /**
3898
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
3899
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
3900
+ * @param {string} workspaceId Workspace identifier
3901
+ * @param {string} resultId Result ID
3902
+ * @param {string} [xGDCCANCELTOKEN]
3758
3903
  * @param {*} [options] Override http request option.
3759
3904
  * @param {Configuration} [configuration] Optional configuration.
3760
3905
  * @throws {RequiredError}
3761
3906
  */
3762
- export declare function ActionsApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3907
+ export declare function ActionsApiAxiosParamCreator_RetrieveResultBinary(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3763
3908
  /**
3764
3909
  *
3765
3910
  * @param {string} workspaceId Workspace identifier
@@ -3828,7 +3973,7 @@ export declare function ActionsApiAxiosParamCreator_TriggerQualityIssuesCalculat
3828
3973
  */
3829
3974
  export declare function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId: string, upsertKnowledgeDocumentRequestDto: UpsertKnowledgeDocumentRequestDto, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3830
3975
  /**
3831
- * Validates LLM endpoint with provided parameters.
3976
+ * Will be soon removed and replaced by testLlmProvider.
3832
3977
  * @summary Validate LLM Endpoint
3833
3978
  * @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
3834
3979
  * @param {*} [options] Override http request option.
@@ -3837,7 +3982,7 @@ export declare function ActionsApiAxiosParamCreator_UpsertDocument(workspaceId:
3837
3982
  */
3838
3983
  export declare function ActionsApiAxiosParamCreator_ValidateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
3839
3984
  /**
3840
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
3985
+ * Will be soon removed and replaced by testLlmProviderById.
3841
3986
  * @summary Validate LLM Endpoint By Id
3842
3987
  * @param {string} llmEndpointId
3843
3988
  * @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
@@ -4270,7 +4415,7 @@ export declare function ActionsApi_OutlierDetectionResult(axios: AxiosInstance,
4270
4415
  */
4271
4416
  export declare function ActionsApi_PatchDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<KnowledgeDocumentMetadataDto>;
4272
4417
  /**
4273
- * Returns a list of available LLM Endpoints
4418
+ * Will be soon removed and replaced by LlmProvider-based resolution.
4274
4419
  * @summary Get Active LLM Endpoints for this workspace
4275
4420
  * @param {AxiosInstance} axios Axios instance.
4276
4421
  * @param {string} basePath Base path.
@@ -4292,7 +4437,7 @@ export declare function ActionsApi_ResolveLlmEndpoints(axios: AxiosInstance, bas
4292
4437
  */
4293
4438
  export declare function ActionsApi_RetrieveExecutionMetadata(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResultCacheMetadata>;
4294
4439
  /**
4295
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
4440
+ * Gets a single execution result.
4296
4441
  * @summary Get a single execution result
4297
4442
  * @param {AxiosInstance} axios Axios instance.
4298
4443
  * @param {string} basePath Base path.
@@ -4302,6 +4447,17 @@ export declare function ActionsApi_RetrieveExecutionMetadata(axios: AxiosInstanc
4302
4447
  * @throws {RequiredError}
4303
4448
  */
4304
4449
  export declare function ActionsApi_RetrieveResult(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ExecutionResult>;
4450
+ /**
4451
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
4452
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
4453
+ * @param {AxiosInstance} axios Axios instance.
4454
+ * @param {string} basePath Base path.
4455
+ * @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
4456
+ * @param {*} [options] Override http request option.
4457
+ * @param {Configuration} [configuration] Optional configuration.
4458
+ * @throws {RequiredError}
4459
+ */
4460
+ export declare function ActionsApi_RetrieveResultBinary(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
4305
4461
  /**
4306
4462
  *
4307
4463
  * @param {AxiosInstance} axios Axios instance.
@@ -4378,7 +4534,7 @@ export declare function ActionsApi_TriggerQualityIssuesCalculation(axios: AxiosI
4378
4534
  */
4379
4535
  export declare function ActionsApi_UpsertDocument(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
4380
4536
  /**
4381
- * Validates LLM endpoint with provided parameters.
4537
+ * Will be soon removed and replaced by testLlmProvider.
4382
4538
  * @summary Validate LLM Endpoint
4383
4539
  * @param {AxiosInstance} axios Axios instance.
4384
4540
  * @param {string} basePath Base path.
@@ -4389,7 +4545,7 @@ export declare function ActionsApi_UpsertDocument(axios: AxiosInstance, basePath
4389
4545
  */
4390
4546
  export declare function ActionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ValidateLLMEndpointResponse>;
4391
4547
  /**
4392
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
4548
+ * Will be soon removed and replaced by testLlmProviderById.
4393
4549
  * @summary Validate LLM Endpoint By Id
4394
4550
  * @param {AxiosInstance} axios Axios instance.
4395
4551
  * @param {string} basePath Base path.
@@ -4751,10 +4907,11 @@ export interface ActionsApiInterface {
4751
4907
  */
4752
4908
  patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
4753
4909
  /**
4754
- * Returns a list of available LLM Endpoints
4910
+ * Will be soon removed and replaced by LlmProvider-based resolution.
4755
4911
  * @summary Get Active LLM Endpoints for this workspace
4756
4912
  * @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
4757
4913
  * @param {*} [options] Override http request option.
4914
+ * @deprecated
4758
4915
  * @throws {RequiredError}
4759
4916
  * @memberof ActionsApiInterface
4760
4917
  */
@@ -4769,7 +4926,7 @@ export interface ActionsApiInterface {
4769
4926
  */
4770
4927
  retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
4771
4928
  /**
4772
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
4929
+ * Gets a single execution result.
4773
4930
  * @summary Get a single execution result
4774
4931
  * @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
4775
4932
  * @param {*} [options] Override http request option.
@@ -4777,6 +4934,15 @@ export interface ActionsApiInterface {
4777
4934
  * @memberof ActionsApiInterface
4778
4935
  */
4779
4936
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
4937
+ /**
4938
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
4939
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
4940
+ * @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
4941
+ * @param {*} [options] Override http request option.
4942
+ * @throws {RequiredError}
4943
+ * @memberof ActionsApiInterface
4944
+ */
4945
+ retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
4780
4946
  /**
4781
4947
  *
4782
4948
  * @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
@@ -4839,19 +5005,21 @@ export interface ActionsApiInterface {
4839
5005
  */
4840
5006
  upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
4841
5007
  /**
4842
- * Validates LLM endpoint with provided parameters.
5008
+ * Will be soon removed and replaced by testLlmProvider.
4843
5009
  * @summary Validate LLM Endpoint
4844
5010
  * @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
4845
5011
  * @param {*} [options] Override http request option.
5012
+ * @deprecated
4846
5013
  * @throws {RequiredError}
4847
5014
  * @memberof ActionsApiInterface
4848
5015
  */
4849
5016
  validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
4850
5017
  /**
4851
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
5018
+ * Will be soon removed and replaced by testLlmProviderById.
4852
5019
  * @summary Validate LLM Endpoint By Id
4853
5020
  * @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
4854
5021
  * @param {*} [options] Override http request option.
5022
+ * @deprecated
4855
5023
  * @throws {RequiredError}
4856
5024
  * @memberof ActionsApiInterface
4857
5025
  */
@@ -5792,12 +5960,6 @@ export interface ActionsApiRetrieveResultRequest {
5792
5960
  * @memberof ActionsApiRetrieveResult
5793
5961
  */
5794
5962
  readonly resultId: string;
5795
- /**
5796
- *
5797
- * @type {string}
5798
- * @memberof ActionsApiRetrieveResult
5799
- */
5800
- readonly xGDCCANCELTOKEN?: string;
5801
5963
  /**
5802
5964
  * Request page with these offsets. Format is offset&#x3D;1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
5803
5965
  * @type {Array<number>}
@@ -5816,6 +5978,37 @@ export interface ActionsApiRetrieveResultRequest {
5816
5978
  * @memberof ActionsApiRetrieveResult
5817
5979
  */
5818
5980
  readonly excludedTotalDimensions?: Array<string>;
5981
+ /**
5982
+ *
5983
+ * @type {string}
5984
+ * @memberof ActionsApiRetrieveResult
5985
+ */
5986
+ readonly xGDCCANCELTOKEN?: string;
5987
+ }
5988
+ /**
5989
+ * Request parameters for retrieveResultBinary operation in ActionsApi.
5990
+ * @export
5991
+ * @interface ActionsApiRetrieveResultBinaryRequest
5992
+ */
5993
+ export interface ActionsApiRetrieveResultBinaryRequest {
5994
+ /**
5995
+ * Workspace identifier
5996
+ * @type {string}
5997
+ * @memberof ActionsApiRetrieveResultBinary
5998
+ */
5999
+ readonly workspaceId: string;
6000
+ /**
6001
+ * Result ID
6002
+ * @type {string}
6003
+ * @memberof ActionsApiRetrieveResultBinary
6004
+ */
6005
+ readonly resultId: string;
6006
+ /**
6007
+ *
6008
+ * @type {string}
6009
+ * @memberof ActionsApiRetrieveResultBinary
6010
+ */
6011
+ readonly xGDCCANCELTOKEN?: string;
5819
6012
  }
5820
6013
  /**
5821
6014
  * Request parameters for searchKnowledge operation in ActionsApi.
@@ -6329,10 +6522,11 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
6329
6522
  */
6330
6523
  patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
6331
6524
  /**
6332
- * Returns a list of available LLM Endpoints
6525
+ * Will be soon removed and replaced by LlmProvider-based resolution.
6333
6526
  * @summary Get Active LLM Endpoints for this workspace
6334
6527
  * @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
6335
6528
  * @param {*} [options] Override http request option.
6529
+ * @deprecated
6336
6530
  * @throws {RequiredError}
6337
6531
  * @memberof ActionsApi
6338
6532
  */
@@ -6347,7 +6541,7 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
6347
6541
  */
6348
6542
  retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
6349
6543
  /**
6350
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
6544
+ * Gets a single execution result.
6351
6545
  * @summary Get a single execution result
6352
6546
  * @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
6353
6547
  * @param {*} [options] Override http request option.
@@ -6355,6 +6549,15 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
6355
6549
  * @memberof ActionsApi
6356
6550
  */
6357
6551
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
6552
+ /**
6553
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
6554
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
6555
+ * @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
6556
+ * @param {*} [options] Override http request option.
6557
+ * @throws {RequiredError}
6558
+ * @memberof ActionsApi
6559
+ */
6560
+ retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
6358
6561
  /**
6359
6562
  *
6360
6563
  * @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
@@ -6417,19 +6620,21 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
6417
6620
  */
6418
6621
  upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
6419
6622
  /**
6420
- * Validates LLM endpoint with provided parameters.
6623
+ * Will be soon removed and replaced by testLlmProvider.
6421
6624
  * @summary Validate LLM Endpoint
6422
6625
  * @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
6423
6626
  * @param {*} [options] Override http request option.
6627
+ * @deprecated
6424
6628
  * @throws {RequiredError}
6425
6629
  * @memberof ActionsApi
6426
6630
  */
6427
6631
  validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
6428
6632
  /**
6429
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
6633
+ * Will be soon removed and replaced by testLlmProviderById.
6430
6634
  * @summary Validate LLM Endpoint By Id
6431
6635
  * @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
6432
6636
  * @param {*} [options] Override http request option.
6637
+ * @deprecated
6433
6638
  * @throws {RequiredError}
6434
6639
  * @memberof ActionsApi
6435
6640
  */
@@ -6578,19 +6783,30 @@ export declare function ComputationApiAxiosParamCreator_OutlierDetectionResult(w
6578
6783
  */
6579
6784
  export declare function ComputationApiAxiosParamCreator_RetrieveExecutionMetadata(workspaceId: string, resultId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6580
6785
  /**
6581
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
6786
+ * Gets a single execution result.
6582
6787
  * @summary Get a single execution result
6583
6788
  * @param {string} workspaceId Workspace identifier
6584
6789
  * @param {string} resultId Result ID
6585
- * @param {string} [xGDCCANCELTOKEN]
6586
6790
  * @param {Array<number>} [offset] Request page with these offsets. Format is offset&#x3D;1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
6587
6791
  * @param {Array<number>} [limit] Return only this number of items. Format is limit&#x3D;1,2,3,... - one limit for each dimensions in ResultSpec from originating AFM.
6588
6792
  * @param {Array<string>} [excludedTotalDimensions] Identifiers of the dimensions where grand total data should not be returned for this request. A grand total will not be returned if all of its totalDimensions are in excludedTotalDimensions.
6793
+ * @param {string} [xGDCCANCELTOKEN]
6589
6794
  * @param {*} [options] Override http request option.
6590
6795
  * @param {Configuration} [configuration] Optional configuration.
6591
6796
  * @throws {RequiredError}
6592
6797
  */
6593
- export declare function ComputationApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6798
+ export declare function ComputationApiAxiosParamCreator_RetrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6799
+ /**
6800
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
6801
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
6802
+ * @param {string} workspaceId Workspace identifier
6803
+ * @param {string} resultId Result ID
6804
+ * @param {string} [xGDCCANCELTOKEN]
6805
+ * @param {*} [options] Override http request option.
6806
+ * @param {Configuration} [configuration] Optional configuration.
6807
+ * @throws {RequiredError}
6808
+ */
6809
+ export declare function ComputationApiAxiosParamCreator_RetrieveResultBinary(workspaceId: string, resultId: string, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
6594
6810
  /**
6595
6811
  * Each cancel token corresponds to one unique execution request for the same result id. If all cancel tokens for the same result id are applied, the execution for this result id is cancelled.
6596
6812
  * @summary Applies all the given cancel tokens.
@@ -6735,7 +6951,7 @@ export declare function ComputationApi_OutlierDetectionResult(axios: AxiosInstan
6735
6951
  */
6736
6952
  export declare function ComputationApi_RetrieveExecutionMetadata(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ResultCacheMetadata>;
6737
6953
  /**
6738
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
6954
+ * Gets a single execution result.
6739
6955
  * @summary Get a single execution result
6740
6956
  * @param {AxiosInstance} axios Axios instance.
6741
6957
  * @param {string} basePath Base path.
@@ -6745,6 +6961,17 @@ export declare function ComputationApi_RetrieveExecutionMetadata(axios: AxiosIns
6745
6961
  * @throws {RequiredError}
6746
6962
  */
6747
6963
  export declare function ComputationApi_RetrieveResult(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiRetrieveResultRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ExecutionResult>;
6964
+ /**
6965
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
6966
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
6967
+ * @param {AxiosInstance} axios Axios instance.
6968
+ * @param {string} basePath Base path.
6969
+ * @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
6970
+ * @param {*} [options] Override http request option.
6971
+ * @param {Configuration} [configuration] Optional configuration.
6972
+ * @throws {RequiredError}
6973
+ */
6974
+ export declare function ComputationApi_RetrieveResultBinary(axios: AxiosInstance, basePath: string, requestParameters: ComputationApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<File>;
6748
6975
  /**
6749
6976
  * ComputationApi - interface
6750
6977
  * @export
@@ -6869,7 +7096,7 @@ export interface ComputationApiInterface {
6869
7096
  */
6870
7097
  retrieveExecutionMetadata(requestParameters: ComputationApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
6871
7098
  /**
6872
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
7099
+ * Gets a single execution result.
6873
7100
  * @summary Get a single execution result
6874
7101
  * @param {ComputationApiRetrieveResultRequest} requestParameters Request parameters.
6875
7102
  * @param {*} [options] Override http request option.
@@ -6877,6 +7104,15 @@ export interface ComputationApiInterface {
6877
7104
  * @memberof ComputationApiInterface
6878
7105
  */
6879
7106
  retrieveResult(requestParameters: ComputationApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
7107
+ /**
7108
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
7109
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
7110
+ * @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
7111
+ * @param {*} [options] Override http request option.
7112
+ * @throws {RequiredError}
7113
+ * @memberof ComputationApiInterface
7114
+ */
7115
+ retrieveResultBinary(requestParameters: ComputationApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
6880
7116
  }
6881
7117
  /**
6882
7118
  * Request parameters for cancelExecutions operation in ComputationApi.
@@ -7215,12 +7451,6 @@ export interface ComputationApiRetrieveResultRequest {
7215
7451
  * @memberof ComputationApiRetrieveResult
7216
7452
  */
7217
7453
  readonly resultId: string;
7218
- /**
7219
- *
7220
- * @type {string}
7221
- * @memberof ComputationApiRetrieveResult
7222
- */
7223
- readonly xGDCCANCELTOKEN?: string;
7224
7454
  /**
7225
7455
  * Request page with these offsets. Format is offset&#x3D;1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
7226
7456
  * @type {Array<number>}
@@ -7239,6 +7469,37 @@ export interface ComputationApiRetrieveResultRequest {
7239
7469
  * @memberof ComputationApiRetrieveResult
7240
7470
  */
7241
7471
  readonly excludedTotalDimensions?: Array<string>;
7472
+ /**
7473
+ *
7474
+ * @type {string}
7475
+ * @memberof ComputationApiRetrieveResult
7476
+ */
7477
+ readonly xGDCCANCELTOKEN?: string;
7478
+ }
7479
+ /**
7480
+ * Request parameters for retrieveResultBinary operation in ComputationApi.
7481
+ * @export
7482
+ * @interface ComputationApiRetrieveResultBinaryRequest
7483
+ */
7484
+ export interface ComputationApiRetrieveResultBinaryRequest {
7485
+ /**
7486
+ * Workspace identifier
7487
+ * @type {string}
7488
+ * @memberof ComputationApiRetrieveResultBinary
7489
+ */
7490
+ readonly workspaceId: string;
7491
+ /**
7492
+ * Result ID
7493
+ * @type {string}
7494
+ * @memberof ComputationApiRetrieveResultBinary
7495
+ */
7496
+ readonly resultId: string;
7497
+ /**
7498
+ *
7499
+ * @type {string}
7500
+ * @memberof ComputationApiRetrieveResultBinary
7501
+ */
7502
+ readonly xGDCCANCELTOKEN?: string;
7242
7503
  }
7243
7504
  /**
7244
7505
  * ComputationApi - object-oriented interface
@@ -7365,7 +7626,7 @@ export declare class ComputationApi extends BaseAPI implements ComputationApiInt
7365
7626
  */
7366
7627
  retrieveExecutionMetadata(requestParameters: ComputationApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
7367
7628
  /**
7368
- * Gets a single execution result. Note that the Arrow File and Arrow Stream content types are currently in BETA.
7629
+ * Gets a single execution result.
7369
7630
  * @summary Get a single execution result
7370
7631
  * @param {ComputationApiRetrieveResultRequest} requestParameters Request parameters.
7371
7632
  * @param {*} [options] Override http request option.
@@ -7373,6 +7634,15 @@ export declare class ComputationApi extends BaseAPI implements ComputationApiInt
7373
7634
  * @memberof ComputationApi
7374
7635
  */
7375
7636
  retrieveResult(requestParameters: ComputationApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
7637
+ /**
7638
+ * (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
7639
+ * @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
7640
+ * @param {ComputationApiRetrieveResultBinaryRequest} requestParameters Request parameters.
7641
+ * @param {*} [options] Override http request option.
7642
+ * @throws {RequiredError}
7643
+ * @memberof ComputationApi
7644
+ */
7645
+ retrieveResultBinary(requestParameters: ComputationApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
7376
7646
  }
7377
7647
  /**
7378
7648
  * (BETA) Combines multiple use cases such as search, create visualizations, ...
@@ -7571,7 +7841,7 @@ export declare function SmartFunctionsApiAxiosParamCreator_ListLlmProviderModels
7571
7841
  */
7572
7842
  export declare function SmartFunctionsApiAxiosParamCreator_MemoryCreatedByUsers(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7573
7843
  /**
7574
- * Returns a list of available LLM Endpoints
7844
+ * Will be soon removed and replaced by LlmProvider-based resolution.
7575
7845
  * @summary Get Active LLM Endpoints for this workspace
7576
7846
  * @param {string} workspaceId Workspace identifier
7577
7847
  * @param {*} [options] Override http request option.
@@ -7626,7 +7896,7 @@ export declare function SmartFunctionsApiAxiosParamCreator_TrendingObjects(works
7626
7896
  */
7627
7897
  export declare function SmartFunctionsApiAxiosParamCreator_TriggerQualityIssuesCalculation(workspaceId: string, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7628
7898
  /**
7629
- * Validates LLM endpoint with provided parameters.
7899
+ * Will be soon removed and replaced by testLlmProvider.
7630
7900
  * @summary Validate LLM Endpoint
7631
7901
  * @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
7632
7902
  * @param {*} [options] Override http request option.
@@ -7635,7 +7905,7 @@ export declare function SmartFunctionsApiAxiosParamCreator_TriggerQualityIssuesC
7635
7905
  */
7636
7906
  export declare function SmartFunctionsApiAxiosParamCreator_ValidateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): Promise<RequestArgs>;
7637
7907
  /**
7638
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
7908
+ * Will be soon removed and replaced by testLlmProviderById.
7639
7909
  * @summary Validate LLM Endpoint By Id
7640
7910
  * @param {string} llmEndpointId
7641
7911
  * @param {ValidateLLMEndpointByIdRequest} [validateLLMEndpointByIdRequest]
@@ -7854,7 +8124,7 @@ export declare function SmartFunctionsApi_ListLlmProviderModelsById(axios: Axios
7854
8124
  */
7855
8125
  export declare function SmartFunctionsApi_MemoryCreatedByUsers(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<MemoryItemCreatedByUsers>;
7856
8126
  /**
7857
- * Returns a list of available LLM Endpoints
8127
+ * Will be soon removed and replaced by LlmProvider-based resolution.
7858
8128
  * @summary Get Active LLM Endpoints for this workspace
7859
8129
  * @param {AxiosInstance} axios Axios instance.
7860
8130
  * @param {string} basePath Base path.
@@ -7920,7 +8190,7 @@ export declare function SmartFunctionsApi_TrendingObjects(axios: AxiosInstance,
7920
8190
  */
7921
8191
  export declare function SmartFunctionsApi_TriggerQualityIssuesCalculation(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
7922
8192
  /**
7923
- * Validates LLM endpoint with provided parameters.
8193
+ * Will be soon removed and replaced by testLlmProvider.
7924
8194
  * @summary Validate LLM Endpoint
7925
8195
  * @param {AxiosInstance} axios Axios instance.
7926
8196
  * @param {string} basePath Base path.
@@ -7931,7 +8201,7 @@ export declare function SmartFunctionsApi_TriggerQualityIssuesCalculation(axios:
7931
8201
  */
7932
8202
  export declare function SmartFunctionsApi_ValidateLLMEndpoint(axios: AxiosInstance, basePath: string, requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig, configuration?: Configuration): AxiosPromise<ValidateLLMEndpointResponse>;
7933
8203
  /**
7934
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
8204
+ * Will be soon removed and replaced by testLlmProviderById.
7935
8205
  * @summary Validate LLM Endpoint By Id
7936
8206
  * @param {AxiosInstance} axios Axios instance.
7937
8207
  * @param {string} basePath Base path.
@@ -8119,10 +8389,11 @@ export interface SmartFunctionsApiInterface {
8119
8389
  */
8120
8390
  memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
8121
8391
  /**
8122
- * Returns a list of available LLM Endpoints
8392
+ * Will be soon removed and replaced by LlmProvider-based resolution.
8123
8393
  * @summary Get Active LLM Endpoints for this workspace
8124
8394
  * @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
8125
8395
  * @param {*} [options] Override http request option.
8396
+ * @deprecated
8126
8397
  * @throws {RequiredError}
8127
8398
  * @memberof SmartFunctionsApiInterface
8128
8399
  */
@@ -8173,19 +8444,21 @@ export interface SmartFunctionsApiInterface {
8173
8444
  */
8174
8445
  triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
8175
8446
  /**
8176
- * Validates LLM endpoint with provided parameters.
8447
+ * Will be soon removed and replaced by testLlmProvider.
8177
8448
  * @summary Validate LLM Endpoint
8178
8449
  * @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
8179
8450
  * @param {*} [options] Override http request option.
8451
+ * @deprecated
8180
8452
  * @throws {RequiredError}
8181
8453
  * @memberof SmartFunctionsApiInterface
8182
8454
  */
8183
8455
  validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
8184
8456
  /**
8185
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
8457
+ * Will be soon removed and replaced by testLlmProviderById.
8186
8458
  * @summary Validate LLM Endpoint By Id
8187
8459
  * @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
8188
8460
  * @param {*} [options] Override http request option.
8461
+ * @deprecated
8189
8462
  * @throws {RequiredError}
8190
8463
  * @memberof SmartFunctionsApiInterface
8191
8464
  */
@@ -8883,10 +9156,11 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
8883
9156
  */
8884
9157
  memoryCreatedByUsers(requestParameters: SmartFunctionsApiMemoryCreatedByUsersRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItemCreatedByUsers>;
8885
9158
  /**
8886
- * Returns a list of available LLM Endpoints
9159
+ * Will be soon removed and replaced by LlmProvider-based resolution.
8887
9160
  * @summary Get Active LLM Endpoints for this workspace
8888
9161
  * @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
8889
9162
  * @param {*} [options] Override http request option.
9163
+ * @deprecated
8890
9164
  * @throws {RequiredError}
8891
9165
  * @memberof SmartFunctionsApi
8892
9166
  */
@@ -8937,19 +9211,21 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
8937
9211
  */
8938
9212
  triggerQualityIssuesCalculation(requestParameters: SmartFunctionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<TriggerQualityIssuesCalculationResponse>;
8939
9213
  /**
8940
- * Validates LLM endpoint with provided parameters.
9214
+ * Will be soon removed and replaced by testLlmProvider.
8941
9215
  * @summary Validate LLM Endpoint
8942
9216
  * @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
8943
9217
  * @param {*} [options] Override http request option.
9218
+ * @deprecated
8944
9219
  * @throws {RequiredError}
8945
9220
  * @memberof SmartFunctionsApi
8946
9221
  */
8947
9222
  validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
8948
9223
  /**
8949
- * Validates existing LLM endpoint with provided parameters and updates it if they are valid.
9224
+ * Will be soon removed and replaced by testLlmProviderById.
8950
9225
  * @summary Validate LLM Endpoint By Id
8951
9226
  * @param {SmartFunctionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
8952
9227
  * @param {*} [options] Override http request option.
9228
+ * @deprecated
8953
9229
  * @throws {RequiredError}
8954
9230
  * @memberof SmartFunctionsApi
8955
9231
  */