@gooddata/api-client-tiger 11.26.0-alpha.2 → 11.26.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/api-client-tiger.d.ts +1072 -817
- package/esm/generated/afm-rest-api/api.d.ts +326 -50
- package/esm/generated/afm-rest-api/api.d.ts.map +1 -1
- package/esm/generated/afm-rest-api/api.js +174 -30
- package/esm/generated/afm-rest-api/api.js.map +1 -1
- package/esm/generated/metadata-json-api/api.d.ts +802 -742
- package/esm/generated/metadata-json-api/api.d.ts.map +1 -1
- package/esm/generated/metadata-json-api/api.js +81 -54
- package/esm/generated/metadata-json-api/api.js.map +1 -1
- package/package.json +5 -5
|
@@ -3431,29 +3431,49 @@ export declare interface ActionsApiRetrieveExecutionMetadataRequest {
|
|
|
3431
3431
|
}
|
|
3432
3432
|
|
|
3433
3433
|
/**
|
|
3434
|
-
* Request parameters for
|
|
3434
|
+
* Request parameters for retrieveResultBinary operation in ActionsApi.
|
|
3435
3435
|
* @export
|
|
3436
|
-
* @interface
|
|
3436
|
+
* @interface ActionsApiRetrieveResultBinaryRequest
|
|
3437
3437
|
*/
|
|
3438
|
-
|
|
3438
|
+
declare interface ActionsApiRetrieveResultBinaryRequest {
|
|
3439
3439
|
/**
|
|
3440
3440
|
* Workspace identifier
|
|
3441
3441
|
* @type {string}
|
|
3442
|
-
* @memberof
|
|
3442
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
3443
3443
|
*/
|
|
3444
3444
|
readonly workspaceId: string;
|
|
3445
3445
|
/**
|
|
3446
3446
|
* Result ID
|
|
3447
3447
|
* @type {string}
|
|
3448
|
-
* @memberof
|
|
3448
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
3449
3449
|
*/
|
|
3450
3450
|
readonly resultId: string;
|
|
3451
3451
|
/**
|
|
3452
3452
|
*
|
|
3453
3453
|
* @type {string}
|
|
3454
|
-
* @memberof
|
|
3454
|
+
* @memberof ActionsApiRetrieveResultBinary
|
|
3455
3455
|
*/
|
|
3456
3456
|
readonly xGDCCANCELTOKEN?: string;
|
|
3457
|
+
}
|
|
3458
|
+
|
|
3459
|
+
/**
|
|
3460
|
+
* Request parameters for retrieveResult operation in ActionsApi.
|
|
3461
|
+
* @export
|
|
3462
|
+
* @interface ActionsApiRetrieveResultRequest
|
|
3463
|
+
*/
|
|
3464
|
+
export declare interface ActionsApiRetrieveResultRequest {
|
|
3465
|
+
/**
|
|
3466
|
+
* Workspace identifier
|
|
3467
|
+
* @type {string}
|
|
3468
|
+
* @memberof ActionsApiRetrieveResult
|
|
3469
|
+
*/
|
|
3470
|
+
readonly workspaceId: string;
|
|
3471
|
+
/**
|
|
3472
|
+
* Result ID
|
|
3473
|
+
* @type {string}
|
|
3474
|
+
* @memberof ActionsApiRetrieveResult
|
|
3475
|
+
*/
|
|
3476
|
+
readonly resultId: string;
|
|
3457
3477
|
/**
|
|
3458
3478
|
* Request page with these offsets. Format is offset=1,2,3,... - one offset for each dimensions in ResultSpec from originating AFM.
|
|
3459
3479
|
* @type {Array<number>}
|
|
@@ -3472,6 +3492,12 @@ export declare interface ActionsApiRetrieveResultRequest {
|
|
|
3472
3492
|
* @memberof ActionsApiRetrieveResult
|
|
3473
3493
|
*/
|
|
3474
3494
|
readonly excludedTotalDimensions?: Array<string>;
|
|
3495
|
+
/**
|
|
3496
|
+
*
|
|
3497
|
+
* @type {string}
|
|
3498
|
+
* @memberof ActionsApiRetrieveResult
|
|
3499
|
+
*/
|
|
3500
|
+
readonly xGDCCANCELTOKEN?: string;
|
|
3475
3501
|
}
|
|
3476
3502
|
|
|
3477
3503
|
/**
|
|
@@ -5550,10 +5576,11 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5550
5576
|
*/
|
|
5551
5577
|
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
5552
5578
|
/**
|
|
5553
|
-
*
|
|
5579
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
5554
5580
|
* @summary Get Active LLM Endpoints for this workspace
|
|
5555
5581
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
5556
5582
|
* @param {*} [options] Override http request option.
|
|
5583
|
+
* @deprecated
|
|
5557
5584
|
* @throws {RequiredError}
|
|
5558
5585
|
* @memberof ActionsApi
|
|
5559
5586
|
*/
|
|
@@ -5568,7 +5595,7 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5568
5595
|
*/
|
|
5569
5596
|
retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
5570
5597
|
/**
|
|
5571
|
-
* Gets a single execution result.
|
|
5598
|
+
* Gets a single execution result.
|
|
5572
5599
|
* @summary Get a single execution result
|
|
5573
5600
|
* @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
|
|
5574
5601
|
* @param {*} [options] Override http request option.
|
|
@@ -5576,6 +5603,15 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5576
5603
|
* @memberof ActionsApi
|
|
5577
5604
|
*/
|
|
5578
5605
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
5606
|
+
/**
|
|
5607
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
5608
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
5609
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
5610
|
+
* @param {*} [options] Override http request option.
|
|
5611
|
+
* @throws {RequiredError}
|
|
5612
|
+
* @memberof ActionsApi
|
|
5613
|
+
*/
|
|
5614
|
+
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
5579
5615
|
/**
|
|
5580
5616
|
*
|
|
5581
5617
|
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
@@ -5638,19 +5674,21 @@ export declare class AfmActionsApi extends LabelElementsBaseApi implements AfmAc
|
|
|
5638
5674
|
*/
|
|
5639
5675
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
5640
5676
|
/**
|
|
5641
|
-
*
|
|
5677
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
5642
5678
|
* @summary Validate LLM Endpoint
|
|
5643
5679
|
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
5644
5680
|
* @param {*} [options] Override http request option.
|
|
5681
|
+
* @deprecated
|
|
5645
5682
|
* @throws {RequiredError}
|
|
5646
5683
|
* @memberof ActionsApi
|
|
5647
5684
|
*/
|
|
5648
5685
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
5649
5686
|
/**
|
|
5650
|
-
*
|
|
5687
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
5651
5688
|
* @summary Validate LLM Endpoint By Id
|
|
5652
5689
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
5653
5690
|
* @param {*} [options] Override http request option.
|
|
5691
|
+
* @deprecated
|
|
5654
5692
|
* @throws {RequiredError}
|
|
5655
5693
|
* @memberof ActionsApi
|
|
5656
5694
|
*/
|
|
@@ -6043,10 +6081,11 @@ export declare interface AfmActionsApiInterface {
|
|
|
6043
6081
|
*/
|
|
6044
6082
|
patchDocument(requestParameters: ActionsApiPatchDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<KnowledgeDocumentMetadataDto>;
|
|
6045
6083
|
/**
|
|
6046
|
-
*
|
|
6084
|
+
* Will be soon removed and replaced by LlmProvider-based resolution.
|
|
6047
6085
|
* @summary Get Active LLM Endpoints for this workspace
|
|
6048
6086
|
* @param {ActionsApiResolveLlmEndpointsRequest} requestParameters Request parameters.
|
|
6049
6087
|
* @param {*} [options] Override http request option.
|
|
6088
|
+
* @deprecated
|
|
6050
6089
|
* @throws {RequiredError}
|
|
6051
6090
|
* @memberof ActionsApiInterface
|
|
6052
6091
|
*/
|
|
@@ -6061,7 +6100,7 @@ export declare interface AfmActionsApiInterface {
|
|
|
6061
6100
|
*/
|
|
6062
6101
|
retrieveExecutionMetadata(requestParameters: ActionsApiRetrieveExecutionMetadataRequest, options?: AxiosRequestConfig): AxiosPromise<ResultCacheMetadata>;
|
|
6063
6102
|
/**
|
|
6064
|
-
* Gets a single execution result.
|
|
6103
|
+
* Gets a single execution result.
|
|
6065
6104
|
* @summary Get a single execution result
|
|
6066
6105
|
* @param {ActionsApiRetrieveResultRequest} requestParameters Request parameters.
|
|
6067
6106
|
* @param {*} [options] Override http request option.
|
|
@@ -6069,6 +6108,15 @@ export declare interface AfmActionsApiInterface {
|
|
|
6069
6108
|
* @memberof ActionsApiInterface
|
|
6070
6109
|
*/
|
|
6071
6110
|
retrieveResult(requestParameters: ActionsApiRetrieveResultRequest, options?: AxiosRequestConfig): AxiosPromise<ExecutionResult>;
|
|
6111
|
+
/**
|
|
6112
|
+
* (BETA) Gets a single execution result as an Apache Arrow IPC File or Stream format.
|
|
6113
|
+
* @summary (BETA) Get a single execution result in Apache Arrow File or Stream format
|
|
6114
|
+
* @param {ActionsApiRetrieveResultBinaryRequest} requestParameters Request parameters.
|
|
6115
|
+
* @param {*} [options] Override http request option.
|
|
6116
|
+
* @throws {RequiredError}
|
|
6117
|
+
* @memberof ActionsApiInterface
|
|
6118
|
+
*/
|
|
6119
|
+
retrieveResultBinary(requestParameters: ActionsApiRetrieveResultBinaryRequest, options?: AxiosRequestConfig): AxiosPromise<File>;
|
|
6072
6120
|
/**
|
|
6073
6121
|
*
|
|
6074
6122
|
* @param {ActionsApiSearchKnowledgeRequest} requestParameters Request parameters.
|
|
@@ -6131,19 +6179,21 @@ export declare interface AfmActionsApiInterface {
|
|
|
6131
6179
|
*/
|
|
6132
6180
|
upsertDocument(requestParameters: ActionsApiUpsertDocumentRequest, options?: AxiosRequestConfig): AxiosPromise<UpsertKnowledgeDocumentResponseDto>;
|
|
6133
6181
|
/**
|
|
6134
|
-
*
|
|
6182
|
+
* Will be soon removed and replaced by testLlmProvider.
|
|
6135
6183
|
* @summary Validate LLM Endpoint
|
|
6136
6184
|
* @param {ActionsApiValidateLLMEndpointRequest} requestParameters Request parameters.
|
|
6137
6185
|
* @param {*} [options] Override http request option.
|
|
6186
|
+
* @deprecated
|
|
6138
6187
|
* @throws {RequiredError}
|
|
6139
6188
|
* @memberof ActionsApiInterface
|
|
6140
6189
|
*/
|
|
6141
6190
|
validateLLMEndpoint(requestParameters: ActionsApiValidateLLMEndpointRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateLLMEndpointResponse>;
|
|
6142
6191
|
/**
|
|
6143
|
-
*
|
|
6192
|
+
* Will be soon removed and replaced by testLlmProviderById.
|
|
6144
6193
|
* @summary Validate LLM Endpoint By Id
|
|
6145
6194
|
* @param {ActionsApiValidateLLMEndpointByIdRequest} requestParameters Request parameters.
|
|
6146
6195
|
* @param {*} [options] Override http request option.
|
|
6196
|
+
* @deprecated
|
|
6147
6197
|
* @throws {RequiredError}
|
|
6148
6198
|
* @memberof ActionsApiInterface
|
|
6149
6199
|
*/
|
|
@@ -17531,6 +17581,10 @@ export declare interface ChatResult {
|
|
|
17531
17581
|
*/
|
|
17532
17582
|
'chatHistoryInteractionId'?: string;
|
|
17533
17583
|
'reasoning'?: Reasoning;
|
|
17584
|
+
/**
|
|
17585
|
+
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
17586
|
+
*/
|
|
17587
|
+
'toolCallEvents'?: Array<ToolCallEventResult>;
|
|
17534
17588
|
}
|
|
17535
17589
|
|
|
17536
17590
|
/**
|
|
@@ -20017,6 +20071,25 @@ export declare interface DashboardAttributeFilterAttributeFilter {
|
|
|
20017
20071
|
|
|
20018
20072
|
export declare type DashboardAttributeFilterAttributeFilterSelectionModeEnum = 'single' | 'multi';
|
|
20019
20073
|
|
|
20074
|
+
/**
|
|
20075
|
+
* Dashboard the user is currently viewing.
|
|
20076
|
+
*/
|
|
20077
|
+
declare interface DashboardContext {
|
|
20078
|
+
/**
|
|
20079
|
+
* Dashboard object ID.
|
|
20080
|
+
*/
|
|
20081
|
+
'id': string;
|
|
20082
|
+
/**
|
|
20083
|
+
* Widgets currently visible on the dashboard.
|
|
20084
|
+
*/
|
|
20085
|
+
'widgets': Array<DashboardContextWidgetsInner>;
|
|
20086
|
+
}
|
|
20087
|
+
|
|
20088
|
+
/**
|
|
20089
|
+
* @type DashboardContextWidgetsInner
|
|
20090
|
+
*/
|
|
20091
|
+
declare type DashboardContextWidgetsInner = InsightWidgetDescriptor | RichTextWidgetDescriptor | VisualizationSwitcherWidgetDescriptor;
|
|
20092
|
+
|
|
20020
20093
|
export declare interface DashboardDateFilter {
|
|
20021
20094
|
'dateFilter': DashboardDateFilterDateFilter;
|
|
20022
20095
|
}
|
|
@@ -27581,10 +27654,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
27581
27654
|
*/
|
|
27582
27655
|
createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
27583
27656
|
/**
|
|
27584
|
-
*
|
|
27657
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
27585
27658
|
* @summary Post LLM endpoint entities
|
|
27586
27659
|
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
27587
27660
|
* @param {*} [options] Override http request option.
|
|
27661
|
+
* @deprecated
|
|
27588
27662
|
* @throws {RequiredError}
|
|
27589
27663
|
* @memberof EntitiesApi
|
|
27590
27664
|
*/
|
|
@@ -27876,9 +27950,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
27876
27950
|
*/
|
|
27877
27951
|
deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
27878
27952
|
/**
|
|
27879
|
-
*
|
|
27953
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
27954
|
+
* @summary Delete LLM endpoint entity
|
|
27880
27955
|
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
27881
27956
|
* @param {*} [options] Override http request option.
|
|
27957
|
+
* @deprecated
|
|
27882
27958
|
* @throws {RequiredError}
|
|
27883
27959
|
* @memberof EntitiesApi
|
|
27884
27960
|
*/
|
|
@@ -28241,10 +28317,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
28241
28317
|
*/
|
|
28242
28318
|
getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
28243
28319
|
/**
|
|
28244
|
-
*
|
|
28320
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
28245
28321
|
* @summary Get all LLM endpoint entities
|
|
28246
28322
|
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
28247
28323
|
* @param {*} [options] Override http request option.
|
|
28324
|
+
* @deprecated
|
|
28248
28325
|
* @throws {RequiredError}
|
|
28249
28326
|
* @memberof EntitiesApi
|
|
28250
28327
|
*/
|
|
@@ -28642,10 +28719,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
28642
28719
|
*/
|
|
28643
28720
|
getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
28644
28721
|
/**
|
|
28645
|
-
*
|
|
28722
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
28646
28723
|
* @summary Get LLM endpoint entity
|
|
28647
28724
|
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
28648
28725
|
* @param {*} [options] Override http request option.
|
|
28726
|
+
* @deprecated
|
|
28649
28727
|
* @throws {RequiredError}
|
|
28650
28728
|
* @memberof EntitiesApi
|
|
28651
28729
|
*/
|
|
@@ -29008,10 +29086,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
29008
29086
|
*/
|
|
29009
29087
|
patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
29010
29088
|
/**
|
|
29011
|
-
*
|
|
29089
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
29012
29090
|
* @summary Patch LLM endpoint entity
|
|
29013
29091
|
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
29014
29092
|
* @param {*} [options] Override http request option.
|
|
29093
|
+
* @deprecated
|
|
29015
29094
|
* @throws {RequiredError}
|
|
29016
29095
|
* @memberof EntitiesApi
|
|
29017
29096
|
*/
|
|
@@ -29501,10 +29580,11 @@ export declare class EntitiesApi extends MetadataBaseApi implements EntitiesApiI
|
|
|
29501
29580
|
*/
|
|
29502
29581
|
updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
29503
29582
|
/**
|
|
29504
|
-
*
|
|
29583
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
29505
29584
|
* @summary PUT LLM endpoint entity
|
|
29506
29585
|
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
29507
29586
|
* @param {*} [options] Override http request option.
|
|
29587
|
+
* @deprecated
|
|
29508
29588
|
* @throws {RequiredError}
|
|
29509
29589
|
* @memberof EntitiesApi
|
|
29510
29590
|
*/
|
|
@@ -29858,7 +29938,7 @@ export declare function EntitiesApi_CreateEntityJwks(axios: AxiosInstance, baseP
|
|
|
29858
29938
|
export declare function EntitiesApi_CreateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
29859
29939
|
|
|
29860
29940
|
/**
|
|
29861
|
-
*
|
|
29941
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
29862
29942
|
* @summary Post LLM endpoint entities
|
|
29863
29943
|
* @param {AxiosInstance} axios Axios instance.
|
|
29864
29944
|
* @param {string} basePath Base path.
|
|
@@ -30252,7 +30332,8 @@ export declare function EntitiesApi_DeleteEntityJwks(axios: AxiosInstance, baseP
|
|
|
30252
30332
|
export declare function EntitiesApi_DeleteEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
30253
30333
|
|
|
30254
30334
|
/**
|
|
30255
|
-
*
|
|
30335
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
30336
|
+
* @summary Delete LLM endpoint entity
|
|
30256
30337
|
* @param {AxiosInstance} axios Axios instance.
|
|
30257
30338
|
* @param {string} basePath Base path.
|
|
30258
30339
|
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -30740,7 +30821,7 @@ export declare function EntitiesApi_GetAllEntitiesKnowledgeRecommendations(axios
|
|
|
30740
30821
|
export declare function EntitiesApi_GetAllEntitiesLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutList>;
|
|
30741
30822
|
|
|
30742
30823
|
/**
|
|
30743
|
-
*
|
|
30824
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
30744
30825
|
* @summary Get all LLM endpoint entities
|
|
30745
30826
|
* @param {AxiosInstance} axios Axios instance.
|
|
30746
30827
|
* @param {string} basePath Base path.
|
|
@@ -31276,7 +31357,7 @@ export declare function EntitiesApi_GetEntityKnowledgeRecommendations(axios: Axi
|
|
|
31276
31357
|
export declare function EntitiesApi_GetEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutDocument>;
|
|
31277
31358
|
|
|
31278
31359
|
/**
|
|
31279
|
-
*
|
|
31360
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
31280
31361
|
* @summary Get LLM endpoint entity
|
|
31281
31362
|
* @param {AxiosInstance} axios Axios instance.
|
|
31282
31363
|
* @param {string} basePath Base path.
|
|
@@ -31765,7 +31846,7 @@ export declare function EntitiesApi_PatchEntityKnowledgeRecommendations(axios: A
|
|
|
31765
31846
|
export declare function EntitiesApi_PatchEntityLabels(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLabelOutDocument>;
|
|
31766
31847
|
|
|
31767
31848
|
/**
|
|
31768
|
-
*
|
|
31849
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
31769
31850
|
* @summary Patch LLM endpoint entity
|
|
31770
31851
|
* @param {AxiosInstance} axios Axios instance.
|
|
31771
31852
|
* @param {string} basePath Base path.
|
|
@@ -32423,7 +32504,7 @@ export declare function EntitiesApi_UpdateEntityJwks(axios: AxiosInstance, baseP
|
|
|
32423
32504
|
export declare function EntitiesApi_UpdateEntityKnowledgeRecommendations(axios: AxiosInstance, basePath: string, requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
32424
32505
|
|
|
32425
32506
|
/**
|
|
32426
|
-
*
|
|
32507
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
32427
32508
|
* @summary PUT LLM endpoint entity
|
|
32428
32509
|
* @param {AxiosInstance} axios Axios instance.
|
|
32429
32510
|
* @param {string} basePath Base path.
|
|
@@ -32822,7 +32903,7 @@ export declare function EntitiesApiAxiosParamCreator_CreateEntityJwks(jsonApiJwk
|
|
|
32822
32903
|
export declare function EntitiesApiAxiosParamCreator_CreateEntityKnowledgeRecommendations(workspaceId: string, jsonApiKnowledgeRecommendationPostOptionalIdDocument: JsonApiKnowledgeRecommendationPostOptionalIdDocument, include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
32823
32904
|
|
|
32824
32905
|
/**
|
|
32825
|
-
*
|
|
32906
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
32826
32907
|
* @summary Post LLM endpoint entities
|
|
32827
32908
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
32828
32909
|
* @param {*} [options] Override http request option.
|
|
@@ -33202,7 +33283,8 @@ export declare function EntitiesApiAxiosParamCreator_DeleteEntityJwks(id: string
|
|
|
33202
33283
|
export declare function EntitiesApiAxiosParamCreator_DeleteEntityKnowledgeRecommendations(workspaceId: string, objectId: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
33203
33284
|
|
|
33204
33285
|
/**
|
|
33205
|
-
*
|
|
33286
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
33287
|
+
* @summary Delete LLM endpoint entity
|
|
33206
33288
|
* @param {string} id
|
|
33207
33289
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33208
33290
|
* @param {*} [options] Override http request option.
|
|
@@ -33789,7 +33871,7 @@ export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesKnowledgeReco
|
|
|
33789
33871
|
export declare function EntitiesApiAxiosParamCreator_GetAllEntitiesLabels(workspaceId: string, origin?: 'ALL' | 'PARENTS' | 'NATIVE', filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, page?: number, size?: number, sort?: Array<string>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
33790
33872
|
|
|
33791
33873
|
/**
|
|
33792
|
-
*
|
|
33874
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
33793
33875
|
* @summary Get all LLM endpoint entities
|
|
33794
33876
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
33795
33877
|
* @param {number} [page] Zero-based page index (0..N)
|
|
@@ -34418,7 +34500,7 @@ export declare function EntitiesApiAxiosParamCreator_GetEntityKnowledgeRecommend
|
|
|
34418
34500
|
export declare function EntitiesApiAxiosParamCreator_GetEntityLabels(workspaceId: string, objectId: string, filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, xGDCVALIDATERELATIONS?: boolean, metaInclude?: Array<'origin' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
34419
34501
|
|
|
34420
34502
|
/**
|
|
34421
|
-
*
|
|
34503
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
34422
34504
|
* @summary Get LLM endpoint entity
|
|
34423
34505
|
* @param {string} id
|
|
34424
34506
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -34945,7 +35027,7 @@ export declare function EntitiesApiAxiosParamCreator_PatchEntityKnowledgeRecomme
|
|
|
34945
35027
|
export declare function EntitiesApiAxiosParamCreator_PatchEntityLabels(workspaceId: string, objectId: string, jsonApiLabelPatchDocument: JsonApiLabelPatchDocument, filter?: string, include?: Array<'attributes' | 'attribute' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
34946
35028
|
|
|
34947
35029
|
/**
|
|
34948
|
-
*
|
|
35030
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
34949
35031
|
* @summary Patch LLM endpoint entity
|
|
34950
35032
|
* @param {string} id
|
|
34951
35033
|
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
@@ -35659,7 +35741,7 @@ export declare function EntitiesApiAxiosParamCreator_UpdateEntityJwks(id: string
|
|
|
35659
35741
|
export declare function EntitiesApiAxiosParamCreator_UpdateEntityKnowledgeRecommendations(workspaceId: string, objectId: string, jsonApiKnowledgeRecommendationInDocument: JsonApiKnowledgeRecommendationInDocument, filter?: string, include?: Array<'metrics' | 'analyticalDashboards' | 'metric' | 'analyticalDashboard' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
35660
35742
|
|
|
35661
35743
|
/**
|
|
35662
|
-
*
|
|
35744
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
35663
35745
|
* @summary PUT LLM endpoint entity
|
|
35664
35746
|
* @param {string} id
|
|
35665
35747
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
@@ -41182,10 +41264,11 @@ export declare interface EntitiesApiInterface {
|
|
|
41182
41264
|
*/
|
|
41183
41265
|
createEntityKnowledgeRecommendations(requestParameters: EntitiesApiCreateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
41184
41266
|
/**
|
|
41185
|
-
*
|
|
41267
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
41186
41268
|
* @summary Post LLM endpoint entities
|
|
41187
41269
|
* @param {EntitiesApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
41188
41270
|
* @param {*} [options] Override http request option.
|
|
41271
|
+
* @deprecated
|
|
41189
41272
|
* @throws {RequiredError}
|
|
41190
41273
|
* @memberof EntitiesApiInterface
|
|
41191
41274
|
*/
|
|
@@ -41477,9 +41560,11 @@ export declare interface EntitiesApiInterface {
|
|
|
41477
41560
|
*/
|
|
41478
41561
|
deleteEntityKnowledgeRecommendations(requestParameters: EntitiesApiDeleteEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
41479
41562
|
/**
|
|
41480
|
-
*
|
|
41563
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
41564
|
+
* @summary Delete LLM endpoint entity
|
|
41481
41565
|
* @param {EntitiesApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
41482
41566
|
* @param {*} [options] Override http request option.
|
|
41567
|
+
* @deprecated
|
|
41483
41568
|
* @throws {RequiredError}
|
|
41484
41569
|
* @memberof EntitiesApiInterface
|
|
41485
41570
|
*/
|
|
@@ -41842,10 +41927,11 @@ export declare interface EntitiesApiInterface {
|
|
|
41842
41927
|
*/
|
|
41843
41928
|
getAllEntitiesLabels(requestParameters: EntitiesApiGetAllEntitiesLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutList>;
|
|
41844
41929
|
/**
|
|
41845
|
-
*
|
|
41930
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
41846
41931
|
* @summary Get all LLM endpoint entities
|
|
41847
41932
|
* @param {EntitiesApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
41848
41933
|
* @param {*} [options] Override http request option.
|
|
41934
|
+
* @deprecated
|
|
41849
41935
|
* @throws {RequiredError}
|
|
41850
41936
|
* @memberof EntitiesApiInterface
|
|
41851
41937
|
*/
|
|
@@ -42243,10 +42329,11 @@ export declare interface EntitiesApiInterface {
|
|
|
42243
42329
|
*/
|
|
42244
42330
|
getEntityLabels(requestParameters: EntitiesApiGetEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
42245
42331
|
/**
|
|
42246
|
-
*
|
|
42332
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
42247
42333
|
* @summary Get LLM endpoint entity
|
|
42248
42334
|
* @param {EntitiesApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
42249
42335
|
* @param {*} [options] Override http request option.
|
|
42336
|
+
* @deprecated
|
|
42250
42337
|
* @throws {RequiredError}
|
|
42251
42338
|
* @memberof EntitiesApiInterface
|
|
42252
42339
|
*/
|
|
@@ -42609,10 +42696,11 @@ export declare interface EntitiesApiInterface {
|
|
|
42609
42696
|
*/
|
|
42610
42697
|
patchEntityLabels(requestParameters: EntitiesApiPatchEntityLabelsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLabelOutDocument>;
|
|
42611
42698
|
/**
|
|
42612
|
-
*
|
|
42699
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
42613
42700
|
* @summary Patch LLM endpoint entity
|
|
42614
42701
|
* @param {EntitiesApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
42615
42702
|
* @param {*} [options] Override http request option.
|
|
42703
|
+
* @deprecated
|
|
42616
42704
|
* @throws {RequiredError}
|
|
42617
42705
|
* @memberof EntitiesApiInterface
|
|
42618
42706
|
*/
|
|
@@ -43102,10 +43190,11 @@ export declare interface EntitiesApiInterface {
|
|
|
43102
43190
|
*/
|
|
43103
43191
|
updateEntityKnowledgeRecommendations(requestParameters: EntitiesApiUpdateEntityKnowledgeRecommendationsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiKnowledgeRecommendationOutDocument>;
|
|
43104
43192
|
/**
|
|
43105
|
-
*
|
|
43193
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
43106
43194
|
* @summary PUT LLM endpoint entity
|
|
43107
43195
|
* @param {EntitiesApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
43108
43196
|
* @param {*} [options] Override http request option.
|
|
43197
|
+
* @deprecated
|
|
43109
43198
|
* @throws {RequiredError}
|
|
43110
43199
|
* @memberof EntitiesApiInterface
|
|
43111
43200
|
*/
|
|
@@ -55274,6 +55363,28 @@ export declare interface InPlatform {
|
|
|
55274
55363
|
|
|
55275
55364
|
export declare type InPlatformTypeEnum = 'IN_PLATFORM';
|
|
55276
55365
|
|
|
55366
|
+
/**
|
|
55367
|
+
* Insight widget displaying a visualization.
|
|
55368
|
+
*/
|
|
55369
|
+
declare interface InsightWidgetDescriptor extends WidgetDescriptor {
|
|
55370
|
+
/**
|
|
55371
|
+
* Widget object ID.
|
|
55372
|
+
*/
|
|
55373
|
+
'widgetId': string;
|
|
55374
|
+
/**
|
|
55375
|
+
* Widget title as displayed on the dashboard.
|
|
55376
|
+
*/
|
|
55377
|
+
'title': string;
|
|
55378
|
+
/**
|
|
55379
|
+
* Signed result ID for this widget\'s cached execution result.
|
|
55380
|
+
*/
|
|
55381
|
+
'resultId'?: string;
|
|
55382
|
+
/**
|
|
55383
|
+
* Visualization object ID referenced by this insight widget.
|
|
55384
|
+
*/
|
|
55385
|
+
'visualizationId': string;
|
|
55386
|
+
}
|
|
55387
|
+
|
|
55277
55388
|
/**
|
|
55278
55389
|
* Settings for intro slide.
|
|
55279
55390
|
*/
|
|
@@ -56310,7 +56421,7 @@ export declare interface JsonApiAggregatedFactOut {
|
|
|
56310
56421
|
* API identifier of an object
|
|
56311
56422
|
*/
|
|
56312
56423
|
'id': string;
|
|
56313
|
-
'meta'?:
|
|
56424
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56314
56425
|
'attributes': JsonApiAggregatedFactOutAttributes;
|
|
56315
56426
|
'relationships'?: JsonApiAggregatedFactOutRelationships;
|
|
56316
56427
|
}
|
|
@@ -56350,7 +56461,7 @@ export declare type JsonApiAggregatedFactOutIncludes = JsonApiDatasetOutWithLink
|
|
|
56350
56461
|
export declare interface JsonApiAggregatedFactOutList {
|
|
56351
56462
|
'data': Array<JsonApiAggregatedFactOutWithLinks>;
|
|
56352
56463
|
'links'?: ListLinks;
|
|
56353
|
-
'meta'?:
|
|
56464
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56354
56465
|
/**
|
|
56355
56466
|
* Included resources
|
|
56356
56467
|
*/
|
|
@@ -56358,7 +56469,7 @@ export declare interface JsonApiAggregatedFactOutList {
|
|
|
56358
56469
|
}
|
|
56359
56470
|
|
|
56360
56471
|
export declare interface JsonApiAggregatedFactOutRelationships {
|
|
56361
|
-
'dataset'?:
|
|
56472
|
+
'dataset'?: JsonApiAttributeOutRelationshipsDataset;
|
|
56362
56473
|
'sourceFact'?: JsonApiAggregatedFactOutRelationshipsSourceFact;
|
|
56363
56474
|
}
|
|
56364
56475
|
|
|
@@ -56377,7 +56488,7 @@ export declare interface JsonApiAggregatedFactOutWithLinks {
|
|
|
56377
56488
|
* API identifier of an object
|
|
56378
56489
|
*/
|
|
56379
56490
|
'id': string;
|
|
56380
|
-
'meta'?:
|
|
56491
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56381
56492
|
'attributes': JsonApiAggregatedFactOutAttributes;
|
|
56382
56493
|
'relationships'?: JsonApiAggregatedFactOutRelationships;
|
|
56383
56494
|
'links'?: ObjectLinks;
|
|
@@ -56490,7 +56601,7 @@ export declare type JsonApiAnalyticalDashboardOutIncludes = JsonApiAnalyticalDas
|
|
|
56490
56601
|
export declare interface JsonApiAnalyticalDashboardOutList {
|
|
56491
56602
|
'data': Array<JsonApiAnalyticalDashboardOutWithLinks>;
|
|
56492
56603
|
'links'?: ListLinks;
|
|
56493
|
-
'meta'?:
|
|
56604
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56494
56605
|
/**
|
|
56495
56606
|
* Included resources
|
|
56496
56607
|
*/
|
|
@@ -56502,7 +56613,7 @@ export declare interface JsonApiAnalyticalDashboardOutMeta {
|
|
|
56502
56613
|
* List of valid permissions for a logged-in user.
|
|
56503
56614
|
*/
|
|
56504
56615
|
'permissions'?: Array<JsonApiAnalyticalDashboardOutMetaPermissionsEnum>;
|
|
56505
|
-
'origin'?:
|
|
56616
|
+
'origin'?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
56506
56617
|
'accessInfo'?: JsonApiAnalyticalDashboardOutMetaAccessInfo;
|
|
56507
56618
|
}
|
|
56508
56619
|
|
|
@@ -56513,17 +56624,30 @@ export declare interface JsonApiAnalyticalDashboardOutMetaAccessInfo {
|
|
|
56513
56624
|
'private': boolean;
|
|
56514
56625
|
}
|
|
56515
56626
|
|
|
56627
|
+
export declare interface JsonApiAnalyticalDashboardOutMetaOrigin {
|
|
56628
|
+
/**
|
|
56629
|
+
* defines type of the origin of the entity
|
|
56630
|
+
*/
|
|
56631
|
+
'originType': JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum;
|
|
56632
|
+
/**
|
|
56633
|
+
* defines id of the workspace where the entity comes from
|
|
56634
|
+
*/
|
|
56635
|
+
'originId': string;
|
|
56636
|
+
}
|
|
56637
|
+
|
|
56638
|
+
export declare type JsonApiAnalyticalDashboardOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
|
|
56639
|
+
|
|
56516
56640
|
export declare type JsonApiAnalyticalDashboardOutMetaPermissionsEnum = 'EDIT' | 'SHARE' | 'VIEW';
|
|
56517
56641
|
|
|
56518
56642
|
export declare interface JsonApiAnalyticalDashboardOutRelationships {
|
|
56519
|
-
'createdBy'?:
|
|
56520
|
-
'modifiedBy'?:
|
|
56521
|
-
'certifiedBy'?:
|
|
56643
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56644
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56645
|
+
'certifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56522
56646
|
'visualizationObjects'?: JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects;
|
|
56523
56647
|
'analyticalDashboards'?: JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDashboards;
|
|
56524
|
-
'labels'?:
|
|
56525
|
-
'metrics'?:
|
|
56526
|
-
'datasets'?:
|
|
56648
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
56649
|
+
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
56650
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
56527
56651
|
'filterContexts'?: JsonApiAnalyticalDashboardOutRelationshipsFilterContexts;
|
|
56528
56652
|
'dashboardPlugins'?: JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins;
|
|
56529
56653
|
}
|
|
@@ -56535,6 +56659,10 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsAnalyticalDas
|
|
|
56535
56659
|
'data': Array<JsonApiAnalyticalDashboardLinkage>;
|
|
56536
56660
|
}
|
|
56537
56661
|
|
|
56662
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsCreatedBy {
|
|
56663
|
+
'data': JsonApiUserIdentifierLinkage | null;
|
|
56664
|
+
}
|
|
56665
|
+
|
|
56538
56666
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlugins {
|
|
56539
56667
|
/**
|
|
56540
56668
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -56542,6 +56670,13 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsDashboardPlug
|
|
|
56542
56670
|
'data': Array<JsonApiDashboardPluginLinkage>;
|
|
56543
56671
|
}
|
|
56544
56672
|
|
|
56673
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsDatasets {
|
|
56674
|
+
/**
|
|
56675
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56676
|
+
*/
|
|
56677
|
+
'data': Array<JsonApiDatasetLinkage>;
|
|
56678
|
+
}
|
|
56679
|
+
|
|
56545
56680
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContexts {
|
|
56546
56681
|
/**
|
|
56547
56682
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -56549,6 +56684,20 @@ export declare interface JsonApiAnalyticalDashboardOutRelationshipsFilterContext
|
|
|
56549
56684
|
'data': Array<JsonApiFilterContextLinkage>;
|
|
56550
56685
|
}
|
|
56551
56686
|
|
|
56687
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsLabels {
|
|
56688
|
+
/**
|
|
56689
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56690
|
+
*/
|
|
56691
|
+
'data': Array<JsonApiLabelLinkage>;
|
|
56692
|
+
}
|
|
56693
|
+
|
|
56694
|
+
export declare interface JsonApiAnalyticalDashboardOutRelationshipsMetrics {
|
|
56695
|
+
/**
|
|
56696
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56697
|
+
*/
|
|
56698
|
+
'data': Array<JsonApiMetricLinkage>;
|
|
56699
|
+
}
|
|
56700
|
+
|
|
56552
56701
|
export declare interface JsonApiAnalyticalDashboardOutRelationshipsVisualizationObjects {
|
|
56553
56702
|
/**
|
|
56554
56703
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -56700,11 +56849,7 @@ export declare interface JsonApiApiTokenOutDocument {
|
|
|
56700
56849
|
export declare interface JsonApiApiTokenOutList {
|
|
56701
56850
|
'data': Array<JsonApiApiTokenOutWithLinks>;
|
|
56702
56851
|
'links'?: ListLinks;
|
|
56703
|
-
'meta'?:
|
|
56704
|
-
}
|
|
56705
|
-
|
|
56706
|
-
export declare interface JsonApiApiTokenOutListMeta {
|
|
56707
|
-
'page'?: PageMetadata;
|
|
56852
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56708
56853
|
}
|
|
56709
56854
|
|
|
56710
56855
|
export declare type JsonApiApiTokenOutTypeEnum = 'apiToken';
|
|
@@ -56778,7 +56923,7 @@ export declare interface JsonApiAttributeHierarchyOut {
|
|
|
56778
56923
|
* API identifier of an object
|
|
56779
56924
|
*/
|
|
56780
56925
|
'id': string;
|
|
56781
|
-
'meta'?:
|
|
56926
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56782
56927
|
'attributes'?: JsonApiAttributeHierarchyOutAttributes;
|
|
56783
56928
|
'relationships'?: JsonApiAttributeHierarchyOutRelationships;
|
|
56784
56929
|
}
|
|
@@ -56822,7 +56967,7 @@ export declare type JsonApiAttributeHierarchyOutIncludes = JsonApiAttributeOutWi
|
|
|
56822
56967
|
export declare interface JsonApiAttributeHierarchyOutList {
|
|
56823
56968
|
'data': Array<JsonApiAttributeHierarchyOutWithLinks>;
|
|
56824
56969
|
'links'?: ListLinks;
|
|
56825
|
-
'meta'?:
|
|
56970
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56826
56971
|
/**
|
|
56827
56972
|
* Included resources
|
|
56828
56973
|
*/
|
|
@@ -56830,9 +56975,9 @@ export declare interface JsonApiAttributeHierarchyOutList {
|
|
|
56830
56975
|
}
|
|
56831
56976
|
|
|
56832
56977
|
export declare interface JsonApiAttributeHierarchyOutRelationships {
|
|
56833
|
-
'createdBy'?:
|
|
56834
|
-
'modifiedBy'?:
|
|
56835
|
-
'attributes'?:
|
|
56978
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56979
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
56980
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
56836
56981
|
}
|
|
56837
56982
|
|
|
56838
56983
|
export declare type JsonApiAttributeHierarchyOutTypeEnum = 'attributeHierarchy';
|
|
@@ -56846,7 +56991,7 @@ export declare interface JsonApiAttributeHierarchyOutWithLinks {
|
|
|
56846
56991
|
* API identifier of an object
|
|
56847
56992
|
*/
|
|
56848
56993
|
'id': string;
|
|
56849
|
-
'meta'?:
|
|
56994
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56850
56995
|
'attributes'?: JsonApiAttributeHierarchyOutAttributes;
|
|
56851
56996
|
'relationships'?: JsonApiAttributeHierarchyOutRelationships;
|
|
56852
56997
|
'links'?: ObjectLinks;
|
|
@@ -56897,7 +57042,7 @@ export declare interface JsonApiAttributeOut {
|
|
|
56897
57042
|
* API identifier of an object
|
|
56898
57043
|
*/
|
|
56899
57044
|
'id': string;
|
|
56900
|
-
'meta'?:
|
|
57045
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56901
57046
|
'attributes'?: JsonApiAttributeOutAttributes;
|
|
56902
57047
|
'relationships'?: JsonApiAttributeOutRelationships;
|
|
56903
57048
|
}
|
|
@@ -56944,7 +57089,7 @@ export declare type JsonApiAttributeOutIncludes = JsonApiAttributeHierarchyOutWi
|
|
|
56944
57089
|
export declare interface JsonApiAttributeOutList {
|
|
56945
57090
|
'data': Array<JsonApiAttributeOutWithLinks>;
|
|
56946
57091
|
'links'?: ListLinks;
|
|
56947
|
-
'meta'?:
|
|
57092
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
56948
57093
|
/**
|
|
56949
57094
|
* Included resources
|
|
56950
57095
|
*/
|
|
@@ -56952,9 +57097,9 @@ export declare interface JsonApiAttributeOutList {
|
|
|
56952
57097
|
}
|
|
56953
57098
|
|
|
56954
57099
|
export declare interface JsonApiAttributeOutRelationships {
|
|
56955
|
-
'dataset'?:
|
|
57100
|
+
'dataset'?: JsonApiAttributeOutRelationshipsDataset;
|
|
56956
57101
|
'defaultView'?: JsonApiAttributeOutRelationshipsDefaultView;
|
|
56957
|
-
'labels'?:
|
|
57102
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
56958
57103
|
'attributeHierarchies'?: JsonApiAttributeOutRelationshipsAttributeHierarchies;
|
|
56959
57104
|
}
|
|
56960
57105
|
|
|
@@ -56965,15 +57110,12 @@ export declare interface JsonApiAttributeOutRelationshipsAttributeHierarchies {
|
|
|
56965
57110
|
'data': Array<JsonApiAttributeHierarchyLinkage>;
|
|
56966
57111
|
}
|
|
56967
57112
|
|
|
56968
|
-
export declare interface
|
|
56969
|
-
'data':
|
|
57113
|
+
export declare interface JsonApiAttributeOutRelationshipsDataset {
|
|
57114
|
+
'data': JsonApiDatasetLinkage | null;
|
|
56970
57115
|
}
|
|
56971
57116
|
|
|
56972
|
-
export declare interface
|
|
56973
|
-
|
|
56974
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
56975
|
-
*/
|
|
56976
|
-
'data': Array<JsonApiLabelLinkage>;
|
|
57117
|
+
export declare interface JsonApiAttributeOutRelationshipsDefaultView {
|
|
57118
|
+
'data': JsonApiLabelLinkage | null;
|
|
56977
57119
|
}
|
|
56978
57120
|
|
|
56979
57121
|
export declare type JsonApiAttributeOutTypeEnum = 'attribute';
|
|
@@ -56987,7 +57129,7 @@ export declare interface JsonApiAttributeOutWithLinks {
|
|
|
56987
57129
|
* API identifier of an object
|
|
56988
57130
|
*/
|
|
56989
57131
|
'id': string;
|
|
56990
|
-
'meta'?:
|
|
57132
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
56991
57133
|
'attributes'?: JsonApiAttributeOutAttributes;
|
|
56992
57134
|
'relationships'?: JsonApiAttributeOutRelationships;
|
|
56993
57135
|
'links'?: ObjectLinks;
|
|
@@ -57007,10 +57149,16 @@ export declare interface JsonApiAttributePatch {
|
|
|
57007
57149
|
* API identifier of an object
|
|
57008
57150
|
*/
|
|
57009
57151
|
'id': string;
|
|
57010
|
-
'attributes'?:
|
|
57152
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
57011
57153
|
'relationships'?: JsonApiAttributePatchRelationships;
|
|
57012
57154
|
}
|
|
57013
57155
|
|
|
57156
|
+
export declare interface JsonApiAttributePatchAttributes {
|
|
57157
|
+
'title'?: string;
|
|
57158
|
+
'description'?: string;
|
|
57159
|
+
'tags'?: Array<string>;
|
|
57160
|
+
}
|
|
57161
|
+
|
|
57014
57162
|
export declare interface JsonApiAttributePatchDocument {
|
|
57015
57163
|
'data': JsonApiAttributePatch;
|
|
57016
57164
|
}
|
|
@@ -57033,14 +57181,57 @@ export declare interface JsonApiAutomationIn {
|
|
|
57033
57181
|
* API identifier of an object
|
|
57034
57182
|
*/
|
|
57035
57183
|
'id': string;
|
|
57036
|
-
'attributes'?:
|
|
57037
|
-
'relationships'?:
|
|
57184
|
+
'attributes'?: JsonApiAutomationInAttributes;
|
|
57185
|
+
'relationships'?: JsonApiAutomationInRelationships;
|
|
57186
|
+
}
|
|
57187
|
+
|
|
57188
|
+
export declare interface JsonApiAutomationInAttributes {
|
|
57189
|
+
'title'?: string;
|
|
57190
|
+
'description'?: string;
|
|
57191
|
+
'tags'?: Array<string>;
|
|
57192
|
+
'areRelationsValid'?: boolean;
|
|
57193
|
+
/**
|
|
57194
|
+
* Additional details to be included in the automated message.
|
|
57195
|
+
*/
|
|
57196
|
+
'details'?: object;
|
|
57197
|
+
'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
57198
|
+
/**
|
|
57199
|
+
* Current state of the automation.
|
|
57200
|
+
*/
|
|
57201
|
+
'state'?: JsonApiAutomationInAttributesStateEnum;
|
|
57202
|
+
/**
|
|
57203
|
+
* Specify automation evaluation mode.
|
|
57204
|
+
*/
|
|
57205
|
+
'evaluationMode'?: JsonApiAutomationInAttributesEvaluationModeEnum;
|
|
57206
|
+
'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
57207
|
+
'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
57208
|
+
'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
57209
|
+
'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
57210
|
+
'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
57211
|
+
'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
57212
|
+
'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
57213
|
+
'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
57214
|
+
/**
|
|
57215
|
+
* External recipients of the automation action results.
|
|
57216
|
+
*/
|
|
57217
|
+
'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
57038
57218
|
}
|
|
57039
57219
|
|
|
57220
|
+
export declare type JsonApiAutomationInAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
57221
|
+
|
|
57222
|
+
export declare type JsonApiAutomationInAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
57223
|
+
|
|
57040
57224
|
export declare interface JsonApiAutomationInDocument {
|
|
57041
57225
|
'data': JsonApiAutomationIn;
|
|
57042
57226
|
}
|
|
57043
57227
|
|
|
57228
|
+
export declare interface JsonApiAutomationInRelationships {
|
|
57229
|
+
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
57230
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
57231
|
+
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
57232
|
+
'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
57233
|
+
}
|
|
57234
|
+
|
|
57044
57235
|
export declare type JsonApiAutomationInTypeEnum = 'automation';
|
|
57045
57236
|
|
|
57046
57237
|
/**
|
|
@@ -57065,7 +57256,7 @@ export declare interface JsonApiAutomationOut {
|
|
|
57065
57256
|
* API identifier of an object
|
|
57066
57257
|
*/
|
|
57067
57258
|
'id': string;
|
|
57068
|
-
'meta'?:
|
|
57259
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57069
57260
|
'attributes'?: JsonApiAutomationOutAttributes;
|
|
57070
57261
|
'relationships'?: JsonApiAutomationOutRelationships;
|
|
57071
57262
|
}
|
|
@@ -57079,7 +57270,7 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
57079
57270
|
* Additional details to be included in the automated message.
|
|
57080
57271
|
*/
|
|
57081
57272
|
'details'?: object;
|
|
57082
|
-
'metadata'?:
|
|
57273
|
+
'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
57083
57274
|
/**
|
|
57084
57275
|
* Current state of the automation.
|
|
57085
57276
|
*/
|
|
@@ -57088,18 +57279,18 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
57088
57279
|
* Specify automation evaluation mode.
|
|
57089
57280
|
*/
|
|
57090
57281
|
'evaluationMode'?: JsonApiAutomationOutAttributesEvaluationModeEnum;
|
|
57091
|
-
'schedule'?:
|
|
57092
|
-
'alert'?:
|
|
57093
|
-
'tabularExports'?: Array<
|
|
57094
|
-
'visualExports'?: Array<
|
|
57095
|
-
'imageExports'?: Array<
|
|
57096
|
-
'rawExports'?: Array<
|
|
57097
|
-
'slidesExports'?: Array<
|
|
57098
|
-
'dashboardTabularExports'?: Array<
|
|
57282
|
+
'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
57283
|
+
'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
57284
|
+
'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
57285
|
+
'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
57286
|
+
'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
57287
|
+
'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
57288
|
+
'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
57289
|
+
'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
57099
57290
|
/**
|
|
57100
57291
|
* External recipients of the automation action results.
|
|
57101
57292
|
*/
|
|
57102
|
-
'externalRecipients'?: Array<
|
|
57293
|
+
'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
57103
57294
|
/**
|
|
57104
57295
|
* Time of the entity creation.
|
|
57105
57296
|
*/
|
|
@@ -57110,86 +57301,10 @@ export declare interface JsonApiAutomationOutAttributes {
|
|
|
57110
57301
|
'modifiedAt'?: string | null;
|
|
57111
57302
|
}
|
|
57112
57303
|
|
|
57113
|
-
export declare interface JsonApiAutomationOutAttributesAlert {
|
|
57114
|
-
'execution': AlertAfm;
|
|
57115
|
-
'condition': AlertCondition;
|
|
57116
|
-
/**
|
|
57117
|
-
* 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. ONCE_PER_INTERVAL - alert is triggered when the condition is met, then suppressed for the interval. If no interval is specified, it behaves as ALWAYS.
|
|
57118
|
-
*/
|
|
57119
|
-
'trigger'?: JsonApiAutomationOutAttributesAlertTriggerEnum;
|
|
57120
|
-
/**
|
|
57121
|
-
* Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
|
|
57122
|
-
*/
|
|
57123
|
-
'interval'?: JsonApiAutomationOutAttributesAlertIntervalEnum;
|
|
57124
|
-
}
|
|
57125
|
-
|
|
57126
|
-
export declare type JsonApiAutomationOutAttributesAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
|
|
57127
|
-
|
|
57128
|
-
export declare type JsonApiAutomationOutAttributesAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
|
|
57129
|
-
|
|
57130
|
-
export declare interface JsonApiAutomationOutAttributesDashboardTabularExportsInner {
|
|
57131
|
-
'requestPayload': DashboardTabularExportRequestV2;
|
|
57132
|
-
}
|
|
57133
|
-
|
|
57134
57304
|
export declare type JsonApiAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
57135
57305
|
|
|
57136
|
-
export declare interface JsonApiAutomationOutAttributesExternalRecipientsInner {
|
|
57137
|
-
/**
|
|
57138
|
-
* E-mail address to send notifications from.
|
|
57139
|
-
*/
|
|
57140
|
-
'email': string;
|
|
57141
|
-
}
|
|
57142
|
-
|
|
57143
|
-
export declare interface JsonApiAutomationOutAttributesImageExportsInner {
|
|
57144
|
-
'requestPayload': ImageExportRequest;
|
|
57145
|
-
}
|
|
57146
|
-
|
|
57147
|
-
/**
|
|
57148
|
-
* Additional information for the automation.
|
|
57149
|
-
*/
|
|
57150
|
-
export declare interface JsonApiAutomationOutAttributesMetadata {
|
|
57151
|
-
[key: string]: any;
|
|
57152
|
-
'widget'?: string;
|
|
57153
|
-
'visibleFilters'?: Array<VisibleFilter>;
|
|
57154
|
-
}
|
|
57155
|
-
|
|
57156
|
-
export declare interface JsonApiAutomationOutAttributesRawExportsInner {
|
|
57157
|
-
'requestPayload': RawExportAutomationRequest;
|
|
57158
|
-
}
|
|
57159
|
-
|
|
57160
|
-
export declare interface JsonApiAutomationOutAttributesSchedule {
|
|
57161
|
-
/**
|
|
57162
|
-
* 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.
|
|
57163
|
-
*/
|
|
57164
|
-
'cron': string;
|
|
57165
|
-
/**
|
|
57166
|
-
* Human-readable description of the cron expression.
|
|
57167
|
-
*/
|
|
57168
|
-
'cronDescription'?: string;
|
|
57169
|
-
/**
|
|
57170
|
-
* Timezone in which the schedule is defined.
|
|
57171
|
-
*/
|
|
57172
|
-
'timezone': string;
|
|
57173
|
-
/**
|
|
57174
|
-
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
57175
|
-
*/
|
|
57176
|
-
'firstRun'?: string;
|
|
57177
|
-
}
|
|
57178
|
-
|
|
57179
|
-
export declare interface JsonApiAutomationOutAttributesSlidesExportsInner {
|
|
57180
|
-
'requestPayload': SlidesExportRequest;
|
|
57181
|
-
}
|
|
57182
|
-
|
|
57183
57306
|
export declare type JsonApiAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
57184
57307
|
|
|
57185
|
-
export declare interface JsonApiAutomationOutAttributesTabularExportsInner {
|
|
57186
|
-
'requestPayload': TabularExportRequest;
|
|
57187
|
-
}
|
|
57188
|
-
|
|
57189
|
-
export declare interface JsonApiAutomationOutAttributesVisualExportsInner {
|
|
57190
|
-
'requestPayload': VisualExportRequest;
|
|
57191
|
-
}
|
|
57192
|
-
|
|
57193
57308
|
export declare interface JsonApiAutomationOutDocument {
|
|
57194
57309
|
'data': JsonApiAutomationOut;
|
|
57195
57310
|
'links'?: ObjectLinks;
|
|
@@ -57210,7 +57325,7 @@ export declare type JsonApiAutomationOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
57210
57325
|
export declare interface JsonApiAutomationOutList {
|
|
57211
57326
|
'data': Array<JsonApiAutomationOutWithLinks>;
|
|
57212
57327
|
'links'?: ListLinks;
|
|
57213
|
-
'meta'?:
|
|
57328
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57214
57329
|
/**
|
|
57215
57330
|
* Included resources
|
|
57216
57331
|
*/
|
|
@@ -57218,38 +57333,13 @@ export declare interface JsonApiAutomationOutList {
|
|
|
57218
57333
|
}
|
|
57219
57334
|
|
|
57220
57335
|
export declare interface JsonApiAutomationOutRelationships {
|
|
57221
|
-
'notificationChannel'?:
|
|
57222
|
-
'analyticalDashboard'?:
|
|
57223
|
-
'createdBy'?:
|
|
57224
|
-
'modifiedBy'?:
|
|
57225
|
-
'exportDefinitions'?:
|
|
57226
|
-
'recipients'?:
|
|
57227
|
-
'automationResults'?:
|
|
57228
|
-
}
|
|
57229
|
-
|
|
57230
|
-
export declare interface JsonApiAutomationOutRelationshipsAutomationResults {
|
|
57231
|
-
/**
|
|
57232
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
57233
|
-
*/
|
|
57234
|
-
'data': Array<JsonApiAutomationResultLinkage>;
|
|
57235
|
-
}
|
|
57236
|
-
|
|
57237
|
-
export declare interface JsonApiAutomationOutRelationshipsExportDefinitions {
|
|
57238
|
-
/**
|
|
57239
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
57240
|
-
*/
|
|
57241
|
-
'data': Array<JsonApiExportDefinitionLinkage>;
|
|
57242
|
-
}
|
|
57243
|
-
|
|
57244
|
-
export declare interface JsonApiAutomationOutRelationshipsNotificationChannel {
|
|
57245
|
-
'data': JsonApiNotificationChannelLinkage | null;
|
|
57246
|
-
}
|
|
57247
|
-
|
|
57248
|
-
export declare interface JsonApiAutomationOutRelationshipsRecipients {
|
|
57249
|
-
/**
|
|
57250
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
57251
|
-
*/
|
|
57252
|
-
'data': Array<JsonApiUserLinkage>;
|
|
57336
|
+
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
57337
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
57338
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57339
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57340
|
+
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
57341
|
+
'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
57342
|
+
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
57253
57343
|
}
|
|
57254
57344
|
|
|
57255
57345
|
export declare type JsonApiAutomationOutTypeEnum = 'automation';
|
|
@@ -57263,7 +57353,7 @@ export declare interface JsonApiAutomationOutWithLinks {
|
|
|
57263
57353
|
* API identifier of an object
|
|
57264
57354
|
*/
|
|
57265
57355
|
'id': string;
|
|
57266
|
-
'meta'?:
|
|
57356
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57267
57357
|
'attributes'?: JsonApiAutomationOutAttributes;
|
|
57268
57358
|
'relationships'?: JsonApiAutomationOutRelationships;
|
|
57269
57359
|
'links'?: ObjectLinks;
|
|
@@ -57283,57 +57373,14 @@ export declare interface JsonApiAutomationPatch {
|
|
|
57283
57373
|
* API identifier of an object
|
|
57284
57374
|
*/
|
|
57285
57375
|
'id': string;
|
|
57286
|
-
'attributes'?:
|
|
57287
|
-
'relationships'?:
|
|
57376
|
+
'attributes'?: JsonApiAutomationInAttributes;
|
|
57377
|
+
'relationships'?: JsonApiAutomationInRelationships;
|
|
57288
57378
|
}
|
|
57289
57379
|
|
|
57290
|
-
export declare interface JsonApiAutomationPatchAttributes {
|
|
57291
|
-
'title'?: string;
|
|
57292
|
-
'description'?: string;
|
|
57293
|
-
'tags'?: Array<string>;
|
|
57294
|
-
'areRelationsValid'?: boolean;
|
|
57295
|
-
/**
|
|
57296
|
-
* Additional details to be included in the automated message.
|
|
57297
|
-
*/
|
|
57298
|
-
'details'?: object;
|
|
57299
|
-
'metadata'?: JsonApiAutomationOutAttributesMetadata | null;
|
|
57300
|
-
/**
|
|
57301
|
-
* Current state of the automation.
|
|
57302
|
-
*/
|
|
57303
|
-
'state'?: JsonApiAutomationPatchAttributesStateEnum;
|
|
57304
|
-
/**
|
|
57305
|
-
* Specify automation evaluation mode.
|
|
57306
|
-
*/
|
|
57307
|
-
'evaluationMode'?: JsonApiAutomationPatchAttributesEvaluationModeEnum;
|
|
57308
|
-
'schedule'?: JsonApiAutomationOutAttributesSchedule;
|
|
57309
|
-
'alert'?: JsonApiAutomationOutAttributesAlert;
|
|
57310
|
-
'tabularExports'?: Array<JsonApiAutomationOutAttributesTabularExportsInner>;
|
|
57311
|
-
'visualExports'?: Array<JsonApiAutomationOutAttributesVisualExportsInner>;
|
|
57312
|
-
'imageExports'?: Array<JsonApiAutomationOutAttributesImageExportsInner>;
|
|
57313
|
-
'rawExports'?: Array<JsonApiAutomationOutAttributesRawExportsInner>;
|
|
57314
|
-
'slidesExports'?: Array<JsonApiAutomationOutAttributesSlidesExportsInner>;
|
|
57315
|
-
'dashboardTabularExports'?: Array<JsonApiAutomationOutAttributesDashboardTabularExportsInner>;
|
|
57316
|
-
/**
|
|
57317
|
-
* External recipients of the automation action results.
|
|
57318
|
-
*/
|
|
57319
|
-
'externalRecipients'?: Array<JsonApiAutomationOutAttributesExternalRecipientsInner>;
|
|
57320
|
-
}
|
|
57321
|
-
|
|
57322
|
-
export declare type JsonApiAutomationPatchAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
57323
|
-
|
|
57324
|
-
export declare type JsonApiAutomationPatchAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
57325
|
-
|
|
57326
57380
|
export declare interface JsonApiAutomationPatchDocument {
|
|
57327
57381
|
'data': JsonApiAutomationPatch;
|
|
57328
57382
|
}
|
|
57329
57383
|
|
|
57330
|
-
export declare interface JsonApiAutomationPatchRelationships {
|
|
57331
|
-
'notificationChannel'?: JsonApiAutomationOutRelationshipsNotificationChannel;
|
|
57332
|
-
'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
|
|
57333
|
-
'exportDefinitions'?: JsonApiAutomationOutRelationshipsExportDefinitions;
|
|
57334
|
-
'recipients'?: JsonApiAutomationOutRelationshipsRecipients;
|
|
57335
|
-
}
|
|
57336
|
-
|
|
57337
57384
|
export declare type JsonApiAutomationPatchTypeEnum = 'automation';
|
|
57338
57385
|
|
|
57339
57386
|
/**
|
|
@@ -57383,7 +57430,7 @@ export declare type JsonApiAutomationResultOutAttributesStatusEnum = 'SUCCESS' |
|
|
|
57383
57430
|
export declare interface JsonApiAutomationResultOutList {
|
|
57384
57431
|
'data': Array<JsonApiAutomationResultOutWithLinks>;
|
|
57385
57432
|
'links'?: ListLinks;
|
|
57386
|
-
'meta'?:
|
|
57433
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57387
57434
|
/**
|
|
57388
57435
|
* Included resources
|
|
57389
57436
|
*/
|
|
@@ -57391,7 +57438,11 @@ export declare interface JsonApiAutomationResultOutList {
|
|
|
57391
57438
|
}
|
|
57392
57439
|
|
|
57393
57440
|
export declare interface JsonApiAutomationResultOutRelationships {
|
|
57394
|
-
'automation'?:
|
|
57441
|
+
'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
|
|
57442
|
+
}
|
|
57443
|
+
|
|
57444
|
+
export declare interface JsonApiAutomationResultOutRelationshipsAutomation {
|
|
57445
|
+
'data': JsonApiAutomationLinkage | null;
|
|
57395
57446
|
}
|
|
57396
57447
|
|
|
57397
57448
|
export declare type JsonApiAutomationResultOutTypeEnum = 'automationResult';
|
|
@@ -57467,7 +57518,7 @@ export declare interface JsonApiColorPaletteOutDocument {
|
|
|
57467
57518
|
export declare interface JsonApiColorPaletteOutList {
|
|
57468
57519
|
'data': Array<JsonApiColorPaletteOutWithLinks>;
|
|
57469
57520
|
'links'?: ListLinks;
|
|
57470
|
-
'meta'?:
|
|
57521
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57471
57522
|
}
|
|
57472
57523
|
|
|
57473
57524
|
export declare type JsonApiColorPaletteOutTypeEnum = 'colorPalette';
|
|
@@ -57528,15 +57579,7 @@ export declare interface JsonApiCookieSecurityConfigurationIn {
|
|
|
57528
57579
|
* API identifier of an object
|
|
57529
57580
|
*/
|
|
57530
57581
|
'id': string;
|
|
57531
|
-
'attributes'?:
|
|
57532
|
-
}
|
|
57533
|
-
|
|
57534
|
-
export declare interface JsonApiCookieSecurityConfigurationInAttributes {
|
|
57535
|
-
'lastRotation'?: string;
|
|
57536
|
-
/**
|
|
57537
|
-
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
57538
|
-
*/
|
|
57539
|
-
'rotationInterval'?: string;
|
|
57582
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
57540
57583
|
}
|
|
57541
57584
|
|
|
57542
57585
|
export declare interface JsonApiCookieSecurityConfigurationInDocument {
|
|
@@ -57557,7 +57600,15 @@ export declare interface JsonApiCookieSecurityConfigurationOut {
|
|
|
57557
57600
|
* API identifier of an object
|
|
57558
57601
|
*/
|
|
57559
57602
|
'id': string;
|
|
57560
|
-
'attributes'?:
|
|
57603
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
57604
|
+
}
|
|
57605
|
+
|
|
57606
|
+
export declare interface JsonApiCookieSecurityConfigurationOutAttributes {
|
|
57607
|
+
'lastRotation'?: string;
|
|
57608
|
+
/**
|
|
57609
|
+
* Length of interval between automatic rotations expressed in format of ISO 8601 duration
|
|
57610
|
+
*/
|
|
57611
|
+
'rotationInterval'?: string;
|
|
57561
57612
|
}
|
|
57562
57613
|
|
|
57563
57614
|
export declare interface JsonApiCookieSecurityConfigurationOutDocument {
|
|
@@ -57579,7 +57630,7 @@ export declare interface JsonApiCookieSecurityConfigurationPatch {
|
|
|
57579
57630
|
* API identifier of an object
|
|
57580
57631
|
*/
|
|
57581
57632
|
'id': string;
|
|
57582
|
-
'attributes'?:
|
|
57633
|
+
'attributes'?: JsonApiCookieSecurityConfigurationOutAttributes;
|
|
57583
57634
|
}
|
|
57584
57635
|
|
|
57585
57636
|
export declare interface JsonApiCookieSecurityConfigurationPatchDocument {
|
|
@@ -57639,7 +57690,7 @@ export declare interface JsonApiCspDirectiveOutDocument {
|
|
|
57639
57690
|
export declare interface JsonApiCspDirectiveOutList {
|
|
57640
57691
|
'data': Array<JsonApiCspDirectiveOutWithLinks>;
|
|
57641
57692
|
'links'?: ListLinks;
|
|
57642
|
-
'meta'?:
|
|
57693
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57643
57694
|
}
|
|
57644
57695
|
|
|
57645
57696
|
export declare type JsonApiCspDirectiveOutTypeEnum = 'cspDirective';
|
|
@@ -57696,7 +57747,7 @@ export declare interface JsonApiCustomApplicationSettingIn {
|
|
|
57696
57747
|
* API identifier of an object
|
|
57697
57748
|
*/
|
|
57698
57749
|
'id': string;
|
|
57699
|
-
'attributes':
|
|
57750
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57700
57751
|
}
|
|
57701
57752
|
|
|
57702
57753
|
export declare interface JsonApiCustomApplicationSettingInDocument {
|
|
@@ -57717,16 +57768,8 @@ export declare interface JsonApiCustomApplicationSettingOut {
|
|
|
57717
57768
|
* API identifier of an object
|
|
57718
57769
|
*/
|
|
57719
57770
|
'id': string;
|
|
57720
|
-
'meta'?:
|
|
57721
|
-
'attributes':
|
|
57722
|
-
}
|
|
57723
|
-
|
|
57724
|
-
export declare interface JsonApiCustomApplicationSettingOutAttributes {
|
|
57725
|
-
'applicationName': string;
|
|
57726
|
-
/**
|
|
57727
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
57728
|
-
*/
|
|
57729
|
-
'content': object;
|
|
57771
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57772
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57730
57773
|
}
|
|
57731
57774
|
|
|
57732
57775
|
export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
@@ -57740,7 +57783,7 @@ export declare interface JsonApiCustomApplicationSettingOutDocument {
|
|
|
57740
57783
|
export declare interface JsonApiCustomApplicationSettingOutList {
|
|
57741
57784
|
'data': Array<JsonApiCustomApplicationSettingOutWithLinks>;
|
|
57742
57785
|
'links'?: ListLinks;
|
|
57743
|
-
'meta'?:
|
|
57786
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57744
57787
|
}
|
|
57745
57788
|
|
|
57746
57789
|
export declare type JsonApiCustomApplicationSettingOutTypeEnum = 'customApplicationSetting';
|
|
@@ -57754,8 +57797,8 @@ export declare interface JsonApiCustomApplicationSettingOutWithLinks {
|
|
|
57754
57797
|
* API identifier of an object
|
|
57755
57798
|
*/
|
|
57756
57799
|
'id': string;
|
|
57757
|
-
'meta'?:
|
|
57758
|
-
'attributes':
|
|
57800
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57801
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57759
57802
|
'links'?: ObjectLinks;
|
|
57760
57803
|
}
|
|
57761
57804
|
|
|
@@ -57802,7 +57845,15 @@ export declare interface JsonApiCustomApplicationSettingPostOptionalId {
|
|
|
57802
57845
|
* API identifier of an object
|
|
57803
57846
|
*/
|
|
57804
57847
|
'id'?: string;
|
|
57805
|
-
'attributes':
|
|
57848
|
+
'attributes': JsonApiCustomApplicationSettingPostOptionalIdAttributes;
|
|
57849
|
+
}
|
|
57850
|
+
|
|
57851
|
+
export declare interface JsonApiCustomApplicationSettingPostOptionalIdAttributes {
|
|
57852
|
+
'applicationName': string;
|
|
57853
|
+
/**
|
|
57854
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
57855
|
+
*/
|
|
57856
|
+
'content': object;
|
|
57806
57857
|
}
|
|
57807
57858
|
|
|
57808
57859
|
export declare interface JsonApiCustomApplicationSettingPostOptionalIdDocument {
|
|
@@ -57823,7 +57874,12 @@ export declare interface JsonApiCustomGeoCollectionIn {
|
|
|
57823
57874
|
* API identifier of an object
|
|
57824
57875
|
*/
|
|
57825
57876
|
'id': string;
|
|
57826
|
-
'attributes'?:
|
|
57877
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57878
|
+
}
|
|
57879
|
+
|
|
57880
|
+
export declare interface JsonApiCustomGeoCollectionInAttributes {
|
|
57881
|
+
'name'?: string | null;
|
|
57882
|
+
'description'?: string | null;
|
|
57827
57883
|
}
|
|
57828
57884
|
|
|
57829
57885
|
export declare interface JsonApiCustomGeoCollectionInDocument {
|
|
@@ -57844,12 +57900,7 @@ export declare interface JsonApiCustomGeoCollectionOut {
|
|
|
57844
57900
|
* API identifier of an object
|
|
57845
57901
|
*/
|
|
57846
57902
|
'id': string;
|
|
57847
|
-
'attributes'?:
|
|
57848
|
-
}
|
|
57849
|
-
|
|
57850
|
-
export declare interface JsonApiCustomGeoCollectionOutAttributes {
|
|
57851
|
-
'name'?: string | null;
|
|
57852
|
-
'description'?: string | null;
|
|
57903
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57853
57904
|
}
|
|
57854
57905
|
|
|
57855
57906
|
export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
@@ -57863,7 +57914,11 @@ export declare interface JsonApiCustomGeoCollectionOutDocument {
|
|
|
57863
57914
|
export declare interface JsonApiCustomGeoCollectionOutList {
|
|
57864
57915
|
'data': Array<JsonApiCustomGeoCollectionOutWithLinks>;
|
|
57865
57916
|
'links'?: ListLinks;
|
|
57866
|
-
'meta'?:
|
|
57917
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57918
|
+
}
|
|
57919
|
+
|
|
57920
|
+
export declare interface JsonApiCustomGeoCollectionOutListMeta {
|
|
57921
|
+
'page'?: PageMetadata;
|
|
57867
57922
|
}
|
|
57868
57923
|
|
|
57869
57924
|
export declare type JsonApiCustomGeoCollectionOutTypeEnum = 'customGeoCollection';
|
|
@@ -57877,7 +57932,7 @@ export declare interface JsonApiCustomGeoCollectionOutWithLinks {
|
|
|
57877
57932
|
* API identifier of an object
|
|
57878
57933
|
*/
|
|
57879
57934
|
'id': string;
|
|
57880
|
-
'attributes'?:
|
|
57935
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57881
57936
|
'links'?: ObjectLinks;
|
|
57882
57937
|
}
|
|
57883
57938
|
|
|
@@ -57895,7 +57950,7 @@ export declare interface JsonApiCustomGeoCollectionPatch {
|
|
|
57895
57950
|
* API identifier of an object
|
|
57896
57951
|
*/
|
|
57897
57952
|
'id': string;
|
|
57898
|
-
'attributes'?:
|
|
57953
|
+
'attributes'?: JsonApiCustomGeoCollectionInAttributes;
|
|
57899
57954
|
}
|
|
57900
57955
|
|
|
57901
57956
|
export declare interface JsonApiCustomGeoCollectionPatchDocument {
|
|
@@ -57947,7 +58002,7 @@ export declare interface JsonApiDashboardPluginOut {
|
|
|
57947
58002
|
* API identifier of an object
|
|
57948
58003
|
*/
|
|
57949
58004
|
'id': string;
|
|
57950
|
-
'meta'?:
|
|
58005
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
57951
58006
|
'attributes'?: JsonApiDashboardPluginOutAttributes;
|
|
57952
58007
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
57953
58008
|
}
|
|
@@ -57986,7 +58041,7 @@ export declare interface JsonApiDashboardPluginOutDocument {
|
|
|
57986
58041
|
export declare interface JsonApiDashboardPluginOutList {
|
|
57987
58042
|
'data': Array<JsonApiDashboardPluginOutWithLinks>;
|
|
57988
58043
|
'links'?: ListLinks;
|
|
57989
|
-
'meta'?:
|
|
58044
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
57990
58045
|
/**
|
|
57991
58046
|
* Included resources
|
|
57992
58047
|
*/
|
|
@@ -57994,8 +58049,8 @@ export declare interface JsonApiDashboardPluginOutList {
|
|
|
57994
58049
|
}
|
|
57995
58050
|
|
|
57996
58051
|
export declare interface JsonApiDashboardPluginOutRelationships {
|
|
57997
|
-
'createdBy'?:
|
|
57998
|
-
'modifiedBy'?:
|
|
58052
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
58053
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
57999
58054
|
}
|
|
58000
58055
|
|
|
58001
58056
|
export declare type JsonApiDashboardPluginOutTypeEnum = 'dashboardPlugin';
|
|
@@ -58009,7 +58064,7 @@ export declare interface JsonApiDashboardPluginOutWithLinks {
|
|
|
58009
58064
|
* API identifier of an object
|
|
58010
58065
|
*/
|
|
58011
58066
|
'id': string;
|
|
58012
|
-
'meta'?:
|
|
58067
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58013
58068
|
'attributes'?: JsonApiDashboardPluginOutAttributes;
|
|
58014
58069
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
58015
58070
|
'links'?: ObjectLinks;
|
|
@@ -58092,7 +58147,7 @@ export declare interface JsonApiDatasetOut {
|
|
|
58092
58147
|
* API identifier of an object
|
|
58093
58148
|
*/
|
|
58094
58149
|
'id': string;
|
|
58095
|
-
'meta'?:
|
|
58150
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58096
58151
|
'attributes': JsonApiDatasetOutAttributes;
|
|
58097
58152
|
'relationships'?: JsonApiDatasetOutRelationships;
|
|
58098
58153
|
}
|
|
@@ -58178,7 +58233,7 @@ export declare type JsonApiDatasetOutIncludes = JsonApiAggregatedFactOutWithLink
|
|
|
58178
58233
|
export declare interface JsonApiDatasetOutList {
|
|
58179
58234
|
'data': Array<JsonApiDatasetOutWithLinks>;
|
|
58180
58235
|
'links'?: ListLinks;
|
|
58181
|
-
'meta'?:
|
|
58236
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58182
58237
|
/**
|
|
58183
58238
|
* Included resources
|
|
58184
58239
|
*/
|
|
@@ -58186,10 +58241,10 @@ export declare interface JsonApiDatasetOutList {
|
|
|
58186
58241
|
}
|
|
58187
58242
|
|
|
58188
58243
|
export declare interface JsonApiDatasetOutRelationships {
|
|
58189
|
-
'attributes'?:
|
|
58190
|
-
'facts'?:
|
|
58244
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
58245
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
58191
58246
|
'aggregatedFacts'?: JsonApiDatasetOutRelationshipsAggregatedFacts;
|
|
58192
|
-
'references'?:
|
|
58247
|
+
'references'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
58193
58248
|
'workspaceDataFilters'?: JsonApiDatasetOutRelationshipsWorkspaceDataFilters;
|
|
58194
58249
|
}
|
|
58195
58250
|
|
|
@@ -58200,6 +58255,20 @@ export declare interface JsonApiDatasetOutRelationshipsAggregatedFacts {
|
|
|
58200
58255
|
'data': Array<JsonApiAggregatedFactLinkage>;
|
|
58201
58256
|
}
|
|
58202
58257
|
|
|
58258
|
+
export declare interface JsonApiDatasetOutRelationshipsAttributes {
|
|
58259
|
+
/**
|
|
58260
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
58261
|
+
*/
|
|
58262
|
+
'data': Array<JsonApiAttributeLinkage>;
|
|
58263
|
+
}
|
|
58264
|
+
|
|
58265
|
+
export declare interface JsonApiDatasetOutRelationshipsFacts {
|
|
58266
|
+
/**
|
|
58267
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
58268
|
+
*/
|
|
58269
|
+
'data': Array<JsonApiFactLinkage>;
|
|
58270
|
+
}
|
|
58271
|
+
|
|
58203
58272
|
export declare interface JsonApiDatasetOutRelationshipsWorkspaceDataFilters {
|
|
58204
58273
|
/**
|
|
58205
58274
|
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
@@ -58218,7 +58287,7 @@ export declare interface JsonApiDatasetOutWithLinks {
|
|
|
58218
58287
|
* API identifier of an object
|
|
58219
58288
|
*/
|
|
58220
58289
|
'id': string;
|
|
58221
|
-
'meta'?:
|
|
58290
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58222
58291
|
'attributes': JsonApiDatasetOutAttributes;
|
|
58223
58292
|
'relationships'?: JsonApiDatasetOutRelationships;
|
|
58224
58293
|
'links'?: ObjectLinks;
|
|
@@ -58238,7 +58307,7 @@ export declare interface JsonApiDatasetPatch {
|
|
|
58238
58307
|
* API identifier of an object
|
|
58239
58308
|
*/
|
|
58240
58309
|
'id': string;
|
|
58241
|
-
'attributes'?:
|
|
58310
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
58242
58311
|
}
|
|
58243
58312
|
|
|
58244
58313
|
export declare interface JsonApiDatasetPatchDocument {
|
|
@@ -58282,7 +58351,7 @@ export declare interface JsonApiDataSourceIdentifierOutDocument {
|
|
|
58282
58351
|
export declare interface JsonApiDataSourceIdentifierOutList {
|
|
58283
58352
|
'data': Array<JsonApiDataSourceIdentifierOutWithLinks>;
|
|
58284
58353
|
'links'?: ListLinks;
|
|
58285
|
-
'meta'?:
|
|
58354
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58286
58355
|
}
|
|
58287
58356
|
|
|
58288
58357
|
export declare type JsonApiDataSourceIdentifierOutTypeEnum = 'dataSourceIdentifier';
|
|
@@ -58472,7 +58541,7 @@ export declare interface JsonApiDataSourceOutDocument {
|
|
|
58472
58541
|
export declare interface JsonApiDataSourceOutList {
|
|
58473
58542
|
'data': Array<JsonApiDataSourceOutWithLinks>;
|
|
58474
58543
|
'links'?: ListLinks;
|
|
58475
|
-
'meta'?:
|
|
58544
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58476
58545
|
}
|
|
58477
58546
|
|
|
58478
58547
|
export declare interface JsonApiDataSourceOutMeta {
|
|
@@ -58617,7 +58686,7 @@ export declare interface JsonApiEntitlementOutDocument {
|
|
|
58617
58686
|
export declare interface JsonApiEntitlementOutList {
|
|
58618
58687
|
'data': Array<JsonApiEntitlementOutWithLinks>;
|
|
58619
58688
|
'links'?: ListLinks;
|
|
58620
|
-
'meta'?:
|
|
58689
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58621
58690
|
}
|
|
58622
58691
|
|
|
58623
58692
|
export declare type JsonApiEntitlementOutTypeEnum = 'entitlement';
|
|
@@ -58649,8 +58718,8 @@ export declare interface JsonApiExportDefinitionIn {
|
|
|
58649
58718
|
* API identifier of an object
|
|
58650
58719
|
*/
|
|
58651
58720
|
'id': string;
|
|
58652
|
-
'attributes'?:
|
|
58653
|
-
'relationships'?:
|
|
58721
|
+
'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
58722
|
+
'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
58654
58723
|
}
|
|
58655
58724
|
|
|
58656
58725
|
export declare interface JsonApiExportDefinitionInDocument {
|
|
@@ -58681,7 +58750,7 @@ export declare interface JsonApiExportDefinitionOut {
|
|
|
58681
58750
|
* API identifier of an object
|
|
58682
58751
|
*/
|
|
58683
58752
|
'id': string;
|
|
58684
|
-
'meta'?:
|
|
58753
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58685
58754
|
'attributes'?: JsonApiExportDefinitionOutAttributes;
|
|
58686
58755
|
'relationships'?: JsonApiExportDefinitionOutRelationships;
|
|
58687
58756
|
}
|
|
@@ -58728,23 +58797,27 @@ export declare type JsonApiExportDefinitionOutIncludes = JsonApiAnalyticalDashbo
|
|
|
58728
58797
|
export declare interface JsonApiExportDefinitionOutList {
|
|
58729
58798
|
'data': Array<JsonApiExportDefinitionOutWithLinks>;
|
|
58730
58799
|
'links'?: ListLinks;
|
|
58731
|
-
'meta'?:
|
|
58800
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58732
58801
|
/**
|
|
58733
58802
|
* Included resources
|
|
58734
58803
|
*/
|
|
58735
58804
|
'included'?: Array<JsonApiExportDefinitionOutIncludes>;
|
|
58736
58805
|
}
|
|
58737
58806
|
|
|
58807
|
+
export declare interface JsonApiExportDefinitionOutMeta {
|
|
58808
|
+
'origin'?: JsonApiAnalyticalDashboardOutMetaOrigin;
|
|
58809
|
+
}
|
|
58810
|
+
|
|
58738
58811
|
export declare interface JsonApiExportDefinitionOutRelationships {
|
|
58739
58812
|
'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
58740
|
-
'analyticalDashboard'?:
|
|
58741
|
-
'automation'?:
|
|
58742
|
-
'createdBy'?:
|
|
58743
|
-
'modifiedBy'?:
|
|
58813
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
58814
|
+
'automation'?: JsonApiAutomationResultOutRelationshipsAutomation;
|
|
58815
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
58816
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
58744
58817
|
}
|
|
58745
58818
|
|
|
58746
|
-
export declare interface
|
|
58747
|
-
'data':
|
|
58819
|
+
export declare interface JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard {
|
|
58820
|
+
'data': JsonApiAnalyticalDashboardLinkage | null;
|
|
58748
58821
|
}
|
|
58749
58822
|
|
|
58750
58823
|
export declare interface JsonApiExportDefinitionOutRelationshipsVisualizationObject {
|
|
@@ -58762,7 +58835,7 @@ export declare interface JsonApiExportDefinitionOutWithLinks {
|
|
|
58762
58835
|
* API identifier of an object
|
|
58763
58836
|
*/
|
|
58764
58837
|
'id': string;
|
|
58765
|
-
'meta'?:
|
|
58838
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
58766
58839
|
'attributes'?: JsonApiExportDefinitionOutAttributes;
|
|
58767
58840
|
'relationships'?: JsonApiExportDefinitionOutRelationships;
|
|
58768
58841
|
'links'?: ObjectLinks;
|
|
@@ -58782,27 +58855,14 @@ export declare interface JsonApiExportDefinitionPatch {
|
|
|
58782
58855
|
* API identifier of an object
|
|
58783
58856
|
*/
|
|
58784
58857
|
'id': string;
|
|
58785
|
-
'attributes'?:
|
|
58786
|
-
'relationships'?:
|
|
58787
|
-
}
|
|
58788
|
-
|
|
58789
|
-
export declare interface JsonApiExportDefinitionPatchAttributes {
|
|
58790
|
-
'title'?: string;
|
|
58791
|
-
'description'?: string;
|
|
58792
|
-
'tags'?: Array<string>;
|
|
58793
|
-
'requestPayload'?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
58794
|
-
'areRelationsValid'?: boolean;
|
|
58858
|
+
'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
58859
|
+
'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
58795
58860
|
}
|
|
58796
58861
|
|
|
58797
58862
|
export declare interface JsonApiExportDefinitionPatchDocument {
|
|
58798
58863
|
'data': JsonApiExportDefinitionPatch;
|
|
58799
58864
|
}
|
|
58800
58865
|
|
|
58801
|
-
export declare interface JsonApiExportDefinitionPatchRelationships {
|
|
58802
|
-
'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
58803
|
-
'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
|
|
58804
|
-
}
|
|
58805
|
-
|
|
58806
58866
|
export declare type JsonApiExportDefinitionPatchTypeEnum = 'exportDefinition';
|
|
58807
58867
|
|
|
58808
58868
|
/**
|
|
@@ -58817,14 +58877,27 @@ export declare interface JsonApiExportDefinitionPostOptionalId {
|
|
|
58817
58877
|
* API identifier of an object
|
|
58818
58878
|
*/
|
|
58819
58879
|
'id'?: string;
|
|
58820
|
-
'attributes'?:
|
|
58821
|
-
'relationships'?:
|
|
58880
|
+
'attributes'?: JsonApiExportDefinitionPostOptionalIdAttributes;
|
|
58881
|
+
'relationships'?: JsonApiExportDefinitionPostOptionalIdRelationships;
|
|
58882
|
+
}
|
|
58883
|
+
|
|
58884
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdAttributes {
|
|
58885
|
+
'title'?: string;
|
|
58886
|
+
'description'?: string;
|
|
58887
|
+
'tags'?: Array<string>;
|
|
58888
|
+
'requestPayload'?: JsonApiExportDefinitionOutAttributesRequestPayload;
|
|
58889
|
+
'areRelationsValid'?: boolean;
|
|
58822
58890
|
}
|
|
58823
58891
|
|
|
58824
58892
|
export declare interface JsonApiExportDefinitionPostOptionalIdDocument {
|
|
58825
58893
|
'data': JsonApiExportDefinitionPostOptionalId;
|
|
58826
58894
|
}
|
|
58827
58895
|
|
|
58896
|
+
export declare interface JsonApiExportDefinitionPostOptionalIdRelationships {
|
|
58897
|
+
'visualizationObject'?: JsonApiExportDefinitionOutRelationshipsVisualizationObject;
|
|
58898
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
58899
|
+
}
|
|
58900
|
+
|
|
58828
58901
|
export declare type JsonApiExportDefinitionPostOptionalIdTypeEnum = 'exportDefinition';
|
|
58829
58902
|
|
|
58830
58903
|
/**
|
|
@@ -58912,7 +58985,7 @@ export declare interface JsonApiExportTemplateOutDocument {
|
|
|
58912
58985
|
export declare interface JsonApiExportTemplateOutList {
|
|
58913
58986
|
'data': Array<JsonApiExportTemplateOutWithLinks>;
|
|
58914
58987
|
'links'?: ListLinks;
|
|
58915
|
-
'meta'?:
|
|
58988
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
58916
58989
|
}
|
|
58917
58990
|
|
|
58918
58991
|
export declare type JsonApiExportTemplateOutTypeEnum = 'exportTemplate';
|
|
@@ -59005,7 +59078,7 @@ export declare interface JsonApiFactOut {
|
|
|
59005
59078
|
* API identifier of an object
|
|
59006
59079
|
*/
|
|
59007
59080
|
'id': string;
|
|
59008
|
-
'meta'?:
|
|
59081
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59009
59082
|
'attributes'?: JsonApiFactOutAttributes;
|
|
59010
59083
|
'relationships'?: JsonApiFactOutRelationships;
|
|
59011
59084
|
}
|
|
@@ -59039,36 +59112,15 @@ export declare interface JsonApiFactOutDocument {
|
|
|
59039
59112
|
export declare interface JsonApiFactOutList {
|
|
59040
59113
|
'data': Array<JsonApiFactOutWithLinks>;
|
|
59041
59114
|
'links'?: ListLinks;
|
|
59042
|
-
'meta'?:
|
|
59115
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59043
59116
|
/**
|
|
59044
59117
|
* Included resources
|
|
59045
59118
|
*/
|
|
59046
59119
|
'included'?: Array<JsonApiDatasetOutWithLinks>;
|
|
59047
59120
|
}
|
|
59048
59121
|
|
|
59049
|
-
export declare interface JsonApiFactOutMeta {
|
|
59050
|
-
'origin'?: JsonApiFactOutMetaOrigin;
|
|
59051
|
-
}
|
|
59052
|
-
|
|
59053
|
-
export declare interface JsonApiFactOutMetaOrigin {
|
|
59054
|
-
/**
|
|
59055
|
-
* defines type of the origin of the entity
|
|
59056
|
-
*/
|
|
59057
|
-
'originType': JsonApiFactOutMetaOriginOriginTypeEnum;
|
|
59058
|
-
/**
|
|
59059
|
-
* defines id of the workspace where the entity comes from
|
|
59060
|
-
*/
|
|
59061
|
-
'originId': string;
|
|
59062
|
-
}
|
|
59063
|
-
|
|
59064
|
-
export declare type JsonApiFactOutMetaOriginOriginTypeEnum = 'NATIVE' | 'PARENT';
|
|
59065
|
-
|
|
59066
59122
|
export declare interface JsonApiFactOutRelationships {
|
|
59067
|
-
'dataset'?:
|
|
59068
|
-
}
|
|
59069
|
-
|
|
59070
|
-
export declare interface JsonApiFactOutRelationshipsDataset {
|
|
59071
|
-
'data': JsonApiDatasetLinkage | null;
|
|
59123
|
+
'dataset'?: JsonApiAttributeOutRelationshipsDataset;
|
|
59072
59124
|
}
|
|
59073
59125
|
|
|
59074
59126
|
export declare type JsonApiFactOutTypeEnum = 'fact';
|
|
@@ -59082,7 +59134,7 @@ export declare interface JsonApiFactOutWithLinks {
|
|
|
59082
59134
|
* API identifier of an object
|
|
59083
59135
|
*/
|
|
59084
59136
|
'id': string;
|
|
59085
|
-
'meta'?:
|
|
59137
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59086
59138
|
'attributes'?: JsonApiFactOutAttributes;
|
|
59087
59139
|
'relationships'?: JsonApiFactOutRelationships;
|
|
59088
59140
|
'links'?: ObjectLinks;
|
|
@@ -59102,7 +59154,7 @@ export declare interface JsonApiFactPatch {
|
|
|
59102
59154
|
* API identifier of an object
|
|
59103
59155
|
*/
|
|
59104
59156
|
'id': string;
|
|
59105
|
-
'attributes'?:
|
|
59157
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
59106
59158
|
}
|
|
59107
59159
|
|
|
59108
59160
|
export declare interface JsonApiFactPatchDocument {
|
|
@@ -59154,7 +59206,7 @@ export declare interface JsonApiFilterContextOut {
|
|
|
59154
59206
|
* API identifier of an object
|
|
59155
59207
|
*/
|
|
59156
59208
|
'id': string;
|
|
59157
|
-
'meta'?:
|
|
59209
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59158
59210
|
'attributes': JsonApiFilterContextOutAttributes;
|
|
59159
59211
|
'relationships'?: JsonApiFilterContextOutRelationships;
|
|
59160
59212
|
}
|
|
@@ -59190,7 +59242,7 @@ export declare type JsonApiFilterContextOutIncludes = JsonApiAttributeOutWithLin
|
|
|
59190
59242
|
export declare interface JsonApiFilterContextOutList {
|
|
59191
59243
|
'data': Array<JsonApiFilterContextOutWithLinks>;
|
|
59192
59244
|
'links'?: ListLinks;
|
|
59193
|
-
'meta'?:
|
|
59245
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59194
59246
|
/**
|
|
59195
59247
|
* Included resources
|
|
59196
59248
|
*/
|
|
@@ -59198,9 +59250,9 @@ export declare interface JsonApiFilterContextOutList {
|
|
|
59198
59250
|
}
|
|
59199
59251
|
|
|
59200
59252
|
export declare interface JsonApiFilterContextOutRelationships {
|
|
59201
|
-
'attributes'?:
|
|
59202
|
-
'datasets'?:
|
|
59203
|
-
'labels'?:
|
|
59253
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
59254
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
59255
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
59204
59256
|
}
|
|
59205
59257
|
|
|
59206
59258
|
export declare type JsonApiFilterContextOutTypeEnum = 'filterContext';
|
|
@@ -59214,7 +59266,7 @@ export declare interface JsonApiFilterContextOutWithLinks {
|
|
|
59214
59266
|
* API identifier of an object
|
|
59215
59267
|
*/
|
|
59216
59268
|
'id': string;
|
|
59217
|
-
'meta'?:
|
|
59269
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59218
59270
|
'attributes': JsonApiFilterContextOutAttributes;
|
|
59219
59271
|
'relationships'?: JsonApiFilterContextOutRelationships;
|
|
59220
59272
|
'links'?: ObjectLinks;
|
|
@@ -59287,14 +59339,34 @@ export declare interface JsonApiFilterViewIn {
|
|
|
59287
59339
|
* API identifier of an object
|
|
59288
59340
|
*/
|
|
59289
59341
|
'id': string;
|
|
59290
|
-
'attributes':
|
|
59291
|
-
'relationships'?:
|
|
59342
|
+
'attributes': JsonApiFilterViewInAttributes;
|
|
59343
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
59344
|
+
}
|
|
59345
|
+
|
|
59346
|
+
export declare interface JsonApiFilterViewInAttributes {
|
|
59347
|
+
'title': string;
|
|
59348
|
+
'description'?: string;
|
|
59349
|
+
'tags'?: Array<string>;
|
|
59350
|
+
'areRelationsValid'?: boolean;
|
|
59351
|
+
/**
|
|
59352
|
+
* Indicator whether the filter view should by applied by default.
|
|
59353
|
+
*/
|
|
59354
|
+
'isDefault'?: boolean;
|
|
59355
|
+
/**
|
|
59356
|
+
* The respective filter context.
|
|
59357
|
+
*/
|
|
59358
|
+
'content': object;
|
|
59292
59359
|
}
|
|
59293
59360
|
|
|
59294
59361
|
export declare interface JsonApiFilterViewInDocument {
|
|
59295
59362
|
'data': JsonApiFilterViewIn;
|
|
59296
59363
|
}
|
|
59297
59364
|
|
|
59365
|
+
export declare interface JsonApiFilterViewInRelationships {
|
|
59366
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
59367
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
59368
|
+
}
|
|
59369
|
+
|
|
59298
59370
|
export declare type JsonApiFilterViewInTypeEnum = 'filterView';
|
|
59299
59371
|
|
|
59300
59372
|
/**
|
|
@@ -59309,23 +59381,8 @@ export declare interface JsonApiFilterViewOut {
|
|
|
59309
59381
|
* API identifier of an object
|
|
59310
59382
|
*/
|
|
59311
59383
|
'id': string;
|
|
59312
|
-
'attributes':
|
|
59313
|
-
'relationships'?:
|
|
59314
|
-
}
|
|
59315
|
-
|
|
59316
|
-
export declare interface JsonApiFilterViewOutAttributes {
|
|
59317
|
-
'title': string;
|
|
59318
|
-
'description'?: string;
|
|
59319
|
-
'tags'?: Array<string>;
|
|
59320
|
-
'areRelationsValid'?: boolean;
|
|
59321
|
-
/**
|
|
59322
|
-
* Indicator whether the filter view should by applied by default.
|
|
59323
|
-
*/
|
|
59324
|
-
'isDefault'?: boolean;
|
|
59325
|
-
/**
|
|
59326
|
-
* The respective filter context.
|
|
59327
|
-
*/
|
|
59328
|
-
'content': object;
|
|
59384
|
+
'attributes': JsonApiFilterViewInAttributes;
|
|
59385
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
59329
59386
|
}
|
|
59330
59387
|
|
|
59331
59388
|
export declare interface JsonApiFilterViewOutDocument {
|
|
@@ -59348,26 +59405,13 @@ export declare type JsonApiFilterViewOutIncludes = JsonApiAnalyticalDashboardOut
|
|
|
59348
59405
|
export declare interface JsonApiFilterViewOutList {
|
|
59349
59406
|
'data': Array<JsonApiFilterViewOutWithLinks>;
|
|
59350
59407
|
'links'?: ListLinks;
|
|
59351
|
-
'meta'?:
|
|
59408
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59352
59409
|
/**
|
|
59353
59410
|
* Included resources
|
|
59354
59411
|
*/
|
|
59355
59412
|
'included'?: Array<JsonApiFilterViewOutIncludes>;
|
|
59356
59413
|
}
|
|
59357
59414
|
|
|
59358
|
-
export declare interface JsonApiFilterViewOutRelationships {
|
|
59359
|
-
'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
|
|
59360
|
-
'user'?: JsonApiFilterViewOutRelationshipsUser;
|
|
59361
|
-
}
|
|
59362
|
-
|
|
59363
|
-
export declare interface JsonApiFilterViewOutRelationshipsAnalyticalDashboard {
|
|
59364
|
-
'data': JsonApiAnalyticalDashboardLinkage | null;
|
|
59365
|
-
}
|
|
59366
|
-
|
|
59367
|
-
export declare interface JsonApiFilterViewOutRelationshipsUser {
|
|
59368
|
-
'data': JsonApiUserLinkage | null;
|
|
59369
|
-
}
|
|
59370
|
-
|
|
59371
59415
|
export declare type JsonApiFilterViewOutTypeEnum = 'filterView';
|
|
59372
59416
|
|
|
59373
59417
|
export declare interface JsonApiFilterViewOutWithLinks {
|
|
@@ -59379,8 +59423,8 @@ export declare interface JsonApiFilterViewOutWithLinks {
|
|
|
59379
59423
|
* API identifier of an object
|
|
59380
59424
|
*/
|
|
59381
59425
|
'id': string;
|
|
59382
|
-
'attributes':
|
|
59383
|
-
'relationships'?:
|
|
59426
|
+
'attributes': JsonApiFilterViewInAttributes;
|
|
59427
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
59384
59428
|
'links'?: ObjectLinks;
|
|
59385
59429
|
}
|
|
59386
59430
|
|
|
@@ -59399,7 +59443,7 @@ export declare interface JsonApiFilterViewPatch {
|
|
|
59399
59443
|
*/
|
|
59400
59444
|
'id': string;
|
|
59401
59445
|
'attributes': JsonApiFilterViewPatchAttributes;
|
|
59402
|
-
'relationships'?:
|
|
59446
|
+
'relationships'?: JsonApiFilterViewInRelationships;
|
|
59403
59447
|
}
|
|
59404
59448
|
|
|
59405
59449
|
export declare interface JsonApiFilterViewPatchAttributes {
|
|
@@ -59444,9 +59488,62 @@ export declare interface JsonApiIdentityProviderIn {
|
|
|
59444
59488
|
* API identifier of an object
|
|
59445
59489
|
*/
|
|
59446
59490
|
'id': string;
|
|
59447
|
-
'attributes'?:
|
|
59491
|
+
'attributes'?: JsonApiIdentityProviderInAttributes;
|
|
59492
|
+
}
|
|
59493
|
+
|
|
59494
|
+
export declare interface JsonApiIdentityProviderInAttributes {
|
|
59495
|
+
/**
|
|
59496
|
+
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
59497
|
+
*/
|
|
59498
|
+
'identifiers'?: Array<string>;
|
|
59499
|
+
/**
|
|
59500
|
+
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
59501
|
+
*/
|
|
59502
|
+
'customClaimMapping'?: {
|
|
59503
|
+
[key: string]: string;
|
|
59504
|
+
};
|
|
59505
|
+
/**
|
|
59506
|
+
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
59507
|
+
*/
|
|
59508
|
+
'samlMetadata'?: string;
|
|
59509
|
+
/**
|
|
59510
|
+
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59511
|
+
*/
|
|
59512
|
+
'oauthClientId'?: string;
|
|
59513
|
+
/**
|
|
59514
|
+
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59515
|
+
*/
|
|
59516
|
+
'oauthClientSecret'?: string;
|
|
59517
|
+
/**
|
|
59518
|
+
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59519
|
+
*/
|
|
59520
|
+
'oauthIssuerLocation'?: string;
|
|
59521
|
+
/**
|
|
59522
|
+
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
59523
|
+
*/
|
|
59524
|
+
'oauthIssuerId'?: string;
|
|
59525
|
+
/**
|
|
59526
|
+
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
59527
|
+
*/
|
|
59528
|
+
'oauthSubjectIdClaim'?: string;
|
|
59529
|
+
/**
|
|
59530
|
+
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
59531
|
+
*/
|
|
59532
|
+
'oauthCustomAuthAttributes'?: {
|
|
59533
|
+
[key: string]: string;
|
|
59534
|
+
};
|
|
59535
|
+
/**
|
|
59536
|
+
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
59537
|
+
*/
|
|
59538
|
+
'oauthCustomScopes'?: Array<string> | null;
|
|
59539
|
+
/**
|
|
59540
|
+
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
59541
|
+
*/
|
|
59542
|
+
'idpType'?: JsonApiIdentityProviderInAttributesIdpTypeEnum;
|
|
59448
59543
|
}
|
|
59449
59544
|
|
|
59545
|
+
export declare type JsonApiIdentityProviderInAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
|
|
59546
|
+
|
|
59450
59547
|
export declare interface JsonApiIdentityProviderInDocument {
|
|
59451
59548
|
'data': JsonApiIdentityProviderIn;
|
|
59452
59549
|
}
|
|
@@ -59534,7 +59631,7 @@ export declare interface JsonApiIdentityProviderOutDocument {
|
|
|
59534
59631
|
export declare interface JsonApiIdentityProviderOutList {
|
|
59535
59632
|
'data': Array<JsonApiIdentityProviderOutWithLinks>;
|
|
59536
59633
|
'links'?: ListLinks;
|
|
59537
|
-
'meta'?:
|
|
59634
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59538
59635
|
}
|
|
59539
59636
|
|
|
59540
59637
|
export declare type JsonApiIdentityProviderOutTypeEnum = 'identityProvider';
|
|
@@ -59566,62 +59663,9 @@ export declare interface JsonApiIdentityProviderPatch {
|
|
|
59566
59663
|
* API identifier of an object
|
|
59567
59664
|
*/
|
|
59568
59665
|
'id': string;
|
|
59569
|
-
'attributes'?:
|
|
59666
|
+
'attributes'?: JsonApiIdentityProviderInAttributes;
|
|
59570
59667
|
}
|
|
59571
59668
|
|
|
59572
|
-
export declare interface JsonApiIdentityProviderPatchAttributes {
|
|
59573
|
-
/**
|
|
59574
|
-
* List of identifiers for this IdP, where an identifier is a domain name. Users with email addresses belonging to these domains will be authenticated by this IdP.
|
|
59575
|
-
*/
|
|
59576
|
-
'identifiers'?: Array<string>;
|
|
59577
|
-
/**
|
|
59578
|
-
* Map of custom claim overrides. To be used when your Idp does not provide default claims (sub, email, name, given_name, family_name). Define the key pair for the claim you wish to override, where the key is the default name of the attribute and the value is your custom name for the given attribute.
|
|
59579
|
-
*/
|
|
59580
|
-
'customClaimMapping'?: {
|
|
59581
|
-
[key: string]: string;
|
|
59582
|
-
};
|
|
59583
|
-
/**
|
|
59584
|
-
* Base64 encoded xml document with SAML metadata. This document is issued by your SAML provider. It includes the issuer\'s name, expiration information, and keys that can be used to validate the response from the identity provider. This field is mandatory for SAML IdP.
|
|
59585
|
-
*/
|
|
59586
|
-
'samlMetadata'?: string;
|
|
59587
|
-
/**
|
|
59588
|
-
* The OAuth client id of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59589
|
-
*/
|
|
59590
|
-
'oauthClientId'?: string;
|
|
59591
|
-
/**
|
|
59592
|
-
* The OAuth client secret of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59593
|
-
*/
|
|
59594
|
-
'oauthClientSecret'?: string;
|
|
59595
|
-
/**
|
|
59596
|
-
* The location of your OIDC provider. This field is mandatory for OIDC IdP.
|
|
59597
|
-
*/
|
|
59598
|
-
'oauthIssuerLocation'?: string;
|
|
59599
|
-
/**
|
|
59600
|
-
* Any string identifying the OIDC provider. This value is used as suffix for OAuth2 callback (redirect) URL. If not defined, the standard callback URL is used. This value is valid only for external OIDC providers, not for the internal DEX provider.
|
|
59601
|
-
*/
|
|
59602
|
-
'oauthIssuerId'?: string;
|
|
59603
|
-
/**
|
|
59604
|
-
* Any string identifying the claim in ID token, that should be used for user identification. The default value is \'sub\'.
|
|
59605
|
-
*/
|
|
59606
|
-
'oauthSubjectIdClaim'?: string;
|
|
59607
|
-
/**
|
|
59608
|
-
* Map of additional authentication attributes that should be added to the OAuth2 authentication requests, where the key is the name of the attribute and the value is the value of the attribute.
|
|
59609
|
-
*/
|
|
59610
|
-
'oauthCustomAuthAttributes'?: {
|
|
59611
|
-
[key: string]: string;
|
|
59612
|
-
};
|
|
59613
|
-
/**
|
|
59614
|
-
* List of additional OAuth scopes which may be required by other providers (e.g. Snowflake)
|
|
59615
|
-
*/
|
|
59616
|
-
'oauthCustomScopes'?: Array<string> | null;
|
|
59617
|
-
/**
|
|
59618
|
-
* Type of IdP for management purposes. MANAGED_IDP represents a GoodData managed IdP used in single OIDC setup, which is protected from altering/deletion. FIM_IDP represents a GoodData managed IdP used in federated identity management setup, which is protected from altering/deletion. DEX_IDP represents internal Dex IdP which is protected from altering/deletion. CUSTOM_IDP represents customer\'s own IdP, protected from deletion if currently used by org for authentication, deletable otherwise.
|
|
59619
|
-
*/
|
|
59620
|
-
'idpType'?: JsonApiIdentityProviderPatchAttributesIdpTypeEnum;
|
|
59621
|
-
}
|
|
59622
|
-
|
|
59623
|
-
export declare type JsonApiIdentityProviderPatchAttributesIdpTypeEnum = 'MANAGED_IDP' | 'FIM_IDP' | 'DEX_IDP' | 'CUSTOM_IDP';
|
|
59624
|
-
|
|
59625
59669
|
export declare interface JsonApiIdentityProviderPatchDocument {
|
|
59626
59670
|
'data': JsonApiIdentityProviderPatch;
|
|
59627
59671
|
}
|
|
@@ -59640,7 +59684,11 @@ export declare interface JsonApiJwkIn {
|
|
|
59640
59684
|
* API identifier of an object
|
|
59641
59685
|
*/
|
|
59642
59686
|
'id': string;
|
|
59643
|
-
'attributes'?:
|
|
59687
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
59688
|
+
}
|
|
59689
|
+
|
|
59690
|
+
export declare interface JsonApiJwkInAttributes {
|
|
59691
|
+
'content'?: RsaSpecification;
|
|
59644
59692
|
}
|
|
59645
59693
|
|
|
59646
59694
|
export declare interface JsonApiJwkInDocument {
|
|
@@ -59661,11 +59709,7 @@ export declare interface JsonApiJwkOut {
|
|
|
59661
59709
|
* API identifier of an object
|
|
59662
59710
|
*/
|
|
59663
59711
|
'id': string;
|
|
59664
|
-
'attributes'?:
|
|
59665
|
-
}
|
|
59666
|
-
|
|
59667
|
-
export declare interface JsonApiJwkOutAttributes {
|
|
59668
|
-
'content'?: RsaSpecification;
|
|
59712
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
59669
59713
|
}
|
|
59670
59714
|
|
|
59671
59715
|
export declare interface JsonApiJwkOutDocument {
|
|
@@ -59679,7 +59723,7 @@ export declare interface JsonApiJwkOutDocument {
|
|
|
59679
59723
|
export declare interface JsonApiJwkOutList {
|
|
59680
59724
|
'data': Array<JsonApiJwkOutWithLinks>;
|
|
59681
59725
|
'links'?: ListLinks;
|
|
59682
|
-
'meta'?:
|
|
59726
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59683
59727
|
}
|
|
59684
59728
|
|
|
59685
59729
|
export declare type JsonApiJwkOutTypeEnum = 'jwk';
|
|
@@ -59693,7 +59737,7 @@ export declare interface JsonApiJwkOutWithLinks {
|
|
|
59693
59737
|
* API identifier of an object
|
|
59694
59738
|
*/
|
|
59695
59739
|
'id': string;
|
|
59696
|
-
'attributes'?:
|
|
59740
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
59697
59741
|
'links'?: ObjectLinks;
|
|
59698
59742
|
}
|
|
59699
59743
|
|
|
@@ -59711,7 +59755,7 @@ export declare interface JsonApiJwkPatch {
|
|
|
59711
59755
|
* API identifier of an object
|
|
59712
59756
|
*/
|
|
59713
59757
|
'id': string;
|
|
59714
|
-
'attributes'?:
|
|
59758
|
+
'attributes'?: JsonApiJwkInAttributes;
|
|
59715
59759
|
}
|
|
59716
59760
|
|
|
59717
59761
|
export declare interface JsonApiJwkPatchDocument {
|
|
@@ -59732,88 +59776,14 @@ export declare interface JsonApiKnowledgeRecommendationIn {
|
|
|
59732
59776
|
* API identifier of an object
|
|
59733
59777
|
*/
|
|
59734
59778
|
'id': string;
|
|
59735
|
-
'attributes':
|
|
59736
|
-
'relationships':
|
|
59779
|
+
'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
|
|
59780
|
+
'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
|
|
59737
59781
|
}
|
|
59738
59782
|
|
|
59739
|
-
export declare interface JsonApiKnowledgeRecommendationInAttributes {
|
|
59740
|
-
/**
|
|
59741
|
-
* Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
|
|
59742
|
-
*/
|
|
59743
|
-
'title': string;
|
|
59744
|
-
/**
|
|
59745
|
-
* Description of the recommendation
|
|
59746
|
-
*/
|
|
59747
|
-
'description'?: string;
|
|
59748
|
-
'tags'?: Array<string>;
|
|
59749
|
-
'areRelationsValid'?: boolean;
|
|
59750
|
-
/**
|
|
59751
|
-
* Human-readable title of the metric (denormalized for display)
|
|
59752
|
-
*/
|
|
59753
|
-
'metricTitle'?: string;
|
|
59754
|
-
/**
|
|
59755
|
-
* Direction of the metric change
|
|
59756
|
-
*/
|
|
59757
|
-
'direction': JsonApiKnowledgeRecommendationInAttributesDirectionEnum;
|
|
59758
|
-
/**
|
|
59759
|
-
* Time period for comparison
|
|
59760
|
-
*/
|
|
59761
|
-
'comparisonType': JsonApiKnowledgeRecommendationInAttributesComparisonTypeEnum;
|
|
59762
|
-
/**
|
|
59763
|
-
* ID of the widget where the anomaly was detected
|
|
59764
|
-
*/
|
|
59765
|
-
'widgetId'?: string;
|
|
59766
|
-
/**
|
|
59767
|
-
* Name of the widget where the anomaly was detected
|
|
59768
|
-
*/
|
|
59769
|
-
'widgetName'?: string;
|
|
59770
|
-
/**
|
|
59771
|
-
* Confidence score (0.0 to 1.0)
|
|
59772
|
-
*/
|
|
59773
|
-
'confidence'?: any;
|
|
59774
|
-
/**
|
|
59775
|
-
* Structured recommendations data as JSON
|
|
59776
|
-
*/
|
|
59777
|
-
'recommendations'?: object;
|
|
59778
|
-
/**
|
|
59779
|
-
* Number of source documents used for generation
|
|
59780
|
-
*/
|
|
59781
|
-
'sourceCount'?: number;
|
|
59782
|
-
/**
|
|
59783
|
-
* Reference time period for comparison (e.g., \'2023-06\' or \'Jun 2023\')
|
|
59784
|
-
*/
|
|
59785
|
-
'referencePeriod'?: string;
|
|
59786
|
-
/**
|
|
59787
|
-
* Analyzed time period (e.g., \'2023-07\' or \'July 2023\')
|
|
59788
|
-
*/
|
|
59789
|
-
'analyzedPeriod'?: string;
|
|
59790
|
-
/**
|
|
59791
|
-
* Metric value in the reference period
|
|
59792
|
-
*/
|
|
59793
|
-
'referenceValue'?: any;
|
|
59794
|
-
/**
|
|
59795
|
-
* Metric value in the analyzed period (the observed value that triggered the anomaly)
|
|
59796
|
-
*/
|
|
59797
|
-
'analyzedValue'?: any;
|
|
59798
|
-
/**
|
|
59799
|
-
* Human-readable title of the analytical dashboard (denormalized for display)
|
|
59800
|
-
*/
|
|
59801
|
-
'analyticalDashboardTitle'?: string;
|
|
59802
|
-
}
|
|
59803
|
-
|
|
59804
|
-
export declare type JsonApiKnowledgeRecommendationInAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
59805
|
-
|
|
59806
|
-
export declare type JsonApiKnowledgeRecommendationInAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
59807
|
-
|
|
59808
59783
|
export declare interface JsonApiKnowledgeRecommendationInDocument {
|
|
59809
59784
|
'data': JsonApiKnowledgeRecommendationIn;
|
|
59810
59785
|
}
|
|
59811
59786
|
|
|
59812
|
-
export declare interface JsonApiKnowledgeRecommendationInRelationships {
|
|
59813
|
-
'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
59814
|
-
'analyticalDashboard'?: JsonApiFilterViewOutRelationshipsAnalyticalDashboard;
|
|
59815
|
-
}
|
|
59816
|
-
|
|
59817
59787
|
export declare type JsonApiKnowledgeRecommendationInTypeEnum = 'knowledgeRecommendation';
|
|
59818
59788
|
|
|
59819
59789
|
/**
|
|
@@ -59828,7 +59798,7 @@ export declare interface JsonApiKnowledgeRecommendationOut {
|
|
|
59828
59798
|
* API identifier of an object
|
|
59829
59799
|
*/
|
|
59830
59800
|
'id': string;
|
|
59831
|
-
'meta'?:
|
|
59801
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59832
59802
|
'attributes': JsonApiKnowledgeRecommendationOutAttributes;
|
|
59833
59803
|
'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
|
|
59834
59804
|
}
|
|
@@ -59923,7 +59893,7 @@ export declare type JsonApiKnowledgeRecommendationOutIncludes = JsonApiAnalytica
|
|
|
59923
59893
|
export declare interface JsonApiKnowledgeRecommendationOutList {
|
|
59924
59894
|
'data': Array<JsonApiKnowledgeRecommendationOutWithLinks>;
|
|
59925
59895
|
'links'?: ListLinks;
|
|
59926
|
-
'meta'?:
|
|
59896
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
59927
59897
|
/**
|
|
59928
59898
|
* Included resources
|
|
59929
59899
|
*/
|
|
@@ -59932,7 +59902,7 @@ export declare interface JsonApiKnowledgeRecommendationOutList {
|
|
|
59932
59902
|
|
|
59933
59903
|
export declare interface JsonApiKnowledgeRecommendationOutRelationships {
|
|
59934
59904
|
'metric'?: JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
59935
|
-
'analyticalDashboard'?:
|
|
59905
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
59936
59906
|
}
|
|
59937
59907
|
|
|
59938
59908
|
export declare interface JsonApiKnowledgeRecommendationOutRelationshipsMetric {
|
|
@@ -59950,7 +59920,7 @@ export declare interface JsonApiKnowledgeRecommendationOutWithLinks {
|
|
|
59950
59920
|
* API identifier of an object
|
|
59951
59921
|
*/
|
|
59952
59922
|
'id': string;
|
|
59953
|
-
'meta'?:
|
|
59923
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
59954
59924
|
'attributes': JsonApiKnowledgeRecommendationOutAttributes;
|
|
59955
59925
|
'relationships'?: JsonApiKnowledgeRecommendationOutRelationships;
|
|
59956
59926
|
'links'?: ObjectLinks;
|
|
@@ -60061,14 +60031,88 @@ export declare interface JsonApiKnowledgeRecommendationPostOptionalId {
|
|
|
60061
60031
|
* API identifier of an object
|
|
60062
60032
|
*/
|
|
60063
60033
|
'id'?: string;
|
|
60064
|
-
'attributes':
|
|
60065
|
-
'relationships':
|
|
60034
|
+
'attributes': JsonApiKnowledgeRecommendationPostOptionalIdAttributes;
|
|
60035
|
+
'relationships': JsonApiKnowledgeRecommendationPostOptionalIdRelationships;
|
|
60066
60036
|
}
|
|
60067
60037
|
|
|
60038
|
+
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdAttributes {
|
|
60039
|
+
/**
|
|
60040
|
+
* Human-readable title for the recommendation, e.g. \'Revenue decreased vs last month\'
|
|
60041
|
+
*/
|
|
60042
|
+
'title': string;
|
|
60043
|
+
/**
|
|
60044
|
+
* Description of the recommendation
|
|
60045
|
+
*/
|
|
60046
|
+
'description'?: string;
|
|
60047
|
+
'tags'?: Array<string>;
|
|
60048
|
+
'areRelationsValid'?: boolean;
|
|
60049
|
+
/**
|
|
60050
|
+
* Human-readable title of the metric (denormalized for display)
|
|
60051
|
+
*/
|
|
60052
|
+
'metricTitle'?: string;
|
|
60053
|
+
/**
|
|
60054
|
+
* Direction of the metric change
|
|
60055
|
+
*/
|
|
60056
|
+
'direction': JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum;
|
|
60057
|
+
/**
|
|
60058
|
+
* Time period for comparison
|
|
60059
|
+
*/
|
|
60060
|
+
'comparisonType': JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum;
|
|
60061
|
+
/**
|
|
60062
|
+
* ID of the widget where the anomaly was detected
|
|
60063
|
+
*/
|
|
60064
|
+
'widgetId'?: string;
|
|
60065
|
+
/**
|
|
60066
|
+
* Name of the widget where the anomaly was detected
|
|
60067
|
+
*/
|
|
60068
|
+
'widgetName'?: string;
|
|
60069
|
+
/**
|
|
60070
|
+
* Confidence score (0.0 to 1.0)
|
|
60071
|
+
*/
|
|
60072
|
+
'confidence'?: any;
|
|
60073
|
+
/**
|
|
60074
|
+
* Structured recommendations data as JSON
|
|
60075
|
+
*/
|
|
60076
|
+
'recommendations'?: object;
|
|
60077
|
+
/**
|
|
60078
|
+
* Number of source documents used for generation
|
|
60079
|
+
*/
|
|
60080
|
+
'sourceCount'?: number;
|
|
60081
|
+
/**
|
|
60082
|
+
* Reference time period for comparison (e.g., \'2023-06\' or \'Jun 2023\')
|
|
60083
|
+
*/
|
|
60084
|
+
'referencePeriod'?: string;
|
|
60085
|
+
/**
|
|
60086
|
+
* Analyzed time period (e.g., \'2023-07\' or \'July 2023\')
|
|
60087
|
+
*/
|
|
60088
|
+
'analyzedPeriod'?: string;
|
|
60089
|
+
/**
|
|
60090
|
+
* Metric value in the reference period
|
|
60091
|
+
*/
|
|
60092
|
+
'referenceValue'?: any;
|
|
60093
|
+
/**
|
|
60094
|
+
* Metric value in the analyzed period (the observed value that triggered the anomaly)
|
|
60095
|
+
*/
|
|
60096
|
+
'analyzedValue'?: any;
|
|
60097
|
+
/**
|
|
60098
|
+
* Human-readable title of the analytical dashboard (denormalized for display)
|
|
60099
|
+
*/
|
|
60100
|
+
'analyticalDashboardTitle'?: string;
|
|
60101
|
+
}
|
|
60102
|
+
|
|
60103
|
+
export declare type JsonApiKnowledgeRecommendationPostOptionalIdAttributesComparisonTypeEnum = 'MONTH' | 'QUARTER' | 'YEAR';
|
|
60104
|
+
|
|
60105
|
+
export declare type JsonApiKnowledgeRecommendationPostOptionalIdAttributesDirectionEnum = 'INCREASED' | 'DECREASED';
|
|
60106
|
+
|
|
60068
60107
|
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdDocument {
|
|
60069
60108
|
'data': JsonApiKnowledgeRecommendationPostOptionalId;
|
|
60070
60109
|
}
|
|
60071
60110
|
|
|
60111
|
+
export declare interface JsonApiKnowledgeRecommendationPostOptionalIdRelationships {
|
|
60112
|
+
'metric': JsonApiKnowledgeRecommendationOutRelationshipsMetric;
|
|
60113
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
60114
|
+
}
|
|
60115
|
+
|
|
60072
60116
|
export declare type JsonApiKnowledgeRecommendationPostOptionalIdTypeEnum = 'knowledgeRecommendation';
|
|
60073
60117
|
|
|
60074
60118
|
/**
|
|
@@ -60093,7 +60137,7 @@ export declare interface JsonApiLabelOut {
|
|
|
60093
60137
|
* API identifier of an object
|
|
60094
60138
|
*/
|
|
60095
60139
|
'id': string;
|
|
60096
|
-
'meta'?:
|
|
60140
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60097
60141
|
'attributes'?: JsonApiLabelOutAttributes;
|
|
60098
60142
|
'relationships'?: JsonApiLabelOutRelationships;
|
|
60099
60143
|
}
|
|
@@ -60146,7 +60190,7 @@ export declare interface JsonApiLabelOutDocument {
|
|
|
60146
60190
|
export declare interface JsonApiLabelOutList {
|
|
60147
60191
|
'data': Array<JsonApiLabelOutWithLinks>;
|
|
60148
60192
|
'links'?: ListLinks;
|
|
60149
|
-
'meta'?:
|
|
60193
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60150
60194
|
/**
|
|
60151
60195
|
* Included resources
|
|
60152
60196
|
*/
|
|
@@ -60172,7 +60216,7 @@ export declare interface JsonApiLabelOutWithLinks {
|
|
|
60172
60216
|
* API identifier of an object
|
|
60173
60217
|
*/
|
|
60174
60218
|
'id': string;
|
|
60175
|
-
'meta'?:
|
|
60219
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60176
60220
|
'attributes'?: JsonApiLabelOutAttributes;
|
|
60177
60221
|
'relationships'?: JsonApiLabelOutRelationships;
|
|
60178
60222
|
'links'?: ObjectLinks;
|
|
@@ -60192,13 +60236,7 @@ export declare interface JsonApiLabelPatch {
|
|
|
60192
60236
|
* API identifier of an object
|
|
60193
60237
|
*/
|
|
60194
60238
|
'id': string;
|
|
60195
|
-
'attributes'?:
|
|
60196
|
-
}
|
|
60197
|
-
|
|
60198
|
-
export declare interface JsonApiLabelPatchAttributes {
|
|
60199
|
-
'title'?: string;
|
|
60200
|
-
'description'?: string;
|
|
60201
|
-
'tags'?: Array<string>;
|
|
60239
|
+
'attributes'?: JsonApiAttributePatchAttributes;
|
|
60202
60240
|
}
|
|
60203
60241
|
|
|
60204
60242
|
export declare interface JsonApiLabelPatchDocument {
|
|
@@ -60208,7 +60246,7 @@ export declare interface JsonApiLabelPatchDocument {
|
|
|
60208
60246
|
export declare type JsonApiLabelPatchTypeEnum = 'label';
|
|
60209
60247
|
|
|
60210
60248
|
/**
|
|
60211
|
-
*
|
|
60249
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
60212
60250
|
*/
|
|
60213
60251
|
export declare interface JsonApiLlmEndpointIn {
|
|
60214
60252
|
/**
|
|
@@ -60229,6 +60267,7 @@ export declare interface JsonApiLlmEndpointInAttributes {
|
|
|
60229
60267
|
'title': string;
|
|
60230
60268
|
/**
|
|
60231
60269
|
* LLM Provider.
|
|
60270
|
+
* @deprecated
|
|
60232
60271
|
*/
|
|
60233
60272
|
'provider'?: JsonApiLlmEndpointInAttributesProviderEnum;
|
|
60234
60273
|
/**
|
|
@@ -60252,13 +60291,16 @@ export declare interface JsonApiLlmEndpointInAttributes {
|
|
|
60252
60291
|
export declare type JsonApiLlmEndpointInAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
60253
60292
|
|
|
60254
60293
|
export declare interface JsonApiLlmEndpointInDocument {
|
|
60294
|
+
/**
|
|
60295
|
+
* @deprecated
|
|
60296
|
+
*/
|
|
60255
60297
|
'data': JsonApiLlmEndpointIn;
|
|
60256
60298
|
}
|
|
60257
60299
|
|
|
60258
60300
|
export declare type JsonApiLlmEndpointInTypeEnum = 'llmEndpoint';
|
|
60259
60301
|
|
|
60260
60302
|
/**
|
|
60261
|
-
*
|
|
60303
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
60262
60304
|
*/
|
|
60263
60305
|
export declare interface JsonApiLlmEndpointOut {
|
|
60264
60306
|
/**
|
|
@@ -60279,6 +60321,7 @@ export declare interface JsonApiLlmEndpointOutAttributes {
|
|
|
60279
60321
|
'title': string;
|
|
60280
60322
|
/**
|
|
60281
60323
|
* LLM Provider.
|
|
60324
|
+
* @deprecated
|
|
60282
60325
|
*/
|
|
60283
60326
|
'provider'?: JsonApiLlmEndpointOutAttributesProviderEnum;
|
|
60284
60327
|
/**
|
|
@@ -60298,6 +60341,9 @@ export declare interface JsonApiLlmEndpointOutAttributes {
|
|
|
60298
60341
|
export declare type JsonApiLlmEndpointOutAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
60299
60342
|
|
|
60300
60343
|
export declare interface JsonApiLlmEndpointOutDocument {
|
|
60344
|
+
/**
|
|
60345
|
+
* @deprecated
|
|
60346
|
+
*/
|
|
60301
60347
|
'data': JsonApiLlmEndpointOut;
|
|
60302
60348
|
'links'?: ObjectLinks;
|
|
60303
60349
|
}
|
|
@@ -60308,7 +60354,7 @@ export declare interface JsonApiLlmEndpointOutDocument {
|
|
|
60308
60354
|
export declare interface JsonApiLlmEndpointOutList {
|
|
60309
60355
|
'data': Array<JsonApiLlmEndpointOutWithLinks>;
|
|
60310
60356
|
'links'?: ListLinks;
|
|
60311
|
-
'meta'?:
|
|
60357
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60312
60358
|
}
|
|
60313
60359
|
|
|
60314
60360
|
export declare type JsonApiLlmEndpointOutTypeEnum = 'llmEndpoint';
|
|
@@ -60329,7 +60375,7 @@ export declare interface JsonApiLlmEndpointOutWithLinks {
|
|
|
60329
60375
|
export declare type JsonApiLlmEndpointOutWithLinksTypeEnum = 'llmEndpoint';
|
|
60330
60376
|
|
|
60331
60377
|
/**
|
|
60332
|
-
*
|
|
60378
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
60333
60379
|
*/
|
|
60334
60380
|
export declare interface JsonApiLlmEndpointPatch {
|
|
60335
60381
|
/**
|
|
@@ -60350,6 +60396,7 @@ export declare interface JsonApiLlmEndpointPatchAttributes {
|
|
|
60350
60396
|
'title'?: string;
|
|
60351
60397
|
/**
|
|
60352
60398
|
* LLM Provider.
|
|
60399
|
+
* @deprecated
|
|
60353
60400
|
*/
|
|
60354
60401
|
'provider'?: JsonApiLlmEndpointPatchAttributesProviderEnum;
|
|
60355
60402
|
/**
|
|
@@ -60373,6 +60420,9 @@ export declare interface JsonApiLlmEndpointPatchAttributes {
|
|
|
60373
60420
|
export declare type JsonApiLlmEndpointPatchAttributesProviderEnum = 'OPENAI' | 'AZURE_OPENAI';
|
|
60374
60421
|
|
|
60375
60422
|
export declare interface JsonApiLlmEndpointPatchDocument {
|
|
60423
|
+
/**
|
|
60424
|
+
* @deprecated
|
|
60425
|
+
*/
|
|
60376
60426
|
'data': JsonApiLlmEndpointPatch;
|
|
60377
60427
|
}
|
|
60378
60428
|
|
|
@@ -60464,7 +60514,7 @@ export declare interface JsonApiLlmProviderOutDocument {
|
|
|
60464
60514
|
export declare interface JsonApiLlmProviderOutList {
|
|
60465
60515
|
'data': Array<JsonApiLlmProviderOutWithLinks>;
|
|
60466
60516
|
'links'?: ListLinks;
|
|
60467
|
-
'meta'?:
|
|
60517
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60468
60518
|
}
|
|
60469
60519
|
|
|
60470
60520
|
export declare type JsonApiLlmProviderOutTypeEnum = 'llmProvider';
|
|
@@ -60517,34 +60567,9 @@ export declare interface JsonApiMemoryItemIn {
|
|
|
60517
60567
|
* API identifier of an object
|
|
60518
60568
|
*/
|
|
60519
60569
|
'id': string;
|
|
60520
|
-
'attributes':
|
|
60521
|
-
}
|
|
60522
|
-
|
|
60523
|
-
export declare interface JsonApiMemoryItemInAttributes {
|
|
60524
|
-
'title'?: string;
|
|
60525
|
-
'description'?: string;
|
|
60526
|
-
'tags'?: Array<string>;
|
|
60527
|
-
'areRelationsValid'?: boolean;
|
|
60528
|
-
/**
|
|
60529
|
-
* Strategy defining when the memory item should be applied
|
|
60530
|
-
*/
|
|
60531
|
-
'strategy': JsonApiMemoryItemInAttributesStrategyEnum;
|
|
60532
|
-
/**
|
|
60533
|
-
* The text that will be injected into the system prompt
|
|
60534
|
-
*/
|
|
60535
|
-
'instruction': string;
|
|
60536
|
-
/**
|
|
60537
|
-
* Set of unique strings used for semantic similarity filtering
|
|
60538
|
-
*/
|
|
60539
|
-
'keywords'?: Array<string>;
|
|
60540
|
-
/**
|
|
60541
|
-
* Whether memory item is disabled
|
|
60542
|
-
*/
|
|
60543
|
-
'isDisabled'?: boolean;
|
|
60570
|
+
'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
|
|
60544
60571
|
}
|
|
60545
60572
|
|
|
60546
|
-
export declare type JsonApiMemoryItemInAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
60547
|
-
|
|
60548
60573
|
export declare interface JsonApiMemoryItemInDocument {
|
|
60549
60574
|
'data': JsonApiMemoryItemIn;
|
|
60550
60575
|
}
|
|
@@ -60563,7 +60588,7 @@ export declare interface JsonApiMemoryItemOut {
|
|
|
60563
60588
|
* API identifier of an object
|
|
60564
60589
|
*/
|
|
60565
60590
|
'id': string;
|
|
60566
|
-
'meta'?:
|
|
60591
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60567
60592
|
'attributes': JsonApiMemoryItemOutAttributes;
|
|
60568
60593
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
60569
60594
|
}
|
|
@@ -60616,7 +60641,7 @@ export declare interface JsonApiMemoryItemOutDocument {
|
|
|
60616
60641
|
export declare interface JsonApiMemoryItemOutList {
|
|
60617
60642
|
'data': Array<JsonApiMemoryItemOutWithLinks>;
|
|
60618
60643
|
'links'?: ListLinks;
|
|
60619
|
-
'meta'?:
|
|
60644
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60620
60645
|
/**
|
|
60621
60646
|
* Included resources
|
|
60622
60647
|
*/
|
|
@@ -60634,7 +60659,7 @@ export declare interface JsonApiMemoryItemOutWithLinks {
|
|
|
60634
60659
|
* API identifier of an object
|
|
60635
60660
|
*/
|
|
60636
60661
|
'id': string;
|
|
60637
|
-
'meta'?:
|
|
60662
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60638
60663
|
'attributes': JsonApiMemoryItemOutAttributes;
|
|
60639
60664
|
'relationships'?: JsonApiDashboardPluginOutRelationships;
|
|
60640
60665
|
'links'?: ObjectLinks;
|
|
@@ -60700,9 +60725,34 @@ export declare interface JsonApiMemoryItemPostOptionalId {
|
|
|
60700
60725
|
* API identifier of an object
|
|
60701
60726
|
*/
|
|
60702
60727
|
'id'?: string;
|
|
60703
|
-
'attributes':
|
|
60728
|
+
'attributes': JsonApiMemoryItemPostOptionalIdAttributes;
|
|
60704
60729
|
}
|
|
60705
60730
|
|
|
60731
|
+
export declare interface JsonApiMemoryItemPostOptionalIdAttributes {
|
|
60732
|
+
'title'?: string;
|
|
60733
|
+
'description'?: string;
|
|
60734
|
+
'tags'?: Array<string>;
|
|
60735
|
+
'areRelationsValid'?: boolean;
|
|
60736
|
+
/**
|
|
60737
|
+
* Strategy defining when the memory item should be applied
|
|
60738
|
+
*/
|
|
60739
|
+
'strategy': JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum;
|
|
60740
|
+
/**
|
|
60741
|
+
* The text that will be injected into the system prompt
|
|
60742
|
+
*/
|
|
60743
|
+
'instruction': string;
|
|
60744
|
+
/**
|
|
60745
|
+
* Set of unique strings used for semantic similarity filtering
|
|
60746
|
+
*/
|
|
60747
|
+
'keywords'?: Array<string>;
|
|
60748
|
+
/**
|
|
60749
|
+
* Whether memory item is disabled
|
|
60750
|
+
*/
|
|
60751
|
+
'isDisabled'?: boolean;
|
|
60752
|
+
}
|
|
60753
|
+
|
|
60754
|
+
export declare type JsonApiMemoryItemPostOptionalIdAttributesStrategyEnum = 'ALWAYS' | 'AUTO';
|
|
60755
|
+
|
|
60706
60756
|
export declare interface JsonApiMemoryItemPostOptionalIdDocument {
|
|
60707
60757
|
'data': JsonApiMemoryItemPostOptionalId;
|
|
60708
60758
|
}
|
|
@@ -60752,7 +60802,7 @@ export declare interface JsonApiMetricOut {
|
|
|
60752
60802
|
* API identifier of an object
|
|
60753
60803
|
*/
|
|
60754
60804
|
'id': string;
|
|
60755
|
-
'meta'?:
|
|
60805
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60756
60806
|
'attributes': JsonApiMetricOutAttributes;
|
|
60757
60807
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
60758
60808
|
}
|
|
@@ -60809,63 +60859,36 @@ export declare interface JsonApiMetricOutDocument {
|
|
|
60809
60859
|
/**
|
|
60810
60860
|
* Included resources
|
|
60811
60861
|
*/
|
|
60812
|
-
'included'?: Array<
|
|
60862
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
60813
60863
|
}
|
|
60814
60864
|
|
|
60865
|
+
/**
|
|
60866
|
+
* @type JsonApiMetricOutIncludes
|
|
60867
|
+
*/
|
|
60868
|
+
export declare type JsonApiMetricOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
|
|
60869
|
+
|
|
60815
60870
|
/**
|
|
60816
60871
|
* A JSON:API document with a list of resources
|
|
60817
60872
|
*/
|
|
60818
60873
|
export declare interface JsonApiMetricOutList {
|
|
60819
60874
|
'data': Array<JsonApiMetricOutWithLinks>;
|
|
60820
60875
|
'links'?: ListLinks;
|
|
60821
|
-
'meta'?:
|
|
60876
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60822
60877
|
/**
|
|
60823
60878
|
* Included resources
|
|
60824
60879
|
*/
|
|
60825
|
-
'included'?: Array<
|
|
60880
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
60826
60881
|
}
|
|
60827
60882
|
|
|
60828
60883
|
export declare interface JsonApiMetricOutRelationships {
|
|
60829
|
-
'createdBy'?:
|
|
60830
|
-
'modifiedBy'?:
|
|
60831
|
-
'certifiedBy'?:
|
|
60832
|
-
'facts'?:
|
|
60833
|
-
'attributes'?:
|
|
60834
|
-
'labels'?:
|
|
60835
|
-
'metrics'?:
|
|
60836
|
-
'datasets'?:
|
|
60837
|
-
}
|
|
60838
|
-
|
|
60839
|
-
export declare interface JsonApiMetricOutRelationshipsAttributes {
|
|
60840
|
-
/**
|
|
60841
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
60842
|
-
*/
|
|
60843
|
-
'data': Array<JsonApiAttributeLinkage>;
|
|
60844
|
-
}
|
|
60845
|
-
|
|
60846
|
-
export declare interface JsonApiMetricOutRelationshipsCreatedBy {
|
|
60847
|
-
'data': JsonApiUserIdentifierLinkage | null;
|
|
60848
|
-
}
|
|
60849
|
-
|
|
60850
|
-
export declare interface JsonApiMetricOutRelationshipsDatasets {
|
|
60851
|
-
/**
|
|
60852
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
60853
|
-
*/
|
|
60854
|
-
'data': Array<JsonApiDatasetLinkage>;
|
|
60855
|
-
}
|
|
60856
|
-
|
|
60857
|
-
export declare interface JsonApiMetricOutRelationshipsFacts {
|
|
60858
|
-
/**
|
|
60859
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
60860
|
-
*/
|
|
60861
|
-
'data': Array<JsonApiFactLinkage>;
|
|
60862
|
-
}
|
|
60863
|
-
|
|
60864
|
-
export declare interface JsonApiMetricOutRelationshipsMetrics {
|
|
60865
|
-
/**
|
|
60866
|
-
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
60867
|
-
*/
|
|
60868
|
-
'data': Array<JsonApiMetricLinkage>;
|
|
60884
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
60885
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
60886
|
+
'certifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
60887
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
60888
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
60889
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
60890
|
+
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
60891
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
60869
60892
|
}
|
|
60870
60893
|
|
|
60871
60894
|
export declare type JsonApiMetricOutTypeEnum = 'metric';
|
|
@@ -60879,7 +60902,7 @@ export declare interface JsonApiMetricOutWithLinks {
|
|
|
60879
60902
|
* API identifier of an object
|
|
60880
60903
|
*/
|
|
60881
60904
|
'id': string;
|
|
60882
|
-
'meta'?:
|
|
60905
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
60883
60906
|
'attributes': JsonApiMetricOutAttributes;
|
|
60884
60907
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
60885
60908
|
'links'?: ObjectLinks;
|
|
@@ -60989,7 +61012,7 @@ export declare interface JsonApiNotificationChannelIdentifierOutDocument {
|
|
|
60989
61012
|
export declare interface JsonApiNotificationChannelIdentifierOutList {
|
|
60990
61013
|
'data': Array<JsonApiNotificationChannelIdentifierOutWithLinks>;
|
|
60991
61014
|
'links'?: ListLinks;
|
|
60992
|
-
'meta'?:
|
|
61015
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
60993
61016
|
}
|
|
60994
61017
|
|
|
60995
61018
|
export declare type JsonApiNotificationChannelIdentifierOutTypeEnum = 'notificationChannelIdentifier';
|
|
@@ -61021,7 +61044,7 @@ export declare interface JsonApiNotificationChannelIn {
|
|
|
61021
61044
|
* API identifier of an object
|
|
61022
61045
|
*/
|
|
61023
61046
|
'id': string;
|
|
61024
|
-
'attributes'?:
|
|
61047
|
+
'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
61025
61048
|
}
|
|
61026
61049
|
|
|
61027
61050
|
export declare interface JsonApiNotificationChannelInDocument {
|
|
@@ -61107,7 +61130,7 @@ export declare interface JsonApiNotificationChannelOutDocument {
|
|
|
61107
61130
|
export declare interface JsonApiNotificationChannelOutList {
|
|
61108
61131
|
'data': Array<JsonApiNotificationChannelOutWithLinks>;
|
|
61109
61132
|
'links'?: ListLinks;
|
|
61110
|
-
'meta'?:
|
|
61133
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61111
61134
|
}
|
|
61112
61135
|
|
|
61113
61136
|
export declare type JsonApiNotificationChannelOutTypeEnum = 'notificationChannel';
|
|
@@ -61139,10 +61162,31 @@ export declare interface JsonApiNotificationChannelPatch {
|
|
|
61139
61162
|
* API identifier of an object
|
|
61140
61163
|
*/
|
|
61141
61164
|
'id': string;
|
|
61142
|
-
'attributes'?:
|
|
61165
|
+
'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
61166
|
+
}
|
|
61167
|
+
|
|
61168
|
+
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
61169
|
+
'data': JsonApiNotificationChannelPatch;
|
|
61170
|
+
}
|
|
61171
|
+
|
|
61172
|
+
export declare type JsonApiNotificationChannelPatchTypeEnum = 'notificationChannel';
|
|
61173
|
+
|
|
61174
|
+
/**
|
|
61175
|
+
* JSON:API representation of notificationChannel entity.
|
|
61176
|
+
*/
|
|
61177
|
+
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
61178
|
+
/**
|
|
61179
|
+
* Object type
|
|
61180
|
+
*/
|
|
61181
|
+
'type': JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
61182
|
+
/**
|
|
61183
|
+
* API identifier of an object
|
|
61184
|
+
*/
|
|
61185
|
+
'id'?: string;
|
|
61186
|
+
'attributes'?: JsonApiNotificationChannelPostOptionalIdAttributes;
|
|
61143
61187
|
}
|
|
61144
61188
|
|
|
61145
|
-
export declare interface
|
|
61189
|
+
export declare interface JsonApiNotificationChannelPostOptionalIdAttributes {
|
|
61146
61190
|
'name'?: string | null;
|
|
61147
61191
|
'description'?: string | null;
|
|
61148
61192
|
'destination'?: JsonApiNotificationChannelOutAttributesDestination;
|
|
@@ -61153,7 +61197,7 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
61153
61197
|
/**
|
|
61154
61198
|
* Dashboard link visibility in notifications. HIDDEN - the link will not be included INTERNAL_ONLY - only internal users will see the link ALL - all users will see the link
|
|
61155
61199
|
*/
|
|
61156
|
-
'dashboardLinkVisibility'?:
|
|
61200
|
+
'dashboardLinkVisibility'?: JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum;
|
|
61157
61201
|
/**
|
|
61158
61202
|
* Human-readable description of the source of the notification. If specified, this propertywill be included in the notifications to this channel.Allowed placeholders are: {{workspaceId}} {{workspaceName}} {{workspaceDescription}} {{dashboardId}} {{dashboardName}} {{dashboardDescription}}
|
|
61159
61203
|
*/
|
|
@@ -61161,39 +61205,18 @@ export declare interface JsonApiNotificationChannelPatchAttributes {
|
|
|
61161
61205
|
/**
|
|
61162
61206
|
* Allowed recipients of notifications from this channel. CREATOR - only the creator INTERNAL - all users within the organization EXTERNAL - all recipients including those outside the organization
|
|
61163
61207
|
*/
|
|
61164
|
-
'allowedRecipients'?:
|
|
61208
|
+
'allowedRecipients'?: JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum;
|
|
61165
61209
|
/**
|
|
61166
61210
|
* In-platform notifications configuration. No effect if the destination type is IN_PLATFORM. DISABLED - in-platform notifications are not sent ENABLED - in-platform notifications are sent in addition to the regular notifications
|
|
61167
61211
|
*/
|
|
61168
|
-
'inPlatformNotification'?:
|
|
61212
|
+
'inPlatformNotification'?: JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum;
|
|
61169
61213
|
}
|
|
61170
61214
|
|
|
61171
|
-
export declare type
|
|
61215
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesAllowedRecipientsEnum = 'CREATOR' | 'INTERNAL' | 'EXTERNAL';
|
|
61172
61216
|
|
|
61173
|
-
export declare type
|
|
61217
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesDashboardLinkVisibilityEnum = 'HIDDEN' | 'INTERNAL_ONLY' | 'ALL';
|
|
61174
61218
|
|
|
61175
|
-
export declare type
|
|
61176
|
-
|
|
61177
|
-
export declare interface JsonApiNotificationChannelPatchDocument {
|
|
61178
|
-
'data': JsonApiNotificationChannelPatch;
|
|
61179
|
-
}
|
|
61180
|
-
|
|
61181
|
-
export declare type JsonApiNotificationChannelPatchTypeEnum = 'notificationChannel';
|
|
61182
|
-
|
|
61183
|
-
/**
|
|
61184
|
-
* JSON:API representation of notificationChannel entity.
|
|
61185
|
-
*/
|
|
61186
|
-
export declare interface JsonApiNotificationChannelPostOptionalId {
|
|
61187
|
-
/**
|
|
61188
|
-
* Object type
|
|
61189
|
-
*/
|
|
61190
|
-
'type': JsonApiNotificationChannelPostOptionalIdTypeEnum;
|
|
61191
|
-
/**
|
|
61192
|
-
* API identifier of an object
|
|
61193
|
-
*/
|
|
61194
|
-
'id'?: string;
|
|
61195
|
-
'attributes'?: JsonApiNotificationChannelPatchAttributes;
|
|
61196
|
-
}
|
|
61219
|
+
export declare type JsonApiNotificationChannelPostOptionalIdAttributesInPlatformNotificationEnum = 'DISABLED' | 'ENABLED';
|
|
61197
61220
|
|
|
61198
61221
|
export declare interface JsonApiNotificationChannelPostOptionalIdDocument {
|
|
61199
61222
|
'data': JsonApiNotificationChannelPostOptionalId;
|
|
@@ -61213,14 +61236,37 @@ export declare interface JsonApiOrganizationIn {
|
|
|
61213
61236
|
* API identifier of an object
|
|
61214
61237
|
*/
|
|
61215
61238
|
'id': string;
|
|
61216
|
-
'attributes'?:
|
|
61217
|
-
'relationships'?:
|
|
61239
|
+
'attributes'?: JsonApiOrganizationInAttributes;
|
|
61240
|
+
'relationships'?: JsonApiOrganizationInRelationships;
|
|
61241
|
+
}
|
|
61242
|
+
|
|
61243
|
+
export declare interface JsonApiOrganizationInAttributes {
|
|
61244
|
+
'name'?: string | null;
|
|
61245
|
+
'hostname'?: string;
|
|
61246
|
+
'allowedOrigins'?: Array<string>;
|
|
61247
|
+
/**
|
|
61248
|
+
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
61249
|
+
* @deprecated
|
|
61250
|
+
*/
|
|
61251
|
+
'earlyAccess'?: string | null;
|
|
61252
|
+
/**
|
|
61253
|
+
* The early access feature identifiers. They are used to enable experimental features.
|
|
61254
|
+
*/
|
|
61255
|
+
'earlyAccessValues'?: Array<string> | null;
|
|
61218
61256
|
}
|
|
61219
61257
|
|
|
61220
61258
|
export declare interface JsonApiOrganizationInDocument {
|
|
61221
61259
|
'data': JsonApiOrganizationIn;
|
|
61222
61260
|
}
|
|
61223
61261
|
|
|
61262
|
+
export declare interface JsonApiOrganizationInRelationships {
|
|
61263
|
+
'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
61264
|
+
}
|
|
61265
|
+
|
|
61266
|
+
export declare interface JsonApiOrganizationInRelationshipsIdentityProvider {
|
|
61267
|
+
'data': JsonApiIdentityProviderLinkage | null;
|
|
61268
|
+
}
|
|
61269
|
+
|
|
61224
61270
|
export declare type JsonApiOrganizationInTypeEnum = 'organization';
|
|
61225
61271
|
|
|
61226
61272
|
/**
|
|
@@ -61295,9 +61341,17 @@ export declare interface JsonApiOrganizationOutMeta {
|
|
|
61295
61341
|
export declare type JsonApiOrganizationOutMetaPermissionsEnum = 'MANAGE' | 'SELF_CREATE_TOKEN' | 'BASE_UI_ACCESS';
|
|
61296
61342
|
|
|
61297
61343
|
export declare interface JsonApiOrganizationOutRelationships {
|
|
61298
|
-
'bootstrapUser'?:
|
|
61299
|
-
'bootstrapUserGroup'?:
|
|
61300
|
-
'identityProvider'?:
|
|
61344
|
+
'bootstrapUser'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
61345
|
+
'bootstrapUserGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
61346
|
+
'identityProvider'?: JsonApiOrganizationInRelationshipsIdentityProvider;
|
|
61347
|
+
}
|
|
61348
|
+
|
|
61349
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUser {
|
|
61350
|
+
'data': JsonApiUserLinkage | null;
|
|
61351
|
+
}
|
|
61352
|
+
|
|
61353
|
+
export declare interface JsonApiOrganizationOutRelationshipsBootstrapUserGroup {
|
|
61354
|
+
'data': JsonApiUserGroupLinkage | null;
|
|
61301
61355
|
}
|
|
61302
61356
|
|
|
61303
61357
|
export declare type JsonApiOrganizationOutTypeEnum = 'organization';
|
|
@@ -61314,37 +61368,14 @@ export declare interface JsonApiOrganizationPatch {
|
|
|
61314
61368
|
* API identifier of an object
|
|
61315
61369
|
*/
|
|
61316
61370
|
'id': string;
|
|
61317
|
-
'attributes'?:
|
|
61318
|
-
'relationships'?:
|
|
61319
|
-
}
|
|
61320
|
-
|
|
61321
|
-
export declare interface JsonApiOrganizationPatchAttributes {
|
|
61322
|
-
'name'?: string | null;
|
|
61323
|
-
'hostname'?: string;
|
|
61324
|
-
'allowedOrigins'?: Array<string>;
|
|
61325
|
-
/**
|
|
61326
|
-
* The early access feature identifier. It is used to enable experimental features. Deprecated in favor of earlyAccessValues.
|
|
61327
|
-
* @deprecated
|
|
61328
|
-
*/
|
|
61329
|
-
'earlyAccess'?: string | null;
|
|
61330
|
-
/**
|
|
61331
|
-
* The early access feature identifiers. They are used to enable experimental features.
|
|
61332
|
-
*/
|
|
61333
|
-
'earlyAccessValues'?: Array<string> | null;
|
|
61371
|
+
'attributes'?: JsonApiOrganizationInAttributes;
|
|
61372
|
+
'relationships'?: JsonApiOrganizationInRelationships;
|
|
61334
61373
|
}
|
|
61335
61374
|
|
|
61336
61375
|
export declare interface JsonApiOrganizationPatchDocument {
|
|
61337
61376
|
'data': JsonApiOrganizationPatch;
|
|
61338
61377
|
}
|
|
61339
61378
|
|
|
61340
|
-
export declare interface JsonApiOrganizationPatchRelationships {
|
|
61341
|
-
'identityProvider'?: JsonApiOrganizationPatchRelationshipsIdentityProvider;
|
|
61342
|
-
}
|
|
61343
|
-
|
|
61344
|
-
export declare interface JsonApiOrganizationPatchRelationshipsIdentityProvider {
|
|
61345
|
-
'data': JsonApiIdentityProviderLinkage | null;
|
|
61346
|
-
}
|
|
61347
|
-
|
|
61348
61379
|
export declare type JsonApiOrganizationPatchTypeEnum = 'organization';
|
|
61349
61380
|
|
|
61350
61381
|
/**
|
|
@@ -61394,7 +61425,7 @@ export declare interface JsonApiOrganizationSettingOutDocument {
|
|
|
61394
61425
|
export declare interface JsonApiOrganizationSettingOutList {
|
|
61395
61426
|
'data': Array<JsonApiOrganizationSettingOutWithLinks>;
|
|
61396
61427
|
'links'?: ListLinks;
|
|
61397
|
-
'meta'?:
|
|
61428
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61398
61429
|
}
|
|
61399
61430
|
|
|
61400
61431
|
export declare type JsonApiOrganizationSettingOutTypeEnum = 'organizationSetting';
|
|
@@ -61482,7 +61513,7 @@ export declare interface JsonApiThemeOutDocument {
|
|
|
61482
61513
|
export declare interface JsonApiThemeOutList {
|
|
61483
61514
|
'data': Array<JsonApiThemeOutWithLinks>;
|
|
61484
61515
|
'links'?: ListLinks;
|
|
61485
|
-
'meta'?:
|
|
61516
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61486
61517
|
}
|
|
61487
61518
|
|
|
61488
61519
|
export declare type JsonApiThemeOutTypeEnum = 'theme';
|
|
@@ -61557,7 +61588,7 @@ export declare interface JsonApiUserDataFilterOut {
|
|
|
61557
61588
|
* API identifier of an object
|
|
61558
61589
|
*/
|
|
61559
61590
|
'id': string;
|
|
61560
|
-
'meta'?:
|
|
61591
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
61561
61592
|
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
61562
61593
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
61563
61594
|
}
|
|
@@ -61582,7 +61613,7 @@ export declare type JsonApiUserDataFilterOutIncludes = JsonApiAttributeOutWithLi
|
|
|
61582
61613
|
export declare interface JsonApiUserDataFilterOutList {
|
|
61583
61614
|
'data': Array<JsonApiUserDataFilterOutWithLinks>;
|
|
61584
61615
|
'links'?: ListLinks;
|
|
61585
|
-
'meta'?:
|
|
61616
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61586
61617
|
/**
|
|
61587
61618
|
* Included resources
|
|
61588
61619
|
*/
|
|
@@ -61590,13 +61621,13 @@ export declare interface JsonApiUserDataFilterOutList {
|
|
|
61590
61621
|
}
|
|
61591
61622
|
|
|
61592
61623
|
export declare interface JsonApiUserDataFilterOutRelationships {
|
|
61593
|
-
'user'?:
|
|
61594
|
-
'userGroup'?:
|
|
61595
|
-
'facts'?:
|
|
61596
|
-
'attributes'?:
|
|
61597
|
-
'labels'?:
|
|
61598
|
-
'metrics'?:
|
|
61599
|
-
'datasets'?:
|
|
61624
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
61625
|
+
'userGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
61626
|
+
'facts'?: JsonApiDatasetOutRelationshipsFacts;
|
|
61627
|
+
'attributes'?: JsonApiDatasetOutRelationshipsAttributes;
|
|
61628
|
+
'labels'?: JsonApiAnalyticalDashboardOutRelationshipsLabels;
|
|
61629
|
+
'metrics'?: JsonApiAnalyticalDashboardOutRelationshipsMetrics;
|
|
61630
|
+
'datasets'?: JsonApiAnalyticalDashboardOutRelationshipsDatasets;
|
|
61600
61631
|
}
|
|
61601
61632
|
|
|
61602
61633
|
export declare type JsonApiUserDataFilterOutTypeEnum = 'userDataFilter';
|
|
@@ -61610,7 +61641,7 @@ export declare interface JsonApiUserDataFilterOutWithLinks {
|
|
|
61610
61641
|
* API identifier of an object
|
|
61611
61642
|
*/
|
|
61612
61643
|
'id': string;
|
|
61613
|
-
'meta'?:
|
|
61644
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
61614
61645
|
'attributes': JsonApiUserDataFilterPostOptionalIdAttributes;
|
|
61615
61646
|
'relationships'?: JsonApiUserDataFilterOutRelationships;
|
|
61616
61647
|
'links'?: ObjectLinks;
|
|
@@ -61677,12 +61708,8 @@ export declare interface JsonApiUserDataFilterPostOptionalIdDocument {
|
|
|
61677
61708
|
}
|
|
61678
61709
|
|
|
61679
61710
|
export declare interface JsonApiUserDataFilterPostOptionalIdRelationships {
|
|
61680
|
-
'user'?:
|
|
61681
|
-
'userGroup'?:
|
|
61682
|
-
}
|
|
61683
|
-
|
|
61684
|
-
export declare interface JsonApiUserDataFilterPostOptionalIdRelationshipsUserGroup {
|
|
61685
|
-
'data': JsonApiUserGroupLinkage | null;
|
|
61711
|
+
'user'?: JsonApiOrganizationOutRelationshipsBootstrapUser;
|
|
61712
|
+
'userGroup'?: JsonApiOrganizationOutRelationshipsBootstrapUserGroup;
|
|
61686
61713
|
}
|
|
61687
61714
|
|
|
61688
61715
|
export declare type JsonApiUserDataFilterPostOptionalIdTypeEnum = 'userDataFilter';
|
|
@@ -61754,7 +61781,7 @@ export declare interface JsonApiUserGroupOutDocument {
|
|
|
61754
61781
|
export declare interface JsonApiUserGroupOutList {
|
|
61755
61782
|
'data': Array<JsonApiUserGroupOutWithLinks>;
|
|
61756
61783
|
'links'?: ListLinks;
|
|
61757
|
-
'meta'?:
|
|
61784
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61758
61785
|
/**
|
|
61759
61786
|
* Included resources
|
|
61760
61787
|
*/
|
|
@@ -61847,7 +61874,7 @@ export declare interface JsonApiUserIdentifierOutDocument {
|
|
|
61847
61874
|
export declare interface JsonApiUserIdentifierOutList {
|
|
61848
61875
|
'data': Array<JsonApiUserIdentifierOutWithLinks>;
|
|
61849
61876
|
'links'?: ListLinks;
|
|
61850
|
-
'meta'?:
|
|
61877
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61851
61878
|
}
|
|
61852
61879
|
|
|
61853
61880
|
export declare type JsonApiUserIdentifierOutTypeEnum = 'userIdentifier';
|
|
@@ -61937,7 +61964,7 @@ export declare interface JsonApiUserOutDocument {
|
|
|
61937
61964
|
export declare interface JsonApiUserOutList {
|
|
61938
61965
|
'data': Array<JsonApiUserOutWithLinks>;
|
|
61939
61966
|
'links'?: ListLinks;
|
|
61940
|
-
'meta'?:
|
|
61967
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
61941
61968
|
/**
|
|
61942
61969
|
* Included resources
|
|
61943
61970
|
*/
|
|
@@ -62052,7 +62079,7 @@ export declare interface JsonApiUserSettingOutDocument {
|
|
|
62052
62079
|
export declare interface JsonApiUserSettingOutList {
|
|
62053
62080
|
'data': Array<JsonApiUserSettingOutWithLinks>;
|
|
62054
62081
|
'links'?: ListLinks;
|
|
62055
|
-
'meta'?:
|
|
62082
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62056
62083
|
}
|
|
62057
62084
|
|
|
62058
62085
|
export declare type JsonApiUserSettingOutTypeEnum = 'userSetting';
|
|
@@ -62084,19 +62111,7 @@ export declare interface JsonApiVisualizationObjectIn {
|
|
|
62084
62111
|
* API identifier of an object
|
|
62085
62112
|
*/
|
|
62086
62113
|
'id': string;
|
|
62087
|
-
'attributes':
|
|
62088
|
-
}
|
|
62089
|
-
|
|
62090
|
-
export declare interface JsonApiVisualizationObjectInAttributes {
|
|
62091
|
-
'title'?: string;
|
|
62092
|
-
'description'?: string;
|
|
62093
|
-
'tags'?: Array<string>;
|
|
62094
|
-
'areRelationsValid'?: boolean;
|
|
62095
|
-
/**
|
|
62096
|
-
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
62097
|
-
*/
|
|
62098
|
-
'content': object;
|
|
62099
|
-
'isHidden'?: boolean;
|
|
62114
|
+
'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
62100
62115
|
}
|
|
62101
62116
|
|
|
62102
62117
|
export declare interface JsonApiVisualizationObjectInDocument {
|
|
@@ -62127,7 +62142,7 @@ export declare interface JsonApiVisualizationObjectOut {
|
|
|
62127
62142
|
* API identifier of an object
|
|
62128
62143
|
*/
|
|
62129
62144
|
'id': string;
|
|
62130
|
-
'meta'?:
|
|
62145
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62131
62146
|
'attributes': JsonApiVisualizationObjectOutAttributes;
|
|
62132
62147
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
62133
62148
|
}
|
|
@@ -62172,25 +62187,20 @@ export declare interface JsonApiVisualizationObjectOutDocument {
|
|
|
62172
62187
|
/**
|
|
62173
62188
|
* Included resources
|
|
62174
62189
|
*/
|
|
62175
|
-
'included'?: Array<
|
|
62190
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
62176
62191
|
}
|
|
62177
62192
|
|
|
62178
|
-
/**
|
|
62179
|
-
* @type JsonApiVisualizationObjectOutIncludes
|
|
62180
|
-
*/
|
|
62181
|
-
export declare type JsonApiVisualizationObjectOutIncludes = JsonApiAttributeOutWithLinks | JsonApiDatasetOutWithLinks | JsonApiFactOutWithLinks | JsonApiLabelOutWithLinks | JsonApiMetricOutWithLinks | JsonApiUserIdentifierOutWithLinks;
|
|
62182
|
-
|
|
62183
62193
|
/**
|
|
62184
62194
|
* A JSON:API document with a list of resources
|
|
62185
62195
|
*/
|
|
62186
62196
|
export declare interface JsonApiVisualizationObjectOutList {
|
|
62187
62197
|
'data': Array<JsonApiVisualizationObjectOutWithLinks>;
|
|
62188
62198
|
'links'?: ListLinks;
|
|
62189
|
-
'meta'?:
|
|
62199
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62190
62200
|
/**
|
|
62191
62201
|
* Included resources
|
|
62192
62202
|
*/
|
|
62193
|
-
'included'?: Array<
|
|
62203
|
+
'included'?: Array<JsonApiMetricOutIncludes>;
|
|
62194
62204
|
}
|
|
62195
62205
|
|
|
62196
62206
|
export declare type JsonApiVisualizationObjectOutTypeEnum = 'visualizationObject';
|
|
@@ -62204,7 +62214,7 @@ export declare interface JsonApiVisualizationObjectOutWithLinks {
|
|
|
62204
62214
|
* API identifier of an object
|
|
62205
62215
|
*/
|
|
62206
62216
|
'id': string;
|
|
62207
|
-
'meta'?:
|
|
62217
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62208
62218
|
'attributes': JsonApiVisualizationObjectOutAttributes;
|
|
62209
62219
|
'relationships'?: JsonApiMetricOutRelationships;
|
|
62210
62220
|
'links'?: ObjectLinks;
|
|
@@ -62257,7 +62267,19 @@ export declare interface JsonApiVisualizationObjectPostOptionalId {
|
|
|
62257
62267
|
* API identifier of an object
|
|
62258
62268
|
*/
|
|
62259
62269
|
'id'?: string;
|
|
62260
|
-
'attributes':
|
|
62270
|
+
'attributes': JsonApiVisualizationObjectPostOptionalIdAttributes;
|
|
62271
|
+
}
|
|
62272
|
+
|
|
62273
|
+
export declare interface JsonApiVisualizationObjectPostOptionalIdAttributes {
|
|
62274
|
+
'title'?: string;
|
|
62275
|
+
'description'?: string;
|
|
62276
|
+
'tags'?: Array<string>;
|
|
62277
|
+
'areRelationsValid'?: boolean;
|
|
62278
|
+
/**
|
|
62279
|
+
* Free-form JSON content. Maximum supported length is 250000 characters.
|
|
62280
|
+
*/
|
|
62281
|
+
'content': object;
|
|
62282
|
+
'isHidden'?: boolean;
|
|
62261
62283
|
}
|
|
62262
62284
|
|
|
62263
62285
|
export declare interface JsonApiVisualizationObjectPostOptionalIdDocument {
|
|
@@ -62291,7 +62313,7 @@ export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
|
62291
62313
|
* Additional details to be included in the automated message.
|
|
62292
62314
|
*/
|
|
62293
62315
|
'details'?: object;
|
|
62294
|
-
'metadata'?:
|
|
62316
|
+
'metadata'?: JsonApiWorkspaceAutomationOutAttributesMetadata | null;
|
|
62295
62317
|
/**
|
|
62296
62318
|
* Current state of the automation.
|
|
62297
62319
|
*/
|
|
@@ -62300,26 +62322,102 @@ export declare interface JsonApiWorkspaceAutomationOutAttributes {
|
|
|
62300
62322
|
* Specify automation evaluation mode.
|
|
62301
62323
|
*/
|
|
62302
62324
|
'evaluationMode'?: JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum;
|
|
62303
|
-
'schedule'?:
|
|
62304
|
-
'alert'?:
|
|
62305
|
-
'tabularExports'?: Array<
|
|
62306
|
-
'visualExports'?: Array<
|
|
62307
|
-
'imageExports'?: Array<
|
|
62308
|
-
'rawExports'?: Array<
|
|
62309
|
-
'slidesExports'?: Array<
|
|
62310
|
-
'dashboardTabularExports'?: Array<
|
|
62325
|
+
'schedule'?: JsonApiWorkspaceAutomationOutAttributesSchedule;
|
|
62326
|
+
'alert'?: JsonApiWorkspaceAutomationOutAttributesAlert;
|
|
62327
|
+
'tabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesTabularExportsInner>;
|
|
62328
|
+
'visualExports'?: Array<JsonApiWorkspaceAutomationOutAttributesVisualExportsInner>;
|
|
62329
|
+
'imageExports'?: Array<JsonApiWorkspaceAutomationOutAttributesImageExportsInner>;
|
|
62330
|
+
'rawExports'?: Array<JsonApiWorkspaceAutomationOutAttributesRawExportsInner>;
|
|
62331
|
+
'slidesExports'?: Array<JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner>;
|
|
62332
|
+
'dashboardTabularExports'?: Array<JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner>;
|
|
62311
62333
|
/**
|
|
62312
62334
|
* External recipients of the automation action results.
|
|
62313
62335
|
*/
|
|
62314
|
-
'externalRecipients'?: Array<
|
|
62336
|
+
'externalRecipients'?: Array<JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner>;
|
|
62315
62337
|
'createdAt'?: string;
|
|
62316
62338
|
'modifiedAt'?: string;
|
|
62317
62339
|
}
|
|
62318
62340
|
|
|
62341
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesAlert {
|
|
62342
|
+
'execution': AlertAfm;
|
|
62343
|
+
'condition': AlertCondition;
|
|
62344
|
+
/**
|
|
62345
|
+
* 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. ONCE_PER_INTERVAL - alert is triggered when the condition is met, then suppressed for the interval. If no interval is specified, it behaves as ALWAYS.
|
|
62346
|
+
*/
|
|
62347
|
+
'trigger'?: JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum;
|
|
62348
|
+
/**
|
|
62349
|
+
* Date granularity for the interval of ONCE_PER_INTERVAL trigger. Supported granularities: DAY, WEEK, MONTH, QUARTER, YEAR.
|
|
62350
|
+
*/
|
|
62351
|
+
'interval'?: JsonApiWorkspaceAutomationOutAttributesAlertIntervalEnum;
|
|
62352
|
+
}
|
|
62353
|
+
|
|
62354
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesAlertIntervalEnum = 'DAY' | 'WEEK' | 'MONTH' | 'QUARTER' | 'YEAR';
|
|
62355
|
+
|
|
62356
|
+
export declare type JsonApiWorkspaceAutomationOutAttributesAlertTriggerEnum = 'ALWAYS' | 'ONCE' | 'ONCE_PER_INTERVAL';
|
|
62357
|
+
|
|
62358
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesDashboardTabularExportsInner {
|
|
62359
|
+
'requestPayload': DashboardTabularExportRequestV2;
|
|
62360
|
+
}
|
|
62361
|
+
|
|
62319
62362
|
export declare type JsonApiWorkspaceAutomationOutAttributesEvaluationModeEnum = 'SHARED' | 'PER_RECIPIENT';
|
|
62320
62363
|
|
|
62364
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesExternalRecipientsInner {
|
|
62365
|
+
/**
|
|
62366
|
+
* E-mail address to send notifications from.
|
|
62367
|
+
*/
|
|
62368
|
+
'email': string;
|
|
62369
|
+
}
|
|
62370
|
+
|
|
62371
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesImageExportsInner {
|
|
62372
|
+
'requestPayload': ImageExportRequest;
|
|
62373
|
+
}
|
|
62374
|
+
|
|
62375
|
+
/**
|
|
62376
|
+
* Additional information for the automation.
|
|
62377
|
+
*/
|
|
62378
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesMetadata {
|
|
62379
|
+
[key: string]: any;
|
|
62380
|
+
'widget'?: string;
|
|
62381
|
+
'visibleFilters'?: Array<VisibleFilter>;
|
|
62382
|
+
}
|
|
62383
|
+
|
|
62384
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesRawExportsInner {
|
|
62385
|
+
'requestPayload': RawExportAutomationRequest;
|
|
62386
|
+
}
|
|
62387
|
+
|
|
62388
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSchedule {
|
|
62389
|
+
/**
|
|
62390
|
+
* 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.
|
|
62391
|
+
*/
|
|
62392
|
+
'cron': string;
|
|
62393
|
+
/**
|
|
62394
|
+
* Human-readable description of the cron expression.
|
|
62395
|
+
*/
|
|
62396
|
+
'cronDescription'?: string;
|
|
62397
|
+
/**
|
|
62398
|
+
* Timezone in which the schedule is defined.
|
|
62399
|
+
*/
|
|
62400
|
+
'timezone': string;
|
|
62401
|
+
/**
|
|
62402
|
+
* Timestamp of the first scheduled action. If not provided default to the next scheduled time.
|
|
62403
|
+
*/
|
|
62404
|
+
'firstRun'?: string;
|
|
62405
|
+
}
|
|
62406
|
+
|
|
62407
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesSlidesExportsInner {
|
|
62408
|
+
'requestPayload': SlidesExportRequest;
|
|
62409
|
+
}
|
|
62410
|
+
|
|
62321
62411
|
export declare type JsonApiWorkspaceAutomationOutAttributesStateEnum = 'ACTIVE' | 'PAUSED';
|
|
62322
62412
|
|
|
62413
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesTabularExportsInner {
|
|
62414
|
+
'requestPayload': TabularExportRequest;
|
|
62415
|
+
}
|
|
62416
|
+
|
|
62417
|
+
export declare interface JsonApiWorkspaceAutomationOutAttributesVisualExportsInner {
|
|
62418
|
+
'requestPayload': VisualExportRequest;
|
|
62419
|
+
}
|
|
62420
|
+
|
|
62323
62421
|
/**
|
|
62324
62422
|
* @type JsonApiWorkspaceAutomationOutIncludes
|
|
62325
62423
|
*/
|
|
@@ -62331,7 +62429,7 @@ export declare type JsonApiWorkspaceAutomationOutIncludes = JsonApiAnalyticalDas
|
|
|
62331
62429
|
export declare interface JsonApiWorkspaceAutomationOutList {
|
|
62332
62430
|
'data': Array<JsonApiWorkspaceAutomationOutWithLinks>;
|
|
62333
62431
|
'links'?: ListLinks;
|
|
62334
|
-
'meta'?:
|
|
62432
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62335
62433
|
/**
|
|
62336
62434
|
* Included resources
|
|
62337
62435
|
*/
|
|
@@ -62340,13 +62438,38 @@ export declare interface JsonApiWorkspaceAutomationOutList {
|
|
|
62340
62438
|
|
|
62341
62439
|
export declare interface JsonApiWorkspaceAutomationOutRelationships {
|
|
62342
62440
|
'workspace'?: JsonApiWorkspaceOutRelationshipsParent;
|
|
62343
|
-
'notificationChannel'?:
|
|
62344
|
-
'analyticalDashboard'?:
|
|
62345
|
-
'createdBy'?:
|
|
62346
|
-
'modifiedBy'?:
|
|
62347
|
-
'exportDefinitions'?:
|
|
62348
|
-
'recipients'?:
|
|
62349
|
-
'automationResults'?:
|
|
62441
|
+
'notificationChannel'?: JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel;
|
|
62442
|
+
'analyticalDashboard'?: JsonApiExportDefinitionOutRelationshipsAnalyticalDashboard;
|
|
62443
|
+
'createdBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
62444
|
+
'modifiedBy'?: JsonApiAnalyticalDashboardOutRelationshipsCreatedBy;
|
|
62445
|
+
'exportDefinitions'?: JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions;
|
|
62446
|
+
'recipients'?: JsonApiWorkspaceAutomationOutRelationshipsRecipients;
|
|
62447
|
+
'automationResults'?: JsonApiWorkspaceAutomationOutRelationshipsAutomationResults;
|
|
62448
|
+
}
|
|
62449
|
+
|
|
62450
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsAutomationResults {
|
|
62451
|
+
/**
|
|
62452
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
62453
|
+
*/
|
|
62454
|
+
'data': Array<JsonApiAutomationResultLinkage>;
|
|
62455
|
+
}
|
|
62456
|
+
|
|
62457
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsExportDefinitions {
|
|
62458
|
+
/**
|
|
62459
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
62460
|
+
*/
|
|
62461
|
+
'data': Array<JsonApiExportDefinitionLinkage>;
|
|
62462
|
+
}
|
|
62463
|
+
|
|
62464
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsNotificationChannel {
|
|
62465
|
+
'data': JsonApiNotificationChannelLinkage | null;
|
|
62466
|
+
}
|
|
62467
|
+
|
|
62468
|
+
export declare interface JsonApiWorkspaceAutomationOutRelationshipsRecipients {
|
|
62469
|
+
/**
|
|
62470
|
+
* References to other resource objects in a to-many (\\\"relationship\\\"). Relationships can be specified by including a member in a resource\'s links object.
|
|
62471
|
+
*/
|
|
62472
|
+
'data': Array<JsonApiUserLinkage>;
|
|
62350
62473
|
}
|
|
62351
62474
|
|
|
62352
62475
|
export declare type JsonApiWorkspaceAutomationOutTypeEnum = 'workspaceAutomation';
|
|
@@ -62411,7 +62534,7 @@ export declare interface JsonApiWorkspaceDataFilterOut {
|
|
|
62411
62534
|
* API identifier of an object
|
|
62412
62535
|
*/
|
|
62413
62536
|
'id': string;
|
|
62414
|
-
'meta'?:
|
|
62537
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62415
62538
|
'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
62416
62539
|
'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
62417
62540
|
}
|
|
@@ -62437,7 +62560,7 @@ export declare interface JsonApiWorkspaceDataFilterOutDocument {
|
|
|
62437
62560
|
export declare interface JsonApiWorkspaceDataFilterOutList {
|
|
62438
62561
|
'data': Array<JsonApiWorkspaceDataFilterOutWithLinks>;
|
|
62439
62562
|
'links'?: ListLinks;
|
|
62440
|
-
'meta'?:
|
|
62563
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62441
62564
|
/**
|
|
62442
62565
|
* Included resources
|
|
62443
62566
|
*/
|
|
@@ -62466,7 +62589,7 @@ export declare interface JsonApiWorkspaceDataFilterOutWithLinks {
|
|
|
62466
62589
|
* API identifier of an object
|
|
62467
62590
|
*/
|
|
62468
62591
|
'id': string;
|
|
62469
|
-
'meta'?:
|
|
62592
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62470
62593
|
'attributes'?: JsonApiWorkspaceDataFilterOutAttributes;
|
|
62471
62594
|
'relationships'?: JsonApiWorkspaceDataFilterOutRelationships;
|
|
62472
62595
|
'links'?: ObjectLinks;
|
|
@@ -62540,7 +62663,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOut {
|
|
|
62540
62663
|
* API identifier of an object
|
|
62541
62664
|
*/
|
|
62542
62665
|
'id': string;
|
|
62543
|
-
'meta'?:
|
|
62666
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62544
62667
|
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
62545
62668
|
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
62546
62669
|
}
|
|
@@ -62566,7 +62689,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutDocument {
|
|
|
62566
62689
|
export declare interface JsonApiWorkspaceDataFilterSettingOutList {
|
|
62567
62690
|
'data': Array<JsonApiWorkspaceDataFilterSettingOutWithLinks>;
|
|
62568
62691
|
'links'?: ListLinks;
|
|
62569
|
-
'meta'?:
|
|
62692
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62570
62693
|
/**
|
|
62571
62694
|
* Included resources
|
|
62572
62695
|
*/
|
|
@@ -62592,7 +62715,7 @@ export declare interface JsonApiWorkspaceDataFilterSettingOutWithLinks {
|
|
|
62592
62715
|
* API identifier of an object
|
|
62593
62716
|
*/
|
|
62594
62717
|
'id': string;
|
|
62595
|
-
'meta'?:
|
|
62718
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62596
62719
|
'attributes'?: JsonApiWorkspaceDataFilterSettingOutAttributes;
|
|
62597
62720
|
'relationships'?: JsonApiWorkspaceDataFilterSettingOutRelationships;
|
|
62598
62721
|
'links'?: ObjectLinks;
|
|
@@ -62720,7 +62843,7 @@ export declare interface JsonApiWorkspaceOutDocument {
|
|
|
62720
62843
|
export declare interface JsonApiWorkspaceOutList {
|
|
62721
62844
|
'data': Array<JsonApiWorkspaceOutWithLinks>;
|
|
62722
62845
|
'links'?: ListLinks;
|
|
62723
|
-
'meta'?:
|
|
62846
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62724
62847
|
/**
|
|
62725
62848
|
* Included resources
|
|
62726
62849
|
*/
|
|
@@ -62850,7 +62973,7 @@ export declare interface JsonApiWorkspaceSettingOut {
|
|
|
62850
62973
|
* API identifier of an object
|
|
62851
62974
|
*/
|
|
62852
62975
|
'id': string;
|
|
62853
|
-
'meta'?:
|
|
62976
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62854
62977
|
'attributes'?: JsonApiUserSettingInAttributes;
|
|
62855
62978
|
}
|
|
62856
62979
|
|
|
@@ -62865,7 +62988,7 @@ export declare interface JsonApiWorkspaceSettingOutDocument {
|
|
|
62865
62988
|
export declare interface JsonApiWorkspaceSettingOutList {
|
|
62866
62989
|
'data': Array<JsonApiWorkspaceSettingOutWithLinks>;
|
|
62867
62990
|
'links'?: ListLinks;
|
|
62868
|
-
'meta'?:
|
|
62991
|
+
'meta'?: JsonApiCustomGeoCollectionOutListMeta;
|
|
62869
62992
|
}
|
|
62870
62993
|
|
|
62871
62994
|
export declare type JsonApiWorkspaceSettingOutTypeEnum = 'workspaceSetting';
|
|
@@ -62879,7 +63002,7 @@ export declare interface JsonApiWorkspaceSettingOutWithLinks {
|
|
|
62879
63002
|
* API identifier of an object
|
|
62880
63003
|
*/
|
|
62881
63004
|
'id': string;
|
|
62882
|
-
'meta'?:
|
|
63005
|
+
'meta'?: JsonApiExportDefinitionOutMeta;
|
|
62883
63006
|
'attributes'?: JsonApiUserSettingInAttributes;
|
|
62884
63007
|
'links'?: ObjectLinks;
|
|
62885
63008
|
}
|
|
@@ -67163,54 +67286,61 @@ declare interface ListLlmProviderModelsResponse {
|
|
|
67163
67286
|
*/
|
|
67164
67287
|
export declare class LLMEndpointsApi extends MetadataBaseApi implements LLMEndpointsApiInterface {
|
|
67165
67288
|
/**
|
|
67166
|
-
*
|
|
67289
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67167
67290
|
* @summary Post LLM endpoint entities
|
|
67168
67291
|
* @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67169
67292
|
* @param {*} [options] Override http request option.
|
|
67293
|
+
* @deprecated
|
|
67170
67294
|
* @throws {RequiredError}
|
|
67171
67295
|
* @memberof LLMEndpointsApi
|
|
67172
67296
|
*/
|
|
67173
67297
|
createEntityLlmEndpoints(requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67174
67298
|
/**
|
|
67175
|
-
*
|
|
67299
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67300
|
+
* @summary Delete LLM endpoint entity
|
|
67176
67301
|
* @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67177
67302
|
* @param {*} [options] Override http request option.
|
|
67303
|
+
* @deprecated
|
|
67178
67304
|
* @throws {RequiredError}
|
|
67179
67305
|
* @memberof LLMEndpointsApi
|
|
67180
67306
|
*/
|
|
67181
67307
|
deleteEntityLlmEndpoints(requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67182
67308
|
/**
|
|
67183
|
-
*
|
|
67309
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67184
67310
|
* @summary Get all LLM endpoint entities
|
|
67185
67311
|
* @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
67186
67312
|
* @param {*} [options] Override http request option.
|
|
67313
|
+
* @deprecated
|
|
67187
67314
|
* @throws {RequiredError}
|
|
67188
67315
|
* @memberof LLMEndpointsApi
|
|
67189
67316
|
*/
|
|
67190
67317
|
getAllEntitiesLlmEndpoints(requestParameters?: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
67191
67318
|
/**
|
|
67192
|
-
*
|
|
67319
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67193
67320
|
* @summary Get LLM endpoint entity
|
|
67194
67321
|
* @param {LLMEndpointsApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67195
67322
|
* @param {*} [options] Override http request option.
|
|
67323
|
+
* @deprecated
|
|
67196
67324
|
* @throws {RequiredError}
|
|
67197
67325
|
* @memberof LLMEndpointsApi
|
|
67198
67326
|
*/
|
|
67199
67327
|
getEntityLlmEndpoints(requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67200
67328
|
/**
|
|
67201
|
-
*
|
|
67329
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67202
67330
|
* @summary Patch LLM endpoint entity
|
|
67203
67331
|
* @param {LLMEndpointsApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67204
67332
|
* @param {*} [options] Override http request option.
|
|
67333
|
+
* @deprecated
|
|
67205
67334
|
* @throws {RequiredError}
|
|
67206
67335
|
* @memberof LLMEndpointsApi
|
|
67207
67336
|
*/
|
|
67208
67337
|
patchEntityLlmEndpoints(requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67209
67338
|
/**
|
|
67210
|
-
*
|
|
67339
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67211
67340
|
* @summary PUT LLM endpoint entity
|
|
67212
67341
|
* @param {LLMEndpointsApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67213
67342
|
* @param {*} [options] Override http request option.
|
|
67343
|
+
* @deprecated
|
|
67214
67344
|
* @throws {RequiredError}
|
|
67215
67345
|
* @memberof LLMEndpointsApi
|
|
67216
67346
|
*/
|
|
@@ -67218,7 +67348,7 @@ export declare class LLMEndpointsApi extends MetadataBaseApi implements LLMEndpo
|
|
|
67218
67348
|
}
|
|
67219
67349
|
|
|
67220
67350
|
/**
|
|
67221
|
-
*
|
|
67351
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67222
67352
|
* @summary Post LLM endpoint entities
|
|
67223
67353
|
* @param {AxiosInstance} axios Axios instance.
|
|
67224
67354
|
* @param {string} basePath Base path.
|
|
@@ -67230,7 +67360,8 @@ export declare class LLMEndpointsApi extends MetadataBaseApi implements LLMEndpo
|
|
|
67230
67360
|
export declare function LLMEndpointsApi_CreateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67231
67361
|
|
|
67232
67362
|
/**
|
|
67233
|
-
*
|
|
67363
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67364
|
+
* @summary Delete LLM endpoint entity
|
|
67234
67365
|
* @param {AxiosInstance} axios Axios instance.
|
|
67235
67366
|
* @param {string} basePath Base path.
|
|
67236
67367
|
* @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -67241,7 +67372,7 @@ export declare function LLMEndpointsApi_CreateEntityLlmEndpoints(axios: AxiosIns
|
|
|
67241
67372
|
export declare function LLMEndpointsApi_DeleteEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
67242
67373
|
|
|
67243
67374
|
/**
|
|
67244
|
-
*
|
|
67375
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67245
67376
|
* @summary Get all LLM endpoint entities
|
|
67246
67377
|
* @param {AxiosInstance} axios Axios instance.
|
|
67247
67378
|
* @param {string} basePath Base path.
|
|
@@ -67253,7 +67384,7 @@ export declare function LLMEndpointsApi_DeleteEntityLlmEndpoints(axios: AxiosIns
|
|
|
67253
67384
|
export declare function LLMEndpointsApi_GetAllEntitiesLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
67254
67385
|
|
|
67255
67386
|
/**
|
|
67256
|
-
*
|
|
67387
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67257
67388
|
* @summary Get LLM endpoint entity
|
|
67258
67389
|
* @param {AxiosInstance} axios Axios instance.
|
|
67259
67390
|
* @param {string} basePath Base path.
|
|
@@ -67265,7 +67396,7 @@ export declare function LLMEndpointsApi_GetAllEntitiesLlmEndpoints(axios: AxiosI
|
|
|
67265
67396
|
export declare function LLMEndpointsApi_GetEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67266
67397
|
|
|
67267
67398
|
/**
|
|
67268
|
-
*
|
|
67399
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67269
67400
|
* @summary Patch LLM endpoint entity
|
|
67270
67401
|
* @param {AxiosInstance} axios Axios instance.
|
|
67271
67402
|
* @param {string} basePath Base path.
|
|
@@ -67277,7 +67408,7 @@ export declare function LLMEndpointsApi_GetEntityLlmEndpoints(axios: AxiosInstan
|
|
|
67277
67408
|
export declare function LLMEndpointsApi_PatchEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67278
67409
|
|
|
67279
67410
|
/**
|
|
67280
|
-
*
|
|
67411
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67281
67412
|
* @summary PUT LLM endpoint entity
|
|
67282
67413
|
* @param {AxiosInstance} axios Axios instance.
|
|
67283
67414
|
* @param {string} basePath Base path.
|
|
@@ -67289,7 +67420,7 @@ export declare function LLMEndpointsApi_PatchEntityLlmEndpoints(axios: AxiosInst
|
|
|
67289
67420
|
export declare function LLMEndpointsApi_UpdateEntityLlmEndpoints(axios: AxiosInstance, basePath: string, requestParameters: LLMEndpointsApiUpdateEntityLlmEndpointsRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67290
67421
|
|
|
67291
67422
|
/**
|
|
67292
|
-
*
|
|
67423
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67293
67424
|
* @summary Post LLM endpoint entities
|
|
67294
67425
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
67295
67426
|
* @param {*} [options] Override http request option.
|
|
@@ -67299,7 +67430,8 @@ export declare function LLMEndpointsApi_UpdateEntityLlmEndpoints(axios: AxiosIns
|
|
|
67299
67430
|
export declare function LLMEndpointsApiAxiosParamCreator_CreateEntityLlmEndpoints(jsonApiLlmEndpointInDocument: JsonApiLlmEndpointInDocument, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67300
67431
|
|
|
67301
67432
|
/**
|
|
67302
|
-
*
|
|
67433
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67434
|
+
* @summary Delete LLM endpoint entity
|
|
67303
67435
|
* @param {string} id
|
|
67304
67436
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
67305
67437
|
* @param {*} [options] Override http request option.
|
|
@@ -67309,7 +67441,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_CreateEntityLlmEndpoint
|
|
|
67309
67441
|
export declare function LLMEndpointsApiAxiosParamCreator_DeleteEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67310
67442
|
|
|
67311
67443
|
/**
|
|
67312
|
-
*
|
|
67444
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67313
67445
|
* @summary Get all LLM endpoint entities
|
|
67314
67446
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
67315
67447
|
* @param {number} [page] Zero-based page index (0..N)
|
|
@@ -67323,7 +67455,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_DeleteEntityLlmEndpoint
|
|
|
67323
67455
|
export declare function LLMEndpointsApiAxiosParamCreator_GetAllEntitiesLlmEndpoints(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67324
67456
|
|
|
67325
67457
|
/**
|
|
67326
|
-
*
|
|
67458
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67327
67459
|
* @summary Get LLM endpoint entity
|
|
67328
67460
|
* @param {string} id
|
|
67329
67461
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -67334,7 +67466,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_GetAllEntitiesLlmEndpoi
|
|
|
67334
67466
|
export declare function LLMEndpointsApiAxiosParamCreator_GetEntityLlmEndpoints(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67335
67467
|
|
|
67336
67468
|
/**
|
|
67337
|
-
*
|
|
67469
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67338
67470
|
* @summary Patch LLM endpoint entity
|
|
67339
67471
|
* @param {string} id
|
|
67340
67472
|
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
@@ -67346,7 +67478,7 @@ export declare function LLMEndpointsApiAxiosParamCreator_GetEntityLlmEndpoints(i
|
|
|
67346
67478
|
export declare function LLMEndpointsApiAxiosParamCreator_PatchEntityLlmEndpoints(id: string, jsonApiLlmEndpointPatchDocument: JsonApiLlmEndpointPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
67347
67479
|
|
|
67348
67480
|
/**
|
|
67349
|
-
*
|
|
67481
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67350
67482
|
* @summary PUT LLM endpoint entity
|
|
67351
67483
|
* @param {string} id
|
|
67352
67484
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
@@ -67456,54 +67588,61 @@ export declare interface LLMEndpointsApiGetEntityLlmEndpointsRequest {
|
|
|
67456
67588
|
*/
|
|
67457
67589
|
export declare interface LLMEndpointsApiInterface {
|
|
67458
67590
|
/**
|
|
67459
|
-
*
|
|
67591
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67460
67592
|
* @summary Post LLM endpoint entities
|
|
67461
67593
|
* @param {LLMEndpointsApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67462
67594
|
* @param {*} [options] Override http request option.
|
|
67595
|
+
* @deprecated
|
|
67463
67596
|
* @throws {RequiredError}
|
|
67464
67597
|
* @memberof LLMEndpointsApiInterface
|
|
67465
67598
|
*/
|
|
67466
67599
|
createEntityLlmEndpoints(requestParameters: LLMEndpointsApiCreateEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67467
67600
|
/**
|
|
67468
|
-
*
|
|
67601
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67602
|
+
* @summary Delete LLM endpoint entity
|
|
67469
67603
|
* @param {LLMEndpointsApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67470
67604
|
* @param {*} [options] Override http request option.
|
|
67605
|
+
* @deprecated
|
|
67471
67606
|
* @throws {RequiredError}
|
|
67472
67607
|
* @memberof LLMEndpointsApiInterface
|
|
67473
67608
|
*/
|
|
67474
67609
|
deleteEntityLlmEndpoints(requestParameters: LLMEndpointsApiDeleteEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
67475
67610
|
/**
|
|
67476
|
-
*
|
|
67611
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67477
67612
|
* @summary Get all LLM endpoint entities
|
|
67478
67613
|
* @param {LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
67479
67614
|
* @param {*} [options] Override http request option.
|
|
67615
|
+
* @deprecated
|
|
67480
67616
|
* @throws {RequiredError}
|
|
67481
67617
|
* @memberof LLMEndpointsApiInterface
|
|
67482
67618
|
*/
|
|
67483
67619
|
getAllEntitiesLlmEndpoints(requestParameters: LLMEndpointsApiGetAllEntitiesLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutList>;
|
|
67484
67620
|
/**
|
|
67485
|
-
*
|
|
67621
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67486
67622
|
* @summary Get LLM endpoint entity
|
|
67487
67623
|
* @param {LLMEndpointsApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67488
67624
|
* @param {*} [options] Override http request option.
|
|
67625
|
+
* @deprecated
|
|
67489
67626
|
* @throws {RequiredError}
|
|
67490
67627
|
* @memberof LLMEndpointsApiInterface
|
|
67491
67628
|
*/
|
|
67492
67629
|
getEntityLlmEndpoints(requestParameters: LLMEndpointsApiGetEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67493
67630
|
/**
|
|
67494
|
-
*
|
|
67631
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67495
67632
|
* @summary Patch LLM endpoint entity
|
|
67496
67633
|
* @param {LLMEndpointsApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67497
67634
|
* @param {*} [options] Override http request option.
|
|
67635
|
+
* @deprecated
|
|
67498
67636
|
* @throws {RequiredError}
|
|
67499
67637
|
* @memberof LLMEndpointsApiInterface
|
|
67500
67638
|
*/
|
|
67501
67639
|
patchEntityLlmEndpoints(requestParameters: LLMEndpointsApiPatchEntityLlmEndpointsRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiLlmEndpointOutDocument>;
|
|
67502
67640
|
/**
|
|
67503
|
-
*
|
|
67641
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
67504
67642
|
* @summary PUT LLM endpoint entity
|
|
67505
67643
|
* @param {LLMEndpointsApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
67506
67644
|
* @param {*} [options] Override http request option.
|
|
67645
|
+
* @deprecated
|
|
67507
67646
|
* @throws {RequiredError}
|
|
67508
67647
|
* @memberof LLMEndpointsApiInterface
|
|
67509
67648
|
*/
|
|
@@ -71031,6 +71170,27 @@ export declare interface ObjectLinksContainer {
|
|
|
71031
71170
|
'links'?: ObjectLinks;
|
|
71032
71171
|
}
|
|
71033
71172
|
|
|
71173
|
+
declare interface ObjectReference {
|
|
71174
|
+
/**
|
|
71175
|
+
* Type of the referenced object.
|
|
71176
|
+
*/
|
|
71177
|
+
'type': ObjectReferenceTypeEnum;
|
|
71178
|
+
/**
|
|
71179
|
+
* Object identifier (e.g. widget ID, metric ID).
|
|
71180
|
+
*/
|
|
71181
|
+
'id': string;
|
|
71182
|
+
}
|
|
71183
|
+
|
|
71184
|
+
declare interface ObjectReferenceGroup {
|
|
71185
|
+
'context'?: ObjectReference;
|
|
71186
|
+
/**
|
|
71187
|
+
* Objects the user explicitly referenced within this context.
|
|
71188
|
+
*/
|
|
71189
|
+
'objects': Array<ObjectReference>;
|
|
71190
|
+
}
|
|
71191
|
+
|
|
71192
|
+
declare type ObjectReferenceTypeEnum = 'WIDGET' | 'METRIC' | 'ATTRIBUTE' | 'DASHBOARD';
|
|
71193
|
+
|
|
71034
71194
|
/**
|
|
71035
71195
|
* Request parameters for getCollectionItems operation in OGCAPIFeaturesApi.
|
|
71036
71196
|
* @export
|
|
@@ -72588,10 +72748,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72588
72748
|
*/
|
|
72589
72749
|
createEntityIdentityProviders(requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
72590
72750
|
/**
|
|
72591
|
-
*
|
|
72751
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72592
72752
|
* @summary Post LLM endpoint entities
|
|
72593
72753
|
* @param {OrganizationModelControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
72594
72754
|
* @param {*} [options] Override http request option.
|
|
72755
|
+
* @deprecated
|
|
72595
72756
|
* @throws {RequiredError}
|
|
72596
72757
|
* @memberof OrganizationModelControllerApi
|
|
72597
72758
|
*/
|
|
@@ -72696,9 +72857,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72696
72857
|
*/
|
|
72697
72858
|
deleteEntityIdentityProviders(requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
72698
72859
|
/**
|
|
72699
|
-
*
|
|
72860
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72861
|
+
* @summary Delete LLM endpoint entity
|
|
72700
72862
|
* @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
72701
72863
|
* @param {*} [options] Override http request option.
|
|
72864
|
+
* @deprecated
|
|
72702
72865
|
* @throws {RequiredError}
|
|
72703
72866
|
* @memberof OrganizationModelControllerApi
|
|
72704
72867
|
*/
|
|
@@ -72821,10 +72984,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72821
72984
|
*/
|
|
72822
72985
|
getAllEntitiesIdentityProviders(requestParameters?: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
72823
72986
|
/**
|
|
72824
|
-
*
|
|
72987
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72825
72988
|
* @summary Get all LLM endpoint entities
|
|
72826
72989
|
* @param {OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
72827
72990
|
* @param {*} [options] Override http request option.
|
|
72991
|
+
* @deprecated
|
|
72828
72992
|
* @throws {RequiredError}
|
|
72829
72993
|
* @memberof OrganizationModelControllerApi
|
|
72830
72994
|
*/
|
|
@@ -72964,10 +73128,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
72964
73128
|
*/
|
|
72965
73129
|
getEntityIdentityProviders(requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
72966
73130
|
/**
|
|
72967
|
-
*
|
|
73131
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
72968
73132
|
* @summary Get LLM endpoint entity
|
|
72969
73133
|
* @param {OrganizationModelControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
72970
73134
|
* @param {*} [options] Override http request option.
|
|
73135
|
+
* @deprecated
|
|
72971
73136
|
* @throws {RequiredError}
|
|
72972
73137
|
* @memberof OrganizationModelControllerApi
|
|
72973
73138
|
*/
|
|
@@ -73089,10 +73254,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
73089
73254
|
*/
|
|
73090
73255
|
patchEntityIdentityProviders(requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73091
73256
|
/**
|
|
73092
|
-
*
|
|
73257
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73093
73258
|
* @summary Patch LLM endpoint entity
|
|
73094
73259
|
* @param {OrganizationModelControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
73095
73260
|
* @param {*} [options] Override http request option.
|
|
73261
|
+
* @deprecated
|
|
73096
73262
|
* @throws {RequiredError}
|
|
73097
73263
|
* @memberof OrganizationModelControllerApi
|
|
73098
73264
|
*/
|
|
@@ -73197,10 +73363,11 @@ export declare class OrganizationModelControllerApi extends MetadataBaseApi impl
|
|
|
73197
73363
|
*/
|
|
73198
73364
|
updateEntityIdentityProviders(requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73199
73365
|
/**
|
|
73200
|
-
*
|
|
73366
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73201
73367
|
* @summary PUT LLM endpoint entity
|
|
73202
73368
|
* @param {OrganizationModelControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
73203
73369
|
* @param {*} [options] Override http request option.
|
|
73370
|
+
* @deprecated
|
|
73204
73371
|
* @throws {RequiredError}
|
|
73205
73372
|
* @memberof OrganizationModelControllerApi
|
|
73206
73373
|
*/
|
|
@@ -73319,7 +73486,7 @@ export declare function OrganizationModelControllerApi_CreateEntityExportTemplat
|
|
|
73319
73486
|
export declare function OrganizationModelControllerApi_CreateEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73320
73487
|
|
|
73321
73488
|
/**
|
|
73322
|
-
*
|
|
73489
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73323
73490
|
* @summary Post LLM endpoint entities
|
|
73324
73491
|
* @param {AxiosInstance} axios Axios instance.
|
|
73325
73492
|
* @param {string} basePath Base path.
|
|
@@ -73463,7 +73630,8 @@ export declare function OrganizationModelControllerApi_DeleteEntityExportTemplat
|
|
|
73463
73630
|
export declare function OrganizationModelControllerApi_DeleteEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<void>;
|
|
73464
73631
|
|
|
73465
73632
|
/**
|
|
73466
|
-
*
|
|
73633
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73634
|
+
* @summary Delete LLM endpoint entity
|
|
73467
73635
|
* @param {AxiosInstance} axios Axios instance.
|
|
73468
73636
|
* @param {string} basePath Base path.
|
|
73469
73637
|
* @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
@@ -73630,7 +73798,7 @@ export declare function OrganizationModelControllerApi_GetAllEntitiesExportTempl
|
|
|
73630
73798
|
export declare function OrganizationModelControllerApi_GetAllEntitiesIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
73631
73799
|
|
|
73632
73800
|
/**
|
|
73633
|
-
*
|
|
73801
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73634
73802
|
* @summary Get all LLM endpoint entities
|
|
73635
73803
|
* @param {AxiosInstance} axios Axios instance.
|
|
73636
73804
|
* @param {string} basePath Base path.
|
|
@@ -73821,7 +73989,7 @@ export declare function OrganizationModelControllerApi_GetEntityExportTemplates(
|
|
|
73821
73989
|
export declare function OrganizationModelControllerApi_GetEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73822
73990
|
|
|
73823
73991
|
/**
|
|
73824
|
-
*
|
|
73992
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73825
73993
|
* @summary Get LLM endpoint entity
|
|
73826
73994
|
* @param {AxiosInstance} axios Axios instance.
|
|
73827
73995
|
* @param {string} basePath Base path.
|
|
@@ -73988,7 +74156,7 @@ export declare function OrganizationModelControllerApi_PatchEntityExportTemplate
|
|
|
73988
74156
|
export declare function OrganizationModelControllerApi_PatchEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
73989
74157
|
|
|
73990
74158
|
/**
|
|
73991
|
-
*
|
|
74159
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
73992
74160
|
* @summary Patch LLM endpoint entity
|
|
73993
74161
|
* @param {AxiosInstance} axios Axios instance.
|
|
73994
74162
|
* @param {string} basePath Base path.
|
|
@@ -74132,7 +74300,7 @@ export declare function OrganizationModelControllerApi_UpdateEntityExportTemplat
|
|
|
74132
74300
|
export declare function OrganizationModelControllerApi_UpdateEntityIdentityProviders(axios: AxiosInstance, basePath: string, requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
74133
74301
|
|
|
74134
74302
|
/**
|
|
74135
|
-
*
|
|
74303
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74136
74304
|
* @summary PUT LLM endpoint entity
|
|
74137
74305
|
* @param {AxiosInstance} axios Axios instance.
|
|
74138
74306
|
* @param {string} basePath Base path.
|
|
@@ -74268,7 +74436,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_CreateEn
|
|
|
74268
74436
|
export declare function OrganizationModelControllerApiAxiosParamCreator_CreateEntityIdentityProviders(jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74269
74437
|
|
|
74270
74438
|
/**
|
|
74271
|
-
*
|
|
74439
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74272
74440
|
* @summary Post LLM endpoint entities
|
|
74273
74441
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
74274
74442
|
* @param {*} [options] Override http request option.
|
|
@@ -74396,7 +74564,8 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_DeleteEn
|
|
|
74396
74564
|
export declare function OrganizationModelControllerApiAxiosParamCreator_DeleteEntityIdentityProviders(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74397
74565
|
|
|
74398
74566
|
/**
|
|
74399
|
-
*
|
|
74567
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74568
|
+
* @summary Delete LLM endpoint entity
|
|
74400
74569
|
* @param {string} id
|
|
74401
74570
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
74402
74571
|
* @param {*} [options] Override http request option.
|
|
@@ -74567,7 +74736,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_GetAllEn
|
|
|
74567
74736
|
export declare function OrganizationModelControllerApiAxiosParamCreator_GetAllEntitiesIdentityProviders(filter?: string, page?: number, size?: number, sort?: Array<string>, metaInclude?: Array<'page' | 'all' | 'ALL'>, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74568
74737
|
|
|
74569
74738
|
/**
|
|
74570
|
-
*
|
|
74739
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74571
74740
|
* @summary Get all LLM endpoint entities
|
|
74572
74741
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
74573
74742
|
* @param {number} [page] Zero-based page index (0..N)
|
|
@@ -74776,7 +74945,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_GetEntit
|
|
|
74776
74945
|
export declare function OrganizationModelControllerApiAxiosParamCreator_GetEntityIdentityProviders(id: string, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74777
74946
|
|
|
74778
74947
|
/**
|
|
74779
|
-
*
|
|
74948
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74780
74949
|
* @summary Get LLM endpoint entity
|
|
74781
74950
|
* @param {string} id
|
|
74782
74951
|
* @param {string} [filter] Filtering parameter in RSQL. See https://github.com/jirutka/rsql-parser. You can specify any object parameter and parameter of related entity (for example title==\'Some Title\';description==\'desc\'). Additionally, if the entity relationship represents a polymorphic entity type, it can be casted to its subtypes (for example relatedEntity::subtype.subtypeProperty==\'Value 123\').
|
|
@@ -74937,7 +75106,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_PatchEnt
|
|
|
74937
75106
|
export declare function OrganizationModelControllerApiAxiosParamCreator_PatchEntityIdentityProviders(id: string, jsonApiIdentityProviderPatchDocument: JsonApiIdentityProviderPatchDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
74938
75107
|
|
|
74939
75108
|
/**
|
|
74940
|
-
*
|
|
75109
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
74941
75110
|
* @summary Patch LLM endpoint entity
|
|
74942
75111
|
* @param {string} id
|
|
74943
75112
|
* @param {JsonApiLlmEndpointPatchDocument} jsonApiLlmEndpointPatchDocument
|
|
@@ -75084,7 +75253,7 @@ export declare function OrganizationModelControllerApiAxiosParamCreator_UpdateEn
|
|
|
75084
75253
|
export declare function OrganizationModelControllerApiAxiosParamCreator_UpdateEntityIdentityProviders(id: string, jsonApiIdentityProviderInDocument: JsonApiIdentityProviderInDocument, filter?: string, options?: AxiosRequestConfig, configuration?: MetadataConfiguration): Promise<MetadataRequestArgs>;
|
|
75085
75254
|
|
|
75086
75255
|
/**
|
|
75087
|
-
*
|
|
75256
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
75088
75257
|
* @summary PUT LLM endpoint entity
|
|
75089
75258
|
* @param {string} id
|
|
75090
75259
|
* @param {JsonApiLlmEndpointInDocument} jsonApiLlmEndpointInDocument
|
|
@@ -76633,10 +76802,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
76633
76802
|
*/
|
|
76634
76803
|
createEntityIdentityProviders(requestParameters: OrganizationModelControllerApiCreateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
76635
76804
|
/**
|
|
76636
|
-
*
|
|
76805
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
76637
76806
|
* @summary Post LLM endpoint entities
|
|
76638
76807
|
* @param {OrganizationModelControllerApiCreateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
76639
76808
|
* @param {*} [options] Override http request option.
|
|
76809
|
+
* @deprecated
|
|
76640
76810
|
* @throws {RequiredError}
|
|
76641
76811
|
* @memberof OrganizationModelControllerApiInterface
|
|
76642
76812
|
*/
|
|
@@ -76741,9 +76911,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
76741
76911
|
*/
|
|
76742
76912
|
deleteEntityIdentityProviders(requestParameters: OrganizationModelControllerApiDeleteEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<void>;
|
|
76743
76913
|
/**
|
|
76744
|
-
*
|
|
76914
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
76915
|
+
* @summary Delete LLM endpoint entity
|
|
76745
76916
|
* @param {OrganizationModelControllerApiDeleteEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
76746
76917
|
* @param {*} [options] Override http request option.
|
|
76918
|
+
* @deprecated
|
|
76747
76919
|
* @throws {RequiredError}
|
|
76748
76920
|
* @memberof OrganizationModelControllerApiInterface
|
|
76749
76921
|
*/
|
|
@@ -76866,10 +77038,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
76866
77038
|
*/
|
|
76867
77039
|
getAllEntitiesIdentityProviders(requestParameters: OrganizationModelControllerApiGetAllEntitiesIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutList>;
|
|
76868
77040
|
/**
|
|
76869
|
-
*
|
|
77041
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
76870
77042
|
* @summary Get all LLM endpoint entities
|
|
76871
77043
|
* @param {OrganizationModelControllerApiGetAllEntitiesLlmEndpointsRequest} requestParameters Request parameters.
|
|
76872
77044
|
* @param {*} [options] Override http request option.
|
|
77045
|
+
* @deprecated
|
|
76873
77046
|
* @throws {RequiredError}
|
|
76874
77047
|
* @memberof OrganizationModelControllerApiInterface
|
|
76875
77048
|
*/
|
|
@@ -77009,10 +77182,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
77009
77182
|
*/
|
|
77010
77183
|
getEntityIdentityProviders(requestParameters: OrganizationModelControllerApiGetEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
77011
77184
|
/**
|
|
77012
|
-
*
|
|
77185
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
77013
77186
|
* @summary Get LLM endpoint entity
|
|
77014
77187
|
* @param {OrganizationModelControllerApiGetEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77015
77188
|
* @param {*} [options] Override http request option.
|
|
77189
|
+
* @deprecated
|
|
77016
77190
|
* @throws {RequiredError}
|
|
77017
77191
|
* @memberof OrganizationModelControllerApiInterface
|
|
77018
77192
|
*/
|
|
@@ -77134,10 +77308,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
77134
77308
|
*/
|
|
77135
77309
|
patchEntityIdentityProviders(requestParameters: OrganizationModelControllerApiPatchEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
77136
77310
|
/**
|
|
77137
|
-
*
|
|
77311
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
77138
77312
|
* @summary Patch LLM endpoint entity
|
|
77139
77313
|
* @param {OrganizationModelControllerApiPatchEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77140
77314
|
* @param {*} [options] Override http request option.
|
|
77315
|
+
* @deprecated
|
|
77141
77316
|
* @throws {RequiredError}
|
|
77142
77317
|
* @memberof OrganizationModelControllerApiInterface
|
|
77143
77318
|
*/
|
|
@@ -77242,10 +77417,11 @@ export declare interface OrganizationModelControllerApiInterface {
|
|
|
77242
77417
|
*/
|
|
77243
77418
|
updateEntityIdentityProviders(requestParameters: OrganizationModelControllerApiUpdateEntityIdentityProvidersRequest, options?: AxiosRequestConfig): AxiosPromise<JsonApiIdentityProviderOutDocument>;
|
|
77244
77419
|
/**
|
|
77245
|
-
*
|
|
77420
|
+
* Will be soon removed and replaced by LlmProvider.
|
|
77246
77421
|
* @summary PUT LLM endpoint entity
|
|
77247
77422
|
* @param {OrganizationModelControllerApiUpdateEntityLlmEndpointsRequest} requestParameters Request parameters.
|
|
77248
77423
|
* @param {*} [options] Override http request option.
|
|
77424
|
+
* @deprecated
|
|
77249
77425
|
* @throws {RequiredError}
|
|
77250
77426
|
* @memberof OrganizationModelControllerApiInterface
|
|
77251
77427
|
*/
|
|
@@ -80487,6 +80663,20 @@ export declare interface ResultSpec {
|
|
|
80487
80663
|
'totals'?: Array<Total>;
|
|
80488
80664
|
}
|
|
80489
80665
|
|
|
80666
|
+
/**
|
|
80667
|
+
* Rich text widget displaying static content. Has no execution result.
|
|
80668
|
+
*/
|
|
80669
|
+
declare interface RichTextWidgetDescriptor extends WidgetDescriptor {
|
|
80670
|
+
/**
|
|
80671
|
+
* Widget object ID.
|
|
80672
|
+
*/
|
|
80673
|
+
'widgetId': string;
|
|
80674
|
+
/**
|
|
80675
|
+
* Widget title as displayed on the dashboard.
|
|
80676
|
+
*/
|
|
80677
|
+
'title': string;
|
|
80678
|
+
}
|
|
80679
|
+
|
|
80490
80680
|
/**
|
|
80491
80681
|
* Question -> Use Case routing. May contain final answer is a special use case is not required.
|
|
80492
80682
|
*/
|
|
@@ -82087,6 +82277,24 @@ export declare const tigerValidDescendantsClientFactory: (axios: AxiosInstance)
|
|
|
82087
82277
|
|
|
82088
82278
|
export declare const tigerValidObjectsClientFactory: (axios: AxiosInstance) => Pick<AfmActionsApiInterface, "computeValidObjects">;
|
|
82089
82279
|
|
|
82280
|
+
/**
|
|
82281
|
+
* Tool call events emitted during the agentic loop (only present when GEN_AI_YIELD_TOOL_CALL_EVENTS is enabled).
|
|
82282
|
+
*/
|
|
82283
|
+
declare interface ToolCallEventResult {
|
|
82284
|
+
/**
|
|
82285
|
+
* Name of the tool function that was called.
|
|
82286
|
+
*/
|
|
82287
|
+
'functionName': string;
|
|
82288
|
+
/**
|
|
82289
|
+
* JSON-encoded arguments passed to the tool function.
|
|
82290
|
+
*/
|
|
82291
|
+
'functionArguments': string;
|
|
82292
|
+
/**
|
|
82293
|
+
* Result returned by the tool function.
|
|
82294
|
+
*/
|
|
82295
|
+
'result': string;
|
|
82296
|
+
}
|
|
82297
|
+
|
|
82090
82298
|
/**
|
|
82091
82299
|
* Definition of a total. There are two types of totals: grand totals and subtotals. Grand total data will be returned in a separate section of the result structure while subtotals are fully integrated into the main result data. The mechanism for this distinction is automatic and it\'s described in `TotalDimension`
|
|
82092
82300
|
*/
|
|
@@ -82473,6 +82681,13 @@ declare interface TrendingObjectsResult {
|
|
|
82473
82681
|
|
|
82474
82682
|
declare type TriggerQualityIssuesCalculationResponseStatusEnum = 'RUNNING' | 'COMPLETED' | 'FAILED' | 'CANCELLED' | 'DISABLED';
|
|
82475
82683
|
|
|
82684
|
+
/**
|
|
82685
|
+
* Ambient UI state: what the user is currently looking at (dashboard, visible widgets).
|
|
82686
|
+
*/
|
|
82687
|
+
declare interface UIContext {
|
|
82688
|
+
'dashboard'?: DashboardContext;
|
|
82689
|
+
}
|
|
82690
|
+
|
|
82476
82691
|
/**
|
|
82477
82692
|
* Information related to the file uploaded to the staging area.
|
|
82478
82693
|
*/
|
|
@@ -82631,10 +82846,15 @@ export declare interface UserAssignee {
|
|
|
82631
82846
|
}
|
|
82632
82847
|
|
|
82633
82848
|
/**
|
|
82634
|
-
* User context
|
|
82849
|
+
* User context with ambient UI state (view) and explicitly referenced objects.
|
|
82635
82850
|
*/
|
|
82636
82851
|
export declare interface UserContext {
|
|
82637
|
-
'
|
|
82852
|
+
'view'?: UIContext;
|
|
82853
|
+
/**
|
|
82854
|
+
* Groups of explicitly referenced objects, each optionally scoped by a context (e.g. a dashboard context with widget references).
|
|
82855
|
+
*/
|
|
82856
|
+
'referencedObjects'?: Array<ObjectReferenceGroup>;
|
|
82857
|
+
'activeObject'?: ActiveObjectIdentification;
|
|
82638
82858
|
}
|
|
82639
82859
|
|
|
82640
82860
|
/**
|
|
@@ -88028,6 +88248,32 @@ declare namespace VisualizationObjectModelV2 {
|
|
|
88028
88248
|
}
|
|
88029
88249
|
export { VisualizationObjectModelV2 }
|
|
88030
88250
|
|
|
88251
|
+
/**
|
|
88252
|
+
* Visualization switcher widget allowing users to toggle between multiple visualizations.
|
|
88253
|
+
*/
|
|
88254
|
+
declare interface VisualizationSwitcherWidgetDescriptor extends WidgetDescriptor {
|
|
88255
|
+
/**
|
|
88256
|
+
* Widget object ID.
|
|
88257
|
+
*/
|
|
88258
|
+
'widgetId': string;
|
|
88259
|
+
/**
|
|
88260
|
+
* Widget title as displayed on the dashboard.
|
|
88261
|
+
*/
|
|
88262
|
+
'title': string;
|
|
88263
|
+
/**
|
|
88264
|
+
* Signed result ID for the currently active visualization\'s execution result.
|
|
88265
|
+
*/
|
|
88266
|
+
'resultId'?: string;
|
|
88267
|
+
/**
|
|
88268
|
+
* ID of the currently active visualization in the switcher.
|
|
88269
|
+
*/
|
|
88270
|
+
'activeVisualizationId': string;
|
|
88271
|
+
/**
|
|
88272
|
+
* IDs of all visualizations available in the switcher.
|
|
88273
|
+
*/
|
|
88274
|
+
'visualizationIds': Array<string>;
|
|
88275
|
+
}
|
|
88276
|
+
|
|
88031
88277
|
/**
|
|
88032
88278
|
* Webhook destination for notifications. The property url is required on create and update.
|
|
88033
88279
|
*/
|
|
@@ -88106,6 +88352,15 @@ export declare interface WhatIfScenarioItem {
|
|
|
88106
88352
|
'adjustments': Array<WhatIfMeasureAdjustmentConfig>;
|
|
88107
88353
|
}
|
|
88108
88354
|
|
|
88355
|
+
/**
|
|
88356
|
+
* Descriptor for a widget on the dashboard.
|
|
88357
|
+
*/
|
|
88358
|
+
declare interface WidgetDescriptor {
|
|
88359
|
+
'title': string;
|
|
88360
|
+
'widgetId': string;
|
|
88361
|
+
'widgetType': string;
|
|
88362
|
+
}
|
|
88363
|
+
|
|
88109
88364
|
/**
|
|
88110
88365
|
* Template for widget slides export. Available variables: {{currentPageNumber}}, {{dashboardDateFilters}}, {{dashboardDescription}}, {{dashboardFilters}}, {{dashboardId}}, {{dashboardName}}, {{dashboardTags}}, {{dashboardUrl}}, {{exportedAt}}, {{exportedBy}}, {{logo}}, {{totalPages}}, {{workspaceId}}, {{workspaceName}}
|
|
88111
88366
|
*/
|