@gooddata/api-client-tiger 11.2.0 → 11.3.0-alpha.1
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.d.ts.map +1 -1
- package/esm/__version.js +1 -1
- package/esm/__version.js.map +1 -1
- package/esm/api-client-tiger.d.ts +1045 -511
- package/esm/generated/afm-rest-api/api.d.ts +692 -5
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +761 -0
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/afm-rest-api/openapi-spec.json +283 -0
- package/esm/generated/automation-json-api/api.d.ts +23 -7
- package/esm/generated/automation-json-api/api.d.ts.map +1 -1
- package/esm/generated/automation-json-api/api.js +10 -0
- package/esm/generated/automation-json-api/api.js.map +1 -1
- package/esm/generated/automation-json-api/openapi-spec.json +16 -9
- package/esm/generated/export-json-api/api.d.ts +22 -7
- package/esm/generated/export-json-api/api.d.ts.map +1 -1
- package/esm/generated/export-json-api/api.js +9 -0
- package/esm/generated/export-json-api/api.js.map +1 -1
- package/esm/generated/export-json-api/openapi-spec.json +16 -9
- package/esm/generated/metadata-json-api/api.d.ts +550 -452
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +43 -16
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/openapi-spec.json +7957 -7854
- package/package.json +3 -4
|
@@ -1245,6 +1245,26 @@ declare interface ActionsApiCreatedByRequest {
|
|
|
1245
1245
|
readonly workspaceId: string;
|
|
1246
1246
|
}
|
|
1247
1247
|
|
|
1248
|
+
/**
|
|
1249
|
+
* Request parameters for createMemoryItem operation in ActionsApi.
|
|
1250
|
+
* @export
|
|
1251
|
+
* @interface ActionsApiCreateMemoryItemRequest
|
|
1252
|
+
*/
|
|
1253
|
+
declare interface ActionsApiCreateMemoryItemRequest {
|
|
1254
|
+
/**
|
|
1255
|
+
* Workspace identifier
|
|
1256
|
+
* @type {string}
|
|
1257
|
+
* @memberof ActionsApiCreateMemoryItem
|
|
1258
|
+
*/
|
|
1259
|
+
readonly workspaceId: string;
|
|
1260
|
+
/**
|
|
1261
|
+
*
|
|
1262
|
+
* @type {MemoryItem}
|
|
1263
|
+
* @memberof ActionsApiCreateMemoryItem
|
|
1264
|
+
*/
|
|
1265
|
+
readonly memoryItem: MemoryItem;
|
|
1266
|
+
}
|
|
1267
|
+
|
|
1248
1268
|
/**
|
|
1249
1269
|
* Request parameters for dashboardPermissions operation in ActionsApi.
|
|
1250
1270
|
* @export
|
|
@@ -2173,6 +2193,26 @@ export declare interface ActionsApiGetDependentEntitiesGraphRequest {
|
|
|
2173
2193
|
readonly workspaceId: string;
|
|
2174
2194
|
}
|
|
2175
2195
|
|
|
2196
|
+
/**
|
|
2197
|
+
* Request parameters for getMemoryItem operation in ActionsApi.
|
|
2198
|
+
* @export
|
|
2199
|
+
* @interface ActionsApiGetMemoryItemRequest
|
|
2200
|
+
*/
|
|
2201
|
+
declare interface ActionsApiGetMemoryItemRequest {
|
|
2202
|
+
/**
|
|
2203
|
+
* Workspace identifier
|
|
2204
|
+
* @type {string}
|
|
2205
|
+
* @memberof ActionsApiGetMemoryItem
|
|
2206
|
+
*/
|
|
2207
|
+
readonly workspaceId: string;
|
|
2208
|
+
/**
|
|
2209
|
+
*
|
|
2210
|
+
* @type {string}
|
|
2211
|
+
* @memberof ActionsApiGetMemoryItem
|
|
2212
|
+
*/
|
|
2213
|
+
readonly memoryId: string;
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2176
2216
|
/**
|
|
2177
2217
|
* Request parameters for getQualityIssues operation in ActionsApi.
|
|
2178
2218
|
* @export
|
|
@@ -2700,6 +2740,20 @@ export declare interface ActionsApiListFilesRequest {
|
|
|
2700
2740
|
readonly dataSourceId: string;
|
|
2701
2741
|
}
|
|
2702
2742
|
|
|
2743
|
+
/**
|
|
2744
|
+
* Request parameters for listMemoryItems operation in ActionsApi.
|
|
2745
|
+
* @export
|
|
2746
|
+
* @interface ActionsApiListMemoryItemsRequest
|
|
2747
|
+
*/
|
|
2748
|
+
declare interface ActionsApiListMemoryItemsRequest {
|
|
2749
|
+
/**
|
|
2750
|
+
* Workspace identifier
|
|
2751
|
+
* @type {string}
|
|
2752
|
+
* @memberof ActionsApiListMemoryItems
|
|
2753
|
+
*/
|
|
2754
|
+
readonly workspaceId: string;
|
|
2755
|
+
}
|
|
2756
|
+
|
|
2703
2757
|
/**
|
|
2704
2758
|
* Request parameters for listWorkspaceUserGroups operation in ActionsApi.
|
|
2705
2759
|
* @export
|
|
@@ -2968,6 +3022,26 @@ export declare interface ActionsApiRegisterUploadNotificationRequest {
|
|
|
2968
3022
|
readonly dataSourceId: string;
|
|
2969
3023
|
}
|
|
2970
3024
|
|
|
3025
|
+
/**
|
|
3026
|
+
* Request parameters for removeMemoryItem operation in ActionsApi.
|
|
3027
|
+
* @export
|
|
3028
|
+
* @interface ActionsApiRemoveMemoryItemRequest
|
|
3029
|
+
*/
|
|
3030
|
+
declare interface ActionsApiRemoveMemoryItemRequest {
|
|
3031
|
+
/**
|
|
3032
|
+
* Workspace identifier
|
|
3033
|
+
* @type {string}
|
|
3034
|
+
* @memberof ActionsApiRemoveMemoryItem
|
|
3035
|
+
*/
|
|
3036
|
+
readonly workspaceId: string;
|
|
3037
|
+
/**
|
|
3038
|
+
*
|
|
3039
|
+
* @type {string}
|
|
3040
|
+
* @memberof ActionsApiRemoveMemoryItem
|
|
3041
|
+
*/
|
|
3042
|
+
readonly memoryId: string;
|
|
3043
|
+
}
|
|
3044
|
+
|
|
2971
3045
|
/**
|
|
2972
3046
|
* Request parameters for resolveLlmEndpoints operation in ActionsApi.
|
|
2973
3047
|
* @export
|
|
@@ -3332,6 +3406,32 @@ export declare interface ActionsApiUnsubscribeWorkspaceAutomationsRequest {
|
|
|
3332
3406
|
readonly workspaceId: string;
|
|
3333
3407
|
}
|
|
3334
3408
|
|
|
3409
|
+
/**
|
|
3410
|
+
* Request parameters for updateMemoryItem operation in ActionsApi.
|
|
3411
|
+
* @export
|
|
3412
|
+
* @interface ActionsApiUpdateMemoryItemRequest
|
|
3413
|
+
*/
|
|
3414
|
+
declare interface ActionsApiUpdateMemoryItemRequest {
|
|
3415
|
+
/**
|
|
3416
|
+
* Workspace identifier
|
|
3417
|
+
* @type {string}
|
|
3418
|
+
* @memberof ActionsApiUpdateMemoryItem
|
|
3419
|
+
*/
|
|
3420
|
+
readonly workspaceId: string;
|
|
3421
|
+
/**
|
|
3422
|
+
*
|
|
3423
|
+
* @type {string}
|
|
3424
|
+
* @memberof ActionsApiUpdateMemoryItem
|
|
3425
|
+
*/
|
|
3426
|
+
readonly memoryId: string;
|
|
3427
|
+
/**
|
|
3428
|
+
*
|
|
3429
|
+
* @type {MemoryItem}
|
|
3430
|
+
* @memberof ActionsApiUpdateMemoryItem
|
|
3431
|
+
*/
|
|
3432
|
+
readonly memoryItem: MemoryItem;
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3335
3435
|
/**
|
|
3336
3436
|
* Request parameters for validateLLMEndpointById operation in ActionsApi.
|
|
3337
3437
|
* @export
|
|
@@ -5053,6 +5153,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5053
5153
|
* @memberof ActionsApi
|
|
5054
5154
|
*/
|
|
5055
5155
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmValidObjectsResponse, any, {}>>;
|
|
5156
|
+
/**
|
|
5157
|
+
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
5158
|
+
* @summary (EXPERIMENTAL) Create new memory item
|
|
5159
|
+
* @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
5160
|
+
* @param {*} [options] Override http request option.
|
|
5161
|
+
* @throws {RequiredError}
|
|
5162
|
+
* @memberof ActionsApi
|
|
5163
|
+
*/
|
|
5164
|
+
createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<MemoryItem, any, {}>>;
|
|
5056
5165
|
/**
|
|
5057
5166
|
* Returns a list of Users who created any object for this workspace
|
|
5058
5167
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -5089,6 +5198,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5089
5198
|
* @memberof ActionsApi
|
|
5090
5199
|
*/
|
|
5091
5200
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<ForecastResult, any, {}>>;
|
|
5201
|
+
/**
|
|
5202
|
+
* (EXPERIMENTAL) Get memory item by id
|
|
5203
|
+
* @summary (EXPERIMENTAL) Get memory item
|
|
5204
|
+
* @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
5205
|
+
* @param {*} [options] Override http request option.
|
|
5206
|
+
* @throws {RequiredError}
|
|
5207
|
+
* @memberof ActionsApi
|
|
5208
|
+
*/
|
|
5209
|
+
getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<MemoryItem, any, {}>>;
|
|
5092
5210
|
/**
|
|
5093
5211
|
* Returns metadata quality issues detected by the platform linter.
|
|
5094
5212
|
* @summary Get Quality Issues
|
|
@@ -5116,6 +5234,24 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5116
5234
|
* @memberof ActionsApi
|
|
5117
5235
|
*/
|
|
5118
5236
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<KeyDriversResult, any, {}>>;
|
|
5237
|
+
/**
|
|
5238
|
+
* (EXPERIMENTAL) Returns a list of memory items
|
|
5239
|
+
* @summary (EXPERIMENTAL) List all memory items
|
|
5240
|
+
* @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
5241
|
+
* @param {*} [options] Override http request option.
|
|
5242
|
+
* @throws {RequiredError}
|
|
5243
|
+
* @memberof ActionsApi
|
|
5244
|
+
*/
|
|
5245
|
+
listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<MemoryItem[], any, {}>>;
|
|
5246
|
+
/**
|
|
5247
|
+
* (EXPERIMENTAL) Removes memory item
|
|
5248
|
+
* @summary (EXPERIMENTAL) Remove memory item
|
|
5249
|
+
* @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
5250
|
+
* @param {*} [options] Override http request option.
|
|
5251
|
+
* @throws {RequiredError}
|
|
5252
|
+
* @memberof ActionsApi
|
|
5253
|
+
*/
|
|
5254
|
+
removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<void, any, {}>>;
|
|
5119
5255
|
/**
|
|
5120
5256
|
* Returns a list of available LLM Endpoints
|
|
5121
5257
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5152,6 +5288,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5152
5288
|
* @memberof ActionsApi
|
|
5153
5289
|
*/
|
|
5154
5290
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<AfmAnalyticsCatalogTags, any, {}>>;
|
|
5291
|
+
/**
|
|
5292
|
+
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5293
|
+
* @summary (EXPERIMENTAL) Update memory item
|
|
5294
|
+
* @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
5295
|
+
* @param {*} [options] Override http request option.
|
|
5296
|
+
* @throws {RequiredError}
|
|
5297
|
+
* @memberof ActionsApi
|
|
5298
|
+
*/
|
|
5299
|
+
updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): Promise<AxiosResponse<MemoryItem, any, {}>>;
|
|
5155
5300
|
/**
|
|
5156
5301
|
* Validates LLM endpoint with provided parameters.
|
|
5157
5302
|
* @summary Validate LLM Endpoint
|
|
@@ -5315,6 +5460,15 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5315
5460
|
* @throws {RequiredError}
|
|
5316
5461
|
*/
|
|
5317
5462
|
computeValidObjects: (workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5463
|
+
/**
|
|
5464
|
+
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
5465
|
+
* @summary (EXPERIMENTAL) Create new memory item
|
|
5466
|
+
* @param {string} workspaceId Workspace identifier
|
|
5467
|
+
* @param {MemoryItem} memoryItem
|
|
5468
|
+
* @param {*} [options] Override http request option.
|
|
5469
|
+
* @throws {RequiredError}
|
|
5470
|
+
*/
|
|
5471
|
+
createMemoryItem: (workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5318
5472
|
/**
|
|
5319
5473
|
* Returns a list of Users who created any object for this workspace
|
|
5320
5474
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -5355,6 +5509,15 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5355
5509
|
* @throws {RequiredError}
|
|
5356
5510
|
*/
|
|
5357
5511
|
forecastResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5512
|
+
/**
|
|
5513
|
+
* (EXPERIMENTAL) Get memory item by id
|
|
5514
|
+
* @summary (EXPERIMENTAL) Get memory item
|
|
5515
|
+
* @param {string} workspaceId Workspace identifier
|
|
5516
|
+
* @param {string} memoryId
|
|
5517
|
+
* @param {*} [options] Override http request option.
|
|
5518
|
+
* @throws {RequiredError}
|
|
5519
|
+
*/
|
|
5520
|
+
getMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5358
5521
|
/**
|
|
5359
5522
|
* Returns metadata quality issues detected by the platform linter.
|
|
5360
5523
|
* @summary Get Quality Issues
|
|
@@ -5384,6 +5547,23 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5384
5547
|
* @throws {RequiredError}
|
|
5385
5548
|
*/
|
|
5386
5549
|
keyDriverAnalysisResult: (workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5550
|
+
/**
|
|
5551
|
+
* (EXPERIMENTAL) Returns a list of memory items
|
|
5552
|
+
* @summary (EXPERIMENTAL) List all memory items
|
|
5553
|
+
* @param {string} workspaceId Workspace identifier
|
|
5554
|
+
* @param {*} [options] Override http request option.
|
|
5555
|
+
* @throws {RequiredError}
|
|
5556
|
+
*/
|
|
5557
|
+
listMemoryItems: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5558
|
+
/**
|
|
5559
|
+
* (EXPERIMENTAL) Removes memory item
|
|
5560
|
+
* @summary (EXPERIMENTAL) Remove memory item
|
|
5561
|
+
* @param {string} workspaceId Workspace identifier
|
|
5562
|
+
* @param {string} memoryId
|
|
5563
|
+
* @param {*} [options] Override http request option.
|
|
5564
|
+
* @throws {RequiredError}
|
|
5565
|
+
*/
|
|
5566
|
+
removeMemoryItem: (workspaceId: string, memoryId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5387
5567
|
/**
|
|
5388
5568
|
* Returns a list of available LLM Endpoints
|
|
5389
5569
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5422,6 +5602,16 @@ export declare const AfmActionsApiAxiosParamCreator: (configuration?: LabelEleme
|
|
|
5422
5602
|
* @throws {RequiredError}
|
|
5423
5603
|
*/
|
|
5424
5604
|
tags: (workspaceId: string, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5605
|
+
/**
|
|
5606
|
+
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5607
|
+
* @summary (EXPERIMENTAL) Update memory item
|
|
5608
|
+
* @param {string} workspaceId Workspace identifier
|
|
5609
|
+
* @param {string} memoryId
|
|
5610
|
+
* @param {MemoryItem} memoryItem
|
|
5611
|
+
* @param {*} [options] Override http request option.
|
|
5612
|
+
* @throws {RequiredError}
|
|
5613
|
+
*/
|
|
5614
|
+
updateMemoryItem: (workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig) => Promise<LabelElementsRequestArgs>;
|
|
5425
5615
|
/**
|
|
5426
5616
|
* Validates LLM endpoint with provided parameters.
|
|
5427
5617
|
* @summary Validate LLM Endpoint
|
|
@@ -5558,6 +5748,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5558
5748
|
* @throws {RequiredError}
|
|
5559
5749
|
*/
|
|
5560
5750
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
5751
|
+
/**
|
|
5752
|
+
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
5753
|
+
* @summary (EXPERIMENTAL) Create new memory item
|
|
5754
|
+
* @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
5755
|
+
* @param {*} [options] Override http request option.
|
|
5756
|
+
* @throws {RequiredError}
|
|
5757
|
+
*/
|
|
5758
|
+
createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
5561
5759
|
/**
|
|
5562
5760
|
* Returns a list of Users who created any object for this workspace
|
|
5563
5761
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -5590,6 +5788,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5590
5788
|
* @throws {RequiredError}
|
|
5591
5789
|
*/
|
|
5592
5790
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
5791
|
+
/**
|
|
5792
|
+
* (EXPERIMENTAL) Get memory item by id
|
|
5793
|
+
* @summary (EXPERIMENTAL) Get memory item
|
|
5794
|
+
* @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
5795
|
+
* @param {*} [options] Override http request option.
|
|
5796
|
+
* @throws {RequiredError}
|
|
5797
|
+
*/
|
|
5798
|
+
getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
5593
5799
|
/**
|
|
5594
5800
|
* Returns metadata quality issues detected by the platform linter.
|
|
5595
5801
|
* @summary Get Quality Issues
|
|
@@ -5614,6 +5820,22 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5614
5820
|
* @throws {RequiredError}
|
|
5615
5821
|
*/
|
|
5616
5822
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
5823
|
+
/**
|
|
5824
|
+
* (EXPERIMENTAL) Returns a list of memory items
|
|
5825
|
+
* @summary (EXPERIMENTAL) List all memory items
|
|
5826
|
+
* @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
5827
|
+
* @param {*} [options] Override http request option.
|
|
5828
|
+
* @throws {RequiredError}
|
|
5829
|
+
*/
|
|
5830
|
+
listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
|
|
5831
|
+
/**
|
|
5832
|
+
* (EXPERIMENTAL) Removes memory item
|
|
5833
|
+
* @summary (EXPERIMENTAL) Remove memory item
|
|
5834
|
+
* @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
5835
|
+
* @param {*} [options] Override http request option.
|
|
5836
|
+
* @throws {RequiredError}
|
|
5837
|
+
*/
|
|
5838
|
+
removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
5617
5839
|
/**
|
|
5618
5840
|
* Returns a list of available LLM Endpoints
|
|
5619
5841
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5646,6 +5868,14 @@ export declare const AfmActionsApiFactory: (configuration?: LabelElementsConfigu
|
|
|
5646
5868
|
* @throws {RequiredError}
|
|
5647
5869
|
*/
|
|
5648
5870
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogTags>;
|
|
5871
|
+
/**
|
|
5872
|
+
* (EXPERIMENTAL) Updates memory item and returns it
|
|
5873
|
+
* @summary (EXPERIMENTAL) Update memory item
|
|
5874
|
+
* @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
5875
|
+
* @param {*} [options] Override http request option.
|
|
5876
|
+
* @throws {RequiredError}
|
|
5877
|
+
*/
|
|
5878
|
+
updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
5649
5879
|
/**
|
|
5650
5880
|
* Validates LLM endpoint with provided parameters.
|
|
5651
5881
|
* @summary Validate LLM Endpoint
|
|
@@ -5807,6 +6037,15 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5807
6037
|
* @throws {RequiredError}
|
|
5808
6038
|
*/
|
|
5809
6039
|
computeValidObjects(workspaceId: string, afmValidObjectsQuery: AfmValidObjectsQuery, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmValidObjectsResponse>>;
|
|
6040
|
+
/**
|
|
6041
|
+
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
6042
|
+
* @summary (EXPERIMENTAL) Create new memory item
|
|
6043
|
+
* @param {string} workspaceId Workspace identifier
|
|
6044
|
+
* @param {MemoryItem} memoryItem
|
|
6045
|
+
* @param {*} [options] Override http request option.
|
|
6046
|
+
* @throws {RequiredError}
|
|
6047
|
+
*/
|
|
6048
|
+
createMemoryItem(workspaceId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
5810
6049
|
/**
|
|
5811
6050
|
* Returns a list of Users who created any object for this workspace
|
|
5812
6051
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -5847,6 +6086,15 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5847
6086
|
* @throws {RequiredError}
|
|
5848
6087
|
*/
|
|
5849
6088
|
forecastResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForecastResult>>;
|
|
6089
|
+
/**
|
|
6090
|
+
* (EXPERIMENTAL) Get memory item by id
|
|
6091
|
+
* @summary (EXPERIMENTAL) Get memory item
|
|
6092
|
+
* @param {string} workspaceId Workspace identifier
|
|
6093
|
+
* @param {string} memoryId
|
|
6094
|
+
* @param {*} [options] Override http request option.
|
|
6095
|
+
* @throws {RequiredError}
|
|
6096
|
+
*/
|
|
6097
|
+
getMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
5850
6098
|
/**
|
|
5851
6099
|
* Returns metadata quality issues detected by the platform linter.
|
|
5852
6100
|
* @summary Get Quality Issues
|
|
@@ -5876,6 +6124,23 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5876
6124
|
* @throws {RequiredError}
|
|
5877
6125
|
*/
|
|
5878
6126
|
keyDriverAnalysisResult(workspaceId: string, resultId: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<KeyDriversResult>>;
|
|
6127
|
+
/**
|
|
6128
|
+
* (EXPERIMENTAL) Returns a list of memory items
|
|
6129
|
+
* @summary (EXPERIMENTAL) List all memory items
|
|
6130
|
+
* @param {string} workspaceId Workspace identifier
|
|
6131
|
+
* @param {*} [options] Override http request option.
|
|
6132
|
+
* @throws {RequiredError}
|
|
6133
|
+
*/
|
|
6134
|
+
listMemoryItems(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<MemoryItem>>>;
|
|
6135
|
+
/**
|
|
6136
|
+
* (EXPERIMENTAL) Removes memory item
|
|
6137
|
+
* @summary (EXPERIMENTAL) Remove memory item
|
|
6138
|
+
* @param {string} workspaceId Workspace identifier
|
|
6139
|
+
* @param {string} memoryId
|
|
6140
|
+
* @param {*} [options] Override http request option.
|
|
6141
|
+
* @throws {RequiredError}
|
|
6142
|
+
*/
|
|
6143
|
+
removeMemoryItem(workspaceId: string, memoryId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
5879
6144
|
/**
|
|
5880
6145
|
* Returns a list of available LLM Endpoints
|
|
5881
6146
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -5914,6 +6179,16 @@ export declare const AfmActionsApiFp: (configuration?: LabelElementsConfiguratio
|
|
|
5914
6179
|
* @throws {RequiredError}
|
|
5915
6180
|
*/
|
|
5916
6181
|
tags(workspaceId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AfmAnalyticsCatalogTags>>;
|
|
6182
|
+
/**
|
|
6183
|
+
* (EXPERIMENTAL) Updates memory item and returns it
|
|
6184
|
+
* @summary (EXPERIMENTAL) Update memory item
|
|
6185
|
+
* @param {string} workspaceId Workspace identifier
|
|
6186
|
+
* @param {string} memoryId
|
|
6187
|
+
* @param {MemoryItem} memoryItem
|
|
6188
|
+
* @param {*} [options] Override http request option.
|
|
6189
|
+
* @throws {RequiredError}
|
|
6190
|
+
*/
|
|
6191
|
+
updateMemoryItem(workspaceId: string, memoryId: string, memoryItem: MemoryItem, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MemoryItem>>;
|
|
5917
6192
|
/**
|
|
5918
6193
|
* Validates LLM endpoint with provided parameters.
|
|
5919
6194
|
* @summary Validate LLM Endpoint
|
|
@@ -6065,6 +6340,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6065
6340
|
* @memberof ActionsApiInterface
|
|
6066
6341
|
*/
|
|
6067
6342
|
computeValidObjects(requestParameters: ActionsApiComputeValidObjectsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmValidObjectsResponse>;
|
|
6343
|
+
/**
|
|
6344
|
+
* (EXPERIMENTAL) Creates a new memory item and returns it
|
|
6345
|
+
* @summary (EXPERIMENTAL) Create new memory item
|
|
6346
|
+
* @param {ActionsApiCreateMemoryItemRequest} requestParameters Request parameters.
|
|
6347
|
+
* @param {*} [options] Override http request option.
|
|
6348
|
+
* @throws {RequiredError}
|
|
6349
|
+
* @memberof ActionsApiInterface
|
|
6350
|
+
*/
|
|
6351
|
+
createMemoryItem(requestParameters: ActionsApiCreateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6068
6352
|
/**
|
|
6069
6353
|
* Returns a list of Users who created any object for this workspace
|
|
6070
6354
|
* @summary Get Analytics Catalog CreatedBy
|
|
@@ -6101,6 +6385,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6101
6385
|
* @memberof ActionsApiInterface
|
|
6102
6386
|
*/
|
|
6103
6387
|
forecastResult(requestParameters: ActionsApiForecastResultRequest, options?: AxiosRequestConfig): AxiosPromise<ForecastResult>;
|
|
6388
|
+
/**
|
|
6389
|
+
* (EXPERIMENTAL) Get memory item by id
|
|
6390
|
+
* @summary (EXPERIMENTAL) Get memory item
|
|
6391
|
+
* @param {ActionsApiGetMemoryItemRequest} requestParameters Request parameters.
|
|
6392
|
+
* @param {*} [options] Override http request option.
|
|
6393
|
+
* @throws {RequiredError}
|
|
6394
|
+
* @memberof ActionsApiInterface
|
|
6395
|
+
*/
|
|
6396
|
+
getMemoryItem(requestParameters: ActionsApiGetMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6104
6397
|
/**
|
|
6105
6398
|
* Returns metadata quality issues detected by the platform linter.
|
|
6106
6399
|
* @summary Get Quality Issues
|
|
@@ -6128,6 +6421,24 @@ export declare interface AfmActionsApiInterface {
|
|
|
6128
6421
|
* @memberof ActionsApiInterface
|
|
6129
6422
|
*/
|
|
6130
6423
|
keyDriverAnalysisResult(requestParameters: ActionsApiKeyDriverAnalysisResultRequest, options?: AxiosRequestConfig): AxiosPromise<KeyDriversResult>;
|
|
6424
|
+
/**
|
|
6425
|
+
* (EXPERIMENTAL) Returns a list of memory items
|
|
6426
|
+
* @summary (EXPERIMENTAL) List all memory items
|
|
6427
|
+
* @param {ActionsApiListMemoryItemsRequest} requestParameters Request parameters.
|
|
6428
|
+
* @param {*} [options] Override http request option.
|
|
6429
|
+
* @throws {RequiredError}
|
|
6430
|
+
* @memberof ActionsApiInterface
|
|
6431
|
+
*/
|
|
6432
|
+
listMemoryItems(requestParameters: ActionsApiListMemoryItemsRequest, options?: AxiosRequestConfig): AxiosPromise<Array<MemoryItem>>;
|
|
6433
|
+
/**
|
|
6434
|
+
* (EXPERIMENTAL) Removes memory item
|
|
6435
|
+
* @summary (EXPERIMENTAL) Remove memory item
|
|
6436
|
+
* @param {ActionsApiRemoveMemoryItemRequest} requestParameters Request parameters.
|
|
6437
|
+
* @param {*} [options] Override http request option.
|
|
6438
|
+
* @throws {RequiredError}
|
|
6439
|
+
* @memberof ActionsApiInterface
|
|
6440
|
+
*/
|
|
6441
|
+
removeMemoryItem(requestParameters: ActionsApiRemoveMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
6131
6442
|
/**
|
|
6132
6443
|
* Returns a list of available LLM Endpoints
|
|
6133
6444
|
* @summary Get Active LLM Endpoints for this workspace
|
|
@@ -6164,6 +6475,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6164
6475
|
* @memberof ActionsApiInterface
|
|
6165
6476
|
*/
|
|
6166
6477
|
tags(requestParameters: ActionsApiTagsRequest, options?: AxiosRequestConfig): AxiosPromise<AfmAnalyticsCatalogTags>;
|
|
6478
|
+
/**
|
|
6479
|
+
* (EXPERIMENTAL) Updates memory item and returns it
|
|
6480
|
+
* @summary (EXPERIMENTAL) Update memory item
|
|
6481
|
+
* @param {ActionsApiUpdateMemoryItemRequest} requestParameters Request parameters.
|
|
6482
|
+
* @param {*} [options] Override http request option.
|
|
6483
|
+
* @throws {RequiredError}
|
|
6484
|
+
* @memberof ActionsApiInterface
|
|
6485
|
+
*/
|
|
6486
|
+
updateMemoryItem(requestParameters: ActionsApiUpdateMemoryItemRequest, options?: AxiosRequestConfig): AxiosPromise<MemoryItem>;
|
|
6167
6487
|
/**
|
|
6168
6488
|
* Validates LLM endpoint with provided parameters.
|
|
6169
6489
|
* @summary Validate LLM Endpoint
|
|
@@ -7433,14 +7753,18 @@ export declare interface ApiEntitlement {
|
|
|
7433
7753
|
export declare const ApiEntitlementNameEnum: {
|
|
7434
7754
|
readonly CACHE_STRATEGY: "CacheStrategy";
|
|
7435
7755
|
readonly CONTRACT: "Contract";
|
|
7756
|
+
readonly CUSTOM_THEMING: "CustomTheming";
|
|
7436
7757
|
readonly EXTRA_CACHE: "ExtraCache";
|
|
7437
7758
|
readonly HIPAA: "Hipaa";
|
|
7759
|
+
readonly PDF_EXPORTS: "PdfExports";
|
|
7438
7760
|
readonly MANAGED_OIDC: "ManagedOIDC";
|
|
7761
|
+
readonly UI_LOCALIZATION: "UiLocalization";
|
|
7439
7762
|
readonly TIER: "Tier";
|
|
7440
7763
|
readonly USER_COUNT: "UserCount";
|
|
7441
7764
|
readonly MANAGED_IDP_USER_COUNT: "ManagedIdpUserCount";
|
|
7442
7765
|
readonly UNLIMITED_USERS: "UnlimitedUsers";
|
|
7443
7766
|
readonly UNLIMITED_WORKSPACES: "UnlimitedWorkspaces";
|
|
7767
|
+
readonly WHITE_LABELING: "WhiteLabeling";
|
|
7444
7768
|
readonly WORKSPACE_COUNT: "WorkspaceCount";
|
|
7445
7769
|
readonly USER_TELEMETRY_DISABLED: "UserTelemetryDisabled";
|
|
7446
7770
|
readonly AUTOMATION_COUNT: "AutomationCount";
|
|
@@ -10516,15 +10840,38 @@ export declare type AutomationDashboardDateFilterDateFilterTypeEnum = (typeof Au
|
|
|
10516
10840
|
*/
|
|
10517
10841
|
export declare interface AutomationDashboardExportSettings {
|
|
10518
10842
|
/**
|
|
10519
|
-
* If true, the export will contain the information about the exported date
|
|
10843
|
+
* If true, the export will contain the information about the export – exported date, dashboard filters, etc.
|
|
10520
10844
|
*/
|
|
10521
10845
|
exportInfo?: boolean;
|
|
10522
10846
|
/**
|
|
10523
10847
|
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
10524
10848
|
*/
|
|
10525
10849
|
mergeHeaders?: boolean;
|
|
10850
|
+
/**
|
|
10851
|
+
* Set page size. (PDF)
|
|
10852
|
+
*/
|
|
10853
|
+
pageSize?: AutomationDashboardExportSettingsPageSizeEnum;
|
|
10854
|
+
/**
|
|
10855
|
+
* Set page orientation. (PDF)
|
|
10856
|
+
*/
|
|
10857
|
+
pageOrientation?: AutomationDashboardExportSettingsPageOrientationEnum;
|
|
10526
10858
|
}
|
|
10527
10859
|
|
|
10860
|
+
declare const AutomationDashboardExportSettingsPageOrientationEnum: {
|
|
10861
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
10862
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
10863
|
+
};
|
|
10864
|
+
|
|
10865
|
+
declare type AutomationDashboardExportSettingsPageOrientationEnum = (typeof AutomationDashboardExportSettingsPageOrientationEnum)[keyof typeof AutomationDashboardExportSettingsPageOrientationEnum];
|
|
10866
|
+
|
|
10867
|
+
declare const AutomationDashboardExportSettingsPageSizeEnum: {
|
|
10868
|
+
readonly A3: "A3";
|
|
10869
|
+
readonly A4: "A4";
|
|
10870
|
+
readonly LETTER: "LETTER";
|
|
10871
|
+
};
|
|
10872
|
+
|
|
10873
|
+
declare type AutomationDashboardExportSettingsPageSizeEnum = (typeof AutomationDashboardExportSettingsPageSizeEnum)[keyof typeof AutomationDashboardExportSettingsPageSizeEnum];
|
|
10874
|
+
|
|
10528
10875
|
/**
|
|
10529
10876
|
* @type AutomationDashboardFilter
|
|
10530
10877
|
*/
|
|
@@ -10563,6 +10910,7 @@ export declare interface AutomationDashboardTabularExportRequestV2 {
|
|
|
10563
10910
|
|
|
10564
10911
|
export declare const AutomationDashboardTabularExportRequestV2FormatEnum: {
|
|
10565
10912
|
readonly XLSX: "XLSX";
|
|
10913
|
+
readonly PDF: "PDF";
|
|
10566
10914
|
};
|
|
10567
10915
|
|
|
10568
10916
|
export declare type AutomationDashboardTabularExportRequestV2FormatEnum = (typeof AutomationDashboardTabularExportRequestV2FormatEnum)[keyof typeof AutomationDashboardTabularExportRequestV2FormatEnum];
|
|
@@ -13076,7 +13424,7 @@ export declare interface AutomationSchedule {
|
|
|
13076
13424
|
*/
|
|
13077
13425
|
export declare interface AutomationSettings {
|
|
13078
13426
|
/**
|
|
13079
|
-
*
|
|
13427
|
+
* If true, the export will contain the information about the export – exported date, filters, etc. Works only with `visualizationObject`. (XLSX, PDF)
|
|
13080
13428
|
*/
|
|
13081
13429
|
exportInfo?: boolean;
|
|
13082
13430
|
/**
|
|
@@ -13116,10 +13464,6 @@ export declare interface AutomationSettings {
|
|
|
13116
13464
|
* Set page orientation. (PDF)
|
|
13117
13465
|
*/
|
|
13118
13466
|
pageOrientation?: AutomationSettingsPageOrientationEnum;
|
|
13119
|
-
/**
|
|
13120
|
-
* Show info page with export information.
|
|
13121
|
-
*/
|
|
13122
|
-
showInfoPage?: boolean;
|
|
13123
13467
|
}
|
|
13124
13468
|
|
|
13125
13469
|
declare const AutomationSettingsPageOrientationEnum: {
|
|
@@ -13294,7 +13638,7 @@ export declare interface AutomationTabularExportRequest {
|
|
|
13294
13638
|
*/
|
|
13295
13639
|
visualizationObject?: string;
|
|
13296
13640
|
/**
|
|
13297
|
-
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given.
|
|
13641
|
+
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given. Those filters override the original filters defined in the visualization.
|
|
13298
13642
|
*/
|
|
13299
13643
|
visualizationObjectCustomFilters?: Array<object>;
|
|
13300
13644
|
/**
|
|
@@ -13762,6 +14106,10 @@ export declare interface ChatRequest {
|
|
|
13762
14106
|
* Score, above which we return found objects. Below this score objects are not relevant.
|
|
13763
14107
|
*/
|
|
13764
14108
|
relevantScoreThreshold?: number;
|
|
14109
|
+
/**
|
|
14110
|
+
* If true, includes hidden objects in search and visualization building. If false (default), excludes objects where isHidden=true.
|
|
14111
|
+
*/
|
|
14112
|
+
includeHidden?: boolean;
|
|
13765
14113
|
}
|
|
13766
14114
|
|
|
13767
14115
|
export declare interface ChatResult {
|
|
@@ -14974,7 +15322,7 @@ export declare interface CreatedVisualization {
|
|
|
14974
15322
|
/**
|
|
14975
15323
|
* @type CreatedVisualizationFiltersInner
|
|
14976
15324
|
*/
|
|
14977
|
-
export declare type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter;
|
|
15325
|
+
export declare type CreatedVisualizationFiltersInner = AttributeNegativeFilter | AttributePositiveFilter | DateAbsoluteFilter | DateRelativeFilter | AfmRankingFilter;
|
|
14978
15326
|
|
|
14979
15327
|
/**
|
|
14980
15328
|
* Visualization definitions created by AI.
|
|
@@ -15743,15 +16091,38 @@ export declare type DashboardDateFilterDateFilterTypeEnum = (typeof DashboardDat
|
|
|
15743
16091
|
*/
|
|
15744
16092
|
export declare interface DashboardExportSettings {
|
|
15745
16093
|
/**
|
|
15746
|
-
* If true, the export will contain the information about the exported date
|
|
16094
|
+
* If true, the export will contain the information about the export – exported date, dashboard filters, etc.
|
|
15747
16095
|
*/
|
|
15748
16096
|
exportInfo?: boolean;
|
|
15749
16097
|
/**
|
|
15750
16098
|
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
15751
16099
|
*/
|
|
15752
16100
|
mergeHeaders?: boolean;
|
|
16101
|
+
/**
|
|
16102
|
+
* Set page size. (PDF)
|
|
16103
|
+
*/
|
|
16104
|
+
pageSize?: DashboardExportSettingsPageSizeEnum;
|
|
16105
|
+
/**
|
|
16106
|
+
* Set page orientation. (PDF)
|
|
16107
|
+
*/
|
|
16108
|
+
pageOrientation?: DashboardExportSettingsPageOrientationEnum;
|
|
15753
16109
|
}
|
|
15754
16110
|
|
|
16111
|
+
export declare const DashboardExportSettingsPageOrientationEnum: {
|
|
16112
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
16113
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
16114
|
+
};
|
|
16115
|
+
|
|
16116
|
+
export declare type DashboardExportSettingsPageOrientationEnum = (typeof DashboardExportSettingsPageOrientationEnum)[keyof typeof DashboardExportSettingsPageOrientationEnum];
|
|
16117
|
+
|
|
16118
|
+
export declare const DashboardExportSettingsPageSizeEnum: {
|
|
16119
|
+
readonly A3: "A3";
|
|
16120
|
+
readonly A4: "A4";
|
|
16121
|
+
readonly LETTER: "LETTER";
|
|
16122
|
+
};
|
|
16123
|
+
|
|
16124
|
+
export declare type DashboardExportSettingsPageSizeEnum = (typeof DashboardExportSettingsPageSizeEnum)[keyof typeof DashboardExportSettingsPageSizeEnum];
|
|
16125
|
+
|
|
15755
16126
|
/**
|
|
15756
16127
|
* @type DashboardFilter
|
|
15757
16128
|
*/
|
|
@@ -16419,6 +16790,7 @@ export declare interface DashboardTabularExportRequestV2 {
|
|
|
16419
16790
|
|
|
16420
16791
|
export declare const DashboardTabularExportRequestV2FormatEnum: {
|
|
16421
16792
|
readonly XLSX: "XLSX";
|
|
16793
|
+
readonly PDF: "PDF";
|
|
16422
16794
|
};
|
|
16423
16795
|
|
|
16424
16796
|
export declare type DashboardTabularExportRequestV2FormatEnum = (typeof DashboardTabularExportRequestV2FormatEnum)[keyof typeof DashboardTabularExportRequestV2FormatEnum];
|
|
@@ -19627,6 +19999,10 @@ export declare interface DeclarativeAttribute {
|
|
|
19627
19999
|
* A type of the source column
|
|
19628
20000
|
*/
|
|
19629
20001
|
sourceColumnDataType?: DeclarativeAttributeSourceColumnDataTypeEnum;
|
|
20002
|
+
/**
|
|
20003
|
+
* If true, this attribute is hidden from AI search results.
|
|
20004
|
+
*/
|
|
20005
|
+
isHidden?: boolean;
|
|
19630
20006
|
}
|
|
19631
20007
|
|
|
19632
20008
|
export declare interface DeclarativeAttributeHierarchy {
|
|
@@ -20229,6 +20605,10 @@ export declare interface DeclarativeFact {
|
|
|
20229
20605
|
* A list of tags.
|
|
20230
20606
|
*/
|
|
20231
20607
|
tags?: Array<string>;
|
|
20608
|
+
/**
|
|
20609
|
+
* If true, this fact is hidden from AI search results.
|
|
20610
|
+
*/
|
|
20611
|
+
isHidden?: boolean;
|
|
20232
20612
|
}
|
|
20233
20613
|
|
|
20234
20614
|
export declare const DeclarativeFactSourceColumnDataTypeEnum: {
|
|
@@ -20416,6 +20796,10 @@ export declare interface DeclarativeLabel {
|
|
|
20416
20796
|
* Specific type of label
|
|
20417
20797
|
*/
|
|
20418
20798
|
valueType?: DeclarativeLabelValueTypeEnum;
|
|
20799
|
+
/**
|
|
20800
|
+
* Determines if the label is hidden from AI features.
|
|
20801
|
+
*/
|
|
20802
|
+
isHidden?: boolean;
|
|
20419
20803
|
}
|
|
20420
20804
|
|
|
20421
20805
|
export declare const DeclarativeLabelSourceColumnDataTypeEnum: {
|
|
@@ -20490,6 +20874,10 @@ export declare interface DeclarativeMetric {
|
|
|
20490
20874
|
* Time of the entity creation.
|
|
20491
20875
|
*/
|
|
20492
20876
|
createdAt?: string | null;
|
|
20877
|
+
/**
|
|
20878
|
+
* If true, this metric is hidden from AI search results.
|
|
20879
|
+
*/
|
|
20880
|
+
isHidden?: boolean;
|
|
20493
20881
|
}
|
|
20494
20882
|
|
|
20495
20883
|
/**
|
|
@@ -20877,12 +21265,15 @@ export declare const DeclarativeSettingTypeEnum: {
|
|
|
20877
21265
|
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
20878
21266
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
20879
21267
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
21268
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
20880
21269
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
20881
21270
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
20882
21271
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
20883
21272
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
20884
21273
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
20885
21274
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
21275
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
21276
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
20886
21277
|
};
|
|
20887
21278
|
|
|
20888
21279
|
export declare type DeclarativeSettingTypeEnum = (typeof DeclarativeSettingTypeEnum)[keyof typeof DeclarativeSettingTypeEnum];
|
|
@@ -21190,6 +21581,10 @@ export declare interface DeclarativeVisualizationObject {
|
|
|
21190
21581
|
* Time of the entity creation.
|
|
21191
21582
|
*/
|
|
21192
21583
|
createdAt?: string | null;
|
|
21584
|
+
/**
|
|
21585
|
+
* If true, this visualization object is hidden from AI search results.
|
|
21586
|
+
*/
|
|
21587
|
+
isHidden?: boolean;
|
|
21193
21588
|
}
|
|
21194
21589
|
|
|
21195
21590
|
/**
|
|
@@ -38268,14 +38663,18 @@ export declare interface EntitlementsRequest {
|
|
|
38268
38663
|
export declare const EntitlementsRequestEntitlementsNameEnum: {
|
|
38269
38664
|
readonly CACHE_STRATEGY: "CacheStrategy";
|
|
38270
38665
|
readonly CONTRACT: "Contract";
|
|
38666
|
+
readonly CUSTOM_THEMING: "CustomTheming";
|
|
38271
38667
|
readonly EXTRA_CACHE: "ExtraCache";
|
|
38272
38668
|
readonly HIPAA: "Hipaa";
|
|
38669
|
+
readonly PDF_EXPORTS: "PdfExports";
|
|
38273
38670
|
readonly MANAGED_OIDC: "ManagedOIDC";
|
|
38671
|
+
readonly UI_LOCALIZATION: "UiLocalization";
|
|
38274
38672
|
readonly TIER: "Tier";
|
|
38275
38673
|
readonly USER_COUNT: "UserCount";
|
|
38276
38674
|
readonly MANAGED_IDP_USER_COUNT: "ManagedIdpUserCount";
|
|
38277
38675
|
readonly UNLIMITED_USERS: "UnlimitedUsers";
|
|
38278
38676
|
readonly UNLIMITED_WORKSPACES: "UnlimitedWorkspaces";
|
|
38677
|
+
readonly WHITE_LABELING: "WhiteLabeling";
|
|
38279
38678
|
readonly WORKSPACE_COUNT: "WorkspaceCount";
|
|
38280
38679
|
readonly USER_TELEMETRY_DISABLED: "UserTelemetryDisabled";
|
|
38281
38680
|
readonly AUTOMATION_COUNT: "AutomationCount";
|
|
@@ -38963,15 +39362,38 @@ export declare type ExportDashboardDateFilterDateFilterTypeEnum = (typeof Export
|
|
|
38963
39362
|
*/
|
|
38964
39363
|
export declare interface ExportDashboardExportSettings {
|
|
38965
39364
|
/**
|
|
38966
|
-
* If true, the export will contain the information about the exported date
|
|
39365
|
+
* If true, the export will contain the information about the export – exported date, dashboard filters, etc.
|
|
38967
39366
|
*/
|
|
38968
39367
|
exportInfo?: boolean;
|
|
38969
39368
|
/**
|
|
38970
39369
|
* Merge equal headers in neighbouring cells. Used for [XLSX] format only.
|
|
38971
39370
|
*/
|
|
38972
39371
|
mergeHeaders?: boolean;
|
|
39372
|
+
/**
|
|
39373
|
+
* Set page size. (PDF)
|
|
39374
|
+
*/
|
|
39375
|
+
pageSize?: ExportDashboardExportSettingsPageSizeEnum;
|
|
39376
|
+
/**
|
|
39377
|
+
* Set page orientation. (PDF)
|
|
39378
|
+
*/
|
|
39379
|
+
pageOrientation?: ExportDashboardExportSettingsPageOrientationEnum;
|
|
38973
39380
|
}
|
|
38974
39381
|
|
|
39382
|
+
export declare const ExportDashboardExportSettingsPageOrientationEnum: {
|
|
39383
|
+
readonly PORTRAIT: "PORTRAIT";
|
|
39384
|
+
readonly LANDSCAPE: "LANDSCAPE";
|
|
39385
|
+
};
|
|
39386
|
+
|
|
39387
|
+
export declare type ExportDashboardExportSettingsPageOrientationEnum = (typeof ExportDashboardExportSettingsPageOrientationEnum)[keyof typeof ExportDashboardExportSettingsPageOrientationEnum];
|
|
39388
|
+
|
|
39389
|
+
export declare const ExportDashboardExportSettingsPageSizeEnum: {
|
|
39390
|
+
readonly A3: "A3";
|
|
39391
|
+
readonly A4: "A4";
|
|
39392
|
+
readonly LETTER: "LETTER";
|
|
39393
|
+
};
|
|
39394
|
+
|
|
39395
|
+
export declare type ExportDashboardExportSettingsPageSizeEnum = (typeof ExportDashboardExportSettingsPageSizeEnum)[keyof typeof ExportDashboardExportSettingsPageSizeEnum];
|
|
39396
|
+
|
|
38975
39397
|
/**
|
|
38976
39398
|
* @type ExportDashboardFilter
|
|
38977
39399
|
*/
|
|
@@ -40103,7 +40525,7 @@ export declare interface ExportRequestArgs {
|
|
|
40103
40525
|
*/
|
|
40104
40526
|
export declare interface ExportSettings {
|
|
40105
40527
|
/**
|
|
40106
|
-
*
|
|
40528
|
+
* If true, the export will contain the information about the export – exported date, filters, etc. Works only with `visualizationObject`. (XLSX, PDF)
|
|
40107
40529
|
*/
|
|
40108
40530
|
exportInfo?: boolean;
|
|
40109
40531
|
/**
|
|
@@ -40143,10 +40565,6 @@ export declare interface ExportSettings {
|
|
|
40143
40565
|
* Set page orientation. (PDF)
|
|
40144
40566
|
*/
|
|
40145
40567
|
pageOrientation?: ExportSettingsPageOrientationEnum;
|
|
40146
|
-
/**
|
|
40147
|
-
* Show info page with export information.
|
|
40148
|
-
*/
|
|
40149
|
-
showInfoPage?: boolean;
|
|
40150
40568
|
}
|
|
40151
40569
|
|
|
40152
40570
|
export declare const ExportSettingsPageOrientationEnum: {
|
|
@@ -40264,7 +40682,7 @@ export declare interface ExportTabularExportRequest {
|
|
|
40264
40682
|
*/
|
|
40265
40683
|
visualizationObject?: string;
|
|
40266
40684
|
/**
|
|
40267
|
-
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given.
|
|
40685
|
+
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given. Those filters override the original filters defined in the visualization.
|
|
40268
40686
|
*/
|
|
40269
40687
|
visualizationObjectCustomFilters?: Array<object>;
|
|
40270
40688
|
/**
|
|
@@ -41874,6 +42292,10 @@ export declare interface GenerateLdmRequest {
|
|
|
41874
42292
|
* Columns starting with this prefix will be considered as secondary labels. The prefix is then followed by the value of `separator` parameter. Given the secondary label prefix is `ls` and separator is `__`, the columns with name like `ls__country_id__country_name` will be considered as secondary labels.
|
|
41875
42293
|
*/
|
|
41876
42294
|
secondaryLabelPrefix?: string;
|
|
42295
|
+
/**
|
|
42296
|
+
* Columns starting with this prefix will be considered as aggregated facts. The prefix is then followed by the value of `separator` parameter. Given the aggregated fact prefix is `aggr` and separator is `__`, the columns with name like `aggr__sum__product__sold` will be considered as aggregated sold fact in the product table with SUM aggregate function.
|
|
42297
|
+
*/
|
|
42298
|
+
aggregatedFactPrefix?: string;
|
|
41877
42299
|
/**
|
|
41878
42300
|
* Columns starting with this prefix will be considered as facts. The prefix is then followed by the value of `separator` parameter. Given the fact prefix is `f` and separator is `__`, the columns with name like `f__sold` will be considered as facts.
|
|
41879
42301
|
*/
|
|
@@ -43861,7 +44283,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
43861
44283
|
* API identifier of an object
|
|
43862
44284
|
*/
|
|
43863
44285
|
id: string;
|
|
43864
|
-
meta?:
|
|
44286
|
+
meta?: JsonApiDatasetOutMeta;
|
|
43865
44287
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43866
44288
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43867
44289
|
}
|
|
@@ -43915,15 +44337,19 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
43915
44337
|
export declare interface JsonApiAggregatedFactOutList {
|
|
43916
44338
|
data: Array<JsonApiAggregatedFactOutWithLinks>;
|
|
43917
44339
|
links?: ListLinks;
|
|
43918
|
-
meta?:
|
|
44340
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
43919
44341
|
/**
|
|
43920
44342
|
* Included resources
|
|
43921
44343
|
*/
|
|
43922
44344
|
included?: Array<JsonApiAggregatedFactOutIncludes>;
|
|
43923
44345
|
}
|
|
43924
44346
|
|
|
44347
|
+
export declare interface JsonApiAggregatedFactOutListMeta {
|
|
44348
|
+
page?: PageMetadata;
|
|
44349
|
+
}
|
|
44350
|
+
|
|
43925
44351
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
43926
|
-
dataset?:
|
|
44352
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
43927
44353
|
sourceFact?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
43928
44354
|
}
|
|
43929
44355
|
|
|
@@ -43946,7 +44372,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
43946
44372
|
* API identifier of an object
|
|
43947
44373
|
*/
|
|
43948
44374
|
id: string;
|
|
43949
|
-
meta?:
|
|
44375
|
+
meta?: JsonApiDatasetOutMeta;
|
|
43950
44376
|
attributes: JsonApiAggregatedFactOutAttributes;
|
|
43951
44377
|
relationships?: JsonApiAggregatedFactOutRelationships;
|
|
43952
44378
|
links?: ObjectLinks;
|
|
@@ -43970,18 +44396,7 @@ export declare interface JsonApiAnalyticalDashboardIn {
|
|
|
43970
44396
|
* API identifier of an object
|
|
43971
44397
|
*/
|
|
43972
44398
|
id: string;
|
|
43973
|
-
attributes:
|
|
43974
|
-
}
|
|
43975
|
-
|
|
43976
|
-
export declare interface JsonApiAnalyticalDashboardInAttributes {
|
|
43977
|
-
title?: string;
|
|
43978
|
-
description?: string;
|
|
43979
|
-
tags?: Array<string>;
|
|
43980
|
-
areRelationsValid?: boolean;
|
|
43981
|
-
/**
|
|
43982
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
43983
|
-
*/
|
|
43984
|
-
content: object;
|
|
44399
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
43985
44400
|
}
|
|
43986
44401
|
|
|
43987
44402
|
export declare interface JsonApiAnalyticalDashboardInDocument {
|
|
@@ -44021,10 +44436,23 @@ export declare interface JsonApiAnalyticalDashboardOut {
|
|
|
44021
44436
|
*/
|
|
44022
44437
|
id: string;
|
|
44023
44438
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
44024
|
-
attributes:
|
|
44439
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
44025
44440
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
44026
44441
|
}
|
|
44027
44442
|
|
|
44443
|
+
export declare interface JsonApiAnalyticalDashboardOutAttributes {
|
|
44444
|
+
title?: string;
|
|
44445
|
+
description?: string;
|
|
44446
|
+
tags?: Array<string>;
|
|
44447
|
+
areRelationsValid?: boolean;
|
|
44448
|
+
/**
|
|
44449
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
44450
|
+
*/
|
|
44451
|
+
content: object;
|
|
44452
|
+
createdAt?: string;
|
|
44453
|
+
modifiedAt?: string;
|
|
44454
|
+
}
|
|
44455
|
+
|
|
44028
44456
|
export declare interface JsonApiAnalyticalDashboardOutDocument {
|
|
44029
44457
|
data: JsonApiAnalyticalDashboardOut;
|
|
44030
44458
|
links?: ObjectLinks;
|
|
@@ -44045,7 +44473,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
44045
44473
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
44046
44474
|
data: Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
44047
44475
|
links?: ListLinks;
|
|
44048
|
-
meta?:
|
|
44476
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
44049
44477
|
/**
|
|
44050
44478
|
* Included resources
|
|
44051
44479
|
*/
|
|
@@ -44057,7 +44485,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
44057
44485
|
* List of valid permissions for a logged-in user.
|
|
44058
44486
|
*/
|
|
44059
44487
|
permissions?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
44060
|
-
origin?:
|
|
44488
|
+
origin?: JsonApiDatasetOutMetaOrigin;
|
|
44061
44489
|
accessInfo?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
44062
44490
|
}
|
|
44063
44491
|
|
|
@@ -44083,7 +44511,7 @@ export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
|
44083
44511
|
analyticalDashboards?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
44084
44512
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
44085
44513
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
44086
|
-
datasets?:
|
|
44514
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
44087
44515
|
filterContexts?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
44088
44516
|
dashboardPlugins?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
44089
44517
|
}
|
|
@@ -44132,7 +44560,7 @@ export declare interface JsonApiAnalyticalDashboardOutWithLinks {
|
|
|
44132
44560
|
*/
|
|
44133
44561
|
id: string;
|
|
44134
44562
|
meta?: JsonApiAnalyticalDashboardOutMeta;
|
|
44135
|
-
attributes:
|
|
44563
|
+
attributes: JsonApiAnalyticalDashboardOutAttributes;
|
|
44136
44564
|
relationships?: JsonApiAnalyticalDashboardOutRelationships;
|
|
44137
44565
|
links?: ObjectLinks;
|
|
44138
44566
|
}
|
|
@@ -44191,7 +44619,7 @@ export declare interface JsonApiAnalyticalDashboardPostOptionalId {
|
|
|
44191
44619
|
* API identifier of an object
|
|
44192
44620
|
*/
|
|
44193
44621
|
id?: string;
|
|
44194
|
-
attributes:
|
|
44622
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
44195
44623
|
}
|
|
44196
44624
|
|
|
44197
44625
|
export declare interface JsonApiAnalyticalDashboardPostOptionalIdDocument {
|
|
@@ -44261,7 +44689,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
44261
44689
|
export declare interface JsonApiApiTokenOutList {
|
|
44262
44690
|
data: Array<JsonApiApiTokenOutWithLinks>;
|
|
44263
44691
|
links?: ListLinks;
|
|
44264
|
-
meta?:
|
|
44692
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
44265
44693
|
}
|
|
44266
44694
|
|
|
44267
44695
|
export declare const JsonApiApiTokenOutTypeEnum: {
|
|
@@ -44301,18 +44729,7 @@ export declare interface JsonApiAttributeHierarchyIn {
|
|
|
44301
44729
|
* API identifier of an object
|
|
44302
44730
|
*/
|
|
44303
44731
|
id: string;
|
|
44304
|
-
attributes?:
|
|
44305
|
-
}
|
|
44306
|
-
|
|
44307
|
-
export declare interface JsonApiAttributeHierarchyInAttributes {
|
|
44308
|
-
title?: string;
|
|
44309
|
-
description?: string;
|
|
44310
|
-
tags?: Array<string>;
|
|
44311
|
-
areRelationsValid?: boolean;
|
|
44312
|
-
/**
|
|
44313
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
44314
|
-
*/
|
|
44315
|
-
content?: object;
|
|
44732
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
44316
44733
|
}
|
|
44317
44734
|
|
|
44318
44735
|
export declare interface JsonApiAttributeHierarchyInDocument {
|
|
@@ -44351,7 +44768,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
44351
44768
|
* API identifier of an object
|
|
44352
44769
|
*/
|
|
44353
44770
|
id: string;
|
|
44354
|
-
meta?:
|
|
44771
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44355
44772
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
44356
44773
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
44357
44774
|
}
|
|
@@ -44389,7 +44806,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
44389
44806
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
44390
44807
|
data: Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
44391
44808
|
links?: ListLinks;
|
|
44392
|
-
meta?:
|
|
44809
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
44393
44810
|
/**
|
|
44394
44811
|
* Included resources
|
|
44395
44812
|
*/
|
|
@@ -44399,7 +44816,7 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
44399
44816
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
44400
44817
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44401
44818
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44402
|
-
attributes?:
|
|
44819
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
44403
44820
|
}
|
|
44404
44821
|
|
|
44405
44822
|
export declare const JsonApiAttributeHierarchyOutTypeEnum: {
|
|
@@ -44417,7 +44834,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
44417
44834
|
* API identifier of an object
|
|
44418
44835
|
*/
|
|
44419
44836
|
id: string;
|
|
44420
|
-
meta?:
|
|
44837
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44421
44838
|
attributes?: JsonApiAttributeHierarchyOutAttributes;
|
|
44422
44839
|
relationships?: JsonApiAttributeHierarchyOutRelationships;
|
|
44423
44840
|
links?: ObjectLinks;
|
|
@@ -44441,7 +44858,18 @@ export declare interface JsonApiAttributeHierarchyPatch {
|
|
|
44441
44858
|
* API identifier of an object
|
|
44442
44859
|
*/
|
|
44443
44860
|
id: string;
|
|
44444
|
-
attributes?:
|
|
44861
|
+
attributes?: JsonApiAttributeHierarchyPatchAttributes;
|
|
44862
|
+
}
|
|
44863
|
+
|
|
44864
|
+
export declare interface JsonApiAttributeHierarchyPatchAttributes {
|
|
44865
|
+
title?: string;
|
|
44866
|
+
description?: string;
|
|
44867
|
+
tags?: Array<string>;
|
|
44868
|
+
areRelationsValid?: boolean;
|
|
44869
|
+
/**
|
|
44870
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
44871
|
+
*/
|
|
44872
|
+
content?: object;
|
|
44445
44873
|
}
|
|
44446
44874
|
|
|
44447
44875
|
export declare interface JsonApiAttributeHierarchyPatchDocument {
|
|
@@ -44480,7 +44908,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
44480
44908
|
* API identifier of an object
|
|
44481
44909
|
*/
|
|
44482
44910
|
id: string;
|
|
44483
|
-
meta?:
|
|
44911
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44484
44912
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44485
44913
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44486
44914
|
}
|
|
@@ -44495,6 +44923,7 @@ export declare interface JsonApiAttributeOutAttributes {
|
|
|
44495
44923
|
sortDirection?: JsonApiAttributeOutAttributesSortDirectionEnum;
|
|
44496
44924
|
sourceColumn?: string;
|
|
44497
44925
|
sourceColumnDataType?: JsonApiAttributeOutAttributesSourceColumnDataTypeEnum;
|
|
44926
|
+
isHidden?: boolean;
|
|
44498
44927
|
}
|
|
44499
44928
|
|
|
44500
44929
|
export declare const JsonApiAttributeOutAttributesGranularityEnum: {
|
|
@@ -44557,7 +44986,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
44557
44986
|
export declare interface JsonApiAttributeOutList {
|
|
44558
44987
|
data: Array<JsonApiAttributeOutWithLinks>;
|
|
44559
44988
|
links?: ListLinks;
|
|
44560
|
-
meta?:
|
|
44989
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
44561
44990
|
/**
|
|
44562
44991
|
* Included resources
|
|
44563
44992
|
*/
|
|
@@ -44565,7 +44994,7 @@ export declare interface JsonApiAttributeOutList {
|
|
|
44565
44994
|
}
|
|
44566
44995
|
|
|
44567
44996
|
export declare interface JsonApiAttributeOutRelationships {
|
|
44568
|
-
dataset?:
|
|
44997
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
44569
44998
|
defaultView?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
44570
44999
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
44571
45000
|
attributeHierarchies?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
@@ -44578,10 +45007,6 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
44578
45007
|
data: Array<JsonApiAttributeHierarchyLinkage>;
|
|
44579
45008
|
}
|
|
44580
45009
|
|
|
44581
|
-
export declare interface JsonApiAttributeOutRelationshipsDataset {
|
|
44582
|
-
data: JsonApiDatasetLinkage | null;
|
|
44583
|
-
}
|
|
44584
|
-
|
|
44585
45010
|
export declare interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
44586
45011
|
data: JsonApiLabelLinkage | null;
|
|
44587
45012
|
}
|
|
@@ -44601,7 +45026,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
44601
45026
|
* API identifier of an object
|
|
44602
45027
|
*/
|
|
44603
45028
|
id: string;
|
|
44604
|
-
meta?:
|
|
45029
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44605
45030
|
attributes?: JsonApiAttributeOutAttributes;
|
|
44606
45031
|
relationships?: JsonApiAttributeOutRelationships;
|
|
44607
45032
|
links?: ObjectLinks;
|
|
@@ -44625,11 +45050,52 @@ export declare interface JsonApiAutomationIn {
|
|
|
44625
45050
|
* API identifier of an object
|
|
44626
45051
|
*/
|
|
44627
45052
|
id: string;
|
|
44628
|
-
attributes?:
|
|
44629
|
-
relationships?:
|
|
45053
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
45054
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
45055
|
+
}
|
|
45056
|
+
|
|
45057
|
+
export declare interface JsonApiAutomationInDocument {
|
|
45058
|
+
data: JsonApiAutomationIn;
|
|
44630
45059
|
}
|
|
44631
45060
|
|
|
44632
|
-
export declare
|
|
45061
|
+
export declare const JsonApiAutomationInTypeEnum: {
|
|
45062
|
+
readonly AUTOMATION: "automation";
|
|
45063
|
+
};
|
|
45064
|
+
|
|
45065
|
+
export declare type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
|
|
45066
|
+
|
|
45067
|
+
/**
|
|
45068
|
+
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
45069
|
+
*/
|
|
45070
|
+
export declare interface JsonApiAutomationLinkage {
|
|
45071
|
+
id: string;
|
|
45072
|
+
type: JsonApiAutomationLinkageTypeEnum;
|
|
45073
|
+
}
|
|
45074
|
+
|
|
45075
|
+
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
45076
|
+
readonly AUTOMATION: "automation";
|
|
45077
|
+
};
|
|
45078
|
+
|
|
45079
|
+
export declare type JsonApiAutomationLinkageTypeEnum = (typeof JsonApiAutomationLinkageTypeEnum)[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
45080
|
+
|
|
45081
|
+
/**
|
|
45082
|
+
* JSON:API representation of automation entity.
|
|
45083
|
+
*/
|
|
45084
|
+
export declare interface JsonApiAutomationOut {
|
|
45085
|
+
/**
|
|
45086
|
+
* Object type
|
|
45087
|
+
*/
|
|
45088
|
+
type: JsonApiAutomationOutTypeEnum;
|
|
45089
|
+
/**
|
|
45090
|
+
* API identifier of an object
|
|
45091
|
+
*/
|
|
45092
|
+
id: string;
|
|
45093
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45094
|
+
attributes?: JsonApiAutomationOutAttributes;
|
|
45095
|
+
relationships?: JsonApiAutomationOutRelationships;
|
|
45096
|
+
}
|
|
45097
|
+
|
|
45098
|
+
export declare interface JsonApiAutomationOutAttributes {
|
|
44633
45099
|
title?: string;
|
|
44634
45100
|
description?: string;
|
|
44635
45101
|
tags?: Array<string>;
|
|
@@ -44638,80 +45104,82 @@ export declare interface JsonApiAutomationInAttributes {
|
|
|
44638
45104
|
* Additional details to be included in the automated message.
|
|
44639
45105
|
*/
|
|
44640
45106
|
details?: object;
|
|
44641
|
-
metadata?:
|
|
45107
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
44642
45108
|
/**
|
|
44643
45109
|
* Current state of the automation.
|
|
44644
45110
|
*/
|
|
44645
|
-
state?:
|
|
45111
|
+
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
44646
45112
|
/**
|
|
44647
45113
|
* Specify automation evaluation mode.
|
|
44648
45114
|
*/
|
|
44649
|
-
evaluationMode?:
|
|
44650
|
-
schedule?:
|
|
44651
|
-
alert?:
|
|
44652
|
-
tabularExports?: Array<
|
|
44653
|
-
visualExports?: Array<
|
|
44654
|
-
imageExports?: Array<
|
|
44655
|
-
rawExports?: Array<
|
|
44656
|
-
slidesExports?: Array<
|
|
44657
|
-
dashboardTabularExports?: Array<
|
|
45115
|
+
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
45116
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
45117
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
45118
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
45119
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
45120
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
45121
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
45122
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
45123
|
+
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
44658
45124
|
/**
|
|
44659
45125
|
* External recipients of the automation action results.
|
|
44660
45126
|
*/
|
|
44661
|
-
externalRecipients?: Array<
|
|
45127
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
45128
|
+
createdAt?: string;
|
|
45129
|
+
modifiedAt?: string;
|
|
44662
45130
|
}
|
|
44663
45131
|
|
|
44664
|
-
export declare interface
|
|
45132
|
+
export declare interface JsonApiAutomationOutAttributesAlert {
|
|
44665
45133
|
execution: AlertAfm;
|
|
44666
45134
|
condition: AlertCondition;
|
|
44667
45135
|
/**
|
|
44668
45136
|
* Trigger behavior for the alert. ALWAYS - alert is triggered every time the condition is met. ONCE - alert is triggered only once when the condition is met.
|
|
44669
45137
|
*/
|
|
44670
|
-
trigger?:
|
|
45138
|
+
trigger?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
44671
45139
|
}
|
|
44672
45140
|
|
|
44673
|
-
export declare const
|
|
45141
|
+
export declare const JsonApiAutomationOutAttributesAlertTriggerEnum: {
|
|
44674
45142
|
readonly ALWAYS: "ALWAYS";
|
|
44675
45143
|
readonly ONCE: "ONCE";
|
|
44676
45144
|
};
|
|
44677
45145
|
|
|
44678
|
-
export declare type
|
|
45146
|
+
export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = (typeof JsonApiAutomationOutAttributesAlertTriggerEnum)[keyof typeof JsonApiAutomationOutAttributesAlertTriggerEnum];
|
|
44679
45147
|
|
|
44680
|
-
export declare interface
|
|
45148
|
+
export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
44681
45149
|
requestPayload: DashboardTabularExportRequestV2;
|
|
44682
45150
|
}
|
|
44683
45151
|
|
|
44684
|
-
export declare const
|
|
45152
|
+
export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
44685
45153
|
readonly SHARED: "SHARED";
|
|
44686
45154
|
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
44687
45155
|
};
|
|
44688
45156
|
|
|
44689
|
-
export declare type
|
|
45157
|
+
export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
44690
45158
|
|
|
44691
|
-
export declare interface
|
|
45159
|
+
export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
44692
45160
|
/**
|
|
44693
45161
|
* E-mail address to send notifications from.
|
|
44694
45162
|
*/
|
|
44695
45163
|
email: string;
|
|
44696
45164
|
}
|
|
44697
45165
|
|
|
44698
|
-
export declare interface
|
|
45166
|
+
export declare interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
44699
45167
|
requestPayload: ImageExportRequest;
|
|
44700
45168
|
}
|
|
44701
45169
|
|
|
44702
45170
|
/**
|
|
44703
45171
|
* Additional information for the automation.
|
|
44704
45172
|
*/
|
|
44705
|
-
export declare interface
|
|
45173
|
+
export declare interface JsonApiAutomationOutAttributesMetadata {
|
|
44706
45174
|
widget?: string;
|
|
44707
45175
|
visibleFilters?: Array<VisibleFilter>;
|
|
44708
45176
|
}
|
|
44709
45177
|
|
|
44710
|
-
export declare interface
|
|
45178
|
+
export declare interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
44711
45179
|
requestPayload: RawExportAutomationRequest;
|
|
44712
45180
|
}
|
|
44713
45181
|
|
|
44714
|
-
export declare interface
|
|
45182
|
+
export declare interface JsonApiAutomationOutAttributesSchedule {
|
|
44715
45183
|
/**
|
|
44716
45184
|
* Cron expression defining the schedule of the automation. The format is SECOND MINUTE HOUR DAY-OF-MONTH MONTH DAY-OF-WEEK (YEAR). The example expression signifies an action every 30 minutes from 9:00 to 17:00 on workdays.
|
|
44717
45185
|
*/
|
|
@@ -44730,143 +45198,25 @@ export declare interface JsonApiAutomationInAttributesSchedule {
|
|
|
44730
45198
|
firstRun?: string;
|
|
44731
45199
|
}
|
|
44732
45200
|
|
|
44733
|
-
export declare interface
|
|
45201
|
+
export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
44734
45202
|
requestPayload: SlidesExportRequest;
|
|
44735
45203
|
}
|
|
44736
45204
|
|
|
44737
|
-
export declare const
|
|
45205
|
+
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
44738
45206
|
readonly ACTIVE: "ACTIVE";
|
|
44739
45207
|
readonly PAUSED: "PAUSED";
|
|
44740
45208
|
};
|
|
44741
45209
|
|
|
44742
|
-
export declare type
|
|
45210
|
+
export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
44743
45211
|
|
|
44744
|
-
export declare interface
|
|
45212
|
+
export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
44745
45213
|
requestPayload: TabularExportRequest;
|
|
44746
45214
|
}
|
|
44747
45215
|
|
|
44748
|
-
export declare interface
|
|
45216
|
+
export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
44749
45217
|
requestPayload: VisualExportRequest;
|
|
44750
45218
|
}
|
|
44751
45219
|
|
|
44752
|
-
export declare interface JsonApiAutomationInDocument {
|
|
44753
|
-
data: JsonApiAutomationIn;
|
|
44754
|
-
}
|
|
44755
|
-
|
|
44756
|
-
export declare interface JsonApiAutomationInRelationships {
|
|
44757
|
-
notificationChannel?: JsonApiAutomationInRelationshipsNotificationChannel;
|
|
44758
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
44759
|
-
exportDefinitions?: JsonApiAutomationInRelationshipsExportDefinitions;
|
|
44760
|
-
recipients?: JsonApiAutomationInRelationshipsRecipients;
|
|
44761
|
-
}
|
|
44762
|
-
|
|
44763
|
-
export declare interface JsonApiAutomationInRelationshipsAnalyticalDashboard {
|
|
44764
|
-
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
44765
|
-
}
|
|
44766
|
-
|
|
44767
|
-
export declare interface JsonApiAutomationInRelationshipsExportDefinitions {
|
|
44768
|
-
/**
|
|
44769
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44770
|
-
*/
|
|
44771
|
-
data: Array<JsonApiExportDefinitionLinkage>;
|
|
44772
|
-
}
|
|
44773
|
-
|
|
44774
|
-
export declare interface JsonApiAutomationInRelationshipsNotificationChannel {
|
|
44775
|
-
data: JsonApiNotificationChannelLinkage | null;
|
|
44776
|
-
}
|
|
44777
|
-
|
|
44778
|
-
export declare interface JsonApiAutomationInRelationshipsRecipients {
|
|
44779
|
-
/**
|
|
44780
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
44781
|
-
*/
|
|
44782
|
-
data: Array<JsonApiUserLinkage>;
|
|
44783
|
-
}
|
|
44784
|
-
|
|
44785
|
-
export declare const JsonApiAutomationInTypeEnum: {
|
|
44786
|
-
readonly AUTOMATION: "automation";
|
|
44787
|
-
};
|
|
44788
|
-
|
|
44789
|
-
export declare type JsonApiAutomationInTypeEnum = (typeof JsonApiAutomationInTypeEnum)[keyof typeof JsonApiAutomationInTypeEnum];
|
|
44790
|
-
|
|
44791
|
-
/**
|
|
44792
|
-
* The \\\"type\\\" and \\\"id\\\" to non-empty members.
|
|
44793
|
-
*/
|
|
44794
|
-
export declare interface JsonApiAutomationLinkage {
|
|
44795
|
-
id: string;
|
|
44796
|
-
type: JsonApiAutomationLinkageTypeEnum;
|
|
44797
|
-
}
|
|
44798
|
-
|
|
44799
|
-
export declare const JsonApiAutomationLinkageTypeEnum: {
|
|
44800
|
-
readonly AUTOMATION: "automation";
|
|
44801
|
-
};
|
|
44802
|
-
|
|
44803
|
-
export declare type JsonApiAutomationLinkageTypeEnum = (typeof JsonApiAutomationLinkageTypeEnum)[keyof typeof JsonApiAutomationLinkageTypeEnum];
|
|
44804
|
-
|
|
44805
|
-
/**
|
|
44806
|
-
* JSON:API representation of automation entity.
|
|
44807
|
-
*/
|
|
44808
|
-
export declare interface JsonApiAutomationOut {
|
|
44809
|
-
/**
|
|
44810
|
-
* Object type
|
|
44811
|
-
*/
|
|
44812
|
-
type: JsonApiAutomationOutTypeEnum;
|
|
44813
|
-
/**
|
|
44814
|
-
* API identifier of an object
|
|
44815
|
-
*/
|
|
44816
|
-
id: string;
|
|
44817
|
-
meta?: JsonApiVisualizationObjectOutMeta;
|
|
44818
|
-
attributes?: JsonApiAutomationOutAttributes;
|
|
44819
|
-
relationships?: JsonApiAutomationOutRelationships;
|
|
44820
|
-
}
|
|
44821
|
-
|
|
44822
|
-
export declare interface JsonApiAutomationOutAttributes {
|
|
44823
|
-
title?: string;
|
|
44824
|
-
description?: string;
|
|
44825
|
-
tags?: Array<string>;
|
|
44826
|
-
areRelationsValid?: boolean;
|
|
44827
|
-
/**
|
|
44828
|
-
* Additional details to be included in the automated message.
|
|
44829
|
-
*/
|
|
44830
|
-
details?: object;
|
|
44831
|
-
metadata?: JsonApiAutomationInAttributesMetadata | null;
|
|
44832
|
-
/**
|
|
44833
|
-
* Current state of the automation.
|
|
44834
|
-
*/
|
|
44835
|
-
state?: JsonApiAutomationOutAttributesStateEnum;
|
|
44836
|
-
/**
|
|
44837
|
-
* Specify automation evaluation mode.
|
|
44838
|
-
*/
|
|
44839
|
-
evaluationMode?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
44840
|
-
schedule?: JsonApiAutomationInAttributesSchedule;
|
|
44841
|
-
alert?: JsonApiAutomationInAttributesAlert;
|
|
44842
|
-
tabularExports?: Array<JsonApiAutomationInAttributesTabularExportsInner>;
|
|
44843
|
-
visualExports?: Array<JsonApiAutomationInAttributesVisualExportsInner>;
|
|
44844
|
-
imageExports?: Array<JsonApiAutomationInAttributesImageExportsInner>;
|
|
44845
|
-
rawExports?: Array<JsonApiAutomationInAttributesRawExportsInner>;
|
|
44846
|
-
slidesExports?: Array<JsonApiAutomationInAttributesSlidesExportsInner>;
|
|
44847
|
-
dashboardTabularExports?: Array<JsonApiAutomationInAttributesDashboardTabularExportsInner>;
|
|
44848
|
-
/**
|
|
44849
|
-
* External recipients of the automation action results.
|
|
44850
|
-
*/
|
|
44851
|
-
externalRecipients?: Array<JsonApiAutomationInAttributesExternalRecipientsInner>;
|
|
44852
|
-
createdAt?: string;
|
|
44853
|
-
modifiedAt?: string;
|
|
44854
|
-
}
|
|
44855
|
-
|
|
44856
|
-
export declare const JsonApiAutomationOutAttributesEvaluationModeEnum: {
|
|
44857
|
-
readonly SHARED: "SHARED";
|
|
44858
|
-
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
44859
|
-
};
|
|
44860
|
-
|
|
44861
|
-
export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = (typeof JsonApiAutomationOutAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationOutAttributesEvaluationModeEnum];
|
|
44862
|
-
|
|
44863
|
-
export declare const JsonApiAutomationOutAttributesStateEnum: {
|
|
44864
|
-
readonly ACTIVE: "ACTIVE";
|
|
44865
|
-
readonly PAUSED: "PAUSED";
|
|
44866
|
-
};
|
|
44867
|
-
|
|
44868
|
-
export declare type JsonApiAutomationOutAttributesStateEnum = (typeof JsonApiAutomationOutAttributesStateEnum)[keyof typeof JsonApiAutomationOutAttributesStateEnum];
|
|
44869
|
-
|
|
44870
45220
|
export declare interface JsonApiAutomationOutDocument {
|
|
44871
45221
|
data: JsonApiAutomationOut;
|
|
44872
45222
|
links?: ObjectLinks;
|
|
@@ -44887,7 +45237,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
44887
45237
|
export declare interface JsonApiAutomationOutList {
|
|
44888
45238
|
data: Array<JsonApiAutomationOutWithLinks>;
|
|
44889
45239
|
links?: ListLinks;
|
|
44890
|
-
meta?:
|
|
45240
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
44891
45241
|
/**
|
|
44892
45242
|
* Included resources
|
|
44893
45243
|
*/
|
|
@@ -44895,12 +45245,12 @@ export declare interface JsonApiAutomationOutList {
|
|
|
44895
45245
|
}
|
|
44896
45246
|
|
|
44897
45247
|
export declare interface JsonApiAutomationOutRelationships {
|
|
44898
|
-
notificationChannel?:
|
|
44899
|
-
analyticalDashboard?:
|
|
45248
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
45249
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
44900
45250
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44901
45251
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
44902
|
-
exportDefinitions?:
|
|
44903
|
-
recipients?:
|
|
45252
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
45253
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
44904
45254
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
44905
45255
|
}
|
|
44906
45256
|
|
|
@@ -44911,6 +45261,24 @@ export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
|
44911
45261
|
data: Array<JsonApiAutomationResultLinkage>;
|
|
44912
45262
|
}
|
|
44913
45263
|
|
|
45264
|
+
export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
45265
|
+
/**
|
|
45266
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45267
|
+
*/
|
|
45268
|
+
data: Array<JsonApiExportDefinitionLinkage>;
|
|
45269
|
+
}
|
|
45270
|
+
|
|
45271
|
+
export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
45272
|
+
data: JsonApiNotificationChannelLinkage | null;
|
|
45273
|
+
}
|
|
45274
|
+
|
|
45275
|
+
export declare interface JsonApiAutomationOutRelationshipsRecipients {
|
|
45276
|
+
/**
|
|
45277
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
45278
|
+
*/
|
|
45279
|
+
data: Array<JsonApiUserLinkage>;
|
|
45280
|
+
}
|
|
45281
|
+
|
|
44914
45282
|
export declare const JsonApiAutomationOutTypeEnum: {
|
|
44915
45283
|
readonly AUTOMATION: "automation";
|
|
44916
45284
|
};
|
|
@@ -44926,7 +45294,7 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
44926
45294
|
* API identifier of an object
|
|
44927
45295
|
*/
|
|
44928
45296
|
id: string;
|
|
44929
|
-
meta?:
|
|
45297
|
+
meta?: JsonApiDatasetOutMeta;
|
|
44930
45298
|
attributes?: JsonApiAutomationOutAttributes;
|
|
44931
45299
|
relationships?: JsonApiAutomationOutRelationships;
|
|
44932
45300
|
links?: ObjectLinks;
|
|
@@ -44950,14 +45318,67 @@ export declare interface JsonApiAutomationPatch {
|
|
|
44950
45318
|
* API identifier of an object
|
|
44951
45319
|
*/
|
|
44952
45320
|
id: string;
|
|
44953
|
-
attributes?:
|
|
44954
|
-
relationships?:
|
|
45321
|
+
attributes?: JsonApiAutomationPatchAttributes;
|
|
45322
|
+
relationships?: JsonApiAutomationPatchRelationships;
|
|
45323
|
+
}
|
|
45324
|
+
|
|
45325
|
+
export declare interface JsonApiAutomationPatchAttributes {
|
|
45326
|
+
title?: string;
|
|
45327
|
+
description?: string;
|
|
45328
|
+
tags?: Array<string>;
|
|
45329
|
+
areRelationsValid?: boolean;
|
|
45330
|
+
/**
|
|
45331
|
+
* Additional details to be included in the automated message.
|
|
45332
|
+
*/
|
|
45333
|
+
details?: object;
|
|
45334
|
+
metadata?: JsonApiAutomationOutAttributesMetadata | null;
|
|
45335
|
+
/**
|
|
45336
|
+
* Current state of the automation.
|
|
45337
|
+
*/
|
|
45338
|
+
state?: JsonApiAutomationPatchAttributesStateEnum;
|
|
45339
|
+
/**
|
|
45340
|
+
* Specify automation evaluation mode.
|
|
45341
|
+
*/
|
|
45342
|
+
evaluationMode?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
45343
|
+
schedule?: JsonApiAutomationOutAttributesSchedule;
|
|
45344
|
+
alert?: JsonApiAutomationOutAttributesAlert;
|
|
45345
|
+
tabularExports?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
45346
|
+
visualExports?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
45347
|
+
imageExports?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
45348
|
+
rawExports?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
45349
|
+
slidesExports?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
45350
|
+
dashboardTabularExports?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
45351
|
+
/**
|
|
45352
|
+
* External recipients of the automation action results.
|
|
45353
|
+
*/
|
|
45354
|
+
externalRecipients?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
44955
45355
|
}
|
|
44956
45356
|
|
|
45357
|
+
export declare const JsonApiAutomationPatchAttributesEvaluationModeEnum: {
|
|
45358
|
+
readonly SHARED: "SHARED";
|
|
45359
|
+
readonly PER_RECIPIENT: "PER_RECIPIENT";
|
|
45360
|
+
};
|
|
45361
|
+
|
|
45362
|
+
export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = (typeof JsonApiAutomationPatchAttributesEvaluationModeEnum)[keyof typeof JsonApiAutomationPatchAttributesEvaluationModeEnum];
|
|
45363
|
+
|
|
45364
|
+
export declare const JsonApiAutomationPatchAttributesStateEnum: {
|
|
45365
|
+
readonly ACTIVE: "ACTIVE";
|
|
45366
|
+
readonly PAUSED: "PAUSED";
|
|
45367
|
+
};
|
|
45368
|
+
|
|
45369
|
+
export declare type JsonApiAutomationPatchAttributesStateEnum = (typeof JsonApiAutomationPatchAttributesStateEnum)[keyof typeof JsonApiAutomationPatchAttributesStateEnum];
|
|
45370
|
+
|
|
44957
45371
|
export declare interface JsonApiAutomationPatchDocument {
|
|
44958
45372
|
data: JsonApiAutomationPatch;
|
|
44959
45373
|
}
|
|
44960
45374
|
|
|
45375
|
+
export declare interface JsonApiAutomationPatchRelationships {
|
|
45376
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
45377
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
45378
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
45379
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
45380
|
+
}
|
|
45381
|
+
|
|
44961
45382
|
export declare const JsonApiAutomationPatchTypeEnum: {
|
|
44962
45383
|
readonly AUTOMATION: "automation";
|
|
44963
45384
|
};
|
|
@@ -45103,11 +45524,7 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
45103
45524
|
export declare interface JsonApiColorPaletteOutList {
|
|
45104
45525
|
data: Array<JsonApiColorPaletteOutWithLinks>;
|
|
45105
45526
|
links?: ListLinks;
|
|
45106
|
-
meta?:
|
|
45107
|
-
}
|
|
45108
|
-
|
|
45109
|
-
export declare interface JsonApiColorPaletteOutListMeta {
|
|
45110
|
-
page?: PageMetadata;
|
|
45527
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45111
45528
|
}
|
|
45112
45529
|
|
|
45113
45530
|
export declare const JsonApiColorPaletteOutTypeEnum: {
|
|
@@ -45180,7 +45597,15 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
45180
45597
|
* API identifier of an object
|
|
45181
45598
|
*/
|
|
45182
45599
|
id: string;
|
|
45183
|
-
attributes?:
|
|
45600
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
45601
|
+
}
|
|
45602
|
+
|
|
45603
|
+
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
45604
|
+
lastRotation?: string;
|
|
45605
|
+
/**
|
|
45606
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
45607
|
+
*/
|
|
45608
|
+
rotationInterval?: string;
|
|
45184
45609
|
}
|
|
45185
45610
|
|
|
45186
45611
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -45205,15 +45630,7 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
45205
45630
|
* API identifier of an object
|
|
45206
45631
|
*/
|
|
45207
45632
|
id: string;
|
|
45208
|
-
attributes?:
|
|
45209
|
-
}
|
|
45210
|
-
|
|
45211
|
-
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
45212
|
-
lastRotation?: string;
|
|
45213
|
-
/**
|
|
45214
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
45215
|
-
*/
|
|
45216
|
-
rotationInterval?: string;
|
|
45633
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
45217
45634
|
}
|
|
45218
45635
|
|
|
45219
45636
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -45239,7 +45656,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
45239
45656
|
* API identifier of an object
|
|
45240
45657
|
*/
|
|
45241
45658
|
id: string;
|
|
45242
|
-
attributes?:
|
|
45659
|
+
attributes?: JsonApiCookieSecurityConfigurationInAttributes;
|
|
45243
45660
|
}
|
|
45244
45661
|
|
|
45245
45662
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -45307,7 +45724,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
45307
45724
|
export declare interface JsonApiCspDirectiveOutList {
|
|
45308
45725
|
data: Array<JsonApiCspDirectiveOutWithLinks>;
|
|
45309
45726
|
links?: ListLinks;
|
|
45310
|
-
meta?:
|
|
45727
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45311
45728
|
}
|
|
45312
45729
|
|
|
45313
45730
|
export declare const JsonApiCspDirectiveOutTypeEnum: {
|
|
@@ -45376,15 +45793,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
45376
45793
|
* API identifier of an object
|
|
45377
45794
|
*/
|
|
45378
45795
|
id: string;
|
|
45379
|
-
attributes:
|
|
45380
|
-
}
|
|
45381
|
-
|
|
45382
|
-
export declare interface JsonApiCustomApplicationSettingInAttributes {
|
|
45383
|
-
applicationName: string;
|
|
45384
|
-
/**
|
|
45385
|
-
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45386
|
-
*/
|
|
45387
|
-
content: object;
|
|
45796
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
45388
45797
|
}
|
|
45389
45798
|
|
|
45390
45799
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -45409,8 +45818,16 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
45409
45818
|
* API identifier of an object
|
|
45410
45819
|
*/
|
|
45411
45820
|
id: string;
|
|
45412
|
-
meta?:
|
|
45413
|
-
attributes:
|
|
45821
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45822
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
45823
|
+
}
|
|
45824
|
+
|
|
45825
|
+
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
45826
|
+
applicationName: string;
|
|
45827
|
+
/**
|
|
45828
|
+
* Free-form JSON content. Maximum supported length is 15000 characters.
|
|
45829
|
+
*/
|
|
45830
|
+
content: object;
|
|
45414
45831
|
}
|
|
45415
45832
|
|
|
45416
45833
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -45424,7 +45841,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
45424
45841
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
45425
45842
|
data: Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
45426
45843
|
links?: ListLinks;
|
|
45427
|
-
meta?:
|
|
45844
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45428
45845
|
}
|
|
45429
45846
|
|
|
45430
45847
|
export declare const JsonApiCustomApplicationSettingOutTypeEnum: {
|
|
@@ -45442,8 +45859,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
45442
45859
|
* API identifier of an object
|
|
45443
45860
|
*/
|
|
45444
45861
|
id: string;
|
|
45445
|
-
meta?:
|
|
45446
|
-
attributes:
|
|
45862
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45863
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
45447
45864
|
links?: ObjectLinks;
|
|
45448
45865
|
}
|
|
45449
45866
|
|
|
@@ -45498,7 +45915,7 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
45498
45915
|
* API identifier of an object
|
|
45499
45916
|
*/
|
|
45500
45917
|
id?: string;
|
|
45501
|
-
attributes:
|
|
45918
|
+
attributes: JsonApiCustomApplicationSettingOutAttributes;
|
|
45502
45919
|
}
|
|
45503
45920
|
|
|
45504
45921
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -45523,18 +45940,7 @@ export declare interface JsonApiDashboardPluginIn {
|
|
|
45523
45940
|
* API identifier of an object
|
|
45524
45941
|
*/
|
|
45525
45942
|
id: string;
|
|
45526
|
-
attributes?:
|
|
45527
|
-
}
|
|
45528
|
-
|
|
45529
|
-
export declare interface JsonApiDashboardPluginInAttributes {
|
|
45530
|
-
title?: string;
|
|
45531
|
-
description?: string;
|
|
45532
|
-
tags?: Array<string>;
|
|
45533
|
-
areRelationsValid?: boolean;
|
|
45534
|
-
/**
|
|
45535
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
45536
|
-
*/
|
|
45537
|
-
content?: object;
|
|
45943
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
45538
45944
|
}
|
|
45539
45945
|
|
|
45540
45946
|
export declare interface JsonApiDashboardPluginInDocument {
|
|
@@ -45573,7 +45979,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
45573
45979
|
* API identifier of an object
|
|
45574
45980
|
*/
|
|
45575
45981
|
id: string;
|
|
45576
|
-
meta?:
|
|
45982
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45577
45983
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45578
45984
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45579
45985
|
}
|
|
@@ -45606,7 +46012,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
45606
46012
|
export declare interface JsonApiDashboardPluginOutList {
|
|
45607
46013
|
data: Array<JsonApiDashboardPluginOutWithLinks>;
|
|
45608
46014
|
links?: ListLinks;
|
|
45609
|
-
meta?:
|
|
46015
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45610
46016
|
/**
|
|
45611
46017
|
* Included resources
|
|
45612
46018
|
*/
|
|
@@ -45633,7 +46039,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
45633
46039
|
* API identifier of an object
|
|
45634
46040
|
*/
|
|
45635
46041
|
id: string;
|
|
45636
|
-
meta?:
|
|
46042
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45637
46043
|
attributes?: JsonApiDashboardPluginOutAttributes;
|
|
45638
46044
|
relationships?: JsonApiDashboardPluginOutRelationships;
|
|
45639
46045
|
links?: ObjectLinks;
|
|
@@ -45657,7 +46063,18 @@ export declare interface JsonApiDashboardPluginPatch {
|
|
|
45657
46063
|
* API identifier of an object
|
|
45658
46064
|
*/
|
|
45659
46065
|
id: string;
|
|
45660
|
-
attributes?:
|
|
46066
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
46067
|
+
}
|
|
46068
|
+
|
|
46069
|
+
export declare interface JsonApiDashboardPluginPatchAttributes {
|
|
46070
|
+
title?: string;
|
|
46071
|
+
description?: string;
|
|
46072
|
+
tags?: Array<string>;
|
|
46073
|
+
areRelationsValid?: boolean;
|
|
46074
|
+
/**
|
|
46075
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
46076
|
+
*/
|
|
46077
|
+
content?: object;
|
|
45661
46078
|
}
|
|
45662
46079
|
|
|
45663
46080
|
export declare interface JsonApiDashboardPluginPatchDocument {
|
|
@@ -45682,7 +46099,7 @@ export declare interface JsonApiDashboardPluginPostOptionalId {
|
|
|
45682
46099
|
* API identifier of an object
|
|
45683
46100
|
*/
|
|
45684
46101
|
id?: string;
|
|
45685
|
-
attributes?:
|
|
46102
|
+
attributes?: JsonApiDashboardPluginPatchAttributes;
|
|
45686
46103
|
}
|
|
45687
46104
|
|
|
45688
46105
|
export declare interface JsonApiDashboardPluginPostOptionalIdDocument {
|
|
@@ -45721,7 +46138,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
45721
46138
|
* API identifier of an object
|
|
45722
46139
|
*/
|
|
45723
46140
|
id: string;
|
|
45724
|
-
meta?:
|
|
46141
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45725
46142
|
attributes: JsonApiDatasetOutAttributes;
|
|
45726
46143
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45727
46144
|
}
|
|
@@ -45847,18 +46264,40 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
45847
46264
|
export declare interface JsonApiDatasetOutList {
|
|
45848
46265
|
data: Array<JsonApiDatasetOutWithLinks>;
|
|
45849
46266
|
links?: ListLinks;
|
|
45850
|
-
meta?:
|
|
46267
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45851
46268
|
/**
|
|
45852
46269
|
* Included resources
|
|
45853
46270
|
*/
|
|
45854
46271
|
included?: Array<JsonApiDatasetOutIncludes>;
|
|
45855
46272
|
}
|
|
45856
46273
|
|
|
46274
|
+
export declare interface JsonApiDatasetOutMeta {
|
|
46275
|
+
origin?: JsonApiDatasetOutMetaOrigin;
|
|
46276
|
+
}
|
|
46277
|
+
|
|
46278
|
+
export declare interface JsonApiDatasetOutMetaOrigin {
|
|
46279
|
+
/**
|
|
46280
|
+
* defines type of the origin of the entity
|
|
46281
|
+
*/
|
|
46282
|
+
originType: JsonApiDatasetOutMetaOriginOriginTypeEnum;
|
|
46283
|
+
/**
|
|
46284
|
+
* defines id of the workspace where the entity comes from
|
|
46285
|
+
*/
|
|
46286
|
+
originId: string;
|
|
46287
|
+
}
|
|
46288
|
+
|
|
46289
|
+
export declare const JsonApiDatasetOutMetaOriginOriginTypeEnum: {
|
|
46290
|
+
readonly NATIVE: "NATIVE";
|
|
46291
|
+
readonly PARENT: "PARENT";
|
|
46292
|
+
};
|
|
46293
|
+
|
|
46294
|
+
export declare type JsonApiDatasetOutMetaOriginOriginTypeEnum = (typeof JsonApiDatasetOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiDatasetOutMetaOriginOriginTypeEnum];
|
|
46295
|
+
|
|
45857
46296
|
export declare interface JsonApiDatasetOutRelationships {
|
|
45858
|
-
attributes?:
|
|
45859
|
-
facts?:
|
|
46297
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
46298
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
45860
46299
|
aggregatedFacts?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
45861
|
-
references?:
|
|
46300
|
+
references?: JsonApiDatasetOutRelationshipsReferences;
|
|
45862
46301
|
workspaceDataFilters?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
45863
46302
|
}
|
|
45864
46303
|
|
|
@@ -45869,6 +46308,27 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
45869
46308
|
data: Array<JsonApiAggregatedFactLinkage>;
|
|
45870
46309
|
}
|
|
45871
46310
|
|
|
46311
|
+
export declare interface JsonApiDatasetOutRelationshipsAttributes {
|
|
46312
|
+
/**
|
|
46313
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46314
|
+
*/
|
|
46315
|
+
data: Array<JsonApiAttributeLinkage>;
|
|
46316
|
+
}
|
|
46317
|
+
|
|
46318
|
+
export declare interface JsonApiDatasetOutRelationshipsFacts {
|
|
46319
|
+
/**
|
|
46320
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46321
|
+
*/
|
|
46322
|
+
data: Array<JsonApiFactLinkage>;
|
|
46323
|
+
}
|
|
46324
|
+
|
|
46325
|
+
export declare interface JsonApiDatasetOutRelationshipsReferences {
|
|
46326
|
+
/**
|
|
46327
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
46328
|
+
*/
|
|
46329
|
+
data: Array<JsonApiDatasetLinkage>;
|
|
46330
|
+
}
|
|
46331
|
+
|
|
45872
46332
|
export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
45873
46333
|
/**
|
|
45874
46334
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -45891,7 +46351,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
45891
46351
|
* API identifier of an object
|
|
45892
46352
|
*/
|
|
45893
46353
|
id: string;
|
|
45894
|
-
meta?:
|
|
46354
|
+
meta?: JsonApiDatasetOutMeta;
|
|
45895
46355
|
attributes: JsonApiDatasetOutAttributes;
|
|
45896
46356
|
relationships?: JsonApiDatasetOutRelationships;
|
|
45897
46357
|
links?: ObjectLinks;
|
|
@@ -45967,7 +46427,7 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
45967
46427
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
45968
46428
|
data: Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
45969
46429
|
links?: ListLinks;
|
|
45970
|
-
meta?:
|
|
46430
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
45971
46431
|
}
|
|
45972
46432
|
|
|
45973
46433
|
export declare const JsonApiDataSourceIdentifierOutTypeEnum: {
|
|
@@ -46237,7 +46697,7 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
46237
46697
|
export declare interface JsonApiDataSourceOutList {
|
|
46238
46698
|
data: Array<JsonApiDataSourceOutWithLinks>;
|
|
46239
46699
|
links?: ListLinks;
|
|
46240
|
-
meta?:
|
|
46700
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46241
46701
|
}
|
|
46242
46702
|
|
|
46243
46703
|
export declare interface JsonApiDataSourceOutMeta {
|
|
@@ -46429,7 +46889,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
46429
46889
|
export declare interface JsonApiEntitlementOutList {
|
|
46430
46890
|
data: Array<JsonApiEntitlementOutWithLinks>;
|
|
46431
46891
|
links?: ListLinks;
|
|
46432
|
-
meta?:
|
|
46892
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46433
46893
|
}
|
|
46434
46894
|
|
|
46435
46895
|
export declare const JsonApiEntitlementOutTypeEnum: {
|
|
@@ -46469,27 +46929,14 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
46469
46929
|
* API identifier of an object
|
|
46470
46930
|
*/
|
|
46471
46931
|
id: string;
|
|
46472
|
-
attributes?:
|
|
46473
|
-
relationships?:
|
|
46474
|
-
}
|
|
46475
|
-
|
|
46476
|
-
export declare interface JsonApiExportDefinitionInAttributes {
|
|
46477
|
-
title?: string;
|
|
46478
|
-
description?: string;
|
|
46479
|
-
tags?: Array<string>;
|
|
46480
|
-
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
46481
|
-
areRelationsValid?: boolean;
|
|
46932
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
46933
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
46482
46934
|
}
|
|
46483
46935
|
|
|
46484
46936
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
46485
46937
|
data: JsonApiExportDefinitionIn;
|
|
46486
46938
|
}
|
|
46487
46939
|
|
|
46488
|
-
export declare interface JsonApiExportDefinitionInRelationships {
|
|
46489
|
-
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46490
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
46491
|
-
}
|
|
46492
|
-
|
|
46493
46940
|
export declare const JsonApiExportDefinitionInTypeEnum: {
|
|
46494
46941
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
46495
46942
|
};
|
|
@@ -46522,7 +46969,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
46522
46969
|
* API identifier of an object
|
|
46523
46970
|
*/
|
|
46524
46971
|
id: string;
|
|
46525
|
-
meta?:
|
|
46972
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46526
46973
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46527
46974
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46528
46975
|
}
|
|
@@ -46563,7 +47010,7 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
46563
47010
|
export declare interface JsonApiExportDefinitionOutList {
|
|
46564
47011
|
data: Array<JsonApiExportDefinitionOutWithLinks>;
|
|
46565
47012
|
links?: ListLinks;
|
|
46566
|
-
meta?:
|
|
47013
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46567
47014
|
/**
|
|
46568
47015
|
* Included resources
|
|
46569
47016
|
*/
|
|
@@ -46572,12 +47019,16 @@ export declare interface JsonApiExportDefinitionOutList {
|
|
|
46572
47019
|
|
|
46573
47020
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
46574
47021
|
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
46575
|
-
analyticalDashboard?:
|
|
47022
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
46576
47023
|
automation?: JsonApiExportDefinitionOutRelationshipsAutomation;
|
|
46577
47024
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46578
47025
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
46579
47026
|
}
|
|
46580
47027
|
|
|
47028
|
+
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
47029
|
+
data: JsonApiAnalyticalDashboardLinkage | null;
|
|
47030
|
+
}
|
|
47031
|
+
|
|
46581
47032
|
export declare interface JsonApiExportDefinitionOutRelationshipsAutomation {
|
|
46582
47033
|
data: JsonApiAutomationLinkage | null;
|
|
46583
47034
|
}
|
|
@@ -46601,7 +47052,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
46601
47052
|
* API identifier of an object
|
|
46602
47053
|
*/
|
|
46603
47054
|
id: string;
|
|
46604
|
-
meta?:
|
|
47055
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46605
47056
|
attributes?: JsonApiExportDefinitionOutAttributes;
|
|
46606
47057
|
relationships?: JsonApiExportDefinitionOutRelationships;
|
|
46607
47058
|
links?: ObjectLinks;
|
|
@@ -46625,14 +47076,27 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
46625
47076
|
* API identifier of an object
|
|
46626
47077
|
*/
|
|
46627
47078
|
id: string;
|
|
46628
|
-
attributes?:
|
|
46629
|
-
relationships?:
|
|
47079
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47080
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
47081
|
+
}
|
|
47082
|
+
|
|
47083
|
+
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
47084
|
+
title?: string;
|
|
47085
|
+
description?: string;
|
|
47086
|
+
tags?: Array<string>;
|
|
47087
|
+
requestPayload?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
47088
|
+
areRelationsValid?: boolean;
|
|
46630
47089
|
}
|
|
46631
47090
|
|
|
46632
47091
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
46633
47092
|
data: JsonApiExportDefinitionPatch;
|
|
46634
47093
|
}
|
|
46635
47094
|
|
|
47095
|
+
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
47096
|
+
visualizationObject?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
47097
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
47098
|
+
}
|
|
47099
|
+
|
|
46636
47100
|
export declare const JsonApiExportDefinitionPatchTypeEnum: {
|
|
46637
47101
|
readonly EXPORT_DEFINITION: "exportDefinition";
|
|
46638
47102
|
};
|
|
@@ -46651,8 +47115,8 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
46651
47115
|
* API identifier of an object
|
|
46652
47116
|
*/
|
|
46653
47117
|
id?: string;
|
|
46654
|
-
attributes?:
|
|
46655
|
-
relationships?:
|
|
47118
|
+
attributes?: JsonApiExportDefinitionPatchAttributes;
|
|
47119
|
+
relationships?: JsonApiExportDefinitionPatchRelationships;
|
|
46656
47120
|
}
|
|
46657
47121
|
|
|
46658
47122
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
@@ -46716,7 +47180,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
46716
47180
|
export declare interface JsonApiExportTemplateOutList {
|
|
46717
47181
|
data: Array<JsonApiExportTemplateOutWithLinks>;
|
|
46718
47182
|
links?: ListLinks;
|
|
46719
|
-
meta?:
|
|
47183
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46720
47184
|
}
|
|
46721
47185
|
|
|
46722
47186
|
export declare const JsonApiExportTemplateOutTypeEnum: {
|
|
@@ -46877,7 +47341,7 @@ export declare interface JsonApiFactOut {
|
|
|
46877
47341
|
* API identifier of an object
|
|
46878
47342
|
*/
|
|
46879
47343
|
id: string;
|
|
46880
|
-
meta?:
|
|
47344
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46881
47345
|
attributes?: JsonApiFactOutAttributes;
|
|
46882
47346
|
relationships?: JsonApiFactOutRelationships;
|
|
46883
47347
|
}
|
|
@@ -46889,6 +47353,7 @@ export declare interface JsonApiFactOutAttributes {
|
|
|
46889
47353
|
sourceColumn?: string;
|
|
46890
47354
|
sourceColumnDataType?: JsonApiFactOutAttributesSourceColumnDataTypeEnum;
|
|
46891
47355
|
areRelationsValid?: boolean;
|
|
47356
|
+
isHidden?: boolean;
|
|
46892
47357
|
}
|
|
46893
47358
|
|
|
46894
47359
|
export declare const JsonApiFactOutAttributesSourceColumnDataTypeEnum: {
|
|
@@ -46918,7 +47383,7 @@ export declare interface JsonApiFactOutDocument {
|
|
|
46918
47383
|
export declare interface JsonApiFactOutList {
|
|
46919
47384
|
data: Array<JsonApiFactOutWithLinks>;
|
|
46920
47385
|
links?: ListLinks;
|
|
46921
|
-
meta?:
|
|
47386
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
46922
47387
|
/**
|
|
46923
47388
|
* Included resources
|
|
46924
47389
|
*/
|
|
@@ -46926,7 +47391,11 @@ export declare interface JsonApiFactOutList {
|
|
|
46926
47391
|
}
|
|
46927
47392
|
|
|
46928
47393
|
export declare interface JsonApiFactOutRelationships {
|
|
46929
|
-
dataset?:
|
|
47394
|
+
dataset?: JsonApiFactOutRelationshipsDataset;
|
|
47395
|
+
}
|
|
47396
|
+
|
|
47397
|
+
export declare interface JsonApiFactOutRelationshipsDataset {
|
|
47398
|
+
data: JsonApiDatasetLinkage | null;
|
|
46930
47399
|
}
|
|
46931
47400
|
|
|
46932
47401
|
export declare const JsonApiFactOutTypeEnum: {
|
|
@@ -46944,7 +47413,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
46944
47413
|
* API identifier of an object
|
|
46945
47414
|
*/
|
|
46946
47415
|
id: string;
|
|
46947
|
-
meta?:
|
|
47416
|
+
meta?: JsonApiDatasetOutMeta;
|
|
46948
47417
|
attributes?: JsonApiFactOutAttributes;
|
|
46949
47418
|
relationships?: JsonApiFactOutRelationships;
|
|
46950
47419
|
links?: ObjectLinks;
|
|
@@ -46968,7 +47437,7 @@ export declare interface JsonApiFilterContextIn {
|
|
|
46968
47437
|
* API identifier of an object
|
|
46969
47438
|
*/
|
|
46970
47439
|
id: string;
|
|
46971
|
-
attributes:
|
|
47440
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
46972
47441
|
}
|
|
46973
47442
|
|
|
46974
47443
|
export declare interface JsonApiFilterContextInDocument {
|
|
@@ -47007,11 +47476,22 @@ export declare interface JsonApiFilterContextOut {
|
|
|
47007
47476
|
* API identifier of an object
|
|
47008
47477
|
*/
|
|
47009
47478
|
id: string;
|
|
47010
|
-
meta?:
|
|
47011
|
-
attributes:
|
|
47479
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47480
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
47012
47481
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
47013
47482
|
}
|
|
47014
47483
|
|
|
47484
|
+
export declare interface JsonApiFilterContextOutAttributes {
|
|
47485
|
+
title?: string;
|
|
47486
|
+
description?: string;
|
|
47487
|
+
tags?: Array<string>;
|
|
47488
|
+
areRelationsValid?: boolean;
|
|
47489
|
+
/**
|
|
47490
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
47491
|
+
*/
|
|
47492
|
+
content: object;
|
|
47493
|
+
}
|
|
47494
|
+
|
|
47015
47495
|
export declare interface JsonApiFilterContextOutDocument {
|
|
47016
47496
|
data: JsonApiFilterContextOut;
|
|
47017
47497
|
links?: ObjectLinks;
|
|
@@ -47032,7 +47512,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
47032
47512
|
export declare interface JsonApiFilterContextOutList {
|
|
47033
47513
|
data: Array<JsonApiFilterContextOutWithLinks>;
|
|
47034
47514
|
links?: ListLinks;
|
|
47035
|
-
meta?:
|
|
47515
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47036
47516
|
/**
|
|
47037
47517
|
* Included resources
|
|
47038
47518
|
*/
|
|
@@ -47040,8 +47520,8 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
47040
47520
|
}
|
|
47041
47521
|
|
|
47042
47522
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
47043
|
-
attributes?:
|
|
47044
|
-
datasets?:
|
|
47523
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
47524
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
47045
47525
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
47046
47526
|
}
|
|
47047
47527
|
|
|
@@ -47060,8 +47540,8 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
47060
47540
|
* API identifier of an object
|
|
47061
47541
|
*/
|
|
47062
47542
|
id: string;
|
|
47063
|
-
meta?:
|
|
47064
|
-
attributes:
|
|
47543
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47544
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
47065
47545
|
relationships?: JsonApiFilterContextOutRelationships;
|
|
47066
47546
|
links?: ObjectLinks;
|
|
47067
47547
|
}
|
|
@@ -47109,7 +47589,7 @@ export declare interface JsonApiFilterContextPostOptionalId {
|
|
|
47109
47589
|
* API identifier of an object
|
|
47110
47590
|
*/
|
|
47111
47591
|
id?: string;
|
|
47112
|
-
attributes:
|
|
47592
|
+
attributes: JsonApiFilterContextOutAttributes;
|
|
47113
47593
|
}
|
|
47114
47594
|
|
|
47115
47595
|
export declare interface JsonApiFilterContextPostOptionalIdDocument {
|
|
@@ -47134,34 +47614,14 @@ export declare interface JsonApiFilterViewIn {
|
|
|
47134
47614
|
* API identifier of an object
|
|
47135
47615
|
*/
|
|
47136
47616
|
id: string;
|
|
47137
|
-
attributes:
|
|
47138
|
-
relationships?:
|
|
47139
|
-
}
|
|
47140
|
-
|
|
47141
|
-
export declare interface JsonApiFilterViewInAttributes {
|
|
47142
|
-
title: string;
|
|
47143
|
-
description?: string;
|
|
47144
|
-
tags?: Array<string>;
|
|
47145
|
-
areRelationsValid?: boolean;
|
|
47146
|
-
/**
|
|
47147
|
-
* Indicator whether the filter view should by applied by default.
|
|
47148
|
-
*/
|
|
47149
|
-
isDefault?: boolean;
|
|
47150
|
-
/**
|
|
47151
|
-
* The respective filter context.
|
|
47152
|
-
*/
|
|
47153
|
-
content: object;
|
|
47617
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
47618
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
47154
47619
|
}
|
|
47155
47620
|
|
|
47156
47621
|
export declare interface JsonApiFilterViewInDocument {
|
|
47157
47622
|
data: JsonApiFilterViewIn;
|
|
47158
47623
|
}
|
|
47159
47624
|
|
|
47160
|
-
export declare interface JsonApiFilterViewInRelationships {
|
|
47161
|
-
analyticalDashboard?: JsonApiAutomationInRelationshipsAnalyticalDashboard;
|
|
47162
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
47163
|
-
}
|
|
47164
|
-
|
|
47165
47625
|
export declare const JsonApiFilterViewInTypeEnum: {
|
|
47166
47626
|
readonly FILTER_VIEW: "filterView";
|
|
47167
47627
|
};
|
|
@@ -47180,8 +47640,23 @@ export declare interface JsonApiFilterViewOut {
|
|
|
47180
47640
|
* API identifier of an object
|
|
47181
47641
|
*/
|
|
47182
47642
|
id: string;
|
|
47183
|
-
attributes:
|
|
47184
|
-
relationships?:
|
|
47643
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
47644
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
47645
|
+
}
|
|
47646
|
+
|
|
47647
|
+
export declare interface JsonApiFilterViewOutAttributes {
|
|
47648
|
+
title: string;
|
|
47649
|
+
description?: string;
|
|
47650
|
+
tags?: Array<string>;
|
|
47651
|
+
areRelationsValid?: boolean;
|
|
47652
|
+
/**
|
|
47653
|
+
* Indicator whether the filter view should by applied by default.
|
|
47654
|
+
*/
|
|
47655
|
+
isDefault?: boolean;
|
|
47656
|
+
/**
|
|
47657
|
+
* The respective filter context.
|
|
47658
|
+
*/
|
|
47659
|
+
content: object;
|
|
47185
47660
|
}
|
|
47186
47661
|
|
|
47187
47662
|
export declare interface JsonApiFilterViewOutDocument {
|
|
@@ -47204,13 +47679,22 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
47204
47679
|
export declare interface JsonApiFilterViewOutList {
|
|
47205
47680
|
data: Array<JsonApiFilterViewOutWithLinks>;
|
|
47206
47681
|
links?: ListLinks;
|
|
47207
|
-
meta?:
|
|
47682
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47208
47683
|
/**
|
|
47209
47684
|
* Included resources
|
|
47210
47685
|
*/
|
|
47211
47686
|
included?: Array<JsonApiFilterViewOutIncludes>;
|
|
47212
47687
|
}
|
|
47213
47688
|
|
|
47689
|
+
export declare interface JsonApiFilterViewOutRelationships {
|
|
47690
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
47691
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
47692
|
+
}
|
|
47693
|
+
|
|
47694
|
+
export declare interface JsonApiFilterViewOutRelationshipsUser {
|
|
47695
|
+
data: JsonApiUserLinkage | null;
|
|
47696
|
+
}
|
|
47697
|
+
|
|
47214
47698
|
export declare const JsonApiFilterViewOutTypeEnum: {
|
|
47215
47699
|
readonly FILTER_VIEW: "filterView";
|
|
47216
47700
|
};
|
|
@@ -47226,8 +47710,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
47226
47710
|
* API identifier of an object
|
|
47227
47711
|
*/
|
|
47228
47712
|
id: string;
|
|
47229
|
-
attributes:
|
|
47230
|
-
relationships?:
|
|
47713
|
+
attributes: JsonApiFilterViewOutAttributes;
|
|
47714
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
47231
47715
|
links?: ObjectLinks;
|
|
47232
47716
|
}
|
|
47233
47717
|
|
|
@@ -47250,7 +47734,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
47250
47734
|
*/
|
|
47251
47735
|
id: string;
|
|
47252
47736
|
attributes: JsonApiFilterViewPatchAttributes;
|
|
47253
|
-
relationships?:
|
|
47737
|
+
relationships?: JsonApiFilterViewOutRelationships;
|
|
47254
47738
|
}
|
|
47255
47739
|
|
|
47256
47740
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -47460,7 +47944,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
47460
47944
|
export declare interface JsonApiIdentityProviderOutList {
|
|
47461
47945
|
data: Array<JsonApiIdentityProviderOutWithLinks>;
|
|
47462
47946
|
links?: ListLinks;
|
|
47463
|
-
meta?:
|
|
47947
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47464
47948
|
}
|
|
47465
47949
|
|
|
47466
47950
|
export declare const JsonApiIdentityProviderOutTypeEnum: {
|
|
@@ -47568,7 +48052,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
47568
48052
|
export declare interface JsonApiJwkOutList {
|
|
47569
48053
|
data: Array<JsonApiJwkOutWithLinks>;
|
|
47570
48054
|
links?: ListLinks;
|
|
47571
|
-
meta?:
|
|
48055
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47572
48056
|
}
|
|
47573
48057
|
|
|
47574
48058
|
export declare const JsonApiJwkOutTypeEnum: {
|
|
@@ -47647,7 +48131,7 @@ export declare interface JsonApiLabelOut {
|
|
|
47647
48131
|
* API identifier of an object
|
|
47648
48132
|
*/
|
|
47649
48133
|
id: string;
|
|
47650
|
-
meta?:
|
|
48134
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47651
48135
|
attributes?: JsonApiLabelOutAttributes;
|
|
47652
48136
|
relationships?: JsonApiLabelOutRelationships;
|
|
47653
48137
|
}
|
|
@@ -47660,6 +48144,7 @@ export declare interface JsonApiLabelOutAttributes {
|
|
|
47660
48144
|
sourceColumn?: string;
|
|
47661
48145
|
sourceColumnDataType?: JsonApiLabelOutAttributesSourceColumnDataTypeEnum;
|
|
47662
48146
|
valueType?: JsonApiLabelOutAttributesValueTypeEnum;
|
|
48147
|
+
isHidden?: boolean;
|
|
47663
48148
|
areRelationsValid?: boolean;
|
|
47664
48149
|
}
|
|
47665
48150
|
|
|
@@ -47701,7 +48186,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
47701
48186
|
export declare interface JsonApiLabelOutList {
|
|
47702
48187
|
data: Array<JsonApiLabelOutWithLinks>;
|
|
47703
48188
|
links?: ListLinks;
|
|
47704
|
-
meta?:
|
|
48189
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47705
48190
|
/**
|
|
47706
48191
|
* Included resources
|
|
47707
48192
|
*/
|
|
@@ -47731,7 +48216,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
47731
48216
|
* API identifier of an object
|
|
47732
48217
|
*/
|
|
47733
48218
|
id: string;
|
|
47734
|
-
meta?:
|
|
48219
|
+
meta?: JsonApiDatasetOutMeta;
|
|
47735
48220
|
attributes?: JsonApiLabelOutAttributes;
|
|
47736
48221
|
relationships?: JsonApiLabelOutRelationships;
|
|
47737
48222
|
links?: ObjectLinks;
|
|
@@ -47858,7 +48343,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
47858
48343
|
export declare interface JsonApiLlmEndpointOutList {
|
|
47859
48344
|
data: Array<JsonApiLlmEndpointOutWithLinks>;
|
|
47860
48345
|
links?: ListLinks;
|
|
47861
|
-
meta?:
|
|
48346
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
47862
48347
|
}
|
|
47863
48348
|
|
|
47864
48349
|
export declare const JsonApiLlmEndpointOutTypeEnum: {
|
|
@@ -47957,15 +48442,7 @@ export declare interface JsonApiMetricIn {
|
|
|
47957
48442
|
* API identifier of an object
|
|
47958
48443
|
*/
|
|
47959
48444
|
id: string;
|
|
47960
|
-
attributes:
|
|
47961
|
-
}
|
|
47962
|
-
|
|
47963
|
-
export declare interface JsonApiMetricInAttributes {
|
|
47964
|
-
title?: string;
|
|
47965
|
-
description?: string;
|
|
47966
|
-
tags?: Array<string>;
|
|
47967
|
-
areRelationsValid?: boolean;
|
|
47968
|
-
content: JsonApiMetricOutAttributesContent;
|
|
48445
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
47969
48446
|
}
|
|
47970
48447
|
|
|
47971
48448
|
export declare interface JsonApiMetricInDocument {
|
|
@@ -48004,7 +48481,7 @@ export declare interface JsonApiMetricOut {
|
|
|
48004
48481
|
* API identifier of an object
|
|
48005
48482
|
*/
|
|
48006
48483
|
id: string;
|
|
48007
|
-
meta?:
|
|
48484
|
+
meta?: JsonApiDatasetOutMeta;
|
|
48008
48485
|
attributes: JsonApiMetricOutAttributes;
|
|
48009
48486
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
48010
48487
|
}
|
|
@@ -48017,6 +48494,7 @@ export declare interface JsonApiMetricOutAttributes {
|
|
|
48017
48494
|
content: JsonApiMetricOutAttributesContent;
|
|
48018
48495
|
createdAt?: string;
|
|
48019
48496
|
modifiedAt?: string;
|
|
48497
|
+
isHidden?: boolean;
|
|
48020
48498
|
}
|
|
48021
48499
|
|
|
48022
48500
|
export declare interface JsonApiMetricOutAttributesContent {
|
|
@@ -48044,7 +48522,7 @@ export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | Js
|
|
|
48044
48522
|
export declare interface JsonApiMetricOutList {
|
|
48045
48523
|
data: Array<JsonApiMetricOutWithLinks>;
|
|
48046
48524
|
links?: ListLinks;
|
|
48047
|
-
meta?:
|
|
48525
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48048
48526
|
/**
|
|
48049
48527
|
* Included resources
|
|
48050
48528
|
*/
|
|
@@ -48066,7 +48544,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
48066
48544
|
* API identifier of an object
|
|
48067
48545
|
*/
|
|
48068
48546
|
id: string;
|
|
48069
|
-
meta?:
|
|
48547
|
+
meta?: JsonApiDatasetOutMeta;
|
|
48070
48548
|
attributes: JsonApiMetricOutAttributes;
|
|
48071
48549
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
48072
48550
|
links?: ObjectLinks;
|
|
@@ -48099,6 +48577,7 @@ export declare interface JsonApiMetricPatchAttributes {
|
|
|
48099
48577
|
tags?: Array<string>;
|
|
48100
48578
|
areRelationsValid?: boolean;
|
|
48101
48579
|
content?: JsonApiMetricOutAttributesContent;
|
|
48580
|
+
isHidden?: boolean;
|
|
48102
48581
|
}
|
|
48103
48582
|
|
|
48104
48583
|
export declare interface JsonApiMetricPatchDocument {
|
|
@@ -48123,7 +48602,16 @@ export declare interface JsonApiMetricPostOptionalId {
|
|
|
48123
48602
|
* API identifier of an object
|
|
48124
48603
|
*/
|
|
48125
48604
|
id?: string;
|
|
48126
|
-
attributes:
|
|
48605
|
+
attributes: JsonApiMetricPostOptionalIdAttributes;
|
|
48606
|
+
}
|
|
48607
|
+
|
|
48608
|
+
export declare interface JsonApiMetricPostOptionalIdAttributes {
|
|
48609
|
+
title?: string;
|
|
48610
|
+
description?: string;
|
|
48611
|
+
tags?: Array<string>;
|
|
48612
|
+
areRelationsValid?: boolean;
|
|
48613
|
+
content: JsonApiMetricOutAttributesContent;
|
|
48614
|
+
isHidden?: boolean;
|
|
48127
48615
|
}
|
|
48128
48616
|
|
|
48129
48617
|
export declare interface JsonApiMetricPostOptionalIdDocument {
|
|
@@ -48189,7 +48677,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
48189
48677
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
48190
48678
|
data: Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
48191
48679
|
links?: ListLinks;
|
|
48192
|
-
meta?:
|
|
48680
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48193
48681
|
}
|
|
48194
48682
|
|
|
48195
48683
|
export declare const JsonApiNotificationChannelIdentifierOutTypeEnum: {
|
|
@@ -48341,7 +48829,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
48341
48829
|
export declare interface JsonApiNotificationChannelOutList {
|
|
48342
48830
|
data: Array<JsonApiNotificationChannelOutWithLinks>;
|
|
48343
48831
|
links?: ListLinks;
|
|
48344
|
-
meta?:
|
|
48832
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48345
48833
|
}
|
|
48346
48834
|
|
|
48347
48835
|
export declare const JsonApiNotificationChannelOutTypeEnum: {
|
|
@@ -48531,7 +49019,11 @@ export declare interface JsonApiOrganizationInDocument {
|
|
|
48531
49019
|
}
|
|
48532
49020
|
|
|
48533
49021
|
export declare interface JsonApiOrganizationInRelationships {
|
|
48534
|
-
identityProvider?:
|
|
49022
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
49023
|
+
}
|
|
49024
|
+
|
|
49025
|
+
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
49026
|
+
data: JsonApiIdentityProviderLinkage | null;
|
|
48535
49027
|
}
|
|
48536
49028
|
|
|
48537
49029
|
export declare const JsonApiOrganizationInTypeEnum: {
|
|
@@ -48634,21 +49126,9 @@ export declare const JsonApiOrganizationOutMetaPermissionsEnum: {
|
|
|
48634
49126
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = (typeof JsonApiOrganizationOutMetaPermissionsEnum)[keyof typeof JsonApiOrganizationOutMetaPermissionsEnum];
|
|
48635
49127
|
|
|
48636
49128
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
48637
|
-
bootstrapUser?:
|
|
48638
|
-
bootstrapUserGroup?:
|
|
48639
|
-
identityProvider?:
|
|
48640
|
-
}
|
|
48641
|
-
|
|
48642
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
48643
|
-
data: JsonApiUserLinkage | null;
|
|
48644
|
-
}
|
|
48645
|
-
|
|
48646
|
-
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
48647
|
-
data: JsonApiUserGroupLinkage | null;
|
|
48648
|
-
}
|
|
48649
|
-
|
|
48650
|
-
export declare interface JsonApiOrganizationOutRelationshipsIdentityProvider {
|
|
48651
|
-
data: JsonApiIdentityProviderLinkage | null;
|
|
49129
|
+
bootstrapUser?: JsonApiFilterViewOutRelationshipsUser;
|
|
49130
|
+
bootstrapUserGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
49131
|
+
identityProvider?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
48652
49132
|
}
|
|
48653
49133
|
|
|
48654
49134
|
export declare const JsonApiOrganizationOutTypeEnum: {
|
|
@@ -48730,12 +49210,15 @@ export declare const JsonApiOrganizationSettingInAttributesTypeEnum: {
|
|
|
48730
49210
|
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
48731
49211
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
48732
49212
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
49213
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
48733
49214
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
48734
49215
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
48735
49216
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
48736
49217
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
48737
49218
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
48738
49219
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
49220
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
49221
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
48739
49222
|
};
|
|
48740
49223
|
|
|
48741
49224
|
export declare type JsonApiOrganizationSettingInAttributesTypeEnum = (typeof JsonApiOrganizationSettingInAttributesTypeEnum)[keyof typeof JsonApiOrganizationSettingInAttributesTypeEnum];
|
|
@@ -48776,7 +49259,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
48776
49259
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
48777
49260
|
data: Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
48778
49261
|
links?: ListLinks;
|
|
48779
|
-
meta?:
|
|
49262
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48780
49263
|
}
|
|
48781
49264
|
|
|
48782
49265
|
export declare const JsonApiOrganizationSettingOutTypeEnum: {
|
|
@@ -48880,7 +49363,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
48880
49363
|
export declare interface JsonApiThemeOutList {
|
|
48881
49364
|
data: Array<JsonApiThemeOutWithLinks>;
|
|
48882
49365
|
links?: ListLinks;
|
|
48883
|
-
meta?:
|
|
49366
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
48884
49367
|
}
|
|
48885
49368
|
|
|
48886
49369
|
export declare const JsonApiThemeOutTypeEnum: {
|
|
@@ -48945,27 +49428,14 @@ export declare interface JsonApiUserDataFilterIn {
|
|
|
48945
49428
|
* API identifier of an object
|
|
48946
49429
|
*/
|
|
48947
49430
|
id: string;
|
|
48948
|
-
attributes:
|
|
48949
|
-
relationships?:
|
|
48950
|
-
}
|
|
48951
|
-
|
|
48952
|
-
export declare interface JsonApiUserDataFilterInAttributes {
|
|
48953
|
-
title?: string;
|
|
48954
|
-
description?: string;
|
|
48955
|
-
tags?: Array<string>;
|
|
48956
|
-
areRelationsValid?: boolean;
|
|
48957
|
-
maql: string;
|
|
49431
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
49432
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
48958
49433
|
}
|
|
48959
49434
|
|
|
48960
49435
|
export declare interface JsonApiUserDataFilterInDocument {
|
|
48961
49436
|
data: JsonApiUserDataFilterIn;
|
|
48962
49437
|
}
|
|
48963
49438
|
|
|
48964
|
-
export declare interface JsonApiUserDataFilterInRelationships {
|
|
48965
|
-
user?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
48966
|
-
userGroup?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
48967
|
-
}
|
|
48968
|
-
|
|
48969
49439
|
export declare const JsonApiUserDataFilterInTypeEnum: {
|
|
48970
49440
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
48971
49441
|
};
|
|
@@ -48984,11 +49454,19 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
48984
49454
|
* API identifier of an object
|
|
48985
49455
|
*/
|
|
48986
49456
|
id: string;
|
|
48987
|
-
meta?:
|
|
48988
|
-
attributes:
|
|
49457
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49458
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
48989
49459
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
48990
49460
|
}
|
|
48991
49461
|
|
|
49462
|
+
export declare interface JsonApiUserDataFilterOutAttributes {
|
|
49463
|
+
title?: string;
|
|
49464
|
+
description?: string;
|
|
49465
|
+
tags?: Array<string>;
|
|
49466
|
+
areRelationsValid?: boolean;
|
|
49467
|
+
maql: string;
|
|
49468
|
+
}
|
|
49469
|
+
|
|
48992
49470
|
export declare interface JsonApiUserDataFilterOutDocument {
|
|
48993
49471
|
data: JsonApiUserDataFilterOut;
|
|
48994
49472
|
links?: ObjectLinks;
|
|
@@ -49009,7 +49487,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
49009
49487
|
export declare interface JsonApiUserDataFilterOutList {
|
|
49010
49488
|
data: Array<JsonApiUserDataFilterOutWithLinks>;
|
|
49011
49489
|
links?: ListLinks;
|
|
49012
|
-
meta?:
|
|
49490
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49013
49491
|
/**
|
|
49014
49492
|
* Included resources
|
|
49015
49493
|
*/
|
|
@@ -49017,13 +49495,17 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
49017
49495
|
}
|
|
49018
49496
|
|
|
49019
49497
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
49020
|
-
user?:
|
|
49021
|
-
userGroup?:
|
|
49022
|
-
facts?:
|
|
49023
|
-
attributes?:
|
|
49498
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
49499
|
+
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
49500
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
49501
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
49024
49502
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
49025
49503
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
49026
|
-
datasets?:
|
|
49504
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
49505
|
+
}
|
|
49506
|
+
|
|
49507
|
+
export declare interface JsonApiUserDataFilterOutRelationshipsUserGroup {
|
|
49508
|
+
data: JsonApiUserGroupLinkage | null;
|
|
49027
49509
|
}
|
|
49028
49510
|
|
|
49029
49511
|
export declare const JsonApiUserDataFilterOutTypeEnum: {
|
|
@@ -49041,8 +49523,8 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
49041
49523
|
* API identifier of an object
|
|
49042
49524
|
*/
|
|
49043
49525
|
id: string;
|
|
49044
|
-
meta?:
|
|
49045
|
-
attributes:
|
|
49526
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49527
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
49046
49528
|
relationships?: JsonApiUserDataFilterOutRelationships;
|
|
49047
49529
|
links?: ObjectLinks;
|
|
49048
49530
|
}
|
|
@@ -49066,7 +49548,7 @@ export declare interface JsonApiUserDataFilterPatch {
|
|
|
49066
49548
|
*/
|
|
49067
49549
|
id: string;
|
|
49068
49550
|
attributes: JsonApiUserDataFilterPatchAttributes;
|
|
49069
|
-
relationships?:
|
|
49551
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
49070
49552
|
}
|
|
49071
49553
|
|
|
49072
49554
|
export declare interface JsonApiUserDataFilterPatchAttributes {
|
|
@@ -49081,6 +49563,11 @@ export declare interface JsonApiUserDataFilterPatchDocument {
|
|
|
49081
49563
|
data: JsonApiUserDataFilterPatch;
|
|
49082
49564
|
}
|
|
49083
49565
|
|
|
49566
|
+
export declare interface JsonApiUserDataFilterPatchRelationships {
|
|
49567
|
+
user?: JsonApiFilterViewOutRelationshipsUser;
|
|
49568
|
+
userGroup?: JsonApiUserDataFilterOutRelationshipsUserGroup;
|
|
49569
|
+
}
|
|
49570
|
+
|
|
49084
49571
|
export declare const JsonApiUserDataFilterPatchTypeEnum: {
|
|
49085
49572
|
readonly USER_DATA_FILTER: "userDataFilter";
|
|
49086
49573
|
};
|
|
@@ -49099,8 +49586,8 @@ export declare interface JsonApiUserDataFilterPostOptionalId {
|
|
|
49099
49586
|
* API identifier of an object
|
|
49100
49587
|
*/
|
|
49101
49588
|
id?: string;
|
|
49102
|
-
attributes:
|
|
49103
|
-
relationships?:
|
|
49589
|
+
attributes: JsonApiUserDataFilterOutAttributes;
|
|
49590
|
+
relationships?: JsonApiUserDataFilterPatchRelationships;
|
|
49104
49591
|
}
|
|
49105
49592
|
|
|
49106
49593
|
export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
@@ -49199,7 +49686,7 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
49199
49686
|
export declare interface JsonApiUserGroupOutList {
|
|
49200
49687
|
data: Array<JsonApiUserGroupOutWithLinks>;
|
|
49201
49688
|
links?: ListLinks;
|
|
49202
|
-
meta?:
|
|
49689
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49203
49690
|
/**
|
|
49204
49691
|
* Included resources
|
|
49205
49692
|
*/
|
|
@@ -49304,7 +49791,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
49304
49791
|
export declare interface JsonApiUserIdentifierOutList {
|
|
49305
49792
|
data: Array<JsonApiUserIdentifierOutWithLinks>;
|
|
49306
49793
|
links?: ListLinks;
|
|
49307
|
-
meta?:
|
|
49794
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49308
49795
|
}
|
|
49309
49796
|
|
|
49310
49797
|
export declare const JsonApiUserIdentifierOutTypeEnum: {
|
|
@@ -49414,7 +49901,7 @@ export declare interface JsonApiUserOutDocument {
|
|
|
49414
49901
|
export declare interface JsonApiUserOutList {
|
|
49415
49902
|
data: Array<JsonApiUserOutWithLinks>;
|
|
49416
49903
|
links?: ListLinks;
|
|
49417
|
-
meta?:
|
|
49904
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49418
49905
|
/**
|
|
49419
49906
|
* Included resources
|
|
49420
49907
|
*/
|
|
@@ -49524,7 +50011,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
49524
50011
|
export declare interface JsonApiUserSettingOutList {
|
|
49525
50012
|
data: Array<JsonApiUserSettingOutWithLinks>;
|
|
49526
50013
|
links?: ListLinks;
|
|
49527
|
-
meta?:
|
|
50014
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49528
50015
|
}
|
|
49529
50016
|
|
|
49530
50017
|
export declare const JsonApiUserSettingOutTypeEnum: {
|
|
@@ -49564,7 +50051,7 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
49564
50051
|
* API identifier of an object
|
|
49565
50052
|
*/
|
|
49566
50053
|
id: string;
|
|
49567
|
-
attributes:
|
|
50054
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
49568
50055
|
}
|
|
49569
50056
|
|
|
49570
50057
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -49603,7 +50090,7 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
49603
50090
|
* API identifier of an object
|
|
49604
50091
|
*/
|
|
49605
50092
|
id: string;
|
|
49606
|
-
meta?:
|
|
50093
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49607
50094
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
49608
50095
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49609
50096
|
}
|
|
@@ -49619,6 +50106,7 @@ export declare interface JsonApiVisualizationObjectOutAttributes {
|
|
|
49619
50106
|
content: object;
|
|
49620
50107
|
createdAt?: string;
|
|
49621
50108
|
modifiedAt?: string;
|
|
50109
|
+
isHidden?: boolean;
|
|
49622
50110
|
}
|
|
49623
50111
|
|
|
49624
50112
|
export declare interface JsonApiVisualizationObjectOutDocument {
|
|
@@ -49636,70 +50124,27 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
49636
50124
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
49637
50125
|
data: Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
49638
50126
|
links?: ListLinks;
|
|
49639
|
-
meta?:
|
|
50127
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49640
50128
|
/**
|
|
49641
50129
|
* Included resources
|
|
49642
50130
|
*/
|
|
49643
50131
|
included?: Array<JsonApiMetricOutIncludes>;
|
|
49644
50132
|
}
|
|
49645
50133
|
|
|
49646
|
-
export declare interface JsonApiVisualizationObjectOutMeta {
|
|
49647
|
-
origin?: JsonApiVisualizationObjectOutMetaOrigin;
|
|
49648
|
-
}
|
|
49649
|
-
|
|
49650
|
-
export declare interface JsonApiVisualizationObjectOutMetaOrigin {
|
|
49651
|
-
/**
|
|
49652
|
-
* defines type of the origin of the entity
|
|
49653
|
-
*/
|
|
49654
|
-
originType: JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum;
|
|
49655
|
-
/**
|
|
49656
|
-
* defines id of the workspace where the entity comes from
|
|
49657
|
-
*/
|
|
49658
|
-
originId: string;
|
|
49659
|
-
}
|
|
49660
|
-
|
|
49661
|
-
export declare const JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum: {
|
|
49662
|
-
readonly NATIVE: "NATIVE";
|
|
49663
|
-
readonly PARENT: "PARENT";
|
|
49664
|
-
};
|
|
49665
|
-
|
|
49666
|
-
export declare type JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum = (typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum)[keyof typeof JsonApiVisualizationObjectOutMetaOriginOriginTypeEnum];
|
|
49667
|
-
|
|
49668
50134
|
export declare interface JsonApiVisualizationObjectOutRelationships {
|
|
49669
50135
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49670
50136
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49671
|
-
facts?:
|
|
49672
|
-
attributes?:
|
|
50137
|
+
facts?: JsonApiDatasetOutRelationshipsFacts;
|
|
50138
|
+
attributes?: JsonApiDatasetOutRelationshipsAttributes;
|
|
49673
50139
|
labels?: JsonApiVisualizationObjectOutRelationshipsLabels;
|
|
49674
50140
|
metrics?: JsonApiVisualizationObjectOutRelationshipsMetrics;
|
|
49675
|
-
datasets?:
|
|
49676
|
-
}
|
|
49677
|
-
|
|
49678
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsAttributes {
|
|
49679
|
-
/**
|
|
49680
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49681
|
-
*/
|
|
49682
|
-
data: Array<JsonApiAttributeLinkage>;
|
|
50141
|
+
datasets?: JsonApiDatasetOutRelationshipsReferences;
|
|
49683
50142
|
}
|
|
49684
50143
|
|
|
49685
50144
|
export declare interface JsonApiVisualizationObjectOutRelationshipsCreatedBy {
|
|
49686
50145
|
data: JsonApiUserIdentifierLinkage | null;
|
|
49687
50146
|
}
|
|
49688
50147
|
|
|
49689
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsDatasets {
|
|
49690
|
-
/**
|
|
49691
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49692
|
-
*/
|
|
49693
|
-
data: Array<JsonApiDatasetLinkage>;
|
|
49694
|
-
}
|
|
49695
|
-
|
|
49696
|
-
export declare interface JsonApiVisualizationObjectOutRelationshipsFacts {
|
|
49697
|
-
/**
|
|
49698
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
49699
|
-
*/
|
|
49700
|
-
data: Array<JsonApiFactLinkage>;
|
|
49701
|
-
}
|
|
49702
|
-
|
|
49703
50148
|
export declare interface JsonApiVisualizationObjectOutRelationshipsLabels {
|
|
49704
50149
|
/**
|
|
49705
50150
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -49729,7 +50174,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
49729
50174
|
* API identifier of an object
|
|
49730
50175
|
*/
|
|
49731
50176
|
id: string;
|
|
49732
|
-
meta?:
|
|
50177
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49733
50178
|
attributes: JsonApiVisualizationObjectOutAttributes;
|
|
49734
50179
|
relationships?: JsonApiVisualizationObjectOutRelationships;
|
|
49735
50180
|
links?: ObjectLinks;
|
|
@@ -49753,7 +50198,19 @@ export declare interface JsonApiVisualizationObjectPatch {
|
|
|
49753
50198
|
* API identifier of an object
|
|
49754
50199
|
*/
|
|
49755
50200
|
id: string;
|
|
49756
|
-
attributes:
|
|
50201
|
+
attributes: JsonApiVisualizationObjectPatchAttributes;
|
|
50202
|
+
}
|
|
50203
|
+
|
|
50204
|
+
export declare interface JsonApiVisualizationObjectPatchAttributes {
|
|
50205
|
+
title?: string;
|
|
50206
|
+
description?: string;
|
|
50207
|
+
tags?: Array<string>;
|
|
50208
|
+
areRelationsValid?: boolean;
|
|
50209
|
+
/**
|
|
50210
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
50211
|
+
*/
|
|
50212
|
+
content?: object;
|
|
50213
|
+
isHidden?: boolean;
|
|
49757
50214
|
}
|
|
49758
50215
|
|
|
49759
50216
|
export declare interface JsonApiVisualizationObjectPatchDocument {
|
|
@@ -49778,7 +50235,19 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
49778
50235
|
* API identifier of an object
|
|
49779
50236
|
*/
|
|
49780
50237
|
id?: string;
|
|
49781
|
-
attributes:
|
|
50238
|
+
attributes: JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
50239
|
+
}
|
|
50240
|
+
|
|
50241
|
+
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
50242
|
+
title?: string;
|
|
50243
|
+
description?: string;
|
|
50244
|
+
tags?: Array<string>;
|
|
50245
|
+
areRelationsValid?: boolean;
|
|
50246
|
+
/**
|
|
50247
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
50248
|
+
*/
|
|
50249
|
+
content: object;
|
|
50250
|
+
isHidden?: boolean;
|
|
49782
50251
|
}
|
|
49783
50252
|
|
|
49784
50253
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -49818,7 +50287,7 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
49818
50287
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
49819
50288
|
data: Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
49820
50289
|
links?: ListLinks;
|
|
49821
|
-
meta?:
|
|
50290
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49822
50291
|
/**
|
|
49823
50292
|
* Included resources
|
|
49824
50293
|
*/
|
|
@@ -49827,12 +50296,12 @@ export declare interface JsonApiWorkspaceAutomationOutList {
|
|
|
49827
50296
|
|
|
49828
50297
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
49829
50298
|
workspace?: JsonApiWorkspaceInRelationshipsParent;
|
|
49830
|
-
notificationChannel?:
|
|
49831
|
-
analyticalDashboard?:
|
|
50299
|
+
notificationChannel?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
50300
|
+
analyticalDashboard?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
49832
50301
|
createdBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49833
50302
|
modifiedBy?: JsonApiVisualizationObjectOutRelationshipsCreatedBy;
|
|
49834
|
-
exportDefinitions?:
|
|
49835
|
-
recipients?:
|
|
50303
|
+
exportDefinitions?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
50304
|
+
recipients?: JsonApiAutomationOutRelationshipsRecipients;
|
|
49836
50305
|
automationResults?: JsonApiAutomationOutRelationshipsAutomationResults;
|
|
49837
50306
|
}
|
|
49838
50307
|
|
|
@@ -49914,7 +50383,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
49914
50383
|
* API identifier of an object
|
|
49915
50384
|
*/
|
|
49916
50385
|
id: string;
|
|
49917
|
-
meta?:
|
|
50386
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49918
50387
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49919
50388
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49920
50389
|
}
|
|
@@ -49940,7 +50409,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
49940
50409
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
49941
50410
|
data: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
49942
50411
|
links?: ListLinks;
|
|
49943
|
-
meta?:
|
|
50412
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
49944
50413
|
/**
|
|
49945
50414
|
* Included resources
|
|
49946
50415
|
*/
|
|
@@ -49973,7 +50442,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
49973
50442
|
* API identifier of an object
|
|
49974
50443
|
*/
|
|
49975
50444
|
id: string;
|
|
49976
|
-
meta?:
|
|
50445
|
+
meta?: JsonApiDatasetOutMeta;
|
|
49977
50446
|
attributes?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
49978
50447
|
relationships?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
49979
50448
|
links?: ObjectLinks;
|
|
@@ -50023,28 +50492,14 @@ export declare interface JsonApiWorkspaceDataFilterSettingIn {
|
|
|
50023
50492
|
* API identifier of an object
|
|
50024
50493
|
*/
|
|
50025
50494
|
id: string;
|
|
50026
|
-
attributes?:
|
|
50027
|
-
relationships?:
|
|
50028
|
-
}
|
|
50029
|
-
|
|
50030
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInAttributes {
|
|
50031
|
-
title?: string;
|
|
50032
|
-
description?: string;
|
|
50033
|
-
filterValues?: Array<string>;
|
|
50495
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
50496
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
50034
50497
|
}
|
|
50035
50498
|
|
|
50036
50499
|
export declare interface JsonApiWorkspaceDataFilterSettingInDocument {
|
|
50037
50500
|
data: JsonApiWorkspaceDataFilterSettingIn;
|
|
50038
50501
|
}
|
|
50039
50502
|
|
|
50040
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationships {
|
|
50041
|
-
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter;
|
|
50042
|
-
}
|
|
50043
|
-
|
|
50044
|
-
export declare interface JsonApiWorkspaceDataFilterSettingInRelationshipsWorkspaceDataFilter {
|
|
50045
|
-
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
50046
|
-
}
|
|
50047
|
-
|
|
50048
50503
|
export declare const JsonApiWorkspaceDataFilterSettingInTypeEnum: {
|
|
50049
50504
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
50050
50505
|
};
|
|
@@ -50077,9 +50532,15 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
50077
50532
|
* API identifier of an object
|
|
50078
50533
|
*/
|
|
50079
50534
|
id: string;
|
|
50080
|
-
meta?:
|
|
50081
|
-
attributes?:
|
|
50082
|
-
relationships?:
|
|
50535
|
+
meta?: JsonApiDatasetOutMeta;
|
|
50536
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
50537
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
50538
|
+
}
|
|
50539
|
+
|
|
50540
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutAttributes {
|
|
50541
|
+
title?: string;
|
|
50542
|
+
description?: string;
|
|
50543
|
+
filterValues?: Array<string>;
|
|
50083
50544
|
}
|
|
50084
50545
|
|
|
50085
50546
|
export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
@@ -50097,13 +50558,21 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
50097
50558
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
50098
50559
|
data: Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
50099
50560
|
links?: ListLinks;
|
|
50100
|
-
meta?:
|
|
50561
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50101
50562
|
/**
|
|
50102
50563
|
* Included resources
|
|
50103
50564
|
*/
|
|
50104
50565
|
included?: Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
50105
50566
|
}
|
|
50106
50567
|
|
|
50568
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationships {
|
|
50569
|
+
workspaceDataFilter?: JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter;
|
|
50570
|
+
}
|
|
50571
|
+
|
|
50572
|
+
export declare interface JsonApiWorkspaceDataFilterSettingOutRelationshipsWorkspaceDataFilter {
|
|
50573
|
+
data: JsonApiWorkspaceDataFilterLinkage | null;
|
|
50574
|
+
}
|
|
50575
|
+
|
|
50107
50576
|
export declare const JsonApiWorkspaceDataFilterSettingOutTypeEnum: {
|
|
50108
50577
|
readonly WORKSPACE_DATA_FILTER_SETTING: "workspaceDataFilterSetting";
|
|
50109
50578
|
};
|
|
@@ -50119,9 +50588,9 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
50119
50588
|
* API identifier of an object
|
|
50120
50589
|
*/
|
|
50121
50590
|
id: string;
|
|
50122
|
-
meta?:
|
|
50123
|
-
attributes?:
|
|
50124
|
-
relationships?:
|
|
50591
|
+
meta?: JsonApiDatasetOutMeta;
|
|
50592
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
50593
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
50125
50594
|
links?: ObjectLinks;
|
|
50126
50595
|
}
|
|
50127
50596
|
|
|
@@ -50143,8 +50612,8 @@ export declare interface JsonApiWorkspaceDataFilterSettingPatch {
|
|
|
50143
50612
|
* API identifier of an object
|
|
50144
50613
|
*/
|
|
50145
50614
|
id: string;
|
|
50146
|
-
attributes?:
|
|
50147
|
-
relationships?:
|
|
50615
|
+
attributes?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
50616
|
+
relationships?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
50148
50617
|
}
|
|
50149
50618
|
|
|
50150
50619
|
export declare interface JsonApiWorkspaceDataFilterSettingPatchDocument {
|
|
@@ -50271,7 +50740,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
50271
50740
|
export declare interface JsonApiWorkspaceOutList {
|
|
50272
50741
|
data: Array<JsonApiWorkspaceOutWithLinks>;
|
|
50273
50742
|
links?: ListLinks;
|
|
50274
|
-
meta?:
|
|
50743
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50275
50744
|
/**
|
|
50276
50745
|
* Included resources
|
|
50277
50746
|
*/
|
|
@@ -50421,7 +50890,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
50421
50890
|
* API identifier of an object
|
|
50422
50891
|
*/
|
|
50423
50892
|
id: string;
|
|
50424
|
-
meta?:
|
|
50893
|
+
meta?: JsonApiDatasetOutMeta;
|
|
50425
50894
|
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50426
50895
|
}
|
|
50427
50896
|
|
|
@@ -50436,7 +50905,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
50436
50905
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
50437
50906
|
data: Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
50438
50907
|
links?: ListLinks;
|
|
50439
|
-
meta?:
|
|
50908
|
+
meta?: JsonApiAggregatedFactOutListMeta;
|
|
50440
50909
|
}
|
|
50441
50910
|
|
|
50442
50911
|
export declare const JsonApiWorkspaceSettingOutTypeEnum: {
|
|
@@ -50454,7 +50923,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
50454
50923
|
* API identifier of an object
|
|
50455
50924
|
*/
|
|
50456
50925
|
id: string;
|
|
50457
|
-
meta?:
|
|
50926
|
+
meta?: JsonApiDatasetOutMeta;
|
|
50458
50927
|
attributes?: JsonApiOrganizationSettingInAttributes;
|
|
50459
50928
|
links?: ObjectLinks;
|
|
50460
50929
|
}
|
|
@@ -54674,6 +55143,72 @@ export declare interface MeasureResultHeader {
|
|
|
54674
55143
|
*/
|
|
54675
55144
|
export declare type MeasureValueFilter = AfmComparisonMeasureValueFilter | AfmRangeMeasureValueFilter;
|
|
54676
55145
|
|
|
55146
|
+
declare interface MemoryItem {
|
|
55147
|
+
/**
|
|
55148
|
+
* Memory item ID
|
|
55149
|
+
*/
|
|
55150
|
+
id: string;
|
|
55151
|
+
useCases?: MemoryItemUseCases;
|
|
55152
|
+
/**
|
|
55153
|
+
* Defines the application strategy.
|
|
55154
|
+
*/
|
|
55155
|
+
strategy?: MemoryItemStrategyEnum;
|
|
55156
|
+
/**
|
|
55157
|
+
* Instruction that will be injected into the prompt.
|
|
55158
|
+
*/
|
|
55159
|
+
instruction: string;
|
|
55160
|
+
/**
|
|
55161
|
+
* List of keywords used to match the memory item.
|
|
55162
|
+
*/
|
|
55163
|
+
keywords: Array<string>;
|
|
55164
|
+
}
|
|
55165
|
+
|
|
55166
|
+
declare const MemoryItemStrategyEnum: {
|
|
55167
|
+
readonly MEMORY_ITEM_STRATEGY_ALLWAYS: "MEMORY_ITEM_STRATEGY_ALLWAYS";
|
|
55168
|
+
readonly MEMORY_ITEM_STRATEGY_NEVER: "MEMORY_ITEM_STRATEGY_NEVER";
|
|
55169
|
+
readonly MEMORY_ITEM_STRATEGY_AUTO: "MEMORY_ITEM_STRATEGY_AUTO";
|
|
55170
|
+
};
|
|
55171
|
+
|
|
55172
|
+
declare type MemoryItemStrategyEnum = (typeof MemoryItemStrategyEnum)[keyof typeof MemoryItemStrategyEnum];
|
|
55173
|
+
|
|
55174
|
+
/**
|
|
55175
|
+
* Defines the prompts where the given instruction should be applied.
|
|
55176
|
+
*/
|
|
55177
|
+
declare interface MemoryItemUseCases {
|
|
55178
|
+
/**
|
|
55179
|
+
* Appy this memory item to the router prompt.
|
|
55180
|
+
*/
|
|
55181
|
+
router: boolean;
|
|
55182
|
+
/**
|
|
55183
|
+
* Apply this memory item to the search keyword extraction prompt.
|
|
55184
|
+
*/
|
|
55185
|
+
keywords: boolean;
|
|
55186
|
+
/**
|
|
55187
|
+
* Apply this memory item to the search prompt.
|
|
55188
|
+
*/
|
|
55189
|
+
search: boolean;
|
|
55190
|
+
/**
|
|
55191
|
+
* Apply this memory item to the visualization prompt.
|
|
55192
|
+
*/
|
|
55193
|
+
visualization: boolean;
|
|
55194
|
+
/**
|
|
55195
|
+
* Apply this memory item to the general answer prompt.
|
|
55196
|
+
*/
|
|
55197
|
+
general: boolean;
|
|
55198
|
+
/**
|
|
55199
|
+
* Apply this memory item to the how-to prompt.
|
|
55200
|
+
*/
|
|
55201
|
+
howto: boolean;
|
|
55202
|
+
/**
|
|
55203
|
+
* Apply this memory item to the normalize prompt.
|
|
55204
|
+
*/
|
|
55205
|
+
normalize: boolean;
|
|
55206
|
+
/**
|
|
55207
|
+
* Apply this memory item to the metric selection prompt.
|
|
55208
|
+
*/
|
|
55209
|
+
metric: boolean;
|
|
55210
|
+
}
|
|
55211
|
+
|
|
54677
55212
|
export declare class MetadataBaseApi {
|
|
54678
55213
|
protected basePath: string;
|
|
54679
55214
|
protected axios: AxiosInstance;
|
|
@@ -67200,12 +67735,15 @@ export declare const ResolvedSettingTypeEnum: {
|
|
|
67200
67735
|
readonly JWT_JIT_PROVISIONING: "JWT_JIT_PROVISIONING";
|
|
67201
67736
|
readonly DASHBOARD_FILTERS_APPLY_MODE: "DASHBOARD_FILTERS_APPLY_MODE";
|
|
67202
67737
|
readonly ENABLE_SLIDES_EXPORT: "ENABLE_SLIDES_EXPORT";
|
|
67738
|
+
readonly ENABLE_SNAPSHOT_EXPORT: "ENABLE_SNAPSHOT_EXPORT";
|
|
67203
67739
|
readonly AI_RATE_LIMIT: "AI_RATE_LIMIT";
|
|
67204
67740
|
readonly ATTACHMENT_SIZE_LIMIT: "ATTACHMENT_SIZE_LIMIT";
|
|
67205
67741
|
readonly ATTACHMENT_LINK_TTL: "ATTACHMENT_LINK_TTL";
|
|
67206
67742
|
readonly AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE: "AD_CATALOG_GROUPS_DEFAULT_EXPAND_STATE";
|
|
67207
67743
|
readonly ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS: "ALLOW_UNSAFE_FLEX_CONNECT_ENDPOINTS";
|
|
67208
67744
|
readonly ENABLE_AUTOMATION_EVALUATION_MODE: "ENABLE_AUTOMATION_EVALUATION_MODE";
|
|
67745
|
+
readonly ENABLE_ACCESSIBILITY_MODE: "ENABLE_ACCESSIBILITY_MODE";
|
|
67746
|
+
readonly REGISTERED_PLUGGABLE_APPLICATIONS: "REGISTERED_PLUGGABLE_APPLICATIONS";
|
|
67209
67747
|
};
|
|
67210
67748
|
|
|
67211
67749
|
export declare type ResolvedSettingTypeEnum = (typeof ResolvedSettingTypeEnum)[keyof typeof ResolvedSettingTypeEnum];
|
|
@@ -67931,7 +68469,7 @@ export declare function setGlobalAuthorizationToken(token: string | undefined):
|
|
|
67931
68469
|
*/
|
|
67932
68470
|
export declare interface Settings {
|
|
67933
68471
|
/**
|
|
67934
|
-
*
|
|
68472
|
+
* If true, the export will contain the information about the export – exported date, filters, etc. Works only with `visualizationObject`. (XLSX, PDF)
|
|
67935
68473
|
*/
|
|
67936
68474
|
exportInfo?: boolean;
|
|
67937
68475
|
/**
|
|
@@ -67971,10 +68509,6 @@ export declare interface Settings {
|
|
|
67971
68509
|
* Set page orientation. (PDF)
|
|
67972
68510
|
*/
|
|
67973
68511
|
pageOrientation?: SettingsPageOrientationEnum;
|
|
67974
|
-
/**
|
|
67975
|
-
* Show info page with export information.
|
|
67976
|
-
*/
|
|
67977
|
-
showInfoPage?: boolean;
|
|
67978
68512
|
}
|
|
67979
68513
|
|
|
67980
68514
|
export declare const SettingsPageOrientationEnum: {
|
|
@@ -68792,7 +69326,7 @@ export declare interface TabularExportRequest {
|
|
|
68792
69326
|
*/
|
|
68793
69327
|
visualizationObject?: string;
|
|
68794
69328
|
/**
|
|
68795
|
-
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given.
|
|
69329
|
+
* Optional custom filters (as array of IFilter objects defined in UI SDK) to be applied when visualizationObject is given. Those filters override the original filters defined in the visualization.
|
|
68796
69330
|
*/
|
|
68797
69331
|
visualizationObjectCustomFilters?: Array<object>;
|
|
68798
69332
|
/**
|