@gooddata/api-client-tiger 11.40.0-alpha.2 → 11.40.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +945 -1698
- package/esm/endpoints/actions/index.d.ts +1 -1
- package/esm/endpoints/actions/index.js +1 -1
- package/esm/endpoints/entitiesObjects/index.d.ts +1 -1
- package/esm/endpoints/entitiesObjects/index.js +0 -2
- package/esm/generated/afm-rest-api/api.d.ts +4 -355
- package/esm/generated/afm-rest-api/api.js +0 -347
- package/esm/generated/ai-json-api/api.d.ts +5 -0
- package/esm/generated/ai-json-api/api.js +2 -1
- package/esm/generated/auth-json-api/api.d.ts +511 -0
- package/esm/generated/auth-json-api/api.js +650 -0
- package/esm/generated/automation-json-api/api.d.ts +27 -0
- package/esm/generated/export-json-api/api.d.ts +9 -9
- package/esm/generated/metadata-json-api/api.d.ts +1293 -1265
- package/esm/generated/metadata-json-api/api.js +1450 -1200
- package/esm/index.d.ts +3 -3
- package/esm/index.js +1 -1
- package/package.json +8 -8
|
@@ -75,6 +75,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
|
|
|
75
75
|
* @memberof ActionsApi
|
|
76
76
|
*/
|
|
77
77
|
allPlatformUsage(options?: AxiosRequestConfig): AxiosPromise<PlatformUsage[]>;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @summary Get Attribute Permissions
|
|
81
|
+
* @param {ActionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
82
|
+
* @param {*} [options] Override http request option.
|
|
83
|
+
* @throws {RequiredError}
|
|
84
|
+
* @memberof ActionsApi
|
|
85
|
+
*/
|
|
86
|
+
attributePermissions(requestParameters: ActionsApiAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
78
87
|
/**
|
|
79
88
|
*
|
|
80
89
|
* @summary Get Available Assignees
|
|
@@ -129,6 +138,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
|
|
|
129
138
|
* @memberof ActionsApi
|
|
130
139
|
*/
|
|
131
140
|
deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
141
|
+
/**
|
|
142
|
+
*
|
|
143
|
+
* @summary Get Fact Permissions
|
|
144
|
+
* @param {ActionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
145
|
+
* @param {*} [options] Override http request option.
|
|
146
|
+
* @throws {RequiredError}
|
|
147
|
+
* @memberof ActionsApi
|
|
148
|
+
*/
|
|
149
|
+
factPermissions(requestParameters: ActionsApiFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
132
150
|
/**
|
|
133
151
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
134
152
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -183,6 +201,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
|
|
|
183
201
|
* @memberof ActionsApi
|
|
184
202
|
*/
|
|
185
203
|
inheritedEntityPrefixes(requestParameters: ActionsApiInheritedEntityPrefixesRequest, options?: AxiosRequestConfig): AxiosPromise<string[]>;
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* @summary Get Label Permissions
|
|
207
|
+
* @param {ActionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
208
|
+
* @param {*} [options] Override http request option.
|
|
209
|
+
* @throws {RequiredError}
|
|
210
|
+
* @memberof ActionsApi
|
|
211
|
+
*/
|
|
212
|
+
labelPermissions(requestParameters: ActionsApiLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
186
213
|
/**
|
|
187
214
|
*
|
|
188
215
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
@@ -199,6 +226,15 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
|
|
|
199
226
|
* @memberof ActionsApi
|
|
200
227
|
*/
|
|
201
228
|
listWorkspaceUsers(requestParameters: ActionsApiListWorkspaceUsersRequest, options?: AxiosRequestConfig): AxiosPromise<WorkspaceUsers>;
|
|
229
|
+
/**
|
|
230
|
+
*
|
|
231
|
+
* @summary Manage Permissions for an Attribute
|
|
232
|
+
* @param {ActionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
233
|
+
* @param {*} [options] Override http request option.
|
|
234
|
+
* @throws {RequiredError}
|
|
235
|
+
* @memberof ActionsApi
|
|
236
|
+
*/
|
|
237
|
+
manageAttributePermissions(requestParameters: ActionsApiManageAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
202
238
|
/**
|
|
203
239
|
*
|
|
204
240
|
* @summary Manage Permissions for a Dashboard
|
|
@@ -217,6 +253,24 @@ export declare class ActionsApi extends MetadataBaseApi implements ActionsApiInt
|
|
|
217
253
|
* @memberof ActionsApi
|
|
218
254
|
*/
|
|
219
255
|
manageDataSourcePermissions(requestParameters: ActionsApiManageDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
256
|
+
/**
|
|
257
|
+
*
|
|
258
|
+
* @summary Manage Permissions for a Fact
|
|
259
|
+
* @param {ActionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
260
|
+
* @param {*} [options] Override http request option.
|
|
261
|
+
* @throws {RequiredError}
|
|
262
|
+
* @memberof ActionsApi
|
|
263
|
+
*/
|
|
264
|
+
manageFactPermissions(requestParameters: ActionsApiManageFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
265
|
+
/**
|
|
266
|
+
*
|
|
267
|
+
* @summary Manage Permissions for a Label
|
|
268
|
+
* @param {ActionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
269
|
+
* @param {*} [options] Override http request option.
|
|
270
|
+
* @throws {RequiredError}
|
|
271
|
+
* @memberof ActionsApi
|
|
272
|
+
*/
|
|
273
|
+
manageLabelPermissions(requestParameters: ActionsApiManageLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
220
274
|
/**
|
|
221
275
|
* Manage Permissions for a Organization
|
|
222
276
|
* @summary Manage Permissions for a Organization
|
|
@@ -1202,6 +1256,26 @@ export declare interface ActionsApiAnomalyDetectionResultRequest {
|
|
|
1202
1256
|
readonly limit?: number;
|
|
1203
1257
|
}
|
|
1204
1258
|
|
|
1259
|
+
/**
|
|
1260
|
+
* Request parameters for attributePermissions operation in ActionsApi.
|
|
1261
|
+
* @export
|
|
1262
|
+
* @interface ActionsApiAttributePermissionsRequest
|
|
1263
|
+
*/
|
|
1264
|
+
export declare interface ActionsApiAttributePermissionsRequest {
|
|
1265
|
+
/**
|
|
1266
|
+
*
|
|
1267
|
+
* @type {string}
|
|
1268
|
+
* @memberof ActionsApiAttributePermissions
|
|
1269
|
+
*/
|
|
1270
|
+
readonly workspaceId: string;
|
|
1271
|
+
/**
|
|
1272
|
+
*
|
|
1273
|
+
* @type {string}
|
|
1274
|
+
* @memberof ActionsApiAttributePermissions
|
|
1275
|
+
*/
|
|
1276
|
+
readonly attributeId: string;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1205
1279
|
/**
|
|
1206
1280
|
* Request parameters for availableAssignees operation in ActionsApi.
|
|
1207
1281
|
* @export
|
|
@@ -1694,26 +1768,6 @@ export declare interface ActionsApiCancelExecutionsRequest {
|
|
|
1694
1768
|
readonly afmCancelTokens: AfmCancelTokens;
|
|
1695
1769
|
}
|
|
1696
1770
|
|
|
1697
|
-
/**
|
|
1698
|
-
* Request parameters for cancelWorkflow1 operation in ActionsApi.
|
|
1699
|
-
* @export
|
|
1700
|
-
* @interface ActionsApiCancelWorkflow1Request
|
|
1701
|
-
*/
|
|
1702
|
-
export declare interface ActionsApiCancelWorkflow1Request {
|
|
1703
|
-
/**
|
|
1704
|
-
* Workspace identifier
|
|
1705
|
-
* @type {string}
|
|
1706
|
-
* @memberof ActionsApiCancelWorkflow1
|
|
1707
|
-
*/
|
|
1708
|
-
readonly workspaceId: string;
|
|
1709
|
-
/**
|
|
1710
|
-
*
|
|
1711
|
-
* @type {string}
|
|
1712
|
-
* @memberof ActionsApiCancelWorkflow1
|
|
1713
|
-
*/
|
|
1714
|
-
readonly runId: string;
|
|
1715
|
-
}
|
|
1716
|
-
|
|
1717
1771
|
/**
|
|
1718
1772
|
* Request parameters for cancelWorkflow operation in ActionsApi.
|
|
1719
1773
|
* @export
|
|
@@ -2168,6 +2222,26 @@ export declare interface ActionsApiExplainAFMRequest {
|
|
|
2168
2222
|
readonly explainType?: 'MAQL' | 'GRPC_MODEL' | 'GRPC_MODEL_SVG' | 'WDF' | 'QT' | 'QT_SVG' | 'OPT_QT' | 'OPT_QT_SVG' | 'SQL' | 'SETTINGS' | 'COMPRESSED_SQL' | 'COMPRESSED_GRPC_MODEL_SVG' | 'GIT';
|
|
2169
2223
|
}
|
|
2170
2224
|
|
|
2225
|
+
/**
|
|
2226
|
+
* Request parameters for factPermissions operation in ActionsApi.
|
|
2227
|
+
* @export
|
|
2228
|
+
* @interface ActionsApiFactPermissionsRequest
|
|
2229
|
+
*/
|
|
2230
|
+
export declare interface ActionsApiFactPermissionsRequest {
|
|
2231
|
+
/**
|
|
2232
|
+
*
|
|
2233
|
+
* @type {string}
|
|
2234
|
+
* @memberof ActionsApiFactPermissions
|
|
2235
|
+
*/
|
|
2236
|
+
readonly workspaceId: string;
|
|
2237
|
+
/**
|
|
2238
|
+
*
|
|
2239
|
+
* @type {string}
|
|
2240
|
+
* @memberof ActionsApiFactPermissions
|
|
2241
|
+
*/
|
|
2242
|
+
readonly factId: string;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2171
2245
|
/**
|
|
2172
2246
|
* Request parameters for forecast operation in ActionsApi.
|
|
2173
2247
|
* @export
|
|
@@ -2232,26 +2306,6 @@ export declare interface ActionsApiForecastResultRequest {
|
|
|
2232
2306
|
readonly limit?: number;
|
|
2233
2307
|
}
|
|
2234
2308
|
|
|
2235
|
-
/**
|
|
2236
|
-
* Request parameters for generateDashboardSummary1 operation in ActionsApi.
|
|
2237
|
-
* @export
|
|
2238
|
-
* @interface ActionsApiGenerateDashboardSummary1Request
|
|
2239
|
-
*/
|
|
2240
|
-
export declare interface ActionsApiGenerateDashboardSummary1Request {
|
|
2241
|
-
/**
|
|
2242
|
-
* Workspace identifier
|
|
2243
|
-
* @type {string}
|
|
2244
|
-
* @memberof ActionsApiGenerateDashboardSummary1
|
|
2245
|
-
*/
|
|
2246
|
-
readonly workspaceId: string;
|
|
2247
|
-
/**
|
|
2248
|
-
*
|
|
2249
|
-
* @type {DashboardSummaryRequestDto}
|
|
2250
|
-
* @memberof ActionsApiGenerateDashboardSummary1
|
|
2251
|
-
*/
|
|
2252
|
-
readonly dashboardSummaryRequestDto: DashboardSummaryRequestDto;
|
|
2253
|
-
}
|
|
2254
|
-
|
|
2255
2309
|
/**
|
|
2256
2310
|
* Request parameters for generateDashboardSummary operation in ActionsApi.
|
|
2257
2311
|
* @export
|
|
@@ -2292,26 +2346,6 @@ export declare interface ActionsApiGenerateDescriptionRequest {
|
|
|
2292
2346
|
readonly generateDescriptionRequest: GenerateDescriptionRequest;
|
|
2293
2347
|
}
|
|
2294
2348
|
|
|
2295
|
-
/**
|
|
2296
|
-
* Request parameters for generateKnowledgeRecommendations operation in ActionsApi.
|
|
2297
|
-
* @export
|
|
2298
|
-
* @interface ActionsApiGenerateKnowledgeRecommendationsRequest
|
|
2299
|
-
*/
|
|
2300
|
-
export declare interface ActionsApiGenerateKnowledgeRecommendationsRequest {
|
|
2301
|
-
/**
|
|
2302
|
-
* Workspace identifier
|
|
2303
|
-
* @type {string}
|
|
2304
|
-
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
2305
|
-
*/
|
|
2306
|
-
readonly workspaceId: string;
|
|
2307
|
-
/**
|
|
2308
|
-
*
|
|
2309
|
-
* @type {KnowledgeRecommendationsRequestDto}
|
|
2310
|
-
* @memberof ActionsApiGenerateKnowledgeRecommendations
|
|
2311
|
-
*/
|
|
2312
|
-
readonly knowledgeRecommendationsRequestDto: KnowledgeRecommendationsRequestDto;
|
|
2313
|
-
}
|
|
2314
|
-
|
|
2315
2349
|
/**
|
|
2316
2350
|
* Request parameters for generateLogicalModel operation in ActionsApi.
|
|
2317
2351
|
* @export
|
|
@@ -2430,26 +2464,6 @@ export declare interface ActionsApiGetTranslationTagsRequest {
|
|
|
2430
2464
|
readonly workspaceId: string;
|
|
2431
2465
|
}
|
|
2432
2466
|
|
|
2433
|
-
/**
|
|
2434
|
-
* Request parameters for getWorkflowStatus1 operation in ActionsApi.
|
|
2435
|
-
* @export
|
|
2436
|
-
* @interface ActionsApiGetWorkflowStatus1Request
|
|
2437
|
-
*/
|
|
2438
|
-
export declare interface ActionsApiGetWorkflowStatus1Request {
|
|
2439
|
-
/**
|
|
2440
|
-
* Workspace identifier
|
|
2441
|
-
* @type {string}
|
|
2442
|
-
* @memberof ActionsApiGetWorkflowStatus1
|
|
2443
|
-
*/
|
|
2444
|
-
readonly workspaceId: string;
|
|
2445
|
-
/**
|
|
2446
|
-
*
|
|
2447
|
-
* @type {string}
|
|
2448
|
-
* @memberof ActionsApiGetWorkflowStatus1
|
|
2449
|
-
*/
|
|
2450
|
-
readonly runId: string;
|
|
2451
|
-
}
|
|
2452
|
-
|
|
2453
2467
|
/**
|
|
2454
2468
|
* Request parameters for getWorkflowStatus operation in ActionsApi.
|
|
2455
2469
|
* @export
|
|
@@ -2561,6 +2575,15 @@ export declare interface ActionsApiInterface {
|
|
|
2561
2575
|
* @memberof ActionsApiInterface
|
|
2562
2576
|
*/
|
|
2563
2577
|
allPlatformUsage(options?: AxiosRequestConfig): AxiosPromise<Array<PlatformUsage>>;
|
|
2578
|
+
/**
|
|
2579
|
+
*
|
|
2580
|
+
* @summary Get Attribute Permissions
|
|
2581
|
+
* @param {ActionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
2582
|
+
* @param {*} [options] Override http request option.
|
|
2583
|
+
* @throws {RequiredError}
|
|
2584
|
+
* @memberof ActionsApiInterface
|
|
2585
|
+
*/
|
|
2586
|
+
attributePermissions(requestParameters: ActionsApiAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
2564
2587
|
/**
|
|
2565
2588
|
*
|
|
2566
2589
|
* @summary Get Available Assignees
|
|
@@ -2615,6 +2638,15 @@ export declare interface ActionsApiInterface {
|
|
|
2615
2638
|
* @memberof ActionsApiInterface
|
|
2616
2639
|
*/
|
|
2617
2640
|
deleteWorkspaceAutomations(requestParameters: ActionsApiDeleteWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2641
|
+
/**
|
|
2642
|
+
*
|
|
2643
|
+
* @summary Get Fact Permissions
|
|
2644
|
+
* @param {ActionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
2645
|
+
* @param {*} [options] Override http request option.
|
|
2646
|
+
* @throws {RequiredError}
|
|
2647
|
+
* @memberof ActionsApiInterface
|
|
2648
|
+
*/
|
|
2649
|
+
factPermissions(requestParameters: ActionsApiFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
2618
2650
|
/**
|
|
2619
2651
|
* Generate logical data model (LDM) from physical data model (PDM) stored in data source.
|
|
2620
2652
|
* @summary Generate logical data model (LDM) from physical data model (PDM)
|
|
@@ -2669,6 +2701,15 @@ export declare interface ActionsApiInterface {
|
|
|
2669
2701
|
* @memberof ActionsApiInterface
|
|
2670
2702
|
*/
|
|
2671
2703
|
inheritedEntityPrefixes(requestParameters: ActionsApiInheritedEntityPrefixesRequest, options?: AxiosRequestConfig): AxiosPromise<Array<string>>;
|
|
2704
|
+
/**
|
|
2705
|
+
*
|
|
2706
|
+
* @summary Get Label Permissions
|
|
2707
|
+
* @param {ActionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
2708
|
+
* @param {*} [options] Override http request option.
|
|
2709
|
+
* @throws {RequiredError}
|
|
2710
|
+
* @memberof ActionsApiInterface
|
|
2711
|
+
*/
|
|
2712
|
+
labelPermissions(requestParameters: ActionsApiLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
2672
2713
|
/**
|
|
2673
2714
|
*
|
|
2674
2715
|
* @param {ActionsApiListWorkspaceUserGroupsRequest} requestParameters Request parameters.
|
|
@@ -2685,6 +2726,15 @@ export declare interface ActionsApiInterface {
|
|
|
2685
2726
|
* @memberof ActionsApiInterface
|
|
2686
2727
|
*/
|
|
2687
2728
|
listWorkspaceUsers(requestParameters: ActionsApiListWorkspaceUsersRequest, options?: AxiosRequestConfig): AxiosPromise<WorkspaceUsers>;
|
|
2729
|
+
/**
|
|
2730
|
+
*
|
|
2731
|
+
* @summary Manage Permissions for an Attribute
|
|
2732
|
+
* @param {ActionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
2733
|
+
* @param {*} [options] Override http request option.
|
|
2734
|
+
* @throws {RequiredError}
|
|
2735
|
+
* @memberof ActionsApiInterface
|
|
2736
|
+
*/
|
|
2737
|
+
manageAttributePermissions(requestParameters: ActionsApiManageAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2688
2738
|
/**
|
|
2689
2739
|
*
|
|
2690
2740
|
* @summary Manage Permissions for a Dashboard
|
|
@@ -2703,6 +2753,24 @@ export declare interface ActionsApiInterface {
|
|
|
2703
2753
|
* @memberof ActionsApiInterface
|
|
2704
2754
|
*/
|
|
2705
2755
|
manageDataSourcePermissions(requestParameters: ActionsApiManageDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2756
|
+
/**
|
|
2757
|
+
*
|
|
2758
|
+
* @summary Manage Permissions for a Fact
|
|
2759
|
+
* @param {ActionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
2760
|
+
* @param {*} [options] Override http request option.
|
|
2761
|
+
* @throws {RequiredError}
|
|
2762
|
+
* @memberof ActionsApiInterface
|
|
2763
|
+
*/
|
|
2764
|
+
manageFactPermissions(requestParameters: ActionsApiManageFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2765
|
+
/**
|
|
2766
|
+
*
|
|
2767
|
+
* @summary Manage Permissions for a Label
|
|
2768
|
+
* @param {ActionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
2769
|
+
* @param {*} [options] Override http request option.
|
|
2770
|
+
* @throws {RequiredError}
|
|
2771
|
+
* @memberof ActionsApiInterface
|
|
2772
|
+
*/
|
|
2773
|
+
manageLabelPermissions(requestParameters: ActionsApiManageLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
2706
2774
|
/**
|
|
2707
2775
|
* Manage Permissions for a Organization
|
|
2708
2776
|
* @summary Manage Permissions for a Organization
|
|
@@ -3012,6 +3080,26 @@ export declare interface ActionsApiKeyDriverAnalysisResultRequest {
|
|
|
3012
3080
|
readonly limit?: number;
|
|
3013
3081
|
}
|
|
3014
3082
|
|
|
3083
|
+
/**
|
|
3084
|
+
* Request parameters for labelPermissions operation in ActionsApi.
|
|
3085
|
+
* @export
|
|
3086
|
+
* @interface ActionsApiLabelPermissionsRequest
|
|
3087
|
+
*/
|
|
3088
|
+
export declare interface ActionsApiLabelPermissionsRequest {
|
|
3089
|
+
/**
|
|
3090
|
+
*
|
|
3091
|
+
* @type {string}
|
|
3092
|
+
* @memberof ActionsApiLabelPermissions
|
|
3093
|
+
*/
|
|
3094
|
+
readonly workspaceId: string;
|
|
3095
|
+
/**
|
|
3096
|
+
*
|
|
3097
|
+
* @type {string}
|
|
3098
|
+
* @memberof ActionsApiLabelPermissions
|
|
3099
|
+
*/
|
|
3100
|
+
readonly labelId: string;
|
|
3101
|
+
}
|
|
3102
|
+
|
|
3015
3103
|
/**
|
|
3016
3104
|
* Request parameters for listFiles operation in ActionsApi.
|
|
3017
3105
|
* @export
|
|
@@ -3118,6 +3206,32 @@ export declare interface ActionsApiListWorkspaceUsersRequest {
|
|
|
3118
3206
|
readonly name?: string;
|
|
3119
3207
|
}
|
|
3120
3208
|
|
|
3209
|
+
/**
|
|
3210
|
+
* Request parameters for manageAttributePermissions operation in ActionsApi.
|
|
3211
|
+
* @export
|
|
3212
|
+
* @interface ActionsApiManageAttributePermissionsRequest
|
|
3213
|
+
*/
|
|
3214
|
+
export declare interface ActionsApiManageAttributePermissionsRequest {
|
|
3215
|
+
/**
|
|
3216
|
+
*
|
|
3217
|
+
* @type {string}
|
|
3218
|
+
* @memberof ActionsApiManageAttributePermissions
|
|
3219
|
+
*/
|
|
3220
|
+
readonly workspaceId: string;
|
|
3221
|
+
/**
|
|
3222
|
+
*
|
|
3223
|
+
* @type {string}
|
|
3224
|
+
* @memberof ActionsApiManageAttributePermissions
|
|
3225
|
+
*/
|
|
3226
|
+
readonly attributeId: string;
|
|
3227
|
+
/**
|
|
3228
|
+
*
|
|
3229
|
+
* @type {Array<ManageLabelPermissionsRequestInner>}
|
|
3230
|
+
* @memberof ActionsApiManageAttributePermissions
|
|
3231
|
+
*/
|
|
3232
|
+
readonly manageLabelPermissionsRequestInner: Array<ManageLabelPermissionsRequestInner>;
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3121
3235
|
/**
|
|
3122
3236
|
* Request parameters for manageDashboardPermissions operation in ActionsApi.
|
|
3123
3237
|
* @export
|
|
@@ -3164,6 +3278,58 @@ export declare interface ActionsApiManageDataSourcePermissionsRequest {
|
|
|
3164
3278
|
readonly dataSourcePermissionAssignment: Array<DataSourcePermissionAssignment>;
|
|
3165
3279
|
}
|
|
3166
3280
|
|
|
3281
|
+
/**
|
|
3282
|
+
* Request parameters for manageFactPermissions operation in ActionsApi.
|
|
3283
|
+
* @export
|
|
3284
|
+
* @interface ActionsApiManageFactPermissionsRequest
|
|
3285
|
+
*/
|
|
3286
|
+
export declare interface ActionsApiManageFactPermissionsRequest {
|
|
3287
|
+
/**
|
|
3288
|
+
*
|
|
3289
|
+
* @type {string}
|
|
3290
|
+
* @memberof ActionsApiManageFactPermissions
|
|
3291
|
+
*/
|
|
3292
|
+
readonly workspaceId: string;
|
|
3293
|
+
/**
|
|
3294
|
+
*
|
|
3295
|
+
* @type {string}
|
|
3296
|
+
* @memberof ActionsApiManageFactPermissions
|
|
3297
|
+
*/
|
|
3298
|
+
readonly factId: string;
|
|
3299
|
+
/**
|
|
3300
|
+
*
|
|
3301
|
+
* @type {Array<ManageLabelPermissionsRequestInner>}
|
|
3302
|
+
* @memberof ActionsApiManageFactPermissions
|
|
3303
|
+
*/
|
|
3304
|
+
readonly manageLabelPermissionsRequestInner: Array<ManageLabelPermissionsRequestInner>;
|
|
3305
|
+
}
|
|
3306
|
+
|
|
3307
|
+
/**
|
|
3308
|
+
* Request parameters for manageLabelPermissions operation in ActionsApi.
|
|
3309
|
+
* @export
|
|
3310
|
+
* @interface ActionsApiManageLabelPermissionsRequest
|
|
3311
|
+
*/
|
|
3312
|
+
export declare interface ActionsApiManageLabelPermissionsRequest {
|
|
3313
|
+
/**
|
|
3314
|
+
*
|
|
3315
|
+
* @type {string}
|
|
3316
|
+
* @memberof ActionsApiManageLabelPermissions
|
|
3317
|
+
*/
|
|
3318
|
+
readonly workspaceId: string;
|
|
3319
|
+
/**
|
|
3320
|
+
*
|
|
3321
|
+
* @type {string}
|
|
3322
|
+
* @memberof ActionsApiManageLabelPermissions
|
|
3323
|
+
*/
|
|
3324
|
+
readonly labelId: string;
|
|
3325
|
+
/**
|
|
3326
|
+
*
|
|
3327
|
+
* @type {Array<ManageLabelPermissionsRequestInner>}
|
|
3328
|
+
* @memberof ActionsApiManageLabelPermissions
|
|
3329
|
+
*/
|
|
3330
|
+
readonly manageLabelPermissionsRequestInner: Array<ManageLabelPermissionsRequestInner>;
|
|
3331
|
+
}
|
|
3332
|
+
|
|
3167
3333
|
/**
|
|
3168
3334
|
* Request parameters for manageOrganizationPermissions operation in ActionsApi.
|
|
3169
3335
|
* @export
|
|
@@ -3894,32 +4060,6 @@ export declare interface ActionsApiUnsubscribeWorkspaceAutomationsRequest {
|
|
|
3894
4060
|
readonly workspaceId: string;
|
|
3895
4061
|
}
|
|
3896
4062
|
|
|
3897
|
-
/**
|
|
3898
|
-
* Request parameters for userFeedback operation in ActionsApi.
|
|
3899
|
-
* @export
|
|
3900
|
-
* @interface ActionsApiUserFeedbackRequest
|
|
3901
|
-
*/
|
|
3902
|
-
export declare interface ActionsApiUserFeedbackRequest {
|
|
3903
|
-
/**
|
|
3904
|
-
* Workspace identifier
|
|
3905
|
-
* @type {string}
|
|
3906
|
-
* @memberof ActionsApiUserFeedback
|
|
3907
|
-
*/
|
|
3908
|
-
readonly workspaceId: string;
|
|
3909
|
-
/**
|
|
3910
|
-
*
|
|
3911
|
-
* @type {string}
|
|
3912
|
-
* @memberof ActionsApiUserFeedback
|
|
3913
|
-
*/
|
|
3914
|
-
readonly runId: string;
|
|
3915
|
-
/**
|
|
3916
|
-
*
|
|
3917
|
-
* @type {FeedbackRequestDto}
|
|
3918
|
-
* @memberof ActionsApiUserFeedback
|
|
3919
|
-
*/
|
|
3920
|
-
readonly feedbackRequestDto: FeedbackRequestDto;
|
|
3921
|
-
}
|
|
3922
|
-
|
|
3923
4063
|
/**
|
|
3924
4064
|
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
3925
4065
|
* @export
|
|
@@ -5338,16 +5478,6 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5338
5478
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5339
5479
|
[key: string]: string;
|
|
5340
5480
|
}>;
|
|
5341
|
-
/**
|
|
5342
|
-
*
|
|
5343
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
5344
|
-
* @param {*} [options] Override http request option.
|
|
5345
|
-
* @throws {RequiredError}
|
|
5346
|
-
* @memberof ActionsApi
|
|
5347
|
-
*/
|
|
5348
|
-
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5349
|
-
[key: string]: string;
|
|
5350
|
-
}>;
|
|
5351
5481
|
/**
|
|
5352
5482
|
* Computes change analysis for the provided execution definition.
|
|
5353
5483
|
* @summary Compute change analysis
|
|
@@ -5473,14 +5603,6 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5473
5603
|
* @memberof ActionsApi
|
|
5474
5604
|
*/
|
|
5475
5605
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
5476
|
-
/**
|
|
5477
|
-
*
|
|
5478
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
5479
|
-
* @param {*} [options] Override http request option.
|
|
5480
|
-
* @throws {RequiredError}
|
|
5481
|
-
* @memberof ActionsApi
|
|
5482
|
-
*/
|
|
5483
|
-
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
5484
5606
|
/**
|
|
5485
5607
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5486
5608
|
* @summary Generate Description for Analytics Object
|
|
@@ -5490,14 +5612,6 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5490
5612
|
* @memberof ActionsApi
|
|
5491
5613
|
*/
|
|
5492
5614
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
5493
|
-
/**
|
|
5494
|
-
*
|
|
5495
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
5496
|
-
* @param {*} [options] Override http request option.
|
|
5497
|
-
* @throws {RequiredError}
|
|
5498
|
-
* @memberof ActionsApi
|
|
5499
|
-
*/
|
|
5500
|
-
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
5501
5615
|
/**
|
|
5502
5616
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
5503
5617
|
* @summary Generate Title for Analytics Object
|
|
@@ -5533,14 +5647,6 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5533
5647
|
* @memberof ActionsApi
|
|
5534
5648
|
*/
|
|
5535
5649
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
5536
|
-
/**
|
|
5537
|
-
*
|
|
5538
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
5539
|
-
* @param {*} [options] Override http request option.
|
|
5540
|
-
* @throws {RequiredError}
|
|
5541
|
-
* @memberof ActionsApi
|
|
5542
|
-
*/
|
|
5543
|
-
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
5544
5650
|
/**
|
|
5545
5651
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
5546
5652
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -5695,16 +5801,6 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5695
5801
|
* @memberof ActionsApi
|
|
5696
5802
|
*/
|
|
5697
5803
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
5698
|
-
/**
|
|
5699
|
-
*
|
|
5700
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
5701
|
-
* @param {*} [options] Override http request option.
|
|
5702
|
-
* @throws {RequiredError}
|
|
5703
|
-
* @memberof ActionsApi
|
|
5704
|
-
*/
|
|
5705
|
-
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5706
|
-
[key: string]: string;
|
|
5707
|
-
}>;
|
|
5708
5804
|
/**
|
|
5709
5805
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
5710
5806
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -5836,16 +5932,6 @@ export declare interface AfmActionsApiInterface {
|
|
|
5836
5932
|
cancelWorkflow(requestParameters: ActionsApiCancelWorkflowRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5837
5933
|
[key: string]: string;
|
|
5838
5934
|
}>;
|
|
5839
|
-
/**
|
|
5840
|
-
*
|
|
5841
|
-
* @param {ActionsApiCancelWorkflow1Request} requestParameters Request parameters.
|
|
5842
|
-
* @param {*} [options] Override http request option.
|
|
5843
|
-
* @throws {RequiredError}
|
|
5844
|
-
* @memberof ActionsApiInterface
|
|
5845
|
-
*/
|
|
5846
|
-
cancelWorkflow1(requestParameters: ActionsApiCancelWorkflow1Request, options?: AxiosRequestConfig): AxiosPromise<{
|
|
5847
|
-
[key: string]: string;
|
|
5848
|
-
}>;
|
|
5849
5935
|
/**
|
|
5850
5936
|
* Computes change analysis for the provided execution definition.
|
|
5851
5937
|
* @summary Compute change analysis
|
|
@@ -5971,14 +6057,6 @@ export declare interface AfmActionsApiInterface {
|
|
|
5971
6057
|
* @memberof ActionsApiInterface
|
|
5972
6058
|
*/
|
|
5973
6059
|
generateDashboardSummary(requestParameters: ActionsApiGenerateDashboardSummaryRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowDashboardSummaryResponseDto>;
|
|
5974
|
-
/**
|
|
5975
|
-
*
|
|
5976
|
-
* @param {ActionsApiGenerateDashboardSummary1Request} requestParameters Request parameters.
|
|
5977
|
-
* @param {*} [options] Override http request option.
|
|
5978
|
-
* @throws {RequiredError}
|
|
5979
|
-
* @memberof ActionsApiInterface
|
|
5980
|
-
*/
|
|
5981
|
-
generateDashboardSummary1(requestParameters: ActionsApiGenerateDashboardSummary1Request, options?: AxiosRequestConfig): AxiosPromise<DashboardSummaryResponseDto>;
|
|
5982
6060
|
/**
|
|
5983
6061
|
* Generates a description for the specified analytics object. Returns description and a note with details if generation was not performed.
|
|
5984
6062
|
* @summary Generate Description for Analytics Object
|
|
@@ -5988,14 +6066,6 @@ export declare interface AfmActionsApiInterface {
|
|
|
5988
6066
|
* @memberof ActionsApiInterface
|
|
5989
6067
|
*/
|
|
5990
6068
|
generateDescription(requestParameters: ActionsApiGenerateDescriptionRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateDescriptionResponse>;
|
|
5991
|
-
/**
|
|
5992
|
-
*
|
|
5993
|
-
* @param {ActionsApiGenerateKnowledgeRecommendationsRequest} requestParameters Request parameters.
|
|
5994
|
-
* @param {*} [options] Override http request option.
|
|
5995
|
-
* @throws {RequiredError}
|
|
5996
|
-
* @memberof ActionsApiInterface
|
|
5997
|
-
*/
|
|
5998
|
-
generateKnowledgeRecommendations(requestParameters: ActionsApiGenerateKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeRecommendationsResponseDto>;
|
|
5999
6069
|
/**
|
|
6000
6070
|
* Generates a title for the specified analytics object. Returns title and a note with details if generation was not performed.
|
|
6001
6071
|
* @summary Generate Title for Analytics Object
|
|
@@ -6031,14 +6101,6 @@ export declare interface AfmActionsApiInterface {
|
|
|
6031
6101
|
* @memberof ActionsApiInterface
|
|
6032
6102
|
*/
|
|
6033
6103
|
getWorkflowStatus(requestParameters: ActionsApiGetWorkflowStatusRequest, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6034
|
-
/**
|
|
6035
|
-
*
|
|
6036
|
-
* @param {ActionsApiGetWorkflowStatus1Request} requestParameters Request parameters.
|
|
6037
|
-
* @param {*} [options] Override http request option.
|
|
6038
|
-
* @throws {RequiredError}
|
|
6039
|
-
* @memberof ActionsApiInterface
|
|
6040
|
-
*/
|
|
6041
|
-
getWorkflowStatus1(requestParameters: ActionsApiGetWorkflowStatus1Request, options?: AxiosRequestConfig): AxiosPromise<WorkflowStatusResponseDto>;
|
|
6042
6104
|
/**
|
|
6043
6105
|
* (EXPERIMENTAL) Computes key driver analysis for the provided execution definition.
|
|
6044
6106
|
* @summary (EXPERIMENTAL) Compute key driver analysis
|
|
@@ -6193,16 +6255,6 @@ export declare interface AfmActionsApiInterface {
|
|
|
6193
6255
|
* @memberof ActionsApiInterface
|
|
6194
6256
|
*/
|
|
6195
6257
|
triggerQualityIssuesCalculation(requestParameters: ActionsApiTriggerQualityIssuesCalculationRequest, options?: AxiosRequestConfig): AxiosPromise<AfmTriggerQualityIssuesCalculationResponse>;
|
|
6196
|
-
/**
|
|
6197
|
-
*
|
|
6198
|
-
* @param {ActionsApiUserFeedbackRequest} requestParameters Request parameters.
|
|
6199
|
-
* @param {*} [options] Override http request option.
|
|
6200
|
-
* @throws {RequiredError}
|
|
6201
|
-
* @memberof ActionsApiInterface
|
|
6202
|
-
*/
|
|
6203
|
-
userFeedback(requestParameters: ActionsApiUserFeedbackRequest, options?: AxiosRequestConfig): AxiosPromise<{
|
|
6204
|
-
[key: string]: string;
|
|
6205
|
-
}>;
|
|
6206
6258
|
/**
|
|
6207
6259
|
* Permanently removed. Use POST /api/v1/actions/ai/llmProvider/test instead. Always returns 410 Gone.
|
|
6208
6260
|
* @summary Validate LLM Endpoint (Removed)
|
|
@@ -10742,6 +10794,7 @@ export declare const AiObjectType: {
|
|
|
10742
10794
|
readonly VISUALIZATION: "visualization";
|
|
10743
10795
|
readonly DASHBOARD: "dashboard";
|
|
10744
10796
|
readonly FILTER_CONTEXT: "filter_context";
|
|
10797
|
+
readonly PARAMETER: "parameter";
|
|
10745
10798
|
};
|
|
10746
10799
|
|
|
10747
10800
|
export declare type AiObjectType = typeof AiObjectType[keyof typeof AiObjectType];
|
|
@@ -11105,6 +11158,7 @@ declare interface AiSummarizeRequest {
|
|
|
11105
11158
|
'visualizations'?: Array<string> | null;
|
|
11106
11159
|
'filterContext'?: Array<AiSummarizeRequestFilterContextInner> | null;
|
|
11107
11160
|
'dashboardId': string;
|
|
11161
|
+
'tabId'?: string | null;
|
|
11108
11162
|
'formatHint'?: string | null;
|
|
11109
11163
|
}
|
|
11110
11164
|
export { AiSummarizeRequest }
|
|
@@ -11121,6 +11175,7 @@ declare interface AiSummarizeResponse {
|
|
|
11121
11175
|
'visualizationsIncluded': Array<AiVisualizationIncludedResponse>;
|
|
11122
11176
|
'visualizationsExcluded': Array<AiVisualizationExcludedResponse>;
|
|
11123
11177
|
'generatedAt': string;
|
|
11178
|
+
'tabId'?: string | null;
|
|
11124
11179
|
}
|
|
11125
11180
|
export { AiSummarizeResponse }
|
|
11126
11181
|
export { AiSummarizeResponse as GenAiApiSummarizeResponse }
|
|
@@ -11253,6 +11308,7 @@ export declare interface AiUserContextRichTextWidgetDescriptor {
|
|
|
11253
11308
|
'title': string;
|
|
11254
11309
|
'filters'?: Array<AiVisualizationFilter> | null;
|
|
11255
11310
|
'widgetType': AiUserContextRichTextWidgetDescriptorWidgetTypeEnum;
|
|
11311
|
+
'content'?: string | null;
|
|
11256
11312
|
}
|
|
11257
11313
|
|
|
11258
11314
|
export declare type AiUserContextRichTextWidgetDescriptorWidgetTypeEnum = 'richText';
|
|
@@ -11280,6 +11336,7 @@ export declare interface AiUserContextWidgetDescriptor {
|
|
|
11280
11336
|
'widgetType': AiUserContextWidgetDescriptorWidgetTypeEnum;
|
|
11281
11337
|
'resultId'?: string;
|
|
11282
11338
|
'visualizationId': string;
|
|
11339
|
+
'content'?: string;
|
|
11283
11340
|
'activeVisualizationId': string;
|
|
11284
11341
|
'visualizationIds'?: Array<string>;
|
|
11285
11342
|
}
|
|
@@ -17444,6 +17501,24 @@ export declare interface AutomationDashboardMeasureValueFilterDashboardMeasureVa
|
|
|
17444
17501
|
'localIdentifier'?: string;
|
|
17445
17502
|
}
|
|
17446
17503
|
|
|
17504
|
+
/**
|
|
17505
|
+
* Parameter value override applied to the export. The (id, value) pair drives the execution; the title is FE-supplied for info-sheet display.
|
|
17506
|
+
*/
|
|
17507
|
+
export declare interface AutomationDashboardParameterValue {
|
|
17508
|
+
/**
|
|
17509
|
+
* Identifier of the workspace parameter (matches the parameter entity id).
|
|
17510
|
+
*/
|
|
17511
|
+
'id': string;
|
|
17512
|
+
/**
|
|
17513
|
+
* Value to use for this parameter when executing the export.
|
|
17514
|
+
*/
|
|
17515
|
+
'value': string;
|
|
17516
|
+
/**
|
|
17517
|
+
* Display title of the parameter as the client wants it rendered on the info sheet.
|
|
17518
|
+
*/
|
|
17519
|
+
'title': string;
|
|
17520
|
+
}
|
|
17521
|
+
|
|
17447
17522
|
export declare interface AutomationDashboardTabularExport {
|
|
17448
17523
|
'requestPayload': DashboardTabularExportRequestV2;
|
|
17449
17524
|
}
|
|
@@ -17479,6 +17554,16 @@ export declare interface AutomationDashboardTabularExportRequestV2 {
|
|
|
17479
17554
|
*/
|
|
17480
17555
|
'widgetIds'?: Array<string>;
|
|
17481
17556
|
'settings'?: AutomationDashboardExportSettings;
|
|
17557
|
+
/**
|
|
17558
|
+
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
17559
|
+
*/
|
|
17560
|
+
'dashboardParametersOverride'?: Array<AutomationDashboardParameterValue>;
|
|
17561
|
+
/**
|
|
17562
|
+
* Map of tab-specific parameter overrides. Key is tabId, value is a list of (id, value, title) entries that override the dashboard-level parameters for that tab only. Mirrors dashboardTabsFiltersOverrides. When a tab is present in this map, its entries take precedence over dashboardParametersOverride for that tab\'s executions and info-sheet display.
|
|
17563
|
+
*/
|
|
17564
|
+
'dashboardTabsParametersOverrides'?: {
|
|
17565
|
+
[key: string]: Array<AutomationDashboardParameterValue>;
|
|
17566
|
+
};
|
|
17482
17567
|
}
|
|
17483
17568
|
|
|
17484
17569
|
export declare type AutomationDashboardTabularExportRequestV2FormatEnum = 'XLSX' | 'PDF';
|
|
@@ -20814,10 +20899,6 @@ export declare interface ChatResult {
|
|
|
20814
20899
|
*/
|
|
20815
20900
|
'chatHistoryInteractionId'?: string;
|
|
20816
20901
|
'reasoning'?: Reasoning;
|
|
20817
|
-
/**
|
|
20818
|
-
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
20819
|
-
*/
|
|
20820
|
-
'toolCallEvents'?: Array<ToolCallEventResult>;
|
|
20821
20902
|
/**
|
|
20822
20903
|
* AI usage metadata returned after the interaction (e.g. current query count vs. entitlement limit).
|
|
20823
20904
|
*/
|
|
@@ -25878,24 +25959,6 @@ export declare interface DashboardSlidesTemplate {
|
|
|
25878
25959
|
|
|
25879
25960
|
export declare type DashboardSlidesTemplateAppliedOnEnum = 'PDF' | 'PPTX';
|
|
25880
25961
|
|
|
25881
|
-
export declare interface DashboardSummaryRequestDto {
|
|
25882
|
-
'dashboardId': string;
|
|
25883
|
-
'customUserPrompt'?: string;
|
|
25884
|
-
'gooddataHost'?: string;
|
|
25885
|
-
'gooddataToken'?: string;
|
|
25886
|
-
'keyMetricIds'?: Array<string>;
|
|
25887
|
-
'referenceQuarter'?: string;
|
|
25888
|
-
'dryRun'?: boolean;
|
|
25889
|
-
'temperature'?: number;
|
|
25890
|
-
'aiModel'?: string;
|
|
25891
|
-
}
|
|
25892
|
-
|
|
25893
|
-
export declare interface DashboardSummaryResponseDto {
|
|
25894
|
-
'runId': string;
|
|
25895
|
-
'status': string;
|
|
25896
|
-
'message': string;
|
|
25897
|
-
}
|
|
25898
|
-
|
|
25899
25962
|
/**
|
|
25900
25963
|
* Export request object describing the export properties for dashboard tabular exports (v2 with dashboardId).
|
|
25901
25964
|
*/
|
|
@@ -25912,22 +25975,12 @@ export declare interface DashboardTabularExportRequestV2 {
|
|
|
25912
25975
|
* List of filters that will be used instead of the default dashboard filters.
|
|
25913
25976
|
*/
|
|
25914
25977
|
'dashboardFiltersOverride'?: Array<DashboardFilter>;
|
|
25915
|
-
/**
|
|
25916
|
-
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
25917
|
-
*/
|
|
25918
|
-
'dashboardParametersOverride'?: Array<DashboardParameterValue>;
|
|
25919
25978
|
/**
|
|
25920
25979
|
* Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
|
|
25921
25980
|
*/
|
|
25922
25981
|
'dashboardTabsFiltersOverrides'?: {
|
|
25923
25982
|
[key: string]: Array<DashboardFilter>;
|
|
25924
25983
|
};
|
|
25925
|
-
/**
|
|
25926
|
-
* Map of tab-specific parameter overrides. Key is tabId, value is a list of (id, value, title) entries that override the dashboard-level parameters for that tab only. Mirrors dashboardTabsFiltersOverrides. When a tab is present in this map, its entries take precedence over dashboardParametersOverride for that tab\'s executions and info-sheet display.
|
|
25927
|
-
*/
|
|
25928
|
-
'dashboardTabsParametersOverrides'?: {
|
|
25929
|
-
[key: string]: Array<DashboardParameterValue>;
|
|
25930
|
-
};
|
|
25931
25984
|
/**
|
|
25932
25985
|
* Dashboard identifier
|
|
25933
25986
|
*/
|
|
@@ -25937,6 +25990,16 @@ export declare interface DashboardTabularExportRequestV2 {
|
|
|
25937
25990
|
*/
|
|
25938
25991
|
'widgetIds'?: Array<string>;
|
|
25939
25992
|
'settings'?: DashboardExportSettings;
|
|
25993
|
+
/**
|
|
25994
|
+
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
25995
|
+
*/
|
|
25996
|
+
'dashboardParametersOverride'?: Array<DashboardParameterValue>;
|
|
25997
|
+
/**
|
|
25998
|
+
* Map of tab-specific parameter overrides. Key is tabId, value is a list of (id, value, title) entries that override the dashboard-level parameters for that tab only. Mirrors dashboardTabsFiltersOverrides. When a tab is present in this map, its entries take precedence over dashboardParametersOverride for that tab\'s executions and info-sheet display.
|
|
25999
|
+
*/
|
|
26000
|
+
'dashboardTabsParametersOverrides'?: {
|
|
26001
|
+
[key: string]: Array<DashboardParameterValue>;
|
|
26002
|
+
};
|
|
25940
26003
|
}
|
|
25941
26004
|
|
|
25942
26005
|
export declare type DashboardTabularExportRequestV2FormatEnum = 'XLSX' | 'PDF';
|
|
@@ -30868,7 +30931,7 @@ export declare interface DeclarativeDataSources {
|
|
|
30868
30931
|
'dataSources': Array<DeclarativeDataSource>;
|
|
30869
30932
|
}
|
|
30870
30933
|
|
|
30871
|
-
export declare type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
30934
|
+
export declare type DeclarativeDataSourceTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
30872
30935
|
|
|
30873
30936
|
/**
|
|
30874
30937
|
* A date dataset.
|
|
@@ -31673,7 +31736,7 @@ export declare interface DeclarativeSetting {
|
|
|
31673
31736
|
'type'?: DeclarativeSettingTypeEnum;
|
|
31674
31737
|
}
|
|
31675
31738
|
|
|
31676
|
-
export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | '
|
|
31739
|
+
export declare type DeclarativeSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
31677
31740
|
|
|
31678
31741
|
export declare interface DeclarativeSingleWorkspacePermission {
|
|
31679
31742
|
/**
|
|
@@ -32510,6 +32573,15 @@ export declare type ElementsResponseGranularityEnum = 'MINUTE' | 'HOUR' | 'DAY'
|
|
|
32510
32573
|
* @extends {BaseAPI}
|
|
32511
32574
|
*/
|
|
32512
32575
|
export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiInterface {
|
|
32576
|
+
/**
|
|
32577
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
32578
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
32579
|
+
* @param {*} [options] Override http request option.
|
|
32580
|
+
* @deprecated
|
|
32581
|
+
* @throws {RequiredError}
|
|
32582
|
+
* @memberof EntitiesApi
|
|
32583
|
+
*/
|
|
32584
|
+
createEntity(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
32513
32585
|
/**
|
|
32514
32586
|
* AI Agent - behavior configuration for AI assistants
|
|
32515
32587
|
* @summary Post Agent entities
|
|
@@ -32690,16 +32762,6 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
32690
32762
|
* @memberof EntitiesApi
|
|
32691
32763
|
*/
|
|
32692
32764
|
createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
32693
|
-
/**
|
|
32694
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
32695
|
-
* @summary Post LLM endpoint entities
|
|
32696
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
32697
|
-
* @param {*} [options] Override http request option.
|
|
32698
|
-
* @deprecated
|
|
32699
|
-
* @throws {RequiredError}
|
|
32700
|
-
* @memberof EntitiesApi
|
|
32701
|
-
*/
|
|
32702
|
-
createEntityLlmEndpoints(requestParameters: EntitiesApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
32703
32765
|
/**
|
|
32704
32766
|
* LLM Provider - connection configuration for LLM services
|
|
32705
32767
|
* @summary Post LLM Provider entities
|
|
@@ -32844,6 +32906,16 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
32844
32906
|
* @memberof EntitiesApi
|
|
32845
32907
|
*/
|
|
32846
32908
|
createEntityWorkspaces(requestParameters: EntitiesApiCreateEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
32909
|
+
/**
|
|
32910
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
32911
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
32912
|
+
* @param {EntitiesApiDeleteEntityRequest} requestParameters Request parameters.
|
|
32913
|
+
* @param {*} [options] Override http request option.
|
|
32914
|
+
* @deprecated
|
|
32915
|
+
* @throws {RequiredError}
|
|
32916
|
+
* @memberof EntitiesApi
|
|
32917
|
+
*/
|
|
32918
|
+
deleteEntity(requestParameters: EntitiesApiDeleteEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
32847
32919
|
/**
|
|
32848
32920
|
*
|
|
32849
32921
|
* @summary Delete Agent entity
|
|
@@ -33024,16 +33096,6 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33024
33096
|
* @memberof EntitiesApi
|
|
33025
33097
|
*/
|
|
33026
33098
|
deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
33027
|
-
/**
|
|
33028
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
33029
|
-
* @summary Delete LLM endpoint entity
|
|
33030
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
33031
|
-
* @param {*} [options] Override http request option.
|
|
33032
|
-
* @deprecated
|
|
33033
|
-
* @throws {RequiredError}
|
|
33034
|
-
* @memberof EntitiesApi
|
|
33035
|
-
*/
|
|
33036
|
-
deleteEntityLlmEndpoints(requestParameters: EntitiesApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
33037
33099
|
/**
|
|
33038
33100
|
*
|
|
33039
33101
|
* @summary Delete LLM Provider entity
|
|
@@ -33187,6 +33249,15 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33187
33249
|
* @memberof EntitiesApi
|
|
33188
33250
|
*/
|
|
33189
33251
|
getAllAutomationsWorkspaceAutomations(requestParameters?: EntitiesApiGetAllAutomationsWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceAutomationOutList>;
|
|
33252
|
+
/**
|
|
33253
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
33254
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
33255
|
+
* @param {*} [options] Override http request option.
|
|
33256
|
+
* @deprecated
|
|
33257
|
+
* @throws {RequiredError}
|
|
33258
|
+
* @memberof EntitiesApi
|
|
33259
|
+
*/
|
|
33260
|
+
getAllEntities(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
33190
33261
|
/**
|
|
33191
33262
|
*
|
|
33192
33263
|
* @summary Get all Agent entities
|
|
@@ -33430,16 +33501,6 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33430
33501
|
* @memberof EntitiesApi
|
|
33431
33502
|
*/
|
|
33432
33503
|
getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
33433
|
-
/**
|
|
33434
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
33435
|
-
* @summary Get all LLM endpoint entities
|
|
33436
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
33437
|
-
* @param {*} [options] Override http request option.
|
|
33438
|
-
* @deprecated
|
|
33439
|
-
* @throws {RequiredError}
|
|
33440
|
-
* @memberof EntitiesApi
|
|
33441
|
-
*/
|
|
33442
|
-
getAllEntitiesLlmEndpoints(requestParameters?: EntitiesApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
33443
33504
|
/**
|
|
33444
33505
|
*
|
|
33445
33506
|
* @summary Get all LLM Provider entities
|
|
@@ -33620,6 +33681,16 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33620
33681
|
getDataSourceDrivers(options?: AxiosRequestConfig): AxiosPromise<{
|
|
33621
33682
|
[key: string]: string;
|
|
33622
33683
|
}>;
|
|
33684
|
+
/**
|
|
33685
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
33686
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
33687
|
+
* @param {EntitiesApiGetEntityRequest} requestParameters Request parameters.
|
|
33688
|
+
* @param {*} [options] Override http request option.
|
|
33689
|
+
* @deprecated
|
|
33690
|
+
* @throws {RequiredError}
|
|
33691
|
+
* @memberof EntitiesApi
|
|
33692
|
+
*/
|
|
33693
|
+
getEntity(requestParameters: EntitiesApiGetEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
33623
33694
|
/**
|
|
33624
33695
|
*
|
|
33625
33696
|
* @summary Get Agent entity
|
|
@@ -33872,16 +33943,6 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
33872
33943
|
* @memberof EntitiesApi
|
|
33873
33944
|
*/
|
|
33874
33945
|
getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
33875
|
-
/**
|
|
33876
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
33877
|
-
* @summary Get LLM endpoint entity
|
|
33878
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
33879
|
-
* @param {*} [options] Override http request option.
|
|
33880
|
-
* @deprecated
|
|
33881
|
-
* @throws {RequiredError}
|
|
33882
|
-
* @memberof EntitiesApi
|
|
33883
|
-
*/
|
|
33884
|
-
getEntityLlmEndpoints(requestParameters: EntitiesApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
33885
33946
|
/**
|
|
33886
33947
|
*
|
|
33887
33948
|
* @summary Get LLM Provider entity
|
|
@@ -34062,6 +34123,16 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
34062
34123
|
* @memberof EntitiesApi
|
|
34063
34124
|
*/
|
|
34064
34125
|
getOrganization(requestParameters?: EntitiesApiGetOrganizationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
34126
|
+
/**
|
|
34127
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
34128
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
34129
|
+
* @param {EntitiesApiPatchEntityRequest} requestParameters Request parameters.
|
|
34130
|
+
* @param {*} [options] Override http request option.
|
|
34131
|
+
* @deprecated
|
|
34132
|
+
* @throws {RequiredError}
|
|
34133
|
+
* @memberof EntitiesApi
|
|
34134
|
+
*/
|
|
34135
|
+
patchEntity(requestParameters: EntitiesApiPatchEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
34065
34136
|
/**
|
|
34066
34137
|
*
|
|
34067
34138
|
* @summary Patch Agent entity
|
|
@@ -34260,16 +34331,6 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
34260
34331
|
* @memberof EntitiesApi
|
|
34261
34332
|
*/
|
|
34262
34333
|
patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
34263
|
-
/**
|
|
34264
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
34265
|
-
* @summary Patch LLM endpoint entity
|
|
34266
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
34267
|
-
* @param {*} [options] Override http request option.
|
|
34268
|
-
* @deprecated
|
|
34269
|
-
* @throws {RequiredError}
|
|
34270
|
-
* @memberof EntitiesApi
|
|
34271
|
-
*/
|
|
34272
|
-
patchEntityLlmEndpoints(requestParameters: EntitiesApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
34273
34334
|
/**
|
|
34274
34335
|
*
|
|
34275
34336
|
* @summary Patch LLM Provider entity
|
|
@@ -34621,6 +34682,16 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
34621
34682
|
* @memberof EntitiesApi
|
|
34622
34683
|
*/
|
|
34623
34684
|
searchEntitiesWorkspaceSettings(requestParameters: EntitiesApiSearchEntitiesWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutList>;
|
|
34685
|
+
/**
|
|
34686
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
34687
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
34688
|
+
* @param {EntitiesApiUpdateEntityRequest} requestParameters Request parameters.
|
|
34689
|
+
* @param {*} [options] Override http request option.
|
|
34690
|
+
* @deprecated
|
|
34691
|
+
* @throws {RequiredError}
|
|
34692
|
+
* @memberof EntitiesApi
|
|
34693
|
+
*/
|
|
34694
|
+
updateEntity(requestParameters: EntitiesApiUpdateEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
34624
34695
|
/**
|
|
34625
34696
|
*
|
|
34626
34697
|
* @summary Put Agent entity
|
|
@@ -34801,16 +34872,6 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
34801
34872
|
* @memberof EntitiesApi
|
|
34802
34873
|
*/
|
|
34803
34874
|
updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
34804
|
-
/**
|
|
34805
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
34806
|
-
* @summary PUT LLM endpoint entity
|
|
34807
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
34808
|
-
* @param {*} [options] Override http request option.
|
|
34809
|
-
* @deprecated
|
|
34810
|
-
* @throws {RequiredError}
|
|
34811
|
-
* @memberof EntitiesApi
|
|
34812
|
-
*/
|
|
34813
|
-
updateEntityLlmEndpoints(requestParameters: EntitiesApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
34814
34875
|
/**
|
|
34815
34876
|
*
|
|
34816
34877
|
* @summary PUT LLM Provider entity
|
|
@@ -35182,18 +35243,6 @@ export declare function EntitiesApi_CreateEntityJwks(axios: AxiosInstance, baseP
|
|
|
35182
35243
|
*/
|
|
35183
35244
|
export declare function EntitiesApi_CreateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
35184
35245
|
|
|
35185
|
-
/**
|
|
35186
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
35187
|
-
* @summary Post LLM endpoint entities
|
|
35188
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
35189
|
-
* @param {string} basePath Base path.
|
|
35190
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
35191
|
-
* @param {*} [options] Override http request option.
|
|
35192
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
35193
|
-
* @throws {RequiredError}
|
|
35194
|
-
*/
|
|
35195
|
-
export declare function EntitiesApi_CreateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
35196
|
-
|
|
35197
35246
|
/**
|
|
35198
35247
|
* LLM Provider - connection configuration for LLM services
|
|
35199
35248
|
* @summary Post LLM Provider entities
|
|
@@ -35602,18 +35651,6 @@ export declare function EntitiesApi_DeleteEntityJwks(axios: AxiosInstance, baseP
|
|
|
35602
35651
|
*/
|
|
35603
35652
|
export declare function EntitiesApi_DeleteEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
35604
35653
|
|
|
35605
|
-
/**
|
|
35606
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
35607
|
-
* @summary Delete LLM endpoint entity
|
|
35608
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
35609
|
-
* @param {string} basePath Base path.
|
|
35610
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
35611
|
-
* @param {*} [options] Override http request option.
|
|
35612
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
35613
|
-
* @throws {RequiredError}
|
|
35614
|
-
*/
|
|
35615
|
-
export declare function EntitiesApi_DeleteEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
35616
|
-
|
|
35617
35654
|
/**
|
|
35618
35655
|
*
|
|
35619
35656
|
* @summary Delete LLM Provider entity
|
|
@@ -36118,18 +36155,6 @@ export declare function EntitiesApi_GetAllEntitiesKnowledgeRecommendations(axios
|
|
|
36118
36155
|
*/
|
|
36119
36156
|
export declare function EntitiesApi_GetAllEntitiesLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutList>;
|
|
36120
36157
|
|
|
36121
|
-
/**
|
|
36122
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
36123
|
-
* @summary Get all LLM endpoint entities
|
|
36124
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
36125
|
-
* @param {string} basePath Base path.
|
|
36126
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
36127
|
-
* @param {*} [options] Override http request option.
|
|
36128
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
36129
|
-
* @throws {RequiredError}
|
|
36130
|
-
*/
|
|
36131
|
-
export declare function EntitiesApi_GetAllEntitiesLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
36132
|
-
|
|
36133
36158
|
/**
|
|
36134
36159
|
*
|
|
36135
36160
|
* @summary Get all LLM Provider entities
|
|
@@ -36682,18 +36707,6 @@ export declare function EntitiesApi_GetEntityKnowledgeRecommendations(axios: Axi
|
|
|
36682
36707
|
*/
|
|
36683
36708
|
export declare function EntitiesApi_GetEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutDocument>;
|
|
36684
36709
|
|
|
36685
|
-
/**
|
|
36686
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
36687
|
-
* @summary Get LLM endpoint entity
|
|
36688
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
36689
|
-
* @param {string} basePath Base path.
|
|
36690
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
36691
|
-
* @param {*} [options] Override http request option.
|
|
36692
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
36693
|
-
* @throws {RequiredError}
|
|
36694
|
-
*/
|
|
36695
|
-
export declare function EntitiesApi_GetEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
36696
|
-
|
|
36697
36710
|
/**
|
|
36698
36711
|
*
|
|
36699
36712
|
* @summary Get LLM Provider entity
|
|
@@ -37198,18 +37211,6 @@ export declare function EntitiesApi_PatchEntityKnowledgeRecommendations(axios: A
|
|
|
37198
37211
|
*/
|
|
37199
37212
|
export declare function EntitiesApi_PatchEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutDocument>;
|
|
37200
37213
|
|
|
37201
|
-
/**
|
|
37202
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
37203
|
-
* @summary Patch LLM endpoint entity
|
|
37204
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
37205
|
-
* @param {string} basePath Base path.
|
|
37206
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
37207
|
-
* @param {*} [options] Override http request option.
|
|
37208
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
37209
|
-
* @throws {RequiredError}
|
|
37210
|
-
*/
|
|
37211
|
-
export declare function EntitiesApi_PatchEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
37212
|
-
|
|
37213
37214
|
/**
|
|
37214
37215
|
*
|
|
37215
37216
|
* @summary Patch LLM Provider entity
|
|
@@ -37894,18 +37895,6 @@ export declare function EntitiesApi_UpdateEntityJwks(axios: AxiosInstance, baseP
|
|
|
37894
37895
|
*/
|
|
37895
37896
|
export declare function EntitiesApi_UpdateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
37896
37897
|
|
|
37897
|
-
/**
|
|
37898
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
37899
|
-
* @summary PUT LLM endpoint entity
|
|
37900
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
37901
|
-
* @param {string} basePath Base path.
|
|
37902
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
37903
|
-
* @param {*} [options] Override http request option.
|
|
37904
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
37905
|
-
* @throws {RequiredError}
|
|
37906
|
-
*/
|
|
37907
|
-
export declare function EntitiesApi_UpdateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
37908
|
-
|
|
37909
37898
|
/**
|
|
37910
37899
|
*
|
|
37911
37900
|
* @summary PUT LLM Provider entity
|
|
@@ -38318,16 +38307,6 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityJwks(jsonApiJwk
|
|
|
38318
38307
|
*/
|
|
38319
38308
|
export declare function EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations(workspaceId: string, jsonApiKnowledgeRecommendationPostOptionalIdDocument: JsonApiKnowledgeRecommendationPostOptionalIdDocument, include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38320
38309
|
|
|
38321
|
-
/**
|
|
38322
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
38323
|
-
* @summary Post LLM endpoint entities
|
|
38324
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
38325
|
-
* @param {*} [options] Override http request option.
|
|
38326
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
38327
|
-
* @throws {RequiredError}
|
|
38328
|
-
*/
|
|
38329
|
-
export declare function EntitiesApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38330
|
-
|
|
38331
38310
|
/**
|
|
38332
38311
|
* LLM Provider - connection configuration for LLM services
|
|
38333
38312
|
* @summary Post LLM Provider entities
|
|
@@ -38706,16 +38685,6 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id: string
|
|
|
38706
38685
|
*/
|
|
38707
38686
|
export declare function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(workspaceId: string, objectId: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38708
38687
|
|
|
38709
|
-
/**
|
|
38710
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
38711
|
-
* @summary Delete LLM endpoint entity
|
|
38712
|
-
* @param {string} id
|
|
38713
|
-
* @param {*} [options] Override http request option.
|
|
38714
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
38715
|
-
* @throws {RequiredError}
|
|
38716
|
-
*/
|
|
38717
|
-
export declare function EntitiesApiAxiosParamCreator_DeleteEntityLlmEndpoints(id: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
38718
|
-
|
|
38719
38688
|
/**
|
|
38720
38689
|
*
|
|
38721
38690
|
* @summary Delete LLM Provider entity
|
|
@@ -39307,20 +39276,6 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesKnowledgeReco
|
|
|
39307
39276
|
*/
|
|
39308
39277
|
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39309
39278
|
|
|
39310
|
-
/**
|
|
39311
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
39312
|
-
* @summary Get all LLM endpoint entities
|
|
39313
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
39314
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
39315
|
-
* @param {number} [size] The size of the page to be returned
|
|
39316
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
39317
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
39318
|
-
* @param {*} [options] Override http request option.
|
|
39319
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
39320
|
-
* @throws {RequiredError}
|
|
39321
|
-
*/
|
|
39322
|
-
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39323
|
-
|
|
39324
39279
|
/**
|
|
39325
39280
|
*
|
|
39326
39281
|
* @summary Get all LLM Provider entities
|
|
@@ -39970,17 +39925,6 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityKnowledgeRecommend
|
|
|
39970
39925
|
*/
|
|
39971
39926
|
export declare function EntitiesApiAxiosParamCreator_GetEntityLabels(workspaceId: string, objectId: string, filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39972
39927
|
|
|
39973
|
-
/**
|
|
39974
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
39975
|
-
* @summary Get LLM endpoint entity
|
|
39976
|
-
* @param {string} id
|
|
39977
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
39978
|
-
* @param {*} [options] Override http request option.
|
|
39979
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
39980
|
-
* @throws {RequiredError}
|
|
39981
|
-
*/
|
|
39982
|
-
export declare function EntitiesApiAxiosParamCreator_GetEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
39983
|
-
|
|
39984
39928
|
/**
|
|
39985
39929
|
*
|
|
39986
39930
|
* @summary Get LLM Provider entity
|
|
@@ -40528,18 +40472,6 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityKnowledgeRecomme
|
|
|
40528
40472
|
*/
|
|
40529
40473
|
export declare function EntitiesApiAxiosParamCreator_PatchEntityLabels(workspaceId: string, objectId: string, jsonApiLabelPatchDocument: JsonApiLabelPatchDocument, filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
40530
40474
|
|
|
40531
|
-
/**
|
|
40532
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
40533
|
-
* @summary Patch LLM endpoint entity
|
|
40534
|
-
* @param {string} id
|
|
40535
|
-
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
40536
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
40537
|
-
* @param {*} [options] Override http request option.
|
|
40538
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
40539
|
-
* @throws {RequiredError}
|
|
40540
|
-
*/
|
|
40541
|
-
export declare function EntitiesApiAxiosParamCreator_PatchEntityLlmEndpoints(id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
40542
|
-
|
|
40543
40475
|
/**
|
|
40544
40476
|
*
|
|
40545
40477
|
* @summary Patch LLM Provider entity
|
|
@@ -41284,18 +41216,6 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityJwks(id: string
|
|
|
41284
41216
|
*/
|
|
41285
41217
|
export declare function EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations(workspaceId: string, objectId: string, jsonApiKnowledgeRecommendationInDocument: JsonApiKnowledgeRecommendationInDocument, filter?: string, include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
41286
41218
|
|
|
41287
|
-
/**
|
|
41288
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
41289
|
-
* @summary PUT LLM endpoint entity
|
|
41290
|
-
* @param {string} id
|
|
41291
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
41292
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
41293
|
-
* @param {*} [options] Override http request option.
|
|
41294
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
41295
|
-
* @throws {RequiredError}
|
|
41296
|
-
*/
|
|
41297
|
-
export declare function EntitiesApiAxiosParamCreator_UpdateEntityLlmEndpoints(id: string, jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
41298
|
-
|
|
41299
41219
|
/**
|
|
41300
41220
|
*
|
|
41301
41221
|
* @summary PUT LLM Provider entity
|
|
@@ -41980,20 +41900,6 @@ export declare interface EntitiesApiCreateEntityKnowledgeRecommendationsRequest
|
|
|
41980
41900
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
41981
41901
|
}
|
|
41982
41902
|
|
|
41983
|
-
/**
|
|
41984
|
-
* Request parameters for createEntityLlmEndpoints operation in EntitiesApi.
|
|
41985
|
-
* @export
|
|
41986
|
-
* @interface EntitiesApiCreateEntityLlmEndpointsRequest
|
|
41987
|
-
*/
|
|
41988
|
-
export declare interface EntitiesApiCreateEntityLlmEndpointsRequest {
|
|
41989
|
-
/**
|
|
41990
|
-
*
|
|
41991
|
-
* @type {JsonApiLlmEndpointInDocument}
|
|
41992
|
-
* @memberof EntitiesApiCreateEntityLlmEndpoints
|
|
41993
|
-
*/
|
|
41994
|
-
readonly jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument;
|
|
41995
|
-
}
|
|
41996
|
-
|
|
41997
41903
|
/**
|
|
41998
41904
|
* Request parameters for createEntityLlmProviders operation in EntitiesApi.
|
|
41999
41905
|
* @export
|
|
@@ -42732,20 +42638,6 @@ export declare interface EntitiesApiDeleteEntityKnowledgeRecommendationsRequest
|
|
|
42732
42638
|
readonly objectId: string;
|
|
42733
42639
|
}
|
|
42734
42640
|
|
|
42735
|
-
/**
|
|
42736
|
-
* Request parameters for deleteEntityLlmEndpoints operation in EntitiesApi.
|
|
42737
|
-
* @export
|
|
42738
|
-
* @interface EntitiesApiDeleteEntityLlmEndpointsRequest
|
|
42739
|
-
*/
|
|
42740
|
-
export declare interface EntitiesApiDeleteEntityLlmEndpointsRequest {
|
|
42741
|
-
/**
|
|
42742
|
-
*
|
|
42743
|
-
* @type {string}
|
|
42744
|
-
* @memberof EntitiesApiDeleteEntityLlmEndpoints
|
|
42745
|
-
*/
|
|
42746
|
-
readonly id: string;
|
|
42747
|
-
}
|
|
42748
|
-
|
|
42749
42641
|
/**
|
|
42750
42642
|
* Request parameters for deleteEntityLlmProviders operation in EntitiesApi.
|
|
42751
42643
|
* @export
|
|
@@ -42848,6 +42740,20 @@ export declare interface EntitiesApiDeleteEntityParametersRequest {
|
|
|
42848
42740
|
readonly objectId: string;
|
|
42849
42741
|
}
|
|
42850
42742
|
|
|
42743
|
+
/**
|
|
42744
|
+
* Request parameters for deleteEntity operation in EntitiesApi.
|
|
42745
|
+
* @export
|
|
42746
|
+
* @interface EntitiesApiDeleteEntityRequest
|
|
42747
|
+
*/
|
|
42748
|
+
export declare interface EntitiesApiDeleteEntityRequest {
|
|
42749
|
+
/**
|
|
42750
|
+
*
|
|
42751
|
+
* @type {string}
|
|
42752
|
+
* @memberof EntitiesApiDeleteEntity
|
|
42753
|
+
*/
|
|
42754
|
+
readonly id: string;
|
|
42755
|
+
}
|
|
42756
|
+
|
|
42851
42757
|
/**
|
|
42852
42758
|
* Request parameters for deleteEntityThemes operation in EntitiesApi.
|
|
42853
42759
|
* @export
|
|
@@ -44448,44 +44354,6 @@ export declare interface EntitiesApiGetAllEntitiesLabelsRequest {
|
|
|
44448
44354
|
readonly metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>;
|
|
44449
44355
|
}
|
|
44450
44356
|
|
|
44451
|
-
/**
|
|
44452
|
-
* Request parameters for getAllEntitiesLlmEndpoints operation in EntitiesApi.
|
|
44453
|
-
* @export
|
|
44454
|
-
* @interface EntitiesApiGetAllEntitiesLlmEndpointsRequest
|
|
44455
|
-
*/
|
|
44456
|
-
export declare interface EntitiesApiGetAllEntitiesLlmEndpointsRequest {
|
|
44457
|
-
/**
|
|
44458
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
44459
|
-
* @type {string}
|
|
44460
|
-
* @memberof EntitiesApiGetAllEntitiesLlmEndpoints
|
|
44461
|
-
*/
|
|
44462
|
-
readonly filter?: string;
|
|
44463
|
-
/**
|
|
44464
|
-
* Zero-based page index (0..N)
|
|
44465
|
-
* @type {number}
|
|
44466
|
-
* @memberof EntitiesApiGetAllEntitiesLlmEndpoints
|
|
44467
|
-
*/
|
|
44468
|
-
readonly page?: number;
|
|
44469
|
-
/**
|
|
44470
|
-
* The size of the page to be returned
|
|
44471
|
-
* @type {number}
|
|
44472
|
-
* @memberof EntitiesApiGetAllEntitiesLlmEndpoints
|
|
44473
|
-
*/
|
|
44474
|
-
readonly size?: number;
|
|
44475
|
-
/**
|
|
44476
|
-
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
44477
|
-
* @type {Array<string>}
|
|
44478
|
-
* @memberof EntitiesApiGetAllEntitiesLlmEndpoints
|
|
44479
|
-
*/
|
|
44480
|
-
readonly sort?: Array<string>;
|
|
44481
|
-
/**
|
|
44482
|
-
* Include Meta objects.
|
|
44483
|
-
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
44484
|
-
* @memberof EntitiesApiGetAllEntitiesLlmEndpoints
|
|
44485
|
-
*/
|
|
44486
|
-
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
44487
|
-
}
|
|
44488
|
-
|
|
44489
44357
|
/**
|
|
44490
44358
|
* Request parameters for getAllEntitiesLlmProviders operation in EntitiesApi.
|
|
44491
44359
|
* @export
|
|
@@ -46300,26 +46168,6 @@ export declare interface EntitiesApiGetEntityLabelsRequest {
|
|
|
46300
46168
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
46301
46169
|
}
|
|
46302
46170
|
|
|
46303
|
-
/**
|
|
46304
|
-
* Request parameters for getEntityLlmEndpoints operation in EntitiesApi.
|
|
46305
|
-
* @export
|
|
46306
|
-
* @interface EntitiesApiGetEntityLlmEndpointsRequest
|
|
46307
|
-
*/
|
|
46308
|
-
export declare interface EntitiesApiGetEntityLlmEndpointsRequest {
|
|
46309
|
-
/**
|
|
46310
|
-
*
|
|
46311
|
-
* @type {string}
|
|
46312
|
-
* @memberof EntitiesApiGetEntityLlmEndpoints
|
|
46313
|
-
*/
|
|
46314
|
-
readonly id: string;
|
|
46315
|
-
/**
|
|
46316
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
46317
|
-
* @type {string}
|
|
46318
|
-
* @memberof EntitiesApiGetEntityLlmEndpoints
|
|
46319
|
-
*/
|
|
46320
|
-
readonly filter?: string;
|
|
46321
|
-
}
|
|
46322
|
-
|
|
46323
46171
|
/**
|
|
46324
46172
|
* Request parameters for getEntityLlmProviders operation in EntitiesApi.
|
|
46325
46173
|
* @export
|
|
@@ -46564,6 +46412,20 @@ export declare interface EntitiesApiGetEntityParametersRequest {
|
|
|
46564
46412
|
readonly metaInclude?: Array<'origin' | 'all' | 'ALL'>;
|
|
46565
46413
|
}
|
|
46566
46414
|
|
|
46415
|
+
/**
|
|
46416
|
+
* Request parameters for getEntity operation in EntitiesApi.
|
|
46417
|
+
* @export
|
|
46418
|
+
* @interface EntitiesApiGetEntityRequest
|
|
46419
|
+
*/
|
|
46420
|
+
export declare interface EntitiesApiGetEntityRequest {
|
|
46421
|
+
/**
|
|
46422
|
+
*
|
|
46423
|
+
* @type {string}
|
|
46424
|
+
* @memberof EntitiesApiGetEntity
|
|
46425
|
+
*/
|
|
46426
|
+
readonly id: string;
|
|
46427
|
+
}
|
|
46428
|
+
|
|
46567
46429
|
/**
|
|
46568
46430
|
* Request parameters for getEntityThemes operation in EntitiesApi.
|
|
46569
46431
|
* @export
|
|
@@ -46948,6 +46810,15 @@ export declare interface EntitiesApiGetOrganizationRequest {
|
|
|
46948
46810
|
* @interface EntitiesApi
|
|
46949
46811
|
*/
|
|
46950
46812
|
export declare interface EntitiesApiInterface {
|
|
46813
|
+
/**
|
|
46814
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
46815
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
46816
|
+
* @param {*} [options] Override http request option.
|
|
46817
|
+
* @deprecated
|
|
46818
|
+
* @throws {RequiredError}
|
|
46819
|
+
* @memberof EntitiesApiInterface
|
|
46820
|
+
*/
|
|
46821
|
+
createEntity(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
46951
46822
|
/**
|
|
46952
46823
|
* AI Agent - behavior configuration for AI assistants
|
|
46953
46824
|
* @summary Post Agent entities
|
|
@@ -47128,16 +46999,6 @@ export declare interface EntitiesApiInterface {
|
|
|
47128
46999
|
* @memberof EntitiesApiInterface
|
|
47129
47000
|
*/
|
|
47130
47001
|
createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
47131
|
-
/**
|
|
47132
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
47133
|
-
* @summary Post LLM endpoint entities
|
|
47134
|
-
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
47135
|
-
* @param {*} [options] Override http request option.
|
|
47136
|
-
* @deprecated
|
|
47137
|
-
* @throws {RequiredError}
|
|
47138
|
-
* @memberof EntitiesApiInterface
|
|
47139
|
-
*/
|
|
47140
|
-
createEntityLlmEndpoints(requestParameters: EntitiesApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
47141
47002
|
/**
|
|
47142
47003
|
* LLM Provider - connection configuration for LLM services
|
|
47143
47004
|
* @summary Post LLM Provider entities
|
|
@@ -47282,6 +47143,16 @@ export declare interface EntitiesApiInterface {
|
|
|
47282
47143
|
* @memberof EntitiesApiInterface
|
|
47283
47144
|
*/
|
|
47284
47145
|
createEntityWorkspaces(requestParameters: EntitiesApiCreateEntityWorkspacesRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceOutDocument>;
|
|
47146
|
+
/**
|
|
47147
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
47148
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
47149
|
+
* @param {EntitiesApiDeleteEntityRequest} requestParameters Request parameters.
|
|
47150
|
+
* @param {*} [options] Override http request option.
|
|
47151
|
+
* @deprecated
|
|
47152
|
+
* @throws {RequiredError}
|
|
47153
|
+
* @memberof EntitiesApiInterface
|
|
47154
|
+
*/
|
|
47155
|
+
deleteEntity(requestParameters: EntitiesApiDeleteEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
47285
47156
|
/**
|
|
47286
47157
|
*
|
|
47287
47158
|
* @summary Delete Agent entity
|
|
@@ -47462,16 +47333,6 @@ export declare interface EntitiesApiInterface {
|
|
|
47462
47333
|
* @memberof EntitiesApiInterface
|
|
47463
47334
|
*/
|
|
47464
47335
|
deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
47465
|
-
/**
|
|
47466
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
47467
|
-
* @summary Delete LLM endpoint entity
|
|
47468
|
-
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
47469
|
-
* @param {*} [options] Override http request option.
|
|
47470
|
-
* @deprecated
|
|
47471
|
-
* @throws {RequiredError}
|
|
47472
|
-
* @memberof EntitiesApiInterface
|
|
47473
|
-
*/
|
|
47474
|
-
deleteEntityLlmEndpoints(requestParameters: EntitiesApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
47475
47336
|
/**
|
|
47476
47337
|
*
|
|
47477
47338
|
* @summary Delete LLM Provider entity
|
|
@@ -47625,6 +47486,15 @@ export declare interface EntitiesApiInterface {
|
|
|
47625
47486
|
* @memberof EntitiesApiInterface
|
|
47626
47487
|
*/
|
|
47627
47488
|
getAllAutomationsWorkspaceAutomations(requestParameters: EntitiesApiGetAllAutomationsWorkspaceAutomationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceAutomationOutList>;
|
|
47489
|
+
/**
|
|
47490
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
47491
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
47492
|
+
* @param {*} [options] Override http request option.
|
|
47493
|
+
* @deprecated
|
|
47494
|
+
* @throws {RequiredError}
|
|
47495
|
+
* @memberof EntitiesApiInterface
|
|
47496
|
+
*/
|
|
47497
|
+
getAllEntities(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
47628
47498
|
/**
|
|
47629
47499
|
*
|
|
47630
47500
|
* @summary Get all Agent entities
|
|
@@ -47868,16 +47738,6 @@ export declare interface EntitiesApiInterface {
|
|
|
47868
47738
|
* @memberof EntitiesApiInterface
|
|
47869
47739
|
*/
|
|
47870
47740
|
getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
47871
|
-
/**
|
|
47872
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
47873
|
-
* @summary Get all LLM endpoint entities
|
|
47874
|
-
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
47875
|
-
* @param {*} [options] Override http request option.
|
|
47876
|
-
* @deprecated
|
|
47877
|
-
* @throws {RequiredError}
|
|
47878
|
-
* @memberof EntitiesApiInterface
|
|
47879
|
-
*/
|
|
47880
|
-
getAllEntitiesLlmEndpoints(requestParameters: EntitiesApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
47881
47741
|
/**
|
|
47882
47742
|
*
|
|
47883
47743
|
* @summary Get all LLM Provider entities
|
|
@@ -48058,6 +47918,16 @@ export declare interface EntitiesApiInterface {
|
|
|
48058
47918
|
getDataSourceDrivers(options?: AxiosRequestConfig): AxiosPromise<{
|
|
48059
47919
|
[key: string]: string;
|
|
48060
47920
|
}>;
|
|
47921
|
+
/**
|
|
47922
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
47923
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
47924
|
+
* @param {EntitiesApiGetEntityRequest} requestParameters Request parameters.
|
|
47925
|
+
* @param {*} [options] Override http request option.
|
|
47926
|
+
* @deprecated
|
|
47927
|
+
* @throws {RequiredError}
|
|
47928
|
+
* @memberof EntitiesApiInterface
|
|
47929
|
+
*/
|
|
47930
|
+
getEntity(requestParameters: EntitiesApiGetEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
48061
47931
|
/**
|
|
48062
47932
|
*
|
|
48063
47933
|
* @summary Get Agent entity
|
|
@@ -48310,16 +48180,6 @@ export declare interface EntitiesApiInterface {
|
|
|
48310
48180
|
* @memberof EntitiesApiInterface
|
|
48311
48181
|
*/
|
|
48312
48182
|
getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
48313
|
-
/**
|
|
48314
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
48315
|
-
* @summary Get LLM endpoint entity
|
|
48316
|
-
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
48317
|
-
* @param {*} [options] Override http request option.
|
|
48318
|
-
* @deprecated
|
|
48319
|
-
* @throws {RequiredError}
|
|
48320
|
-
* @memberof EntitiesApiInterface
|
|
48321
|
-
*/
|
|
48322
|
-
getEntityLlmEndpoints(requestParameters: EntitiesApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
48323
48183
|
/**
|
|
48324
48184
|
*
|
|
48325
48185
|
* @summary Get LLM Provider entity
|
|
@@ -48500,6 +48360,16 @@ export declare interface EntitiesApiInterface {
|
|
|
48500
48360
|
* @memberof EntitiesApiInterface
|
|
48501
48361
|
*/
|
|
48502
48362
|
getOrganization(requestParameters: EntitiesApiGetOrganizationRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
48363
|
+
/**
|
|
48364
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
48365
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
48366
|
+
* @param {EntitiesApiPatchEntityRequest} requestParameters Request parameters.
|
|
48367
|
+
* @param {*} [options] Override http request option.
|
|
48368
|
+
* @deprecated
|
|
48369
|
+
* @throws {RequiredError}
|
|
48370
|
+
* @memberof EntitiesApiInterface
|
|
48371
|
+
*/
|
|
48372
|
+
patchEntity(requestParameters: EntitiesApiPatchEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
48503
48373
|
/**
|
|
48504
48374
|
*
|
|
48505
48375
|
* @summary Patch Agent entity
|
|
@@ -48698,16 +48568,6 @@ export declare interface EntitiesApiInterface {
|
|
|
48698
48568
|
* @memberof EntitiesApiInterface
|
|
48699
48569
|
*/
|
|
48700
48570
|
patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
48701
|
-
/**
|
|
48702
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
48703
|
-
* @summary Patch LLM endpoint entity
|
|
48704
|
-
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
48705
|
-
* @param {*} [options] Override http request option.
|
|
48706
|
-
* @deprecated
|
|
48707
|
-
* @throws {RequiredError}
|
|
48708
|
-
* @memberof EntitiesApiInterface
|
|
48709
|
-
*/
|
|
48710
|
-
patchEntityLlmEndpoints(requestParameters: EntitiesApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
48711
48571
|
/**
|
|
48712
48572
|
*
|
|
48713
48573
|
* @summary Patch LLM Provider entity
|
|
@@ -49059,6 +48919,16 @@ export declare interface EntitiesApiInterface {
|
|
|
49059
48919
|
* @memberof EntitiesApiInterface
|
|
49060
48920
|
*/
|
|
49061
48921
|
searchEntitiesWorkspaceSettings(requestParameters: EntitiesApiSearchEntitiesWorkspaceSettingsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiWorkspaceSettingOutList>;
|
|
48922
|
+
/**
|
|
48923
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
48924
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
48925
|
+
* @param {EntitiesApiUpdateEntityRequest} requestParameters Request parameters.
|
|
48926
|
+
* @param {*} [options] Override http request option.
|
|
48927
|
+
* @deprecated
|
|
48928
|
+
* @throws {RequiredError}
|
|
48929
|
+
* @memberof EntitiesApiInterface
|
|
48930
|
+
*/
|
|
48931
|
+
updateEntity(requestParameters: EntitiesApiUpdateEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
49062
48932
|
/**
|
|
49063
48933
|
*
|
|
49064
48934
|
* @summary Put Agent entity
|
|
@@ -49239,16 +49109,6 @@ export declare interface EntitiesApiInterface {
|
|
|
49239
49109
|
* @memberof EntitiesApiInterface
|
|
49240
49110
|
*/
|
|
49241
49111
|
updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
49242
|
-
/**
|
|
49243
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
49244
|
-
* @summary PUT LLM endpoint entity
|
|
49245
|
-
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
49246
|
-
* @param {*} [options] Override http request option.
|
|
49247
|
-
* @deprecated
|
|
49248
|
-
* @throws {RequiredError}
|
|
49249
|
-
* @memberof EntitiesApiInterface
|
|
49250
|
-
*/
|
|
49251
|
-
updateEntityLlmEndpoints(requestParameters: EntitiesApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
49252
49112
|
/**
|
|
49253
49113
|
*
|
|
49254
49114
|
* @summary PUT LLM Provider entity
|
|
@@ -50132,32 +49992,6 @@ export declare interface EntitiesApiPatchEntityLabelsRequest {
|
|
|
50132
49992
|
readonly include?: Array<'attributes' | 'attribute' | 'ALL'>;
|
|
50133
49993
|
}
|
|
50134
49994
|
|
|
50135
|
-
/**
|
|
50136
|
-
* Request parameters for patchEntityLlmEndpoints operation in EntitiesApi.
|
|
50137
|
-
* @export
|
|
50138
|
-
* @interface EntitiesApiPatchEntityLlmEndpointsRequest
|
|
50139
|
-
*/
|
|
50140
|
-
export declare interface EntitiesApiPatchEntityLlmEndpointsRequest {
|
|
50141
|
-
/**
|
|
50142
|
-
*
|
|
50143
|
-
* @type {string}
|
|
50144
|
-
* @memberof EntitiesApiPatchEntityLlmEndpoints
|
|
50145
|
-
*/
|
|
50146
|
-
readonly id: string;
|
|
50147
|
-
/**
|
|
50148
|
-
*
|
|
50149
|
-
* @type {JsonApiLlmEndpointPatchDocument}
|
|
50150
|
-
* @memberof EntitiesApiPatchEntityLlmEndpoints
|
|
50151
|
-
*/
|
|
50152
|
-
readonly jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument;
|
|
50153
|
-
/**
|
|
50154
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
50155
|
-
* @type {string}
|
|
50156
|
-
* @memberof EntitiesApiPatchEntityLlmEndpoints
|
|
50157
|
-
*/
|
|
50158
|
-
readonly filter?: string;
|
|
50159
|
-
}
|
|
50160
|
-
|
|
50161
49995
|
/**
|
|
50162
49996
|
* Request parameters for patchEntityLlmProviders operation in EntitiesApi.
|
|
50163
49997
|
* @export
|
|
@@ -50382,6 +50216,20 @@ export declare interface EntitiesApiPatchEntityParametersRequest {
|
|
|
50382
50216
|
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
50383
50217
|
}
|
|
50384
50218
|
|
|
50219
|
+
/**
|
|
50220
|
+
* Request parameters for patchEntity operation in EntitiesApi.
|
|
50221
|
+
* @export
|
|
50222
|
+
* @interface EntitiesApiPatchEntityRequest
|
|
50223
|
+
*/
|
|
50224
|
+
export declare interface EntitiesApiPatchEntityRequest {
|
|
50225
|
+
/**
|
|
50226
|
+
*
|
|
50227
|
+
* @type {string}
|
|
50228
|
+
* @memberof EntitiesApiPatchEntity
|
|
50229
|
+
*/
|
|
50230
|
+
readonly id: string;
|
|
50231
|
+
}
|
|
50232
|
+
|
|
50385
50233
|
/**
|
|
50386
50234
|
* Request parameters for patchEntityThemes operation in EntitiesApi.
|
|
50387
50235
|
* @export
|
|
@@ -52064,32 +51912,6 @@ export declare interface EntitiesApiUpdateEntityKnowledgeRecommendationsRequest
|
|
|
52064
51912
|
readonly include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>;
|
|
52065
51913
|
}
|
|
52066
51914
|
|
|
52067
|
-
/**
|
|
52068
|
-
* Request parameters for updateEntityLlmEndpoints operation in EntitiesApi.
|
|
52069
|
-
* @export
|
|
52070
|
-
* @interface EntitiesApiUpdateEntityLlmEndpointsRequest
|
|
52071
|
-
*/
|
|
52072
|
-
export declare interface EntitiesApiUpdateEntityLlmEndpointsRequest {
|
|
52073
|
-
/**
|
|
52074
|
-
*
|
|
52075
|
-
* @type {string}
|
|
52076
|
-
* @memberof EntitiesApiUpdateEntityLlmEndpoints
|
|
52077
|
-
*/
|
|
52078
|
-
readonly id: string;
|
|
52079
|
-
/**
|
|
52080
|
-
*
|
|
52081
|
-
* @type {JsonApiLlmEndpointInDocument}
|
|
52082
|
-
* @memberof EntitiesApiUpdateEntityLlmEndpoints
|
|
52083
|
-
*/
|
|
52084
|
-
readonly jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument;
|
|
52085
|
-
/**
|
|
52086
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
52087
|
-
* @type {string}
|
|
52088
|
-
* @memberof EntitiesApiUpdateEntityLlmEndpoints
|
|
52089
|
-
*/
|
|
52090
|
-
readonly filter?: string;
|
|
52091
|
-
}
|
|
52092
|
-
|
|
52093
51915
|
/**
|
|
52094
51916
|
* Request parameters for updateEntityLlmProviders operation in EntitiesApi.
|
|
52095
51917
|
* @export
|
|
@@ -52314,6 +52136,20 @@ export declare interface EntitiesApiUpdateEntityParametersRequest {
|
|
|
52314
52136
|
readonly include?: Array<'userIdentifiers' | 'createdBy' | 'modifiedBy' | 'ALL'>;
|
|
52315
52137
|
}
|
|
52316
52138
|
|
|
52139
|
+
/**
|
|
52140
|
+
* Request parameters for updateEntity operation in EntitiesApi.
|
|
52141
|
+
* @export
|
|
52142
|
+
* @interface EntitiesApiUpdateEntityRequest
|
|
52143
|
+
*/
|
|
52144
|
+
export declare interface EntitiesApiUpdateEntityRequest {
|
|
52145
|
+
/**
|
|
52146
|
+
*
|
|
52147
|
+
* @type {string}
|
|
52148
|
+
* @memberof EntitiesApiUpdateEntity
|
|
52149
|
+
*/
|
|
52150
|
+
readonly id: string;
|
|
52151
|
+
}
|
|
52152
|
+
|
|
52317
52153
|
/**
|
|
52318
52154
|
* Request parameters for updateEntityThemes operation in EntitiesApi.
|
|
52319
52155
|
* @export
|
|
@@ -53923,27 +53759,27 @@ export declare interface ExportDashboardTabularExportRequest {
|
|
|
53923
53759
|
* List of filters that will be used instead of the default dashboard filters.
|
|
53924
53760
|
*/
|
|
53925
53761
|
'dashboardFiltersOverride'?: Array<ExportDashboardFilter>;
|
|
53926
|
-
/**
|
|
53927
|
-
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
53928
|
-
*/
|
|
53929
|
-
'dashboardParametersOverride'?: Array<ExportDashboardParameterValue>;
|
|
53930
53762
|
/**
|
|
53931
53763
|
* Map of tab-specific filter overrides. Key is tabId, value is list of filters for that tab.
|
|
53932
53764
|
*/
|
|
53933
53765
|
'dashboardTabsFiltersOverrides'?: {
|
|
53934
53766
|
[key: string]: Array<ExportDashboardFilter>;
|
|
53935
53767
|
};
|
|
53768
|
+
/**
|
|
53769
|
+
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
53770
|
+
*/
|
|
53771
|
+
'widgetIds'?: Array<string>;
|
|
53772
|
+
'settings'?: ExportDashboardExportSettings;
|
|
53773
|
+
/**
|
|
53774
|
+
* Parameter value overrides applied to the export\'s executions. Each entry carries the parameter id (used as an AFM execution override) plus the FE-supplied title for the info sheet. Applied uniformly across all tabs; use dashboardTabsParametersOverrides for tab-scoped overrides.
|
|
53775
|
+
*/
|
|
53776
|
+
'dashboardParametersOverride'?: Array<ExportDashboardParameterValue>;
|
|
53936
53777
|
/**
|
|
53937
53778
|
* Map of tab-specific parameter overrides. Key is tabId, value is a list of (id, value, title) entries that override the dashboard-level parameters for that tab only. Mirrors dashboardTabsFiltersOverrides. When a tab is present in this map, its entries take precedence over dashboardParametersOverride for that tab\'s executions and info-sheet display.
|
|
53938
53779
|
*/
|
|
53939
53780
|
'dashboardTabsParametersOverrides'?: {
|
|
53940
53781
|
[key: string]: Array<ExportDashboardParameterValue>;
|
|
53941
53782
|
};
|
|
53942
|
-
/**
|
|
53943
|
-
* List of widget identifiers to be exported. Note that only one widget is currently supported.
|
|
53944
|
-
*/
|
|
53945
|
-
'widgetIds'?: Array<string>;
|
|
53946
|
-
'settings'?: ExportDashboardExportSettings;
|
|
53947
53783
|
}
|
|
53948
53784
|
|
|
53949
53785
|
export declare type ExportDashboardTabularExportRequestFormatEnum = 'XLSX' | 'PDF';
|
|
@@ -57655,12 +57491,6 @@ export declare type FeatureContext = {
|
|
|
57655
57491
|
dataCenter?: string;
|
|
57656
57492
|
};
|
|
57657
57493
|
|
|
57658
|
-
export declare interface FeedbackRequestDto {
|
|
57659
|
-
'sentiment': FeedbackRequestDtoSentimentEnum;
|
|
57660
|
-
}
|
|
57661
|
-
|
|
57662
|
-
export declare type FeedbackRequestDtoSentimentEnum = 'POSITIVE' | 'NEGATIVE';
|
|
57663
|
-
|
|
57664
57494
|
/**
|
|
57665
57495
|
* Specifies what is used for filtering.
|
|
57666
57496
|
*/
|
|
@@ -65284,7 +65114,7 @@ export declare interface JsonApiAutomationInRelationships {
|
|
|
65284
65114
|
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
65285
65115
|
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
65286
65116
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
65287
|
-
'recipients'?:
|
|
65117
|
+
'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
|
|
65288
65118
|
}
|
|
65289
65119
|
|
|
65290
65120
|
export declare type JsonApiAutomationInTypeEnum = 'automation';
|
|
@@ -65393,7 +65223,7 @@ export declare interface JsonApiAutomationOutRelationships {
|
|
|
65393
65223
|
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
65394
65224
|
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
65395
65225
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
65396
|
-
'recipients'?:
|
|
65226
|
+
'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
|
|
65397
65227
|
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
65398
65228
|
}
|
|
65399
65229
|
|
|
@@ -65634,7 +65464,15 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
65634
65464
|
* API identifier of an object
|
|
65635
65465
|
*/
|
|
65636
65466
|
'id': string;
|
|
65637
|
-
'attributes'?:
|
|
65467
|
+
'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
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;
|
|
65638
65476
|
}
|
|
65639
65477
|
|
|
65640
65478
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -65655,15 +65493,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
65655
65493
|
* API identifier of an object
|
|
65656
65494
|
*/
|
|
65657
65495
|
'id': string;
|
|
65658
|
-
'attributes'?:
|
|
65659
|
-
}
|
|
65660
|
-
|
|
65661
|
-
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
65662
|
-
'lastRotation'?: string;
|
|
65663
|
-
/**
|
|
65664
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
65665
|
-
*/
|
|
65666
|
-
'rotationInterval'?: string;
|
|
65496
|
+
'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
65667
65497
|
}
|
|
65668
65498
|
|
|
65669
65499
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -65685,7 +65515,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
65685
65515
|
* API identifier of an object
|
|
65686
65516
|
*/
|
|
65687
65517
|
'id': string;
|
|
65688
|
-
'attributes'?:
|
|
65518
|
+
'attributes'?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
65689
65519
|
}
|
|
65690
65520
|
|
|
65691
65521
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -66489,7 +66319,7 @@ export declare interface JsonApiDataSourceIdentifierOutAttributes {
|
|
|
66489
66319
|
'type': JsonApiDataSourceIdentifierOutAttributesTypeEnum;
|
|
66490
66320
|
}
|
|
66491
66321
|
|
|
66492
|
-
export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
66322
|
+
export declare type JsonApiDataSourceIdentifierOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
66493
66323
|
|
|
66494
66324
|
export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
66495
66325
|
'data': JsonApiDataSourceIdentifierOut;
|
|
@@ -66595,7 +66425,7 @@ export declare interface JsonApiDataSourceInAttributes {
|
|
|
66595
66425
|
/**
|
|
66596
66426
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
66597
66427
|
*/
|
|
66598
|
-
'parameters'?: Array<
|
|
66428
|
+
'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
66599
66429
|
/**
|
|
66600
66430
|
* Determines how the results coming from a particular datasource should be cached.
|
|
66601
66431
|
*/
|
|
@@ -66614,12 +66444,7 @@ export declare type JsonApiDataSourceInAttributesCacheStrategyEnum = 'ALWAYS' |
|
|
|
66614
66444
|
|
|
66615
66445
|
export declare type JsonApiDataSourceInAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
66616
66446
|
|
|
66617
|
-
export declare
|
|
66618
|
-
'name': string;
|
|
66619
|
-
'value': string;
|
|
66620
|
-
}
|
|
66621
|
-
|
|
66622
|
-
export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
66447
|
+
export declare type JsonApiDataSourceInAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
66623
66448
|
|
|
66624
66449
|
export declare interface JsonApiDataSourceInDocument {
|
|
66625
66450
|
'data': JsonApiDataSourceIn;
|
|
@@ -66671,11 +66496,11 @@ export declare interface JsonApiDataSourceOutAttributes {
|
|
|
66671
66496
|
/**
|
|
66672
66497
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
66673
66498
|
*/
|
|
66674
|
-
'parameters'?: Array<
|
|
66499
|
+
'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
66675
66500
|
/**
|
|
66676
66501
|
* Decoded parameters to be used when connecting to the database providing the data for the data source.
|
|
66677
66502
|
*/
|
|
66678
|
-
'decodedParameters'?: Array<
|
|
66503
|
+
'decodedParameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
66679
66504
|
/**
|
|
66680
66505
|
* Determines how the results coming from a particular datasource should be cached.
|
|
66681
66506
|
*/
|
|
@@ -66700,7 +66525,12 @@ export declare type JsonApiDataSourceOutAttributesCacheStrategyEnum = 'ALWAYS' |
|
|
|
66700
66525
|
|
|
66701
66526
|
export declare type JsonApiDataSourceOutAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
66702
66527
|
|
|
66703
|
-
export declare
|
|
66528
|
+
export declare interface JsonApiDataSourceOutAttributesParametersInner {
|
|
66529
|
+
'name': string;
|
|
66530
|
+
'value': string;
|
|
66531
|
+
}
|
|
66532
|
+
|
|
66533
|
+
export declare type JsonApiDataSourceOutAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
66704
66534
|
|
|
66705
66535
|
export declare interface JsonApiDataSourceOutDocument {
|
|
66706
66536
|
'data': JsonApiDataSourceOut;
|
|
@@ -66797,7 +66627,7 @@ export declare interface JsonApiDataSourcePatchAttributes {
|
|
|
66797
66627
|
/**
|
|
66798
66628
|
* Additional parameters to be used when connecting to the database providing the data for the data source.
|
|
66799
66629
|
*/
|
|
66800
|
-
'parameters'?: Array<
|
|
66630
|
+
'parameters'?: Array<JsonApiDataSourceOutAttributesParametersInner> | null;
|
|
66801
66631
|
/**
|
|
66802
66632
|
* Determines how the results coming from a particular datasource should be cached.
|
|
66803
66633
|
*/
|
|
@@ -66816,7 +66646,7 @@ export declare type JsonApiDataSourcePatchAttributesCacheStrategyEnum = 'ALWAYS'
|
|
|
66816
66646
|
|
|
66817
66647
|
export declare type JsonApiDataSourcePatchAttributesDateTimeSemanticsEnum = 'LOCAL' | 'UTC';
|
|
66818
66648
|
|
|
66819
|
-
export declare type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE';
|
|
66649
|
+
export declare type JsonApiDataSourcePatchAttributesTypeEnum = 'POSTGRESQL' | 'REDSHIFT' | 'VERTICA' | 'SNOWFLAKE' | 'ADS' | 'BIGQUERY' | 'MSSQL' | 'PRESTO' | 'DREMIO' | 'DRILL' | 'GREENPLUM' | 'AZURESQL' | 'SYNAPSESQL' | 'DATABRICKS' | 'GDSTORAGE' | 'CLICKHOUSE' | 'MYSQL' | 'MARIADB' | 'ORACLE' | 'PINOT' | 'SINGLESTORE' | 'MOTHERDUCK' | 'FLEXCONNECT' | 'STARROCKS' | 'ATHENA' | 'MONGODB' | 'CRATEDB' | 'AILAKEHOUSE' | 'DENODO';
|
|
66820
66650
|
|
|
66821
66651
|
export declare interface JsonApiDataSourcePatchDocument {
|
|
66822
66652
|
'data': JsonApiDataSourcePatch;
|
|
@@ -67508,14 +67338,34 @@ export declare interface JsonApiFilterViewIn {
|
|
|
67508
67338
|
* API identifier of an object
|
|
67509
67339
|
*/
|
|
67510
67340
|
'id': string;
|
|
67511
|
-
'attributes':
|
|
67512
|
-
'relationships'?:
|
|
67341
|
+
'attributes': JsonApiFilterViewInAttributes;
|
|
67342
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
67343
|
+
}
|
|
67344
|
+
|
|
67345
|
+
export declare interface JsonApiFilterViewInAttributes {
|
|
67346
|
+
'title': string;
|
|
67347
|
+
'description'?: string;
|
|
67348
|
+
'tags'?: Array<string>;
|
|
67349
|
+
'areRelationsValid'?: boolean;
|
|
67350
|
+
/**
|
|
67351
|
+
* Indicator whether the filter view should by applied by default.
|
|
67352
|
+
*/
|
|
67353
|
+
'isDefault'?: boolean;
|
|
67354
|
+
/**
|
|
67355
|
+
* The respective filter context.
|
|
67356
|
+
*/
|
|
67357
|
+
'content': object;
|
|
67513
67358
|
}
|
|
67514
67359
|
|
|
67515
67360
|
export declare interface JsonApiFilterViewInDocument {
|
|
67516
67361
|
'data': JsonApiFilterViewIn;
|
|
67517
67362
|
}
|
|
67518
67363
|
|
|
67364
|
+
export declare interface JsonApiFilterViewInRelationships {
|
|
67365
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
67366
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
67367
|
+
}
|
|
67368
|
+
|
|
67519
67369
|
export declare type JsonApiFilterViewInTypeEnum = 'filterView';
|
|
67520
67370
|
|
|
67521
67371
|
/**
|
|
@@ -67530,23 +67380,8 @@ export declare interface JsonApiFilterViewOut {
|
|
|
67530
67380
|
* API identifier of an object
|
|
67531
67381
|
*/
|
|
67532
67382
|
'id': string;
|
|
67533
|
-
'attributes':
|
|
67534
|
-
'relationships'?:
|
|
67535
|
-
}
|
|
67536
|
-
|
|
67537
|
-
export declare interface JsonApiFilterViewOutAttributes {
|
|
67538
|
-
'title': string;
|
|
67539
|
-
'description'?: string;
|
|
67540
|
-
'tags'?: Array<string>;
|
|
67541
|
-
'areRelationsValid'?: boolean;
|
|
67542
|
-
/**
|
|
67543
|
-
* Indicator whether the filter view should by applied by default.
|
|
67544
|
-
*/
|
|
67545
|
-
'isDefault'?: boolean;
|
|
67546
|
-
/**
|
|
67547
|
-
* The respective filter context.
|
|
67548
|
-
*/
|
|
67549
|
-
'content': object;
|
|
67383
|
+
'attributes': JsonApiFilterViewInAttributes;
|
|
67384
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
67550
67385
|
}
|
|
67551
67386
|
|
|
67552
67387
|
export declare interface JsonApiFilterViewOutDocument {
|
|
@@ -67576,11 +67411,6 @@ export declare interface JsonApiFilterViewOutList {
|
|
|
67576
67411
|
'included'?: Array<JsonApiFilterViewOutIncludes>;
|
|
67577
67412
|
}
|
|
67578
67413
|
|
|
67579
|
-
export declare interface JsonApiFilterViewOutRelationships {
|
|
67580
|
-
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
67581
|
-
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
67582
|
-
}
|
|
67583
|
-
|
|
67584
67414
|
export declare type JsonApiFilterViewOutTypeEnum = 'filterView';
|
|
67585
67415
|
|
|
67586
67416
|
export declare interface JsonApiFilterViewOutWithLinks {
|
|
@@ -67592,8 +67422,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
67592
67422
|
* API identifier of an object
|
|
67593
67423
|
*/
|
|
67594
67424
|
'id': string;
|
|
67595
|
-
'attributes':
|
|
67596
|
-
'relationships'?:
|
|
67425
|
+
'attributes': JsonApiFilterViewInAttributes;
|
|
67426
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
67597
67427
|
'links'?: ObjectLinks;
|
|
67598
67428
|
}
|
|
67599
67429
|
|
|
@@ -67612,7 +67442,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
67612
67442
|
*/
|
|
67613
67443
|
'id': string;
|
|
67614
67444
|
'attributes': JsonApiFilterViewPatchAttributes;
|
|
67615
|
-
'relationships'?:
|
|
67445
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
67616
67446
|
}
|
|
67617
67447
|
|
|
67618
67448
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -67853,14 +67683,33 @@ export declare interface JsonApiIpAllowlistPolicyIn {
|
|
|
67853
67683
|
* API identifier of an object
|
|
67854
67684
|
*/
|
|
67855
67685
|
'id': string;
|
|
67856
|
-
'attributes':
|
|
67857
|
-
'relationships'?:
|
|
67686
|
+
'attributes': JsonApiIpAllowlistPolicyInAttributes;
|
|
67687
|
+
'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
|
|
67688
|
+
}
|
|
67689
|
+
|
|
67690
|
+
export declare interface JsonApiIpAllowlistPolicyInAttributes {
|
|
67691
|
+
/**
|
|
67692
|
+
* Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
|
|
67693
|
+
*/
|
|
67694
|
+
'allowedSources': Array<string> | null;
|
|
67858
67695
|
}
|
|
67859
67696
|
|
|
67860
67697
|
export declare interface JsonApiIpAllowlistPolicyInDocument {
|
|
67861
67698
|
'data': JsonApiIpAllowlistPolicyIn;
|
|
67862
67699
|
}
|
|
67863
67700
|
|
|
67701
|
+
export declare interface JsonApiIpAllowlistPolicyInRelationships {
|
|
67702
|
+
'users'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
|
|
67703
|
+
'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
|
|
67704
|
+
}
|
|
67705
|
+
|
|
67706
|
+
export declare interface JsonApiIpAllowlistPolicyInRelationshipsUsers {
|
|
67707
|
+
/**
|
|
67708
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
67709
|
+
*/
|
|
67710
|
+
'data': Array<JsonApiUserLinkage>;
|
|
67711
|
+
}
|
|
67712
|
+
|
|
67864
67713
|
export declare type JsonApiIpAllowlistPolicyInTypeEnum = 'ipAllowlistPolicy';
|
|
67865
67714
|
|
|
67866
67715
|
/**
|
|
@@ -67875,15 +67724,8 @@ export declare interface JsonApiIpAllowlistPolicyOut {
|
|
|
67875
67724
|
* API identifier of an object
|
|
67876
67725
|
*/
|
|
67877
67726
|
'id': string;
|
|
67878
|
-
'attributes':
|
|
67879
|
-
'relationships'?:
|
|
67880
|
-
}
|
|
67881
|
-
|
|
67882
|
-
export declare interface JsonApiIpAllowlistPolicyOutAttributes {
|
|
67883
|
-
/**
|
|
67884
|
-
* Allowed source IPv4 addresses or CIDR ranges. Only IPv4 is supported; IPv6 are rejected. The /0 prefix is not allowed.
|
|
67885
|
-
*/
|
|
67886
|
-
'allowedSources': Array<string> | null;
|
|
67727
|
+
'attributes': JsonApiIpAllowlistPolicyInAttributes;
|
|
67728
|
+
'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
|
|
67887
67729
|
}
|
|
67888
67730
|
|
|
67889
67731
|
export declare interface JsonApiIpAllowlistPolicyOutDocument {
|
|
@@ -67913,18 +67755,6 @@ export declare interface JsonApiIpAllowlistPolicyOutList {
|
|
|
67913
67755
|
'included'?: Array<JsonApiIpAllowlistPolicyOutIncludes>;
|
|
67914
67756
|
}
|
|
67915
67757
|
|
|
67916
|
-
export declare interface JsonApiIpAllowlistPolicyOutRelationships {
|
|
67917
|
-
'users'?: JsonApiIpAllowlistPolicyOutRelationshipsUsers;
|
|
67918
|
-
'userGroups'?: JsonApiUserOutRelationshipsUserGroups;
|
|
67919
|
-
}
|
|
67920
|
-
|
|
67921
|
-
export declare interface JsonApiIpAllowlistPolicyOutRelationshipsUsers {
|
|
67922
|
-
/**
|
|
67923
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
67924
|
-
*/
|
|
67925
|
-
'data': Array<JsonApiUserLinkage>;
|
|
67926
|
-
}
|
|
67927
|
-
|
|
67928
67758
|
export declare type JsonApiIpAllowlistPolicyOutTypeEnum = 'ipAllowlistPolicy';
|
|
67929
67759
|
|
|
67930
67760
|
export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
|
|
@@ -67936,8 +67766,8 @@ export declare interface JsonApiIpAllowlistPolicyOutWithLinks {
|
|
|
67936
67766
|
* API identifier of an object
|
|
67937
67767
|
*/
|
|
67938
67768
|
'id': string;
|
|
67939
|
-
'attributes':
|
|
67940
|
-
'relationships'?:
|
|
67769
|
+
'attributes': JsonApiIpAllowlistPolicyInAttributes;
|
|
67770
|
+
'relationships'?: JsonApiIpAllowlistPolicyInRelationships;
|
|
67941
67771
|
'links'?: ObjectLinks;
|
|
67942
67772
|
}
|
|
67943
67773
|
|
|
@@ -67955,11 +67785,7 @@ export declare interface JsonApiJwkIn {
|
|
|
67955
67785
|
* API identifier of an object
|
|
67956
67786
|
*/
|
|
67957
67787
|
'id': string;
|
|
67958
|
-
'attributes'?:
|
|
67959
|
-
}
|
|
67960
|
-
|
|
67961
|
-
export declare interface JsonApiJwkInAttributes {
|
|
67962
|
-
'content'?: RsaSpecification;
|
|
67788
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
67963
67789
|
}
|
|
67964
67790
|
|
|
67965
67791
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -67980,7 +67806,11 @@ export declare interface JsonApiJwkOut {
|
|
|
67980
67806
|
* API identifier of an object
|
|
67981
67807
|
*/
|
|
67982
67808
|
'id': string;
|
|
67983
|
-
'attributes'?:
|
|
67809
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
67810
|
+
}
|
|
67811
|
+
|
|
67812
|
+
export declare interface JsonApiJwkOutAttributes {
|
|
67813
|
+
'content'?: RsaSpecification;
|
|
67984
67814
|
}
|
|
67985
67815
|
|
|
67986
67816
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -68008,7 +67838,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
68008
67838
|
* API identifier of an object
|
|
68009
67839
|
*/
|
|
68010
67840
|
'id': string;
|
|
68011
|
-
'attributes'?:
|
|
67841
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
68012
67842
|
'links'?: ObjectLinks;
|
|
68013
67843
|
}
|
|
68014
67844
|
|
|
@@ -68026,7 +67856,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
68026
67856
|
* API identifier of an object
|
|
68027
67857
|
*/
|
|
68028
67858
|
'id': string;
|
|
68029
|
-
'attributes'?:
|
|
67859
|
+
'attributes'?: JsonApiJwkOutAttributes;
|
|
68030
67860
|
}
|
|
68031
67861
|
|
|
68032
67862
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -68513,204 +68343,42 @@ export declare interface JsonApiLabelPatchDocument {
|
|
|
68513
68343
|
export declare type JsonApiLabelPatchTypeEnum = 'label';
|
|
68514
68344
|
|
|
68515
68345
|
/**
|
|
68516
|
-
*
|
|
68517
|
-
*/
|
|
68518
|
-
export declare interface JsonApiLlmEndpointIn {
|
|
68519
|
-
/**
|
|
68520
|
-
* Object type
|
|
68521
|
-
*/
|
|
68522
|
-
'type': JsonApiLlmEndpointInTypeEnum;
|
|
68523
|
-
/**
|
|
68524
|
-
* API identifier of an object
|
|
68525
|
-
*/
|
|
68526
|
-
'id': string;
|
|
68527
|
-
'attributes': JsonApiLlmEndpointInAttributes;
|
|
68528
|
-
}
|
|
68529
|
-
|
|
68530
|
-
export declare interface JsonApiLlmEndpointInAttributes {
|
|
68531
|
-
/**
|
|
68532
|
-
* User-facing title of the LLM Provider.
|
|
68533
|
-
*/
|
|
68534
|
-
'title': string;
|
|
68535
|
-
/**
|
|
68536
|
-
* LLM Provider.
|
|
68537
|
-
* @deprecated
|
|
68538
|
-
*/
|
|
68539
|
-
'provider'?: JsonApiLlmEndpointInAttributesProviderEnum;
|
|
68540
|
-
/**
|
|
68541
|
-
* Custom LLM endpoint.
|
|
68542
|
-
*/
|
|
68543
|
-
'baseUrl'?: string | null;
|
|
68544
|
-
/**
|
|
68545
|
-
* The token to use to connect to the LLM provider.
|
|
68546
|
-
*/
|
|
68547
|
-
'token': string;
|
|
68548
|
-
/**
|
|
68549
|
-
* Organization in LLM provider.
|
|
68550
|
-
*/
|
|
68551
|
-
'llmOrganization'?: string | null;
|
|
68552
|
-
/**
|
|
68553
|
-
* LLM Model. We provide a default model for each provider, but you can override it here.
|
|
68554
|
-
*/
|
|
68555
|
-
'llmModel'?: string;
|
|
68556
|
-
}
|
|
68557
|
-
|
|
68558
|
-
export declare type JsonApiLlmEndpointInAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
68559
|
-
|
|
68560
|
-
export declare interface JsonApiLlmEndpointInDocument {
|
|
68561
|
-
/**
|
|
68562
|
-
* @deprecated
|
|
68563
|
-
*/
|
|
68564
|
-
'data': JsonApiLlmEndpointIn;
|
|
68565
|
-
}
|
|
68566
|
-
|
|
68567
|
-
export declare type JsonApiLlmEndpointInTypeEnum = 'llmEndpoint';
|
|
68568
|
-
|
|
68569
|
-
/**
|
|
68570
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
68571
|
-
*/
|
|
68572
|
-
export declare interface JsonApiLlmEndpointOut {
|
|
68573
|
-
/**
|
|
68574
|
-
* Object type
|
|
68575
|
-
*/
|
|
68576
|
-
'type': JsonApiLlmEndpointOutTypeEnum;
|
|
68577
|
-
/**
|
|
68578
|
-
* API identifier of an object
|
|
68579
|
-
*/
|
|
68580
|
-
'id': string;
|
|
68581
|
-
'attributes': JsonApiLlmEndpointOutAttributes;
|
|
68582
|
-
}
|
|
68583
|
-
|
|
68584
|
-
export declare interface JsonApiLlmEndpointOutAttributes {
|
|
68585
|
-
/**
|
|
68586
|
-
* User-facing title of the LLM Provider.
|
|
68587
|
-
*/
|
|
68588
|
-
'title': string;
|
|
68589
|
-
/**
|
|
68590
|
-
* LLM Provider.
|
|
68591
|
-
* @deprecated
|
|
68592
|
-
*/
|
|
68593
|
-
'provider'?: JsonApiLlmEndpointOutAttributesProviderEnum;
|
|
68594
|
-
/**
|
|
68595
|
-
* Custom LLM endpoint.
|
|
68596
|
-
*/
|
|
68597
|
-
'baseUrl'?: string | null;
|
|
68598
|
-
/**
|
|
68599
|
-
* Organization in LLM provider.
|
|
68600
|
-
*/
|
|
68601
|
-
'llmOrganization'?: string | null;
|
|
68602
|
-
/**
|
|
68603
|
-
* LLM Model. We provide a default model for each provider, but you can override it here.
|
|
68604
|
-
*/
|
|
68605
|
-
'llmModel'?: string;
|
|
68606
|
-
}
|
|
68607
|
-
|
|
68608
|
-
export declare type JsonApiLlmEndpointOutAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
68609
|
-
|
|
68610
|
-
export declare interface JsonApiLlmEndpointOutDocument {
|
|
68611
|
-
/**
|
|
68612
|
-
* @deprecated
|
|
68613
|
-
*/
|
|
68614
|
-
'data': JsonApiLlmEndpointOut;
|
|
68615
|
-
'links'?: ObjectLinks;
|
|
68616
|
-
}
|
|
68617
|
-
|
|
68618
|
-
/**
|
|
68619
|
-
* A JSON:API document with a list of resources
|
|
68620
|
-
*/
|
|
68621
|
-
export declare interface JsonApiLlmEndpointOutList {
|
|
68622
|
-
'data': Array<JsonApiLlmEndpointOutWithLinks>;
|
|
68623
|
-
'links'?: ListLinks;
|
|
68624
|
-
'meta'?: JsonApiAgentOutListMeta;
|
|
68625
|
-
}
|
|
68626
|
-
|
|
68627
|
-
export declare type JsonApiLlmEndpointOutTypeEnum = 'llmEndpoint';
|
|
68628
|
-
|
|
68629
|
-
export declare interface JsonApiLlmEndpointOutWithLinks {
|
|
68630
|
-
/**
|
|
68631
|
-
* Object type
|
|
68632
|
-
*/
|
|
68633
|
-
'type': JsonApiLlmEndpointOutWithLinksTypeEnum;
|
|
68634
|
-
/**
|
|
68635
|
-
* API identifier of an object
|
|
68636
|
-
*/
|
|
68637
|
-
'id': string;
|
|
68638
|
-
'attributes': JsonApiLlmEndpointOutAttributes;
|
|
68639
|
-
'links'?: ObjectLinks;
|
|
68640
|
-
}
|
|
68641
|
-
|
|
68642
|
-
export declare type JsonApiLlmEndpointOutWithLinksTypeEnum = 'llmEndpoint';
|
|
68643
|
-
|
|
68644
|
-
/**
|
|
68645
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
68346
|
+
* LLM Provider configuration for connecting to LLM services.
|
|
68646
68347
|
*/
|
|
68647
|
-
export declare interface
|
|
68348
|
+
export declare interface JsonApiLlmProviderIn {
|
|
68648
68349
|
/**
|
|
68649
68350
|
* Object type
|
|
68650
68351
|
*/
|
|
68651
|
-
'type':
|
|
68352
|
+
'type': JsonApiLlmProviderInTypeEnum;
|
|
68652
68353
|
/**
|
|
68653
68354
|
* API identifier of an object
|
|
68654
68355
|
*/
|
|
68655
68356
|
'id': string;
|
|
68656
|
-
'attributes'
|
|
68357
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
68657
68358
|
}
|
|
68658
68359
|
|
|
68659
|
-
export declare interface
|
|
68660
|
-
|
|
68661
|
-
* User-facing title of the LLM Provider.
|
|
68662
|
-
*/
|
|
68663
|
-
'title'?: string;
|
|
68664
|
-
/**
|
|
68665
|
-
* LLM Provider.
|
|
68666
|
-
* @deprecated
|
|
68667
|
-
*/
|
|
68668
|
-
'provider'?: JsonApiLlmEndpointPatchAttributesProviderEnum;
|
|
68669
|
-
/**
|
|
68670
|
-
* Custom LLM endpoint.
|
|
68671
|
-
*/
|
|
68672
|
-
'baseUrl'?: string | null;
|
|
68673
|
-
/**
|
|
68674
|
-
* The token to use to connect to the LLM provider.
|
|
68675
|
-
*/
|
|
68676
|
-
'token'?: string;
|
|
68677
|
-
/**
|
|
68678
|
-
* Organization in LLM provider.
|
|
68679
|
-
*/
|
|
68680
|
-
'llmOrganization'?: string | null;
|
|
68681
|
-
/**
|
|
68682
|
-
* LLM Model. We provide a default model for each provider, but you can override it here.
|
|
68683
|
-
*/
|
|
68684
|
-
'llmModel'?: string;
|
|
68685
|
-
}
|
|
68686
|
-
|
|
68687
|
-
export declare type JsonApiLlmEndpointPatchAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
68688
|
-
|
|
68689
|
-
export declare interface JsonApiLlmEndpointPatchDocument {
|
|
68690
|
-
/**
|
|
68691
|
-
* @deprecated
|
|
68692
|
-
*/
|
|
68693
|
-
'data': JsonApiLlmEndpointPatch;
|
|
68360
|
+
export declare interface JsonApiLlmProviderInDocument {
|
|
68361
|
+
'data': JsonApiLlmProviderIn;
|
|
68694
68362
|
}
|
|
68695
68363
|
|
|
68696
|
-
export declare type
|
|
68364
|
+
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
68697
68365
|
|
|
68698
68366
|
/**
|
|
68699
68367
|
* LLM Provider configuration for connecting to LLM services.
|
|
68700
68368
|
*/
|
|
68701
|
-
export declare interface
|
|
68369
|
+
export declare interface JsonApiLlmProviderOut {
|
|
68702
68370
|
/**
|
|
68703
68371
|
* Object type
|
|
68704
68372
|
*/
|
|
68705
|
-
'type':
|
|
68373
|
+
'type': JsonApiLlmProviderOutTypeEnum;
|
|
68706
68374
|
/**
|
|
68707
68375
|
* API identifier of an object
|
|
68708
68376
|
*/
|
|
68709
68377
|
'id': string;
|
|
68710
|
-
'attributes'?:
|
|
68378
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
68711
68379
|
}
|
|
68712
68380
|
|
|
68713
|
-
export declare interface
|
|
68381
|
+
export declare interface JsonApiLlmProviderOutAttributes {
|
|
68714
68382
|
'name'?: string | null;
|
|
68715
68383
|
/**
|
|
68716
68384
|
* Description of the LLM Provider.
|
|
@@ -68720,17 +68388,17 @@ export declare interface JsonApiLlmProviderInAttributes {
|
|
|
68720
68388
|
* Required ID of the default model to use from the models list.
|
|
68721
68389
|
*/
|
|
68722
68390
|
'defaultModelId'?: string | null;
|
|
68723
|
-
'providerConfig'?:
|
|
68391
|
+
'providerConfig'?: JsonApiLlmProviderOutAttributesProviderConfig | null;
|
|
68724
68392
|
/**
|
|
68725
68393
|
* List of LLM models available for this provider.
|
|
68726
68394
|
*/
|
|
68727
|
-
'models'?: Array<
|
|
68395
|
+
'models'?: Array<JsonApiLlmProviderOutAttributesModelsInner> | null;
|
|
68728
68396
|
}
|
|
68729
68397
|
|
|
68730
68398
|
/**
|
|
68731
68399
|
* LLM Model configuration (id, family) within a provider.
|
|
68732
68400
|
*/
|
|
68733
|
-
export declare interface
|
|
68401
|
+
export declare interface JsonApiLlmProviderOutAttributesModelsInner {
|
|
68734
68402
|
/**
|
|
68735
68403
|
* Unique identifier of the model (e.g., gpt-5.3, claude-4.6).
|
|
68736
68404
|
*/
|
|
@@ -68738,37 +68406,16 @@ export declare interface JsonApiLlmProviderInAttributesModelsInner {
|
|
|
68738
68406
|
/**
|
|
68739
68407
|
* Family of LLM models.
|
|
68740
68408
|
*/
|
|
68741
|
-
'family':
|
|
68409
|
+
'family': JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum;
|
|
68742
68410
|
}
|
|
68743
68411
|
|
|
68744
|
-
export declare type
|
|
68412
|
+
export declare type JsonApiLlmProviderOutAttributesModelsInnerFamilyEnum = 'OPENAI' | 'ANTHROPIC' | 'META' | 'MISTRAL' | 'AMAZON' | 'GOOGLE' | 'COHERE' | 'UNKNOWN';
|
|
68745
68413
|
|
|
68746
68414
|
/**
|
|
68747
|
-
* @type
|
|
68415
|
+
* @type JsonApiLlmProviderOutAttributesProviderConfig
|
|
68748
68416
|
* Provider-specific configuration including authentication.
|
|
68749
68417
|
*/
|
|
68750
|
-
export declare type
|
|
68751
|
-
|
|
68752
|
-
export declare interface JsonApiLlmProviderInDocument {
|
|
68753
|
-
'data': JsonApiLlmProviderIn;
|
|
68754
|
-
}
|
|
68755
|
-
|
|
68756
|
-
export declare type JsonApiLlmProviderInTypeEnum = 'llmProvider';
|
|
68757
|
-
|
|
68758
|
-
/**
|
|
68759
|
-
* LLM Provider configuration for connecting to LLM services.
|
|
68760
|
-
*/
|
|
68761
|
-
export declare interface JsonApiLlmProviderOut {
|
|
68762
|
-
/**
|
|
68763
|
-
* Object type
|
|
68764
|
-
*/
|
|
68765
|
-
'type': JsonApiLlmProviderOutTypeEnum;
|
|
68766
|
-
/**
|
|
68767
|
-
* API identifier of an object
|
|
68768
|
-
*/
|
|
68769
|
-
'id': string;
|
|
68770
|
-
'attributes'?: JsonApiLlmProviderInAttributes;
|
|
68771
|
-
}
|
|
68418
|
+
export declare type JsonApiLlmProviderOutAttributesProviderConfig = AnthropicProviderConfig | AwsBedrockProviderConfig | AzureFoundryProviderConfig | OpenAIProviderConfig;
|
|
68772
68419
|
|
|
68773
68420
|
export declare interface JsonApiLlmProviderOutDocument {
|
|
68774
68421
|
'data': JsonApiLlmProviderOut;
|
|
@@ -68795,7 +68442,7 @@ export declare interface JsonApiLlmProviderOutWithLinks {
|
|
|
68795
68442
|
* API identifier of an object
|
|
68796
68443
|
*/
|
|
68797
68444
|
'id': string;
|
|
68798
|
-
'attributes'?:
|
|
68445
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
68799
68446
|
'links'?: ObjectLinks;
|
|
68800
68447
|
}
|
|
68801
68448
|
|
|
@@ -68813,7 +68460,7 @@ export declare interface JsonApiLlmProviderPatch {
|
|
|
68813
68460
|
* API identifier of an object
|
|
68814
68461
|
*/
|
|
68815
68462
|
'id': string;
|
|
68816
|
-
'attributes'?:
|
|
68463
|
+
'attributes'?: JsonApiLlmProviderOutAttributes;
|
|
68817
68464
|
}
|
|
68818
68465
|
|
|
68819
68466
|
export declare interface JsonApiLlmProviderPatchDocument {
|
|
@@ -69349,7 +68996,7 @@ export declare interface JsonApiNotificationChannelOut {
|
|
|
69349
68996
|
export declare interface JsonApiNotificationChannelOutAttributes {
|
|
69350
68997
|
'name'?: string | null;
|
|
69351
68998
|
'description'?: string | null;
|
|
69352
|
-
'destination'?:
|
|
68999
|
+
'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
69353
69000
|
'destinationType'?: JsonApiNotificationChannelOutAttributesDestinationTypeEnum | null;
|
|
69354
69001
|
/**
|
|
69355
69002
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
@@ -69377,12 +69024,6 @@ export declare type JsonApiNotificationChannelOutAttributesAllowedRecipientsEnum
|
|
|
69377
69024
|
|
|
69378
69025
|
export declare type JsonApiNotificationChannelOutAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
|
|
69379
69026
|
|
|
69380
|
-
/**
|
|
69381
|
-
* @type JsonApiNotificationChannelOutAttributesDestination
|
|
69382
|
-
* The destination where the notifications are to be sent.
|
|
69383
|
-
*/
|
|
69384
|
-
export declare type JsonApiNotificationChannelOutAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
69385
|
-
|
|
69386
69027
|
export declare type JsonApiNotificationChannelOutAttributesDestinationTypeEnum = 'WEBHOOK' | 'SMTP' | 'DEFAULT_SMTP' | 'IN_PLATFORM';
|
|
69387
69028
|
|
|
69388
69029
|
export declare type JsonApiNotificationChannelOutAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
|
|
@@ -69457,7 +69098,7 @@ export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
|
69457
69098
|
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
69458
69099
|
'name'?: string | null;
|
|
69459
69100
|
'description'?: string | null;
|
|
69460
|
-
'destination'?:
|
|
69101
|
+
'destination'?: JsonApiNotificationChannelPostOptionalIdAttributesDestination;
|
|
69461
69102
|
/**
|
|
69462
69103
|
* Custom dashboard url that is going to be used in the notification. If not specified it is going to be deduced based on the context. Allowed placeholders are: {workspaceId} {dashboardId} {automationId} {asOfDate}
|
|
69463
69104
|
*/
|
|
@@ -69484,6 +69125,12 @@ export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRec
|
|
|
69484
69125
|
|
|
69485
69126
|
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
|
|
69486
69127
|
|
|
69128
|
+
/**
|
|
69129
|
+
* @type JsonApiNotificationChannelPostOptionalIdAttributesDestination
|
|
69130
|
+
* The destination where the notifications are to be sent.
|
|
69131
|
+
*/
|
|
69132
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDestination = DefaultSmtp | InPlatform | Smtp | Webhook;
|
|
69133
|
+
|
|
69487
69134
|
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
|
|
69488
69135
|
|
|
69489
69136
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
@@ -69588,7 +69235,7 @@ export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF
|
|
|
69588
69235
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
69589
69236
|
'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
69590
69237
|
'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
69591
|
-
'identityProvider'?:
|
|
69238
|
+
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
69592
69239
|
}
|
|
69593
69240
|
|
|
69594
69241
|
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
@@ -69599,10 +69246,6 @@ export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
|
69599
69246
|
'data': JsonApiUserGroupLinkage | null;
|
|
69600
69247
|
}
|
|
69601
69248
|
|
|
69602
|
-
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
69603
|
-
'data': JsonApiIdentityProviderLinkage | null;
|
|
69604
|
-
}
|
|
69605
|
-
|
|
69606
69249
|
export declare type JsonApiOrganizationOutTypeEnum = 'organization';
|
|
69607
69250
|
|
|
69608
69251
|
/**
|
|
@@ -69641,7 +69284,11 @@ export declare interface JsonApiOrganizationPatchDocument {
|
|
|
69641
69284
|
}
|
|
69642
69285
|
|
|
69643
69286
|
export declare interface JsonApiOrganizationPatchRelationships {
|
|
69644
|
-
'identityProvider'?:
|
|
69287
|
+
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
69288
|
+
}
|
|
69289
|
+
|
|
69290
|
+
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
69291
|
+
'data': JsonApiIdentityProviderLinkage | null;
|
|
69645
69292
|
}
|
|
69646
69293
|
|
|
69647
69294
|
export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
@@ -69690,7 +69337,7 @@ export declare interface JsonApiOrganizationSettingOutAttributes {
|
|
|
69690
69337
|
'type'?: JsonApiOrganizationSettingOutAttributesTypeEnum;
|
|
69691
69338
|
}
|
|
69692
69339
|
|
|
69693
|
-
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | '
|
|
69340
|
+
export declare type JsonApiOrganizationSettingOutAttributesTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
69694
69341
|
|
|
69695
69342
|
export declare interface JsonApiOrganizationSettingOutDocument {
|
|
69696
69343
|
'data': JsonApiOrganizationSettingOut;
|
|
@@ -70893,7 +70540,7 @@ export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
|
70893
70540
|
'createdBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
70894
70541
|
'modifiedBy'?: JsonApiAgentOutRelationshipsCreatedBy;
|
|
70895
70542
|
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
70896
|
-
'recipients'?:
|
|
70543
|
+
'recipients'?: JsonApiIpAllowlistPolicyInRelationshipsUsers;
|
|
70897
70544
|
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
70898
70545
|
}
|
|
70899
70546
|
|
|
@@ -74105,35 +73752,6 @@ export declare interface KnowledgeRecommendationControllerApiUpdateEntityKnowled
|
|
|
74105
73752
|
readonly include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>;
|
|
74106
73753
|
}
|
|
74107
73754
|
|
|
74108
|
-
export declare interface KnowledgeRecommendationsRequestDto {
|
|
74109
|
-
'metricId': string;
|
|
74110
|
-
'direction'?: KnowledgeRecommendationsRequestDtoDirectionEnum;
|
|
74111
|
-
'comparisonType': KnowledgeRecommendationsRequestDtoComparisonTypeEnum;
|
|
74112
|
-
'limit'?: number;
|
|
74113
|
-
'minScore'?: number;
|
|
74114
|
-
'aiModel'?: string;
|
|
74115
|
-
'temperature'?: number;
|
|
74116
|
-
'maxTokens'?: number;
|
|
74117
|
-
'gooddataHost'?: string;
|
|
74118
|
-
'gooddataToken'?: string;
|
|
74119
|
-
'analyticalDashboardId'?: string;
|
|
74120
|
-
'widgetId'?: string;
|
|
74121
|
-
'widgetName'?: string;
|
|
74122
|
-
'dryRun'?: boolean;
|
|
74123
|
-
'referenceValue'?: number;
|
|
74124
|
-
'analyzedValue'?: number;
|
|
74125
|
-
}
|
|
74126
|
-
|
|
74127
|
-
export declare type KnowledgeRecommendationsRequestDtoComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
74128
|
-
|
|
74129
|
-
export declare type KnowledgeRecommendationsRequestDtoDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
74130
|
-
|
|
74131
|
-
export declare interface KnowledgeRecommendationsResponseDto {
|
|
74132
|
-
'runId': string;
|
|
74133
|
-
'status': string;
|
|
74134
|
-
'message': string;
|
|
74135
|
-
}
|
|
74136
|
-
|
|
74137
73755
|
/**
|
|
74138
73756
|
* LabelControllerApi - object-oriented interface
|
|
74139
73757
|
* @export
|
|
@@ -77714,6 +77332,41 @@ export declare interface LDMDeclarativeAPIsApiSetLogicalModelRequest {
|
|
|
77714
77332
|
readonly declarativeModel: DeclarativeModel;
|
|
77715
77333
|
}
|
|
77716
77334
|
|
|
77335
|
+
export declare interface LdmObjectPermissions {
|
|
77336
|
+
/**
|
|
77337
|
+
* List of rules
|
|
77338
|
+
*/
|
|
77339
|
+
'rules': Array<RulePermission>;
|
|
77340
|
+
/**
|
|
77341
|
+
* List of users
|
|
77342
|
+
*/
|
|
77343
|
+
'users': Array<UserPermission>;
|
|
77344
|
+
/**
|
|
77345
|
+
* List of user groups
|
|
77346
|
+
*/
|
|
77347
|
+
'userGroups': Array<UserGroupPermission>;
|
|
77348
|
+
}
|
|
77349
|
+
|
|
77350
|
+
/**
|
|
77351
|
+
* Desired levels of LDM-object permissions for an assignee identified by an identifier.
|
|
77352
|
+
*/
|
|
77353
|
+
export declare interface LdmObjectPermissionsForAssignee {
|
|
77354
|
+
'permissions': Array<LdmObjectPermissionsForAssigneePermissionsEnum>;
|
|
77355
|
+
'assigneeIdentifier': AssigneeIdentifier;
|
|
77356
|
+
}
|
|
77357
|
+
|
|
77358
|
+
export declare type LdmObjectPermissionsForAssigneePermissionsEnum = 'EDIT' | 'SHARE' | 'VIEW';
|
|
77359
|
+
|
|
77360
|
+
/**
|
|
77361
|
+
* Desired levels of LDM-object permissions for a collection of assignees identified by a rule.
|
|
77362
|
+
*/
|
|
77363
|
+
export declare interface LdmObjectPermissionsForAssigneeRule {
|
|
77364
|
+
'permissions': Array<LdmObjectPermissionsForAssigneeRulePermissionsEnum>;
|
|
77365
|
+
'assigneeRule': AssigneeRule;
|
|
77366
|
+
}
|
|
77367
|
+
|
|
77368
|
+
export declare type LdmObjectPermissionsForAssigneeRulePermissionsEnum = 'EDIT' | 'SHARE' | 'VIEW';
|
|
77369
|
+
|
|
77717
77370
|
export declare interface ListLinks {
|
|
77718
77371
|
/**
|
|
77719
77372
|
* A string containing the link\'s URL.
|
|
@@ -77744,422 +77397,6 @@ export declare interface ListLlmProviderModelsResponse {
|
|
|
77744
77397
|
'models': Array<LlmModel>;
|
|
77745
77398
|
}
|
|
77746
77399
|
|
|
77747
|
-
/**
|
|
77748
|
-
* LlmEndpointControllerApi - object-oriented interface
|
|
77749
|
-
* @export
|
|
77750
|
-
* @class LlmEndpointControllerApi
|
|
77751
|
-
* @extends {BaseAPI}
|
|
77752
|
-
*/
|
|
77753
|
-
export declare class LlmEndpointControllerApi extends MetadataBaseApi implements LlmEndpointControllerApiInterface {
|
|
77754
|
-
/**
|
|
77755
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77756
|
-
* @summary Post LLM endpoint entities
|
|
77757
|
-
* @param {LlmEndpointControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77758
|
-
* @param {*} [options] Override http request option.
|
|
77759
|
-
* @deprecated
|
|
77760
|
-
* @throws {RequiredError}
|
|
77761
|
-
* @memberof LlmEndpointControllerApi
|
|
77762
|
-
*/
|
|
77763
|
-
createEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77764
|
-
/**
|
|
77765
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77766
|
-
* @summary Delete LLM endpoint entity
|
|
77767
|
-
* @param {LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77768
|
-
* @param {*} [options] Override http request option.
|
|
77769
|
-
* @deprecated
|
|
77770
|
-
* @throws {RequiredError}
|
|
77771
|
-
* @memberof LlmEndpointControllerApi
|
|
77772
|
-
*/
|
|
77773
|
-
deleteEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
77774
|
-
/**
|
|
77775
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77776
|
-
* @summary Get all LLM endpoint entities
|
|
77777
|
-
* @param {LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
77778
|
-
* @param {*} [options] Override http request option.
|
|
77779
|
-
* @deprecated
|
|
77780
|
-
* @throws {RequiredError}
|
|
77781
|
-
* @memberof LlmEndpointControllerApi
|
|
77782
|
-
*/
|
|
77783
|
-
getAllEntitiesLlmEndpoints(requestParameters?: LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
77784
|
-
/**
|
|
77785
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77786
|
-
* @summary Get LLM endpoint entity
|
|
77787
|
-
* @param {LlmEndpointControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77788
|
-
* @param {*} [options] Override http request option.
|
|
77789
|
-
* @deprecated
|
|
77790
|
-
* @throws {RequiredError}
|
|
77791
|
-
* @memberof LlmEndpointControllerApi
|
|
77792
|
-
*/
|
|
77793
|
-
getEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77794
|
-
/**
|
|
77795
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77796
|
-
* @summary Patch LLM endpoint entity
|
|
77797
|
-
* @param {LlmEndpointControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77798
|
-
* @param {*} [options] Override http request option.
|
|
77799
|
-
* @deprecated
|
|
77800
|
-
* @throws {RequiredError}
|
|
77801
|
-
* @memberof LlmEndpointControllerApi
|
|
77802
|
-
*/
|
|
77803
|
-
patchEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77804
|
-
/**
|
|
77805
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77806
|
-
* @summary PUT LLM endpoint entity
|
|
77807
|
-
* @param {LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77808
|
-
* @param {*} [options] Override http request option.
|
|
77809
|
-
* @deprecated
|
|
77810
|
-
* @throws {RequiredError}
|
|
77811
|
-
* @memberof LlmEndpointControllerApi
|
|
77812
|
-
*/
|
|
77813
|
-
updateEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77814
|
-
}
|
|
77815
|
-
|
|
77816
|
-
/**
|
|
77817
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77818
|
-
* @summary Post LLM endpoint entities
|
|
77819
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
77820
|
-
* @param {string} basePath Base path.
|
|
77821
|
-
* @param {LlmEndpointControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77822
|
-
* @param {*} [options] Override http request option.
|
|
77823
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77824
|
-
* @throws {RequiredError}
|
|
77825
|
-
*/
|
|
77826
|
-
export declare function LlmEndpointControllerApi_CreateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LlmEndpointControllerApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77827
|
-
|
|
77828
|
-
/**
|
|
77829
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77830
|
-
* @summary Delete LLM endpoint entity
|
|
77831
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
77832
|
-
* @param {string} basePath Base path.
|
|
77833
|
-
* @param {LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77834
|
-
* @param {*} [options] Override http request option.
|
|
77835
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77836
|
-
* @throws {RequiredError}
|
|
77837
|
-
*/
|
|
77838
|
-
export declare function LlmEndpointControllerApi_DeleteEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
77839
|
-
|
|
77840
|
-
/**
|
|
77841
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77842
|
-
* @summary Get all LLM endpoint entities
|
|
77843
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
77844
|
-
* @param {string} basePath Base path.
|
|
77845
|
-
* @param {LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
77846
|
-
* @param {*} [options] Override http request option.
|
|
77847
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77848
|
-
* @throws {RequiredError}
|
|
77849
|
-
*/
|
|
77850
|
-
export declare function LlmEndpointControllerApi_GetAllEntitiesLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
77851
|
-
|
|
77852
|
-
/**
|
|
77853
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77854
|
-
* @summary Get LLM endpoint entity
|
|
77855
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
77856
|
-
* @param {string} basePath Base path.
|
|
77857
|
-
* @param {LlmEndpointControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77858
|
-
* @param {*} [options] Override http request option.
|
|
77859
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77860
|
-
* @throws {RequiredError}
|
|
77861
|
-
*/
|
|
77862
|
-
export declare function LlmEndpointControllerApi_GetEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LlmEndpointControllerApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77863
|
-
|
|
77864
|
-
/**
|
|
77865
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77866
|
-
* @summary Patch LLM endpoint entity
|
|
77867
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
77868
|
-
* @param {string} basePath Base path.
|
|
77869
|
-
* @param {LlmEndpointControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77870
|
-
* @param {*} [options] Override http request option.
|
|
77871
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77872
|
-
* @throws {RequiredError}
|
|
77873
|
-
*/
|
|
77874
|
-
export declare function LlmEndpointControllerApi_PatchEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LlmEndpointControllerApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77875
|
-
|
|
77876
|
-
/**
|
|
77877
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77878
|
-
* @summary PUT LLM endpoint entity
|
|
77879
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
77880
|
-
* @param {string} basePath Base path.
|
|
77881
|
-
* @param {LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77882
|
-
* @param {*} [options] Override http request option.
|
|
77883
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77884
|
-
* @throws {RequiredError}
|
|
77885
|
-
*/
|
|
77886
|
-
export declare function LlmEndpointControllerApi_UpdateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
77887
|
-
|
|
77888
|
-
/**
|
|
77889
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77890
|
-
* @summary Post LLM endpoint entities
|
|
77891
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
77892
|
-
* @param {*} [options] Override http request option.
|
|
77893
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77894
|
-
* @throws {RequiredError}
|
|
77895
|
-
*/
|
|
77896
|
-
export declare function LlmEndpointControllerApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77897
|
-
|
|
77898
|
-
/**
|
|
77899
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77900
|
-
* @summary Delete LLM endpoint entity
|
|
77901
|
-
* @param {string} id
|
|
77902
|
-
* @param {*} [options] Override http request option.
|
|
77903
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77904
|
-
* @throws {RequiredError}
|
|
77905
|
-
*/
|
|
77906
|
-
export declare function LlmEndpointControllerApiAxiosParamCreator_DeleteEntityLlmEndpoints(id: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77907
|
-
|
|
77908
|
-
/**
|
|
77909
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77910
|
-
* @summary Get all LLM endpoint entities
|
|
77911
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77912
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
77913
|
-
* @param {number} [size] The size of the page to be returned
|
|
77914
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
77915
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
77916
|
-
* @param {*} [options] Override http request option.
|
|
77917
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77918
|
-
* @throws {RequiredError}
|
|
77919
|
-
*/
|
|
77920
|
-
export declare function LlmEndpointControllerApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77921
|
-
|
|
77922
|
-
/**
|
|
77923
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77924
|
-
* @summary Get LLM endpoint entity
|
|
77925
|
-
* @param {string} id
|
|
77926
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77927
|
-
* @param {*} [options] Override http request option.
|
|
77928
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77929
|
-
* @throws {RequiredError}
|
|
77930
|
-
*/
|
|
77931
|
-
export declare function LlmEndpointControllerApiAxiosParamCreator_GetEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77932
|
-
|
|
77933
|
-
/**
|
|
77934
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77935
|
-
* @summary Patch LLM endpoint entity
|
|
77936
|
-
* @param {string} id
|
|
77937
|
-
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
77938
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77939
|
-
* @param {*} [options] Override http request option.
|
|
77940
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77941
|
-
* @throws {RequiredError}
|
|
77942
|
-
*/
|
|
77943
|
-
export declare function LlmEndpointControllerApiAxiosParamCreator_PatchEntityLlmEndpoints(id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77944
|
-
|
|
77945
|
-
/**
|
|
77946
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
77947
|
-
* @summary PUT LLM endpoint entity
|
|
77948
|
-
* @param {string} id
|
|
77949
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
77950
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77951
|
-
* @param {*} [options] Override http request option.
|
|
77952
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
77953
|
-
* @throws {RequiredError}
|
|
77954
|
-
*/
|
|
77955
|
-
export declare function LlmEndpointControllerApiAxiosParamCreator_UpdateEntityLlmEndpoints(id: string, jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
77956
|
-
|
|
77957
|
-
/**
|
|
77958
|
-
* Request parameters for createEntityLlmEndpoints operation in LlmEndpointControllerApi.
|
|
77959
|
-
* @export
|
|
77960
|
-
* @interface LlmEndpointControllerApiCreateEntityLlmEndpointsRequest
|
|
77961
|
-
*/
|
|
77962
|
-
export declare interface LlmEndpointControllerApiCreateEntityLlmEndpointsRequest {
|
|
77963
|
-
/**
|
|
77964
|
-
*
|
|
77965
|
-
* @type {JsonApiLlmEndpointInDocument}
|
|
77966
|
-
* @memberof LlmEndpointControllerApiCreateEntityLlmEndpoints
|
|
77967
|
-
*/
|
|
77968
|
-
readonly jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument;
|
|
77969
|
-
}
|
|
77970
|
-
|
|
77971
|
-
/**
|
|
77972
|
-
* Request parameters for deleteEntityLlmEndpoints operation in LlmEndpointControllerApi.
|
|
77973
|
-
* @export
|
|
77974
|
-
* @interface LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest
|
|
77975
|
-
*/
|
|
77976
|
-
export declare interface LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest {
|
|
77977
|
-
/**
|
|
77978
|
-
*
|
|
77979
|
-
* @type {string}
|
|
77980
|
-
* @memberof LlmEndpointControllerApiDeleteEntityLlmEndpoints
|
|
77981
|
-
*/
|
|
77982
|
-
readonly id: string;
|
|
77983
|
-
}
|
|
77984
|
-
|
|
77985
|
-
/**
|
|
77986
|
-
* Request parameters for getAllEntitiesLlmEndpoints operation in LlmEndpointControllerApi.
|
|
77987
|
-
* @export
|
|
77988
|
-
* @interface LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest
|
|
77989
|
-
*/
|
|
77990
|
-
export declare interface LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest {
|
|
77991
|
-
/**
|
|
77992
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
77993
|
-
* @type {string}
|
|
77994
|
-
* @memberof LlmEndpointControllerApiGetAllEntitiesLlmEndpoints
|
|
77995
|
-
*/
|
|
77996
|
-
readonly filter?: string;
|
|
77997
|
-
/**
|
|
77998
|
-
* Zero-based page index (0..N)
|
|
77999
|
-
* @type {number}
|
|
78000
|
-
* @memberof LlmEndpointControllerApiGetAllEntitiesLlmEndpoints
|
|
78001
|
-
*/
|
|
78002
|
-
readonly page?: number;
|
|
78003
|
-
/**
|
|
78004
|
-
* The size of the page to be returned
|
|
78005
|
-
* @type {number}
|
|
78006
|
-
* @memberof LlmEndpointControllerApiGetAllEntitiesLlmEndpoints
|
|
78007
|
-
*/
|
|
78008
|
-
readonly size?: number;
|
|
78009
|
-
/**
|
|
78010
|
-
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
78011
|
-
* @type {Array<string>}
|
|
78012
|
-
* @memberof LlmEndpointControllerApiGetAllEntitiesLlmEndpoints
|
|
78013
|
-
*/
|
|
78014
|
-
readonly sort?: Array<string>;
|
|
78015
|
-
/**
|
|
78016
|
-
* Include Meta objects.
|
|
78017
|
-
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
78018
|
-
* @memberof LlmEndpointControllerApiGetAllEntitiesLlmEndpoints
|
|
78019
|
-
*/
|
|
78020
|
-
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
78021
|
-
}
|
|
78022
|
-
|
|
78023
|
-
/**
|
|
78024
|
-
* Request parameters for getEntityLlmEndpoints operation in LlmEndpointControllerApi.
|
|
78025
|
-
* @export
|
|
78026
|
-
* @interface LlmEndpointControllerApiGetEntityLlmEndpointsRequest
|
|
78027
|
-
*/
|
|
78028
|
-
export declare interface LlmEndpointControllerApiGetEntityLlmEndpointsRequest {
|
|
78029
|
-
/**
|
|
78030
|
-
*
|
|
78031
|
-
* @type {string}
|
|
78032
|
-
* @memberof LlmEndpointControllerApiGetEntityLlmEndpoints
|
|
78033
|
-
*/
|
|
78034
|
-
readonly id: string;
|
|
78035
|
-
/**
|
|
78036
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78037
|
-
* @type {string}
|
|
78038
|
-
* @memberof LlmEndpointControllerApiGetEntityLlmEndpoints
|
|
78039
|
-
*/
|
|
78040
|
-
readonly filter?: string;
|
|
78041
|
-
}
|
|
78042
|
-
|
|
78043
|
-
/**
|
|
78044
|
-
* LlmEndpointControllerApi - interface
|
|
78045
|
-
* @export
|
|
78046
|
-
* @interface LlmEndpointControllerApi
|
|
78047
|
-
*/
|
|
78048
|
-
export declare interface LlmEndpointControllerApiInterface {
|
|
78049
|
-
/**
|
|
78050
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78051
|
-
* @summary Post LLM endpoint entities
|
|
78052
|
-
* @param {LlmEndpointControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78053
|
-
* @param {*} [options] Override http request option.
|
|
78054
|
-
* @deprecated
|
|
78055
|
-
* @throws {RequiredError}
|
|
78056
|
-
* @memberof LlmEndpointControllerApiInterface
|
|
78057
|
-
*/
|
|
78058
|
-
createEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78059
|
-
/**
|
|
78060
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78061
|
-
* @summary Delete LLM endpoint entity
|
|
78062
|
-
* @param {LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78063
|
-
* @param {*} [options] Override http request option.
|
|
78064
|
-
* @deprecated
|
|
78065
|
-
* @throws {RequiredError}
|
|
78066
|
-
* @memberof LlmEndpointControllerApiInterface
|
|
78067
|
-
*/
|
|
78068
|
-
deleteEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78069
|
-
/**
|
|
78070
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78071
|
-
* @summary Get all LLM endpoint entities
|
|
78072
|
-
* @param {LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
78073
|
-
* @param {*} [options] Override http request option.
|
|
78074
|
-
* @deprecated
|
|
78075
|
-
* @throws {RequiredError}
|
|
78076
|
-
* @memberof LlmEndpointControllerApiInterface
|
|
78077
|
-
*/
|
|
78078
|
-
getAllEntitiesLlmEndpoints(requestParameters: LlmEndpointControllerApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
78079
|
-
/**
|
|
78080
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78081
|
-
* @summary Get LLM endpoint entity
|
|
78082
|
-
* @param {LlmEndpointControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78083
|
-
* @param {*} [options] Override http request option.
|
|
78084
|
-
* @deprecated
|
|
78085
|
-
* @throws {RequiredError}
|
|
78086
|
-
* @memberof LlmEndpointControllerApiInterface
|
|
78087
|
-
*/
|
|
78088
|
-
getEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78089
|
-
/**
|
|
78090
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78091
|
-
* @summary Patch LLM endpoint entity
|
|
78092
|
-
* @param {LlmEndpointControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78093
|
-
* @param {*} [options] Override http request option.
|
|
78094
|
-
* @deprecated
|
|
78095
|
-
* @throws {RequiredError}
|
|
78096
|
-
* @memberof LlmEndpointControllerApiInterface
|
|
78097
|
-
*/
|
|
78098
|
-
patchEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78099
|
-
/**
|
|
78100
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78101
|
-
* @summary PUT LLM endpoint entity
|
|
78102
|
-
* @param {LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78103
|
-
* @param {*} [options] Override http request option.
|
|
78104
|
-
* @deprecated
|
|
78105
|
-
* @throws {RequiredError}
|
|
78106
|
-
* @memberof LlmEndpointControllerApiInterface
|
|
78107
|
-
*/
|
|
78108
|
-
updateEntityLlmEndpoints(requestParameters: LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78109
|
-
}
|
|
78110
|
-
|
|
78111
|
-
/**
|
|
78112
|
-
* Request parameters for patchEntityLlmEndpoints operation in LlmEndpointControllerApi.
|
|
78113
|
-
* @export
|
|
78114
|
-
* @interface LlmEndpointControllerApiPatchEntityLlmEndpointsRequest
|
|
78115
|
-
*/
|
|
78116
|
-
export declare interface LlmEndpointControllerApiPatchEntityLlmEndpointsRequest {
|
|
78117
|
-
/**
|
|
78118
|
-
*
|
|
78119
|
-
* @type {string}
|
|
78120
|
-
* @memberof LlmEndpointControllerApiPatchEntityLlmEndpoints
|
|
78121
|
-
*/
|
|
78122
|
-
readonly id: string;
|
|
78123
|
-
/**
|
|
78124
|
-
*
|
|
78125
|
-
* @type {JsonApiLlmEndpointPatchDocument}
|
|
78126
|
-
* @memberof LlmEndpointControllerApiPatchEntityLlmEndpoints
|
|
78127
|
-
*/
|
|
78128
|
-
readonly jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument;
|
|
78129
|
-
/**
|
|
78130
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78131
|
-
* @type {string}
|
|
78132
|
-
* @memberof LlmEndpointControllerApiPatchEntityLlmEndpoints
|
|
78133
|
-
*/
|
|
78134
|
-
readonly filter?: string;
|
|
78135
|
-
}
|
|
78136
|
-
|
|
78137
|
-
/**
|
|
78138
|
-
* Request parameters for updateEntityLlmEndpoints operation in LlmEndpointControllerApi.
|
|
78139
|
-
* @export
|
|
78140
|
-
* @interface LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest
|
|
78141
|
-
*/
|
|
78142
|
-
export declare interface LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest {
|
|
78143
|
-
/**
|
|
78144
|
-
*
|
|
78145
|
-
* @type {string}
|
|
78146
|
-
* @memberof LlmEndpointControllerApiUpdateEntityLlmEndpoints
|
|
78147
|
-
*/
|
|
78148
|
-
readonly id: string;
|
|
78149
|
-
/**
|
|
78150
|
-
*
|
|
78151
|
-
* @type {JsonApiLlmEndpointInDocument}
|
|
78152
|
-
* @memberof LlmEndpointControllerApiUpdateEntityLlmEndpoints
|
|
78153
|
-
*/
|
|
78154
|
-
readonly jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument;
|
|
78155
|
-
/**
|
|
78156
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78157
|
-
* @type {string}
|
|
78158
|
-
* @memberof LlmEndpointControllerApiUpdateEntityLlmEndpoints
|
|
78159
|
-
*/
|
|
78160
|
-
readonly filter?: string;
|
|
78161
|
-
}
|
|
78162
|
-
|
|
78163
77400
|
/**
|
|
78164
77401
|
* LLMEndpointsApi - object-oriented interface
|
|
78165
77402
|
* @export
|
|
@@ -78168,292 +77405,91 @@ export declare interface LlmEndpointControllerApiUpdateEntityLlmEndpointsRequest
|
|
|
78168
77405
|
*/
|
|
78169
77406
|
export declare class LLMEndpointsApi extends MetadataBaseApi implements LLMEndpointsApiInterface {
|
|
78170
77407
|
/**
|
|
78171
|
-
*
|
|
78172
|
-
* @summary Post LLM endpoint entities
|
|
78173
|
-
* @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77408
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77409
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
78174
77410
|
* @param {*} [options] Override http request option.
|
|
78175
77411
|
* @deprecated
|
|
78176
77412
|
* @throws {RequiredError}
|
|
78177
77413
|
* @memberof LLMEndpointsApi
|
|
78178
77414
|
*/
|
|
78179
|
-
|
|
77415
|
+
createEntity(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78180
77416
|
/**
|
|
78181
|
-
*
|
|
78182
|
-
* @summary Delete LLM endpoint entity
|
|
78183
|
-
* @param {
|
|
77417
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77418
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
77419
|
+
* @param {LLMEndpointsApiDeleteEntityRequest} requestParameters Request parameters.
|
|
78184
77420
|
* @param {*} [options] Override http request option.
|
|
78185
77421
|
* @deprecated
|
|
78186
77422
|
* @throws {RequiredError}
|
|
78187
77423
|
* @memberof LLMEndpointsApi
|
|
78188
77424
|
*/
|
|
78189
|
-
|
|
77425
|
+
deleteEntity(requestParameters: LLMEndpointsApiDeleteEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78190
77426
|
/**
|
|
78191
|
-
*
|
|
78192
|
-
* @summary Get all LLM endpoint entities
|
|
78193
|
-
* @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
77427
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77428
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
78194
77429
|
* @param {*} [options] Override http request option.
|
|
78195
77430
|
* @deprecated
|
|
78196
77431
|
* @throws {RequiredError}
|
|
78197
77432
|
* @memberof LLMEndpointsApi
|
|
78198
77433
|
*/
|
|
78199
|
-
|
|
77434
|
+
getAllEntities(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78200
77435
|
/**
|
|
78201
|
-
*
|
|
78202
|
-
* @summary Get LLM endpoint entity
|
|
78203
|
-
* @param {
|
|
77436
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77437
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
77438
|
+
* @param {LLMEndpointsApiGetEntityRequest} requestParameters Request parameters.
|
|
78204
77439
|
* @param {*} [options] Override http request option.
|
|
78205
77440
|
* @deprecated
|
|
78206
77441
|
* @throws {RequiredError}
|
|
78207
77442
|
* @memberof LLMEndpointsApi
|
|
78208
77443
|
*/
|
|
78209
|
-
|
|
77444
|
+
getEntity(requestParameters: LLMEndpointsApiGetEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78210
77445
|
/**
|
|
78211
|
-
*
|
|
78212
|
-
* @summary Patch LLM endpoint entity
|
|
78213
|
-
* @param {
|
|
77446
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77447
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
77448
|
+
* @param {LLMEndpointsApiPatchEntityRequest} requestParameters Request parameters.
|
|
78214
77449
|
* @param {*} [options] Override http request option.
|
|
78215
77450
|
* @deprecated
|
|
78216
77451
|
* @throws {RequiredError}
|
|
78217
77452
|
* @memberof LLMEndpointsApi
|
|
78218
77453
|
*/
|
|
78219
|
-
|
|
77454
|
+
patchEntity(requestParameters: LLMEndpointsApiPatchEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78220
77455
|
/**
|
|
78221
|
-
*
|
|
78222
|
-
* @summary PUT LLM endpoint entity
|
|
78223
|
-
* @param {
|
|
77456
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77457
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
77458
|
+
* @param {LLMEndpointsApiUpdateEntityRequest} requestParameters Request parameters.
|
|
78224
77459
|
* @param {*} [options] Override http request option.
|
|
78225
77460
|
* @deprecated
|
|
78226
77461
|
* @throws {RequiredError}
|
|
78227
77462
|
* @memberof LLMEndpointsApi
|
|
78228
77463
|
*/
|
|
78229
|
-
|
|
78230
|
-
}
|
|
78231
|
-
|
|
78232
|
-
/**
|
|
78233
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78234
|
-
* @summary Post LLM endpoint entities
|
|
78235
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
78236
|
-
* @param {string} basePath Base path.
|
|
78237
|
-
* @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78238
|
-
* @param {*} [options] Override http request option.
|
|
78239
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78240
|
-
* @throws {RequiredError}
|
|
78241
|
-
*/
|
|
78242
|
-
export declare function LLMEndpointsApi_CreateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78243
|
-
|
|
78244
|
-
/**
|
|
78245
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78246
|
-
* @summary Delete LLM endpoint entity
|
|
78247
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
78248
|
-
* @param {string} basePath Base path.
|
|
78249
|
-
* @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78250
|
-
* @param {*} [options] Override http request option.
|
|
78251
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78252
|
-
* @throws {RequiredError}
|
|
78253
|
-
*/
|
|
78254
|
-
export declare function LLMEndpointsApi_DeleteEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
78255
|
-
|
|
78256
|
-
/**
|
|
78257
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78258
|
-
* @summary Get all LLM endpoint entities
|
|
78259
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
78260
|
-
* @param {string} basePath Base path.
|
|
78261
|
-
* @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
78262
|
-
* @param {*} [options] Override http request option.
|
|
78263
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78264
|
-
* @throws {RequiredError}
|
|
78265
|
-
*/
|
|
78266
|
-
export declare function LLMEndpointsApi_GetAllEntitiesLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
78267
|
-
|
|
78268
|
-
/**
|
|
78269
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78270
|
-
* @summary Get LLM endpoint entity
|
|
78271
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
78272
|
-
* @param {string} basePath Base path.
|
|
78273
|
-
* @param {LLMEndpointsApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78274
|
-
* @param {*} [options] Override http request option.
|
|
78275
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78276
|
-
* @throws {RequiredError}
|
|
78277
|
-
*/
|
|
78278
|
-
export declare function LLMEndpointsApi_GetEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78279
|
-
|
|
78280
|
-
/**
|
|
78281
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78282
|
-
* @summary Patch LLM endpoint entity
|
|
78283
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
78284
|
-
* @param {string} basePath Base path.
|
|
78285
|
-
* @param {LLMEndpointsApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78286
|
-
* @param {*} [options] Override http request option.
|
|
78287
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78288
|
-
* @throws {RequiredError}
|
|
78289
|
-
*/
|
|
78290
|
-
export declare function LLMEndpointsApi_PatchEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78291
|
-
|
|
78292
|
-
/**
|
|
78293
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78294
|
-
* @summary PUT LLM endpoint entity
|
|
78295
|
-
* @param {AxiosInstance} axios Axios instance.
|
|
78296
|
-
* @param {string} basePath Base path.
|
|
78297
|
-
* @param {LLMEndpointsApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
78298
|
-
* @param {*} [options] Override http request option.
|
|
78299
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78300
|
-
* @throws {RequiredError}
|
|
78301
|
-
*/
|
|
78302
|
-
export declare function LLMEndpointsApi_UpdateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
78303
|
-
|
|
78304
|
-
/**
|
|
78305
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78306
|
-
* @summary Post LLM endpoint entities
|
|
78307
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
78308
|
-
* @param {*} [options] Override http request option.
|
|
78309
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78310
|
-
* @throws {RequiredError}
|
|
78311
|
-
*/
|
|
78312
|
-
export declare function LLMEndpointsApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78313
|
-
|
|
78314
|
-
/**
|
|
78315
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78316
|
-
* @summary Delete LLM endpoint entity
|
|
78317
|
-
* @param {string} id
|
|
78318
|
-
* @param {*} [options] Override http request option.
|
|
78319
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78320
|
-
* @throws {RequiredError}
|
|
78321
|
-
*/
|
|
78322
|
-
export declare function LLMEndpointsApiAxiosParamCreator_DeleteEntityLlmEndpoints(id: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78323
|
-
|
|
78324
|
-
/**
|
|
78325
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78326
|
-
* @summary Get all LLM endpoint entities
|
|
78327
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78328
|
-
* @param {number} [page] Zero-based page index (0..N)
|
|
78329
|
-
* @param {number} [size] The size of the page to be returned
|
|
78330
|
-
* @param {Array<string>} [sort] Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
78331
|
-
* @param {Array<'page' | 'all' | 'ALL'>} [metaInclude] Include Meta objects.
|
|
78332
|
-
* @param {*} [options] Override http request option.
|
|
78333
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78334
|
-
* @throws {RequiredError}
|
|
78335
|
-
*/
|
|
78336
|
-
export declare function LLMEndpointsApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78337
|
-
|
|
78338
|
-
/**
|
|
78339
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78340
|
-
* @summary Get LLM endpoint entity
|
|
78341
|
-
* @param {string} id
|
|
78342
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78343
|
-
* @param {*} [options] Override http request option.
|
|
78344
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78345
|
-
* @throws {RequiredError}
|
|
78346
|
-
*/
|
|
78347
|
-
export declare function LLMEndpointsApiAxiosParamCreator_GetEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78348
|
-
|
|
78349
|
-
/**
|
|
78350
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78351
|
-
* @summary Patch LLM endpoint entity
|
|
78352
|
-
* @param {string} id
|
|
78353
|
-
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
78354
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78355
|
-
* @param {*} [options] Override http request option.
|
|
78356
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78357
|
-
* @throws {RequiredError}
|
|
78358
|
-
*/
|
|
78359
|
-
export declare function LLMEndpointsApiAxiosParamCreator_PatchEntityLlmEndpoints(id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78360
|
-
|
|
78361
|
-
/**
|
|
78362
|
-
* Will be soon removed and replaced by LlmProvider.
|
|
78363
|
-
* @summary PUT LLM endpoint entity
|
|
78364
|
-
* @param {string} id
|
|
78365
|
-
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
78366
|
-
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78367
|
-
* @param {*} [options] Override http request option.
|
|
78368
|
-
* @param {Configuration} [configuration] Optional configuration.
|
|
78369
|
-
* @throws {RequiredError}
|
|
78370
|
-
*/
|
|
78371
|
-
export declare function LLMEndpointsApiAxiosParamCreator_UpdateEntityLlmEndpoints(id: string, jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
78372
|
-
|
|
78373
|
-
/**
|
|
78374
|
-
* Request parameters for createEntityLlmEndpoints operation in LLMEndpointsApi.
|
|
78375
|
-
* @export
|
|
78376
|
-
* @interface LLMEndpointsApiCreateEntityLlmEndpointsRequest
|
|
78377
|
-
*/
|
|
78378
|
-
export declare interface LLMEndpointsApiCreateEntityLlmEndpointsRequest {
|
|
78379
|
-
/**
|
|
78380
|
-
*
|
|
78381
|
-
* @type {JsonApiLlmEndpointInDocument}
|
|
78382
|
-
* @memberof LLMEndpointsApiCreateEntityLlmEndpoints
|
|
78383
|
-
*/
|
|
78384
|
-
readonly jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument;
|
|
77464
|
+
updateEntity(requestParameters: LLMEndpointsApiUpdateEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78385
77465
|
}
|
|
78386
77466
|
|
|
78387
77467
|
/**
|
|
78388
|
-
* Request parameters for
|
|
77468
|
+
* Request parameters for deleteEntity operation in LLMEndpointsApi.
|
|
78389
77469
|
* @export
|
|
78390
|
-
* @interface
|
|
77470
|
+
* @interface LLMEndpointsApiDeleteEntityRequest
|
|
78391
77471
|
*/
|
|
78392
|
-
export declare interface
|
|
77472
|
+
export declare interface LLMEndpointsApiDeleteEntityRequest {
|
|
78393
77473
|
/**
|
|
78394
77474
|
*
|
|
78395
77475
|
* @type {string}
|
|
78396
|
-
* @memberof
|
|
77476
|
+
* @memberof LLMEndpointsApiDeleteEntity
|
|
78397
77477
|
*/
|
|
78398
77478
|
readonly id: string;
|
|
78399
77479
|
}
|
|
78400
77480
|
|
|
78401
77481
|
/**
|
|
78402
|
-
* Request parameters for
|
|
77482
|
+
* Request parameters for getEntity operation in LLMEndpointsApi.
|
|
78403
77483
|
* @export
|
|
78404
|
-
* @interface
|
|
77484
|
+
* @interface LLMEndpointsApiGetEntityRequest
|
|
78405
77485
|
*/
|
|
78406
|
-
export declare interface
|
|
78407
|
-
/**
|
|
78408
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78409
|
-
* @type {string}
|
|
78410
|
-
* @memberof LLMEndpointsApiGetAllEntitiesLlmEndpoints
|
|
78411
|
-
*/
|
|
78412
|
-
readonly filter?: string;
|
|
78413
|
-
/**
|
|
78414
|
-
* Zero-based page index (0..N)
|
|
78415
|
-
* @type {number}
|
|
78416
|
-
* @memberof LLMEndpointsApiGetAllEntitiesLlmEndpoints
|
|
78417
|
-
*/
|
|
78418
|
-
readonly page?: number;
|
|
78419
|
-
/**
|
|
78420
|
-
* The size of the page to be returned
|
|
78421
|
-
* @type {number}
|
|
78422
|
-
* @memberof LLMEndpointsApiGetAllEntitiesLlmEndpoints
|
|
78423
|
-
*/
|
|
78424
|
-
readonly size?: number;
|
|
78425
|
-
/**
|
|
78426
|
-
* Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.
|
|
78427
|
-
* @type {Array<string>}
|
|
78428
|
-
* @memberof LLMEndpointsApiGetAllEntitiesLlmEndpoints
|
|
78429
|
-
*/
|
|
78430
|
-
readonly sort?: Array<string>;
|
|
78431
|
-
/**
|
|
78432
|
-
* Include Meta objects.
|
|
78433
|
-
* @type {Array<'page' | 'all' | 'ALL'>}
|
|
78434
|
-
* @memberof LLMEndpointsApiGetAllEntitiesLlmEndpoints
|
|
78435
|
-
*/
|
|
78436
|
-
readonly metaInclude?: Array<'page' | 'all' | 'ALL'>;
|
|
78437
|
-
}
|
|
78438
|
-
|
|
78439
|
-
/**
|
|
78440
|
-
* Request parameters for getEntityLlmEndpoints operation in LLMEndpointsApi.
|
|
78441
|
-
* @export
|
|
78442
|
-
* @interface LLMEndpointsApiGetEntityLlmEndpointsRequest
|
|
78443
|
-
*/
|
|
78444
|
-
export declare interface LLMEndpointsApiGetEntityLlmEndpointsRequest {
|
|
77486
|
+
export declare interface LLMEndpointsApiGetEntityRequest {
|
|
78445
77487
|
/**
|
|
78446
77488
|
*
|
|
78447
77489
|
* @type {string}
|
|
78448
|
-
* @memberof
|
|
77490
|
+
* @memberof LLMEndpointsApiGetEntity
|
|
78449
77491
|
*/
|
|
78450
77492
|
readonly id: string;
|
|
78451
|
-
/**
|
|
78452
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78453
|
-
* @type {string}
|
|
78454
|
-
* @memberof LLMEndpointsApiGetEntityLlmEndpoints
|
|
78455
|
-
*/
|
|
78456
|
-
readonly filter?: string;
|
|
78457
77493
|
}
|
|
78458
77494
|
|
|
78459
77495
|
/**
|
|
@@ -78463,117 +77499,91 @@ export declare interface LLMEndpointsApiGetEntityLlmEndpointsRequest {
|
|
|
78463
77499
|
*/
|
|
78464
77500
|
export declare interface LLMEndpointsApiInterface {
|
|
78465
77501
|
/**
|
|
78466
|
-
*
|
|
78467
|
-
* @summary Post LLM endpoint entities
|
|
78468
|
-
* @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77502
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77503
|
+
* @summary Post LLM endpoint entities (Removed)
|
|
78469
77504
|
* @param {*} [options] Override http request option.
|
|
78470
77505
|
* @deprecated
|
|
78471
77506
|
* @throws {RequiredError}
|
|
78472
77507
|
* @memberof LLMEndpointsApiInterface
|
|
78473
77508
|
*/
|
|
78474
|
-
|
|
77509
|
+
createEntity(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78475
77510
|
/**
|
|
78476
|
-
*
|
|
78477
|
-
* @summary Delete LLM endpoint entity
|
|
78478
|
-
* @param {
|
|
77511
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77512
|
+
* @summary Delete LLM endpoint entity (Removed)
|
|
77513
|
+
* @param {LLMEndpointsApiDeleteEntityRequest} requestParameters Request parameters.
|
|
78479
77514
|
* @param {*} [options] Override http request option.
|
|
78480
77515
|
* @deprecated
|
|
78481
77516
|
* @throws {RequiredError}
|
|
78482
77517
|
* @memberof LLMEndpointsApiInterface
|
|
78483
77518
|
*/
|
|
78484
|
-
|
|
77519
|
+
deleteEntity(requestParameters: LLMEndpointsApiDeleteEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78485
77520
|
/**
|
|
78486
|
-
*
|
|
78487
|
-
* @summary Get all LLM endpoint entities
|
|
78488
|
-
* @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
77521
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77522
|
+
* @summary Get all LLM endpoint entities (Removed)
|
|
78489
77523
|
* @param {*} [options] Override http request option.
|
|
78490
77524
|
* @deprecated
|
|
78491
77525
|
* @throws {RequiredError}
|
|
78492
77526
|
* @memberof LLMEndpointsApiInterface
|
|
78493
77527
|
*/
|
|
78494
|
-
|
|
77528
|
+
getAllEntities(options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78495
77529
|
/**
|
|
78496
|
-
*
|
|
78497
|
-
* @summary Get LLM endpoint entity
|
|
78498
|
-
* @param {
|
|
77530
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77531
|
+
* @summary Get LLM endpoint entity (Removed)
|
|
77532
|
+
* @param {LLMEndpointsApiGetEntityRequest} requestParameters Request parameters.
|
|
78499
77533
|
* @param {*} [options] Override http request option.
|
|
78500
77534
|
* @deprecated
|
|
78501
77535
|
* @throws {RequiredError}
|
|
78502
77536
|
* @memberof LLMEndpointsApiInterface
|
|
78503
77537
|
*/
|
|
78504
|
-
|
|
77538
|
+
getEntity(requestParameters: LLMEndpointsApiGetEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78505
77539
|
/**
|
|
78506
|
-
*
|
|
78507
|
-
* @summary Patch LLM endpoint entity
|
|
78508
|
-
* @param {
|
|
77540
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77541
|
+
* @summary Patch LLM endpoint entity (Removed)
|
|
77542
|
+
* @param {LLMEndpointsApiPatchEntityRequest} requestParameters Request parameters.
|
|
78509
77543
|
* @param {*} [options] Override http request option.
|
|
78510
77544
|
* @deprecated
|
|
78511
77545
|
* @throws {RequiredError}
|
|
78512
77546
|
* @memberof LLMEndpointsApiInterface
|
|
78513
77547
|
*/
|
|
78514
|
-
|
|
77548
|
+
patchEntity(requestParameters: LLMEndpointsApiPatchEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78515
77549
|
/**
|
|
78516
|
-
*
|
|
78517
|
-
* @summary PUT LLM endpoint entity
|
|
78518
|
-
* @param {
|
|
77550
|
+
* Permanently removed. Use /api/v1/entities/llmProviders instead. Always returns 410 Gone.
|
|
77551
|
+
* @summary PUT LLM endpoint entity (Removed)
|
|
77552
|
+
* @param {LLMEndpointsApiUpdateEntityRequest} requestParameters Request parameters.
|
|
78519
77553
|
* @param {*} [options] Override http request option.
|
|
78520
77554
|
* @deprecated
|
|
78521
77555
|
* @throws {RequiredError}
|
|
78522
77556
|
* @memberof LLMEndpointsApiInterface
|
|
78523
77557
|
*/
|
|
78524
|
-
|
|
77558
|
+
updateEntity(requestParameters: LLMEndpointsApiUpdateEntityRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
78525
77559
|
}
|
|
78526
77560
|
|
|
78527
77561
|
/**
|
|
78528
|
-
* Request parameters for
|
|
77562
|
+
* Request parameters for patchEntity operation in LLMEndpointsApi.
|
|
78529
77563
|
* @export
|
|
78530
|
-
* @interface
|
|
77564
|
+
* @interface LLMEndpointsApiPatchEntityRequest
|
|
78531
77565
|
*/
|
|
78532
|
-
export declare interface
|
|
77566
|
+
export declare interface LLMEndpointsApiPatchEntityRequest {
|
|
78533
77567
|
/**
|
|
78534
77568
|
*
|
|
78535
77569
|
* @type {string}
|
|
78536
|
-
* @memberof
|
|
77570
|
+
* @memberof LLMEndpointsApiPatchEntity
|
|
78537
77571
|
*/
|
|
78538
77572
|
readonly id: string;
|
|
78539
|
-
/**
|
|
78540
|
-
*
|
|
78541
|
-
* @type {JsonApiLlmEndpointPatchDocument}
|
|
78542
|
-
* @memberof LLMEndpointsApiPatchEntityLlmEndpoints
|
|
78543
|
-
*/
|
|
78544
|
-
readonly jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument;
|
|
78545
|
-
/**
|
|
78546
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78547
|
-
* @type {string}
|
|
78548
|
-
* @memberof LLMEndpointsApiPatchEntityLlmEndpoints
|
|
78549
|
-
*/
|
|
78550
|
-
readonly filter?: string;
|
|
78551
77573
|
}
|
|
78552
77574
|
|
|
78553
77575
|
/**
|
|
78554
|
-
* Request parameters for
|
|
77576
|
+
* Request parameters for updateEntity operation in LLMEndpointsApi.
|
|
78555
77577
|
* @export
|
|
78556
|
-
* @interface
|
|
77578
|
+
* @interface LLMEndpointsApiUpdateEntityRequest
|
|
78557
77579
|
*/
|
|
78558
|
-
export declare interface
|
|
77580
|
+
export declare interface LLMEndpointsApiUpdateEntityRequest {
|
|
78559
77581
|
/**
|
|
78560
77582
|
*
|
|
78561
77583
|
* @type {string}
|
|
78562
|
-
* @memberof
|
|
77584
|
+
* @memberof LLMEndpointsApiUpdateEntity
|
|
78563
77585
|
*/
|
|
78564
77586
|
readonly id: string;
|
|
78565
|
-
/**
|
|
78566
|
-
*
|
|
78567
|
-
* @type {JsonApiLlmEndpointInDocument}
|
|
78568
|
-
* @memberof LLMEndpointsApiUpdateEntityLlmEndpoints
|
|
78569
|
-
*/
|
|
78570
|
-
readonly jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument;
|
|
78571
|
-
/**
|
|
78572
|
-
* Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
78573
|
-
* @type {string}
|
|
78574
|
-
* @memberof LLMEndpointsApiUpdateEntityLlmEndpoints
|
|
78575
|
-
*/
|
|
78576
|
-
readonly filter?: string;
|
|
78577
77587
|
}
|
|
78578
77588
|
|
|
78579
77589
|
/**
|
|
@@ -79457,6 +78467,11 @@ export declare type LocationStyleDocument = Record<string, unknown>;
|
|
|
79457
78467
|
*/
|
|
79458
78468
|
export declare type ManageDashboardPermissionsRequestInner = PermissionsForAssignee | PermissionsForAssigneeRule;
|
|
79459
78469
|
|
|
78470
|
+
/**
|
|
78471
|
+
* @type ManageLabelPermissionsRequestInner
|
|
78472
|
+
*/
|
|
78473
|
+
export declare type ManageLabelPermissionsRequestInner = LdmObjectPermissionsForAssignee | LdmObjectPermissionsForAssigneeRule;
|
|
78474
|
+
|
|
79460
78475
|
/**
|
|
79461
78476
|
* ManagePermissionsApi - object-oriented interface
|
|
79462
78477
|
* @export
|
|
@@ -87252,6 +86267,15 @@ export declare interface PdmSql {
|
|
|
87252
86267
|
* @extends {BaseAPI}
|
|
87253
86268
|
*/
|
|
87254
86269
|
export declare class PermissionsApi extends MetadataBaseApi implements PermissionsApiInterface {
|
|
86270
|
+
/**
|
|
86271
|
+
*
|
|
86272
|
+
* @summary Get Attribute Permissions
|
|
86273
|
+
* @param {PermissionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
86274
|
+
* @param {*} [options] Override http request option.
|
|
86275
|
+
* @throws {RequiredError}
|
|
86276
|
+
* @memberof PermissionsApi
|
|
86277
|
+
*/
|
|
86278
|
+
attributePermissions(requestParameters: PermissionsApiAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
87255
86279
|
/**
|
|
87256
86280
|
*
|
|
87257
86281
|
* @summary Get Available Assignees
|
|
@@ -87270,6 +86294,15 @@ export declare class PermissionsApi extends MetadataBaseApi implements Permissio
|
|
|
87270
86294
|
* @memberof PermissionsApi
|
|
87271
86295
|
*/
|
|
87272
86296
|
dashboardPermissions(requestParameters: PermissionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DashboardPermissions>;
|
|
86297
|
+
/**
|
|
86298
|
+
*
|
|
86299
|
+
* @summary Get Fact Permissions
|
|
86300
|
+
* @param {PermissionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
86301
|
+
* @param {*} [options] Override http request option.
|
|
86302
|
+
* @throws {RequiredError}
|
|
86303
|
+
* @memberof PermissionsApi
|
|
86304
|
+
*/
|
|
86305
|
+
factPermissions(requestParameters: PermissionsApiFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
87273
86306
|
/**
|
|
87274
86307
|
* Retrieve organization permissions
|
|
87275
86308
|
* @summary Get organization permissions
|
|
@@ -87305,6 +86338,24 @@ export declare class PermissionsApi extends MetadataBaseApi implements Permissio
|
|
|
87305
86338
|
* @memberof PermissionsApi
|
|
87306
86339
|
*/
|
|
87307
86340
|
getWorkspacePermissions(requestParameters: PermissionsApiGetWorkspacePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeWorkspacePermissions>;
|
|
86341
|
+
/**
|
|
86342
|
+
*
|
|
86343
|
+
* @summary Get Label Permissions
|
|
86344
|
+
* @param {PermissionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
86345
|
+
* @param {*} [options] Override http request option.
|
|
86346
|
+
* @throws {RequiredError}
|
|
86347
|
+
* @memberof PermissionsApi
|
|
86348
|
+
*/
|
|
86349
|
+
labelPermissions(requestParameters: PermissionsApiLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
86350
|
+
/**
|
|
86351
|
+
*
|
|
86352
|
+
* @summary Manage Permissions for an Attribute
|
|
86353
|
+
* @param {PermissionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
86354
|
+
* @param {*} [options] Override http request option.
|
|
86355
|
+
* @throws {RequiredError}
|
|
86356
|
+
* @memberof PermissionsApi
|
|
86357
|
+
*/
|
|
86358
|
+
manageAttributePermissions(requestParameters: PermissionsApiManageAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87308
86359
|
/**
|
|
87309
86360
|
*
|
|
87310
86361
|
* @summary Manage Permissions for a Dashboard
|
|
@@ -87323,6 +86374,24 @@ export declare class PermissionsApi extends MetadataBaseApi implements Permissio
|
|
|
87323
86374
|
* @memberof PermissionsApi
|
|
87324
86375
|
*/
|
|
87325
86376
|
manageDataSourcePermissions(requestParameters: PermissionsApiManageDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
86377
|
+
/**
|
|
86378
|
+
*
|
|
86379
|
+
* @summary Manage Permissions for a Fact
|
|
86380
|
+
* @param {PermissionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
86381
|
+
* @param {*} [options] Override http request option.
|
|
86382
|
+
* @throws {RequiredError}
|
|
86383
|
+
* @memberof PermissionsApi
|
|
86384
|
+
*/
|
|
86385
|
+
manageFactPermissions(requestParameters: PermissionsApiManageFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
86386
|
+
/**
|
|
86387
|
+
*
|
|
86388
|
+
* @summary Manage Permissions for a Label
|
|
86389
|
+
* @param {PermissionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
86390
|
+
* @param {*} [options] Override http request option.
|
|
86391
|
+
* @throws {RequiredError}
|
|
86392
|
+
* @memberof PermissionsApi
|
|
86393
|
+
*/
|
|
86394
|
+
manageLabelPermissions(requestParameters: PermissionsApiManageLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87326
86395
|
/**
|
|
87327
86396
|
* Manage Permissions for a Organization
|
|
87328
86397
|
* @summary Manage Permissions for a Organization
|
|
@@ -87546,6 +86615,26 @@ export declare function PermissionsApi_SetUserPermissions(axios: AxiosInstance,
|
|
|
87546
86615
|
*/
|
|
87547
86616
|
export declare function PermissionsApi_SetWorkspacePermissions(axios: AxiosInstance, basePath: string, requestParameters: PermissionsApiSetWorkspacePermissionsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
87548
86617
|
|
|
86618
|
+
/**
|
|
86619
|
+
* Request parameters for attributePermissions operation in PermissionsApi.
|
|
86620
|
+
* @export
|
|
86621
|
+
* @interface PermissionsApiAttributePermissionsRequest
|
|
86622
|
+
*/
|
|
86623
|
+
export declare interface PermissionsApiAttributePermissionsRequest {
|
|
86624
|
+
/**
|
|
86625
|
+
*
|
|
86626
|
+
* @type {string}
|
|
86627
|
+
* @memberof PermissionsApiAttributePermissions
|
|
86628
|
+
*/
|
|
86629
|
+
readonly workspaceId: string;
|
|
86630
|
+
/**
|
|
86631
|
+
*
|
|
86632
|
+
* @type {string}
|
|
86633
|
+
* @memberof PermissionsApiAttributePermissions
|
|
86634
|
+
*/
|
|
86635
|
+
readonly attributeId: string;
|
|
86636
|
+
}
|
|
86637
|
+
|
|
87549
86638
|
/**
|
|
87550
86639
|
* Request parameters for availableAssignees operation in PermissionsApi.
|
|
87551
86640
|
* @export
|
|
@@ -87734,6 +86823,26 @@ export declare interface PermissionsApiDashboardPermissionsRequest {
|
|
|
87734
86823
|
readonly dashboardId: string;
|
|
87735
86824
|
}
|
|
87736
86825
|
|
|
86826
|
+
/**
|
|
86827
|
+
* Request parameters for factPermissions operation in PermissionsApi.
|
|
86828
|
+
* @export
|
|
86829
|
+
* @interface PermissionsApiFactPermissionsRequest
|
|
86830
|
+
*/
|
|
86831
|
+
export declare interface PermissionsApiFactPermissionsRequest {
|
|
86832
|
+
/**
|
|
86833
|
+
*
|
|
86834
|
+
* @type {string}
|
|
86835
|
+
* @memberof PermissionsApiFactPermissions
|
|
86836
|
+
*/
|
|
86837
|
+
readonly workspaceId: string;
|
|
86838
|
+
/**
|
|
86839
|
+
*
|
|
86840
|
+
* @type {string}
|
|
86841
|
+
* @memberof PermissionsApiFactPermissions
|
|
86842
|
+
*/
|
|
86843
|
+
readonly factId: string;
|
|
86844
|
+
}
|
|
86845
|
+
|
|
87737
86846
|
/**
|
|
87738
86847
|
* Request parameters for getUserGroupPermissions operation in PermissionsApi.
|
|
87739
86848
|
* @export
|
|
@@ -87782,6 +86891,15 @@ export declare interface PermissionsApiGetWorkspacePermissionsRequest {
|
|
|
87782
86891
|
* @interface PermissionsApi
|
|
87783
86892
|
*/
|
|
87784
86893
|
export declare interface PermissionsApiInterface {
|
|
86894
|
+
/**
|
|
86895
|
+
*
|
|
86896
|
+
* @summary Get Attribute Permissions
|
|
86897
|
+
* @param {PermissionsApiAttributePermissionsRequest} requestParameters Request parameters.
|
|
86898
|
+
* @param {*} [options] Override http request option.
|
|
86899
|
+
* @throws {RequiredError}
|
|
86900
|
+
* @memberof PermissionsApiInterface
|
|
86901
|
+
*/
|
|
86902
|
+
attributePermissions(requestParameters: PermissionsApiAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
87785
86903
|
/**
|
|
87786
86904
|
*
|
|
87787
86905
|
* @summary Get Available Assignees
|
|
@@ -87800,6 +86918,15 @@ export declare interface PermissionsApiInterface {
|
|
|
87800
86918
|
* @memberof PermissionsApiInterface
|
|
87801
86919
|
*/
|
|
87802
86920
|
dashboardPermissions(requestParameters: PermissionsApiDashboardPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DashboardPermissions>;
|
|
86921
|
+
/**
|
|
86922
|
+
*
|
|
86923
|
+
* @summary Get Fact Permissions
|
|
86924
|
+
* @param {PermissionsApiFactPermissionsRequest} requestParameters Request parameters.
|
|
86925
|
+
* @param {*} [options] Override http request option.
|
|
86926
|
+
* @throws {RequiredError}
|
|
86927
|
+
* @memberof PermissionsApiInterface
|
|
86928
|
+
*/
|
|
86929
|
+
factPermissions(requestParameters: PermissionsApiFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
87803
86930
|
/**
|
|
87804
86931
|
* Retrieve organization permissions
|
|
87805
86932
|
* @summary Get organization permissions
|
|
@@ -87835,6 +86962,24 @@ export declare interface PermissionsApiInterface {
|
|
|
87835
86962
|
* @memberof PermissionsApiInterface
|
|
87836
86963
|
*/
|
|
87837
86964
|
getWorkspacePermissions(requestParameters: PermissionsApiGetWorkspacePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<DeclarativeWorkspacePermissions>;
|
|
86965
|
+
/**
|
|
86966
|
+
*
|
|
86967
|
+
* @summary Get Label Permissions
|
|
86968
|
+
* @param {PermissionsApiLabelPermissionsRequest} requestParameters Request parameters.
|
|
86969
|
+
* @param {*} [options] Override http request option.
|
|
86970
|
+
* @throws {RequiredError}
|
|
86971
|
+
* @memberof PermissionsApiInterface
|
|
86972
|
+
*/
|
|
86973
|
+
labelPermissions(requestParameters: PermissionsApiLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<LdmObjectPermissions>;
|
|
86974
|
+
/**
|
|
86975
|
+
*
|
|
86976
|
+
* @summary Manage Permissions for an Attribute
|
|
86977
|
+
* @param {PermissionsApiManageAttributePermissionsRequest} requestParameters Request parameters.
|
|
86978
|
+
* @param {*} [options] Override http request option.
|
|
86979
|
+
* @throws {RequiredError}
|
|
86980
|
+
* @memberof PermissionsApiInterface
|
|
86981
|
+
*/
|
|
86982
|
+
manageAttributePermissions(requestParameters: PermissionsApiManageAttributePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87838
86983
|
/**
|
|
87839
86984
|
*
|
|
87840
86985
|
* @summary Manage Permissions for a Dashboard
|
|
@@ -87853,6 +86998,24 @@ export declare interface PermissionsApiInterface {
|
|
|
87853
86998
|
* @memberof PermissionsApiInterface
|
|
87854
86999
|
*/
|
|
87855
87000
|
manageDataSourcePermissions(requestParameters: PermissionsApiManageDataSourcePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87001
|
+
/**
|
|
87002
|
+
*
|
|
87003
|
+
* @summary Manage Permissions for a Fact
|
|
87004
|
+
* @param {PermissionsApiManageFactPermissionsRequest} requestParameters Request parameters.
|
|
87005
|
+
* @param {*} [options] Override http request option.
|
|
87006
|
+
* @throws {RequiredError}
|
|
87007
|
+
* @memberof PermissionsApiInterface
|
|
87008
|
+
*/
|
|
87009
|
+
manageFactPermissions(requestParameters: PermissionsApiManageFactPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87010
|
+
/**
|
|
87011
|
+
*
|
|
87012
|
+
* @summary Manage Permissions for a Label
|
|
87013
|
+
* @param {PermissionsApiManageLabelPermissionsRequest} requestParameters Request parameters.
|
|
87014
|
+
* @param {*} [options] Override http request option.
|
|
87015
|
+
* @throws {RequiredError}
|
|
87016
|
+
* @memberof PermissionsApiInterface
|
|
87017
|
+
*/
|
|
87018
|
+
manageLabelPermissions(requestParameters: PermissionsApiManageLabelPermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87856
87019
|
/**
|
|
87857
87020
|
* Manage Permissions for a Organization
|
|
87858
87021
|
* @summary Manage Permissions for a Organization
|
|
@@ -87909,6 +87072,52 @@ export declare interface PermissionsApiInterface {
|
|
|
87909
87072
|
setWorkspacePermissions(requestParameters: PermissionsApiSetWorkspacePermissionsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
87910
87073
|
}
|
|
87911
87074
|
|
|
87075
|
+
/**
|
|
87076
|
+
* Request parameters for labelPermissions operation in PermissionsApi.
|
|
87077
|
+
* @export
|
|
87078
|
+
* @interface PermissionsApiLabelPermissionsRequest
|
|
87079
|
+
*/
|
|
87080
|
+
export declare interface PermissionsApiLabelPermissionsRequest {
|
|
87081
|
+
/**
|
|
87082
|
+
*
|
|
87083
|
+
* @type {string}
|
|
87084
|
+
* @memberof PermissionsApiLabelPermissions
|
|
87085
|
+
*/
|
|
87086
|
+
readonly workspaceId: string;
|
|
87087
|
+
/**
|
|
87088
|
+
*
|
|
87089
|
+
* @type {string}
|
|
87090
|
+
* @memberof PermissionsApiLabelPermissions
|
|
87091
|
+
*/
|
|
87092
|
+
readonly labelId: string;
|
|
87093
|
+
}
|
|
87094
|
+
|
|
87095
|
+
/**
|
|
87096
|
+
* Request parameters for manageAttributePermissions operation in PermissionsApi.
|
|
87097
|
+
* @export
|
|
87098
|
+
* @interface PermissionsApiManageAttributePermissionsRequest
|
|
87099
|
+
*/
|
|
87100
|
+
export declare interface PermissionsApiManageAttributePermissionsRequest {
|
|
87101
|
+
/**
|
|
87102
|
+
*
|
|
87103
|
+
* @type {string}
|
|
87104
|
+
* @memberof PermissionsApiManageAttributePermissions
|
|
87105
|
+
*/
|
|
87106
|
+
readonly workspaceId: string;
|
|
87107
|
+
/**
|
|
87108
|
+
*
|
|
87109
|
+
* @type {string}
|
|
87110
|
+
* @memberof PermissionsApiManageAttributePermissions
|
|
87111
|
+
*/
|
|
87112
|
+
readonly attributeId: string;
|
|
87113
|
+
/**
|
|
87114
|
+
*
|
|
87115
|
+
* @type {Array<ManageLabelPermissionsRequestInner>}
|
|
87116
|
+
* @memberof PermissionsApiManageAttributePermissions
|
|
87117
|
+
*/
|
|
87118
|
+
readonly manageLabelPermissionsRequestInner: Array<ManageLabelPermissionsRequestInner>;
|
|
87119
|
+
}
|
|
87120
|
+
|
|
87912
87121
|
/**
|
|
87913
87122
|
* Request parameters for manageDashboardPermissions operation in PermissionsApi.
|
|
87914
87123
|
* @export
|
|
@@ -87955,6 +87164,58 @@ export declare interface PermissionsApiManageDataSourcePermissionsRequest {
|
|
|
87955
87164
|
readonly dataSourcePermissionAssignment: Array<DataSourcePermissionAssignment>;
|
|
87956
87165
|
}
|
|
87957
87166
|
|
|
87167
|
+
/**
|
|
87168
|
+
* Request parameters for manageFactPermissions operation in PermissionsApi.
|
|
87169
|
+
* @export
|
|
87170
|
+
* @interface PermissionsApiManageFactPermissionsRequest
|
|
87171
|
+
*/
|
|
87172
|
+
export declare interface PermissionsApiManageFactPermissionsRequest {
|
|
87173
|
+
/**
|
|
87174
|
+
*
|
|
87175
|
+
* @type {string}
|
|
87176
|
+
* @memberof PermissionsApiManageFactPermissions
|
|
87177
|
+
*/
|
|
87178
|
+
readonly workspaceId: string;
|
|
87179
|
+
/**
|
|
87180
|
+
*
|
|
87181
|
+
* @type {string}
|
|
87182
|
+
* @memberof PermissionsApiManageFactPermissions
|
|
87183
|
+
*/
|
|
87184
|
+
readonly factId: string;
|
|
87185
|
+
/**
|
|
87186
|
+
*
|
|
87187
|
+
* @type {Array<ManageLabelPermissionsRequestInner>}
|
|
87188
|
+
* @memberof PermissionsApiManageFactPermissions
|
|
87189
|
+
*/
|
|
87190
|
+
readonly manageLabelPermissionsRequestInner: Array<ManageLabelPermissionsRequestInner>;
|
|
87191
|
+
}
|
|
87192
|
+
|
|
87193
|
+
/**
|
|
87194
|
+
* Request parameters for manageLabelPermissions operation in PermissionsApi.
|
|
87195
|
+
* @export
|
|
87196
|
+
* @interface PermissionsApiManageLabelPermissionsRequest
|
|
87197
|
+
*/
|
|
87198
|
+
export declare interface PermissionsApiManageLabelPermissionsRequest {
|
|
87199
|
+
/**
|
|
87200
|
+
*
|
|
87201
|
+
* @type {string}
|
|
87202
|
+
* @memberof PermissionsApiManageLabelPermissions
|
|
87203
|
+
*/
|
|
87204
|
+
readonly workspaceId: string;
|
|
87205
|
+
/**
|
|
87206
|
+
*
|
|
87207
|
+
* @type {string}
|
|
87208
|
+
* @memberof PermissionsApiManageLabelPermissions
|
|
87209
|
+
*/
|
|
87210
|
+
readonly labelId: string;
|
|
87211
|
+
/**
|
|
87212
|
+
*
|
|
87213
|
+
* @type {Array<ManageLabelPermissionsRequestInner>}
|
|
87214
|
+
* @memberof PermissionsApiManageLabelPermissions
|
|
87215
|
+
*/
|
|
87216
|
+
readonly manageLabelPermissionsRequestInner: Array<ManageLabelPermissionsRequestInner>;
|
|
87217
|
+
}
|
|
87218
|
+
|
|
87958
87219
|
/**
|
|
87959
87220
|
* Request parameters for manageOrganizationPermissions operation in PermissionsApi.
|
|
87960
87221
|
* @export
|
|
@@ -89381,7 +88642,7 @@ export declare interface ResolvedSetting {
|
|
|
89381
88642
|
'type'?: ResolvedSettingTypeEnum;
|
|
89382
88643
|
}
|
|
89383
88644
|
|
|
89384
|
-
export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | '
|
|
88645
|
+
export declare type ResolvedSettingTypeEnum = 'TIMEZONE' | 'ACTIVE_THEME' | 'ACTIVE_COLOR_PALETTE' | 'ACTIVE_LLM_PROVIDER' | 'ACTIVE_CALENDARS' | 'WHITE_LABELING' | 'LOCALE' | 'METADATA_LOCALE' | 'FORMAT_LOCALE' | 'MAPBOX_TOKEN' | 'GEO_ICON_SHEET' | 'AG_GRID_TOKEN' | 'WEEK_START' | 'FISCAL_YEAR' | 'SHOW_HIDDEN_CATALOG_ITEMS' | 'OPERATOR_OVERRIDES' | 'TIMEZONE_VALIDATION_ENABLED' | 'OPENAI_CONFIG' | 'ENABLE_FILE_ANALYTICS' | 'ALERT' | 'SEPARATORS' | 'DATE_FILTER_CONFIG' | 'JIT_PROVISIONING' | 'JWT_JIT_PROVISIONING' | 'DASHBOARD_FILTERS_APPLY_MODE' | 'ENABLE_SLIDES_EXPORT' | 'ENABLE_SNAPSHOT_EXPORT' | 'AI_RATE_LIMIT' | 'ATTACHMENT_SIZE_LIMIT' | 'ATTACHMENT_LINK_TTL' | 'AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE' | 'ENABLE_DRILL_TO_URL_BY_DEFAULT' | 'ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS' | 'ENABLE_AUTOMATION_EVALUATION_MODE' | 'ENABLE_ACCESSIBILITY_MODE' | 'REGISTERED_PLUGGABLE_APPLICATIONS' | 'DATA_LOCALE' | 'LDM_DEFAULT_LOCALE' | 'EXPORT_RESULT_POLLING_TIMEOUT_SECONDS' | 'MAX_ZOOM_LEVEL' | 'SORT_CASE_SENSITIVE' | 'SORT_COLLATION' | 'METRIC_FORMAT_OVERRIDE' | 'ENABLE_AI_ON_DATA' | 'ENABLE_PARTIAL_DATA_RESULTS' | 'API_ENTITIES_DEFAULT_CONTENT_MEDIA_TYPE' | 'EXPORT_CSV_CUSTOM_DELIMITER' | 'ENABLE_QUERY_TAGS' | 'RESTRICT_BASE_UI' | 'CERTIFY_PARENT_OBJECTS' | 'HLL_TYPE';
|
|
89385
88646
|
|
|
89386
88647
|
/**
|
|
89387
88648
|
* A request containing setting IDs to resolve.
|
|
@@ -91965,24 +91226,6 @@ export declare const tigerValidDescendantsClientFactory: (axios: AxiosInstance)
|
|
|
91965
91226
|
|
|
91966
91227
|
export declare const tigerValidObjectsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeValidObjects">;
|
|
91967
91228
|
|
|
91968
|
-
/**
|
|
91969
|
-
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
91970
|
-
*/
|
|
91971
|
-
export declare interface ToolCallEventResult {
|
|
91972
|
-
/**
|
|
91973
|
-
* Name of the tool function that was called.
|
|
91974
|
-
*/
|
|
91975
|
-
'functionName': string;
|
|
91976
|
-
/**
|
|
91977
|
-
* JSON-encoded arguments passed to the tool function.
|
|
91978
|
-
*/
|
|
91979
|
-
'functionArguments': string;
|
|
91980
|
-
/**
|
|
91981
|
-
* Result returned by the tool function.
|
|
91982
|
-
*/
|
|
91983
|
-
'result': string;
|
|
91984
|
-
}
|
|
91985
|
-
|
|
91986
91229
|
/**
|
|
91987
91230
|
* Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension`
|
|
91988
91231
|
*/
|
|
@@ -96056,6 +95299,10 @@ export declare interface UserManagementUsersItem {
|
|
|
96056
95299
|
* Is user organization admin
|
|
96057
95300
|
*/
|
|
96058
95301
|
'organizationAdmin': boolean;
|
|
95302
|
+
/**
|
|
95303
|
+
* Is user system account
|
|
95304
|
+
*/
|
|
95305
|
+
'systemAccount': boolean;
|
|
96059
95306
|
'userGroups': Array<UserGroupIdentifier>;
|
|
96060
95307
|
'workspaces': Array<UserManagementWorkspacePermissionAssignment>;
|
|
96061
95308
|
'dataSources': Array<UserManagementDataSourcePermissionAssignment>;
|