@gooddata/api-client-tiger 10.33.0-alpha.82 → 10.33.0-alpha.9

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 (30) hide show
  1. package/esm/__version.d.ts +1 -1
  2. package/esm/__version.d.ts.map +1 -1
  3. package/esm/__version.js +1 -1
  4. package/esm/__version.js.map +1 -1
  5. package/esm/api-client-tiger.d.ts +1545 -1983
  6. package/esm/generated/afm-rest-api/api.d.ts +13 -376
  7. package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
  8. package/esm/generated/afm-rest-api/api.js +4 -305
  9. package/esm/generated/afm-rest-api/api.js.map +1 -1
  10. package/esm/generated/afm-rest-api/openapi-spec.json +2 -180
  11. package/esm/generated/automation-json-api/api.d.ts +1 -56
  12. package/esm/generated/automation-json-api/api.d.ts.map +1 -1
  13. package/esm/generated/automation-json-api/api.js +0 -17
  14. package/esm/generated/automation-json-api/api.js.map +1 -1
  15. package/esm/generated/automation-json-api/openapi-spec.json +1 -50
  16. package/esm/generated/export-json-api/api.d.ts +1 -56
  17. package/esm/generated/export-json-api/api.d.ts.map +1 -1
  18. package/esm/generated/export-json-api/api.js +0 -17
  19. package/esm/generated/export-json-api/api.js.map +1 -1
  20. package/esm/generated/export-json-api/openapi-spec.json +1 -50
  21. package/esm/generated/metadata-json-api/api.d.ts +1375 -1432
  22. package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
  23. package/esm/generated/metadata-json-api/api.js +46 -65
  24. package/esm/generated/metadata-json-api/api.js.map +1 -1
  25. package/esm/generated/metadata-json-api/openapi-spec.json +8420 -8471
  26. package/esm/index.d.ts +2 -2
  27. package/esm/index.d.ts.map +1 -1
  28. package/esm/index.js +1 -1
  29. package/esm/index.js.map +1 -1
  30. package/package.json +3 -3
@@ -803,55 +803,6 @@ export interface AttributeResultHeader {
803
803
  */
804
804
  primaryLabelValue: string;
805
805
  }
806
- /**
807
- * Bounding filter for this relative date filter. This can be used to limit the range of the relative date filter to a specific date range.
808
- * @export
809
- * @interface BoundedFilter
810
- */
811
- export interface BoundedFilter {
812
- /**
813
- *
814
- * @type {AfmObjectIdentifierDataset}
815
- * @memberof BoundedFilter
816
- */
817
- dataset: AfmObjectIdentifierDataset;
818
- /**
819
- * Date granularity specifying particular date attribute in given dimension.
820
- * @type {string}
821
- * @memberof BoundedFilter
822
- */
823
- granularity: BoundedFilterGranularityEnum;
824
- /**
825
- * Start of the filtering interval. Specified by number of periods (with respect to given granularity). Typically negative (historical time interval like -2 for \'2 days/weeks, ... ago\'). If null, then start of the range is unbounded.
826
- * @type {number}
827
- * @memberof BoundedFilter
828
- */
829
- from?: number | null;
830
- /**
831
- * End of the filtering interval. Specified by number of periods (with respect to given granularity). Value \'O\' is representing current time-interval (current day, week, ...). If null, then end of the range is unbounded.
832
- * @type {number}
833
- * @memberof BoundedFilter
834
- */
835
- to?: number | null;
836
- }
837
- export declare const BoundedFilterGranularityEnum: {
838
- readonly MINUTE: "MINUTE";
839
- readonly HOUR: "HOUR";
840
- readonly DAY: "DAY";
841
- readonly WEEK: "WEEK";
842
- readonly MONTH: "MONTH";
843
- readonly QUARTER: "QUARTER";
844
- readonly YEAR: "YEAR";
845
- readonly MINUTE_OF_HOUR: "MINUTE_OF_HOUR";
846
- readonly HOUR_OF_DAY: "HOUR_OF_DAY";
847
- readonly DAY_OF_WEEK: "DAY_OF_WEEK";
848
- readonly DAY_OF_MONTH: "DAY_OF_MONTH";
849
- readonly DAY_OF_YEAR: "DAY_OF_YEAR";
850
- readonly WEEK_OF_YEAR: "WEEK_OF_YEAR";
851
- readonly MONTH_OF_YEAR: "MONTH_OF_YEAR";
852
- readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
853
- };
854
- export type BoundedFilterGranularityEnum = typeof BoundedFilterGranularityEnum[keyof typeof BoundedFilterGranularityEnum];
855
806
  /**
856
807
  * List of chat history interactions.
857
808
  * @export
@@ -2846,7 +2797,7 @@ export declare const RankingFilterRankingFilterOperatorEnum: {
2846
2797
  };
2847
2798
  export type RankingFilterRankingFilterOperatorEnum = typeof RankingFilterRankingFilterOperatorEnum[keyof typeof RankingFilterRankingFilterOperatorEnum];
2848
2799
  /**
2849
- * A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension. The \'from\' and \'to\' properties mark the boundaries of the interval. If \'from\' is omitted, all values earlier than \'to\' are included. If \'to\' is omitted, all values later than \'from\' are included. It is not allowed to omit both.
2800
+ * A date filter specifying a time interval that is relative to the current date. For example, last week, next month, and so on. Field dataset is representing qualifier of date dimension.
2850
2801
  * @export
2851
2802
  * @interface RelativeDateFilter
2852
2803
  */
@@ -2894,12 +2845,6 @@ export interface RelativeDateFilterRelativeDateFilter {
2894
2845
  * @memberof RelativeDateFilterRelativeDateFilter
2895
2846
  */
2896
2847
  applyOnResult?: boolean;
2897
- /**
2898
- *
2899
- * @type {BoundedFilter}
2900
- * @memberof RelativeDateFilterRelativeDateFilter
2901
- */
2902
- boundedFilter?: BoundedFilter;
2903
2848
  /**
2904
2849
  *
2905
2850
  * @type {AfmObjectIdentifierDataset}
@@ -2925,38 +2870,6 @@ export declare const RelativeDateFilterRelativeDateFilterGranularityEnum: {
2925
2870
  readonly QUARTER_OF_YEAR: "QUARTER_OF_YEAR";
2926
2871
  };
2927
2872
  export type RelativeDateFilterRelativeDateFilterGranularityEnum = typeof RelativeDateFilterRelativeDateFilterGranularityEnum[keyof typeof RelativeDateFilterRelativeDateFilterGranularityEnum];
2928
- /**
2929
- *
2930
- * @export
2931
- * @interface ResolvedLlmEndpoint
2932
- */
2933
- export interface ResolvedLlmEndpoint {
2934
- /**
2935
- * Endpoint Id
2936
- * @type {string}
2937
- * @memberof ResolvedLlmEndpoint
2938
- */
2939
- id: string;
2940
- /**
2941
- * Endpoint Title
2942
- * @type {string}
2943
- * @memberof ResolvedLlmEndpoint
2944
- */
2945
- title: string;
2946
- }
2947
- /**
2948
- *
2949
- * @export
2950
- * @interface ResolvedLlmEndpoints
2951
- */
2952
- export interface ResolvedLlmEndpoints {
2953
- /**
2954
- *
2955
- * @type {Array<ResolvedLlmEndpoint>}
2956
- * @memberof ResolvedLlmEndpoints
2957
- */
2958
- data: Array<ResolvedLlmEndpoint>;
2959
- }
2960
2873
  /**
2961
2874
  * Object identifier.
2962
2875
  * @export
@@ -3656,62 +3569,6 @@ export interface ValidateByItem {
3656
3569
  */
3657
3570
  type: string;
3658
3571
  }
3659
- /**
3660
- *
3661
- * @export
3662
- * @interface ValidateLLMEndpointRequest
3663
- */
3664
- export interface ValidateLLMEndpointRequest {
3665
- /**
3666
- * Provider for the LLM endpoint validation
3667
- * @type {string}
3668
- * @memberof ValidateLLMEndpointRequest
3669
- */
3670
- provider: string;
3671
- /**
3672
- * Base URL for the LLM endpoint validation
3673
- * @type {string}
3674
- * @memberof ValidateLLMEndpointRequest
3675
- */
3676
- baseUrl?: string;
3677
- /**
3678
- * Token for the LLM endpoint validation
3679
- * @type {string}
3680
- * @memberof ValidateLLMEndpointRequest
3681
- */
3682
- token: string;
3683
- /**
3684
- * Organization name for the LLM endpoint validation
3685
- * @type {string}
3686
- * @memberof ValidateLLMEndpointRequest
3687
- */
3688
- llmOrganization?: string;
3689
- /**
3690
- * LLM model for the LLM endpoint validation
3691
- * @type {string}
3692
- * @memberof ValidateLLMEndpointRequest
3693
- */
3694
- llmModel?: string;
3695
- }
3696
- /**
3697
- *
3698
- * @export
3699
- * @interface ValidateLLMEndpointResponse
3700
- */
3701
- export interface ValidateLLMEndpointResponse {
3702
- /**
3703
- * Whether the LLM endpoint validation was successful
3704
- * @type {boolean}
3705
- * @memberof ValidateLLMEndpointResponse
3706
- */
3707
- success: boolean;
3708
- /**
3709
- * Additional message about the LLM endpoint validation
3710
- * @type {string}
3711
- * @memberof ValidateLLMEndpointResponse
3712
- */
3713
- message: string;
3714
- }
3715
3572
  /**
3716
3573
  * ActionsApi - axios parameter creator
3717
3574
  * @export
@@ -3860,11 +3717,11 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
3860
3717
  * @summary AFM explain resource.
3861
3718
  * @param {string} workspaceId Workspace identifier
3862
3719
  * @param {AfmExecution} afmExecution
3863
- * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
3720
+ * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
3864
3721
  * @param {*} [options] Override http request option.
3865
3722
  * @throws {RequiredError}
3866
3723
  */
3867
- 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", options?: AxiosRequestConfig) => Promise<RequestArgs>;
3724
+ explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig) => Promise<RequestArgs>;
3868
3725
  /**
3869
3726
  * (BETA) Computes forecasted data points from the provided execution result and parameters.
3870
3727
  * @summary (BETA) Smart functions - Forecast
@@ -3908,14 +3765,6 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
3908
3765
  * @throws {RequiredError}
3909
3766
  */
3910
3767
  keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3911
- /**
3912
- * Returns a list of available LLM Endpoints
3913
- * @summary Get Active LLM Endpoints for this workspace
3914
- * @param {string} workspaceId Workspace identifier
3915
- * @param {*} [options] Override http request option.
3916
- * @throws {RequiredError}
3917
- */
3918
- resolveLlmEndpoints: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3919
3768
  /**
3920
3769
  * The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
3921
3770
  * @summary Get a single execution result\'s metadata.
@@ -3938,14 +3787,6 @@ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration
3938
3787
  * @throws {RequiredError}
3939
3788
  */
3940
3789
  retrieveResult: (workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3941
- /**
3942
- * Validates LLM endpointw with provided parameters.
3943
- * @summary Validate LLM Endpoint
3944
- * @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
3945
- * @param {*} [options] Override http request option.
3946
- * @throws {RequiredError}
3947
- */
3948
- validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
3949
3790
  };
3950
3791
  /**
3951
3792
  * ActionsApi - functional programming interface
@@ -4095,11 +3936,11 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
4095
3936
  * @summary AFM explain resource.
4096
3937
  * @param {string} workspaceId Workspace identifier
4097
3938
  * @param {AfmExecution} afmExecution
4098
- * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
3939
+ * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
4099
3940
  * @param {*} [options] Override http request option.
4100
3941
  * @throws {RequiredError}
4101
3942
  */
4102
- 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", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
3943
+ explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
4103
3944
  /**
4104
3945
  * (BETA) Computes forecasted data points from the provided execution result and parameters.
4105
3946
  * @summary (BETA) Smart functions - Forecast
@@ -4143,14 +3984,6 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
4143
3984
  * @throws {RequiredError}
4144
3985
  */
4145
3986
  keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
4146
- /**
4147
- * Returns a list of available LLM Endpoints
4148
- * @summary Get Active LLM Endpoints for this workspace
4149
- * @param {string} workspaceId Workspace identifier
4150
- * @param {*} [options] Override http request option.
4151
- * @throws {RequiredError}
4152
- */
4153
- resolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResolvedLlmEndpoints>>;
4154
3987
  /**
4155
3988
  * The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
4156
3989
  * @summary Get a single execution result\'s metadata.
@@ -4173,14 +4006,6 @@ export declare const ActionsApiFp: (configuration?: Configuration) => {
4173
4006
  * @throws {RequiredError}
4174
4007
  */
4175
4008
  retrieveResult(workspaceId: string, resultId: string, offset?: Array<number>, limit?: Array<number>, excludedTotalDimensions?: Array<string>, xGDCCANCELTOKEN?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecutionResult>>;
4176
- /**
4177
- * Validates LLM endpointw with provided parameters.
4178
- * @summary Validate LLM Endpoint
4179
- * @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
4180
- * @param {*} [options] Override http request option.
4181
- * @throws {RequiredError}
4182
- */
4183
- validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
4184
4009
  };
4185
4010
  /**
4186
4011
  * ActionsApi - factory interface
@@ -4339,14 +4164,6 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
4339
4164
  * @throws {RequiredError}
4340
4165
  */
4341
4166
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
4342
- /**
4343
- * Returns a list of available LLM Endpoints
4344
- * @summary Get Active LLM Endpoints for this workspace
4345
- * @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
4346
- * @param {*} [options] Override http request option.
4347
- * @throws {RequiredError}
4348
- */
4349
- resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
4350
4167
  /**
4351
4168
  * The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
4352
4169
  * @summary Get a single execution result\'s metadata.
@@ -4363,14 +4180,6 @@ export declare const ActionsApiFactory: (configuration?: Configuration, basePath
4363
4180
  * @throws {RequiredError}
4364
4181
  */
4365
4182
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
4366
- /**
4367
- * Validates LLM endpointw with provided parameters.
4368
- * @summary Validate LLM Endpoint
4369
- * @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
4370
- * @param {*} [options] Override http request option.
4371
- * @throws {RequiredError}
4372
- */
4373
- validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
4374
4183
  };
4375
4184
  /**
4376
4185
  * ActionsApi - interface
@@ -4549,15 +4358,6 @@ export interface ActionsApiInterface {
4549
4358
  * @memberof ActionsApiInterface
4550
4359
  */
4551
4360
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
4552
- /**
4553
- * Returns a list of available LLM Endpoints
4554
- * @summary Get Active LLM Endpoints for this workspace
4555
- * @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
4556
- * @param {*} [options] Override http request option.
4557
- * @throws {RequiredError}
4558
- * @memberof ActionsApiInterface
4559
- */
4560
- resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
4561
4361
  /**
4562
4362
  * The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
4563
4363
  * @summary Get a single execution result\'s metadata.
@@ -4576,15 +4376,6 @@ export interface ActionsApiInterface {
4576
4376
  * @memberof ActionsApiInterface
4577
4377
  */
4578
4378
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
4579
- /**
4580
- * Validates LLM endpointw with provided parameters.
4581
- * @summary Validate LLM Endpoint
4582
- * @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
4583
- * @param {*} [options] Override http request option.
4584
- * @throws {RequiredError}
4585
- * @memberof ActionsApiInterface
4586
- */
4587
- validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
4588
4379
  }
4589
4380
  /**
4590
4381
  * Request parameters for aiChat operation in ActionsApi.
@@ -4944,10 +4735,10 @@ export interface ActionsApiExplainAFMRequest {
4944
4735
  readonly afmExecution: AfmExecution;
4945
4736
  /**
4946
4737
  * Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
4947
- * @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'}
4738
+ * @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'}
4948
4739
  * @memberof ActionsApiExplainAFM
4949
4740
  */
4950
- readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL";
4741
+ readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS";
4951
4742
  }
4952
4743
  /**
4953
4744
  * Request parameters for forecast operation in ActionsApi.
@@ -5067,19 +4858,6 @@ export interface ActionsApiKeyDriverAnalysisResultRequest {
5067
4858
  */
5068
4859
  readonly limit?: number;
5069
4860
  }
5070
- /**
5071
- * Request parameters for resolveLlmEndpoints operation in ActionsApi.
5072
- * @export
5073
- * @interface ActionsApiResolveLlmEndpointsRequest
5074
- */
5075
- export interface ActionsApiResolveLlmEndpointsRequest {
5076
- /**
5077
- * Workspace identifier
5078
- * @type {string}
5079
- * @memberof ActionsApiResolveLlmEndpoints
5080
- */
5081
- readonly workspaceId: string;
5082
- }
5083
4861
  /**
5084
4862
  * Request parameters for retrieveExecutionMetadata operation in ActionsApi.
5085
4863
  * @export
@@ -5142,19 +4920,6 @@ export interface ActionsApiRetrieveResultRequest {
5142
4920
  */
5143
4921
  readonly xGDCCANCELTOKEN?: string;
5144
4922
  }
5145
- /**
5146
- * Request parameters for validateLLMEndpoint operation in ActionsApi.
5147
- * @export
5148
- * @interface ActionsApiValidateLLMEndpointRequest
5149
- */
5150
- export interface ActionsApiValidateLLMEndpointRequest {
5151
- /**
5152
- *
5153
- * @type {ValidateLLMEndpointRequest}
5154
- * @memberof ActionsApiValidateLLMEndpoint
5155
- */
5156
- readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
5157
- }
5158
4923
  /**
5159
4924
  * ActionsApi - object-oriented interface
5160
4925
  * @export
@@ -5333,15 +5098,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
5333
5098
  * @memberof ActionsApi
5334
5099
  */
5335
5100
  keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<KeyDriversResult, any>>;
5336
- /**
5337
- * Returns a list of available LLM Endpoints
5338
- * @summary Get Active LLM Endpoints for this workspace
5339
- * @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
5340
- * @param {*} [options] Override http request option.
5341
- * @throws {RequiredError}
5342
- * @memberof ActionsApi
5343
- */
5344
- resolveLlmEndpoints(requestParameters: ActionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResolvedLlmEndpoints, any>>;
5345
5101
  /**
5346
5102
  * The resource provides execution result\'s metadata as AFM and resultSpec used in execution request and an executionResponse
5347
5103
  * @summary Get a single execution result\'s metadata.
@@ -5360,15 +5116,6 @@ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
5360
5116
  * @memberof ActionsApi
5361
5117
  */
5362
5118
  retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecutionResult, any>>;
5363
- /**
5364
- * Validates LLM endpointw with provided parameters.
5365
- * @summary Validate LLM Endpoint
5366
- * @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
5367
- * @param {*} [options] Override http request option.
5368
- * @throws {RequiredError}
5369
- * @memberof ActionsApi
5370
- */
5371
- validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
5372
5119
  }
5373
5120
  /**
5374
5121
  * ComputationApi - axios parameter creator
@@ -5421,11 +5168,11 @@ export declare const ComputationApiAxiosParamCreator: (configuration?: Configura
5421
5168
  * @summary AFM explain resource.
5422
5169
  * @param {string} workspaceId Workspace identifier
5423
5170
  * @param {AfmExecution} afmExecution
5424
- * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
5171
+ * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
5425
5172
  * @param {*} [options] Override http request option.
5426
5173
  * @throws {RequiredError}
5427
5174
  */
5428
- 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", options?: AxiosRequestConfig) => Promise<RequestArgs>;
5175
+ explainAFM: (workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig) => Promise<RequestArgs>;
5429
5176
  /**
5430
5177
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5431
5178
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5521,11 +5268,11 @@ export declare const ComputationApiFp: (configuration?: Configuration) => {
5521
5268
  * @summary AFM explain resource.
5522
5269
  * @param {string} workspaceId Workspace identifier
5523
5270
  * @param {AfmExecution} afmExecution
5524
- * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
5271
+ * @param {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'} [explainType] Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
5525
5272
  * @param {*} [options] Override http request option.
5526
5273
  * @throws {RequiredError}
5527
5274
  */
5528
- 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", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
5275
+ explainAFM(workspaceId: string, afmExecution: AfmExecution, explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS", options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
5529
5276
  /**
5530
5277
  * (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
5531
5278
  * @summary (EXPERIMENTAL) Compute key driver analysis
@@ -5862,10 +5609,10 @@ export interface ComputationApiExplainAFMRequest {
5862
5609
  readonly afmExecution: AfmExecution;
5863
5610
  /**
5864
5611
  * Requested explain type. If not specified all types are bundled in a ZIP archive. &#x60;MAQL&#x60; - MAQL Abstract Syntax Tree, execution dimensions and related info &#x60;GRPC_MODEL&#x60; - Datasets used in execution &#x60;GRPC_MODEL_SVG&#x60; - Generated SVG image of the datasets &#x60;WDF&#x60; - Workspace data filters in execution workspace context &#x60;QT&#x60; - Query Tree, created from MAQL AST using Logical Data Model, contains all information needed to generate SQL &#x60;QT_SVG&#x60; - Generated SVG image of the Query Tree &#x60;OPT_QT&#x60; - Optimized Query Tree &#x60;OPT_QT_SVG&#x60; - Generated SVG image of the Optimized Query Tree &#x60;SQL&#x60; - Final SQL to be executed &#x60;SETTINGS&#x60; - Settings used to execute explain request
5865
- * @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL'}
5612
+ * @type {'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS'}
5866
5613
  * @memberof ComputationApiExplainAFM
5867
5614
  */
5868
- readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS" | "COMPRESSED_SQL";
5615
+ readonly explainType?: "MAQL" | "GRPC_MODEL" | "GRPC_MODEL_SVG" | "WDF" | "QT" | "QT_SVG" | "OPT_QT" | "OPT_QT_SVG" | "SQL" | "SETTINGS";
5869
5616
  }
5870
5617
  /**
5871
5618
  * Request parameters for keyDriverAnalysis operation in ComputationApi.
@@ -6189,22 +5936,6 @@ export declare const SmartFunctionsApiAxiosParamCreator: (configuration?: Config
6189
5936
  * @throws {RequiredError}
6190
5937
  */
6191
5938
  forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6192
- /**
6193
- * Returns a list of available LLM Endpoints
6194
- * @summary Get Active LLM Endpoints for this workspace
6195
- * @param {string} workspaceId Workspace identifier
6196
- * @param {*} [options] Override http request option.
6197
- * @throws {RequiredError}
6198
- */
6199
- resolveLlmEndpoints: (workspaceId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6200
- /**
6201
- * Validates LLM endpointw with provided parameters.
6202
- * @summary Validate LLM Endpoint
6203
- * @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
6204
- * @param {*} [options] Override http request option.
6205
- * @throws {RequiredError}
6206
- */
6207
- validateLLMEndpoint: (validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
6208
5939
  };
6209
5940
  /**
6210
5941
  * SmartFunctionsApi - functional programming interface
@@ -6321,22 +6052,6 @@ export declare const SmartFunctionsApiFp: (configuration?: Configuration) => {
6321
6052
  * @throws {RequiredError}
6322
6053
  */
6323
6054
  forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
6324
- /**
6325
- * Returns a list of available LLM Endpoints
6326
- * @summary Get Active LLM Endpoints for this workspace
6327
- * @param {string} workspaceId Workspace identifier
6328
- * @param {*} [options] Override http request option.
6329
- * @throws {RequiredError}
6330
- */
6331
- resolveLlmEndpoints(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ResolvedLlmEndpoints>>;
6332
- /**
6333
- * Validates LLM endpointw with provided parameters.
6334
- * @summary Validate LLM Endpoint
6335
- * @param {ValidateLLMEndpointRequest} validateLLMEndpointRequest
6336
- * @param {*} [options] Override http request option.
6337
- * @throws {RequiredError}
6338
- */
6339
- validateLLMEndpoint(validateLLMEndpointRequest: ValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateLLMEndpointResponse>>;
6340
6055
  };
6341
6056
  /**
6342
6057
  * SmartFunctionsApi - factory interface
@@ -6431,22 +6146,6 @@ export declare const SmartFunctionsApiFactory: (configuration?: Configuration, b
6431
6146
  * @throws {RequiredError}
6432
6147
  */
6433
6148
  forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
6434
- /**
6435
- * Returns a list of available LLM Endpoints
6436
- * @summary Get Active LLM Endpoints for this workspace
6437
- * @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
6438
- * @param {*} [options] Override http request option.
6439
- * @throws {RequiredError}
6440
- */
6441
- resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
6442
- /**
6443
- * Validates LLM endpointw with provided parameters.
6444
- * @summary Validate LLM Endpoint
6445
- * @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
6446
- * @param {*} [options] Override http request option.
6447
- * @throws {RequiredError}
6448
- */
6449
- validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
6450
6149
  };
6451
6150
  /**
6452
6151
  * SmartFunctionsApi - interface
@@ -6553,24 +6252,6 @@ export interface SmartFunctionsApiInterface {
6553
6252
  * @memberof SmartFunctionsApiInterface
6554
6253
  */
6555
6254
  forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
6556
- /**
6557
- * Returns a list of available LLM Endpoints
6558
- * @summary Get Active LLM Endpoints for this workspace
6559
- * @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
6560
- * @param {*} [options] Override http request option.
6561
- * @throws {RequiredError}
6562
- * @memberof SmartFunctionsApiInterface
6563
- */
6564
- resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<ResolvedLlmEndpoints>;
6565
- /**
6566
- * Validates LLM endpointw with provided parameters.
6567
- * @summary Validate LLM Endpoint
6568
- * @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
6569
- * @param {*} [options] Override http request option.
6570
- * @throws {RequiredError}
6571
- * @memberof SmartFunctionsApiInterface
6572
- */
6573
- validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
6574
6255
  }
6575
6256
  /**
6576
6257
  * Request parameters for aiChat operation in SmartFunctionsApi.
@@ -6847,32 +6528,6 @@ export interface SmartFunctionsApiForecastResultRequest {
6847
6528
  */
6848
6529
  readonly limit?: number;
6849
6530
  }
6850
- /**
6851
- * Request parameters for resolveLlmEndpoints operation in SmartFunctionsApi.
6852
- * @export
6853
- * @interface SmartFunctionsApiResolveLlmEndpointsRequest
6854
- */
6855
- export interface SmartFunctionsApiResolveLlmEndpointsRequest {
6856
- /**
6857
- * Workspace identifier
6858
- * @type {string}
6859
- * @memberof SmartFunctionsApiResolveLlmEndpoints
6860
- */
6861
- readonly workspaceId: string;
6862
- }
6863
- /**
6864
- * Request parameters for validateLLMEndpoint operation in SmartFunctionsApi.
6865
- * @export
6866
- * @interface SmartFunctionsApiValidateLLMEndpointRequest
6867
- */
6868
- export interface SmartFunctionsApiValidateLLMEndpointRequest {
6869
- /**
6870
- *
6871
- * @type {ValidateLLMEndpointRequest}
6872
- * @memberof SmartFunctionsApiValidateLLMEndpoint
6873
- */
6874
- readonly validateLLMEndpointRequest: ValidateLLMEndpointRequest;
6875
- }
6876
6531
  /**
6877
6532
  * SmartFunctionsApi - object-oriented interface
6878
6533
  * @export
@@ -6979,23 +6634,5 @@ export declare class SmartFunctionsApi extends BaseAPI implements SmartFunctions
6979
6634
  * @memberof SmartFunctionsApi
6980
6635
  */
6981
6636
  forecastResult(requestParameters: SmartFunctionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ForecastResult, any>>;
6982
- /**
6983
- * Returns a list of available LLM Endpoints
6984
- * @summary Get Active LLM Endpoints for this workspace
6985
- * @param {SmartFunctionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
6986
- * @param {*} [options] Override http request option.
6987
- * @throws {RequiredError}
6988
- * @memberof SmartFunctionsApi
6989
- */
6990
- resolveLlmEndpoints(requestParameters: SmartFunctionsApiResolveLlmEndpointsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ResolvedLlmEndpoints, any>>;
6991
- /**
6992
- * Validates LLM endpointw with provided parameters.
6993
- * @summary Validate LLM Endpoint
6994
- * @param {SmartFunctionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
6995
- * @param {*} [options] Override http request option.
6996
- * @throws {RequiredError}
6997
- * @memberof SmartFunctionsApi
6998
- */
6999
- validateLLMEndpoint(requestParameters: SmartFunctionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateLLMEndpointResponse, any>>;
7000
6637
  }
7001
6638
  //# sourceMappingURL=api.d.ts.map