@gooddata/api-client-tiger 11.41.0-alpha.1 → 11.41.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.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +652 -106
- package/esm/endpoints/genAI/index.d.ts +2 -2
- package/esm/endpoints/genAI/index.js +3 -3
- package/esm/genAI.d.ts +3 -1
- package/esm/genAI.js +21 -5
- package/esm/generated/afm-rest-api/api.d.ts +334 -0
- package/esm/generated/afm-rest-api/api.js +347 -0
- package/esm/generated/ai-json-api/api.d.ts +243 -2
- package/esm/generated/ai-json-api/api.js +235 -2
- package/esm/generated/auth-json-api/api.d.ts +0 -511
- package/esm/generated/auth-json-api/api.js +0 -650
- package/esm/generated/automation-json-api/api.d.ts +4 -0
- package/esm/generated/metadata-json-api/api.d.ts +103 -92
- package/esm/index.d.ts +3 -3
- package/esm/tsdoc-metadata.json +1 -1
- package/package.json +4 -4
|
@@ -1768,6 +1768,26 @@ export declare interface ActionsApiCancelExecutionsRequest {
|
|
|
1768
1768
|
readonly afmCancelTokens: AfmCancelTokens;
|
|
1769
1769
|
}
|
|
1770
1770
|
|
|
1771
|
+
/**
|
|
1772
|
+
* Request parameters for cancelWorkflow1 operation in ActionsApi.
|
|
1773
|
+
* @export
|
|
1774
|
+
* @interface ActionsApiCancelWorkflow1Request
|
|
1775
|
+
*/
|
|
1776
|
+
export declare interface ActionsApiCancelWorkflow1Request {
|
|
1777
|
+
/**
|
|
1778
|
+
* Workspace identifier
|
|
1779
|
+
* @type {string}
|
|
1780
|
+
* @memberof ActionsApiCancelWorkflow1
|
|
1781
|
+
*/
|
|
1782
|
+
readonly workspaceId: string;
|
|
1783
|
+
/**
|
|
1784
|
+
*
|
|
1785
|
+
* @type {string}
|
|
1786
|
+
* @memberof ActionsApiCancelWorkflow1
|
|
1787
|
+
*/
|
|
1788
|
+
readonly runId: string;
|
|
1789
|
+
}
|
|
1790
|
+
|
|
1771
1791
|
/**
|
|
1772
1792
|
* Request parameters for cancelWorkflow operation in ActionsApi.
|
|
1773
1793
|
* @export
|
|
@@ -2306,6 +2326,26 @@ export declare interface ActionsApiForecastResultRequest {
|
|
|
2306
2326
|
readonly limit?: number;
|
|
2307
2327
|
}
|
|
2308
2328
|
|
|
2329
|
+
/**
|
|
2330
|
+
* Request parameters for generateDashboardSummary1 operation in ActionsApi.
|
|
2331
|
+
* @export
|
|
2332
|
+
* @interface ActionsApiGenerateDashboardSummary1Request
|
|
2333
|
+
*/
|
|
2334
|
+
export declare interface ActionsApiGenerateDashboardSummary1Request {
|
|
2335
|
+
/**
|
|
2336
|
+
* Workspace identifier
|
|
2337
|
+
* @type {string}
|
|
2338
|
+
* @memberof ActionsApiGenerateDashboardSummary1
|
|
2339
|
+
*/
|
|
2340
|
+
readonly workspaceId: string;
|
|
2341
|
+
/**
|
|
2342
|
+
*
|
|
2343
|
+
* @type {DashboardSummaryRequestDto}
|
|
2344
|
+
* @memberof ActionsApiGenerateDashboardSummary1
|
|
2345
|
+
*/
|
|
2346
|
+
readonly dashboardSummaryRequestDto: DashboardSummaryRequestDto;
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2309
2349
|
/**
|
|
2310
2350
|
* Request parameters for generateDashboardSummary operation in ActionsApi.
|
|
2311
2351
|
* @export
|
|
@@ -2346,6 +2386,26 @@ export declare interface ActionsApiGenerateDescriptionRequest {
|
|
|
2346
2386
|
readonly generateDescriptionRequest: GenerateDescriptionRequest;
|
|
2347
2387
|
}
|
|
2348
2388
|
|
|
2389
|
+
/**
|
|
2390
|
+
* Request parameters for generateKnowledgeRecommendations operation in ActionsApi.
|
|
2391
|
+
* @export
|
|
2392
|
+
* @interface ActionsApiGenerateKnowledgeRecommendationsRequest
|
|
2393
|
+
*/
|
|
2394
|
+
export declare interface ActionsApiGenerateKnowledgeRecommendationsRequest {
|
|
2395
|
+
/**
|
|
2396
|
+
* Workspace identifier
|
|
2397
|
+
* @type {string}
|
|
2398
|
+
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
2399
|
+
*/
|
|
2400
|
+
readonly workspaceId: string;
|
|
2401
|
+
/**
|
|
2402
|
+
*
|
|
2403
|
+
* @type {KnowledgeRecommendationsRequestDto}
|
|
2404
|
+
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
2405
|
+
*/
|
|
2406
|
+
readonly knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto;
|
|
2407
|
+
}
|
|
2408
|
+
|
|
2349
2409
|
/**
|
|
2350
2410
|
* Request parameters for generateLogicalModel operation in ActionsApi.
|
|
2351
2411
|
* @export
|
|
@@ -2464,6 +2524,26 @@ export declare interface ActionsApiGetTranslationTagsRequest {
|
|
|
2464
2524
|
readonly workspaceId: string;
|
|
2465
2525
|
}
|
|
2466
2526
|
|
|
2527
|
+
/**
|
|
2528
|
+
* Request parameters for getWorkflowStatus1 operation in ActionsApi.
|
|
2529
|
+
* @export
|
|
2530
|
+
* @interface ActionsApiGetWorkflowStatus1Request
|
|
2531
|
+
*/
|
|
2532
|
+
export declare interface ActionsApiGetWorkflowStatus1Request {
|
|
2533
|
+
/**
|
|
2534
|
+
* Workspace identifier
|
|
2535
|
+
* @type {string}
|
|
2536
|
+
* @memberof ActionsApiGetWorkflowStatus1
|
|
2537
|
+
*/
|
|
2538
|
+
readonly workspaceId: string;
|
|
2539
|
+
/**
|
|
2540
|
+
*
|
|
2541
|
+
* @type {string}
|
|
2542
|
+
* @memberof ActionsApiGetWorkflowStatus1
|
|
2543
|
+
*/
|
|
2544
|
+
readonly runId: string;
|
|
2545
|
+
}
|
|
2546
|
+
|
|
2467
2547
|
/**
|
|
2468
2548
|
* Request parameters for getWorkflowStatus operation in ActionsApi.
|
|
2469
2549
|
* @export
|
|
@@ -4060,6 +4140,32 @@ export declare interface ActionsApiUnsubscribeWorkspaceAutomationsRequest {
|
|
|
4060
4140
|
readonly workspaceId: string;
|
|
4061
4141
|
}
|
|
4062
4142
|
|
|
4143
|
+
/**
|
|
4144
|
+
* Request parameters for userFeedback operation in ActionsApi.
|
|
4145
|
+
* @export
|
|
4146
|
+
* @interface ActionsApiUserFeedbackRequest
|
|
4147
|
+
*/
|
|
4148
|
+
export declare interface ActionsApiUserFeedbackRequest {
|
|
4149
|
+
/**
|
|
4150
|
+
* Workspace identifier
|
|
4151
|
+
* @type {string}
|
|
4152
|
+
* @memberof ActionsApiUserFeedback
|
|
4153
|
+
*/
|
|
4154
|
+
readonly workspaceId: string;
|
|
4155
|
+
/**
|
|
4156
|
+
*
|
|
4157
|
+
* @type {string}
|
|
4158
|
+
* @memberof ActionsApiUserFeedback
|
|
4159
|
+
*/
|
|
4160
|
+
readonly runId: string;
|
|
4161
|
+
/**
|
|
4162
|
+
*
|
|
4163
|
+
* @type {FeedbackRequestDto}
|
|
4164
|
+
* @memberof ActionsApiUserFeedback
|
|
4165
|
+
*/
|
|
4166
|
+
readonly feedbackRequestDto: FeedbackRequestDto;
|
|
4167
|
+
}
|
|
4168
|
+
|
|
4063
4169
|
/**
|
|
4064
4170
|
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
4065
4171
|
* @export
|
|
@@ -5478,6 +5584,16 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5478
5584
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5479
5585
|
[key: string]: string;
|
|
5480
5586
|
}>;
|
|
5587
|
+
/**
|
|
5588
|
+
*
|
|
5589
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
5590
|
+
* @param {*} [options] Override http request option.
|
|
5591
|
+
* @throws {RequiredError}
|
|
5592
|
+
* @memberof ActionsApi
|
|
5593
|
+
*/
|
|
5594
|
+
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5595
|
+
[key: string]: string;
|
|
5596
|
+
}>;
|
|
5481
5597
|
/**
|
|
5482
5598
|
* Computes change analysis for the provided execution definition.
|
|
5483
5599
|
* @summary Compute change analysis
|
|
@@ -5603,6 +5719,14 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5603
5719
|
* @memberof ActionsApi
|
|
5604
5720
|
*/
|
|
5605
5721
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
5722
|
+
/**
|
|
5723
|
+
*
|
|
5724
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
5725
|
+
* @param {*} [options] Override http request option.
|
|
5726
|
+
* @throws {RequiredError}
|
|
5727
|
+
* @memberof ActionsApi
|
|
5728
|
+
*/
|
|
5729
|
+
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
5606
5730
|
/**
|
|
5607
5731
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5608
5732
|
* @summary Generate Description for Analytics Object
|
|
@@ -5612,6 +5736,14 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5612
5736
|
* @memberof ActionsApi
|
|
5613
5737
|
*/
|
|
5614
5738
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
5739
|
+
/**
|
|
5740
|
+
*
|
|
5741
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
5742
|
+
* @param {*} [options] Override http request option.
|
|
5743
|
+
* @throws {RequiredError}
|
|
5744
|
+
* @memberof ActionsApi
|
|
5745
|
+
*/
|
|
5746
|
+
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
5615
5747
|
/**
|
|
5616
5748
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5617
5749
|
* @summary Generate Title for Analytics Object
|
|
@@ -5647,6 +5779,14 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5647
5779
|
* @memberof ActionsApi
|
|
5648
5780
|
*/
|
|
5649
5781
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
5782
|
+
/**
|
|
5783
|
+
*
|
|
5784
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
5785
|
+
* @param {*} [options] Override http request option.
|
|
5786
|
+
* @throws {RequiredError}
|
|
5787
|
+
* @memberof ActionsApi
|
|
5788
|
+
*/
|
|
5789
|
+
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
5650
5790
|
/**
|
|
5651
5791
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5652
5792
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5801,6 +5941,16 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5801
5941
|
* @memberof ActionsApi
|
|
5802
5942
|
*/
|
|
5803
5943
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
5944
|
+
/**
|
|
5945
|
+
*
|
|
5946
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
5947
|
+
* @param {*} [options] Override http request option.
|
|
5948
|
+
* @throws {RequiredError}
|
|
5949
|
+
* @memberof ActionsApi
|
|
5950
|
+
*/
|
|
5951
|
+
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5952
|
+
[key: string]: string;
|
|
5953
|
+
}>;
|
|
5804
5954
|
/**
|
|
5805
5955
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5806
5956
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -5932,6 +6082,16 @@ export declare interface AfmActionsApiInterface {
|
|
|
5932
6082
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5933
6083
|
[key: string]: string;
|
|
5934
6084
|
}>;
|
|
6085
|
+
/**
|
|
6086
|
+
*
|
|
6087
|
+
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
6088
|
+
* @param {*} [options] Override http request option.
|
|
6089
|
+
* @throws {RequiredError}
|
|
6090
|
+
* @memberof ActionsApiInterface
|
|
6091
|
+
*/
|
|
6092
|
+
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
6093
|
+
[key: string]: string;
|
|
6094
|
+
}>;
|
|
5935
6095
|
/**
|
|
5936
6096
|
* Computes change analysis for the provided execution definition.
|
|
5937
6097
|
* @summary Compute change analysis
|
|
@@ -6057,6 +6217,14 @@ export declare interface AfmActionsApiInterface {
|
|
|
6057
6217
|
* @memberof ActionsApiInterface
|
|
6058
6218
|
*/
|
|
6059
6219
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
6220
|
+
/**
|
|
6221
|
+
*
|
|
6222
|
+
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
6223
|
+
* @param {*} [options] Override http request option.
|
|
6224
|
+
* @throws {RequiredError}
|
|
6225
|
+
* @memberof ActionsApiInterface
|
|
6226
|
+
*/
|
|
6227
|
+
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
6060
6228
|
/**
|
|
6061
6229
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
6062
6230
|
* @summary Generate Description for Analytics Object
|
|
@@ -6066,6 +6234,14 @@ export declare interface AfmActionsApiInterface {
|
|
|
6066
6234
|
* @memberof ActionsApiInterface
|
|
6067
6235
|
*/
|
|
6068
6236
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
6237
|
+
/**
|
|
6238
|
+
*
|
|
6239
|
+
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
6240
|
+
* @param {*} [options] Override http request option.
|
|
6241
|
+
* @throws {RequiredError}
|
|
6242
|
+
* @memberof ActionsApiInterface
|
|
6243
|
+
*/
|
|
6244
|
+
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
6069
6245
|
/**
|
|
6070
6246
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
6071
6247
|
* @summary Generate Title for Analytics Object
|
|
@@ -6101,6 +6277,14 @@ export declare interface AfmActionsApiInterface {
|
|
|
6101
6277
|
* @memberof ActionsApiInterface
|
|
6102
6278
|
*/
|
|
6103
6279
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6280
|
+
/**
|
|
6281
|
+
*
|
|
6282
|
+
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6283
|
+
* @param {*} [options] Override http request option.
|
|
6284
|
+
* @throws {RequiredError}
|
|
6285
|
+
* @memberof ActionsApiInterface
|
|
6286
|
+
*/
|
|
6287
|
+
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6104
6288
|
/**
|
|
6105
6289
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6106
6290
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6255,6 +6439,16 @@ export declare interface AfmActionsApiInterface {
|
|
|
6255
6439
|
* @memberof ActionsApiInterface
|
|
6256
6440
|
*/
|
|
6257
6441
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
6442
|
+
/**
|
|
6443
|
+
*
|
|
6444
|
+
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
6445
|
+
* @param {*} [options] Override http request option.
|
|
6446
|
+
* @throws {RequiredError}
|
|
6447
|
+
* @memberof ActionsApiInterface
|
|
6448
|
+
*/
|
|
6449
|
+
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
6450
|
+
[key: string]: string;
|
|
6451
|
+
}>;
|
|
6258
6452
|
/**
|
|
6259
6453
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6260
6454
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -7945,6 +8139,81 @@ export declare interface AgentControllerApiUpdateEntityAgentsRequest {
|
|
|
7945
8139
|
readonly include?: Array<'userIdentifiers' | 'userGroups' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
7946
8140
|
}
|
|
7947
8141
|
|
|
8142
|
+
/**
|
|
8143
|
+
* AgentsAi - object-oriented interface
|
|
8144
|
+
* @export
|
|
8145
|
+
* @class AgentsAi
|
|
8146
|
+
* @extends {BaseAPI}
|
|
8147
|
+
*/
|
|
8148
|
+
export declare class AgentsAi extends AiBaseAPI implements AgentsAiInterface {
|
|
8149
|
+
/**
|
|
8150
|
+
* List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
8151
|
+
* @summary List agents available to the current user in a workspace
|
|
8152
|
+
* @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
|
|
8153
|
+
* @param {*} [options] Override http request option.
|
|
8154
|
+
* @throws {RequiredError}
|
|
8155
|
+
* @memberof AgentsAi
|
|
8156
|
+
*/
|
|
8157
|
+
listAgents(requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiAgentListResponse>;
|
|
8158
|
+
}
|
|
8159
|
+
|
|
8160
|
+
/**
|
|
8161
|
+
* List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
8162
|
+
* @summary List agents available to the current user in a workspace
|
|
8163
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
8164
|
+
* @param {string} basePath Base path.
|
|
8165
|
+
* @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
|
|
8166
|
+
* @param {*} [options] Override http request option.
|
|
8167
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
8168
|
+
* @throws {RequiredError}
|
|
8169
|
+
*/
|
|
8170
|
+
declare function AgentsAi_ListAgents(axios: AxiosInstance, basePath: string, requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<AiAgentListResponse>;
|
|
8171
|
+
export { AgentsAi_ListAgents }
|
|
8172
|
+
export { AgentsAi_ListAgents as GenAiApi_ListAgents }
|
|
8173
|
+
|
|
8174
|
+
/**
|
|
8175
|
+
* List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
8176
|
+
* @summary List agents available to the current user in a workspace
|
|
8177
|
+
* @param {string} workspaceId
|
|
8178
|
+
* @param {*} [options] Override http request option.
|
|
8179
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
8180
|
+
* @throws {RequiredError}
|
|
8181
|
+
*/
|
|
8182
|
+
export declare function AgentsAiAxiosParamCreator_ListAgents(workspaceId: string, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
8183
|
+
|
|
8184
|
+
/**
|
|
8185
|
+
* AgentsAi - interface
|
|
8186
|
+
* @export
|
|
8187
|
+
* @interface AgentsAi
|
|
8188
|
+
*/
|
|
8189
|
+
export declare interface AgentsAiInterface {
|
|
8190
|
+
/**
|
|
8191
|
+
* List agents the calling user can use in this workspace, sorted A-Z. This is the personalized \"usable here\" view for the agent switcher -- access-filtered to the caller, enabled, non-preview, with per-agent lastUsedAt. For agent CRUD/management use the metadata entity endpoint GET /api/v1/entities/agents instead.
|
|
8192
|
+
* @summary List agents available to the current user in a workspace
|
|
8193
|
+
* @param {AgentsAiListAgentsRequest} requestParameters Request parameters.
|
|
8194
|
+
* @param {*} [options] Override http request option.
|
|
8195
|
+
* @throws {RequiredError}
|
|
8196
|
+
* @memberof AgentsAiInterface
|
|
8197
|
+
*/
|
|
8198
|
+
listAgents(requestParameters: AgentsAiListAgentsRequest, options?: AxiosRequestConfig): AxiosPromise<AiAgentListResponse>;
|
|
8199
|
+
}
|
|
8200
|
+
|
|
8201
|
+
/**
|
|
8202
|
+
* Request parameters for listAgents operation in AgentsAi.
|
|
8203
|
+
* @export
|
|
8204
|
+
* @interface AgentsAiListAgentsRequest
|
|
8205
|
+
*/
|
|
8206
|
+
declare interface AgentsAiListAgentsRequest {
|
|
8207
|
+
/**
|
|
8208
|
+
*
|
|
8209
|
+
* @type {string}
|
|
8210
|
+
* @memberof AgentsAiListAgents
|
|
8211
|
+
*/
|
|
8212
|
+
readonly workspaceId: string;
|
|
8213
|
+
}
|
|
8214
|
+
export { AgentsAiListAgentsRequest }
|
|
8215
|
+
export { AgentsAiListAgentsRequest as GenAiApiListAgentsRequest }
|
|
8216
|
+
|
|
7948
8217
|
/**
|
|
7949
8218
|
* AggregatedFactControllerApi - object-oriented interface
|
|
7950
8219
|
* @export
|
|
@@ -8274,6 +8543,29 @@ export declare interface AiAfmObjectIdentifierBody {
|
|
|
8274
8543
|
'type': string;
|
|
8275
8544
|
}
|
|
8276
8545
|
|
|
8546
|
+
/**
|
|
8547
|
+
* A single agent visible to the calling user in the workspace.
|
|
8548
|
+
*/
|
|
8549
|
+
declare interface AiAgentListItemResponse {
|
|
8550
|
+
'id': string;
|
|
8551
|
+
'name': string;
|
|
8552
|
+
'description'?: string | null;
|
|
8553
|
+
'isAvailableToAll': boolean;
|
|
8554
|
+
'modifiedAt'?: string | null;
|
|
8555
|
+
'lastUsedAt'?: string | null;
|
|
8556
|
+
}
|
|
8557
|
+
export { AiAgentListItemResponse }
|
|
8558
|
+
export { AiAgentListItemResponse as GenAiApiAgentListItemResponse }
|
|
8559
|
+
|
|
8560
|
+
/**
|
|
8561
|
+
* List of agents accessible to the calling user.
|
|
8562
|
+
*/
|
|
8563
|
+
declare interface AiAgentListResponse {
|
|
8564
|
+
'agents': Array<AiAgentListItemResponse>;
|
|
8565
|
+
}
|
|
8566
|
+
export { AiAgentListResponse }
|
|
8567
|
+
export { AiAgentListResponse as GenAiApiAgentListResponse }
|
|
8568
|
+
|
|
8277
8569
|
/**
|
|
8278
8570
|
* AIAgentsApi - object-oriented interface
|
|
8279
8571
|
* @export
|
|
@@ -10288,9 +10580,16 @@ export declare interface AiConversationItemResponse {
|
|
|
10288
10580
|
'responseId'?: string | null;
|
|
10289
10581
|
'replyTo'?: string | null;
|
|
10290
10582
|
'taskId'?: string | null;
|
|
10583
|
+
'agentId'?: string | null;
|
|
10584
|
+
'oldAgentId'?: string | null;
|
|
10585
|
+
'newAgentId'?: string | null;
|
|
10586
|
+
'actorUserId'?: string | null;
|
|
10587
|
+
'trigger'?: AiConversationItemResponseTriggerEnum | null;
|
|
10291
10588
|
}
|
|
10292
10589
|
|
|
10293
|
-
export declare type AiConversationItemResponseRoleEnum = 'user' | 'assistant' | 'tool';
|
|
10590
|
+
export declare type AiConversationItemResponseRoleEnum = 'user' | 'assistant' | 'tool' | 'system';
|
|
10591
|
+
|
|
10592
|
+
export declare type AiConversationItemResponseTriggerEnum = 'agent_switched' | 'agent_updated';
|
|
10294
10593
|
|
|
10295
10594
|
export declare interface AiConversationListMeta {
|
|
10296
10595
|
'page': AiConversationListPageMeta;
|
|
@@ -10387,6 +10686,13 @@ export declare interface AiConversationUpdateRequest {
|
|
|
10387
10686
|
'pinned'?: boolean | null;
|
|
10388
10687
|
}
|
|
10389
10688
|
|
|
10689
|
+
/**
|
|
10690
|
+
* POST /conversations body.
|
|
10691
|
+
*/
|
|
10692
|
+
export declare interface AiCreateConversationRequest {
|
|
10693
|
+
'agentId'?: string | null;
|
|
10694
|
+
}
|
|
10695
|
+
|
|
10390
10696
|
export declare interface AiDateFilterAbsolute {
|
|
10391
10697
|
'type': AiDateFilterAbsoluteTypeEnum;
|
|
10392
10698
|
'using': string;
|
|
@@ -10722,6 +11028,15 @@ export declare interface AiMetricSortLocatorItem {
|
|
|
10722
11028
|
'function'?: string;
|
|
10723
11029
|
}
|
|
10724
11030
|
|
|
11031
|
+
declare interface AiMetricUsageResponse {
|
|
11032
|
+
'type': AiObservabilityMetricType;
|
|
11033
|
+
'currentValue': number;
|
|
11034
|
+
'previousValue': number;
|
|
11035
|
+
'total'?: number | null;
|
|
11036
|
+
}
|
|
11037
|
+
export { AiMetricUsageResponse }
|
|
11038
|
+
export { AiMetricUsageResponse as GenAiApiMetricUsageResponse }
|
|
11039
|
+
|
|
10725
11040
|
export declare const AiMetricValueFilterConditionComparison: {
|
|
10726
11041
|
readonly GREATER_THAN: "GREATER_THAN";
|
|
10727
11042
|
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
@@ -10799,6 +11114,80 @@ export declare const AiObjectType: {
|
|
|
10799
11114
|
|
|
10800
11115
|
export declare type AiObjectType = typeof AiObjectType[keyof typeof AiObjectType];
|
|
10801
11116
|
|
|
11117
|
+
/**
|
|
11118
|
+
* AIObservabilityAi - object-oriented interface
|
|
11119
|
+
* @export
|
|
11120
|
+
* @class AIObservabilityAi
|
|
11121
|
+
* @extends {BaseAPI}
|
|
11122
|
+
*/
|
|
11123
|
+
export declare class AIObservabilityAi extends AiBaseAPI implements AIObservabilityAiInterface {
|
|
11124
|
+
/**
|
|
11125
|
+
* Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
11126
|
+
* @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
|
|
11127
|
+
* @param {*} [options] Override http request option.
|
|
11128
|
+
* @throws {RequiredError}
|
|
11129
|
+
* @memberof AIObservabilityAi
|
|
11130
|
+
*/
|
|
11131
|
+
getObservabilityOverview(options?: AxiosRequestConfig): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
11132
|
+
}
|
|
11133
|
+
|
|
11134
|
+
/**
|
|
11135
|
+
* Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
11136
|
+
* @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
|
|
11137
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
11138
|
+
* @param {string} basePath Base path.
|
|
11139
|
+
* @param {*} [options] Override http request option.
|
|
11140
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11141
|
+
* @throws {RequiredError}
|
|
11142
|
+
*/
|
|
11143
|
+
declare function AIObservabilityAi_GetObservabilityOverview(axios: AxiosInstance, basePath: string, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
11144
|
+
export { AIObservabilityAi_GetObservabilityOverview }
|
|
11145
|
+
export { AIObservabilityAi_GetObservabilityOverview as GenAiApi_GetObservabilityOverview }
|
|
11146
|
+
|
|
11147
|
+
/**
|
|
11148
|
+
* Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
11149
|
+
* @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
|
|
11150
|
+
* @param {*} [options] Override http request option.
|
|
11151
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
11152
|
+
* @throws {RequiredError}
|
|
11153
|
+
*/
|
|
11154
|
+
export declare function AIObservabilityAiAxiosParamCreator_GetObservabilityOverview(options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
11155
|
+
|
|
11156
|
+
/**
|
|
11157
|
+
* AIObservabilityAi - interface
|
|
11158
|
+
* @export
|
|
11159
|
+
* @interface AIObservabilityAi
|
|
11160
|
+
*/
|
|
11161
|
+
export declare interface AIObservabilityAiInterface {
|
|
11162
|
+
/**
|
|
11163
|
+
* Returns AI usage stats for the caller\'s organization for the current calendar month, alongside the previous month\'s value. Backed by the ai_usage_counters table populated by the metering pipeline.
|
|
11164
|
+
* @summary (EXPERIMENTAL) AI observability overview for the caller\'s organization
|
|
11165
|
+
* @param {*} [options] Override http request option.
|
|
11166
|
+
* @throws {RequiredError}
|
|
11167
|
+
* @memberof AIObservabilityAiInterface
|
|
11168
|
+
*/
|
|
11169
|
+
getObservabilityOverview(options?: AxiosRequestConfig): AxiosPromise<AiObservabilityOverviewResponse>;
|
|
11170
|
+
}
|
|
11171
|
+
|
|
11172
|
+
/**
|
|
11173
|
+
* Metrics exposed by the AI observability endpoint.
|
|
11174
|
+
*/
|
|
11175
|
+
declare const AiObservabilityMetricType: {
|
|
11176
|
+
readonly AI_QUERIES: "AI_QUERIES";
|
|
11177
|
+
readonly AI_WORKSPACES: "AI_WORKSPACES";
|
|
11178
|
+
readonly AI_USERS: "AI_USERS";
|
|
11179
|
+
};
|
|
11180
|
+
|
|
11181
|
+
declare type AiObservabilityMetricType = typeof AiObservabilityMetricType[keyof typeof AiObservabilityMetricType];
|
|
11182
|
+
export { AiObservabilityMetricType }
|
|
11183
|
+
export { AiObservabilityMetricType as GenAiApiObservabilityMetricType }
|
|
11184
|
+
|
|
11185
|
+
declare interface AiObservabilityOverviewResponse {
|
|
11186
|
+
'metrics': Array<AiMetricUsageResponse>;
|
|
11187
|
+
}
|
|
11188
|
+
export { AiObservabilityOverviewResponse }
|
|
11189
|
+
export { AiObservabilityOverviewResponse as GenAiApiObservabilityOverviewResponse }
|
|
11190
|
+
|
|
10802
11191
|
/**
|
|
10803
11192
|
* Request body for PATCH /documents/{documentId}.
|
|
10804
11193
|
*/
|
|
@@ -11185,6 +11574,13 @@ export { AiSummarizeResponse as GenAiApiSummarizeResponse }
|
|
|
11185
11574
|
*/
|
|
11186
11575
|
export declare type AiSummarizeResponseFilterContextInner = AiAbsoluteDateFilter | AiAllTimeDateFilterOutput | AiAppApplicationDtosAfmFilterDefinitionRankingFilter | AiComparisonMeasureValueFilter | AiCompoundMeasureValueFilter | AiInlineFilterDefinition | AiMatchAttributeFilter | AiNegativeAttributeFilter | AiPositiveAttributeFilter | AiRangeMeasureValueFilter | AiRelativeDateFilterOutput;
|
|
11187
11576
|
|
|
11577
|
+
/**
|
|
11578
|
+
* POST /conversations/{conversationId}/switchAgent body.
|
|
11579
|
+
*/
|
|
11580
|
+
export declare interface AiSwitchAgentRequest {
|
|
11581
|
+
'agentId': string;
|
|
11582
|
+
}
|
|
11583
|
+
|
|
11188
11584
|
export declare interface AiTextFilterValue {
|
|
11189
11585
|
'type': AiTextFilterValueTypeEnum;
|
|
11190
11586
|
'using': string;
|
|
@@ -11278,6 +11674,7 @@ export declare interface AiUserContext {
|
|
|
11278
11674
|
export declare interface AiUserContextDashboard {
|
|
11279
11675
|
'id': string;
|
|
11280
11676
|
'widgets'?: Array<AiUserContextWidgetDescriptor>;
|
|
11677
|
+
'filters'?: Array<AiVisualizationFilter> | null;
|
|
11281
11678
|
}
|
|
11282
11679
|
|
|
11283
11680
|
export declare interface AiUserContextInsightWidgetDescriptor {
|
|
@@ -11564,6 +11961,10 @@ export declare interface AlertAfm {
|
|
|
11564
11961
|
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
11565
11962
|
*/
|
|
11566
11963
|
'auxMeasures'?: Array<MeasureItem>;
|
|
11964
|
+
/**
|
|
11965
|
+
* Parameters to be used in the computation.
|
|
11966
|
+
*/
|
|
11967
|
+
'parameters'?: Array<ParameterItem>;
|
|
11567
11968
|
}
|
|
11568
11969
|
|
|
11569
11970
|
/**
|
|
@@ -16295,6 +16696,10 @@ export declare interface AutomationAlertAfm {
|
|
|
16295
16696
|
* Metrics to be referenced from other AFM objects (e.g. filters) but not included in the result.
|
|
16296
16697
|
*/
|
|
16297
16698
|
'auxMeasures'?: Array<AutomationMeasureItem>;
|
|
16699
|
+
/**
|
|
16700
|
+
* Parameters to be used in the computation.
|
|
16701
|
+
*/
|
|
16702
|
+
'parameters'?: Array<AutomationParameterItem>;
|
|
16298
16703
|
}
|
|
16299
16704
|
|
|
16300
16705
|
/**
|
|
@@ -21695,6 +22100,15 @@ export declare class ConversationsAi extends AiBaseAPI implements ConversationsA
|
|
|
21695
22100
|
* @memberof ConversationsAi
|
|
21696
22101
|
*/
|
|
21697
22102
|
postGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(requestParameters: ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
22103
|
+
/**
|
|
22104
|
+
*
|
|
22105
|
+
* @summary Switch the active agent on an existing conversation
|
|
22106
|
+
* @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
|
|
22107
|
+
* @param {*} [options] Override http request option.
|
|
22108
|
+
* @throws {RequiredError}
|
|
22109
|
+
* @memberof ConversationsAi
|
|
22110
|
+
*/
|
|
22111
|
+
switchAgent(requestParameters: ConversationsAiSwitchAgentRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
21698
22112
|
}
|
|
21699
22113
|
|
|
21700
22114
|
/**
|
|
@@ -21781,6 +22195,20 @@ declare function ConversationsAi_PostGenerateConversationTitleApiV1AiWorkspacesW
|
|
|
21781
22195
|
export { ConversationsAi_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost }
|
|
21782
22196
|
export { ConversationsAi_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost as GenAiApi_PostGenerateConversationTitle }
|
|
21783
22197
|
|
|
22198
|
+
/**
|
|
22199
|
+
*
|
|
22200
|
+
* @summary Switch the active agent on an existing conversation
|
|
22201
|
+
* @param {AxiosInstance} axios Axios instance.
|
|
22202
|
+
* @param {string} basePath Base path.
|
|
22203
|
+
* @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
|
|
22204
|
+
* @param {*} [options] Override http request option.
|
|
22205
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
22206
|
+
* @throws {RequiredError}
|
|
22207
|
+
*/
|
|
22208
|
+
declare function ConversationsAi_SwitchAgent(axios: AxiosInstance, basePath: string, requestParameters: ConversationsAiSwitchAgentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): AxiosPromise<AiConversationResponse>;
|
|
22209
|
+
export { ConversationsAi_SwitchAgent }
|
|
22210
|
+
export { ConversationsAi_SwitchAgent as GenAiApi_SwitchAgent }
|
|
22211
|
+
|
|
21784
22212
|
/**
|
|
21785
22213
|
*
|
|
21786
22214
|
* @summary Delete Conversation
|
|
@@ -21833,11 +22261,12 @@ export declare function ConversationsAiAxiosParamCreator_PatchConversationApiV1A
|
|
|
21833
22261
|
* @summary Post Conversations
|
|
21834
22262
|
* @param {string} workspaceId
|
|
21835
22263
|
* @param {boolean} [isPreview]
|
|
22264
|
+
* @param {AiCreateConversationRequest} [aiCreateConversationRequest]
|
|
21836
22265
|
* @param {*} [options] Override http request option.
|
|
21837
22266
|
* @param {Configuration} [configuration] Optional configuration.
|
|
21838
22267
|
* @throws {RequiredError}
|
|
21839
22268
|
*/
|
|
21840
|
-
export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(workspaceId: string, isPreview?: boolean, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
22269
|
+
export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost(workspaceId: string, isPreview?: boolean, aiCreateConversationRequest?: AiCreateConversationRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
21841
22270
|
|
|
21842
22271
|
/**
|
|
21843
22272
|
*
|
|
@@ -21850,6 +22279,18 @@ export declare function ConversationsAiAxiosParamCreator_PostConversationsApiV1A
|
|
|
21850
22279
|
*/
|
|
21851
22280
|
export declare function ConversationsAiAxiosParamCreator_PostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(workspaceId: string, conversationId: string, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
21852
22281
|
|
|
22282
|
+
/**
|
|
22283
|
+
*
|
|
22284
|
+
* @summary Switch the active agent on an existing conversation
|
|
22285
|
+
* @param {string} workspaceId
|
|
22286
|
+
* @param {string} conversationId
|
|
22287
|
+
* @param {AiSwitchAgentRequest} aiSwitchAgentRequest
|
|
22288
|
+
* @param {*} [options] Override http request option.
|
|
22289
|
+
* @param {Configuration} [configuration] Optional configuration.
|
|
22290
|
+
* @throws {RequiredError}
|
|
22291
|
+
*/
|
|
22292
|
+
export declare function ConversationsAiAxiosParamCreator_SwitchAgent(workspaceId: string, conversationId: string, aiSwitchAgentRequest: AiSwitchAgentRequest, options?: AxiosRequestConfig, configuration?: AiConfiguration): Promise<AiRequestArgs>;
|
|
22293
|
+
|
|
21853
22294
|
/**
|
|
21854
22295
|
* Request parameters for deleteConversationApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdDelete operation in ConversationsAi.
|
|
21855
22296
|
* @export
|
|
@@ -21988,6 +22429,15 @@ export declare interface ConversationsAiInterface {
|
|
|
21988
22429
|
* @memberof ConversationsAiInterface
|
|
21989
22430
|
*/
|
|
21990
22431
|
postGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePost(requestParameters: ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
22432
|
+
/**
|
|
22433
|
+
*
|
|
22434
|
+
* @summary Switch the active agent on an existing conversation
|
|
22435
|
+
* @param {ConversationsAiSwitchAgentRequest} requestParameters Request parameters.
|
|
22436
|
+
* @param {*} [options] Override http request option.
|
|
22437
|
+
* @throws {RequiredError}
|
|
22438
|
+
* @memberof ConversationsAiInterface
|
|
22439
|
+
*/
|
|
22440
|
+
switchAgent(requestParameters: ConversationsAiSwitchAgentRequest, options?: AxiosRequestConfig): AxiosPromise<AiConversationResponse>;
|
|
21991
22441
|
}
|
|
21992
22442
|
|
|
21993
22443
|
/**
|
|
@@ -22036,6 +22486,12 @@ declare interface ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdCh
|
|
|
22036
22486
|
* @memberof ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost
|
|
22037
22487
|
*/
|
|
22038
22488
|
readonly isPreview?: boolean;
|
|
22489
|
+
/**
|
|
22490
|
+
*
|
|
22491
|
+
* @type {AiCreateConversationRequest}
|
|
22492
|
+
* @memberof ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPost
|
|
22493
|
+
*/
|
|
22494
|
+
readonly aiCreateConversationRequest?: AiCreateConversationRequest;
|
|
22039
22495
|
}
|
|
22040
22496
|
export { ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest }
|
|
22041
22497
|
export { ConversationsAiPostConversationsApiV1AiWorkspacesWorkspaceIdChatConversationsPostRequest as GenAiApiPostConversationsRequest }
|
|
@@ -22062,6 +22518,34 @@ declare interface ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesW
|
|
|
22062
22518
|
export { ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest }
|
|
22063
22519
|
export { ConversationsAiPostGenerateConversationTitleApiV1AiWorkspacesWorkspaceIdChatConversationsConversationIdGenerateTitlePostRequest as GenAiApiPostGenerateConversationTitleRequest }
|
|
22064
22520
|
|
|
22521
|
+
/**
|
|
22522
|
+
* Request parameters for switchAgent operation in ConversationsAi.
|
|
22523
|
+
* @export
|
|
22524
|
+
* @interface ConversationsAiSwitchAgentRequest
|
|
22525
|
+
*/
|
|
22526
|
+
declare interface ConversationsAiSwitchAgentRequest {
|
|
22527
|
+
/**
|
|
22528
|
+
*
|
|
22529
|
+
* @type {string}
|
|
22530
|
+
* @memberof ConversationsAiSwitchAgent
|
|
22531
|
+
*/
|
|
22532
|
+
readonly workspaceId: string;
|
|
22533
|
+
/**
|
|
22534
|
+
*
|
|
22535
|
+
* @type {string}
|
|
22536
|
+
* @memberof ConversationsAiSwitchAgent
|
|
22537
|
+
*/
|
|
22538
|
+
readonly conversationId: string;
|
|
22539
|
+
/**
|
|
22540
|
+
*
|
|
22541
|
+
* @type {AiSwitchAgentRequest}
|
|
22542
|
+
* @memberof ConversationsAiSwitchAgent
|
|
22543
|
+
*/
|
|
22544
|
+
readonly aiSwitchAgentRequest: AiSwitchAgentRequest;
|
|
22545
|
+
}
|
|
22546
|
+
export { ConversationsAiSwitchAgentRequest }
|
|
22547
|
+
export { ConversationsAiSwitchAgentRequest as GenAiApiSwitchAgentRequest }
|
|
22548
|
+
|
|
22065
22549
|
/**
|
|
22066
22550
|
* Request to convert a geo file to GeoParquet format.
|
|
22067
22551
|
*/
|
|
@@ -25959,6 +26443,24 @@ export declare interface DashboardSlidesTemplate {
|
|
|
25959
26443
|
|
|
25960
26444
|
export declare type DashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
25961
26445
|
|
|
26446
|
+
export declare interface DashboardSummaryRequestDto {
|
|
26447
|
+
'dashboardId': string;
|
|
26448
|
+
'customUserPrompt'?: string;
|
|
26449
|
+
'gooddataHost'?: string;
|
|
26450
|
+
'gooddataToken'?: string;
|
|
26451
|
+
'keyMetricIds'?: Array<string>;
|
|
26452
|
+
'referenceQuarter'?: string;
|
|
26453
|
+
'dryRun'?: boolean;
|
|
26454
|
+
'temperature'?: number;
|
|
26455
|
+
'aiModel'?: string;
|
|
26456
|
+
}
|
|
26457
|
+
|
|
26458
|
+
export declare interface DashboardSummaryResponseDto {
|
|
26459
|
+
'runId': string;
|
|
26460
|
+
'status': string;
|
|
26461
|
+
'message': string;
|
|
26462
|
+
}
|
|
26463
|
+
|
|
25962
26464
|
/**
|
|
25963
26465
|
* Export request object describing the export properties for dashboard tabular exports (v2 with dashboardId).
|
|
25964
26466
|
*/
|
|
@@ -31829,6 +32331,10 @@ export declare interface DeclarativeUser {
|
|
|
31829
32331
|
*/
|
|
31830
32332
|
'email'?: string;
|
|
31831
32333
|
'permissions'?: Array<DeclarativeUserPermission>;
|
|
32334
|
+
/**
|
|
32335
|
+
* Is user system account
|
|
32336
|
+
*/
|
|
32337
|
+
'systemAccount'?: boolean;
|
|
31832
32338
|
}
|
|
31833
32339
|
|
|
31834
32340
|
/**
|
|
@@ -57491,6 +57997,12 @@ export declare type FeatureContext = {
|
|
|
57491
57997
|
dataCenter?: string;
|
|
57492
57998
|
};
|
|
57493
57999
|
|
|
58000
|
+
export declare interface FeedbackRequestDto {
|
|
58001
|
+
'sentiment': FeedbackRequestDtoSentimentEnum;
|
|
58002
|
+
}
|
|
58003
|
+
|
|
58004
|
+
export declare type FeedbackRequestDtoSentimentEnum = 'POSITIVE' | 'NEGATIVE';
|
|
58005
|
+
|
|
57494
58006
|
/**
|
|
57495
58007
|
* Specifies what is used for filtering.
|
|
57496
58008
|
*/
|
|
@@ -65464,15 +65976,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
65464
65976
|
* API identifier of an object
|
|
65465
65977
|
*/
|
|
65466
65978
|
'id': string;
|
|
65467
|
-
'attributes'?:
|
|
65468
|
-
}
|
|
65469
|
-
|
|
65470
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
65471
|
-
'lastRotation'?: string;
|
|
65472
|
-
/**
|
|
65473
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
65474
|
-
*/
|
|
65475
|
-
'rotationInterval'?: string;
|
|
65979
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
65476
65980
|
}
|
|
65477
65981
|
|
|
65478
65982
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -65493,7 +65997,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
65493
65997
|
* API identifier of an object
|
|
65494
65998
|
*/
|
|
65495
65999
|
'id': string;
|
|
65496
|
-
'attributes'?:
|
|
66000
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
65497
66001
|
}
|
|
65498
66002
|
|
|
65499
66003
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -65515,7 +66019,15 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
65515
66019
|
* API identifier of an object
|
|
65516
66020
|
*/
|
|
65517
66021
|
'id': string;
|
|
65518
|
-
'attributes'?:
|
|
66022
|
+
'attributes'?: JsonApiCookieSecurityConfigurationPatchAttributes;
|
|
66023
|
+
}
|
|
66024
|
+
|
|
66025
|
+
export declare interface JsonApiCookieSecurityConfigurationPatchAttributes {
|
|
66026
|
+
'lastRotation'?: string;
|
|
66027
|
+
/**
|
|
66028
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
66029
|
+
*/
|
|
66030
|
+
'rotationInterval'?: string;
|
|
65519
66031
|
}
|
|
65520
66032
|
|
|
65521
66033
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -65632,7 +66144,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
65632
66144
|
* API identifier of an object
|
|
65633
66145
|
*/
|
|
65634
66146
|
'id': string;
|
|
65635
|
-
'attributes':
|
|
66147
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
65636
66148
|
}
|
|
65637
66149
|
|
|
65638
66150
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -65654,15 +66166,7 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
65654
66166
|
*/
|
|
65655
66167
|
'id': string;
|
|
65656
66168
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
65657
|
-
'attributes':
|
|
65658
|
-
}
|
|
65659
|
-
|
|
65660
|
-
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
65661
|
-
'applicationName': string;
|
|
65662
|
-
/**
|
|
65663
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
65664
|
-
*/
|
|
65665
|
-
'content': object;
|
|
66169
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
65666
66170
|
}
|
|
65667
66171
|
|
|
65668
66172
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -65691,7 +66195,7 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
65691
66195
|
*/
|
|
65692
66196
|
'id': string;
|
|
65693
66197
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
65694
|
-
'attributes':
|
|
66198
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
65695
66199
|
'links'?: ObjectLinks;
|
|
65696
66200
|
}
|
|
65697
66201
|
|
|
@@ -65738,7 +66242,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
65738
66242
|
* API identifier of an object
|
|
65739
66243
|
*/
|
|
65740
66244
|
'id'?: string;
|
|
65741
|
-
'attributes':
|
|
66245
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
66246
|
+
}
|
|
66247
|
+
|
|
66248
|
+
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
66249
|
+
'applicationName': string;
|
|
66250
|
+
/**
|
|
66251
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
66252
|
+
*/
|
|
66253
|
+
'content': object;
|
|
65742
66254
|
}
|
|
65743
66255
|
|
|
65744
66256
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -65759,7 +66271,12 @@ export declare interface JsonApiCustomGeoCollectionIn {
|
|
|
65759
66271
|
* API identifier of an object
|
|
65760
66272
|
*/
|
|
65761
66273
|
'id': string;
|
|
65762
|
-
'attributes'?:
|
|
66274
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
66275
|
+
}
|
|
66276
|
+
|
|
66277
|
+
export declare interface JsonApiCustomGeoCollectionInAttributes {
|
|
66278
|
+
'name'?: string | null;
|
|
66279
|
+
'description'?: string | null;
|
|
65763
66280
|
}
|
|
65764
66281
|
|
|
65765
66282
|
export declare interface JsonApiCustomGeoCollectionInDocument {
|
|
@@ -65780,12 +66297,7 @@ export declare interface JsonApiCustomGeoCollectionOut {
|
|
|
65780
66297
|
* API identifier of an object
|
|
65781
66298
|
*/
|
|
65782
66299
|
'id': string;
|
|
65783
|
-
'attributes'?:
|
|
65784
|
-
}
|
|
65785
|
-
|
|
65786
|
-
export declare interface JsonApiCustomGeoCollectionOutAttributes {
|
|
65787
|
-
'name'?: string | null;
|
|
65788
|
-
'description'?: string | null;
|
|
66300
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
65789
66301
|
}
|
|
65790
66302
|
|
|
65791
66303
|
export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
@@ -65813,7 +66325,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
65813
66325
|
* API identifier of an object
|
|
65814
66326
|
*/
|
|
65815
66327
|
'id': string;
|
|
65816
|
-
'attributes'?:
|
|
66328
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
65817
66329
|
'links'?: ObjectLinks;
|
|
65818
66330
|
}
|
|
65819
66331
|
|
|
@@ -65831,7 +66343,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
|
|
|
65831
66343
|
* API identifier of an object
|
|
65832
66344
|
*/
|
|
65833
66345
|
'id': string;
|
|
65834
|
-
'attributes'?:
|
|
66346
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
65835
66347
|
}
|
|
65836
66348
|
|
|
65837
66349
|
export declare interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -66911,7 +67423,7 @@ export declare interface JsonApiExportTemplateIn {
|
|
|
66911
67423
|
* API identifier of an object
|
|
66912
67424
|
*/
|
|
66913
67425
|
'id': string;
|
|
66914
|
-
'attributes':
|
|
67426
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
66915
67427
|
}
|
|
66916
67428
|
|
|
66917
67429
|
export declare interface JsonApiExportTemplateInDocument {
|
|
@@ -66932,9 +67444,47 @@ export declare interface JsonApiExportTemplateOut {
|
|
|
66932
67444
|
* API identifier of an object
|
|
66933
67445
|
*/
|
|
66934
67446
|
'id': string;
|
|
66935
|
-
'attributes':
|
|
67447
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
67448
|
+
}
|
|
67449
|
+
|
|
67450
|
+
export declare interface JsonApiExportTemplateOutAttributes {
|
|
67451
|
+
/**
|
|
67452
|
+
* User-facing name of the Slides template.
|
|
67453
|
+
*/
|
|
67454
|
+
'name': string;
|
|
67455
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
67456
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
67457
|
+
}
|
|
67458
|
+
|
|
67459
|
+
/**
|
|
67460
|
+
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
67461
|
+
*/
|
|
67462
|
+
export declare interface JsonApiExportTemplateOutAttributesDashboardSlidesTemplate {
|
|
67463
|
+
/**
|
|
67464
|
+
* Export types this template applies to.
|
|
67465
|
+
*/
|
|
67466
|
+
'appliedOn': Array<JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
67467
|
+
'coverSlide'?: CoverSlideTemplate | null;
|
|
67468
|
+
'introSlide'?: IntroSlideTemplate | null;
|
|
67469
|
+
'sectionSlide'?: SectionSlideTemplate | null;
|
|
67470
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
66936
67471
|
}
|
|
66937
67472
|
|
|
67473
|
+
export declare type JsonApiExportTemplateOutAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
67474
|
+
|
|
67475
|
+
/**
|
|
67476
|
+
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
67477
|
+
*/
|
|
67478
|
+
export declare interface JsonApiExportTemplateOutAttributesWidgetSlidesTemplate {
|
|
67479
|
+
/**
|
|
67480
|
+
* Export types this template applies to.
|
|
67481
|
+
*/
|
|
67482
|
+
'appliedOn': Array<JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
67483
|
+
'contentSlide'?: ContentSlideTemplate | null;
|
|
67484
|
+
}
|
|
67485
|
+
|
|
67486
|
+
export declare type JsonApiExportTemplateOutAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
67487
|
+
|
|
66938
67488
|
export declare interface JsonApiExportTemplateOutDocument {
|
|
66939
67489
|
'data': JsonApiExportTemplateOut;
|
|
66940
67490
|
'links'?: ObjectLinks;
|
|
@@ -66960,7 +67510,7 @@ export declare interface JsonApiExportTemplateOutWithLinks {
|
|
|
66960
67510
|
* API identifier of an object
|
|
66961
67511
|
*/
|
|
66962
67512
|
'id': string;
|
|
66963
|
-
'attributes':
|
|
67513
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
66964
67514
|
'links'?: ObjectLinks;
|
|
66965
67515
|
}
|
|
66966
67516
|
|
|
@@ -66986,8 +67536,8 @@ export declare interface JsonApiExportTemplatePatchAttributes {
|
|
|
66986
67536
|
* User-facing name of the Slides template.
|
|
66987
67537
|
*/
|
|
66988
67538
|
'name'?: string;
|
|
66989
|
-
'dashboardSlidesTemplate'?:
|
|
66990
|
-
'widgetSlidesTemplate'?:
|
|
67539
|
+
'dashboardSlidesTemplate'?: JsonApiExportTemplateOutAttributesDashboardSlidesTemplate | null;
|
|
67540
|
+
'widgetSlidesTemplate'?: JsonApiExportTemplateOutAttributesWidgetSlidesTemplate | null;
|
|
66991
67541
|
}
|
|
66992
67542
|
|
|
66993
67543
|
export declare interface JsonApiExportTemplatePatchDocument {
|
|
@@ -67008,47 +67558,9 @@ export declare interface JsonApiExportTemplatePostOptionalId {
|
|
|
67008
67558
|
* API identifier of an object
|
|
67009
67559
|
*/
|
|
67010
67560
|
'id'?: string;
|
|
67011
|
-
'attributes':
|
|
67012
|
-
}
|
|
67013
|
-
|
|
67014
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributes {
|
|
67015
|
-
/**
|
|
67016
|
-
* User-facing name of the Slides template.
|
|
67017
|
-
*/
|
|
67018
|
-
'name': string;
|
|
67019
|
-
'dashboardSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate | null;
|
|
67020
|
-
'widgetSlidesTemplate'?: JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate | null;
|
|
67021
|
-
}
|
|
67022
|
-
|
|
67023
|
-
/**
|
|
67024
|
-
* Template for dashboard slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
67025
|
-
*/
|
|
67026
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplate {
|
|
67027
|
-
/**
|
|
67028
|
-
* Export types this template applies to.
|
|
67029
|
-
*/
|
|
67030
|
-
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum>;
|
|
67031
|
-
'coverSlide'?: CoverSlideTemplate | null;
|
|
67032
|
-
'introSlide'?: IntroSlideTemplate | null;
|
|
67033
|
-
'sectionSlide'?: SectionSlideTemplate | null;
|
|
67034
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
67561
|
+
'attributes': JsonApiExportTemplateOutAttributes;
|
|
67035
67562
|
}
|
|
67036
67563
|
|
|
67037
|
-
export declare type JsonApiExportTemplatePostOptionalIdAttributesDashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
67038
|
-
|
|
67039
|
-
/**
|
|
67040
|
-
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
67041
|
-
*/
|
|
67042
|
-
export declare interface JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplate {
|
|
67043
|
-
/**
|
|
67044
|
-
* Export types this template applies to.
|
|
67045
|
-
*/
|
|
67046
|
-
'appliedOn': Array<JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum>;
|
|
67047
|
-
'contentSlide'?: ContentSlideTemplate | null;
|
|
67048
|
-
}
|
|
67049
|
-
|
|
67050
|
-
export declare type JsonApiExportTemplatePostOptionalIdAttributesWidgetSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
67051
|
-
|
|
67052
67564
|
export declare interface JsonApiExportTemplatePostOptionalIdDocument {
|
|
67053
67565
|
'data': JsonApiExportTemplatePostOptionalId;
|
|
67054
67566
|
}
|
|
@@ -67689,7 +68201,7 @@ export declare interface JsonApiIpAllowlistPolicyIn {
|
|
|
67689
68201
|
|
|
67690
68202
|
export declare interface JsonApiIpAllowlistPolicyInAttributes {
|
|
67691
68203
|
/**
|
|
67692
|
-
* Allowed source IPv4 addresses or CIDR ranges.
|
|
68204
|
+
* Allowed source IPv4 or IPv6 addresses or CIDR ranges. The /0 and ::/0 prefixes are not allowed.
|
|
67693
68205
|
*/
|
|
67694
68206
|
'allowedSources': Array<string> | null;
|
|
67695
68207
|
}
|
|
@@ -67785,7 +68297,11 @@ export declare interface JsonApiJwkIn {
|
|
|
67785
68297
|
* API identifier of an object
|
|
67786
68298
|
*/
|
|
67787
68299
|
'id': string;
|
|
67788
|
-
'attributes'?:
|
|
68300
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
68301
|
+
}
|
|
68302
|
+
|
|
68303
|
+
export declare interface JsonApiJwkInAttributes {
|
|
68304
|
+
'content'?: RsaSpecification;
|
|
67789
68305
|
}
|
|
67790
68306
|
|
|
67791
68307
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -67806,11 +68322,7 @@ export declare interface JsonApiJwkOut {
|
|
|
67806
68322
|
* API identifier of an object
|
|
67807
68323
|
*/
|
|
67808
68324
|
'id': string;
|
|
67809
|
-
'attributes'?:
|
|
67810
|
-
}
|
|
67811
|
-
|
|
67812
|
-
export declare interface JsonApiJwkOutAttributes {
|
|
67813
|
-
'content'?: RsaSpecification;
|
|
68325
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
67814
68326
|
}
|
|
67815
68327
|
|
|
67816
68328
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -67838,7 +68350,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
67838
68350
|
* API identifier of an object
|
|
67839
68351
|
*/
|
|
67840
68352
|
'id': string;
|
|
67841
|
-
'attributes'?:
|
|
68353
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
67842
68354
|
'links'?: ObjectLinks;
|
|
67843
68355
|
}
|
|
67844
68356
|
|
|
@@ -67856,7 +68368,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
67856
68368
|
* API identifier of an object
|
|
67857
68369
|
*/
|
|
67858
68370
|
'id': string;
|
|
67859
|
-
'attributes'?:
|
|
68371
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
67860
68372
|
}
|
|
67861
68373
|
|
|
67862
68374
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -69235,7 +69747,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF
|
|
|
69235
69747
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
69236
69748
|
'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
69237
69749
|
'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
69238
|
-
'identityProvider'?:
|
|
69750
|
+
'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
69239
69751
|
}
|
|
69240
69752
|
|
|
69241
69753
|
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
@@ -69246,6 +69758,10 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
|
69246
69758
|
'data': JsonApiUserGroupLinkage | null;
|
|
69247
69759
|
}
|
|
69248
69760
|
|
|
69761
|
+
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
69762
|
+
'data': JsonApiIdentityProviderLinkage | null;
|
|
69763
|
+
}
|
|
69764
|
+
|
|
69249
69765
|
export declare type JsonApiOrganizationOutTypeEnum = 'organization';
|
|
69250
69766
|
|
|
69251
69767
|
/**
|
|
@@ -69284,11 +69800,7 @@ export declare interface JsonApiOrganizationPatchDocument {
|
|
|
69284
69800
|
}
|
|
69285
69801
|
|
|
69286
69802
|
export declare interface JsonApiOrganizationPatchRelationships {
|
|
69287
|
-
'identityProvider'?:
|
|
69288
|
-
}
|
|
69289
|
-
|
|
69290
|
-
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
69291
|
-
'data': JsonApiIdentityProviderLinkage | null;
|
|
69803
|
+
'identityProvider'?: JsonApiOrganizationOutRelationshipsIdentityProvider;
|
|
69292
69804
|
}
|
|
69293
69805
|
|
|
69294
69806
|
export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
@@ -69659,7 +70171,7 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
69659
70171
|
* API identifier of an object
|
|
69660
70172
|
*/
|
|
69661
70173
|
'id': string;
|
|
69662
|
-
'attributes':
|
|
70174
|
+
'attributes': JsonApiUserDataFilterOutAttributes;
|
|
69663
70175
|
'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
69664
70176
|
}
|
|
69665
70177
|
|
|
@@ -69682,10 +70194,18 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
69682
70194
|
*/
|
|
69683
70195
|
'id': string;
|
|
69684
70196
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
69685
|
-
'attributes':
|
|
70197
|
+
'attributes': JsonApiUserDataFilterOutAttributes;
|
|
69686
70198
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
69687
70199
|
}
|
|
69688
70200
|
|
|
70201
|
+
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
70202
|
+
'title'?: string;
|
|
70203
|
+
'description'?: string;
|
|
70204
|
+
'tags'?: Array<string>;
|
|
70205
|
+
'areRelationsValid'?: boolean;
|
|
70206
|
+
'maql': string;
|
|
70207
|
+
}
|
|
70208
|
+
|
|
69689
70209
|
export declare interface JsonApiUserDataFilterOutDocument {
|
|
69690
70210
|
'data': JsonApiUserDataFilterOut;
|
|
69691
70211
|
'links'?: ObjectLinks;
|
|
@@ -69736,7 +70256,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
69736
70256
|
*/
|
|
69737
70257
|
'id': string;
|
|
69738
70258
|
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
69739
|
-
'attributes':
|
|
70259
|
+
'attributes': JsonApiUserDataFilterOutAttributes;
|
|
69740
70260
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
69741
70261
|
'links'?: ObjectLinks;
|
|
69742
70262
|
}
|
|
@@ -69785,18 +70305,10 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
69785
70305
|
* API identifier of an object
|
|
69786
70306
|
*/
|
|
69787
70307
|
'id'?: string;
|
|
69788
|
-
'attributes':
|
|
70308
|
+
'attributes': JsonApiUserDataFilterOutAttributes;
|
|
69789
70309
|
'relationships'?: JsonApiUserDataFilterPostOptionalIdRelationships;
|
|
69790
70310
|
}
|
|
69791
70311
|
|
|
69792
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdAttributes {
|
|
69793
|
-
'title'?: string;
|
|
69794
|
-
'description'?: string;
|
|
69795
|
-
'tags'?: Array<string>;
|
|
69796
|
-
'areRelationsValid'?: boolean;
|
|
69797
|
-
'maql': string;
|
|
69798
|
-
}
|
|
69799
|
-
|
|
69800
70312
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
69801
70313
|
'data': JsonApiUserDataFilterPostOptionalId;
|
|
69802
70314
|
}
|
|
@@ -70041,6 +70553,9 @@ export declare interface JsonApiUserOutAttributes {
|
|
|
70041
70553
|
'firstname'?: string;
|
|
70042
70554
|
'lastname'?: string;
|
|
70043
70555
|
'email'?: string;
|
|
70556
|
+
/**
|
|
70557
|
+
* Is user system account
|
|
70558
|
+
*/
|
|
70044
70559
|
'systemAccount'?: boolean;
|
|
70045
70560
|
}
|
|
70046
70561
|
|
|
@@ -73752,6 +74267,35 @@ export declare interface KnowledgeRecommendationControllerApiUpdateEntityKnowled
|
|
|
73752
74267
|
readonly include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>;
|
|
73753
74268
|
}
|
|
73754
74269
|
|
|
74270
|
+
export declare interface KnowledgeRecommendationsRequestDto {
|
|
74271
|
+
'metricId': string;
|
|
74272
|
+
'direction'?: KnowledgeRecommendationsRequestDtoDirectionEnum;
|
|
74273
|
+
'comparisonType': KnowledgeRecommendationsRequestDtoComparisonTypeEnum;
|
|
74274
|
+
'limit'?: number;
|
|
74275
|
+
'minScore'?: number;
|
|
74276
|
+
'aiModel'?: string;
|
|
74277
|
+
'temperature'?: number;
|
|
74278
|
+
'maxTokens'?: number;
|
|
74279
|
+
'gooddataHost'?: string;
|
|
74280
|
+
'gooddataToken'?: string;
|
|
74281
|
+
'analyticalDashboardId'?: string;
|
|
74282
|
+
'widgetId'?: string;
|
|
74283
|
+
'widgetName'?: string;
|
|
74284
|
+
'dryRun'?: boolean;
|
|
74285
|
+
'referenceValue'?: number;
|
|
74286
|
+
'analyzedValue'?: number;
|
|
74287
|
+
}
|
|
74288
|
+
|
|
74289
|
+
export declare type KnowledgeRecommendationsRequestDtoComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
74290
|
+
|
|
74291
|
+
export declare type KnowledgeRecommendationsRequestDtoDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
74292
|
+
|
|
74293
|
+
export declare interface KnowledgeRecommendationsResponseDto {
|
|
74294
|
+
'runId': string;
|
|
74295
|
+
'status': string;
|
|
74296
|
+
'message': string;
|
|
74297
|
+
}
|
|
74298
|
+
|
|
73755
74299
|
/**
|
|
73756
74300
|
* LabelControllerApi - object-oriented interface
|
|
73757
74301
|
* @export
|
|
@@ -91195,7 +91739,9 @@ export declare const tigerExportClientFactory: (axios: AxiosInstance) => Actions
|
|
|
91195
91739
|
/**
|
|
91196
91740
|
* Tiger GenAI client factory
|
|
91197
91741
|
*/
|
|
91198
|
-
export declare
|
|
91742
|
+
export declare type TigerGenAIClient = Pick<AfmActionsApiInterface, "aiSearch" | "aiChat" | "aiChatStream" | "aiChatHistory" | "validateLLMEndpoint" | "validateLLMEndpointById" | "getQualityIssues" | "getQualityIssuesCalculationStatus" | "triggerQualityIssuesCalculation" | "tags" | "createdBy" | "memoryCreatedByUsers"> & Pick<AIObservabilityAiInterface, "getObservabilityOverview">;
|
|
91743
|
+
|
|
91744
|
+
export declare const tigerGenAIClientFactory: (axios: AxiosInstance) => TigerGenAIClient;
|
|
91199
91745
|
|
|
91200
91746
|
export declare const tigerGeoCollectionsClientFactory: (axios: AxiosInstance) => OGCAPIFeaturesApiInterface;
|
|
91201
91747
|
|